GNU Linux-libre 4.9.282-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
2414         dapm_assert_locked(dapm);
2415
2416         if (!w) {
2417                 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
2418                 return -EINVAL;
2419         }
2420
2421         if (w->connected != status) {
2422                 dapm_mark_dirty(w, "pin configuration");
2423                 dapm_widget_invalidate_input_paths(w);
2424                 dapm_widget_invalidate_output_paths(w);
2425         }
2426
2427         w->connected = status;
2428         if (status == 0)
2429                 w->force = 0;
2430
2431         return 0;
2432 }
2433
2434 /**
2435  * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2436  * @dapm: DAPM context
2437  *
2438  * Walks all dapm audio paths and powers widgets according to their
2439  * stream or path usage.
2440  *
2441  * Requires external locking.
2442  *
2443  * Returns 0 for success.
2444  */
2445 int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2446 {
2447         /*
2448          * Suppress early reports (eg, jacks syncing their state) to avoid
2449          * silly DAPM runs during card startup.
2450          */
2451         if (!dapm->card || !dapm->card->instantiated)
2452                 return 0;
2453
2454         return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2455 }
2456 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2457
2458 /**
2459  * snd_soc_dapm_sync - scan and power dapm paths
2460  * @dapm: DAPM context
2461  *
2462  * Walks all dapm audio paths and powers widgets according to their
2463  * stream or path usage.
2464  *
2465  * Returns 0 for success.
2466  */
2467 int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
2468 {
2469         int ret;
2470
2471         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2472         ret = snd_soc_dapm_sync_unlocked(dapm);
2473         mutex_unlock(&dapm->card->dapm_mutex);
2474         return ret;
2475 }
2476 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
2477
2478 /*
2479  * dapm_update_widget_flags() - Re-compute widget sink and source flags
2480  * @w: The widget for which to update the flags
2481  *
2482  * Some widgets have a dynamic category which depends on which neighbors they
2483  * are connected to. This function update the category for these widgets.
2484  *
2485  * This function must be called whenever a path is added or removed to a widget.
2486  */
2487 static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2488 {
2489         enum snd_soc_dapm_direction dir;
2490         struct snd_soc_dapm_path *p;
2491         unsigned int ep;
2492
2493         switch (w->id) {
2494         case snd_soc_dapm_input:
2495                 /* On a fully routed card an input is never a source */
2496                 if (w->dapm->card->fully_routed)
2497                         return;
2498                 ep = SND_SOC_DAPM_EP_SOURCE;
2499                 snd_soc_dapm_widget_for_each_source_path(w, p) {
2500                         if (p->source->id == snd_soc_dapm_micbias ||
2501                                 p->source->id == snd_soc_dapm_mic ||
2502                                 p->source->id == snd_soc_dapm_line ||
2503                                 p->source->id == snd_soc_dapm_output) {
2504                                         ep = 0;
2505                                         break;
2506                         }
2507                 }
2508                 break;
2509         case snd_soc_dapm_output:
2510                 /* On a fully routed card a output is never a sink */
2511                 if (w->dapm->card->fully_routed)
2512                         return;
2513                 ep = SND_SOC_DAPM_EP_SINK;
2514                 snd_soc_dapm_widget_for_each_sink_path(w, p) {
2515                         if (p->sink->id == snd_soc_dapm_spk ||
2516                                 p->sink->id == snd_soc_dapm_hp ||
2517                                 p->sink->id == snd_soc_dapm_line ||
2518                                 p->sink->id == snd_soc_dapm_input) {
2519                                         ep = 0;
2520                                         break;
2521                         }
2522                 }
2523                 break;
2524         case snd_soc_dapm_line:
2525                 ep = 0;
2526                 snd_soc_dapm_for_each_direction(dir) {
2527                         if (!list_empty(&w->edges[dir]))
2528                                 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2529                 }
2530                 break;
2531         default:
2532                 return;
2533         }
2534
2535         w->is_ep = ep;
2536 }
2537
2538 static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2539         struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2540         const char *control)
2541 {
2542         bool dynamic_source = false;
2543         bool dynamic_sink = false;
2544
2545         if (!control)
2546                 return 0;
2547
2548         switch (source->id) {
2549         case snd_soc_dapm_demux:
2550                 dynamic_source = true;
2551                 break;
2552         default:
2553                 break;
2554         }
2555
2556         switch (sink->id) {
2557         case snd_soc_dapm_mux:
2558         case snd_soc_dapm_switch:
2559         case snd_soc_dapm_mixer:
2560         case snd_soc_dapm_mixer_named_ctl:
2561                 dynamic_sink = true;
2562                 break;
2563         default:
2564                 break;
2565         }
2566
2567         if (dynamic_source && dynamic_sink) {
2568                 dev_err(dapm->dev,
2569                         "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2570                         source->name, control, sink->name);
2571                 return -EINVAL;
2572         } else if (!dynamic_source && !dynamic_sink) {
2573                 dev_err(dapm->dev,
2574                         "Control not supported for path %s -> [%s] -> %s\n",
2575                         source->name, control, sink->name);
2576                 return -EINVAL;
2577         }
2578
2579         return 0;
2580 }
2581
2582 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2583         struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2584         const char *control,
2585         int (*connected)(struct snd_soc_dapm_widget *source,
2586                          struct snd_soc_dapm_widget *sink))
2587 {
2588         struct snd_soc_dapm_widget *widgets[2];
2589         enum snd_soc_dapm_direction dir;
2590         struct snd_soc_dapm_path *path;
2591         int ret;
2592
2593         if (wsink->is_supply && !wsource->is_supply) {
2594                 dev_err(dapm->dev,
2595                         "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2596                         wsource->name, wsink->name);
2597                 return -EINVAL;
2598         }
2599
2600         if (connected && !wsource->is_supply) {
2601                 dev_err(dapm->dev,
2602                         "connected() callback only supported for supply widgets (%s -> %s)\n",
2603                         wsource->name, wsink->name);
2604                 return -EINVAL;
2605         }
2606
2607         if (wsource->is_supply && control) {
2608                 dev_err(dapm->dev,
2609                         "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2610                         wsource->name, control, wsink->name);
2611                 return -EINVAL;
2612         }
2613
2614         ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2615         if (ret)
2616                 return ret;
2617
2618         path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2619         if (!path)
2620                 return -ENOMEM;
2621
2622         path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2623         path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2624         widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2625         widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2626
2627         path->connected = connected;
2628         INIT_LIST_HEAD(&path->list);
2629         INIT_LIST_HEAD(&path->list_kcontrol);
2630
2631         if (wsource->is_supply || wsink->is_supply)
2632                 path->is_supply = 1;
2633
2634         /* connect static paths */
2635         if (control == NULL) {
2636                 path->connect = 1;
2637         } else {
2638                 switch (wsource->id) {
2639                 case snd_soc_dapm_demux:
2640                         ret = dapm_connect_mux(dapm, path, control, wsource);
2641                         if (ret)
2642                                 goto err;
2643                         break;
2644                 default:
2645                         break;
2646                 }
2647
2648                 switch (wsink->id) {
2649                 case snd_soc_dapm_mux:
2650                         ret = dapm_connect_mux(dapm, path, control, wsink);
2651                         if (ret != 0)
2652                                 goto err;
2653                         break;
2654                 case snd_soc_dapm_switch:
2655                 case snd_soc_dapm_mixer:
2656                 case snd_soc_dapm_mixer_named_ctl:
2657                         ret = dapm_connect_mixer(dapm, path, control);
2658                         if (ret != 0)
2659                                 goto err;
2660                         break;
2661                 default:
2662                         break;
2663                 }
2664         }
2665
2666         list_add(&path->list, &dapm->card->paths);
2667         snd_soc_dapm_for_each_direction(dir)
2668                 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
2669
2670         snd_soc_dapm_for_each_direction(dir) {
2671                 dapm_update_widget_flags(widgets[dir]);
2672                 dapm_mark_dirty(widgets[dir], "Route added");
2673         }
2674
2675         if (dapm->card->instantiated && path->connect)
2676                 dapm_path_invalidate(path);
2677
2678         return 0;
2679 err:
2680         kfree(path);
2681         return ret;
2682 }
2683
2684 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
2685                                   const struct snd_soc_dapm_route *route)
2686 {
2687         struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2688         struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2689         const char *sink;
2690         const char *source;
2691         char prefixed_sink[80];
2692         char prefixed_source[80];
2693         const char *prefix;
2694         int ret;
2695
2696         prefix = soc_dapm_prefix(dapm);
2697         if (prefix) {
2698                 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2699                          prefix, route->sink);
2700                 sink = prefixed_sink;
2701                 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2702                          prefix, route->source);
2703                 source = prefixed_source;
2704         } else {
2705                 sink = route->sink;
2706                 source = route->source;
2707         }
2708
2709         wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2710         wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2711
2712         if (wsink && wsource)
2713                 goto skip_search;
2714
2715         /*
2716          * find src and dest widgets over all widgets but favor a widget from
2717          * current DAPM context
2718          */
2719         list_for_each_entry(w, &dapm->card->widgets, list) {
2720                 if (!wsink && !(strcmp(w->name, sink))) {
2721                         wtsink = w;
2722                         if (w->dapm == dapm) {
2723                                 wsink = w;
2724                                 if (wsource)
2725                                         break;
2726                         }
2727                         continue;
2728                 }
2729                 if (!wsource && !(strcmp(w->name, source))) {
2730                         wtsource = w;
2731                         if (w->dapm == dapm) {
2732                                 wsource = w;
2733                                 if (wsink)
2734                                         break;
2735                         }
2736                 }
2737         }
2738         /* use widget from another DAPM context if not found from this */
2739         if (!wsink)
2740                 wsink = wtsink;
2741         if (!wsource)
2742                 wsource = wtsource;
2743
2744         if (wsource == NULL) {
2745                 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2746                         route->source);
2747                 return -ENODEV;
2748         }
2749         if (wsink == NULL) {
2750                 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2751                         route->sink);
2752                 return -ENODEV;
2753         }
2754
2755 skip_search:
2756         dapm_wcache_update(&dapm->path_sink_cache, wsink);
2757         dapm_wcache_update(&dapm->path_source_cache, wsource);
2758
2759         ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2760                 route->connected);
2761         if (ret)
2762                 goto err;
2763
2764         return 0;
2765 err:
2766         dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
2767                  source, route->control, sink);
2768         return ret;
2769 }
2770
2771 static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2772                                   const struct snd_soc_dapm_route *route)
2773 {
2774         struct snd_soc_dapm_widget *wsource, *wsink;
2775         struct snd_soc_dapm_path *path, *p;
2776         const char *sink;
2777         const char *source;
2778         char prefixed_sink[80];
2779         char prefixed_source[80];
2780         const char *prefix;
2781
2782         if (route->control) {
2783                 dev_err(dapm->dev,
2784                         "ASoC: Removal of routes with controls not supported\n");
2785                 return -EINVAL;
2786         }
2787
2788         prefix = soc_dapm_prefix(dapm);
2789         if (prefix) {
2790                 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2791                          prefix, route->sink);
2792                 sink = prefixed_sink;
2793                 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2794                          prefix, route->source);
2795                 source = prefixed_source;
2796         } else {
2797                 sink = route->sink;
2798                 source = route->source;
2799         }
2800
2801         path = NULL;
2802         list_for_each_entry(p, &dapm->card->paths, list) {
2803                 if (strcmp(p->source->name, source) != 0)
2804                         continue;
2805                 if (strcmp(p->sink->name, sink) != 0)
2806                         continue;
2807                 path = p;
2808                 break;
2809         }
2810
2811         if (path) {
2812                 wsource = path->source;
2813                 wsink = path->sink;
2814
2815                 dapm_mark_dirty(wsource, "Route removed");
2816                 dapm_mark_dirty(wsink, "Route removed");
2817                 if (path->connect)
2818                         dapm_path_invalidate(path);
2819
2820                 dapm_free_path(path);
2821
2822                 /* Update any path related flags */
2823                 dapm_update_widget_flags(wsource);
2824                 dapm_update_widget_flags(wsink);
2825         } else {
2826                 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
2827                          source, sink);
2828         }
2829
2830         return 0;
2831 }
2832
2833 /**
2834  * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2835  * @dapm: DAPM context
2836  * @route: audio routes
2837  * @num: number of routes
2838  *
2839  * Connects 2 dapm widgets together via a named audio path. The sink is
2840  * the widget receiving the audio signal, whilst the source is the sender
2841  * of the audio signal.
2842  *
2843  * Returns 0 for success else error. On error all resources can be freed
2844  * with a call to snd_soc_card_free().
2845  */
2846 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
2847                             const struct snd_soc_dapm_route *route, int num)
2848 {
2849         int i, r, ret = 0;
2850
2851         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2852         for (i = 0; i < num; i++) {
2853                 r = snd_soc_dapm_add_route(dapm, route);
2854                 if (r < 0) {
2855                         dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2856                                 route->source,
2857                                 route->control ? route->control : "direct",
2858                                 route->sink);
2859                         ret = r;
2860                 }
2861                 route++;
2862         }
2863         mutex_unlock(&dapm->card->dapm_mutex);
2864
2865         return ret;
2866 }
2867 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2868
2869 /**
2870  * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2871  * @dapm: DAPM context
2872  * @route: audio routes
2873  * @num: number of routes
2874  *
2875  * Removes routes from the DAPM context.
2876  */
2877 int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2878                             const struct snd_soc_dapm_route *route, int num)
2879 {
2880         int i;
2881
2882         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2883         for (i = 0; i < num; i++) {
2884                 snd_soc_dapm_del_route(dapm, route);
2885                 route++;
2886         }
2887         mutex_unlock(&dapm->card->dapm_mutex);
2888
2889         return 0;
2890 }
2891 EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2892
2893 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2894                                    const struct snd_soc_dapm_route *route)
2895 {
2896         struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2897                                                               route->source,
2898                                                               true);
2899         struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2900                                                             route->sink,
2901                                                             true);
2902         struct snd_soc_dapm_path *path;
2903         int count = 0;
2904
2905         if (!source) {
2906                 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
2907                         route->source);
2908                 return -ENODEV;
2909         }
2910
2911         if (!sink) {
2912                 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
2913                         route->sink);
2914                 return -ENODEV;
2915         }
2916
2917         if (route->control || route->connected)
2918                 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
2919                          route->source, route->sink);
2920
2921         snd_soc_dapm_widget_for_each_sink_path(source, path) {
2922                 if (path->sink == sink) {
2923                         path->weak = 1;
2924                         count++;
2925                 }
2926         }
2927
2928         if (count == 0)
2929                 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
2930                         route->source, route->sink);
2931         if (count > 1)
2932                 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
2933                          count, route->source, route->sink);
2934
2935         return 0;
2936 }
2937
2938 /**
2939  * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2940  * @dapm: DAPM context
2941  * @route: audio routes
2942  * @num: number of routes
2943  *
2944  * Mark existing routes matching those specified in the passed array
2945  * as being weak, meaning that they are ignored for the purpose of
2946  * power decisions.  The main intended use case is for sidetone paths
2947  * which couple audio between other independent paths if they are both
2948  * active in order to make the combination work better at the user
2949  * level but which aren't intended to be "used".
2950  *
2951  * Note that CODEC drivers should not use this as sidetone type paths
2952  * can frequently also be used as bypass paths.
2953  */
2954 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2955                              const struct snd_soc_dapm_route *route, int num)
2956 {
2957         int i, err;
2958         int ret = 0;
2959
2960         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2961         for (i = 0; i < num; i++) {
2962                 err = snd_soc_dapm_weak_route(dapm, route);
2963                 if (err)
2964                         ret = err;
2965                 route++;
2966         }
2967         mutex_unlock(&dapm->card->dapm_mutex);
2968
2969         return ret;
2970 }
2971 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2972
2973 /**
2974  * snd_soc_dapm_new_widgets - add new dapm widgets
2975  * @card: card to be checked for new dapm widgets
2976  *
2977  * Checks the codec for any new dapm widgets and creates them if found.
2978  *
2979  * Returns 0 for success.
2980  */
2981 int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
2982 {
2983         struct snd_soc_dapm_widget *w;
2984         unsigned int val;
2985
2986         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2987
2988         list_for_each_entry(w, &card->widgets, list)
2989         {
2990                 if (w->new)
2991                         continue;
2992
2993                 if (w->num_kcontrols) {
2994                         w->kcontrols = kzalloc(w->num_kcontrols *
2995                                                 sizeof(struct snd_kcontrol *),
2996                                                 GFP_KERNEL);
2997                         if (!w->kcontrols) {
2998                                 mutex_unlock(&card->dapm_mutex);
2999                                 return -ENOMEM;
3000                         }
3001                 }
3002
3003                 switch(w->id) {
3004                 case snd_soc_dapm_switch:
3005                 case snd_soc_dapm_mixer:
3006                 case snd_soc_dapm_mixer_named_ctl:
3007                         dapm_new_mixer(w);
3008                         break;
3009                 case snd_soc_dapm_mux:
3010                 case snd_soc_dapm_demux:
3011                         dapm_new_mux(w);
3012                         break;
3013                 case snd_soc_dapm_pga:
3014                 case snd_soc_dapm_out_drv:
3015                         dapm_new_pga(w);
3016                         break;
3017                 case snd_soc_dapm_dai_link:
3018                         dapm_new_dai_link(w);
3019                         break;
3020                 default:
3021                         break;
3022                 }
3023
3024                 /* Read the initial power state from the device */
3025                 if (w->reg >= 0) {
3026                         soc_dapm_read(w->dapm, w->reg, &val);
3027                         val = val >> w->shift;
3028                         val &= w->mask;
3029                         if (val == w->on_val)
3030                                 w->power = 1;
3031                 }
3032
3033                 w->new = 1;
3034
3035                 dapm_mark_dirty(w, "new widget");
3036                 dapm_debugfs_add_widget(w);
3037         }
3038
3039         dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3040         mutex_unlock(&card->dapm_mutex);
3041         return 0;
3042 }
3043 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3044
3045 /**
3046  * snd_soc_dapm_get_volsw - dapm mixer get callback
3047  * @kcontrol: mixer control
3048  * @ucontrol: control element information
3049  *
3050  * Callback to get the value of a dapm mixer control.
3051  *
3052  * Returns 0 for success.
3053  */
3054 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3055         struct snd_ctl_elem_value *ucontrol)
3056 {
3057         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3058         struct snd_soc_card *card = dapm->card;
3059         struct soc_mixer_control *mc =
3060                 (struct soc_mixer_control *)kcontrol->private_value;
3061         int reg = mc->reg;
3062         unsigned int shift = mc->shift;
3063         int max = mc->max;
3064         unsigned int mask = (1 << fls(max)) - 1;
3065         unsigned int invert = mc->invert;
3066         unsigned int val;
3067         int ret = 0;
3068
3069         if (snd_soc_volsw_is_stereo(mc))
3070                 dev_warn(dapm->dev,
3071                          "ASoC: Control '%s' is stereo, which is not supported\n",
3072                          kcontrol->id.name);
3073
3074         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3075         if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3076                 ret = soc_dapm_read(dapm, reg, &val);
3077                 val = (val >> shift) & mask;
3078         } else {
3079                 val = dapm_kcontrol_get_value(kcontrol);
3080         }
3081         mutex_unlock(&card->dapm_mutex);
3082
3083         if (ret)
3084                 return ret;
3085
3086         if (invert)
3087                 ucontrol->value.integer.value[0] = max - val;
3088         else
3089                 ucontrol->value.integer.value[0] = val;
3090
3091         return ret;
3092 }
3093 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3094
3095 /**
3096  * snd_soc_dapm_put_volsw - dapm mixer set callback
3097  * @kcontrol: mixer control
3098  * @ucontrol: control element information
3099  *
3100  * Callback to set the value of a dapm mixer control.
3101  *
3102  * Returns 0 for success.
3103  */
3104 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3105         struct snd_ctl_elem_value *ucontrol)
3106 {
3107         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3108         struct snd_soc_card *card = dapm->card;
3109         struct soc_mixer_control *mc =
3110                 (struct soc_mixer_control *)kcontrol->private_value;
3111         int reg = mc->reg;
3112         unsigned int shift = mc->shift;
3113         int max = mc->max;
3114         unsigned int mask = (1 << fls(max)) - 1;
3115         unsigned int invert = mc->invert;
3116         unsigned int val;
3117         int connect, change, reg_change = 0;
3118         struct snd_soc_dapm_update update;
3119         int ret = 0;
3120
3121         if (snd_soc_volsw_is_stereo(mc))
3122                 dev_warn(dapm->dev,
3123                          "ASoC: Control '%s' is stereo, which is not supported\n",
3124                          kcontrol->id.name);
3125
3126         val = (ucontrol->value.integer.value[0] & mask);
3127         connect = !!val;
3128
3129         if (invert)
3130                 val = max - val;
3131
3132         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3133
3134         change = dapm_kcontrol_set_value(kcontrol, val);
3135
3136         if (reg != SND_SOC_NOPM) {
3137                 mask = mask << shift;
3138                 val = val << shift;
3139
3140                 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
3141         }
3142
3143         if (change || reg_change) {
3144                 if (reg_change) {
3145                         update.kcontrol = kcontrol;
3146                         update.reg = reg;
3147                         update.mask = mask;
3148                         update.val = val;
3149                         card->update = &update;
3150                 }
3151                 change |= reg_change;
3152
3153                 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
3154
3155                 card->update = NULL;
3156         }
3157
3158         mutex_unlock(&card->dapm_mutex);
3159
3160         if (ret > 0)
3161                 soc_dpcm_runtime_update(card);
3162
3163         return change;
3164 }
3165 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3166
3167 /**
3168  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3169  * @kcontrol: mixer control
3170  * @ucontrol: control element information
3171  *
3172  * Callback to get the value of a dapm enumerated double mixer control.
3173  *
3174  * Returns 0 for success.
3175  */
3176 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3177         struct snd_ctl_elem_value *ucontrol)
3178 {
3179         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3180         struct snd_soc_card *card = dapm->card;
3181         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3182         unsigned int reg_val, val;
3183
3184         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3185         if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
3186                 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
3187                 if (ret) {
3188                         mutex_unlock(&card->dapm_mutex);
3189                         return ret;
3190                 }
3191         } else {
3192                 reg_val = dapm_kcontrol_get_value(kcontrol);
3193         }
3194         mutex_unlock(&card->dapm_mutex);
3195
3196         val = (reg_val >> e->shift_l) & e->mask;
3197         ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3198         if (e->shift_l != e->shift_r) {
3199                 val = (reg_val >> e->shift_r) & e->mask;
3200                 val = snd_soc_enum_val_to_item(e, val);
3201                 ucontrol->value.enumerated.item[1] = val;
3202         }
3203
3204         return 0;
3205 }
3206 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3207
3208 /**
3209  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3210  * @kcontrol: mixer control
3211  * @ucontrol: control element information
3212  *
3213  * Callback to set the value of a dapm enumerated double mixer control.
3214  *
3215  * Returns 0 for success.
3216  */
3217 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3218         struct snd_ctl_elem_value *ucontrol)
3219 {
3220         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3221         struct snd_soc_card *card = dapm->card;
3222         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3223         unsigned int *item = ucontrol->value.enumerated.item;
3224         unsigned int val, change, reg_change = 0;
3225         unsigned int mask;
3226         struct snd_soc_dapm_update update;
3227         int ret = 0;
3228
3229         if (item[0] >= e->items)
3230                 return -EINVAL;
3231
3232         val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
3233         mask = e->mask << e->shift_l;
3234         if (e->shift_l != e->shift_r) {
3235                 if (item[1] > e->items)
3236                         return -EINVAL;
3237                 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
3238                 mask |= e->mask << e->shift_r;
3239         }
3240
3241         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3242
3243         change = dapm_kcontrol_set_value(kcontrol, val);
3244
3245         if (e->reg != SND_SOC_NOPM)
3246                 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3247
3248         if (change || reg_change) {
3249                 if (reg_change) {
3250                         update.kcontrol = kcontrol;
3251                         update.reg = e->reg;
3252                         update.mask = mask;
3253                         update.val = val;
3254                         card->update = &update;
3255                 }
3256                 change |= reg_change;
3257
3258                 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
3259
3260                 card->update = NULL;
3261         }
3262
3263         mutex_unlock(&card->dapm_mutex);
3264
3265         if (ret > 0)
3266                 soc_dpcm_runtime_update(card);
3267
3268         return change;
3269 }
3270 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3271
3272 /**
3273  * snd_soc_dapm_info_pin_switch - Info for a pin switch
3274  *
3275  * @kcontrol: mixer control
3276  * @uinfo: control element information
3277  *
3278  * Callback to provide information about a pin switch control.
3279  */
3280 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3281                                  struct snd_ctl_elem_info *uinfo)
3282 {
3283         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3284         uinfo->count = 1;
3285         uinfo->value.integer.min = 0;
3286         uinfo->value.integer.max = 1;
3287
3288         return 0;
3289 }
3290 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3291
3292 /**
3293  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3294  *
3295  * @kcontrol: mixer control
3296  * @ucontrol: Value
3297  */
3298 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3299                                 struct snd_ctl_elem_value *ucontrol)
3300 {
3301         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3302         const char *pin = (const char *)kcontrol->private_value;
3303
3304         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3305
3306         ucontrol->value.integer.value[0] =
3307                 snd_soc_dapm_get_pin_status(&card->dapm, pin);
3308
3309         mutex_unlock(&card->dapm_mutex);
3310
3311         return 0;
3312 }
3313 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3314
3315 /**
3316  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3317  *
3318  * @kcontrol: mixer control
3319  * @ucontrol: Value
3320  */
3321 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3322                                 struct snd_ctl_elem_value *ucontrol)
3323 {
3324         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3325         const char *pin = (const char *)kcontrol->private_value;
3326
3327         if (ucontrol->value.integer.value[0])
3328                 snd_soc_dapm_enable_pin(&card->dapm, pin);
3329         else
3330                 snd_soc_dapm_disable_pin(&card->dapm, pin);
3331
3332         snd_soc_dapm_sync(&card->dapm);
3333         return 0;
3334 }
3335 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3336
3337 struct snd_soc_dapm_widget *
3338 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
3339         const struct snd_soc_dapm_widget *widget)
3340 {
3341         struct snd_soc_dapm_widget *w;
3342
3343         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3344         w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3345         /* Do not nag about probe deferrals */
3346         if (IS_ERR(w)) {
3347                 int ret = PTR_ERR(w);
3348
3349                 if (ret != -EPROBE_DEFER)
3350                         dev_err(dapm->dev,
3351                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3352                                 widget->name, ret);
3353                 goto out_unlock;
3354         }
3355         if (!w)
3356                 dev_err(dapm->dev,
3357                         "ASoC: Failed to create DAPM control %s\n",
3358                         widget->name);
3359
3360 out_unlock:
3361         mutex_unlock(&dapm->card->dapm_mutex);
3362         return w;
3363 }
3364 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
3365
3366 struct snd_soc_dapm_widget *
3367 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
3368                          const struct snd_soc_dapm_widget *widget)
3369 {
3370         enum snd_soc_dapm_direction dir;
3371         struct snd_soc_dapm_widget *w;
3372         const char *prefix;
3373         int ret;
3374
3375         if ((w = dapm_cnew_widget(widget)) == NULL)
3376                 return NULL;
3377
3378         switch (w->id) {
3379         case snd_soc_dapm_regulator_supply:
3380                 w->regulator = devm_regulator_get(dapm->dev, w->name);
3381                 if (IS_ERR(w->regulator)) {
3382                         ret = PTR_ERR(w->regulator);
3383                         if (ret == -EPROBE_DEFER)
3384                                 return ERR_PTR(ret);
3385                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3386                                 w->name, ret);
3387                         return NULL;
3388                 }
3389
3390                 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
3391                         ret = regulator_allow_bypass(w->regulator, true);
3392                         if (ret != 0)
3393                                 dev_warn(w->dapm->dev,
3394                                          "ASoC: Failed to bypass %s: %d\n",
3395                                          w->name, ret);
3396                 }
3397                 break;
3398         case snd_soc_dapm_clock_supply:
3399 #ifdef CONFIG_CLKDEV_LOOKUP
3400                 w->clk = devm_clk_get(dapm->dev, w->name);
3401                 if (IS_ERR(w->clk)) {
3402                         ret = PTR_ERR(w->clk);
3403                         if (ret == -EPROBE_DEFER)
3404                                 return ERR_PTR(ret);
3405                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3406                                 w->name, ret);
3407                         return NULL;
3408                 }
3409 #else
3410                 return NULL;
3411 #endif
3412                 break;
3413         default:
3414                 break;
3415         }
3416
3417         prefix = soc_dapm_prefix(dapm);
3418         if (prefix)
3419                 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
3420         else
3421                 w->name = kstrdup_const(widget->name, GFP_KERNEL);
3422         if (w->name == NULL) {
3423                 kfree(w);
3424                 return NULL;
3425         }
3426
3427         switch (w->id) {
3428         case snd_soc_dapm_mic:
3429                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3430                 w->power_check = dapm_generic_check_power;
3431                 break;
3432         case snd_soc_dapm_input:
3433                 if (!dapm->card->fully_routed)
3434                         w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3435                 w->power_check = dapm_generic_check_power;
3436                 break;
3437         case snd_soc_dapm_spk:
3438         case snd_soc_dapm_hp:
3439                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3440                 w->power_check = dapm_generic_check_power;
3441                 break;
3442         case snd_soc_dapm_output:
3443                 if (!dapm->card->fully_routed)
3444                         w->is_ep = SND_SOC_DAPM_EP_SINK;
3445                 w->power_check = dapm_generic_check_power;
3446                 break;
3447         case snd_soc_dapm_vmid:
3448         case snd_soc_dapm_siggen:
3449                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3450                 w->power_check = dapm_always_on_check_power;
3451                 break;
3452         case snd_soc_dapm_sink:
3453                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3454                 w->power_check = dapm_always_on_check_power;
3455                 break;
3456
3457         case snd_soc_dapm_mux:
3458         case snd_soc_dapm_demux:
3459         case snd_soc_dapm_switch:
3460         case snd_soc_dapm_mixer:
3461         case snd_soc_dapm_mixer_named_ctl:
3462         case snd_soc_dapm_adc:
3463         case snd_soc_dapm_aif_out:
3464         case snd_soc_dapm_dac:
3465         case snd_soc_dapm_aif_in:
3466         case snd_soc_dapm_pga:
3467         case snd_soc_dapm_out_drv:
3468         case snd_soc_dapm_micbias:
3469         case snd_soc_dapm_line:
3470         case snd_soc_dapm_dai_link:
3471         case snd_soc_dapm_dai_out:
3472         case snd_soc_dapm_dai_in:
3473                 w->power_check = dapm_generic_check_power;
3474                 break;
3475         case snd_soc_dapm_supply:
3476         case snd_soc_dapm_regulator_supply:
3477         case snd_soc_dapm_clock_supply:
3478         case snd_soc_dapm_kcontrol:
3479                 w->is_supply = 1;
3480                 w->power_check = dapm_supply_check_power;
3481                 break;
3482         default:
3483                 w->power_check = dapm_always_on_check_power;
3484                 break;
3485         }
3486
3487         w->dapm = dapm;
3488         INIT_LIST_HEAD(&w->list);
3489         INIT_LIST_HEAD(&w->dirty);
3490         list_add_tail(&w->list, &dapm->card->widgets);
3491
3492         snd_soc_dapm_for_each_direction(dir) {
3493                 INIT_LIST_HEAD(&w->edges[dir]);
3494                 w->endpoints[dir] = -1;
3495         }
3496
3497         /* machine layer sets up unconnected pins and insertions */
3498         w->connected = 1;
3499         return w;
3500 }
3501
3502 /**
3503  * snd_soc_dapm_new_controls - create new dapm controls
3504  * @dapm: DAPM context
3505  * @widget: widget array
3506  * @num: number of widgets
3507  *
3508  * Creates new DAPM controls based upon the templates.
3509  *
3510  * Returns 0 for success else error.
3511  */
3512 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
3513         const struct snd_soc_dapm_widget *widget,
3514         int num)
3515 {
3516         struct snd_soc_dapm_widget *w;
3517         int i;
3518         int ret = 0;
3519
3520         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
3521         for (i = 0; i < num; i++) {
3522                 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3523                 if (IS_ERR(w)) {
3524                         ret = PTR_ERR(w);
3525                         /* Do not nag about probe deferrals */
3526                         if (ret == -EPROBE_DEFER)
3527                                 break;
3528                         dev_err(dapm->dev,
3529                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3530                                 widget->name, ret);
3531                         break;
3532                 }
3533                 if (!w) {
3534                         dev_err(dapm->dev,
3535                                 "ASoC: Failed to create DAPM control %s\n",
3536                                 widget->name);
3537                         ret = -ENOMEM;
3538                         break;
3539                 }
3540                 widget++;
3541         }
3542         mutex_unlock(&dapm->card->dapm_mutex);
3543         return ret;
3544 }
3545 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3546
3547 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3548                                   struct snd_kcontrol *kcontrol, int event)
3549 {
3550         struct snd_soc_dapm_path *source_p, *sink_p;
3551         struct snd_soc_dai *source, *sink;
3552         const struct snd_soc_pcm_stream *config = w->params + w->params_select;
3553         struct snd_pcm_substream substream;
3554         struct snd_pcm_hw_params *params = NULL;
3555         struct snd_pcm_runtime *runtime = NULL;
3556         u64 fmt;
3557         int ret;
3558
3559         if (WARN_ON(!config) ||
3560             WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3561                     list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
3562                 return -EINVAL;
3563
3564         /* We only support a single source and sink, pick the first */
3565         source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3566                                     struct snd_soc_dapm_path,
3567                                     list_node[SND_SOC_DAPM_DIR_OUT]);
3568         sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3569                                     struct snd_soc_dapm_path,
3570                                     list_node[SND_SOC_DAPM_DIR_IN]);
3571
3572         source = source_p->source->priv;
3573         sink = sink_p->sink->priv;
3574
3575         /* Be a little careful as we don't want to overflow the mask array */
3576         if (config->formats) {
3577                 fmt = ffs(config->formats) - 1;
3578         } else {
3579                 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
3580                          config->formats);
3581                 fmt = 0;
3582         }
3583
3584         /* Currently very limited parameter selection */
3585         params = kzalloc(sizeof(*params), GFP_KERNEL);
3586         if (!params) {
3587                 ret = -ENOMEM;
3588                 goto out;
3589         }
3590         snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
3591
3592         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
3593                 config->rate_min;
3594         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
3595                 config->rate_max;
3596
3597         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
3598                 = config->channels_min;
3599         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
3600                 = config->channels_max;
3601
3602         memset(&substream, 0, sizeof(substream));
3603
3604         /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3605         runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3606         if (!runtime) {
3607                 ret = -ENOMEM;
3608                 goto out;
3609         }
3610         substream.runtime = runtime;
3611
3612         switch (event) {
3613         case SND_SOC_DAPM_PRE_PMU:
3614                 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3615                 if (source->driver->ops && source->driver->ops->startup) {
3616                         ret = source->driver->ops->startup(&substream, source);
3617                         if (ret < 0) {
3618                                 dev_err(source->dev,
3619                                         "ASoC: startup() failed: %d\n", ret);
3620                                 goto out;
3621                         }
3622                         source->active++;
3623                 }
3624                 ret = soc_dai_hw_params(&substream, params, source);
3625                 if (ret < 0)
3626                         goto out;
3627
3628                 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3629                 if (sink->driver->ops && sink->driver->ops->startup) {
3630                         ret = sink->driver->ops->startup(&substream, sink);
3631                         if (ret < 0) {
3632                                 dev_err(sink->dev,
3633                                         "ASoC: startup() failed: %d\n", ret);
3634                                 goto out;
3635                         }
3636                         sink->active++;
3637                 }
3638                 ret = soc_dai_hw_params(&substream, params, sink);
3639                 if (ret < 0)
3640                         goto out;
3641                 break;
3642
3643         case SND_SOC_DAPM_POST_PMU:
3644                 ret = snd_soc_dai_digital_mute(sink, 0,
3645                                                SNDRV_PCM_STREAM_PLAYBACK);
3646                 if (ret != 0 && ret != -ENOTSUPP)
3647                         dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
3648                 ret = 0;
3649                 break;
3650
3651         case SND_SOC_DAPM_PRE_PMD:
3652                 ret = snd_soc_dai_digital_mute(sink, 1,
3653                                                SNDRV_PCM_STREAM_PLAYBACK);
3654                 if (ret != 0 && ret != -ENOTSUPP)
3655                         dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
3656                 ret = 0;
3657
3658                 source->active--;
3659                 if (source->driver->ops && source->driver->ops->shutdown) {
3660                         substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3661                         source->driver->ops->shutdown(&substream, source);
3662                 }
3663
3664                 sink->active--;
3665                 if (sink->driver->ops && sink->driver->ops->shutdown) {
3666                         substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3667                         sink->driver->ops->shutdown(&substream, sink);
3668                 }
3669                 break;
3670
3671         default:
3672                 WARN(1, "Unknown event %d\n", event);
3673                 ret = -EINVAL;
3674         }
3675
3676 out:
3677         kfree(runtime);
3678         kfree(params);
3679         return ret;
3680 }
3681
3682 static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3683                           struct snd_ctl_elem_value *ucontrol)
3684 {
3685         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3686
3687         ucontrol->value.enumerated.item[0] = w->params_select;
3688
3689         return 0;
3690 }
3691
3692 static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3693                           struct snd_ctl_elem_value *ucontrol)
3694 {
3695         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3696
3697         /* Can't change the config when widget is already powered */
3698         if (w->power)
3699                 return -EBUSY;
3700
3701         if (ucontrol->value.enumerated.item[0] == w->params_select)
3702                 return 0;
3703
3704         if (ucontrol->value.enumerated.item[0] >= w->num_params)
3705                 return -EINVAL;
3706
3707         w->params_select = ucontrol->value.enumerated.item[0];
3708
3709         return 0;
3710 }
3711
3712 int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3713                          const struct snd_soc_pcm_stream *params,
3714                          unsigned int num_params,
3715                          struct snd_soc_dapm_widget *source,
3716                          struct snd_soc_dapm_widget *sink)
3717 {
3718         struct snd_soc_dapm_widget template;
3719         struct snd_soc_dapm_widget *w;
3720         char *link_name;
3721         int ret, count;
3722         unsigned long private_value;
3723         const char **w_param_text;
3724         struct soc_enum w_param_enum[] = {
3725                 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3726         };
3727         struct snd_kcontrol_new kcontrol_dai_link[] = {
3728                 SOC_ENUM_EXT(NULL, w_param_enum[0],
3729                              snd_soc_dapm_dai_link_get,
3730                              snd_soc_dapm_dai_link_put),
3731         };
3732         const struct snd_soc_pcm_stream *config = params;
3733
3734         w_param_text = devm_kcalloc(card->dev, num_params,
3735                                         sizeof(char *), GFP_KERNEL);
3736         if (!w_param_text)
3737                 return -ENOMEM;
3738
3739         link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3740                                    source->name, sink->name);
3741         if (!link_name) {
3742                 ret = -ENOMEM;
3743                 goto outfree_w_param;
3744         }
3745
3746         for (count = 0 ; count < num_params; count++) {
3747                 if (!config->stream_name) {
3748                         dev_warn(card->dapm.dev,
3749                                 "ASoC: anonymous config %d for dai link %s\n",
3750                                 count, link_name);
3751                         w_param_text[count] =
3752                                 devm_kasprintf(card->dev, GFP_KERNEL,
3753                                                "Anonymous Configuration %d",
3754                                                count);
3755                         if (!w_param_text[count]) {
3756                                 ret = -ENOMEM;
3757                                 goto outfree_link_name;
3758                         }
3759                 } else {
3760                         w_param_text[count] = devm_kmemdup(card->dev,
3761                                                 config->stream_name,
3762                                                 strlen(config->stream_name) + 1,
3763                                                 GFP_KERNEL);
3764                         if (!w_param_text[count]) {
3765                                 ret = -ENOMEM;
3766                                 goto outfree_link_name;
3767                         }
3768                 }
3769                 config++;
3770         }
3771         w_param_enum[0].items = num_params;
3772         w_param_enum[0].texts = w_param_text;
3773
3774         memset(&template, 0, sizeof(template));
3775         template.reg = SND_SOC_NOPM;
3776         template.id = snd_soc_dapm_dai_link;
3777         template.name = link_name;
3778         template.event = snd_soc_dai_link_event;
3779         template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3780                 SND_SOC_DAPM_PRE_PMD;
3781         template.num_kcontrols = 1;
3782         /* duplicate w_param_enum on heap so that memory persists */
3783         private_value =
3784                 (unsigned long) devm_kmemdup(card->dev,
3785                         (void *)(kcontrol_dai_link[0].private_value),
3786                         sizeof(struct soc_enum), GFP_KERNEL);
3787         if (!private_value) {
3788                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3789                         link_name);
3790                 ret = -ENOMEM;
3791                 goto outfree_link_name;
3792         }
3793         kcontrol_dai_link[0].private_value = private_value;
3794         /* duplicate kcontrol_dai_link on heap so that memory persists */
3795         template.kcontrol_news =
3796                                 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3797                                         sizeof(struct snd_kcontrol_new),
3798                                         GFP_KERNEL);
3799         if (!template.kcontrol_news) {
3800                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3801                         link_name);
3802                 ret = -ENOMEM;
3803                 goto outfree_private_value;
3804         }
3805
3806         dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
3807
3808         w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
3809         if (IS_ERR(w)) {
3810                 ret = PTR_ERR(w);
3811                 /* Do not nag about probe deferrals */
3812                 if (ret != -EPROBE_DEFER)
3813                         dev_err(card->dev,
3814                                 "ASoC: Failed to create %s widget (%d)\n",
3815                                 link_name, ret);
3816                 goto outfree_kcontrol_news;
3817         }
3818         if (!w) {
3819                 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
3820                         link_name);
3821                 ret = -ENOMEM;
3822                 goto outfree_kcontrol_news;
3823         }
3824
3825         w->params = params;
3826         w->num_params = num_params;
3827
3828         ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3829         if (ret)
3830                 goto outfree_w;
3831         return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
3832
3833 outfree_w:
3834         devm_kfree(card->dev, w);
3835 outfree_kcontrol_news:
3836         devm_kfree(card->dev, (void *)template.kcontrol_news);
3837 outfree_private_value:
3838         devm_kfree(card->dev, (void *)private_value);
3839 outfree_link_name:
3840         devm_kfree(card->dev, link_name);
3841 outfree_w_param:
3842         for (count = 0 ; count < num_params; count++)
3843                 devm_kfree(card->dev, (void *)w_param_text[count]);
3844         devm_kfree(card->dev, w_param_text);
3845
3846         return ret;
3847 }
3848
3849 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3850                                  struct snd_soc_dai *dai)
3851 {
3852         struct snd_soc_dapm_widget template;
3853         struct snd_soc_dapm_widget *w;
3854
3855         WARN_ON(dapm->dev != dai->dev);
3856
3857         memset(&template, 0, sizeof(template));
3858         template.reg = SND_SOC_NOPM;
3859
3860         if (dai->driver->playback.stream_name) {
3861                 template.id = snd_soc_dapm_dai_in;
3862                 template.name = dai->driver->playback.stream_name;
3863                 template.sname = dai->driver->playback.stream_name;
3864
3865                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3866                         template.name);
3867
3868                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3869                 if (IS_ERR(w)) {
3870                         int ret = PTR_ERR(w);
3871
3872                         /* Do not nag about probe deferrals */
3873                         if (ret != -EPROBE_DEFER)
3874                                 dev_err(dapm->dev,
3875                                 "ASoC: Failed to create %s widget (%d)\n",
3876                                 dai->driver->playback.stream_name, ret);
3877                         return ret;
3878                 }
3879                 if (!w) {
3880                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3881                                 dai->driver->playback.stream_name);
3882                         return -ENOMEM;
3883                 }
3884
3885                 w->priv = dai;
3886                 dai->playback_widget = w;
3887         }
3888
3889         if (dai->driver->capture.stream_name) {
3890                 template.id = snd_soc_dapm_dai_out;
3891                 template.name = dai->driver->capture.stream_name;
3892                 template.sname = dai->driver->capture.stream_name;
3893
3894                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3895                         template.name);
3896
3897                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3898                 if (IS_ERR(w)) {
3899                         int ret = PTR_ERR(w);
3900
3901                         /* Do not nag about probe deferrals */
3902                         if (ret != -EPROBE_DEFER)
3903                                 dev_err(dapm->dev,
3904                                 "ASoC: Failed to create %s widget (%d)\n",
3905                                 dai->driver->playback.stream_name, ret);
3906                         return ret;
3907                 }
3908                 if (!w) {
3909                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3910                                 dai->driver->capture.stream_name);
3911                         return -ENOMEM;
3912                 }
3913
3914                 w->priv = dai;
3915                 dai->capture_widget = w;
3916         }
3917
3918         return 0;
3919 }
3920
3921 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3922 {
3923         struct snd_soc_dapm_widget *dai_w, *w;
3924         struct snd_soc_dapm_widget *src, *sink;
3925         struct snd_soc_dai *dai;
3926
3927         /* For each DAI widget... */
3928         list_for_each_entry(dai_w, &card->widgets, list) {
3929                 switch (dai_w->id) {
3930                 case snd_soc_dapm_dai_in:
3931                 case snd_soc_dapm_dai_out:
3932                         break;
3933                 default:
3934                         continue;
3935                 }
3936
3937                 /* let users know there is no DAI to link */
3938                 if (!dai_w->priv) {
3939                         dev_dbg(card->dev, "dai widget %s has no DAI\n",
3940                                 dai_w->name);
3941                         continue;
3942                 }
3943
3944                 dai = dai_w->priv;
3945
3946                 /* ...find all widgets with the same stream and link them */
3947                 list_for_each_entry(w, &card->widgets, list) {
3948                         if (w->dapm != dai_w->dapm)
3949                                 continue;
3950
3951                         switch (w->id) {
3952                         case snd_soc_dapm_dai_in:
3953                         case snd_soc_dapm_dai_out:
3954                                 continue;
3955                         default:
3956                                 break;
3957                         }
3958
3959                         if (!w->sname || !strstr(w->sname, dai_w->sname))
3960                                 continue;
3961
3962                         if (dai_w->id == snd_soc_dapm_dai_in) {
3963                                 src = dai_w;
3964                                 sink = w;
3965                         } else {
3966                                 src = w;
3967                                 sink = dai_w;
3968                         }
3969                         dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3970                         snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
3971                 }
3972         }
3973
3974         return 0;
3975 }
3976
3977 static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3978                                           struct snd_soc_pcm_runtime *rtd)
3979 {
3980         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3981         struct snd_soc_dapm_widget *sink, *source;
3982         int i;
3983
3984         for (i = 0; i < rtd->num_codecs; i++) {
3985                 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
3986
3987                 /* connect BE DAI playback if widgets are valid */
3988                 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
3989                         source = cpu_dai->playback_widget;
3990                         sink = codec_dai->playback_widget;
3991                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
3992                                 cpu_dai->component->name, source->name,
3993                                 codec_dai->component->name, sink->name);
3994
3995                         snd_soc_dapm_add_path(&card->dapm, source, sink,
3996                                 NULL, NULL);
3997                 }
3998
3999                 /* connect BE DAI capture if widgets are valid */
4000                 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
4001                         source = codec_dai->capture_widget;
4002                         sink = cpu_dai->capture_widget;
4003                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
4004                                 codec_dai->component->name, source->name,
4005                                 cpu_dai->component->name, sink->name);
4006
4007                         snd_soc_dapm_add_path(&card->dapm, source, sink,
4008                                 NULL, NULL);
4009                 }
4010         }
4011 }
4012
4013 static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
4014         int event)
4015 {
4016         struct snd_soc_dapm_widget *w;
4017         unsigned int ep;
4018
4019         if (stream == SNDRV_PCM_STREAM_PLAYBACK)
4020                 w = dai->playback_widget;
4021         else
4022                 w = dai->capture_widget;
4023
4024         if (w) {
4025                 dapm_mark_dirty(w, "stream event");
4026
4027                 if (w->id == snd_soc_dapm_dai_in) {
4028                         ep = SND_SOC_DAPM_EP_SOURCE;
4029                         dapm_widget_invalidate_input_paths(w);
4030                 } else {
4031                         ep = SND_SOC_DAPM_EP_SINK;
4032                         dapm_widget_invalidate_output_paths(w);
4033                 }
4034
4035                 switch (event) {
4036                 case SND_SOC_DAPM_STREAM_START:
4037                         w->active = 1;
4038                         w->is_ep = ep;
4039                         break;
4040                 case SND_SOC_DAPM_STREAM_STOP:
4041                         w->active = 0;
4042                         w->is_ep = 0;
4043                         break;
4044                 case SND_SOC_DAPM_STREAM_SUSPEND:
4045                 case SND_SOC_DAPM_STREAM_RESUME:
4046                 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
4047                 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
4048                         break;
4049                 }
4050         }
4051 }
4052
4053 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
4054 {
4055         struct snd_soc_pcm_runtime *rtd;
4056
4057         /* for each BE DAI link... */
4058         list_for_each_entry(rtd, &card->rtd_list, list)  {
4059                 /*
4060                  * dynamic FE links have no fixed DAI mapping.
4061                  * CODEC<->CODEC links have no direct connection.
4062                  */
4063                 if (rtd->dai_link->dynamic || rtd->dai_link->params)
4064                         continue;
4065
4066                 dapm_connect_dai_link_widgets(card, rtd);
4067         }
4068 }
4069
4070 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4071         int event)
4072 {
4073         int i;
4074
4075         soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
4076         for (i = 0; i < rtd->num_codecs; i++)
4077                 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
4078
4079         dapm_power_widgets(rtd->card, event);
4080 }
4081
4082 /**
4083  * snd_soc_dapm_stream_event - send a stream event to the dapm core
4084  * @rtd: PCM runtime data
4085  * @stream: stream name
4086  * @event: stream event
4087  *
4088  * Sends a stream event to the dapm core. The core then makes any
4089  * necessary widget power changes.
4090  *
4091  * Returns 0 for success else error.
4092  */
4093 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4094                               int event)
4095 {
4096         struct snd_soc_card *card = rtd->card;
4097
4098         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4099         soc_dapm_stream_event(rtd, stream, event);
4100         mutex_unlock(&card->dapm_mutex);
4101 }
4102
4103 /**
4104  * snd_soc_dapm_enable_pin_unlocked - enable pin.
4105  * @dapm: DAPM context
4106  * @pin: pin name
4107  *
4108  * Enables input/output pin and its parents or children widgets iff there is
4109  * a valid audio route and active audio stream.
4110  *
4111  * Requires external locking.
4112  *
4113  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4114  * do any widget power switching.
4115  */
4116 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4117                                    const char *pin)
4118 {
4119         return snd_soc_dapm_set_pin(dapm, pin, 1);
4120 }
4121 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4122
4123 /**
4124  * snd_soc_dapm_enable_pin - enable pin.
4125  * @dapm: DAPM context
4126  * @pin: pin name
4127  *
4128  * Enables input/output pin and its parents or children widgets iff there is
4129  * a valid audio route and active audio stream.
4130  *
4131  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4132  * do any widget power switching.
4133  */
4134 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4135 {
4136         int ret;
4137
4138         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4139
4140         ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4141
4142         mutex_unlock(&dapm->card->dapm_mutex);
4143
4144         return ret;
4145 }
4146 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
4147
4148 /**
4149  * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4150  * @dapm: DAPM context
4151  * @pin: pin name
4152  *
4153  * Enables input/output pin regardless of any other state.  This is
4154  * intended for use with microphone bias supplies used in microphone
4155  * jack detection.
4156  *
4157  * Requires external locking.
4158  *
4159  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4160  * do any widget power switching.
4161  */
4162 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4163                                          const char *pin)
4164 {
4165         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4166
4167         if (!w) {
4168                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4169                 return -EINVAL;
4170         }
4171
4172         dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
4173         if (!w->connected) {
4174                 /*
4175                  * w->force does not affect the number of input or output paths,
4176                  * so we only have to recheck if w->connected is changed
4177                  */
4178                 dapm_widget_invalidate_input_paths(w);
4179                 dapm_widget_invalidate_output_paths(w);
4180                 w->connected = 1;
4181         }
4182         w->force = 1;
4183         dapm_mark_dirty(w, "force enable");
4184
4185         return 0;
4186 }
4187 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4188
4189 /**
4190  * snd_soc_dapm_force_enable_pin - force a pin to be enabled
4191  * @dapm: DAPM context
4192  * @pin: pin name
4193  *
4194  * Enables input/output pin regardless of any other state.  This is
4195  * intended for use with microphone bias supplies used in microphone
4196  * jack detection.
4197  *
4198  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4199  * do any widget power switching.
4200  */
4201 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4202                                   const char *pin)
4203 {
4204         int ret;
4205
4206         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4207
4208         ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
4209
4210         mutex_unlock(&dapm->card->dapm_mutex);
4211
4212         return ret;
4213 }
4214 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4215
4216 /**
4217  * snd_soc_dapm_disable_pin_unlocked - disable pin.
4218  * @dapm: DAPM context
4219  * @pin: pin name
4220  *
4221  * Disables input/output pin and its parents or children widgets.
4222  *
4223  * Requires external locking.
4224  *
4225  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4226  * do any widget power switching.
4227  */
4228 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4229                                     const char *pin)
4230 {
4231         return snd_soc_dapm_set_pin(dapm, pin, 0);
4232 }
4233 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4234
4235 /**
4236  * snd_soc_dapm_disable_pin - disable pin.
4237  * @dapm: DAPM context
4238  * @pin: pin name
4239  *
4240  * Disables input/output pin and its parents or children widgets.
4241  *
4242  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4243  * do any widget power switching.
4244  */
4245 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4246                              const char *pin)
4247 {
4248         int ret;
4249
4250         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4251
4252         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4253
4254         mutex_unlock(&dapm->card->dapm_mutex);
4255
4256         return ret;
4257 }
4258 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4259
4260 /**
4261  * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4262  * @dapm: DAPM context
4263  * @pin: pin name
4264  *
4265  * Marks the specified pin as being not connected, disabling it along
4266  * any parent or child widgets.  At present this is identical to
4267  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4268  * additional things such as disabling controls which only affect
4269  * paths through the pin.
4270  *
4271  * Requires external locking.
4272  *
4273  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4274  * do any widget power switching.
4275  */
4276 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4277                                const char *pin)
4278 {
4279         return snd_soc_dapm_set_pin(dapm, pin, 0);
4280 }
4281 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4282
4283 /**
4284  * snd_soc_dapm_nc_pin - permanently disable pin.
4285  * @dapm: DAPM context
4286  * @pin: pin name
4287  *
4288  * Marks the specified pin as being not connected, disabling it along
4289  * any parent or child widgets.  At present this is identical to
4290  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4291  * additional things such as disabling controls which only affect
4292  * paths through the pin.
4293  *
4294  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4295  * do any widget power switching.
4296  */
4297 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4298 {
4299         int ret;
4300
4301         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4302
4303         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4304
4305         mutex_unlock(&dapm->card->dapm_mutex);
4306
4307         return ret;
4308 }
4309 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4310
4311 /**
4312  * snd_soc_dapm_get_pin_status - get audio pin status
4313  * @dapm: DAPM context
4314  * @pin: audio signal pin endpoint (or start point)
4315  *
4316  * Get audio pin status - connected or disconnected.
4317  *
4318  * Returns 1 for connected otherwise 0.
4319  */
4320 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4321                                 const char *pin)
4322 {
4323         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4324
4325         if (w)
4326                 return w->connected;
4327
4328         return 0;
4329 }
4330 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
4331
4332 /**
4333  * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
4334  * @dapm: DAPM context
4335  * @pin: audio signal pin endpoint (or start point)
4336  *
4337  * Mark the given endpoint or pin as ignoring suspend.  When the
4338  * system is disabled a path between two endpoints flagged as ignoring
4339  * suspend will not be disabled.  The path must already be enabled via
4340  * normal means at suspend time, it will not be turned on if it was not
4341  * already enabled.
4342  */
4343 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4344                                 const char *pin)
4345 {
4346         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
4347
4348         if (!w) {
4349                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4350                 return -EINVAL;
4351         }
4352
4353         w->ignore_suspend = 1;
4354
4355         return 0;
4356 }
4357 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4358
4359 /**
4360  * snd_soc_dapm_free - free dapm resources
4361  * @dapm: DAPM context
4362  *
4363  * Free all dapm widgets and resources.
4364  */
4365 void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
4366 {
4367         dapm_debugfs_cleanup(dapm);
4368         dapm_free_widgets(dapm);
4369         list_del(&dapm->list);
4370 }
4371 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4372
4373 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
4374 {
4375         struct snd_soc_card *card = dapm->card;
4376         struct snd_soc_dapm_widget *w;
4377         LIST_HEAD(down_list);
4378         int powerdown = 0;
4379
4380         mutex_lock(&card->dapm_mutex);
4381
4382         list_for_each_entry(w, &dapm->card->widgets, list) {
4383                 if (w->dapm != dapm)
4384                         continue;
4385                 if (w->power) {
4386                         dapm_seq_insert(w, &down_list, false);
4387                         w->new_power = 0;
4388                         powerdown = 1;
4389                 }
4390         }
4391
4392         /* If there were no widgets to power down we're already in
4393          * standby.
4394          */
4395         if (powerdown) {
4396                 if (dapm->bias_level == SND_SOC_BIAS_ON)
4397                         snd_soc_dapm_set_bias_level(dapm,
4398                                                     SND_SOC_BIAS_PREPARE);
4399                 dapm_seq_run(card, &down_list, 0, false);
4400                 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4401                         snd_soc_dapm_set_bias_level(dapm,
4402                                                     SND_SOC_BIAS_STANDBY);
4403         }
4404
4405         mutex_unlock(&card->dapm_mutex);
4406 }
4407
4408 /*
4409  * snd_soc_dapm_shutdown - callback for system shutdown
4410  */
4411 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4412 {
4413         struct snd_soc_dapm_context *dapm;
4414
4415         list_for_each_entry(dapm, &card->dapm_list, list) {
4416                 if (dapm != &card->dapm) {
4417                         soc_dapm_shutdown_dapm(dapm);
4418                         if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4419                                 snd_soc_dapm_set_bias_level(dapm,
4420                                                             SND_SOC_BIAS_OFF);
4421                 }
4422         }
4423
4424         soc_dapm_shutdown_dapm(&card->dapm);
4425         if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4426                 snd_soc_dapm_set_bias_level(&card->dapm,
4427                                             SND_SOC_BIAS_OFF);
4428 }
4429
4430 /* Module information */
4431 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4432 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4433 MODULE_LICENSE("GPL");