GNU Linux-libre 4.9.290-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, const char *ctrl_name)
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", ctrl_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", ctrl_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, name);
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                   bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1109                                                 enum snd_soc_dapm_direction)),
1110         bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1111                                       enum snd_soc_dapm_direction))
1112 {
1113         enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
1114         struct snd_soc_dapm_path *path;
1115         int con = 0;
1116
1117         if (widget->endpoints[dir] >= 0)
1118                 return widget->endpoints[dir];
1119
1120         DAPM_UPDATE_STAT(widget, path_checks);
1121
1122         /* do we need to add this widget to the list ? */
1123         if (list)
1124                 list_add_tail(&widget->work_list, list);
1125
1126         if (custom_stop_condition && custom_stop_condition(widget, dir)) {
1127                 list = NULL;
1128                 custom_stop_condition = NULL;
1129         }
1130
1131         if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1132                 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1133                 return widget->endpoints[dir];
1134         }
1135
1136         snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
1137                 DAPM_UPDATE_STAT(widget, neighbour_checks);
1138
1139                 if (path->weak || path->is_supply)
1140                         continue;
1141
1142                 if (path->walking)
1143                         return 1;
1144
1145                 trace_snd_soc_dapm_path(widget, dir, path);
1146
1147                 if (path->connect) {
1148                         path->walking = 1;
1149                         con += fn(path->node[dir], list, custom_stop_condition);
1150                         path->walking = 0;
1151                 }
1152         }
1153
1154         widget->endpoints[dir] = con;
1155
1156         return con;
1157 }
1158
1159 /*
1160  * Recursively check for a completed path to an active or physically connected
1161  * output widget. Returns number of complete paths.
1162  *
1163  * Optionally, can be supplied with a function acting as a stopping condition.
1164  * This function takes the dapm widget currently being examined and the walk
1165  * direction as an arguments, it should return true if widgets from that point
1166  * in the graph onwards should not be added to the widget list.
1167  */
1168 static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
1169         struct list_head *list,
1170         bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1171                                       enum snd_soc_dapm_direction))
1172 {
1173         return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
1174                         is_connected_output_ep, custom_stop_condition);
1175 }
1176
1177 /*
1178  * Recursively check for a completed path to an active or physically connected
1179  * input widget. Returns number of complete paths.
1180  *
1181  * Optionally, can be supplied with a function acting as a stopping condition.
1182  * This function takes the dapm widget currently being examined and the walk
1183  * direction as an arguments, it should return true if the walk should be
1184  * stopped and false otherwise.
1185  */
1186 static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
1187         struct list_head *list,
1188         bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1189                                       enum snd_soc_dapm_direction))
1190 {
1191         return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
1192                         is_connected_input_ep, custom_stop_condition);
1193 }
1194
1195 /**
1196  * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1197  * @dai: the soc DAI.
1198  * @stream: stream direction.
1199  * @list: list of active widgets for this stream.
1200  * @custom_stop_condition: (optional) a function meant to stop the widget graph
1201  *                         walk based on custom logic.
1202  *
1203  * Queries DAPM graph as to whether a valid audio stream path exists for
1204  * the initial stream specified by name. This takes into account
1205  * current mixer and mux kcontrol settings. Creates list of valid widgets.
1206  *
1207  * Optionally, can be supplied with a function acting as a stopping condition.
1208  * This function takes the dapm widget currently being examined and the walk
1209  * direction as an arguments, it should return true if the walk should be
1210  * stopped and false otherwise.
1211  *
1212  * Returns the number of valid paths or negative error.
1213  */
1214 int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
1215         struct snd_soc_dapm_widget_list **list,
1216         bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1217                                       enum snd_soc_dapm_direction))
1218 {
1219         struct snd_soc_card *card = dai->component->card;
1220         struct snd_soc_dapm_widget *w;
1221         LIST_HEAD(widgets);
1222         int paths;
1223         int ret;
1224
1225         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
1226
1227         /*
1228          * For is_connected_{output,input}_ep fully discover the graph we need
1229          * to reset the cached number of inputs and outputs.
1230          */
1231         list_for_each_entry(w, &card->widgets, list) {
1232                 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1233                 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
1234         }
1235
1236         if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1237                 paths = is_connected_output_ep(dai->playback_widget, &widgets,
1238                                 custom_stop_condition);
1239         else
1240                 paths = is_connected_input_ep(dai->capture_widget, &widgets,
1241                                 custom_stop_condition);
1242
1243         /* Drop starting point */
1244         list_del(widgets.next);
1245
1246         ret = dapm_widget_list_create(list, &widgets);
1247         if (ret)
1248                 paths = ret;
1249
1250         trace_snd_soc_dapm_connected(paths, stream);
1251         mutex_unlock(&card->dapm_mutex);
1252
1253         return paths;
1254 }
1255
1256 /*
1257  * Handler for regulator supply widget.
1258  */
1259 int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1260                    struct snd_kcontrol *kcontrol, int event)
1261 {
1262         int ret;
1263
1264         soc_dapm_async_complete(w->dapm);
1265
1266         if (SND_SOC_DAPM_EVENT_ON(event)) {
1267                 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
1268                         ret = regulator_allow_bypass(w->regulator, false);
1269                         if (ret != 0)
1270                                 dev_warn(w->dapm->dev,
1271                                          "ASoC: Failed to unbypass %s: %d\n",
1272                                          w->name, ret);
1273                 }
1274
1275                 return regulator_enable(w->regulator);
1276         } else {
1277                 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
1278                         ret = regulator_allow_bypass(w->regulator, true);
1279                         if (ret != 0)
1280                                 dev_warn(w->dapm->dev,
1281                                          "ASoC: Failed to bypass %s: %d\n",
1282                                          w->name, ret);
1283                 }
1284
1285                 return regulator_disable_deferred(w->regulator, w->shift);
1286         }
1287 }
1288 EXPORT_SYMBOL_GPL(dapm_regulator_event);
1289
1290 /*
1291  * Handler for clock supply widget.
1292  */
1293 int dapm_clock_event(struct snd_soc_dapm_widget *w,
1294                    struct snd_kcontrol *kcontrol, int event)
1295 {
1296         if (!w->clk)
1297                 return -EIO;
1298
1299         soc_dapm_async_complete(w->dapm);
1300
1301 #ifdef CONFIG_HAVE_CLK
1302         if (SND_SOC_DAPM_EVENT_ON(event)) {
1303                 return clk_prepare_enable(w->clk);
1304         } else {
1305                 clk_disable_unprepare(w->clk);
1306                 return 0;
1307         }
1308 #endif
1309         return 0;
1310 }
1311 EXPORT_SYMBOL_GPL(dapm_clock_event);
1312
1313 static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1314 {
1315         if (w->power_checked)
1316                 return w->new_power;
1317
1318         if (w->force)
1319                 w->new_power = 1;
1320         else
1321                 w->new_power = w->power_check(w);
1322
1323         w->power_checked = true;
1324
1325         return w->new_power;
1326 }
1327
1328 /* Generic check to see if a widget should be powered. */
1329 static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1330 {
1331         int in, out;
1332
1333         DAPM_UPDATE_STAT(w, power_checks);
1334
1335         in = is_connected_input_ep(w, NULL, NULL);
1336         out = is_connected_output_ep(w, NULL, NULL);
1337         return out != 0 && in != 0;
1338 }
1339
1340 /* Check to see if a power supply is needed */
1341 static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1342 {
1343         struct snd_soc_dapm_path *path;
1344
1345         DAPM_UPDATE_STAT(w, power_checks);
1346
1347         /* Check if one of our outputs is connected */
1348         snd_soc_dapm_widget_for_each_sink_path(w, path) {
1349                 DAPM_UPDATE_STAT(w, neighbour_checks);
1350
1351                 if (path->weak)
1352                         continue;
1353
1354                 if (path->connected &&
1355                     !path->connected(path->source, path->sink))
1356                         continue;
1357
1358                 if (dapm_widget_power_check(path->sink))
1359                         return 1;
1360         }
1361
1362         return 0;
1363 }
1364
1365 static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1366 {
1367         return w->connected;
1368 }
1369
1370 static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1371                             struct snd_soc_dapm_widget *b,
1372                             bool power_up)
1373 {
1374         int *sort;
1375
1376         if (power_up)
1377                 sort = dapm_up_seq;
1378         else
1379                 sort = dapm_down_seq;
1380
1381         if (sort[a->id] != sort[b->id])
1382                 return sort[a->id] - sort[b->id];
1383         if (a->subseq != b->subseq) {
1384                 if (power_up)
1385                         return a->subseq - b->subseq;
1386                 else
1387                         return b->subseq - a->subseq;
1388         }
1389         if (a->reg != b->reg)
1390                 return a->reg - b->reg;
1391         if (a->dapm != b->dapm)
1392                 return (unsigned long)a->dapm - (unsigned long)b->dapm;
1393
1394         return 0;
1395 }
1396
1397 /* Insert a widget in order into a DAPM power sequence. */
1398 static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1399                             struct list_head *list,
1400                             bool power_up)
1401 {
1402         struct snd_soc_dapm_widget *w;
1403
1404         list_for_each_entry(w, list, power_list)
1405                 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
1406                         list_add_tail(&new_widget->power_list, &w->power_list);
1407                         return;
1408                 }
1409
1410         list_add_tail(&new_widget->power_list, list);
1411 }
1412
1413 static void dapm_seq_check_event(struct snd_soc_card *card,
1414                                  struct snd_soc_dapm_widget *w, int event)
1415 {
1416         const char *ev_name;
1417         int power, ret;
1418
1419         switch (event) {
1420         case SND_SOC_DAPM_PRE_PMU:
1421                 ev_name = "PRE_PMU";
1422                 power = 1;
1423                 break;
1424         case SND_SOC_DAPM_POST_PMU:
1425                 ev_name = "POST_PMU";
1426                 power = 1;
1427                 break;
1428         case SND_SOC_DAPM_PRE_PMD:
1429                 ev_name = "PRE_PMD";
1430                 power = 0;
1431                 break;
1432         case SND_SOC_DAPM_POST_PMD:
1433                 ev_name = "POST_PMD";
1434                 power = 0;
1435                 break;
1436         case SND_SOC_DAPM_WILL_PMU:
1437                 ev_name = "WILL_PMU";
1438                 power = 1;
1439                 break;
1440         case SND_SOC_DAPM_WILL_PMD:
1441                 ev_name = "WILL_PMD";
1442                 power = 0;
1443                 break;
1444         default:
1445                 WARN(1, "Unknown event %d\n", event);
1446                 return;
1447         }
1448
1449         if (w->new_power != power)
1450                 return;
1451
1452         if (w->event && (w->event_flags & event)) {
1453                 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
1454                         w->name, ev_name);
1455                 soc_dapm_async_complete(w->dapm);
1456                 trace_snd_soc_dapm_widget_event_start(w, event);
1457                 ret = w->event(w, NULL, event);
1458                 trace_snd_soc_dapm_widget_event_done(w, event);
1459                 if (ret < 0)
1460                         dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
1461                                ev_name, w->name, ret);
1462         }
1463 }
1464
1465 /* Apply the coalesced changes from a DAPM sequence */
1466 static void dapm_seq_run_coalesced(struct snd_soc_card *card,
1467                                    struct list_head *pending)
1468 {
1469         struct snd_soc_dapm_context *dapm;
1470         struct snd_soc_dapm_widget *w;
1471         int reg;
1472         unsigned int value = 0;
1473         unsigned int mask = 0;
1474
1475         w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1476         reg = w->reg;
1477         dapm = w->dapm;
1478
1479         list_for_each_entry(w, pending, power_list) {
1480                 WARN_ON(reg != w->reg || dapm != w->dapm);
1481                 w->power = w->new_power;
1482
1483                 mask |= w->mask << w->shift;
1484                 if (w->power)
1485                         value |= w->on_val << w->shift;
1486                 else
1487                         value |= w->off_val << w->shift;
1488
1489                 pop_dbg(dapm->dev, card->pop_time,
1490                         "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1491                         w->name, reg, value, mask);
1492
1493                 /* Check for events */
1494                 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1495                 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
1496         }
1497
1498         if (reg >= 0) {
1499                 /* Any widget will do, they should all be updating the
1500                  * same register.
1501                  */
1502
1503                 pop_dbg(dapm->dev, card->pop_time,
1504                         "pop test : Applying 0x%x/0x%x to %x in %dms\n",
1505                         value, mask, reg, card->pop_time);
1506                 pop_wait(card->pop_time);
1507                 soc_dapm_update_bits(dapm, reg, mask, value);
1508         }
1509
1510         list_for_each_entry(w, pending, power_list) {
1511                 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1512                 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
1513         }
1514 }
1515
1516 /* Apply a DAPM power sequence.
1517  *
1518  * We walk over a pre-sorted list of widgets to apply power to.  In
1519  * order to minimise the number of writes to the device required
1520  * multiple widgets will be updated in a single write where possible.
1521  * Currently anything that requires more than a single write is not
1522  * handled.
1523  */
1524 static void dapm_seq_run(struct snd_soc_card *card,
1525         struct list_head *list, int event, bool power_up)
1526 {
1527         struct snd_soc_dapm_widget *w, *n;
1528         struct snd_soc_dapm_context *d;
1529         LIST_HEAD(pending);
1530         int cur_sort = -1;
1531         int cur_subseq = -1;
1532         int cur_reg = SND_SOC_NOPM;
1533         struct snd_soc_dapm_context *cur_dapm = NULL;
1534         int ret, i;
1535         int *sort;
1536
1537         if (power_up)
1538                 sort = dapm_up_seq;
1539         else
1540                 sort = dapm_down_seq;
1541
1542         list_for_each_entry_safe(w, n, list, power_list) {
1543                 ret = 0;
1544
1545                 /* Do we need to apply any queued changes? */
1546                 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
1547                     w->dapm != cur_dapm || w->subseq != cur_subseq) {
1548                         if (!list_empty(&pending))
1549                                 dapm_seq_run_coalesced(card, &pending);
1550
1551                         if (cur_dapm && cur_dapm->seq_notifier) {
1552                                 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1553                                         if (sort[i] == cur_sort)
1554                                                 cur_dapm->seq_notifier(cur_dapm,
1555                                                                        i,
1556                                                                        cur_subseq);
1557                         }
1558
1559                         if (cur_dapm && w->dapm != cur_dapm)
1560                                 soc_dapm_async_complete(cur_dapm);
1561
1562                         INIT_LIST_HEAD(&pending);
1563                         cur_sort = -1;
1564                         cur_subseq = INT_MIN;
1565                         cur_reg = SND_SOC_NOPM;
1566                         cur_dapm = NULL;
1567                 }
1568
1569                 switch (w->id) {
1570                 case snd_soc_dapm_pre:
1571                         if (!w->event)
1572                                 list_for_each_entry_safe_continue(w, n, list,
1573                                                                   power_list);
1574
1575                         if (event == SND_SOC_DAPM_STREAM_START)
1576                                 ret = w->event(w,
1577                                                NULL, SND_SOC_DAPM_PRE_PMU);
1578                         else if (event == SND_SOC_DAPM_STREAM_STOP)
1579                                 ret = w->event(w,
1580                                                NULL, SND_SOC_DAPM_PRE_PMD);
1581                         break;
1582
1583                 case snd_soc_dapm_post:
1584                         if (!w->event)
1585                                 list_for_each_entry_safe_continue(w, n, list,
1586                                                                   power_list);
1587
1588                         if (event == SND_SOC_DAPM_STREAM_START)
1589                                 ret = w->event(w,
1590                                                NULL, SND_SOC_DAPM_POST_PMU);
1591                         else if (event == SND_SOC_DAPM_STREAM_STOP)
1592                                 ret = w->event(w,
1593                                                NULL, SND_SOC_DAPM_POST_PMD);
1594                         break;
1595
1596                 default:
1597                         /* Queue it up for application */
1598                         cur_sort = sort[w->id];
1599                         cur_subseq = w->subseq;
1600                         cur_reg = w->reg;
1601                         cur_dapm = w->dapm;
1602                         list_move(&w->power_list, &pending);
1603                         break;
1604                 }
1605
1606                 if (ret < 0)
1607                         dev_err(w->dapm->dev,
1608                                 "ASoC: Failed to apply widget power: %d\n", ret);
1609         }
1610
1611         if (!list_empty(&pending))
1612                 dapm_seq_run_coalesced(card, &pending);
1613
1614         if (cur_dapm && cur_dapm->seq_notifier) {
1615                 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1616                         if (sort[i] == cur_sort)
1617                                 cur_dapm->seq_notifier(cur_dapm,
1618                                                        i, cur_subseq);
1619         }
1620
1621         list_for_each_entry(d, &card->dapm_list, list) {
1622                 soc_dapm_async_complete(d);
1623         }
1624 }
1625
1626 static void dapm_widget_update(struct snd_soc_card *card)
1627 {
1628         struct snd_soc_dapm_update *update = card->update;
1629         struct snd_soc_dapm_widget_list *wlist;
1630         struct snd_soc_dapm_widget *w = NULL;
1631         unsigned int wi;
1632         int ret;
1633
1634         if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
1635                 return;
1636
1637         wlist = dapm_kcontrol_get_wlist(update->kcontrol);
1638
1639         for (wi = 0; wi < wlist->num_widgets; wi++) {
1640                 w = wlist->widgets[wi];
1641
1642                 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1643                         ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1644                         if (ret != 0)
1645                                 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
1646                                            w->name, ret);
1647                 }
1648         }
1649
1650         if (!w)
1651                 return;
1652
1653         ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1654                 update->val);
1655         if (ret < 0)
1656                 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
1657                         w->name, ret);
1658
1659         for (wi = 0; wi < wlist->num_widgets; wi++) {
1660                 w = wlist->widgets[wi];
1661
1662                 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1663                         ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1664                         if (ret != 0)
1665                                 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
1666                                            w->name, ret);
1667                 }
1668         }
1669 }
1670
1671 /* Async callback run prior to DAPM sequences - brings to _PREPARE if
1672  * they're changing state.
1673  */
1674 static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1675 {
1676         struct snd_soc_dapm_context *d = data;
1677         int ret;
1678
1679         /* If we're off and we're not supposed to go into STANDBY */
1680         if (d->bias_level == SND_SOC_BIAS_OFF &&
1681             d->target_bias_level != SND_SOC_BIAS_OFF) {
1682                 if (d->dev)
1683                         pm_runtime_get_sync(d->dev);
1684
1685                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1686                 if (ret != 0)
1687                         dev_err(d->dev,
1688                                 "ASoC: Failed to turn on bias: %d\n", ret);
1689         }
1690
1691         /* Prepare for a transition to ON or away from ON */
1692         if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1693              d->bias_level != SND_SOC_BIAS_ON) ||
1694             (d->target_bias_level != SND_SOC_BIAS_ON &&
1695              d->bias_level == SND_SOC_BIAS_ON)) {
1696                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1697                 if (ret != 0)
1698                         dev_err(d->dev,
1699                                 "ASoC: Failed to prepare bias: %d\n", ret);
1700         }
1701 }
1702
1703 /* Async callback run prior to DAPM sequences - brings to their final
1704  * state.
1705  */
1706 static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1707 {
1708         struct snd_soc_dapm_context *d = data;
1709         int ret;
1710
1711         /* If we just powered the last thing off drop to standby bias */
1712         if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1713             (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1714              d->target_bias_level == SND_SOC_BIAS_OFF)) {
1715                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1716                 if (ret != 0)
1717                         dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
1718                                 ret);
1719         }
1720
1721         /* If we're in standby and can support bias off then do that */
1722         if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1723             d->target_bias_level == SND_SOC_BIAS_OFF) {
1724                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1725                 if (ret != 0)
1726                         dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1727                                 ret);
1728
1729                 if (d->dev)
1730                         pm_runtime_put(d->dev);
1731         }
1732
1733         /* If we just powered up then move to active bias */
1734         if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1735             d->target_bias_level == SND_SOC_BIAS_ON) {
1736                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1737                 if (ret != 0)
1738                         dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
1739                                 ret);
1740         }
1741 }
1742
1743 static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1744                                        bool power, bool connect)
1745 {
1746         /* If a connection is being made or broken then that update
1747          * will have marked the peer dirty, otherwise the widgets are
1748          * not connected and this update has no impact. */
1749         if (!connect)
1750                 return;
1751
1752         /* If the peer is already in the state we're moving to then we
1753          * won't have an impact on it. */
1754         if (power != peer->power)
1755                 dapm_mark_dirty(peer, "peer state change");
1756 }
1757
1758 static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1759                                   struct list_head *up_list,
1760                                   struct list_head *down_list)
1761 {
1762         struct snd_soc_dapm_path *path;
1763
1764         if (w->power == power)
1765                 return;
1766
1767         trace_snd_soc_dapm_widget_power(w, power);
1768
1769         /* If we changed our power state perhaps our neigbours changed
1770          * also.
1771          */
1772         snd_soc_dapm_widget_for_each_source_path(w, path)
1773                 dapm_widget_set_peer_power(path->source, power, path->connect);
1774
1775         /* Supplies can't affect their outputs, only their inputs */
1776         if (!w->is_supply) {
1777                 snd_soc_dapm_widget_for_each_sink_path(w, path)
1778                         dapm_widget_set_peer_power(path->sink, power,
1779                                                    path->connect);
1780         }
1781
1782         if (power)
1783                 dapm_seq_insert(w, up_list, true);
1784         else
1785                 dapm_seq_insert(w, down_list, false);
1786 }
1787
1788 static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1789                                   struct list_head *up_list,
1790                                   struct list_head *down_list)
1791 {
1792         int power;
1793
1794         switch (w->id) {
1795         case snd_soc_dapm_pre:
1796                 dapm_seq_insert(w, down_list, false);
1797                 break;
1798         case snd_soc_dapm_post:
1799                 dapm_seq_insert(w, up_list, true);
1800                 break;
1801
1802         default:
1803                 power = dapm_widget_power_check(w);
1804
1805                 dapm_widget_set_power(w, power, up_list, down_list);
1806                 break;
1807         }
1808 }
1809
1810 static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1811 {
1812         if (dapm->idle_bias_off)
1813                 return true;
1814
1815         switch (snd_power_get_state(dapm->card->snd_card)) {
1816         case SNDRV_CTL_POWER_D3hot:
1817         case SNDRV_CTL_POWER_D3cold:
1818                 return dapm->suspend_bias_off;
1819         default:
1820                 break;
1821         }
1822
1823         return false;
1824 }
1825
1826 /*
1827  * Scan each dapm widget for complete audio path.
1828  * A complete path is a route that has valid endpoints i.e.:-
1829  *
1830  *  o DAC to output pin.
1831  *  o Input pin to ADC.
1832  *  o Input pin to Output pin (bypass, sidetone)
1833  *  o DAC to ADC (loopback).
1834  */
1835 static int dapm_power_widgets(struct snd_soc_card *card, int event)
1836 {
1837         struct snd_soc_dapm_widget *w;
1838         struct snd_soc_dapm_context *d;
1839         LIST_HEAD(up_list);
1840         LIST_HEAD(down_list);
1841         ASYNC_DOMAIN_EXCLUSIVE(async_domain);
1842         enum snd_soc_bias_level bias;
1843
1844         lockdep_assert_held(&card->dapm_mutex);
1845
1846         trace_snd_soc_dapm_start(card);
1847
1848         list_for_each_entry(d, &card->dapm_list, list) {
1849                 if (dapm_idle_bias_off(d))
1850                         d->target_bias_level = SND_SOC_BIAS_OFF;
1851                 else
1852                         d->target_bias_level = SND_SOC_BIAS_STANDBY;
1853         }
1854
1855         dapm_reset(card);
1856
1857         /* Check which widgets we need to power and store them in
1858          * lists indicating if they should be powered up or down.  We
1859          * only check widgets that have been flagged as dirty but note
1860          * that new widgets may be added to the dirty list while we
1861          * iterate.
1862          */
1863         list_for_each_entry(w, &card->dapm_dirty, dirty) {
1864                 dapm_power_one_widget(w, &up_list, &down_list);
1865         }
1866
1867         list_for_each_entry(w, &card->widgets, list) {
1868                 switch (w->id) {
1869                 case snd_soc_dapm_pre:
1870                 case snd_soc_dapm_post:
1871                         /* These widgets always need to be powered */
1872                         break;
1873                 default:
1874                         list_del_init(&w->dirty);
1875                         break;
1876                 }
1877
1878                 if (w->new_power) {
1879                         d = w->dapm;
1880
1881                         /* Supplies and micbiases only bring the
1882                          * context up to STANDBY as unless something
1883                          * else is active and passing audio they
1884                          * generally don't require full power.  Signal
1885                          * generators are virtual pins and have no
1886                          * power impact themselves.
1887                          */
1888                         switch (w->id) {
1889                         case snd_soc_dapm_siggen:
1890                         case snd_soc_dapm_vmid:
1891                                 break;
1892                         case snd_soc_dapm_supply:
1893                         case snd_soc_dapm_regulator_supply:
1894                         case snd_soc_dapm_clock_supply:
1895                         case snd_soc_dapm_micbias:
1896                                 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1897                                         d->target_bias_level = SND_SOC_BIAS_STANDBY;
1898                                 break;
1899                         default:
1900                                 d->target_bias_level = SND_SOC_BIAS_ON;
1901                                 break;
1902                         }
1903                 }
1904
1905         }
1906
1907         /* Force all contexts in the card to the same bias state if
1908          * they're not ground referenced.
1909          */
1910         bias = SND_SOC_BIAS_OFF;
1911         list_for_each_entry(d, &card->dapm_list, list)
1912                 if (d->target_bias_level > bias)
1913                         bias = d->target_bias_level;
1914         list_for_each_entry(d, &card->dapm_list, list)
1915                 if (!dapm_idle_bias_off(d))
1916                         d->target_bias_level = bias;
1917
1918         trace_snd_soc_dapm_walk_done(card);
1919
1920         /* Run card bias changes at first */
1921         dapm_pre_sequence_async(&card->dapm, 0);
1922         /* Run other bias changes in parallel */
1923         list_for_each_entry(d, &card->dapm_list, list) {
1924                 if (d != &card->dapm)
1925                         async_schedule_domain(dapm_pre_sequence_async, d,
1926                                                 &async_domain);
1927         }
1928         async_synchronize_full_domain(&async_domain);
1929
1930         list_for_each_entry(w, &down_list, power_list) {
1931                 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
1932         }
1933
1934         list_for_each_entry(w, &up_list, power_list) {
1935                 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
1936         }
1937
1938         /* Power down widgets first; try to avoid amplifying pops. */
1939         dapm_seq_run(card, &down_list, event, false);
1940
1941         dapm_widget_update(card);
1942
1943         /* Now power up. */
1944         dapm_seq_run(card, &up_list, event, true);
1945
1946         /* Run all the bias changes in parallel */
1947         list_for_each_entry(d, &card->dapm_list, list) {
1948                 if (d != &card->dapm)
1949                         async_schedule_domain(dapm_post_sequence_async, d,
1950                                                 &async_domain);
1951         }
1952         async_synchronize_full_domain(&async_domain);
1953         /* Run card bias changes at last */
1954         dapm_post_sequence_async(&card->dapm, 0);
1955
1956         /* do we need to notify any clients that DAPM event is complete */
1957         list_for_each_entry(d, &card->dapm_list, list) {
1958                 if (d->stream_event)
1959                         d->stream_event(d, event);
1960         }
1961
1962         pop_dbg(card->dev, card->pop_time,
1963                 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
1964         pop_wait(card->pop_time);
1965
1966         trace_snd_soc_dapm_done(card);
1967
1968         return 0;
1969 }
1970
1971 #ifdef CONFIG_DEBUG_FS
1972 static ssize_t dapm_widget_power_read_file(struct file *file,
1973                                            char __user *user_buf,
1974                                            size_t count, loff_t *ppos)
1975 {
1976         struct snd_soc_dapm_widget *w = file->private_data;
1977         struct snd_soc_card *card = w->dapm->card;
1978         enum snd_soc_dapm_direction dir, rdir;
1979         char *buf;
1980         int in, out;
1981         ssize_t ret;
1982         struct snd_soc_dapm_path *p = NULL;
1983
1984         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1985         if (!buf)
1986                 return -ENOMEM;
1987
1988         mutex_lock(&card->dapm_mutex);
1989
1990         /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1991         if (w->is_supply) {
1992                 in = 0;
1993                 out = 0;
1994         } else {
1995                 in = is_connected_input_ep(w, NULL, NULL);
1996                 out = is_connected_output_ep(w, NULL, NULL);
1997         }
1998
1999         ret = scnprintf(buf, PAGE_SIZE, "%s: %s%s  in %d out %d",
2000                        w->name, w->power ? "On" : "Off",
2001                        w->force ? " (forced)" : "", in, out);
2002
2003         if (w->reg >= 0)
2004                 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
2005                                 " - R%d(0x%x) mask 0x%x",
2006                                 w->reg, w->reg, w->mask << w->shift);
2007
2008         ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
2009
2010         if (w->sname)
2011                 ret += scnprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
2012                                 w->sname,
2013                                 w->active ? "active" : "inactive");
2014
2015         snd_soc_dapm_for_each_direction(dir) {
2016                 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
2017                 snd_soc_dapm_widget_for_each_path(w, dir, p) {
2018                         if (p->connected && !p->connected(w, p->node[rdir]))
2019                                 continue;
2020
2021                         if (!p->connect)
2022                                 continue;
2023
2024                         ret += scnprintf(buf + ret, PAGE_SIZE - ret,
2025                                         " %s  \"%s\" \"%s\"\n",
2026                                         (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
2027                                         p->name ? p->name : "static",
2028                                         p->node[rdir]->name);
2029                 }
2030         }
2031
2032         mutex_unlock(&card->dapm_mutex);
2033
2034         ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2035
2036         kfree(buf);
2037         return ret;
2038 }
2039
2040 static const struct file_operations dapm_widget_power_fops = {
2041         .open = simple_open,
2042         .read = dapm_widget_power_read_file,
2043         .llseek = default_llseek,
2044 };
2045
2046 static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
2047                                    size_t count, loff_t *ppos)
2048 {
2049         struct snd_soc_dapm_context *dapm = file->private_data;
2050         char *level;
2051
2052         switch (dapm->bias_level) {
2053         case SND_SOC_BIAS_ON:
2054                 level = "On\n";
2055                 break;
2056         case SND_SOC_BIAS_PREPARE:
2057                 level = "Prepare\n";
2058                 break;
2059         case SND_SOC_BIAS_STANDBY:
2060                 level = "Standby\n";
2061                 break;
2062         case SND_SOC_BIAS_OFF:
2063                 level = "Off\n";
2064                 break;
2065         default:
2066                 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
2067                 level = "Unknown\n";
2068                 break;
2069         }
2070
2071         return simple_read_from_buffer(user_buf, count, ppos, level,
2072                                        strlen(level));
2073 }
2074
2075 static const struct file_operations dapm_bias_fops = {
2076         .open = simple_open,
2077         .read = dapm_bias_read_file,
2078         .llseek = default_llseek,
2079 };
2080
2081 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2082         struct dentry *parent)
2083 {
2084         struct dentry *d;
2085
2086         if (!parent)
2087                 return;
2088
2089         dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2090
2091         if (!dapm->debugfs_dapm) {
2092                 dev_warn(dapm->dev,
2093                        "ASoC: Failed to create DAPM debugfs directory\n");
2094                 return;
2095         }
2096
2097         d = debugfs_create_file("bias_level", 0444,
2098                                 dapm->debugfs_dapm, dapm,
2099                                 &dapm_bias_fops);
2100         if (!d)
2101                 dev_warn(dapm->dev,
2102                          "ASoC: Failed to create bias level debugfs file\n");
2103 }
2104
2105 static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2106 {
2107         struct snd_soc_dapm_context *dapm = w->dapm;
2108         struct dentry *d;
2109
2110         if (!dapm->debugfs_dapm || !w->name)
2111                 return;
2112
2113         d = debugfs_create_file(w->name, 0444,
2114                                 dapm->debugfs_dapm, w,
2115                                 &dapm_widget_power_fops);
2116         if (!d)
2117                 dev_warn(w->dapm->dev,
2118                         "ASoC: Failed to create %s debugfs file\n",
2119                         w->name);
2120 }
2121
2122 static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2123 {
2124         debugfs_remove_recursive(dapm->debugfs_dapm);
2125 }
2126
2127 #else
2128 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2129         struct dentry *parent)
2130 {
2131 }
2132
2133 static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2134 {
2135 }
2136
2137 static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2138 {
2139 }
2140
2141 #endif
2142
2143 /*
2144  * soc_dapm_connect_path() - Connects or disconnects a path
2145  * @path: The path to update
2146  * @connect: The new connect state of the path. True if the path is connected,
2147  *  false if it is disconnected.
2148  * @reason: The reason why the path changed (for debugging only)
2149  */
2150 static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2151         bool connect, const char *reason)
2152 {
2153         if (path->connect == connect)
2154                 return;
2155
2156         path->connect = connect;
2157         dapm_mark_dirty(path->source, reason);
2158         dapm_mark_dirty(path->sink, reason);
2159         dapm_path_invalidate(path);
2160 }
2161
2162 /* test and update the power status of a mux widget */
2163 static int soc_dapm_mux_update_power(struct snd_soc_card *card,
2164                                  struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
2165 {
2166         struct snd_soc_dapm_path *path;
2167         int found = 0;
2168         bool connect;
2169
2170         lockdep_assert_held(&card->dapm_mutex);
2171
2172         /* find dapm widget path assoc with kcontrol */
2173         dapm_kcontrol_for_each_path(path, kcontrol) {
2174                 found = 1;
2175                 /* we now need to match the string in the enum to the path */
2176                 if (!(strcmp(path->name, e->texts[mux])))
2177                         connect = true;
2178                 else
2179                         connect = false;
2180
2181                 soc_dapm_connect_path(path, connect, "mux update");
2182         }
2183
2184         if (found)
2185                 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2186
2187         return found;
2188 }
2189
2190 int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
2191         struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2192         struct snd_soc_dapm_update *update)
2193 {
2194         struct snd_soc_card *card = dapm->card;
2195         int ret;
2196
2197         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2198         card->update = update;
2199         ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
2200         card->update = NULL;
2201         mutex_unlock(&card->dapm_mutex);
2202         if (ret > 0)
2203                 soc_dpcm_runtime_update(card);
2204         return ret;
2205 }
2206 EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
2207
2208 /* test and update the power status of a mixer or switch widget */
2209 static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
2210                                    struct snd_kcontrol *kcontrol, int connect)
2211 {
2212         struct snd_soc_dapm_path *path;
2213         int found = 0;
2214
2215         lockdep_assert_held(&card->dapm_mutex);
2216
2217         /* find dapm widget path assoc with kcontrol */
2218         dapm_kcontrol_for_each_path(path, kcontrol) {
2219                 found = 1;
2220                 soc_dapm_connect_path(path, connect, "mixer update");
2221         }
2222
2223         if (found)
2224                 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2225
2226         return found;
2227 }
2228
2229 int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
2230         struct snd_kcontrol *kcontrol, int connect,
2231         struct snd_soc_dapm_update *update)
2232 {
2233         struct snd_soc_card *card = dapm->card;
2234         int ret;
2235
2236         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2237         card->update = update;
2238         ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
2239         card->update = NULL;
2240         mutex_unlock(&card->dapm_mutex);
2241         if (ret > 0)
2242                 soc_dpcm_runtime_update(card);
2243         return ret;
2244 }
2245 EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
2246
2247 static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2248         char *buf)
2249 {
2250         struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
2251         struct snd_soc_dapm_widget *w;
2252         int count = 0;
2253         char *state = "not set";
2254
2255         /* card won't be set for the dummy component, as a spot fix
2256          * we're checking for that case specifically here but in future
2257          * we will ensure that the dummy component looks like others.
2258          */
2259         if (!cmpnt->card)
2260                 return 0;
2261
2262         list_for_each_entry(w, &cmpnt->card->widgets, list) {
2263                 if (w->dapm != dapm)
2264                         continue;
2265
2266                 /* only display widgets that burn power */
2267                 switch (w->id) {
2268                 case snd_soc_dapm_hp:
2269                 case snd_soc_dapm_mic:
2270                 case snd_soc_dapm_spk:
2271                 case snd_soc_dapm_line:
2272                 case snd_soc_dapm_micbias:
2273                 case snd_soc_dapm_dac:
2274                 case snd_soc_dapm_adc:
2275                 case snd_soc_dapm_pga:
2276                 case snd_soc_dapm_out_drv:
2277                 case snd_soc_dapm_mixer:
2278                 case snd_soc_dapm_mixer_named_ctl:
2279                 case snd_soc_dapm_supply:
2280                 case snd_soc_dapm_regulator_supply:
2281                 case snd_soc_dapm_clock_supply:
2282                         if (w->name)
2283                                 count += sprintf(buf + count, "%s: %s\n",
2284                                         w->name, w->power ? "On":"Off");
2285                 break;
2286                 default:
2287                 break;
2288                 }
2289         }
2290
2291         switch (snd_soc_dapm_get_bias_level(dapm)) {
2292         case SND_SOC_BIAS_ON:
2293                 state = "On";
2294                 break;
2295         case SND_SOC_BIAS_PREPARE:
2296                 state = "Prepare";
2297                 break;
2298         case SND_SOC_BIAS_STANDBY:
2299                 state = "Standby";
2300                 break;
2301         case SND_SOC_BIAS_OFF:
2302                 state = "Off";
2303                 break;
2304         }
2305         count += sprintf(buf + count, "PM State: %s\n", state);
2306
2307         return count;
2308 }
2309
2310 /* show dapm widget status in sys fs */
2311 static ssize_t dapm_widget_show(struct device *dev,
2312         struct device_attribute *attr, char *buf)
2313 {
2314         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2315         int i, count = 0;
2316
2317         mutex_lock(&rtd->card->dapm_mutex);
2318
2319         for (i = 0; i < rtd->num_codecs; i++) {
2320                 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2321
2322                 count += dapm_widget_show_component(cmpnt, buf + count);
2323         }
2324
2325         mutex_unlock(&rtd->card->dapm_mutex);
2326
2327         return count;
2328 }
2329
2330 static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2331
2332 struct attribute *soc_dapm_dev_attrs[] = {
2333         &dev_attr_dapm_widget.attr,
2334         NULL
2335 };
2336
2337 static void dapm_free_path(struct snd_soc_dapm_path *path)
2338 {
2339         list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2340         list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
2341         list_del(&path->list_kcontrol);
2342         list_del(&path->list);
2343         kfree(path);
2344 }
2345
2346 void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2347 {
2348         struct snd_soc_dapm_path *p, *next_p;
2349         enum snd_soc_dapm_direction dir;
2350
2351         list_del(&w->list);
2352         list_del(&w->dirty);
2353         /*
2354          * remove source and sink paths associated to this widget.
2355          * While removing the path, remove reference to it from both
2356          * source and sink widgets so that path is removed only once.
2357          */
2358         snd_soc_dapm_for_each_direction(dir) {
2359                 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2360                         dapm_free_path(p);
2361         }
2362
2363         kfree(w->kcontrols);
2364         kfree_const(w->name);
2365         kfree(w);
2366 }
2367
2368 void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2369 {
2370         dapm->path_sink_cache.widget = NULL;
2371         dapm->path_source_cache.widget = NULL;
2372 }
2373
2374 /* free all dapm widgets and resources */
2375 static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
2376 {
2377         struct snd_soc_dapm_widget *w, *next_w;
2378
2379         list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2380                 if (w->dapm != dapm)
2381                         continue;
2382                 snd_soc_dapm_free_widget(w);
2383         }
2384         snd_soc_dapm_reset_cache(dapm);
2385 }
2386
2387 static struct snd_soc_dapm_widget *dapm_find_widget(
2388                         struct snd_soc_dapm_context *dapm, const char *pin,
2389                         bool search_other_contexts)
2390 {
2391         struct snd_soc_dapm_widget *w;
2392         struct snd_soc_dapm_widget *fallback = NULL;
2393
2394         list_for_each_entry(w, &dapm->card->widgets, list) {
2395                 if (!strcmp(w->name, pin)) {
2396                         if (w->dapm == dapm)
2397                                 return w;
2398                         else
2399                                 fallback = w;
2400                 }
2401         }
2402
2403         if (search_other_contexts)
2404                 return fallback;
2405
2406         return NULL;
2407 }
2408
2409 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
2410                                 const char *pin, int status)
2411 {
2412         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
2413         int ret = 0;
2414
2415         dapm_assert_locked(dapm);
2416
2417         if (!w) {
2418                 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
2419                 return -EINVAL;
2420         }
2421
2422         if (w->connected != status) {
2423                 dapm_mark_dirty(w, "pin configuration");
2424                 dapm_widget_invalidate_input_paths(w);
2425                 dapm_widget_invalidate_output_paths(w);
2426                 ret = 1;
2427         }
2428
2429         w->connected = status;
2430         if (status == 0)
2431                 w->force = 0;
2432
2433         return ret;
2434 }
2435
2436 /**
2437  * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2438  * @dapm: DAPM context
2439  *
2440  * Walks all dapm audio paths and powers widgets according to their
2441  * stream or path usage.
2442  *
2443  * Requires external locking.
2444  *
2445  * Returns 0 for success.
2446  */
2447 int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2448 {
2449         /*
2450          * Suppress early reports (eg, jacks syncing their state) to avoid
2451          * silly DAPM runs during card startup.
2452          */
2453         if (!dapm->card || !dapm->card->instantiated)
2454                 return 0;
2455
2456         return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2457 }
2458 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2459
2460 /**
2461  * snd_soc_dapm_sync - scan and power dapm paths
2462  * @dapm: DAPM context
2463  *
2464  * Walks all dapm audio paths and powers widgets according to their
2465  * stream or path usage.
2466  *
2467  * Returns 0 for success.
2468  */
2469 int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
2470 {
2471         int ret;
2472
2473         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2474         ret = snd_soc_dapm_sync_unlocked(dapm);
2475         mutex_unlock(&dapm->card->dapm_mutex);
2476         return ret;
2477 }
2478 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
2479
2480 /*
2481  * dapm_update_widget_flags() - Re-compute widget sink and source flags
2482  * @w: The widget for which to update the flags
2483  *
2484  * Some widgets have a dynamic category which depends on which neighbors they
2485  * are connected to. This function update the category for these widgets.
2486  *
2487  * This function must be called whenever a path is added or removed to a widget.
2488  */
2489 static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2490 {
2491         enum snd_soc_dapm_direction dir;
2492         struct snd_soc_dapm_path *p;
2493         unsigned int ep;
2494
2495         switch (w->id) {
2496         case snd_soc_dapm_input:
2497                 /* On a fully routed card an input is never a source */
2498                 if (w->dapm->card->fully_routed)
2499                         return;
2500                 ep = SND_SOC_DAPM_EP_SOURCE;
2501                 snd_soc_dapm_widget_for_each_source_path(w, p) {
2502                         if (p->source->id == snd_soc_dapm_micbias ||
2503                                 p->source->id == snd_soc_dapm_mic ||
2504                                 p->source->id == snd_soc_dapm_line ||
2505                                 p->source->id == snd_soc_dapm_output) {
2506                                         ep = 0;
2507                                         break;
2508                         }
2509                 }
2510                 break;
2511         case snd_soc_dapm_output:
2512                 /* On a fully routed card a output is never a sink */
2513                 if (w->dapm->card->fully_routed)
2514                         return;
2515                 ep = SND_SOC_DAPM_EP_SINK;
2516                 snd_soc_dapm_widget_for_each_sink_path(w, p) {
2517                         if (p->sink->id == snd_soc_dapm_spk ||
2518                                 p->sink->id == snd_soc_dapm_hp ||
2519                                 p->sink->id == snd_soc_dapm_line ||
2520                                 p->sink->id == snd_soc_dapm_input) {
2521                                         ep = 0;
2522                                         break;
2523                         }
2524                 }
2525                 break;
2526         case snd_soc_dapm_line:
2527                 ep = 0;
2528                 snd_soc_dapm_for_each_direction(dir) {
2529                         if (!list_empty(&w->edges[dir]))
2530                                 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2531                 }
2532                 break;
2533         default:
2534                 return;
2535         }
2536
2537         w->is_ep = ep;
2538 }
2539
2540 static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2541         struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2542         const char *control)
2543 {
2544         bool dynamic_source = false;
2545         bool dynamic_sink = false;
2546
2547         if (!control)
2548                 return 0;
2549
2550         switch (source->id) {
2551         case snd_soc_dapm_demux:
2552                 dynamic_source = true;
2553                 break;
2554         default:
2555                 break;
2556         }
2557
2558         switch (sink->id) {
2559         case snd_soc_dapm_mux:
2560         case snd_soc_dapm_switch:
2561         case snd_soc_dapm_mixer:
2562         case snd_soc_dapm_mixer_named_ctl:
2563                 dynamic_sink = true;
2564                 break;
2565         default:
2566                 break;
2567         }
2568
2569         if (dynamic_source && dynamic_sink) {
2570                 dev_err(dapm->dev,
2571                         "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2572                         source->name, control, sink->name);
2573                 return -EINVAL;
2574         } else if (!dynamic_source && !dynamic_sink) {
2575                 dev_err(dapm->dev,
2576                         "Control not supported for path %s -> [%s] -> %s\n",
2577                         source->name, control, sink->name);
2578                 return -EINVAL;
2579         }
2580
2581         return 0;
2582 }
2583
2584 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2585         struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2586         const char *control,
2587         int (*connected)(struct snd_soc_dapm_widget *source,
2588                          struct snd_soc_dapm_widget *sink))
2589 {
2590         struct snd_soc_dapm_widget *widgets[2];
2591         enum snd_soc_dapm_direction dir;
2592         struct snd_soc_dapm_path *path;
2593         int ret;
2594
2595         if (wsink->is_supply && !wsource->is_supply) {
2596                 dev_err(dapm->dev,
2597                         "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2598                         wsource->name, wsink->name);
2599                 return -EINVAL;
2600         }
2601
2602         if (connected && !wsource->is_supply) {
2603                 dev_err(dapm->dev,
2604                         "connected() callback only supported for supply widgets (%s -> %s)\n",
2605                         wsource->name, wsink->name);
2606                 return -EINVAL;
2607         }
2608
2609         if (wsource->is_supply && control) {
2610                 dev_err(dapm->dev,
2611                         "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2612                         wsource->name, control, wsink->name);
2613                 return -EINVAL;
2614         }
2615
2616         ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2617         if (ret)
2618                 return ret;
2619
2620         path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2621         if (!path)
2622                 return -ENOMEM;
2623
2624         path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2625         path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2626         widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2627         widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2628
2629         path->connected = connected;
2630         INIT_LIST_HEAD(&path->list);
2631         INIT_LIST_HEAD(&path->list_kcontrol);
2632
2633         if (wsource->is_supply || wsink->is_supply)
2634                 path->is_supply = 1;
2635
2636         /* connect static paths */
2637         if (control == NULL) {
2638                 path->connect = 1;
2639         } else {
2640                 switch (wsource->id) {
2641                 case snd_soc_dapm_demux:
2642                         ret = dapm_connect_mux(dapm, path, control, wsource);
2643                         if (ret)
2644                                 goto err;
2645                         break;
2646                 default:
2647                         break;
2648                 }
2649
2650                 switch (wsink->id) {
2651                 case snd_soc_dapm_mux:
2652                         ret = dapm_connect_mux(dapm, path, control, wsink);
2653                         if (ret != 0)
2654                                 goto err;
2655                         break;
2656                 case snd_soc_dapm_switch:
2657                 case snd_soc_dapm_mixer:
2658                 case snd_soc_dapm_mixer_named_ctl:
2659                         ret = dapm_connect_mixer(dapm, path, control);
2660                         if (ret != 0)
2661                                 goto err;
2662                         break;
2663                 default:
2664                         break;
2665                 }
2666         }
2667
2668         list_add(&path->list, &dapm->card->paths);
2669         snd_soc_dapm_for_each_direction(dir)
2670                 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
2671
2672         snd_soc_dapm_for_each_direction(dir) {
2673                 dapm_update_widget_flags(widgets[dir]);
2674                 dapm_mark_dirty(widgets[dir], "Route added");
2675         }
2676
2677         if (dapm->card->instantiated && path->connect)
2678                 dapm_path_invalidate(path);
2679
2680         return 0;
2681 err:
2682         kfree(path);
2683         return ret;
2684 }
2685
2686 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
2687                                   const struct snd_soc_dapm_route *route)
2688 {
2689         struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2690         struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2691         const char *sink;
2692         const char *source;
2693         char prefixed_sink[80];
2694         char prefixed_source[80];
2695         const char *prefix;
2696         int ret;
2697
2698         prefix = soc_dapm_prefix(dapm);
2699         if (prefix) {
2700                 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2701                          prefix, route->sink);
2702                 sink = prefixed_sink;
2703                 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2704                          prefix, route->source);
2705                 source = prefixed_source;
2706         } else {
2707                 sink = route->sink;
2708                 source = route->source;
2709         }
2710
2711         wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2712         wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2713
2714         if (wsink && wsource)
2715                 goto skip_search;
2716
2717         /*
2718          * find src and dest widgets over all widgets but favor a widget from
2719          * current DAPM context
2720          */
2721         list_for_each_entry(w, &dapm->card->widgets, list) {
2722                 if (!wsink && !(strcmp(w->name, sink))) {
2723                         wtsink = w;
2724                         if (w->dapm == dapm) {
2725                                 wsink = w;
2726                                 if (wsource)
2727                                         break;
2728                         }
2729                         continue;
2730                 }
2731                 if (!wsource && !(strcmp(w->name, source))) {
2732                         wtsource = w;
2733                         if (w->dapm == dapm) {
2734                                 wsource = w;
2735                                 if (wsink)
2736                                         break;
2737                         }
2738                 }
2739         }
2740         /* use widget from another DAPM context if not found from this */
2741         if (!wsink)
2742                 wsink = wtsink;
2743         if (!wsource)
2744                 wsource = wtsource;
2745
2746         if (wsource == NULL) {
2747                 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2748                         route->source);
2749                 return -ENODEV;
2750         }
2751         if (wsink == NULL) {
2752                 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2753                         route->sink);
2754                 return -ENODEV;
2755         }
2756
2757 skip_search:
2758         dapm_wcache_update(&dapm->path_sink_cache, wsink);
2759         dapm_wcache_update(&dapm->path_source_cache, wsource);
2760
2761         ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2762                 route->connected);
2763         if (ret)
2764                 goto err;
2765
2766         return 0;
2767 err:
2768         dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
2769                  source, route->control, sink);
2770         return ret;
2771 }
2772
2773 static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2774                                   const struct snd_soc_dapm_route *route)
2775 {
2776         struct snd_soc_dapm_widget *wsource, *wsink;
2777         struct snd_soc_dapm_path *path, *p;
2778         const char *sink;
2779         const char *source;
2780         char prefixed_sink[80];
2781         char prefixed_source[80];
2782         const char *prefix;
2783
2784         if (route->control) {
2785                 dev_err(dapm->dev,
2786                         "ASoC: Removal of routes with controls not supported\n");
2787                 return -EINVAL;
2788         }
2789
2790         prefix = soc_dapm_prefix(dapm);
2791         if (prefix) {
2792                 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2793                          prefix, route->sink);
2794                 sink = prefixed_sink;
2795                 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2796                          prefix, route->source);
2797                 source = prefixed_source;
2798         } else {
2799                 sink = route->sink;
2800                 source = route->source;
2801         }
2802
2803         path = NULL;
2804         list_for_each_entry(p, &dapm->card->paths, list) {
2805                 if (strcmp(p->source->name, source) != 0)
2806                         continue;
2807                 if (strcmp(p->sink->name, sink) != 0)
2808                         continue;
2809                 path = p;
2810                 break;
2811         }
2812
2813         if (path) {
2814                 wsource = path->source;
2815                 wsink = path->sink;
2816
2817                 dapm_mark_dirty(wsource, "Route removed");
2818                 dapm_mark_dirty(wsink, "Route removed");
2819                 if (path->connect)
2820                         dapm_path_invalidate(path);
2821
2822                 dapm_free_path(path);
2823
2824                 /* Update any path related flags */
2825                 dapm_update_widget_flags(wsource);
2826                 dapm_update_widget_flags(wsink);
2827         } else {
2828                 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
2829                          source, sink);
2830         }
2831
2832         return 0;
2833 }
2834
2835 /**
2836  * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2837  * @dapm: DAPM context
2838  * @route: audio routes
2839  * @num: number of routes
2840  *
2841  * Connects 2 dapm widgets together via a named audio path. The sink is
2842  * the widget receiving the audio signal, whilst the source is the sender
2843  * of the audio signal.
2844  *
2845  * Returns 0 for success else error. On error all resources can be freed
2846  * with a call to snd_soc_card_free().
2847  */
2848 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
2849                             const struct snd_soc_dapm_route *route, int num)
2850 {
2851         int i, r, ret = 0;
2852
2853         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2854         for (i = 0; i < num; i++) {
2855                 r = snd_soc_dapm_add_route(dapm, route);
2856                 if (r < 0) {
2857                         dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2858                                 route->source,
2859                                 route->control ? route->control : "direct",
2860                                 route->sink);
2861                         ret = r;
2862                 }
2863                 route++;
2864         }
2865         mutex_unlock(&dapm->card->dapm_mutex);
2866
2867         return ret;
2868 }
2869 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2870
2871 /**
2872  * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2873  * @dapm: DAPM context
2874  * @route: audio routes
2875  * @num: number of routes
2876  *
2877  * Removes routes from the DAPM context.
2878  */
2879 int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2880                             const struct snd_soc_dapm_route *route, int num)
2881 {
2882         int i;
2883
2884         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2885         for (i = 0; i < num; i++) {
2886                 snd_soc_dapm_del_route(dapm, route);
2887                 route++;
2888         }
2889         mutex_unlock(&dapm->card->dapm_mutex);
2890
2891         return 0;
2892 }
2893 EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2894
2895 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2896                                    const struct snd_soc_dapm_route *route)
2897 {
2898         struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2899                                                               route->source,
2900                                                               true);
2901         struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2902                                                             route->sink,
2903                                                             true);
2904         struct snd_soc_dapm_path *path;
2905         int count = 0;
2906
2907         if (!source) {
2908                 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
2909                         route->source);
2910                 return -ENODEV;
2911         }
2912
2913         if (!sink) {
2914                 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
2915                         route->sink);
2916                 return -ENODEV;
2917         }
2918
2919         if (route->control || route->connected)
2920                 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
2921                          route->source, route->sink);
2922
2923         snd_soc_dapm_widget_for_each_sink_path(source, path) {
2924                 if (path->sink == sink) {
2925                         path->weak = 1;
2926                         count++;
2927                 }
2928         }
2929
2930         if (count == 0)
2931                 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
2932                         route->source, route->sink);
2933         if (count > 1)
2934                 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
2935                          count, route->source, route->sink);
2936
2937         return 0;
2938 }
2939
2940 /**
2941  * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2942  * @dapm: DAPM context
2943  * @route: audio routes
2944  * @num: number of routes
2945  *
2946  * Mark existing routes matching those specified in the passed array
2947  * as being weak, meaning that they are ignored for the purpose of
2948  * power decisions.  The main intended use case is for sidetone paths
2949  * which couple audio between other independent paths if they are both
2950  * active in order to make the combination work better at the user
2951  * level but which aren't intended to be "used".
2952  *
2953  * Note that CODEC drivers should not use this as sidetone type paths
2954  * can frequently also be used as bypass paths.
2955  */
2956 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2957                              const struct snd_soc_dapm_route *route, int num)
2958 {
2959         int i, err;
2960         int ret = 0;
2961
2962         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2963         for (i = 0; i < num; i++) {
2964                 err = snd_soc_dapm_weak_route(dapm, route);
2965                 if (err)
2966                         ret = err;
2967                 route++;
2968         }
2969         mutex_unlock(&dapm->card->dapm_mutex);
2970
2971         return ret;
2972 }
2973 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2974
2975 /**
2976  * snd_soc_dapm_new_widgets - add new dapm widgets
2977  * @card: card to be checked for new dapm widgets
2978  *
2979  * Checks the codec for any new dapm widgets and creates them if found.
2980  *
2981  * Returns 0 for success.
2982  */
2983 int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
2984 {
2985         struct snd_soc_dapm_widget *w;
2986         unsigned int val;
2987
2988         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2989
2990         list_for_each_entry(w, &card->widgets, list)
2991         {
2992                 if (w->new)
2993                         continue;
2994
2995                 if (w->num_kcontrols) {
2996                         w->kcontrols = kzalloc(w->num_kcontrols *
2997                                                 sizeof(struct snd_kcontrol *),
2998                                                 GFP_KERNEL);
2999                         if (!w->kcontrols) {
3000                                 mutex_unlock(&card->dapm_mutex);
3001                                 return -ENOMEM;
3002                         }
3003                 }
3004
3005                 switch(w->id) {
3006                 case snd_soc_dapm_switch:
3007                 case snd_soc_dapm_mixer:
3008                 case snd_soc_dapm_mixer_named_ctl:
3009                         dapm_new_mixer(w);
3010                         break;
3011                 case snd_soc_dapm_mux:
3012                 case snd_soc_dapm_demux:
3013                         dapm_new_mux(w);
3014                         break;
3015                 case snd_soc_dapm_pga:
3016                 case snd_soc_dapm_out_drv:
3017                         dapm_new_pga(w);
3018                         break;
3019                 case snd_soc_dapm_dai_link:
3020                         dapm_new_dai_link(w);
3021                         break;
3022                 default:
3023                         break;
3024                 }
3025
3026                 /* Read the initial power state from the device */
3027                 if (w->reg >= 0) {
3028                         soc_dapm_read(w->dapm, w->reg, &val);
3029                         val = val >> w->shift;
3030                         val &= w->mask;
3031                         if (val == w->on_val)
3032                                 w->power = 1;
3033                 }
3034
3035                 w->new = 1;
3036
3037                 dapm_mark_dirty(w, "new widget");
3038                 dapm_debugfs_add_widget(w);
3039         }
3040
3041         dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3042         mutex_unlock(&card->dapm_mutex);
3043         return 0;
3044 }
3045 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3046
3047 /**
3048  * snd_soc_dapm_get_volsw - dapm mixer get callback
3049  * @kcontrol: mixer control
3050  * @ucontrol: control element information
3051  *
3052  * Callback to get the value of a dapm mixer control.
3053  *
3054  * Returns 0 for success.
3055  */
3056 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3057         struct snd_ctl_elem_value *ucontrol)
3058 {
3059         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3060         struct snd_soc_card *card = dapm->card;
3061         struct soc_mixer_control *mc =
3062                 (struct soc_mixer_control *)kcontrol->private_value;
3063         int reg = mc->reg;
3064         unsigned int shift = mc->shift;
3065         int max = mc->max;
3066         unsigned int mask = (1 << fls(max)) - 1;
3067         unsigned int invert = mc->invert;
3068         unsigned int val;
3069         int ret = 0;
3070
3071         if (snd_soc_volsw_is_stereo(mc))
3072                 dev_warn(dapm->dev,
3073                          "ASoC: Control '%s' is stereo, which is not supported\n",
3074                          kcontrol->id.name);
3075
3076         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3077         if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3078                 ret = soc_dapm_read(dapm, reg, &val);
3079                 val = (val >> shift) & mask;
3080         } else {
3081                 val = dapm_kcontrol_get_value(kcontrol);
3082         }
3083         mutex_unlock(&card->dapm_mutex);
3084
3085         if (ret)
3086                 return ret;
3087
3088         if (invert)
3089                 ucontrol->value.integer.value[0] = max - val;
3090         else
3091                 ucontrol->value.integer.value[0] = val;
3092
3093         return ret;
3094 }
3095 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3096
3097 /**
3098  * snd_soc_dapm_put_volsw - dapm mixer set callback
3099  * @kcontrol: mixer control
3100  * @ucontrol: control element information
3101  *
3102  * Callback to set the value of a dapm mixer control.
3103  *
3104  * Returns 0 for success.
3105  */
3106 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3107         struct snd_ctl_elem_value *ucontrol)
3108 {
3109         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3110         struct snd_soc_card *card = dapm->card;
3111         struct soc_mixer_control *mc =
3112                 (struct soc_mixer_control *)kcontrol->private_value;
3113         int reg = mc->reg;
3114         unsigned int shift = mc->shift;
3115         int max = mc->max;
3116         unsigned int mask = (1 << fls(max)) - 1;
3117         unsigned int invert = mc->invert;
3118         unsigned int val;
3119         int connect, change, reg_change = 0;
3120         struct snd_soc_dapm_update update;
3121         int ret = 0;
3122
3123         if (snd_soc_volsw_is_stereo(mc))
3124                 dev_warn(dapm->dev,
3125                          "ASoC: Control '%s' is stereo, which is not supported\n",
3126                          kcontrol->id.name);
3127
3128         val = (ucontrol->value.integer.value[0] & mask);
3129         connect = !!val;
3130
3131         if (invert)
3132                 val = max - val;
3133
3134         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3135
3136         change = dapm_kcontrol_set_value(kcontrol, val);
3137
3138         if (reg != SND_SOC_NOPM) {
3139                 mask = mask << shift;
3140                 val = val << shift;
3141
3142                 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
3143         }
3144
3145         if (change || reg_change) {
3146                 if (reg_change) {
3147                         update.kcontrol = kcontrol;
3148                         update.reg = reg;
3149                         update.mask = mask;
3150                         update.val = val;
3151                         card->update = &update;
3152                 }
3153                 change |= reg_change;
3154
3155                 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
3156
3157                 card->update = NULL;
3158         }
3159
3160         mutex_unlock(&card->dapm_mutex);
3161
3162         if (ret > 0)
3163                 soc_dpcm_runtime_update(card);
3164
3165         return change;
3166 }
3167 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3168
3169 /**
3170  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3171  * @kcontrol: mixer control
3172  * @ucontrol: control element information
3173  *
3174  * Callback to get the value of a dapm enumerated double mixer control.
3175  *
3176  * Returns 0 for success.
3177  */
3178 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3179         struct snd_ctl_elem_value *ucontrol)
3180 {
3181         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3182         struct snd_soc_card *card = dapm->card;
3183         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3184         unsigned int reg_val, val;
3185
3186         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3187         if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
3188                 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
3189                 if (ret) {
3190                         mutex_unlock(&card->dapm_mutex);
3191                         return ret;
3192                 }
3193         } else {
3194                 reg_val = dapm_kcontrol_get_value(kcontrol);
3195         }
3196         mutex_unlock(&card->dapm_mutex);
3197
3198         val = (reg_val >> e->shift_l) & e->mask;
3199         ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3200         if (e->shift_l != e->shift_r) {
3201                 val = (reg_val >> e->shift_r) & e->mask;
3202                 val = snd_soc_enum_val_to_item(e, val);
3203                 ucontrol->value.enumerated.item[1] = val;
3204         }
3205
3206         return 0;
3207 }
3208 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3209
3210 /**
3211  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3212  * @kcontrol: mixer control
3213  * @ucontrol: control element information
3214  *
3215  * Callback to set the value of a dapm enumerated double mixer control.
3216  *
3217  * Returns 0 for success.
3218  */
3219 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3220         struct snd_ctl_elem_value *ucontrol)
3221 {
3222         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3223         struct snd_soc_card *card = dapm->card;
3224         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3225         unsigned int *item = ucontrol->value.enumerated.item;
3226         unsigned int val, change, reg_change = 0;
3227         unsigned int mask;
3228         struct snd_soc_dapm_update update;
3229         int ret = 0;
3230
3231         if (item[0] >= e->items)
3232                 return -EINVAL;
3233
3234         val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
3235         mask = e->mask << e->shift_l;
3236         if (e->shift_l != e->shift_r) {
3237                 if (item[1] > e->items)
3238                         return -EINVAL;
3239                 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
3240                 mask |= e->mask << e->shift_r;
3241         }
3242
3243         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3244
3245         change = dapm_kcontrol_set_value(kcontrol, val);
3246
3247         if (e->reg != SND_SOC_NOPM)
3248                 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3249
3250         if (change || reg_change) {
3251                 if (reg_change) {
3252                         update.kcontrol = kcontrol;
3253                         update.reg = e->reg;
3254                         update.mask = mask;
3255                         update.val = val;
3256                         card->update = &update;
3257                 }
3258                 change |= reg_change;
3259
3260                 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
3261
3262                 card->update = NULL;
3263         }
3264
3265         mutex_unlock(&card->dapm_mutex);
3266
3267         if (ret > 0)
3268                 soc_dpcm_runtime_update(card);
3269
3270         return change;
3271 }
3272 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3273
3274 /**
3275  * snd_soc_dapm_info_pin_switch - Info for a pin switch
3276  *
3277  * @kcontrol: mixer control
3278  * @uinfo: control element information
3279  *
3280  * Callback to provide information about a pin switch control.
3281  */
3282 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3283                                  struct snd_ctl_elem_info *uinfo)
3284 {
3285         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3286         uinfo->count = 1;
3287         uinfo->value.integer.min = 0;
3288         uinfo->value.integer.max = 1;
3289
3290         return 0;
3291 }
3292 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3293
3294 /**
3295  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3296  *
3297  * @kcontrol: mixer control
3298  * @ucontrol: Value
3299  */
3300 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3301                                 struct snd_ctl_elem_value *ucontrol)
3302 {
3303         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3304         const char *pin = (const char *)kcontrol->private_value;
3305
3306         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3307
3308         ucontrol->value.integer.value[0] =
3309                 snd_soc_dapm_get_pin_status(&card->dapm, pin);
3310
3311         mutex_unlock(&card->dapm_mutex);
3312
3313         return 0;
3314 }
3315 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3316
3317 /**
3318  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3319  *
3320  * @kcontrol: mixer control
3321  * @ucontrol: Value
3322  */
3323 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3324                                 struct snd_ctl_elem_value *ucontrol)
3325 {
3326         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3327         const char *pin = (const char *)kcontrol->private_value;
3328         int ret;
3329
3330         if (ucontrol->value.integer.value[0])
3331                 ret = snd_soc_dapm_enable_pin(&card->dapm, pin);
3332         else
3333                 ret = snd_soc_dapm_disable_pin(&card->dapm, pin);
3334
3335         snd_soc_dapm_sync(&card->dapm);
3336         return ret;
3337 }
3338 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3339
3340 struct snd_soc_dapm_widget *
3341 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
3342         const struct snd_soc_dapm_widget *widget)
3343 {
3344         struct snd_soc_dapm_widget *w;
3345
3346         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3347         w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3348         /* Do not nag about probe deferrals */
3349         if (IS_ERR(w)) {
3350                 int ret = PTR_ERR(w);
3351
3352                 if (ret != -EPROBE_DEFER)
3353                         dev_err(dapm->dev,
3354                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3355                                 widget->name, ret);
3356                 goto out_unlock;
3357         }
3358         if (!w)
3359                 dev_err(dapm->dev,
3360                         "ASoC: Failed to create DAPM control %s\n",
3361                         widget->name);
3362
3363 out_unlock:
3364         mutex_unlock(&dapm->card->dapm_mutex);
3365         return w;
3366 }
3367 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
3368
3369 struct snd_soc_dapm_widget *
3370 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
3371                          const struct snd_soc_dapm_widget *widget)
3372 {
3373         enum snd_soc_dapm_direction dir;
3374         struct snd_soc_dapm_widget *w;
3375         const char *prefix;
3376         int ret;
3377
3378         if ((w = dapm_cnew_widget(widget)) == NULL)
3379                 return NULL;
3380
3381         switch (w->id) {
3382         case snd_soc_dapm_regulator_supply:
3383                 w->regulator = devm_regulator_get(dapm->dev, w->name);
3384                 if (IS_ERR(w->regulator)) {
3385                         ret = PTR_ERR(w->regulator);
3386                         if (ret == -EPROBE_DEFER)
3387                                 return ERR_PTR(ret);
3388                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3389                                 w->name, ret);
3390                         return NULL;
3391                 }
3392
3393                 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
3394                         ret = regulator_allow_bypass(w->regulator, true);
3395                         if (ret != 0)
3396                                 dev_warn(w->dapm->dev,
3397                                          "ASoC: Failed to bypass %s: %d\n",
3398                                          w->name, ret);
3399                 }
3400                 break;
3401         case snd_soc_dapm_clock_supply:
3402 #ifdef CONFIG_CLKDEV_LOOKUP
3403                 w->clk = devm_clk_get(dapm->dev, w->name);
3404                 if (IS_ERR(w->clk)) {
3405                         ret = PTR_ERR(w->clk);
3406                         if (ret == -EPROBE_DEFER)
3407                                 return ERR_PTR(ret);
3408                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3409                                 w->name, ret);
3410                         return NULL;
3411                 }
3412 #else
3413                 return NULL;
3414 #endif
3415                 break;
3416         default:
3417                 break;
3418         }
3419
3420         prefix = soc_dapm_prefix(dapm);
3421         if (prefix)
3422                 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
3423         else
3424                 w->name = kstrdup_const(widget->name, GFP_KERNEL);
3425         if (w->name == NULL) {
3426                 kfree(w);
3427                 return NULL;
3428         }
3429
3430         switch (w->id) {
3431         case snd_soc_dapm_mic:
3432                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3433                 w->power_check = dapm_generic_check_power;
3434                 break;
3435         case snd_soc_dapm_input:
3436                 if (!dapm->card->fully_routed)
3437                         w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3438                 w->power_check = dapm_generic_check_power;
3439                 break;
3440         case snd_soc_dapm_spk:
3441         case snd_soc_dapm_hp:
3442                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3443                 w->power_check = dapm_generic_check_power;
3444                 break;
3445         case snd_soc_dapm_output:
3446                 if (!dapm->card->fully_routed)
3447                         w->is_ep = SND_SOC_DAPM_EP_SINK;
3448                 w->power_check = dapm_generic_check_power;
3449                 break;
3450         case snd_soc_dapm_vmid:
3451         case snd_soc_dapm_siggen:
3452                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3453                 w->power_check = dapm_always_on_check_power;
3454                 break;
3455         case snd_soc_dapm_sink:
3456                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3457                 w->power_check = dapm_always_on_check_power;
3458                 break;
3459
3460         case snd_soc_dapm_mux:
3461         case snd_soc_dapm_demux:
3462         case snd_soc_dapm_switch:
3463         case snd_soc_dapm_mixer:
3464         case snd_soc_dapm_mixer_named_ctl:
3465         case snd_soc_dapm_adc:
3466         case snd_soc_dapm_aif_out:
3467         case snd_soc_dapm_dac:
3468         case snd_soc_dapm_aif_in:
3469         case snd_soc_dapm_pga:
3470         case snd_soc_dapm_out_drv:
3471         case snd_soc_dapm_micbias:
3472         case snd_soc_dapm_line:
3473         case snd_soc_dapm_dai_link:
3474         case snd_soc_dapm_dai_out:
3475         case snd_soc_dapm_dai_in:
3476                 w->power_check = dapm_generic_check_power;
3477                 break;
3478         case snd_soc_dapm_supply:
3479         case snd_soc_dapm_regulator_supply:
3480         case snd_soc_dapm_clock_supply:
3481         case snd_soc_dapm_kcontrol:
3482                 w->is_supply = 1;
3483                 w->power_check = dapm_supply_check_power;
3484                 break;
3485         default:
3486                 w->power_check = dapm_always_on_check_power;
3487                 break;
3488         }
3489
3490         w->dapm = dapm;
3491         INIT_LIST_HEAD(&w->list);
3492         INIT_LIST_HEAD(&w->dirty);
3493         list_add_tail(&w->list, &dapm->card->widgets);
3494
3495         snd_soc_dapm_for_each_direction(dir) {
3496                 INIT_LIST_HEAD(&w->edges[dir]);
3497                 w->endpoints[dir] = -1;
3498         }
3499
3500         /* machine layer sets up unconnected pins and insertions */
3501         w->connected = 1;
3502         return w;
3503 }
3504
3505 /**
3506  * snd_soc_dapm_new_controls - create new dapm controls
3507  * @dapm: DAPM context
3508  * @widget: widget array
3509  * @num: number of widgets
3510  *
3511  * Creates new DAPM controls based upon the templates.
3512  *
3513  * Returns 0 for success else error.
3514  */
3515 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
3516         const struct snd_soc_dapm_widget *widget,
3517         int num)
3518 {
3519         struct snd_soc_dapm_widget *w;
3520         int i;
3521         int ret = 0;
3522
3523         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
3524         for (i = 0; i < num; i++) {
3525                 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3526                 if (IS_ERR(w)) {
3527                         ret = PTR_ERR(w);
3528                         /* Do not nag about probe deferrals */
3529                         if (ret == -EPROBE_DEFER)
3530                                 break;
3531                         dev_err(dapm->dev,
3532                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3533                                 widget->name, ret);
3534                         break;
3535                 }
3536                 if (!w) {
3537                         dev_err(dapm->dev,
3538                                 "ASoC: Failed to create DAPM control %s\n",
3539                                 widget->name);
3540                         ret = -ENOMEM;
3541                         break;
3542                 }
3543                 widget++;
3544         }
3545         mutex_unlock(&dapm->card->dapm_mutex);
3546         return ret;
3547 }
3548 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3549
3550 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3551                                   struct snd_kcontrol *kcontrol, int event)
3552 {
3553         struct snd_soc_dapm_path *source_p, *sink_p;
3554         struct snd_soc_dai *source, *sink;
3555         const struct snd_soc_pcm_stream *config = w->params + w->params_select;
3556         struct snd_pcm_substream substream;
3557         struct snd_pcm_hw_params *params = NULL;
3558         struct snd_pcm_runtime *runtime = NULL;
3559         u64 fmt;
3560         int ret;
3561
3562         if (WARN_ON(!config) ||
3563             WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3564                     list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
3565                 return -EINVAL;
3566
3567         /* We only support a single source and sink, pick the first */
3568         source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3569                                     struct snd_soc_dapm_path,
3570                                     list_node[SND_SOC_DAPM_DIR_OUT]);
3571         sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3572                                     struct snd_soc_dapm_path,
3573                                     list_node[SND_SOC_DAPM_DIR_IN]);
3574
3575         source = source_p->source->priv;
3576         sink = sink_p->sink->priv;
3577
3578         /* Be a little careful as we don't want to overflow the mask array */
3579         if (config->formats) {
3580                 fmt = ffs(config->formats) - 1;
3581         } else {
3582                 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
3583                          config->formats);
3584                 fmt = 0;
3585         }
3586
3587         /* Currently very limited parameter selection */
3588         params = kzalloc(sizeof(*params), GFP_KERNEL);
3589         if (!params) {
3590                 ret = -ENOMEM;
3591                 goto out;
3592         }
3593         snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
3594
3595         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
3596                 config->rate_min;
3597         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
3598                 config->rate_max;
3599
3600         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
3601                 = config->channels_min;
3602         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
3603                 = config->channels_max;
3604
3605         memset(&substream, 0, sizeof(substream));
3606
3607         /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3608         runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3609         if (!runtime) {
3610                 ret = -ENOMEM;
3611                 goto out;
3612         }
3613         substream.runtime = runtime;
3614
3615         switch (event) {
3616         case SND_SOC_DAPM_PRE_PMU:
3617                 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3618                 if (source->driver->ops && source->driver->ops->startup) {
3619                         ret = source->driver->ops->startup(&substream, source);
3620                         if (ret < 0) {
3621                                 dev_err(source->dev,
3622                                         "ASoC: startup() failed: %d\n", ret);
3623                                 goto out;
3624                         }
3625                         source->active++;
3626                 }
3627                 ret = soc_dai_hw_params(&substream, params, source);
3628                 if (ret < 0)
3629                         goto out;
3630
3631                 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3632                 if (sink->driver->ops && sink->driver->ops->startup) {
3633                         ret = sink->driver->ops->startup(&substream, sink);
3634                         if (ret < 0) {
3635                                 dev_err(sink->dev,
3636                                         "ASoC: startup() failed: %d\n", ret);
3637                                 goto out;
3638                         }
3639                         sink->active++;
3640                 }
3641                 ret = soc_dai_hw_params(&substream, params, sink);
3642                 if (ret < 0)
3643                         goto out;
3644                 break;
3645
3646         case SND_SOC_DAPM_POST_PMU:
3647                 ret = snd_soc_dai_digital_mute(sink, 0,
3648                                                SNDRV_PCM_STREAM_PLAYBACK);
3649                 if (ret != 0 && ret != -ENOTSUPP)
3650                         dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
3651                 ret = 0;
3652                 break;
3653
3654         case SND_SOC_DAPM_PRE_PMD:
3655                 ret = snd_soc_dai_digital_mute(sink, 1,
3656                                                SNDRV_PCM_STREAM_PLAYBACK);
3657                 if (ret != 0 && ret != -ENOTSUPP)
3658                         dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
3659                 ret = 0;
3660
3661                 source->active--;
3662                 if (source->driver->ops && source->driver->ops->shutdown) {
3663                         substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3664                         source->driver->ops->shutdown(&substream, source);
3665                 }
3666
3667                 sink->active--;
3668                 if (sink->driver->ops && sink->driver->ops->shutdown) {
3669                         substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3670                         sink->driver->ops->shutdown(&substream, sink);
3671                 }
3672                 break;
3673
3674         default:
3675                 WARN(1, "Unknown event %d\n", event);
3676                 ret = -EINVAL;
3677         }
3678
3679 out:
3680         kfree(runtime);
3681         kfree(params);
3682         return ret;
3683 }
3684
3685 static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3686                           struct snd_ctl_elem_value *ucontrol)
3687 {
3688         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3689
3690         ucontrol->value.enumerated.item[0] = w->params_select;
3691
3692         return 0;
3693 }
3694
3695 static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3696                           struct snd_ctl_elem_value *ucontrol)
3697 {
3698         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3699
3700         /* Can't change the config when widget is already powered */
3701         if (w->power)
3702                 return -EBUSY;
3703
3704         if (ucontrol->value.enumerated.item[0] == w->params_select)
3705                 return 0;
3706
3707         if (ucontrol->value.enumerated.item[0] >= w->num_params)
3708                 return -EINVAL;
3709
3710         w->params_select = ucontrol->value.enumerated.item[0];
3711
3712         return 1;
3713 }
3714
3715 int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3716                          const struct snd_soc_pcm_stream *params,
3717                          unsigned int num_params,
3718                          struct snd_soc_dapm_widget *source,
3719                          struct snd_soc_dapm_widget *sink)
3720 {
3721         struct snd_soc_dapm_widget template;
3722         struct snd_soc_dapm_widget *w;
3723         char *link_name;
3724         int ret, count;
3725         unsigned long private_value;
3726         const char **w_param_text;
3727         struct soc_enum w_param_enum[] = {
3728                 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3729         };
3730         struct snd_kcontrol_new kcontrol_dai_link[] = {
3731                 SOC_ENUM_EXT(NULL, w_param_enum[0],
3732                              snd_soc_dapm_dai_link_get,
3733                              snd_soc_dapm_dai_link_put),
3734         };
3735         const struct snd_soc_pcm_stream *config = params;
3736
3737         w_param_text = devm_kcalloc(card->dev, num_params,
3738                                         sizeof(char *), GFP_KERNEL);
3739         if (!w_param_text)
3740                 return -ENOMEM;
3741
3742         link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3743                                    source->name, sink->name);
3744         if (!link_name) {
3745                 ret = -ENOMEM;
3746                 goto outfree_w_param;
3747         }
3748
3749         for (count = 0 ; count < num_params; count++) {
3750                 if (!config->stream_name) {
3751                         dev_warn(card->dapm.dev,
3752                                 "ASoC: anonymous config %d for dai link %s\n",
3753                                 count, link_name);
3754                         w_param_text[count] =
3755                                 devm_kasprintf(card->dev, GFP_KERNEL,
3756                                                "Anonymous Configuration %d",
3757                                                count);
3758                         if (!w_param_text[count]) {
3759                                 ret = -ENOMEM;
3760                                 goto outfree_link_name;
3761                         }
3762                 } else {
3763                         w_param_text[count] = devm_kmemdup(card->dev,
3764                                                 config->stream_name,
3765                                                 strlen(config->stream_name) + 1,
3766                                                 GFP_KERNEL);
3767                         if (!w_param_text[count]) {
3768                                 ret = -ENOMEM;
3769                                 goto outfree_link_name;
3770                         }
3771                 }
3772                 config++;
3773         }
3774         w_param_enum[0].items = num_params;
3775         w_param_enum[0].texts = w_param_text;
3776
3777         memset(&template, 0, sizeof(template));
3778         template.reg = SND_SOC_NOPM;
3779         template.id = snd_soc_dapm_dai_link;
3780         template.name = link_name;
3781         template.event = snd_soc_dai_link_event;
3782         template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3783                 SND_SOC_DAPM_PRE_PMD;
3784         template.num_kcontrols = 1;
3785         /* duplicate w_param_enum on heap so that memory persists */
3786         private_value =
3787                 (unsigned long) devm_kmemdup(card->dev,
3788                         (void *)(kcontrol_dai_link[0].private_value),
3789                         sizeof(struct soc_enum), GFP_KERNEL);
3790         if (!private_value) {
3791                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3792                         link_name);
3793                 ret = -ENOMEM;
3794                 goto outfree_link_name;
3795         }
3796         kcontrol_dai_link[0].private_value = private_value;
3797         /* duplicate kcontrol_dai_link on heap so that memory persists */
3798         template.kcontrol_news =
3799                                 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3800                                         sizeof(struct snd_kcontrol_new),
3801                                         GFP_KERNEL);
3802         if (!template.kcontrol_news) {
3803                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3804                         link_name);
3805                 ret = -ENOMEM;
3806                 goto outfree_private_value;
3807         }
3808
3809         dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
3810
3811         w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
3812         if (IS_ERR(w)) {
3813                 ret = PTR_ERR(w);
3814                 /* Do not nag about probe deferrals */
3815                 if (ret != -EPROBE_DEFER)
3816                         dev_err(card->dev,
3817                                 "ASoC: Failed to create %s widget (%d)\n",
3818                                 link_name, ret);
3819                 goto outfree_kcontrol_news;
3820         }
3821         if (!w) {
3822                 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
3823                         link_name);
3824                 ret = -ENOMEM;
3825                 goto outfree_kcontrol_news;
3826         }
3827
3828         w->params = params;
3829         w->num_params = num_params;
3830
3831         ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3832         if (ret)
3833                 goto outfree_w;
3834         return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
3835
3836 outfree_w:
3837         devm_kfree(card->dev, w);
3838 outfree_kcontrol_news:
3839         devm_kfree(card->dev, (void *)template.kcontrol_news);
3840 outfree_private_value:
3841         devm_kfree(card->dev, (void *)private_value);
3842 outfree_link_name:
3843         devm_kfree(card->dev, link_name);
3844 outfree_w_param:
3845         for (count = 0 ; count < num_params; count++)
3846                 devm_kfree(card->dev, (void *)w_param_text[count]);
3847         devm_kfree(card->dev, w_param_text);
3848
3849         return ret;
3850 }
3851
3852 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3853                                  struct snd_soc_dai *dai)
3854 {
3855         struct snd_soc_dapm_widget template;
3856         struct snd_soc_dapm_widget *w;
3857
3858         WARN_ON(dapm->dev != dai->dev);
3859
3860         memset(&template, 0, sizeof(template));
3861         template.reg = SND_SOC_NOPM;
3862
3863         if (dai->driver->playback.stream_name) {
3864                 template.id = snd_soc_dapm_dai_in;
3865                 template.name = dai->driver->playback.stream_name;
3866                 template.sname = dai->driver->playback.stream_name;
3867
3868                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3869                         template.name);
3870
3871                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3872                 if (IS_ERR(w)) {
3873                         int ret = PTR_ERR(w);
3874
3875                         /* Do not nag about probe deferrals */
3876                         if (ret != -EPROBE_DEFER)
3877                                 dev_err(dapm->dev,
3878                                 "ASoC: Failed to create %s widget (%d)\n",
3879                                 dai->driver->playback.stream_name, ret);
3880                         return ret;
3881                 }
3882                 if (!w) {
3883                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3884                                 dai->driver->playback.stream_name);
3885                         return -ENOMEM;
3886                 }
3887
3888                 w->priv = dai;
3889                 dai->playback_widget = w;
3890         }
3891
3892         if (dai->driver->capture.stream_name) {
3893                 template.id = snd_soc_dapm_dai_out;
3894                 template.name = dai->driver->capture.stream_name;
3895                 template.sname = dai->driver->capture.stream_name;
3896
3897                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3898                         template.name);
3899
3900                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3901                 if (IS_ERR(w)) {
3902                         int ret = PTR_ERR(w);
3903
3904                         /* Do not nag about probe deferrals */
3905                         if (ret != -EPROBE_DEFER)
3906                                 dev_err(dapm->dev,
3907                                 "ASoC: Failed to create %s widget (%d)\n",
3908                                 dai->driver->playback.stream_name, ret);
3909                         return ret;
3910                 }
3911                 if (!w) {
3912                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3913                                 dai->driver->capture.stream_name);
3914                         return -ENOMEM;
3915                 }
3916
3917                 w->priv = dai;
3918                 dai->capture_widget = w;
3919         }
3920
3921         return 0;
3922 }
3923
3924 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3925 {
3926         struct snd_soc_dapm_widget *dai_w, *w;
3927         struct snd_soc_dapm_widget *src, *sink;
3928         struct snd_soc_dai *dai;
3929
3930         /* For each DAI widget... */
3931         list_for_each_entry(dai_w, &card->widgets, list) {
3932                 switch (dai_w->id) {
3933                 case snd_soc_dapm_dai_in:
3934                 case snd_soc_dapm_dai_out:
3935                         break;
3936                 default:
3937                         continue;
3938                 }
3939
3940                 /* let users know there is no DAI to link */
3941                 if (!dai_w->priv) {
3942                         dev_dbg(card->dev, "dai widget %s has no DAI\n",
3943                                 dai_w->name);
3944                         continue;
3945                 }
3946
3947                 dai = dai_w->priv;
3948
3949                 /* ...find all widgets with the same stream and link them */
3950                 list_for_each_entry(w, &card->widgets, list) {
3951                         if (w->dapm != dai_w->dapm)
3952                                 continue;
3953
3954                         switch (w->id) {
3955                         case snd_soc_dapm_dai_in:
3956                         case snd_soc_dapm_dai_out:
3957                                 continue;
3958                         default:
3959                                 break;
3960                         }
3961
3962                         if (!w->sname || !strstr(w->sname, dai_w->sname))
3963                                 continue;
3964
3965                         if (dai_w->id == snd_soc_dapm_dai_in) {
3966                                 src = dai_w;
3967                                 sink = w;
3968                         } else {
3969                                 src = w;
3970                                 sink = dai_w;
3971                         }
3972                         dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3973                         snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
3974                 }
3975         }
3976
3977         return 0;
3978 }
3979
3980 static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3981                                           struct snd_soc_pcm_runtime *rtd)
3982 {
3983         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3984         struct snd_soc_dapm_widget *sink, *source;
3985         int i;
3986
3987         for (i = 0; i < rtd->num_codecs; i++) {
3988                 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
3989
3990                 /* connect BE DAI playback if widgets are valid */
3991                 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
3992                         source = cpu_dai->playback_widget;
3993                         sink = codec_dai->playback_widget;
3994                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
3995                                 cpu_dai->component->name, source->name,
3996                                 codec_dai->component->name, sink->name);
3997
3998                         snd_soc_dapm_add_path(&card->dapm, source, sink,
3999                                 NULL, NULL);
4000                 }
4001
4002                 /* connect BE DAI capture if widgets are valid */
4003                 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
4004                         source = codec_dai->capture_widget;
4005                         sink = cpu_dai->capture_widget;
4006                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
4007                                 codec_dai->component->name, source->name,
4008                                 cpu_dai->component->name, sink->name);
4009
4010                         snd_soc_dapm_add_path(&card->dapm, source, sink,
4011                                 NULL, NULL);
4012                 }
4013         }
4014 }
4015
4016 static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
4017         int event)
4018 {
4019         struct snd_soc_dapm_widget *w;
4020         unsigned int ep;
4021
4022         if (stream == SNDRV_PCM_STREAM_PLAYBACK)
4023                 w = dai->playback_widget;
4024         else
4025                 w = dai->capture_widget;
4026
4027         if (w) {
4028                 dapm_mark_dirty(w, "stream event");
4029
4030                 if (w->id == snd_soc_dapm_dai_in) {
4031                         ep = SND_SOC_DAPM_EP_SOURCE;
4032                         dapm_widget_invalidate_input_paths(w);
4033                 } else {
4034                         ep = SND_SOC_DAPM_EP_SINK;
4035                         dapm_widget_invalidate_output_paths(w);
4036                 }
4037
4038                 switch (event) {
4039                 case SND_SOC_DAPM_STREAM_START:
4040                         w->active = 1;
4041                         w->is_ep = ep;
4042                         break;
4043                 case SND_SOC_DAPM_STREAM_STOP:
4044                         w->active = 0;
4045                         w->is_ep = 0;
4046                         break;
4047                 case SND_SOC_DAPM_STREAM_SUSPEND:
4048                 case SND_SOC_DAPM_STREAM_RESUME:
4049                 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
4050                 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
4051                         break;
4052                 }
4053         }
4054 }
4055
4056 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
4057 {
4058         struct snd_soc_pcm_runtime *rtd;
4059
4060         /* for each BE DAI link... */
4061         list_for_each_entry(rtd, &card->rtd_list, list)  {
4062                 /*
4063                  * dynamic FE links have no fixed DAI mapping.
4064                  * CODEC<->CODEC links have no direct connection.
4065                  */
4066                 if (rtd->dai_link->dynamic || rtd->dai_link->params)
4067                         continue;
4068
4069                 dapm_connect_dai_link_widgets(card, rtd);
4070         }
4071 }
4072
4073 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4074         int event)
4075 {
4076         int i;
4077
4078         soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
4079         for (i = 0; i < rtd->num_codecs; i++)
4080                 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
4081
4082         dapm_power_widgets(rtd->card, event);
4083 }
4084
4085 /**
4086  * snd_soc_dapm_stream_event - send a stream event to the dapm core
4087  * @rtd: PCM runtime data
4088  * @stream: stream name
4089  * @event: stream event
4090  *
4091  * Sends a stream event to the dapm core. The core then makes any
4092  * necessary widget power changes.
4093  *
4094  * Returns 0 for success else error.
4095  */
4096 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4097                               int event)
4098 {
4099         struct snd_soc_card *card = rtd->card;
4100
4101         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4102         soc_dapm_stream_event(rtd, stream, event);
4103         mutex_unlock(&card->dapm_mutex);
4104 }
4105
4106 /**
4107  * snd_soc_dapm_enable_pin_unlocked - enable pin.
4108  * @dapm: DAPM context
4109  * @pin: pin name
4110  *
4111  * Enables input/output pin and its parents or children widgets iff there is
4112  * a valid audio route and active audio stream.
4113  *
4114  * Requires external locking.
4115  *
4116  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4117  * do any widget power switching.
4118  */
4119 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4120                                    const char *pin)
4121 {
4122         return snd_soc_dapm_set_pin(dapm, pin, 1);
4123 }
4124 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4125
4126 /**
4127  * snd_soc_dapm_enable_pin - enable pin.
4128  * @dapm: DAPM context
4129  * @pin: pin name
4130  *
4131  * Enables input/output pin and its parents or children widgets iff there is
4132  * a valid audio route and active audio stream.
4133  *
4134  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4135  * do any widget power switching.
4136  */
4137 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4138 {
4139         int ret;
4140
4141         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4142
4143         ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4144
4145         mutex_unlock(&dapm->card->dapm_mutex);
4146
4147         return ret;
4148 }
4149 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
4150
4151 /**
4152  * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4153  * @dapm: DAPM context
4154  * @pin: pin name
4155  *
4156  * Enables input/output pin regardless of any other state.  This is
4157  * intended for use with microphone bias supplies used in microphone
4158  * jack detection.
4159  *
4160  * Requires external locking.
4161  *
4162  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4163  * do any widget power switching.
4164  */
4165 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4166                                          const char *pin)
4167 {
4168         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4169
4170         if (!w) {
4171                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4172                 return -EINVAL;
4173         }
4174
4175         dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
4176         if (!w->connected) {
4177                 /*
4178                  * w->force does not affect the number of input or output paths,
4179                  * so we only have to recheck if w->connected is changed
4180                  */
4181                 dapm_widget_invalidate_input_paths(w);
4182                 dapm_widget_invalidate_output_paths(w);
4183                 w->connected = 1;
4184         }
4185         w->force = 1;
4186         dapm_mark_dirty(w, "force enable");
4187
4188         return 0;
4189 }
4190 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4191
4192 /**
4193  * snd_soc_dapm_force_enable_pin - force a pin to be enabled
4194  * @dapm: DAPM context
4195  * @pin: pin name
4196  *
4197  * Enables input/output pin regardless of any other state.  This is
4198  * intended for use with microphone bias supplies used in microphone
4199  * jack detection.
4200  *
4201  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4202  * do any widget power switching.
4203  */
4204 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4205                                   const char *pin)
4206 {
4207         int ret;
4208
4209         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4210
4211         ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
4212
4213         mutex_unlock(&dapm->card->dapm_mutex);
4214
4215         return ret;
4216 }
4217 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4218
4219 /**
4220  * snd_soc_dapm_disable_pin_unlocked - disable pin.
4221  * @dapm: DAPM context
4222  * @pin: pin name
4223  *
4224  * Disables input/output pin and its parents or children widgets.
4225  *
4226  * Requires external locking.
4227  *
4228  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4229  * do any widget power switching.
4230  */
4231 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4232                                     const char *pin)
4233 {
4234         return snd_soc_dapm_set_pin(dapm, pin, 0);
4235 }
4236 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4237
4238 /**
4239  * snd_soc_dapm_disable_pin - disable pin.
4240  * @dapm: DAPM context
4241  * @pin: pin name
4242  *
4243  * Disables input/output pin and its parents or children widgets.
4244  *
4245  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4246  * do any widget power switching.
4247  */
4248 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4249                              const char *pin)
4250 {
4251         int ret;
4252
4253         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4254
4255         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4256
4257         mutex_unlock(&dapm->card->dapm_mutex);
4258
4259         return ret;
4260 }
4261 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4262
4263 /**
4264  * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4265  * @dapm: DAPM context
4266  * @pin: pin name
4267  *
4268  * Marks the specified pin as being not connected, disabling it along
4269  * any parent or child widgets.  At present this is identical to
4270  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4271  * additional things such as disabling controls which only affect
4272  * paths through the pin.
4273  *
4274  * Requires external locking.
4275  *
4276  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4277  * do any widget power switching.
4278  */
4279 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4280                                const char *pin)
4281 {
4282         return snd_soc_dapm_set_pin(dapm, pin, 0);
4283 }
4284 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4285
4286 /**
4287  * snd_soc_dapm_nc_pin - permanently disable pin.
4288  * @dapm: DAPM context
4289  * @pin: pin name
4290  *
4291  * Marks the specified pin as being not connected, disabling it along
4292  * any parent or child widgets.  At present this is identical to
4293  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4294  * additional things such as disabling controls which only affect
4295  * paths through the pin.
4296  *
4297  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4298  * do any widget power switching.
4299  */
4300 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4301 {
4302         int ret;
4303
4304         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4305
4306         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4307
4308         mutex_unlock(&dapm->card->dapm_mutex);
4309
4310         return ret;
4311 }
4312 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4313
4314 /**
4315  * snd_soc_dapm_get_pin_status - get audio pin status
4316  * @dapm: DAPM context
4317  * @pin: audio signal pin endpoint (or start point)
4318  *
4319  * Get audio pin status - connected or disconnected.
4320  *
4321  * Returns 1 for connected otherwise 0.
4322  */
4323 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4324                                 const char *pin)
4325 {
4326         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4327
4328         if (w)
4329                 return w->connected;
4330
4331         return 0;
4332 }
4333 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
4334
4335 /**
4336  * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
4337  * @dapm: DAPM context
4338  * @pin: audio signal pin endpoint (or start point)
4339  *
4340  * Mark the given endpoint or pin as ignoring suspend.  When the
4341  * system is disabled a path between two endpoints flagged as ignoring
4342  * suspend will not be disabled.  The path must already be enabled via
4343  * normal means at suspend time, it will not be turned on if it was not
4344  * already enabled.
4345  */
4346 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4347                                 const char *pin)
4348 {
4349         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
4350
4351         if (!w) {
4352                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4353                 return -EINVAL;
4354         }
4355
4356         w->ignore_suspend = 1;
4357
4358         return 0;
4359 }
4360 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4361
4362 /**
4363  * snd_soc_dapm_free - free dapm resources
4364  * @dapm: DAPM context
4365  *
4366  * Free all dapm widgets and resources.
4367  */
4368 void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
4369 {
4370         dapm_debugfs_cleanup(dapm);
4371         dapm_free_widgets(dapm);
4372         list_del(&dapm->list);
4373 }
4374 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4375
4376 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
4377 {
4378         struct snd_soc_card *card = dapm->card;
4379         struct snd_soc_dapm_widget *w;
4380         LIST_HEAD(down_list);
4381         int powerdown = 0;
4382
4383         mutex_lock(&card->dapm_mutex);
4384
4385         list_for_each_entry(w, &dapm->card->widgets, list) {
4386                 if (w->dapm != dapm)
4387                         continue;
4388                 if (w->power) {
4389                         dapm_seq_insert(w, &down_list, false);
4390                         w->new_power = 0;
4391                         powerdown = 1;
4392                 }
4393         }
4394
4395         /* If there were no widgets to power down we're already in
4396          * standby.
4397          */
4398         if (powerdown) {
4399                 if (dapm->bias_level == SND_SOC_BIAS_ON)
4400                         snd_soc_dapm_set_bias_level(dapm,
4401                                                     SND_SOC_BIAS_PREPARE);
4402                 dapm_seq_run(card, &down_list, 0, false);
4403                 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4404                         snd_soc_dapm_set_bias_level(dapm,
4405                                                     SND_SOC_BIAS_STANDBY);
4406         }
4407
4408         mutex_unlock(&card->dapm_mutex);
4409 }
4410
4411 /*
4412  * snd_soc_dapm_shutdown - callback for system shutdown
4413  */
4414 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4415 {
4416         struct snd_soc_dapm_context *dapm;
4417
4418         list_for_each_entry(dapm, &card->dapm_list, list) {
4419                 if (dapm != &card->dapm) {
4420                         soc_dapm_shutdown_dapm(dapm);
4421                         if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4422                                 snd_soc_dapm_set_bias_level(dapm,
4423                                                             SND_SOC_BIAS_OFF);
4424                 }
4425         }
4426
4427         soc_dapm_shutdown_dapm(&card->dapm);
4428         if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4429                 snd_soc_dapm_set_bias_level(&card->dapm,
4430                                             SND_SOC_BIAS_OFF);
4431 }
4432
4433 /* Module information */
4434 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4435 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4436 MODULE_LICENSE("GPL");