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