GNU Linux-libre 4.9.314-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                 change |= reg_change;
3169
3170                 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
3171
3172                 card->update = NULL;
3173         }
3174
3175         mutex_unlock(&card->dapm_mutex);
3176
3177         if (ret > 0)
3178                 soc_dpcm_runtime_update(card);
3179
3180         return change;
3181 }
3182 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3183
3184 /**
3185  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3186  * @kcontrol: mixer control
3187  * @ucontrol: control element information
3188  *
3189  * Callback to get the value of a dapm enumerated double mixer control.
3190  *
3191  * Returns 0 for success.
3192  */
3193 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3194         struct snd_ctl_elem_value *ucontrol)
3195 {
3196         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3197         struct snd_soc_card *card = dapm->card;
3198         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3199         unsigned int reg_val, val;
3200
3201         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3202         if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
3203                 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
3204                 if (ret) {
3205                         mutex_unlock(&card->dapm_mutex);
3206                         return ret;
3207                 }
3208         } else {
3209                 reg_val = dapm_kcontrol_get_value(kcontrol);
3210         }
3211         mutex_unlock(&card->dapm_mutex);
3212
3213         val = (reg_val >> e->shift_l) & e->mask;
3214         ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3215         if (e->shift_l != e->shift_r) {
3216                 val = (reg_val >> e->shift_r) & e->mask;
3217                 val = snd_soc_enum_val_to_item(e, val);
3218                 ucontrol->value.enumerated.item[1] = val;
3219         }
3220
3221         return 0;
3222 }
3223 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3224
3225 /**
3226  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3227  * @kcontrol: mixer control
3228  * @ucontrol: control element information
3229  *
3230  * Callback to set the value of a dapm enumerated double mixer control.
3231  *
3232  * Returns 0 for success.
3233  */
3234 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3235         struct snd_ctl_elem_value *ucontrol)
3236 {
3237         struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3238         struct snd_soc_card *card = dapm->card;
3239         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
3240         unsigned int *item = ucontrol->value.enumerated.item;
3241         unsigned int val, change, reg_change = 0;
3242         unsigned int mask;
3243         struct snd_soc_dapm_update update;
3244         int ret = 0;
3245
3246         if (item[0] >= e->items)
3247                 return -EINVAL;
3248
3249         val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
3250         mask = e->mask << e->shift_l;
3251         if (e->shift_l != e->shift_r) {
3252                 if (item[1] > e->items)
3253                         return -EINVAL;
3254                 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
3255                 mask |= e->mask << e->shift_r;
3256         }
3257
3258         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3259
3260         change = dapm_kcontrol_set_value(kcontrol, val);
3261
3262         if (e->reg != SND_SOC_NOPM)
3263                 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3264
3265         if (change || reg_change) {
3266                 if (reg_change) {
3267                         update.kcontrol = kcontrol;
3268                         update.reg = e->reg;
3269                         update.mask = mask;
3270                         update.val = val;
3271                         card->update = &update;
3272                 }
3273                 change |= reg_change;
3274
3275                 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
3276
3277                 card->update = NULL;
3278         }
3279
3280         mutex_unlock(&card->dapm_mutex);
3281
3282         if (ret > 0)
3283                 soc_dpcm_runtime_update(card);
3284
3285         return change;
3286 }
3287 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3288
3289 /**
3290  * snd_soc_dapm_info_pin_switch - Info for a pin switch
3291  *
3292  * @kcontrol: mixer control
3293  * @uinfo: control element information
3294  *
3295  * Callback to provide information about a pin switch control.
3296  */
3297 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3298                                  struct snd_ctl_elem_info *uinfo)
3299 {
3300         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3301         uinfo->count = 1;
3302         uinfo->value.integer.min = 0;
3303         uinfo->value.integer.max = 1;
3304
3305         return 0;
3306 }
3307 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3308
3309 /**
3310  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3311  *
3312  * @kcontrol: mixer control
3313  * @ucontrol: Value
3314  */
3315 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3316                                 struct snd_ctl_elem_value *ucontrol)
3317 {
3318         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3319         const char *pin = (const char *)kcontrol->private_value;
3320
3321         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3322
3323         ucontrol->value.integer.value[0] =
3324                 snd_soc_dapm_get_pin_status(&card->dapm, pin);
3325
3326         mutex_unlock(&card->dapm_mutex);
3327
3328         return 0;
3329 }
3330 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3331
3332 /**
3333  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3334  *
3335  * @kcontrol: mixer control
3336  * @ucontrol: Value
3337  */
3338 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3339                                 struct snd_ctl_elem_value *ucontrol)
3340 {
3341         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
3342         const char *pin = (const char *)kcontrol->private_value;
3343         int ret;
3344
3345         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3346         ret = __snd_soc_dapm_set_pin(&card->dapm, pin,
3347                                      !!ucontrol->value.integer.value[0]);
3348         mutex_unlock(&card->dapm_mutex);
3349
3350         snd_soc_dapm_sync(&card->dapm);
3351         return ret;
3352 }
3353 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3354
3355 struct snd_soc_dapm_widget *
3356 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
3357         const struct snd_soc_dapm_widget *widget)
3358 {
3359         struct snd_soc_dapm_widget *w;
3360
3361         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3362         w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3363         /* Do not nag about probe deferrals */
3364         if (IS_ERR(w)) {
3365                 int ret = PTR_ERR(w);
3366
3367                 if (ret != -EPROBE_DEFER)
3368                         dev_err(dapm->dev,
3369                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3370                                 widget->name, ret);
3371                 goto out_unlock;
3372         }
3373         if (!w)
3374                 dev_err(dapm->dev,
3375                         "ASoC: Failed to create DAPM control %s\n",
3376                         widget->name);
3377
3378 out_unlock:
3379         mutex_unlock(&dapm->card->dapm_mutex);
3380         return w;
3381 }
3382 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
3383
3384 struct snd_soc_dapm_widget *
3385 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
3386                          const struct snd_soc_dapm_widget *widget)
3387 {
3388         enum snd_soc_dapm_direction dir;
3389         struct snd_soc_dapm_widget *w;
3390         const char *prefix;
3391         int ret;
3392
3393         if ((w = dapm_cnew_widget(widget)) == NULL)
3394                 return NULL;
3395
3396         switch (w->id) {
3397         case snd_soc_dapm_regulator_supply:
3398                 w->regulator = devm_regulator_get(dapm->dev, w->name);
3399                 if (IS_ERR(w->regulator)) {
3400                         ret = PTR_ERR(w->regulator);
3401                         if (ret == -EPROBE_DEFER)
3402                                 return ERR_PTR(ret);
3403                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3404                                 w->name, ret);
3405                         return NULL;
3406                 }
3407
3408                 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
3409                         ret = regulator_allow_bypass(w->regulator, true);
3410                         if (ret != 0)
3411                                 dev_warn(w->dapm->dev,
3412                                          "ASoC: Failed to bypass %s: %d\n",
3413                                          w->name, ret);
3414                 }
3415                 break;
3416         case snd_soc_dapm_clock_supply:
3417 #ifdef CONFIG_CLKDEV_LOOKUP
3418                 w->clk = devm_clk_get(dapm->dev, w->name);
3419                 if (IS_ERR(w->clk)) {
3420                         ret = PTR_ERR(w->clk);
3421                         if (ret == -EPROBE_DEFER)
3422                                 return ERR_PTR(ret);
3423                         dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3424                                 w->name, ret);
3425                         return NULL;
3426                 }
3427 #else
3428                 return NULL;
3429 #endif
3430                 break;
3431         default:
3432                 break;
3433         }
3434
3435         prefix = soc_dapm_prefix(dapm);
3436         if (prefix)
3437                 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
3438         else
3439                 w->name = kstrdup_const(widget->name, GFP_KERNEL);
3440         if (w->name == NULL) {
3441                 kfree(w);
3442                 return NULL;
3443         }
3444
3445         switch (w->id) {
3446         case snd_soc_dapm_mic:
3447                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3448                 w->power_check = dapm_generic_check_power;
3449                 break;
3450         case snd_soc_dapm_input:
3451                 if (!dapm->card->fully_routed)
3452                         w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3453                 w->power_check = dapm_generic_check_power;
3454                 break;
3455         case snd_soc_dapm_spk:
3456         case snd_soc_dapm_hp:
3457                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3458                 w->power_check = dapm_generic_check_power;
3459                 break;
3460         case snd_soc_dapm_output:
3461                 if (!dapm->card->fully_routed)
3462                         w->is_ep = SND_SOC_DAPM_EP_SINK;
3463                 w->power_check = dapm_generic_check_power;
3464                 break;
3465         case snd_soc_dapm_vmid:
3466         case snd_soc_dapm_siggen:
3467                 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
3468                 w->power_check = dapm_always_on_check_power;
3469                 break;
3470         case snd_soc_dapm_sink:
3471                 w->is_ep = SND_SOC_DAPM_EP_SINK;
3472                 w->power_check = dapm_always_on_check_power;
3473                 break;
3474
3475         case snd_soc_dapm_mux:
3476         case snd_soc_dapm_demux:
3477         case snd_soc_dapm_switch:
3478         case snd_soc_dapm_mixer:
3479         case snd_soc_dapm_mixer_named_ctl:
3480         case snd_soc_dapm_adc:
3481         case snd_soc_dapm_aif_out:
3482         case snd_soc_dapm_dac:
3483         case snd_soc_dapm_aif_in:
3484         case snd_soc_dapm_pga:
3485         case snd_soc_dapm_out_drv:
3486         case snd_soc_dapm_micbias:
3487         case snd_soc_dapm_line:
3488         case snd_soc_dapm_dai_link:
3489         case snd_soc_dapm_dai_out:
3490         case snd_soc_dapm_dai_in:
3491                 w->power_check = dapm_generic_check_power;
3492                 break;
3493         case snd_soc_dapm_supply:
3494         case snd_soc_dapm_regulator_supply:
3495         case snd_soc_dapm_clock_supply:
3496         case snd_soc_dapm_kcontrol:
3497                 w->is_supply = 1;
3498                 w->power_check = dapm_supply_check_power;
3499                 break;
3500         default:
3501                 w->power_check = dapm_always_on_check_power;
3502                 break;
3503         }
3504
3505         w->dapm = dapm;
3506         INIT_LIST_HEAD(&w->list);
3507         INIT_LIST_HEAD(&w->dirty);
3508         list_add_tail(&w->list, &dapm->card->widgets);
3509
3510         snd_soc_dapm_for_each_direction(dir) {
3511                 INIT_LIST_HEAD(&w->edges[dir]);
3512                 w->endpoints[dir] = -1;
3513         }
3514
3515         /* machine layer sets up unconnected pins and insertions */
3516         w->connected = 1;
3517         return w;
3518 }
3519
3520 /**
3521  * snd_soc_dapm_new_controls - create new dapm controls
3522  * @dapm: DAPM context
3523  * @widget: widget array
3524  * @num: number of widgets
3525  *
3526  * Creates new DAPM controls based upon the templates.
3527  *
3528  * Returns 0 for success else error.
3529  */
3530 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
3531         const struct snd_soc_dapm_widget *widget,
3532         int num)
3533 {
3534         struct snd_soc_dapm_widget *w;
3535         int i;
3536         int ret = 0;
3537
3538         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
3539         for (i = 0; i < num; i++) {
3540                 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3541                 if (IS_ERR(w)) {
3542                         ret = PTR_ERR(w);
3543                         /* Do not nag about probe deferrals */
3544                         if (ret == -EPROBE_DEFER)
3545                                 break;
3546                         dev_err(dapm->dev,
3547                                 "ASoC: Failed to create DAPM control %s (%d)\n",
3548                                 widget->name, ret);
3549                         break;
3550                 }
3551                 if (!w) {
3552                         dev_err(dapm->dev,
3553                                 "ASoC: Failed to create DAPM control %s\n",
3554                                 widget->name);
3555                         ret = -ENOMEM;
3556                         break;
3557                 }
3558                 widget++;
3559         }
3560         mutex_unlock(&dapm->card->dapm_mutex);
3561         return ret;
3562 }
3563 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3564
3565 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3566                                   struct snd_kcontrol *kcontrol, int event)
3567 {
3568         struct snd_soc_dapm_path *source_p, *sink_p;
3569         struct snd_soc_dai *source, *sink;
3570         const struct snd_soc_pcm_stream *config = w->params + w->params_select;
3571         struct snd_pcm_substream substream;
3572         struct snd_pcm_hw_params *params = NULL;
3573         struct snd_pcm_runtime *runtime = NULL;
3574         u64 fmt;
3575         int ret;
3576
3577         if (WARN_ON(!config) ||
3578             WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3579                     list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
3580                 return -EINVAL;
3581
3582         /* We only support a single source and sink, pick the first */
3583         source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3584                                     struct snd_soc_dapm_path,
3585                                     list_node[SND_SOC_DAPM_DIR_OUT]);
3586         sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3587                                     struct snd_soc_dapm_path,
3588                                     list_node[SND_SOC_DAPM_DIR_IN]);
3589
3590         source = source_p->source->priv;
3591         sink = sink_p->sink->priv;
3592
3593         /* Be a little careful as we don't want to overflow the mask array */
3594         if (config->formats) {
3595                 fmt = ffs(config->formats) - 1;
3596         } else {
3597                 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
3598                          config->formats);
3599                 fmt = 0;
3600         }
3601
3602         /* Currently very limited parameter selection */
3603         params = kzalloc(sizeof(*params), GFP_KERNEL);
3604         if (!params) {
3605                 ret = -ENOMEM;
3606                 goto out;
3607         }
3608         snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
3609
3610         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
3611                 config->rate_min;
3612         hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
3613                 config->rate_max;
3614
3615         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
3616                 = config->channels_min;
3617         hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
3618                 = config->channels_max;
3619
3620         memset(&substream, 0, sizeof(substream));
3621
3622         /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3623         runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3624         if (!runtime) {
3625                 ret = -ENOMEM;
3626                 goto out;
3627         }
3628         substream.runtime = runtime;
3629
3630         switch (event) {
3631         case SND_SOC_DAPM_PRE_PMU:
3632                 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3633                 if (source->driver->ops && source->driver->ops->startup) {
3634                         ret = source->driver->ops->startup(&substream, source);
3635                         if (ret < 0) {
3636                                 dev_err(source->dev,
3637                                         "ASoC: startup() failed: %d\n", ret);
3638                                 goto out;
3639                         }
3640                         source->active++;
3641                 }
3642                 ret = soc_dai_hw_params(&substream, params, source);
3643                 if (ret < 0)
3644                         goto out;
3645
3646                 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3647                 if (sink->driver->ops && sink->driver->ops->startup) {
3648                         ret = sink->driver->ops->startup(&substream, sink);
3649                         if (ret < 0) {
3650                                 dev_err(sink->dev,
3651                                         "ASoC: startup() failed: %d\n", ret);
3652                                 goto out;
3653                         }
3654                         sink->active++;
3655                 }
3656                 ret = soc_dai_hw_params(&substream, params, sink);
3657                 if (ret < 0)
3658                         goto out;
3659                 break;
3660
3661         case SND_SOC_DAPM_POST_PMU:
3662                 ret = snd_soc_dai_digital_mute(sink, 0,
3663                                                SNDRV_PCM_STREAM_PLAYBACK);
3664                 if (ret != 0 && ret != -ENOTSUPP)
3665                         dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
3666                 ret = 0;
3667                 break;
3668
3669         case SND_SOC_DAPM_PRE_PMD:
3670                 ret = snd_soc_dai_digital_mute(sink, 1,
3671                                                SNDRV_PCM_STREAM_PLAYBACK);
3672                 if (ret != 0 && ret != -ENOTSUPP)
3673                         dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
3674                 ret = 0;
3675
3676                 source->active--;
3677                 if (source->driver->ops && source->driver->ops->shutdown) {
3678                         substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3679                         source->driver->ops->shutdown(&substream, source);
3680                 }
3681
3682                 sink->active--;
3683                 if (sink->driver->ops && sink->driver->ops->shutdown) {
3684                         substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3685                         sink->driver->ops->shutdown(&substream, sink);
3686                 }
3687                 break;
3688
3689         default:
3690                 WARN(1, "Unknown event %d\n", event);
3691                 ret = -EINVAL;
3692         }
3693
3694 out:
3695         kfree(runtime);
3696         kfree(params);
3697         return ret;
3698 }
3699
3700 static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3701                           struct snd_ctl_elem_value *ucontrol)
3702 {
3703         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3704
3705         ucontrol->value.enumerated.item[0] = w->params_select;
3706
3707         return 0;
3708 }
3709
3710 static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3711                           struct snd_ctl_elem_value *ucontrol)
3712 {
3713         struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3714
3715         /* Can't change the config when widget is already powered */
3716         if (w->power)
3717                 return -EBUSY;
3718
3719         if (ucontrol->value.enumerated.item[0] == w->params_select)
3720                 return 0;
3721
3722         if (ucontrol->value.enumerated.item[0] >= w->num_params)
3723                 return -EINVAL;
3724
3725         w->params_select = ucontrol->value.enumerated.item[0];
3726
3727         return 1;
3728 }
3729
3730 int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3731                          const struct snd_soc_pcm_stream *params,
3732                          unsigned int num_params,
3733                          struct snd_soc_dapm_widget *source,
3734                          struct snd_soc_dapm_widget *sink)
3735 {
3736         struct snd_soc_dapm_widget template;
3737         struct snd_soc_dapm_widget *w;
3738         char *link_name;
3739         int ret, count;
3740         unsigned long private_value;
3741         const char **w_param_text;
3742         struct soc_enum w_param_enum[] = {
3743                 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3744         };
3745         struct snd_kcontrol_new kcontrol_dai_link[] = {
3746                 SOC_ENUM_EXT(NULL, w_param_enum[0],
3747                              snd_soc_dapm_dai_link_get,
3748                              snd_soc_dapm_dai_link_put),
3749         };
3750         const struct snd_soc_pcm_stream *config = params;
3751
3752         w_param_text = devm_kcalloc(card->dev, num_params,
3753                                         sizeof(char *), GFP_KERNEL);
3754         if (!w_param_text)
3755                 return -ENOMEM;
3756
3757         link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3758                                    source->name, sink->name);
3759         if (!link_name) {
3760                 ret = -ENOMEM;
3761                 goto outfree_w_param;
3762         }
3763
3764         for (count = 0 ; count < num_params; count++) {
3765                 if (!config->stream_name) {
3766                         dev_warn(card->dapm.dev,
3767                                 "ASoC: anonymous config %d for dai link %s\n",
3768                                 count, link_name);
3769                         w_param_text[count] =
3770                                 devm_kasprintf(card->dev, GFP_KERNEL,
3771                                                "Anonymous Configuration %d",
3772                                                count);
3773                         if (!w_param_text[count]) {
3774                                 ret = -ENOMEM;
3775                                 goto outfree_link_name;
3776                         }
3777                 } else {
3778                         w_param_text[count] = devm_kmemdup(card->dev,
3779                                                 config->stream_name,
3780                                                 strlen(config->stream_name) + 1,
3781                                                 GFP_KERNEL);
3782                         if (!w_param_text[count]) {
3783                                 ret = -ENOMEM;
3784                                 goto outfree_link_name;
3785                         }
3786                 }
3787                 config++;
3788         }
3789         w_param_enum[0].items = num_params;
3790         w_param_enum[0].texts = w_param_text;
3791
3792         memset(&template, 0, sizeof(template));
3793         template.reg = SND_SOC_NOPM;
3794         template.id = snd_soc_dapm_dai_link;
3795         template.name = link_name;
3796         template.event = snd_soc_dai_link_event;
3797         template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3798                 SND_SOC_DAPM_PRE_PMD;
3799         template.num_kcontrols = 1;
3800         /* duplicate w_param_enum on heap so that memory persists */
3801         private_value =
3802                 (unsigned long) devm_kmemdup(card->dev,
3803                         (void *)(kcontrol_dai_link[0].private_value),
3804                         sizeof(struct soc_enum), GFP_KERNEL);
3805         if (!private_value) {
3806                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3807                         link_name);
3808                 ret = -ENOMEM;
3809                 goto outfree_link_name;
3810         }
3811         kcontrol_dai_link[0].private_value = private_value;
3812         /* duplicate kcontrol_dai_link on heap so that memory persists */
3813         template.kcontrol_news =
3814                                 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3815                                         sizeof(struct snd_kcontrol_new),
3816                                         GFP_KERNEL);
3817         if (!template.kcontrol_news) {
3818                 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3819                         link_name);
3820                 ret = -ENOMEM;
3821                 goto outfree_private_value;
3822         }
3823
3824         dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
3825
3826         w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
3827         if (IS_ERR(w)) {
3828                 ret = PTR_ERR(w);
3829                 /* Do not nag about probe deferrals */
3830                 if (ret != -EPROBE_DEFER)
3831                         dev_err(card->dev,
3832                                 "ASoC: Failed to create %s widget (%d)\n",
3833                                 link_name, ret);
3834                 goto outfree_kcontrol_news;
3835         }
3836         if (!w) {
3837                 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
3838                         link_name);
3839                 ret = -ENOMEM;
3840                 goto outfree_kcontrol_news;
3841         }
3842
3843         w->params = params;
3844         w->num_params = num_params;
3845
3846         ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3847         if (ret)
3848                 goto outfree_w;
3849         return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
3850
3851 outfree_w:
3852         devm_kfree(card->dev, w);
3853 outfree_kcontrol_news:
3854         devm_kfree(card->dev, (void *)template.kcontrol_news);
3855 outfree_private_value:
3856         devm_kfree(card->dev, (void *)private_value);
3857 outfree_link_name:
3858         devm_kfree(card->dev, link_name);
3859 outfree_w_param:
3860         for (count = 0 ; count < num_params; count++)
3861                 devm_kfree(card->dev, (void *)w_param_text[count]);
3862         devm_kfree(card->dev, w_param_text);
3863
3864         return ret;
3865 }
3866
3867 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3868                                  struct snd_soc_dai *dai)
3869 {
3870         struct snd_soc_dapm_widget template;
3871         struct snd_soc_dapm_widget *w;
3872
3873         WARN_ON(dapm->dev != dai->dev);
3874
3875         memset(&template, 0, sizeof(template));
3876         template.reg = SND_SOC_NOPM;
3877
3878         if (dai->driver->playback.stream_name) {
3879                 template.id = snd_soc_dapm_dai_in;
3880                 template.name = dai->driver->playback.stream_name;
3881                 template.sname = dai->driver->playback.stream_name;
3882
3883                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3884                         template.name);
3885
3886                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3887                 if (IS_ERR(w)) {
3888                         int ret = PTR_ERR(w);
3889
3890                         /* Do not nag about probe deferrals */
3891                         if (ret != -EPROBE_DEFER)
3892                                 dev_err(dapm->dev,
3893                                 "ASoC: Failed to create %s widget (%d)\n",
3894                                 dai->driver->playback.stream_name, ret);
3895                         return ret;
3896                 }
3897                 if (!w) {
3898                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3899                                 dai->driver->playback.stream_name);
3900                         return -ENOMEM;
3901                 }
3902
3903                 w->priv = dai;
3904                 dai->playback_widget = w;
3905         }
3906
3907         if (dai->driver->capture.stream_name) {
3908                 template.id = snd_soc_dapm_dai_out;
3909                 template.name = dai->driver->capture.stream_name;
3910                 template.sname = dai->driver->capture.stream_name;
3911
3912                 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3913                         template.name);
3914
3915                 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
3916                 if (IS_ERR(w)) {
3917                         int ret = PTR_ERR(w);
3918
3919                         /* Do not nag about probe deferrals */
3920                         if (ret != -EPROBE_DEFER)
3921                                 dev_err(dapm->dev,
3922                                 "ASoC: Failed to create %s widget (%d)\n",
3923                                 dai->driver->playback.stream_name, ret);
3924                         return ret;
3925                 }
3926                 if (!w) {
3927                         dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3928                                 dai->driver->capture.stream_name);
3929                         return -ENOMEM;
3930                 }
3931
3932                 w->priv = dai;
3933                 dai->capture_widget = w;
3934         }
3935
3936         return 0;
3937 }
3938
3939 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3940 {
3941         struct snd_soc_dapm_widget *dai_w, *w;
3942         struct snd_soc_dapm_widget *src, *sink;
3943         struct snd_soc_dai *dai;
3944
3945         /* For each DAI widget... */
3946         list_for_each_entry(dai_w, &card->widgets, list) {
3947                 switch (dai_w->id) {
3948                 case snd_soc_dapm_dai_in:
3949                 case snd_soc_dapm_dai_out:
3950                         break;
3951                 default:
3952                         continue;
3953                 }
3954
3955                 /* let users know there is no DAI to link */
3956                 if (!dai_w->priv) {
3957                         dev_dbg(card->dev, "dai widget %s has no DAI\n",
3958                                 dai_w->name);
3959                         continue;
3960                 }
3961
3962                 dai = dai_w->priv;
3963
3964                 /* ...find all widgets with the same stream and link them */
3965                 list_for_each_entry(w, &card->widgets, list) {
3966                         if (w->dapm != dai_w->dapm)
3967                                 continue;
3968
3969                         switch (w->id) {
3970                         case snd_soc_dapm_dai_in:
3971                         case snd_soc_dapm_dai_out:
3972                                 continue;
3973                         default:
3974                                 break;
3975                         }
3976
3977                         if (!w->sname || !strstr(w->sname, dai_w->sname))
3978                                 continue;
3979
3980                         if (dai_w->id == snd_soc_dapm_dai_in) {
3981                                 src = dai_w;
3982                                 sink = w;
3983                         } else {
3984                                 src = w;
3985                                 sink = dai_w;
3986                         }
3987                         dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3988                         snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
3989                 }
3990         }
3991
3992         return 0;
3993 }
3994
3995 static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3996                                           struct snd_soc_pcm_runtime *rtd)
3997 {
3998         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3999         struct snd_soc_dapm_widget *sink, *source;
4000         int i;
4001
4002         for (i = 0; i < rtd->num_codecs; i++) {
4003                 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
4004
4005                 /* connect BE DAI playback if widgets are valid */
4006                 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
4007                         source = cpu_dai->playback_widget;
4008                         sink = codec_dai->playback_widget;
4009                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
4010                                 cpu_dai->component->name, source->name,
4011                                 codec_dai->component->name, sink->name);
4012
4013                         snd_soc_dapm_add_path(&card->dapm, source, sink,
4014                                 NULL, NULL);
4015                 }
4016
4017                 /* connect BE DAI capture if widgets are valid */
4018                 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
4019                         source = codec_dai->capture_widget;
4020                         sink = cpu_dai->capture_widget;
4021                         dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
4022                                 codec_dai->component->name, source->name,
4023                                 cpu_dai->component->name, sink->name);
4024
4025                         snd_soc_dapm_add_path(&card->dapm, source, sink,
4026                                 NULL, NULL);
4027                 }
4028         }
4029 }
4030
4031 static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
4032         int event)
4033 {
4034         struct snd_soc_dapm_widget *w;
4035         unsigned int ep;
4036
4037         if (stream == SNDRV_PCM_STREAM_PLAYBACK)
4038                 w = dai->playback_widget;
4039         else
4040                 w = dai->capture_widget;
4041
4042         if (w) {
4043                 dapm_mark_dirty(w, "stream event");
4044
4045                 if (w->id == snd_soc_dapm_dai_in) {
4046                         ep = SND_SOC_DAPM_EP_SOURCE;
4047                         dapm_widget_invalidate_input_paths(w);
4048                 } else {
4049                         ep = SND_SOC_DAPM_EP_SINK;
4050                         dapm_widget_invalidate_output_paths(w);
4051                 }
4052
4053                 switch (event) {
4054                 case SND_SOC_DAPM_STREAM_START:
4055                         w->active = 1;
4056                         w->is_ep = ep;
4057                         break;
4058                 case SND_SOC_DAPM_STREAM_STOP:
4059                         w->active = 0;
4060                         w->is_ep = 0;
4061                         break;
4062                 case SND_SOC_DAPM_STREAM_SUSPEND:
4063                 case SND_SOC_DAPM_STREAM_RESUME:
4064                 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
4065                 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
4066                         break;
4067                 }
4068         }
4069 }
4070
4071 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
4072 {
4073         struct snd_soc_pcm_runtime *rtd;
4074
4075         /* for each BE DAI link... */
4076         list_for_each_entry(rtd, &card->rtd_list, list)  {
4077                 /*
4078                  * dynamic FE links have no fixed DAI mapping.
4079                  * CODEC<->CODEC links have no direct connection.
4080                  */
4081                 if (rtd->dai_link->dynamic || rtd->dai_link->params)
4082                         continue;
4083
4084                 dapm_connect_dai_link_widgets(card, rtd);
4085         }
4086 }
4087
4088 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4089         int event)
4090 {
4091         int i;
4092
4093         soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
4094         for (i = 0; i < rtd->num_codecs; i++)
4095                 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
4096
4097         dapm_power_widgets(rtd->card, event);
4098 }
4099
4100 /**
4101  * snd_soc_dapm_stream_event - send a stream event to the dapm core
4102  * @rtd: PCM runtime data
4103  * @stream: stream name
4104  * @event: stream event
4105  *
4106  * Sends a stream event to the dapm core. The core then makes any
4107  * necessary widget power changes.
4108  *
4109  * Returns 0 for success else error.
4110  */
4111 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4112                               int event)
4113 {
4114         struct snd_soc_card *card = rtd->card;
4115
4116         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4117         soc_dapm_stream_event(rtd, stream, event);
4118         mutex_unlock(&card->dapm_mutex);
4119 }
4120
4121 /**
4122  * snd_soc_dapm_enable_pin_unlocked - enable pin.
4123  * @dapm: DAPM context
4124  * @pin: pin name
4125  *
4126  * Enables input/output pin and its parents or children widgets iff there is
4127  * a valid audio route and active audio stream.
4128  *
4129  * Requires external locking.
4130  *
4131  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4132  * do any widget power switching.
4133  */
4134 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4135                                    const char *pin)
4136 {
4137         return snd_soc_dapm_set_pin(dapm, pin, 1);
4138 }
4139 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4140
4141 /**
4142  * snd_soc_dapm_enable_pin - enable pin.
4143  * @dapm: DAPM context
4144  * @pin: pin name
4145  *
4146  * Enables input/output pin and its parents or children widgets iff there is
4147  * a valid audio route and active audio stream.
4148  *
4149  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4150  * do any widget power switching.
4151  */
4152 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4153 {
4154         int ret;
4155
4156         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4157
4158         ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4159
4160         mutex_unlock(&dapm->card->dapm_mutex);
4161
4162         return ret;
4163 }
4164 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
4165
4166 /**
4167  * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4168  * @dapm: DAPM context
4169  * @pin: pin name
4170  *
4171  * Enables input/output pin regardless of any other state.  This is
4172  * intended for use with microphone bias supplies used in microphone
4173  * jack detection.
4174  *
4175  * Requires external locking.
4176  *
4177  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4178  * do any widget power switching.
4179  */
4180 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4181                                          const char *pin)
4182 {
4183         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4184
4185         if (!w) {
4186                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4187                 return -EINVAL;
4188         }
4189
4190         dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
4191         if (!w->connected) {
4192                 /*
4193                  * w->force does not affect the number of input or output paths,
4194                  * so we only have to recheck if w->connected is changed
4195                  */
4196                 dapm_widget_invalidate_input_paths(w);
4197                 dapm_widget_invalidate_output_paths(w);
4198                 w->connected = 1;
4199         }
4200         w->force = 1;
4201         dapm_mark_dirty(w, "force enable");
4202
4203         return 0;
4204 }
4205 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4206
4207 /**
4208  * snd_soc_dapm_force_enable_pin - force a pin to be enabled
4209  * @dapm: DAPM context
4210  * @pin: pin name
4211  *
4212  * Enables input/output pin regardless of any other state.  This is
4213  * intended for use with microphone bias supplies used in microphone
4214  * jack detection.
4215  *
4216  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4217  * do any widget power switching.
4218  */
4219 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4220                                   const char *pin)
4221 {
4222         int ret;
4223
4224         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4225
4226         ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
4227
4228         mutex_unlock(&dapm->card->dapm_mutex);
4229
4230         return ret;
4231 }
4232 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4233
4234 /**
4235  * snd_soc_dapm_disable_pin_unlocked - disable pin.
4236  * @dapm: DAPM context
4237  * @pin: pin name
4238  *
4239  * Disables input/output pin and its parents or children widgets.
4240  *
4241  * Requires external locking.
4242  *
4243  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4244  * do any widget power switching.
4245  */
4246 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4247                                     const char *pin)
4248 {
4249         return snd_soc_dapm_set_pin(dapm, pin, 0);
4250 }
4251 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4252
4253 /**
4254  * snd_soc_dapm_disable_pin - disable pin.
4255  * @dapm: DAPM context
4256  * @pin: pin name
4257  *
4258  * Disables input/output pin and its parents or children widgets.
4259  *
4260  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4261  * do any widget power switching.
4262  */
4263 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4264                              const char *pin)
4265 {
4266         int ret;
4267
4268         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4269
4270         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4271
4272         mutex_unlock(&dapm->card->dapm_mutex);
4273
4274         return ret;
4275 }
4276 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4277
4278 /**
4279  * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4280  * @dapm: DAPM context
4281  * @pin: pin name
4282  *
4283  * Marks the specified pin as being not connected, disabling it along
4284  * any parent or child widgets.  At present this is identical to
4285  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4286  * additional things such as disabling controls which only affect
4287  * paths through the pin.
4288  *
4289  * Requires external locking.
4290  *
4291  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4292  * do any widget power switching.
4293  */
4294 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4295                                const char *pin)
4296 {
4297         return snd_soc_dapm_set_pin(dapm, pin, 0);
4298 }
4299 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4300
4301 /**
4302  * snd_soc_dapm_nc_pin - permanently disable pin.
4303  * @dapm: DAPM context
4304  * @pin: pin name
4305  *
4306  * Marks the specified pin as being not connected, disabling it along
4307  * any parent or child widgets.  At present this is identical to
4308  * snd_soc_dapm_disable_pin() but in future it will be extended to do
4309  * additional things such as disabling controls which only affect
4310  * paths through the pin.
4311  *
4312  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4313  * do any widget power switching.
4314  */
4315 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
4316 {
4317         int ret;
4318
4319         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4320
4321         ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4322
4323         mutex_unlock(&dapm->card->dapm_mutex);
4324
4325         return ret;
4326 }
4327 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4328
4329 /**
4330  * snd_soc_dapm_get_pin_status - get audio pin status
4331  * @dapm: DAPM context
4332  * @pin: audio signal pin endpoint (or start point)
4333  *
4334  * Get audio pin status - connected or disconnected.
4335  *
4336  * Returns 1 for connected otherwise 0.
4337  */
4338 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4339                                 const char *pin)
4340 {
4341         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4342
4343         if (w)
4344                 return w->connected;
4345
4346         return 0;
4347 }
4348 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
4349
4350 /**
4351  * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
4352  * @dapm: DAPM context
4353  * @pin: audio signal pin endpoint (or start point)
4354  *
4355  * Mark the given endpoint or pin as ignoring suspend.  When the
4356  * system is disabled a path between two endpoints flagged as ignoring
4357  * suspend will not be disabled.  The path must already be enabled via
4358  * normal means at suspend time, it will not be turned on if it was not
4359  * already enabled.
4360  */
4361 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4362                                 const char *pin)
4363 {
4364         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
4365
4366         if (!w) {
4367                 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4368                 return -EINVAL;
4369         }
4370
4371         w->ignore_suspend = 1;
4372
4373         return 0;
4374 }
4375 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4376
4377 /**
4378  * snd_soc_dapm_free - free dapm resources
4379  * @dapm: DAPM context
4380  *
4381  * Free all dapm widgets and resources.
4382  */
4383 void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
4384 {
4385         dapm_debugfs_cleanup(dapm);
4386         dapm_free_widgets(dapm);
4387         list_del(&dapm->list);
4388 }
4389 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4390
4391 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
4392 {
4393         struct snd_soc_card *card = dapm->card;
4394         struct snd_soc_dapm_widget *w;
4395         LIST_HEAD(down_list);
4396         int powerdown = 0;
4397
4398         mutex_lock(&card->dapm_mutex);
4399
4400         list_for_each_entry(w, &dapm->card->widgets, list) {
4401                 if (w->dapm != dapm)
4402                         continue;
4403                 if (w->power) {
4404                         dapm_seq_insert(w, &down_list, false);
4405                         w->new_power = 0;
4406                         powerdown = 1;
4407                 }
4408         }
4409
4410         /* If there were no widgets to power down we're already in
4411          * standby.
4412          */
4413         if (powerdown) {
4414                 if (dapm->bias_level == SND_SOC_BIAS_ON)
4415                         snd_soc_dapm_set_bias_level(dapm,
4416                                                     SND_SOC_BIAS_PREPARE);
4417                 dapm_seq_run(card, &down_list, 0, false);
4418                 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4419                         snd_soc_dapm_set_bias_level(dapm,
4420                                                     SND_SOC_BIAS_STANDBY);
4421         }
4422
4423         mutex_unlock(&card->dapm_mutex);
4424 }
4425
4426 /*
4427  * snd_soc_dapm_shutdown - callback for system shutdown
4428  */
4429 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4430 {
4431         struct snd_soc_dapm_context *dapm;
4432
4433         list_for_each_entry(dapm, &card->dapm_list, list) {
4434                 if (dapm != &card->dapm) {
4435                         soc_dapm_shutdown_dapm(dapm);
4436                         if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4437                                 snd_soc_dapm_set_bias_level(dapm,
4438                                                             SND_SOC_BIAS_OFF);
4439                 }
4440         }
4441
4442         soc_dapm_shutdown_dapm(&card->dapm);
4443         if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4444                 snd_soc_dapm_set_bias_level(&card->dapm,
4445                                             SND_SOC_BIAS_OFF);
4446 }
4447
4448 /* Module information */
4449 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4450 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4451 MODULE_LICENSE("GPL");