]> Pileus Git - ~andy/linux/blob - sound/soc/soc-dapm.c
ASoC: dapm: Allow DAI widgets to be routed through
[~andy/linux] / 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/slab.h>
39 #include <sound/core.h>
40 #include <sound/pcm.h>
41 #include <sound/pcm_params.h>
42 #include <sound/soc.h>
43 #include <sound/initval.h>
44
45 #include <trace/events/asoc.h>
46
47 #define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
48
49 /* dapm power sequences - make this per codec in the future */
50 static int dapm_up_seq[] = {
51         [snd_soc_dapm_pre] = 0,
52         [snd_soc_dapm_supply] = 1,
53         [snd_soc_dapm_regulator_supply] = 1,
54         [snd_soc_dapm_micbias] = 2,
55         [snd_soc_dapm_dai] = 3,
56         [snd_soc_dapm_aif_in] = 3,
57         [snd_soc_dapm_aif_out] = 3,
58         [snd_soc_dapm_mic] = 4,
59         [snd_soc_dapm_mux] = 5,
60         [snd_soc_dapm_virt_mux] = 5,
61         [snd_soc_dapm_value_mux] = 5,
62         [snd_soc_dapm_dac] = 6,
63         [snd_soc_dapm_mixer] = 7,
64         [snd_soc_dapm_mixer_named_ctl] = 7,
65         [snd_soc_dapm_pga] = 8,
66         [snd_soc_dapm_adc] = 9,
67         [snd_soc_dapm_out_drv] = 10,
68         [snd_soc_dapm_hp] = 10,
69         [snd_soc_dapm_spk] = 10,
70         [snd_soc_dapm_post] = 11,
71 };
72
73 static int dapm_down_seq[] = {
74         [snd_soc_dapm_pre] = 0,
75         [snd_soc_dapm_adc] = 1,
76         [snd_soc_dapm_hp] = 2,
77         [snd_soc_dapm_spk] = 2,
78         [snd_soc_dapm_out_drv] = 2,
79         [snd_soc_dapm_pga] = 4,
80         [snd_soc_dapm_mixer_named_ctl] = 5,
81         [snd_soc_dapm_mixer] = 5,
82         [snd_soc_dapm_dac] = 6,
83         [snd_soc_dapm_mic] = 7,
84         [snd_soc_dapm_micbias] = 8,
85         [snd_soc_dapm_mux] = 9,
86         [snd_soc_dapm_virt_mux] = 9,
87         [snd_soc_dapm_value_mux] = 9,
88         [snd_soc_dapm_aif_in] = 10,
89         [snd_soc_dapm_aif_out] = 10,
90         [snd_soc_dapm_dai] = 10,
91         [snd_soc_dapm_regulator_supply] = 11,
92         [snd_soc_dapm_supply] = 11,
93         [snd_soc_dapm_post] = 12,
94 };
95
96 static void pop_wait(u32 pop_time)
97 {
98         if (pop_time)
99                 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
100 }
101
102 static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
103 {
104         va_list args;
105         char *buf;
106
107         if (!pop_time)
108                 return;
109
110         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
111         if (buf == NULL)
112                 return;
113
114         va_start(args, fmt);
115         vsnprintf(buf, PAGE_SIZE, fmt, args);
116         dev_info(dev, "%s", buf);
117         va_end(args);
118
119         kfree(buf);
120 }
121
122 static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
123 {
124         return !list_empty(&w->dirty);
125 }
126
127 void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
128 {
129         if (!dapm_dirty_widget(w)) {
130                 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
131                          w->name, reason);
132                 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
133         }
134 }
135 EXPORT_SYMBOL_GPL(dapm_mark_dirty);
136
137 /* create a new dapm widget */
138 static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
139         const struct snd_soc_dapm_widget *_widget)
140 {
141         return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
142 }
143
144 /* get snd_card from DAPM context */
145 static inline struct snd_card *dapm_get_snd_card(
146         struct snd_soc_dapm_context *dapm)
147 {
148         if (dapm->codec)
149                 return dapm->codec->card->snd_card;
150         else if (dapm->platform)
151                 return dapm->platform->card->snd_card;
152         else
153                 BUG();
154
155         /* unreachable */
156         return NULL;
157 }
158
159 /* get soc_card from DAPM context */
160 static inline struct snd_soc_card *dapm_get_soc_card(
161                 struct snd_soc_dapm_context *dapm)
162 {
163         if (dapm->codec)
164                 return dapm->codec->card;
165         else if (dapm->platform)
166                 return dapm->platform->card;
167         else
168                 BUG();
169
170         /* unreachable */
171         return NULL;
172 }
173
174 static void dapm_reset(struct snd_soc_card *card)
175 {
176         struct snd_soc_dapm_widget *w;
177
178         memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
179
180         list_for_each_entry(w, &card->widgets, list) {
181                 w->power_checked = false;
182                 w->inputs = -1;
183                 w->outputs = -1;
184         }
185 }
186
187 static int soc_widget_read(struct snd_soc_dapm_widget *w, int reg)
188 {
189         if (w->codec)
190                 return snd_soc_read(w->codec, reg);
191         else if (w->platform)
192                 return snd_soc_platform_read(w->platform, reg);
193
194         dev_err(w->dapm->dev, "no valid widget read method\n");
195         return -1;
196 }
197
198 static int soc_widget_write(struct snd_soc_dapm_widget *w, int reg, int val)
199 {
200         if (w->codec)
201                 return snd_soc_write(w->codec, reg, val);
202         else if (w->platform)
203                 return snd_soc_platform_write(w->platform, reg, val);
204
205         dev_err(w->dapm->dev, "no valid widget write method\n");
206         return -1;
207 }
208
209 static inline void soc_widget_lock(struct snd_soc_dapm_widget *w)
210 {
211         if (w->codec && !w->codec->using_regmap)
212                 mutex_lock(&w->codec->mutex);
213         else if (w->platform)
214                 mutex_lock(&w->platform->mutex);
215 }
216
217 static inline void soc_widget_unlock(struct snd_soc_dapm_widget *w)
218 {
219         if (w->codec && !w->codec->using_regmap)
220                 mutex_unlock(&w->codec->mutex);
221         else if (w->platform)
222                 mutex_unlock(&w->platform->mutex);
223 }
224
225 static int soc_widget_update_bits_locked(struct snd_soc_dapm_widget *w,
226         unsigned short reg, unsigned int mask, unsigned int value)
227 {
228         bool change;
229         unsigned int old, new;
230         int ret;
231
232         if (w->codec && w->codec->using_regmap) {
233                 ret = regmap_update_bits_check(w->codec->control_data,
234                                                reg, mask, value, &change);
235                 if (ret != 0)
236                         return ret;
237         } else {
238                 soc_widget_lock(w);
239                 ret = soc_widget_read(w, reg);
240                 if (ret < 0) {
241                         soc_widget_unlock(w);
242                         return ret;
243                 }
244
245                 old = ret;
246                 new = (old & ~mask) | (value & mask);
247                 change = old != new;
248                 if (change) {
249                         ret = soc_widget_write(w, reg, new);
250                         if (ret < 0) {
251                                 soc_widget_unlock(w);
252                                 return ret;
253                         }
254                 }
255                 soc_widget_unlock(w);
256         }
257
258         return change;
259 }
260
261 /**
262  * snd_soc_dapm_set_bias_level - set the bias level for the system
263  * @dapm: DAPM context
264  * @level: level to configure
265  *
266  * Configure the bias (power) levels for the SoC audio device.
267  *
268  * Returns 0 for success else error.
269  */
270 static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
271                                        enum snd_soc_bias_level level)
272 {
273         struct snd_soc_card *card = dapm->card;
274         int ret = 0;
275
276         trace_snd_soc_bias_level_start(card, level);
277
278         if (card && card->set_bias_level)
279                 ret = card->set_bias_level(card, dapm, level);
280         if (ret != 0)
281                 goto out;
282
283         if (dapm->codec) {
284                 if (dapm->codec->driver->set_bias_level)
285                         ret = dapm->codec->driver->set_bias_level(dapm->codec,
286                                                                   level);
287                 else
288                         dapm->bias_level = level;
289         }
290         if (ret != 0)
291                 goto out;
292
293         if (card && card->set_bias_level_post)
294                 ret = card->set_bias_level_post(card, dapm, level);
295 out:
296         trace_snd_soc_bias_level_done(card, level);
297
298         return ret;
299 }
300
301 /* set up initial codec paths */
302 static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
303         struct snd_soc_dapm_path *p, int i)
304 {
305         switch (w->id) {
306         case snd_soc_dapm_switch:
307         case snd_soc_dapm_mixer:
308         case snd_soc_dapm_mixer_named_ctl: {
309                 int val;
310                 struct soc_mixer_control *mc = (struct soc_mixer_control *)
311                         w->kcontrol_news[i].private_value;
312                 unsigned int reg = mc->reg;
313                 unsigned int shift = mc->shift;
314                 int max = mc->max;
315                 unsigned int mask = (1 << fls(max)) - 1;
316                 unsigned int invert = mc->invert;
317
318                 val = soc_widget_read(w, reg);
319                 val = (val >> shift) & mask;
320
321                 if ((invert && !val) || (!invert && val))
322                         p->connect = 1;
323                 else
324                         p->connect = 0;
325         }
326         break;
327         case snd_soc_dapm_mux: {
328                 struct soc_enum *e = (struct soc_enum *)
329                         w->kcontrol_news[i].private_value;
330                 int val, item, bitmask;
331
332                 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
333                         ;
334                 val = soc_widget_read(w, e->reg);
335                 item = (val >> e->shift_l) & (bitmask - 1);
336
337                 p->connect = 0;
338                 for (i = 0; i < e->max; i++) {
339                         if (!(strcmp(p->name, e->texts[i])) && item == i)
340                                 p->connect = 1;
341                 }
342         }
343         break;
344         case snd_soc_dapm_virt_mux: {
345                 struct soc_enum *e = (struct soc_enum *)
346                         w->kcontrol_news[i].private_value;
347
348                 p->connect = 0;
349                 /* since a virtual mux has no backing registers to
350                  * decide which path to connect, it will try to match
351                  * with the first enumeration.  This is to ensure
352                  * that the default mux choice (the first) will be
353                  * correctly powered up during initialization.
354                  */
355                 if (!strcmp(p->name, e->texts[0]))
356                         p->connect = 1;
357         }
358         break;
359         case snd_soc_dapm_value_mux: {
360                 struct soc_enum *e = (struct soc_enum *)
361                         w->kcontrol_news[i].private_value;
362                 int val, item;
363
364                 val = soc_widget_read(w, e->reg);
365                 val = (val >> e->shift_l) & e->mask;
366                 for (item = 0; item < e->max; item++) {
367                         if (val == e->values[item])
368                                 break;
369                 }
370
371                 p->connect = 0;
372                 for (i = 0; i < e->max; i++) {
373                         if (!(strcmp(p->name, e->texts[i])) && item == i)
374                                 p->connect = 1;
375                 }
376         }
377         break;
378         /* does not affect routing - always connected */
379         case snd_soc_dapm_pga:
380         case snd_soc_dapm_out_drv:
381         case snd_soc_dapm_output:
382         case snd_soc_dapm_adc:
383         case snd_soc_dapm_input:
384         case snd_soc_dapm_siggen:
385         case snd_soc_dapm_dac:
386         case snd_soc_dapm_micbias:
387         case snd_soc_dapm_vmid:
388         case snd_soc_dapm_supply:
389         case snd_soc_dapm_regulator_supply:
390         case snd_soc_dapm_aif_in:
391         case snd_soc_dapm_aif_out:
392         case snd_soc_dapm_dai:
393         case snd_soc_dapm_hp:
394         case snd_soc_dapm_mic:
395         case snd_soc_dapm_spk:
396         case snd_soc_dapm_line:
397                 p->connect = 1;
398         break;
399         /* does affect routing - dynamically connected */
400         case snd_soc_dapm_pre:
401         case snd_soc_dapm_post:
402                 p->connect = 0;
403         break;
404         }
405 }
406
407 /* connect mux widget to its interconnecting audio paths */
408 static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
409         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
410         struct snd_soc_dapm_path *path, const char *control_name,
411         const struct snd_kcontrol_new *kcontrol)
412 {
413         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
414         int i;
415
416         for (i = 0; i < e->max; i++) {
417                 if (!(strcmp(control_name, e->texts[i]))) {
418                         list_add(&path->list, &dapm->card->paths);
419                         list_add(&path->list_sink, &dest->sources);
420                         list_add(&path->list_source, &src->sinks);
421                         path->name = (char*)e->texts[i];
422                         dapm_set_path_status(dest, path, 0);
423                         return 0;
424                 }
425         }
426
427         return -ENODEV;
428 }
429
430 /* connect mixer widget to its interconnecting audio paths */
431 static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
432         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
433         struct snd_soc_dapm_path *path, const char *control_name)
434 {
435         int i;
436
437         /* search for mixer kcontrol */
438         for (i = 0; i < dest->num_kcontrols; i++) {
439                 if (!strcmp(control_name, dest->kcontrol_news[i].name)) {
440                         list_add(&path->list, &dapm->card->paths);
441                         list_add(&path->list_sink, &dest->sources);
442                         list_add(&path->list_source, &src->sinks);
443                         path->name = dest->kcontrol_news[i].name;
444                         dapm_set_path_status(dest, path, i);
445                         return 0;
446                 }
447         }
448         return -ENODEV;
449 }
450
451 static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
452         struct snd_soc_dapm_widget *kcontrolw,
453         const struct snd_kcontrol_new *kcontrol_new,
454         struct snd_kcontrol **kcontrol)
455 {
456         struct snd_soc_dapm_widget *w;
457         int i;
458
459         *kcontrol = NULL;
460
461         list_for_each_entry(w, &dapm->card->widgets, list) {
462                 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
463                         continue;
464                 for (i = 0; i < w->num_kcontrols; i++) {
465                         if (&w->kcontrol_news[i] == kcontrol_new) {
466                                 if (w->kcontrols)
467                                         *kcontrol = w->kcontrols[i];
468                                 return 1;
469                         }
470                 }
471         }
472
473         return 0;
474 }
475
476 /* create new dapm mixer control */
477 static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
478 {
479         struct snd_soc_dapm_context *dapm = w->dapm;
480         int i, ret = 0;
481         size_t name_len, prefix_len;
482         struct snd_soc_dapm_path *path;
483         struct snd_card *card = dapm->card->snd_card;
484         const char *prefix;
485         struct snd_soc_dapm_widget_list *wlist;
486         size_t wlistsize;
487
488         if (dapm->codec)
489                 prefix = dapm->codec->name_prefix;
490         else
491                 prefix = NULL;
492
493         if (prefix)
494                 prefix_len = strlen(prefix) + 1;
495         else
496                 prefix_len = 0;
497
498         /* add kcontrol */
499         for (i = 0; i < w->num_kcontrols; i++) {
500
501                 /* match name */
502                 list_for_each_entry(path, &w->sources, list_sink) {
503
504                         /* mixer/mux paths name must match control name */
505                         if (path->name != (char *)w->kcontrol_news[i].name)
506                                 continue;
507
508                         if (w->kcontrols[i]) {
509                                 path->kcontrol = w->kcontrols[i];
510                                 continue;
511                         }
512
513                         wlistsize = sizeof(struct snd_soc_dapm_widget_list) +
514                                     sizeof(struct snd_soc_dapm_widget *),
515                         wlist = kzalloc(wlistsize, GFP_KERNEL);
516                         if (wlist == NULL) {
517                                 dev_err(dapm->dev,
518                                         "asoc: can't allocate widget list for %s\n",
519                                         w->name);
520                                 return -ENOMEM;
521                         }
522                         wlist->num_widgets = 1;
523                         wlist->widgets[0] = w;
524
525                         /* add dapm control with long name.
526                          * for dapm_mixer this is the concatenation of the
527                          * mixer and kcontrol name.
528                          * for dapm_mixer_named_ctl this is simply the
529                          * kcontrol name.
530                          */
531                         name_len = strlen(w->kcontrol_news[i].name) + 1;
532                         if (w->id != snd_soc_dapm_mixer_named_ctl)
533                                 name_len += 1 + strlen(w->name);
534
535                         path->long_name = kmalloc(name_len, GFP_KERNEL);
536
537                         if (path->long_name == NULL) {
538                                 kfree(wlist);
539                                 return -ENOMEM;
540                         }
541
542                         switch (w->id) {
543                         default:
544                                 /* The control will get a prefix from
545                                  * the control creation process but
546                                  * we're also using the same prefix
547                                  * for widgets so cut the prefix off
548                                  * the front of the widget name.
549                                  */
550                                 snprintf((char *)path->long_name, name_len,
551                                          "%s %s", w->name + prefix_len,
552                                          w->kcontrol_news[i].name);
553                                 break;
554                         case snd_soc_dapm_mixer_named_ctl:
555                                 snprintf((char *)path->long_name, name_len,
556                                          "%s", w->kcontrol_news[i].name);
557                                 break;
558                         }
559
560                         ((char *)path->long_name)[name_len - 1] = '\0';
561
562                         path->kcontrol = snd_soc_cnew(&w->kcontrol_news[i],
563                                                       wlist, path->long_name,
564                                                       prefix);
565                         ret = snd_ctl_add(card, path->kcontrol);
566                         if (ret < 0) {
567                                 dev_err(dapm->dev,
568                                         "asoc: failed to add dapm kcontrol %s: %d\n",
569                                         path->long_name, ret);
570                                 kfree(wlist);
571                                 kfree(path->long_name);
572                                 path->long_name = NULL;
573                                 return ret;
574                         }
575                         w->kcontrols[i] = path->kcontrol;
576                 }
577         }
578         return ret;
579 }
580
581 /* create new dapm mux control */
582 static int dapm_new_mux(struct snd_soc_dapm_widget *w)
583 {
584         struct snd_soc_dapm_context *dapm = w->dapm;
585         struct snd_soc_dapm_path *path = NULL;
586         struct snd_kcontrol *kcontrol;
587         struct snd_card *card = dapm->card->snd_card;
588         const char *prefix;
589         size_t prefix_len;
590         int ret;
591         struct snd_soc_dapm_widget_list *wlist;
592         int shared, wlistentries;
593         size_t wlistsize;
594         const char *name;
595
596         if (w->num_kcontrols != 1) {
597                 dev_err(dapm->dev,
598                         "asoc: mux %s has incorrect number of controls\n",
599                         w->name);
600                 return -EINVAL;
601         }
602
603         shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[0],
604                                          &kcontrol);
605         if (kcontrol) {
606                 wlist = kcontrol->private_data;
607                 wlistentries = wlist->num_widgets + 1;
608         } else {
609                 wlist = NULL;
610                 wlistentries = 1;
611         }
612         wlistsize = sizeof(struct snd_soc_dapm_widget_list) +
613                 wlistentries * sizeof(struct snd_soc_dapm_widget *),
614         wlist = krealloc(wlist, wlistsize, GFP_KERNEL);
615         if (wlist == NULL) {
616                 dev_err(dapm->dev,
617                         "asoc: can't allocate widget list for %s\n", w->name);
618                 return -ENOMEM;
619         }
620         wlist->num_widgets = wlistentries;
621         wlist->widgets[wlistentries - 1] = w;
622
623         if (!kcontrol) {
624                 if (dapm->codec)
625                         prefix = dapm->codec->name_prefix;
626                 else
627                         prefix = NULL;
628
629                 if (shared) {
630                         name = w->kcontrol_news[0].name;
631                         prefix_len = 0;
632                 } else {
633                         name = w->name;
634                         if (prefix)
635                                 prefix_len = strlen(prefix) + 1;
636                         else
637                                 prefix_len = 0;
638                 }
639
640                 /*
641                  * The control will get a prefix from the control creation
642                  * process but we're also using the same prefix for widgets so
643                  * cut the prefix off the front of the widget name.
644                  */
645                 kcontrol = snd_soc_cnew(&w->kcontrol_news[0], wlist,
646                                         name + prefix_len, prefix);
647                 ret = snd_ctl_add(card, kcontrol);
648                 if (ret < 0) {
649                         dev_err(dapm->dev, "failed to add kcontrol %s: %d\n",
650                                 w->name, ret);
651                         kfree(wlist);
652                         return ret;
653                 }
654         }
655
656         kcontrol->private_data = wlist;
657
658         w->kcontrols[0] = kcontrol;
659
660         list_for_each_entry(path, &w->sources, list_sink)
661                 path->kcontrol = kcontrol;
662
663         return 0;
664 }
665
666 /* create new dapm volume control */
667 static int dapm_new_pga(struct snd_soc_dapm_widget *w)
668 {
669         if (w->num_kcontrols)
670                 dev_err(w->dapm->dev,
671                         "asoc: PGA controls not supported: '%s'\n", w->name);
672
673         return 0;
674 }
675
676 /* reset 'walked' bit for each dapm path */
677 static inline void dapm_clear_walk(struct snd_soc_dapm_context *dapm)
678 {
679         struct snd_soc_dapm_path *p;
680
681         list_for_each_entry(p, &dapm->card->paths, list)
682                 p->walked = 0;
683 }
684
685 /* We implement power down on suspend by checking the power state of
686  * the ALSA card - when we are suspending the ALSA state for the card
687  * is set to D3.
688  */
689 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
690 {
691         int level = snd_power_get_state(widget->dapm->card->snd_card);
692
693         switch (level) {
694         case SNDRV_CTL_POWER_D3hot:
695         case SNDRV_CTL_POWER_D3cold:
696                 if (widget->ignore_suspend)
697                         dev_dbg(widget->dapm->dev, "%s ignoring suspend\n",
698                                 widget->name);
699                 return widget->ignore_suspend;
700         default:
701                 return 1;
702         }
703 }
704
705 /*
706  * Recursively check for a completed path to an active or physically connected
707  * output widget. Returns number of complete paths.
708  */
709 static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
710 {
711         struct snd_soc_dapm_path *path;
712         int con = 0;
713
714         if (widget->outputs >= 0)
715                 return widget->outputs;
716
717         DAPM_UPDATE_STAT(widget, path_checks);
718
719         switch (widget->id) {
720         case snd_soc_dapm_supply:
721         case snd_soc_dapm_regulator_supply:
722                 return 0;
723         default:
724                 break;
725         }
726
727         switch (widget->id) {
728         case snd_soc_dapm_adc:
729         case snd_soc_dapm_aif_out:
730         case snd_soc_dapm_dai:
731                 if (widget->active) {
732                         widget->outputs = snd_soc_dapm_suspend_check(widget);
733                         return widget->outputs;
734                 }
735         default:
736                 break;
737         }
738
739         if (widget->connected) {
740                 /* connected pin ? */
741                 if (widget->id == snd_soc_dapm_output && !widget->ext) {
742                         widget->outputs = snd_soc_dapm_suspend_check(widget);
743                         return widget->outputs;
744                 }
745
746                 /* connected jack or spk ? */
747                 if (widget->id == snd_soc_dapm_hp ||
748                     widget->id == snd_soc_dapm_spk ||
749                     (widget->id == snd_soc_dapm_line &&
750                      !list_empty(&widget->sources))) {
751                         widget->outputs = snd_soc_dapm_suspend_check(widget);
752                         return widget->outputs;
753                 }
754         }
755
756         list_for_each_entry(path, &widget->sinks, list_source) {
757                 DAPM_UPDATE_STAT(widget, neighbour_checks);
758
759                 if (path->weak)
760                         continue;
761
762                 if (path->walked)
763                         continue;
764
765                 if (path->sink && path->connect) {
766                         path->walked = 1;
767                         con += is_connected_output_ep(path->sink);
768                 }
769         }
770
771         widget->outputs = con;
772
773         return con;
774 }
775
776 /*
777  * Recursively check for a completed path to an active or physically connected
778  * input widget. Returns number of complete paths.
779  */
780 static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
781 {
782         struct snd_soc_dapm_path *path;
783         int con = 0;
784
785         if (widget->inputs >= 0)
786                 return widget->inputs;
787
788         DAPM_UPDATE_STAT(widget, path_checks);
789
790         switch (widget->id) {
791         case snd_soc_dapm_supply:
792         case snd_soc_dapm_regulator_supply:
793                 return 0;
794         default:
795                 break;
796         }
797
798         /* active stream ? */
799         switch (widget->id) {
800         case snd_soc_dapm_dac:
801         case snd_soc_dapm_aif_in:
802         case snd_soc_dapm_dai:
803                 if (widget->active) {
804                         widget->inputs = snd_soc_dapm_suspend_check(widget);
805                         return widget->inputs;
806                 }
807         default:
808                 break;
809         }
810
811         if (widget->connected) {
812                 /* connected pin ? */
813                 if (widget->id == snd_soc_dapm_input && !widget->ext) {
814                         widget->inputs = snd_soc_dapm_suspend_check(widget);
815                         return widget->inputs;
816                 }
817
818                 /* connected VMID/Bias for lower pops */
819                 if (widget->id == snd_soc_dapm_vmid) {
820                         widget->inputs = snd_soc_dapm_suspend_check(widget);
821                         return widget->inputs;
822                 }
823
824                 /* connected jack ? */
825                 if (widget->id == snd_soc_dapm_mic ||
826                     (widget->id == snd_soc_dapm_line &&
827                      !list_empty(&widget->sinks))) {
828                         widget->inputs = snd_soc_dapm_suspend_check(widget);
829                         return widget->inputs;
830                 }
831
832                 /* signal generator */
833                 if (widget->id == snd_soc_dapm_siggen) {
834                         widget->inputs = snd_soc_dapm_suspend_check(widget);
835                         return widget->inputs;
836                 }
837         }
838
839         list_for_each_entry(path, &widget->sources, list_sink) {
840                 DAPM_UPDATE_STAT(widget, neighbour_checks);
841
842                 if (path->weak)
843                         continue;
844
845                 if (path->walked)
846                         continue;
847
848                 if (path->source && path->connect) {
849                         path->walked = 1;
850                         con += is_connected_input_ep(path->source);
851                 }
852         }
853
854         widget->inputs = con;
855
856         return con;
857 }
858
859 /*
860  * Handler for generic register modifier widget.
861  */
862 int dapm_reg_event(struct snd_soc_dapm_widget *w,
863                    struct snd_kcontrol *kcontrol, int event)
864 {
865         unsigned int val;
866
867         if (SND_SOC_DAPM_EVENT_ON(event))
868                 val = w->on_val;
869         else
870                 val = w->off_val;
871
872         soc_widget_update_bits_locked(w, -(w->reg + 1),
873                             w->mask << w->shift, val << w->shift);
874
875         return 0;
876 }
877 EXPORT_SYMBOL_GPL(dapm_reg_event);
878
879 /*
880  * Handler for regulator supply widget.
881  */
882 int dapm_regulator_event(struct snd_soc_dapm_widget *w,
883                    struct snd_kcontrol *kcontrol, int event)
884 {
885         if (SND_SOC_DAPM_EVENT_ON(event))
886                 return regulator_enable(w->regulator);
887         else
888                 return regulator_disable_deferred(w->regulator, w->shift);
889 }
890 EXPORT_SYMBOL_GPL(dapm_regulator_event);
891
892 static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
893 {
894         if (w->power_checked)
895                 return w->new_power;
896
897         if (w->force)
898                 w->new_power = 1;
899         else
900                 w->new_power = w->power_check(w);
901
902         w->power_checked = true;
903
904         return w->new_power;
905 }
906
907 /* Generic check to see if a widget should be powered.
908  */
909 static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
910 {
911         int in, out;
912
913         DAPM_UPDATE_STAT(w, power_checks);
914
915         in = is_connected_input_ep(w);
916         dapm_clear_walk(w->dapm);
917         out = is_connected_output_ep(w);
918         dapm_clear_walk(w->dapm);
919         return out != 0 && in != 0;
920 }
921
922 static int dapm_dai_check_power(struct snd_soc_dapm_widget *w)
923 {
924         DAPM_UPDATE_STAT(w, power_checks);
925
926         if (w->active)
927                 return w->active;
928
929         return dapm_generic_check_power(w);
930 }
931
932 /* Check to see if an ADC has power */
933 static int dapm_adc_check_power(struct snd_soc_dapm_widget *w)
934 {
935         int in;
936
937         DAPM_UPDATE_STAT(w, power_checks);
938
939         if (w->active) {
940                 in = is_connected_input_ep(w);
941                 dapm_clear_walk(w->dapm);
942                 return in != 0;
943         } else {
944                 return dapm_generic_check_power(w);
945         }
946 }
947
948 /* Check to see if a DAC has power */
949 static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
950 {
951         int out;
952
953         DAPM_UPDATE_STAT(w, power_checks);
954
955         if (w->active) {
956                 out = is_connected_output_ep(w);
957                 dapm_clear_walk(w->dapm);
958                 return out != 0;
959         } else {
960                 return dapm_generic_check_power(w);
961         }
962 }
963
964 /* Check to see if a power supply is needed */
965 static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
966 {
967         struct snd_soc_dapm_path *path;
968
969         DAPM_UPDATE_STAT(w, power_checks);
970
971         /* Check if one of our outputs is connected */
972         list_for_each_entry(path, &w->sinks, list_source) {
973                 DAPM_UPDATE_STAT(w, neighbour_checks);
974
975                 if (path->weak)
976                         continue;
977
978                 if (path->connected &&
979                     !path->connected(path->source, path->sink))
980                         continue;
981
982                 if (!path->sink)
983                         continue;
984
985                 if (dapm_widget_power_check(path->sink))
986                         return 1;
987         }
988
989         dapm_clear_walk(w->dapm);
990
991         return 0;
992 }
993
994 static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
995 {
996         return 1;
997 }
998
999 static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1000                             struct snd_soc_dapm_widget *b,
1001                             bool power_up)
1002 {
1003         int *sort;
1004
1005         if (power_up)
1006                 sort = dapm_up_seq;
1007         else
1008                 sort = dapm_down_seq;
1009
1010         if (sort[a->id] != sort[b->id])
1011                 return sort[a->id] - sort[b->id];
1012         if (a->subseq != b->subseq) {
1013                 if (power_up)
1014                         return a->subseq - b->subseq;
1015                 else
1016                         return b->subseq - a->subseq;
1017         }
1018         if (a->reg != b->reg)
1019                 return a->reg - b->reg;
1020         if (a->dapm != b->dapm)
1021                 return (unsigned long)a->dapm - (unsigned long)b->dapm;
1022
1023         return 0;
1024 }
1025
1026 /* Insert a widget in order into a DAPM power sequence. */
1027 static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1028                             struct list_head *list,
1029                             bool power_up)
1030 {
1031         struct snd_soc_dapm_widget *w;
1032
1033         list_for_each_entry(w, list, power_list)
1034                 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
1035                         list_add_tail(&new_widget->power_list, &w->power_list);
1036                         return;
1037                 }
1038
1039         list_add_tail(&new_widget->power_list, list);
1040 }
1041
1042 static void dapm_seq_check_event(struct snd_soc_dapm_context *dapm,
1043                                  struct snd_soc_dapm_widget *w, int event)
1044 {
1045         struct snd_soc_card *card = dapm->card;
1046         const char *ev_name;
1047         int power, ret;
1048
1049         switch (event) {
1050         case SND_SOC_DAPM_PRE_PMU:
1051                 ev_name = "PRE_PMU";
1052                 power = 1;
1053                 break;
1054         case SND_SOC_DAPM_POST_PMU:
1055                 ev_name = "POST_PMU";
1056                 power = 1;
1057                 break;
1058         case SND_SOC_DAPM_PRE_PMD:
1059                 ev_name = "PRE_PMD";
1060                 power = 0;
1061                 break;
1062         case SND_SOC_DAPM_POST_PMD:
1063                 ev_name = "POST_PMD";
1064                 power = 0;
1065                 break;
1066         default:
1067                 BUG();
1068                 return;
1069         }
1070
1071         if (w->power != power)
1072                 return;
1073
1074         if (w->event && (w->event_flags & event)) {
1075                 pop_dbg(dapm->dev, card->pop_time, "pop test : %s %s\n",
1076                         w->name, ev_name);
1077                 trace_snd_soc_dapm_widget_event_start(w, event);
1078                 ret = w->event(w, NULL, event);
1079                 trace_snd_soc_dapm_widget_event_done(w, event);
1080                 if (ret < 0)
1081                         pr_err("%s: %s event failed: %d\n",
1082                                ev_name, w->name, ret);
1083         }
1084 }
1085
1086 /* Apply the coalesced changes from a DAPM sequence */
1087 static void dapm_seq_run_coalesced(struct snd_soc_dapm_context *dapm,
1088                                    struct list_head *pending)
1089 {
1090         struct snd_soc_card *card = dapm->card;
1091         struct snd_soc_dapm_widget *w;
1092         int reg, power;
1093         unsigned int value = 0;
1094         unsigned int mask = 0;
1095         unsigned int cur_mask;
1096
1097         reg = list_first_entry(pending, struct snd_soc_dapm_widget,
1098                                power_list)->reg;
1099
1100         list_for_each_entry(w, pending, power_list) {
1101                 cur_mask = 1 << w->shift;
1102                 BUG_ON(reg != w->reg);
1103
1104                 if (w->invert)
1105                         power = !w->power;
1106                 else
1107                         power = w->power;
1108
1109                 mask |= cur_mask;
1110                 if (power)
1111                         value |= cur_mask;
1112
1113                 pop_dbg(dapm->dev, card->pop_time,
1114                         "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1115                         w->name, reg, value, mask);
1116
1117                 /* Check for events */
1118                 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMU);
1119                 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMD);
1120         }
1121
1122         if (reg >= 0) {
1123                 /* Any widget will do, they should all be updating the
1124                  * same register.
1125                  */
1126                 w = list_first_entry(pending, struct snd_soc_dapm_widget,
1127                                      power_list);
1128
1129                 pop_dbg(dapm->dev, card->pop_time,
1130                         "pop test : Applying 0x%x/0x%x to %x in %dms\n",
1131                         value, mask, reg, card->pop_time);
1132                 pop_wait(card->pop_time);
1133                 soc_widget_update_bits_locked(w, reg, mask, value);
1134         }
1135
1136         list_for_each_entry(w, pending, power_list) {
1137                 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMU);
1138                 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMD);
1139         }
1140 }
1141
1142 /* Apply a DAPM power sequence.
1143  *
1144  * We walk over a pre-sorted list of widgets to apply power to.  In
1145  * order to minimise the number of writes to the device required
1146  * multiple widgets will be updated in a single write where possible.
1147  * Currently anything that requires more than a single write is not
1148  * handled.
1149  */
1150 static void dapm_seq_run(struct snd_soc_dapm_context *dapm,
1151                          struct list_head *list, int event, bool power_up)
1152 {
1153         struct snd_soc_dapm_widget *w, *n;
1154         LIST_HEAD(pending);
1155         int cur_sort = -1;
1156         int cur_subseq = -1;
1157         int cur_reg = SND_SOC_NOPM;
1158         struct snd_soc_dapm_context *cur_dapm = NULL;
1159         int ret, i;
1160         int *sort;
1161
1162         if (power_up)
1163                 sort = dapm_up_seq;
1164         else
1165                 sort = dapm_down_seq;
1166
1167         list_for_each_entry_safe(w, n, list, power_list) {
1168                 ret = 0;
1169
1170                 /* Do we need to apply any queued changes? */
1171                 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
1172                     w->dapm != cur_dapm || w->subseq != cur_subseq) {
1173                         if (!list_empty(&pending))
1174                                 dapm_seq_run_coalesced(cur_dapm, &pending);
1175
1176                         if (cur_dapm && cur_dapm->seq_notifier) {
1177                                 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1178                                         if (sort[i] == cur_sort)
1179                                                 cur_dapm->seq_notifier(cur_dapm,
1180                                                                        i,
1181                                                                        cur_subseq);
1182                         }
1183
1184                         INIT_LIST_HEAD(&pending);
1185                         cur_sort = -1;
1186                         cur_subseq = INT_MIN;
1187                         cur_reg = SND_SOC_NOPM;
1188                         cur_dapm = NULL;
1189                 }
1190
1191                 switch (w->id) {
1192                 case snd_soc_dapm_pre:
1193                         if (!w->event)
1194                                 list_for_each_entry_safe_continue(w, n, list,
1195                                                                   power_list);
1196
1197                         if (event == SND_SOC_DAPM_STREAM_START)
1198                                 ret = w->event(w,
1199                                                NULL, SND_SOC_DAPM_PRE_PMU);
1200                         else if (event == SND_SOC_DAPM_STREAM_STOP)
1201                                 ret = w->event(w,
1202                                                NULL, SND_SOC_DAPM_PRE_PMD);
1203                         break;
1204
1205                 case snd_soc_dapm_post:
1206                         if (!w->event)
1207                                 list_for_each_entry_safe_continue(w, n, list,
1208                                                                   power_list);
1209
1210                         if (event == SND_SOC_DAPM_STREAM_START)
1211                                 ret = w->event(w,
1212                                                NULL, SND_SOC_DAPM_POST_PMU);
1213                         else if (event == SND_SOC_DAPM_STREAM_STOP)
1214                                 ret = w->event(w,
1215                                                NULL, SND_SOC_DAPM_POST_PMD);
1216                         break;
1217
1218                 default:
1219                         /* Queue it up for application */
1220                         cur_sort = sort[w->id];
1221                         cur_subseq = w->subseq;
1222                         cur_reg = w->reg;
1223                         cur_dapm = w->dapm;
1224                         list_move(&w->power_list, &pending);
1225                         break;
1226                 }
1227
1228                 if (ret < 0)
1229                         dev_err(w->dapm->dev,
1230                                 "Failed to apply widget power: %d\n", ret);
1231         }
1232
1233         if (!list_empty(&pending))
1234                 dapm_seq_run_coalesced(cur_dapm, &pending);
1235
1236         if (cur_dapm && cur_dapm->seq_notifier) {
1237                 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1238                         if (sort[i] == cur_sort)
1239                                 cur_dapm->seq_notifier(cur_dapm,
1240                                                        i, cur_subseq);
1241         }
1242 }
1243
1244 static void dapm_widget_update(struct snd_soc_dapm_context *dapm)
1245 {
1246         struct snd_soc_dapm_update *update = dapm->update;
1247         struct snd_soc_dapm_widget *w;
1248         int ret;
1249
1250         if (!update)
1251                 return;
1252
1253         w = update->widget;
1254
1255         if (w->event &&
1256             (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1257                 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1258                 if (ret != 0)
1259                         pr_err("%s DAPM pre-event failed: %d\n",
1260                                w->name, ret);
1261         }
1262
1263         ret = soc_widget_update_bits_locked(w, update->reg, update->mask,
1264                                   update->val);
1265         if (ret < 0)
1266                 pr_err("%s DAPM update failed: %d\n", w->name, ret);
1267
1268         if (w->event &&
1269             (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1270                 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1271                 if (ret != 0)
1272                         pr_err("%s DAPM post-event failed: %d\n",
1273                                w->name, ret);
1274         }
1275 }
1276
1277 /* Async callback run prior to DAPM sequences - brings to _PREPARE if
1278  * they're changing state.
1279  */
1280 static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1281 {
1282         struct snd_soc_dapm_context *d = data;
1283         int ret;
1284
1285         /* If we're off and we're not supposed to be go into STANDBY */
1286         if (d->bias_level == SND_SOC_BIAS_OFF &&
1287             d->target_bias_level != SND_SOC_BIAS_OFF) {
1288                 if (d->dev)
1289                         pm_runtime_get_sync(d->dev);
1290
1291                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1292                 if (ret != 0)
1293                         dev_err(d->dev,
1294                                 "Failed to turn on bias: %d\n", ret);
1295         }
1296
1297         /* Prepare for a STADDBY->ON or ON->STANDBY transition */
1298         if (d->bias_level != d->target_bias_level) {
1299                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1300                 if (ret != 0)
1301                         dev_err(d->dev,
1302                                 "Failed to prepare bias: %d\n", ret);
1303         }
1304 }
1305
1306 /* Async callback run prior to DAPM sequences - brings to their final
1307  * state.
1308  */
1309 static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1310 {
1311         struct snd_soc_dapm_context *d = data;
1312         int ret;
1313
1314         /* If we just powered the last thing off drop to standby bias */
1315         if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1316             (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1317              d->target_bias_level == SND_SOC_BIAS_OFF)) {
1318                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1319                 if (ret != 0)
1320                         dev_err(d->dev, "Failed to apply standby bias: %d\n",
1321                                 ret);
1322         }
1323
1324         /* If we're in standby and can support bias off then do that */
1325         if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1326             d->target_bias_level == SND_SOC_BIAS_OFF) {
1327                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1328                 if (ret != 0)
1329                         dev_err(d->dev, "Failed to turn off bias: %d\n", ret);
1330
1331                 if (d->dev)
1332                         pm_runtime_put(d->dev);
1333         }
1334
1335         /* If we just powered up then move to active bias */
1336         if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1337             d->target_bias_level == SND_SOC_BIAS_ON) {
1338                 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1339                 if (ret != 0)
1340                         dev_err(d->dev, "Failed to apply active bias: %d\n",
1341                                 ret);
1342         }
1343 }
1344
1345 static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1346                                        bool power, bool connect)
1347 {
1348         /* If a connection is being made or broken then that update
1349          * will have marked the peer dirty, otherwise the widgets are
1350          * not connected and this update has no impact. */
1351         if (!connect)
1352                 return;
1353
1354         /* If the peer is already in the state we're moving to then we
1355          * won't have an impact on it. */
1356         if (power != peer->power)
1357                 dapm_mark_dirty(peer, "peer state change");
1358 }
1359
1360 static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1361                                   struct list_head *up_list,
1362                                   struct list_head *down_list)
1363 {
1364         struct snd_soc_dapm_path *path;
1365
1366         if (w->power == power)
1367                 return;
1368
1369         trace_snd_soc_dapm_widget_power(w, power);
1370
1371         /* If we changed our power state perhaps our neigbours changed
1372          * also.
1373          */
1374         list_for_each_entry(path, &w->sources, list_sink) {
1375                 if (path->source) {
1376                         dapm_widget_set_peer_power(path->source, power,
1377                                                    path->connect);
1378                 }
1379         }
1380         switch (w->id) {
1381         case snd_soc_dapm_supply:
1382         case snd_soc_dapm_regulator_supply:
1383                 /* Supplies can't affect their outputs, only their inputs */
1384                 break;
1385         default:
1386                 list_for_each_entry(path, &w->sinks, list_source) {
1387                         if (path->sink) {
1388                                 dapm_widget_set_peer_power(path->sink, power,
1389                                                            path->connect);
1390                         }
1391                 }
1392                 break;
1393         }
1394
1395         if (power)
1396                 dapm_seq_insert(w, up_list, true);
1397         else
1398                 dapm_seq_insert(w, down_list, false);
1399
1400         w->power = power;
1401 }
1402
1403 static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1404                                   struct list_head *up_list,
1405                                   struct list_head *down_list)
1406 {
1407         int power;
1408
1409         switch (w->id) {
1410         case snd_soc_dapm_pre:
1411                 dapm_seq_insert(w, down_list, false);
1412                 break;
1413         case snd_soc_dapm_post:
1414                 dapm_seq_insert(w, up_list, true);
1415                 break;
1416
1417         default:
1418                 power = dapm_widget_power_check(w);
1419
1420                 dapm_widget_set_power(w, power, up_list, down_list);
1421                 break;
1422         }
1423 }
1424
1425 /*
1426  * Scan each dapm widget for complete audio path.
1427  * A complete path is a route that has valid endpoints i.e.:-
1428  *
1429  *  o DAC to output pin.
1430  *  o Input Pin to ADC.
1431  *  o Input pin to Output pin (bypass, sidetone)
1432  *  o DAC to ADC (loopback).
1433  */
1434 static int dapm_power_widgets(struct snd_soc_dapm_context *dapm, int event)
1435 {
1436         struct snd_soc_card *card = dapm->card;
1437         struct snd_soc_dapm_widget *w;
1438         struct snd_soc_dapm_context *d;
1439         LIST_HEAD(up_list);
1440         LIST_HEAD(down_list);
1441         LIST_HEAD(async_domain);
1442         enum snd_soc_bias_level bias;
1443
1444         trace_snd_soc_dapm_start(card);
1445
1446         list_for_each_entry(d, &card->dapm_list, list) {
1447                 if (d->idle_bias_off)
1448                         d->target_bias_level = SND_SOC_BIAS_OFF;
1449                 else
1450                         d->target_bias_level = SND_SOC_BIAS_STANDBY;
1451         }
1452
1453         dapm_reset(card);
1454
1455         /* Check which widgets we need to power and store them in
1456          * lists indicating if they should be powered up or down.  We
1457          * only check widgets that have been flagged as dirty but note
1458          * that new widgets may be added to the dirty list while we
1459          * iterate.
1460          */
1461         list_for_each_entry(w, &card->dapm_dirty, dirty) {
1462                 dapm_power_one_widget(w, &up_list, &down_list);
1463         }
1464
1465         list_for_each_entry(w, &card->widgets, list) {
1466                 list_del_init(&w->dirty);
1467
1468                 if (w->power) {
1469                         d = w->dapm;
1470
1471                         /* Supplies and micbiases only bring the
1472                          * context up to STANDBY as unless something
1473                          * else is active and passing audio they
1474                          * generally don't require full power.  Signal
1475                          * generators are virtual pins and have no
1476                          * power impact themselves.
1477                          */
1478                         switch (w->id) {
1479                         case snd_soc_dapm_siggen:
1480                                 break;
1481                         case snd_soc_dapm_supply:
1482                         case snd_soc_dapm_regulator_supply:
1483                         case snd_soc_dapm_micbias:
1484                                 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1485                                         d->target_bias_level = SND_SOC_BIAS_STANDBY;
1486                                 break;
1487                         default:
1488                                 d->target_bias_level = SND_SOC_BIAS_ON;
1489                                 break;
1490                         }
1491                 }
1492
1493         }
1494
1495         /* Force all contexts in the card to the same bias state if
1496          * they're not ground referenced.
1497          */
1498         bias = SND_SOC_BIAS_OFF;
1499         list_for_each_entry(d, &card->dapm_list, list)
1500                 if (d->target_bias_level > bias)
1501                         bias = d->target_bias_level;
1502         list_for_each_entry(d, &card->dapm_list, list)
1503                 if (!d->idle_bias_off)
1504                         d->target_bias_level = bias;
1505
1506         trace_snd_soc_dapm_walk_done(card);
1507
1508         /* Run all the bias changes in parallel */
1509         list_for_each_entry(d, &dapm->card->dapm_list, list)
1510                 async_schedule_domain(dapm_pre_sequence_async, d,
1511                                         &async_domain);
1512         async_synchronize_full_domain(&async_domain);
1513
1514         /* Power down widgets first; try to avoid amplifying pops. */
1515         dapm_seq_run(dapm, &down_list, event, false);
1516
1517         dapm_widget_update(dapm);
1518
1519         /* Now power up. */
1520         dapm_seq_run(dapm, &up_list, event, true);
1521
1522         /* Run all the bias changes in parallel */
1523         list_for_each_entry(d, &dapm->card->dapm_list, list)
1524                 async_schedule_domain(dapm_post_sequence_async, d,
1525                                         &async_domain);
1526         async_synchronize_full_domain(&async_domain);
1527
1528         /* do we need to notify any clients that DAPM event is complete */
1529         list_for_each_entry(d, &card->dapm_list, list) {
1530                 if (d->stream_event)
1531                         d->stream_event(d, event);
1532         }
1533
1534         pop_dbg(dapm->dev, card->pop_time,
1535                 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
1536         pop_wait(card->pop_time);
1537
1538         trace_snd_soc_dapm_done(card);
1539
1540         return 0;
1541 }
1542
1543 #ifdef CONFIG_DEBUG_FS
1544 static ssize_t dapm_widget_power_read_file(struct file *file,
1545                                            char __user *user_buf,
1546                                            size_t count, loff_t *ppos)
1547 {
1548         struct snd_soc_dapm_widget *w = file->private_data;
1549         char *buf;
1550         int in, out;
1551         ssize_t ret;
1552         struct snd_soc_dapm_path *p = NULL;
1553
1554         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1555         if (!buf)
1556                 return -ENOMEM;
1557
1558         in = is_connected_input_ep(w);
1559         dapm_clear_walk(w->dapm);
1560         out = is_connected_output_ep(w);
1561         dapm_clear_walk(w->dapm);
1562
1563         ret = snprintf(buf, PAGE_SIZE, "%s: %s%s  in %d out %d",
1564                        w->name, w->power ? "On" : "Off",
1565                        w->force ? " (forced)" : "", in, out);
1566
1567         if (w->reg >= 0)
1568                 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1569                                 " - R%d(0x%x) bit %d",
1570                                 w->reg, w->reg, w->shift);
1571
1572         ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1573
1574         if (w->sname)
1575                 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1576                                 w->sname,
1577                                 w->active ? "active" : "inactive");
1578
1579         list_for_each_entry(p, &w->sources, list_sink) {
1580                 if (p->connected && !p->connected(w, p->sink))
1581                         continue;
1582
1583                 if (p->connect)
1584                         ret += snprintf(buf + ret, PAGE_SIZE - ret,
1585                                         " in  \"%s\" \"%s\"\n",
1586                                         p->name ? p->name : "static",
1587                                         p->source->name);
1588         }
1589         list_for_each_entry(p, &w->sinks, list_source) {
1590                 if (p->connected && !p->connected(w, p->sink))
1591                         continue;
1592
1593                 if (p->connect)
1594                         ret += snprintf(buf + ret, PAGE_SIZE - ret,
1595                                         " out \"%s\" \"%s\"\n",
1596                                         p->name ? p->name : "static",
1597                                         p->sink->name);
1598         }
1599
1600         ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1601
1602         kfree(buf);
1603         return ret;
1604 }
1605
1606 static const struct file_operations dapm_widget_power_fops = {
1607         .open = simple_open,
1608         .read = dapm_widget_power_read_file,
1609         .llseek = default_llseek,
1610 };
1611
1612 static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1613                                    size_t count, loff_t *ppos)
1614 {
1615         struct snd_soc_dapm_context *dapm = file->private_data;
1616         char *level;
1617
1618         switch (dapm->bias_level) {
1619         case SND_SOC_BIAS_ON:
1620                 level = "On\n";
1621                 break;
1622         case SND_SOC_BIAS_PREPARE:
1623                 level = "Prepare\n";
1624                 break;
1625         case SND_SOC_BIAS_STANDBY:
1626                 level = "Standby\n";
1627                 break;
1628         case SND_SOC_BIAS_OFF:
1629                 level = "Off\n";
1630                 break;
1631         default:
1632                 BUG();
1633                 level = "Unknown\n";
1634                 break;
1635         }
1636
1637         return simple_read_from_buffer(user_buf, count, ppos, level,
1638                                        strlen(level));
1639 }
1640
1641 static const struct file_operations dapm_bias_fops = {
1642         .open = simple_open,
1643         .read = dapm_bias_read_file,
1644         .llseek = default_llseek,
1645 };
1646
1647 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1648         struct dentry *parent)
1649 {
1650         struct dentry *d;
1651
1652         dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
1653
1654         if (!dapm->debugfs_dapm) {
1655                 dev_warn(dapm->dev,
1656                        "Failed to create DAPM debugfs directory\n");
1657                 return;
1658         }
1659
1660         d = debugfs_create_file("bias_level", 0444,
1661                                 dapm->debugfs_dapm, dapm,
1662                                 &dapm_bias_fops);
1663         if (!d)
1664                 dev_warn(dapm->dev,
1665                          "ASoC: Failed to create bias level debugfs file\n");
1666 }
1667
1668 static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1669 {
1670         struct snd_soc_dapm_context *dapm = w->dapm;
1671         struct dentry *d;
1672
1673         if (!dapm->debugfs_dapm || !w->name)
1674                 return;
1675
1676         d = debugfs_create_file(w->name, 0444,
1677                                 dapm->debugfs_dapm, w,
1678                                 &dapm_widget_power_fops);
1679         if (!d)
1680                 dev_warn(w->dapm->dev,
1681                         "ASoC: Failed to create %s debugfs file\n",
1682                         w->name);
1683 }
1684
1685 static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1686 {
1687         debugfs_remove_recursive(dapm->debugfs_dapm);
1688 }
1689
1690 #else
1691 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1692         struct dentry *parent)
1693 {
1694 }
1695
1696 static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1697 {
1698 }
1699
1700 static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1701 {
1702 }
1703
1704 #endif
1705
1706 /* test and update the power status of a mux widget */
1707 static int soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
1708                                  struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
1709 {
1710         struct snd_soc_dapm_path *path;
1711         int found = 0;
1712
1713         if (widget->id != snd_soc_dapm_mux &&
1714             widget->id != snd_soc_dapm_virt_mux &&
1715             widget->id != snd_soc_dapm_value_mux)
1716                 return -ENODEV;
1717
1718         /* find dapm widget path assoc with kcontrol */
1719         list_for_each_entry(path, &widget->dapm->card->paths, list) {
1720                 if (path->kcontrol != kcontrol)
1721                         continue;
1722
1723                 if (!path->name || !e->texts[mux])
1724                         continue;
1725
1726                 found = 1;
1727                 /* we now need to match the string in the enum to the path */
1728                 if (!(strcmp(path->name, e->texts[mux]))) {
1729                         path->connect = 1; /* new connection */
1730                         dapm_mark_dirty(path->source, "mux connection");
1731                 } else {
1732                         if (path->connect)
1733                                 dapm_mark_dirty(path->source,
1734                                                 "mux disconnection");
1735                         path->connect = 0; /* old connection must be powered down */
1736                 }
1737         }
1738
1739         if (found) {
1740                 dapm_mark_dirty(widget, "mux change");
1741                 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
1742         }
1743
1744         return 0;
1745 }
1746
1747 int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
1748                 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
1749 {
1750         struct snd_soc_card *card = widget->dapm->card;
1751         int ret;
1752
1753         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
1754         ret = soc_dapm_mux_update_power(widget, kcontrol, mux, e);
1755         mutex_unlock(&card->dapm_mutex);
1756         return ret;
1757 }
1758 EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
1759
1760 /* test and update the power status of a mixer or switch widget */
1761 static int soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
1762                                    struct snd_kcontrol *kcontrol, int connect)
1763 {
1764         struct snd_soc_dapm_path *path;
1765         int found = 0;
1766
1767         if (widget->id != snd_soc_dapm_mixer &&
1768             widget->id != snd_soc_dapm_mixer_named_ctl &&
1769             widget->id != snd_soc_dapm_switch)
1770                 return -ENODEV;
1771
1772         /* find dapm widget path assoc with kcontrol */
1773         list_for_each_entry(path, &widget->dapm->card->paths, list) {
1774                 if (path->kcontrol != kcontrol)
1775                         continue;
1776
1777                 /* found, now check type */
1778                 found = 1;
1779                 path->connect = connect;
1780                 dapm_mark_dirty(path->source, "mixer connection");
1781         }
1782
1783         if (found) {
1784                 dapm_mark_dirty(widget, "mixer update");
1785                 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
1786         }
1787
1788         return 0;
1789 }
1790
1791 int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
1792                                 struct snd_kcontrol *kcontrol, int connect)
1793 {
1794         struct snd_soc_card *card = widget->dapm->card;
1795         int ret;
1796
1797         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
1798         ret = soc_dapm_mixer_update_power(widget, kcontrol, connect);
1799         mutex_unlock(&card->dapm_mutex);
1800         return ret;
1801 }
1802 EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
1803
1804 /* show dapm widget status in sys fs */
1805 static ssize_t dapm_widget_show(struct device *dev,
1806         struct device_attribute *attr, char *buf)
1807 {
1808         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
1809         struct snd_soc_codec *codec =rtd->codec;
1810         struct snd_soc_dapm_widget *w;
1811         int count = 0;
1812         char *state = "not set";
1813
1814         list_for_each_entry(w, &codec->card->widgets, list) {
1815                 if (w->dapm != &codec->dapm)
1816                         continue;
1817
1818                 /* only display widgets that burnm power */
1819                 switch (w->id) {
1820                 case snd_soc_dapm_hp:
1821                 case snd_soc_dapm_mic:
1822                 case snd_soc_dapm_spk:
1823                 case snd_soc_dapm_line:
1824                 case snd_soc_dapm_micbias:
1825                 case snd_soc_dapm_dac:
1826                 case snd_soc_dapm_adc:
1827                 case snd_soc_dapm_pga:
1828                 case snd_soc_dapm_out_drv:
1829                 case snd_soc_dapm_mixer:
1830                 case snd_soc_dapm_mixer_named_ctl:
1831                 case snd_soc_dapm_supply:
1832                 case snd_soc_dapm_regulator_supply:
1833                         if (w->name)
1834                                 count += sprintf(buf + count, "%s: %s\n",
1835                                         w->name, w->power ? "On":"Off");
1836                 break;
1837                 default:
1838                 break;
1839                 }
1840         }
1841
1842         switch (codec->dapm.bias_level) {
1843         case SND_SOC_BIAS_ON:
1844                 state = "On";
1845                 break;
1846         case SND_SOC_BIAS_PREPARE:
1847                 state = "Prepare";
1848                 break;
1849         case SND_SOC_BIAS_STANDBY:
1850                 state = "Standby";
1851                 break;
1852         case SND_SOC_BIAS_OFF:
1853                 state = "Off";
1854                 break;
1855         }
1856         count += sprintf(buf + count, "PM State: %s\n", state);
1857
1858         return count;
1859 }
1860
1861 static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
1862
1863 int snd_soc_dapm_sys_add(struct device *dev)
1864 {
1865         return device_create_file(dev, &dev_attr_dapm_widget);
1866 }
1867
1868 static void snd_soc_dapm_sys_remove(struct device *dev)
1869 {
1870         device_remove_file(dev, &dev_attr_dapm_widget);
1871 }
1872
1873 /* free all dapm widgets and resources */
1874 static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
1875 {
1876         struct snd_soc_dapm_widget *w, *next_w;
1877         struct snd_soc_dapm_path *p, *next_p;
1878
1879         list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
1880                 if (w->dapm != dapm)
1881                         continue;
1882                 list_del(&w->list);
1883                 /*
1884                  * remove source and sink paths associated to this widget.
1885                  * While removing the path, remove reference to it from both
1886                  * source and sink widgets so that path is removed only once.
1887                  */
1888                 list_for_each_entry_safe(p, next_p, &w->sources, list_sink) {
1889                         list_del(&p->list_sink);
1890                         list_del(&p->list_source);
1891                         list_del(&p->list);
1892                         kfree(p->long_name);
1893                         kfree(p);
1894                 }
1895                 list_for_each_entry_safe(p, next_p, &w->sinks, list_source) {
1896                         list_del(&p->list_sink);
1897                         list_del(&p->list_source);
1898                         list_del(&p->list);
1899                         kfree(p->long_name);
1900                         kfree(p);
1901                 }
1902                 kfree(w->kcontrols);
1903                 kfree(w->name);
1904                 kfree(w);
1905         }
1906 }
1907
1908 static struct snd_soc_dapm_widget *dapm_find_widget(
1909                         struct snd_soc_dapm_context *dapm, const char *pin,
1910                         bool search_other_contexts)
1911 {
1912         struct snd_soc_dapm_widget *w;
1913         struct snd_soc_dapm_widget *fallback = NULL;
1914
1915         list_for_each_entry(w, &dapm->card->widgets, list) {
1916                 if (!strcmp(w->name, pin)) {
1917                         if (w->dapm == dapm)
1918                                 return w;
1919                         else
1920                                 fallback = w;
1921                 }
1922         }
1923
1924         if (search_other_contexts)
1925                 return fallback;
1926
1927         return NULL;
1928 }
1929
1930 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
1931                                 const char *pin, int status)
1932 {
1933         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
1934
1935         if (!w) {
1936                 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
1937                 return -EINVAL;
1938         }
1939
1940         if (w->connected != status)
1941                 dapm_mark_dirty(w, "pin configuration");
1942
1943         w->connected = status;
1944         if (status == 0)
1945                 w->force = 0;
1946
1947         return 0;
1948 }
1949
1950 /**
1951  * snd_soc_dapm_sync - scan and power dapm paths
1952  * @dapm: DAPM context
1953  *
1954  * Walks all dapm audio paths and powers widgets according to their
1955  * stream or path usage.
1956  *
1957  * Returns 0 for success.
1958  */
1959 int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
1960 {
1961         int ret;
1962
1963         /*
1964          * Suppress early reports (eg, jacks syncing their state) to avoid
1965          * silly DAPM runs during card startup.
1966          */
1967         if (!dapm->card || !dapm->card->instantiated)
1968                 return 0;
1969
1970         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
1971         ret = dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
1972         mutex_unlock(&dapm->card->dapm_mutex);
1973         return ret;
1974 }
1975 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
1976
1977 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
1978                                   const struct snd_soc_dapm_route *route)
1979 {
1980         struct snd_soc_dapm_path *path;
1981         struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
1982         struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
1983         const char *sink;
1984         const char *control = route->control;
1985         const char *source;
1986         char prefixed_sink[80];
1987         char prefixed_source[80];
1988         int ret = 0;
1989
1990         if (dapm->codec && dapm->codec->name_prefix) {
1991                 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
1992                          dapm->codec->name_prefix, route->sink);
1993                 sink = prefixed_sink;
1994                 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
1995                          dapm->codec->name_prefix, route->source);
1996                 source = prefixed_source;
1997         } else {
1998                 sink = route->sink;
1999                 source = route->source;
2000         }
2001
2002         /*
2003          * find src and dest widgets over all widgets but favor a widget from
2004          * current DAPM context
2005          */
2006         list_for_each_entry(w, &dapm->card->widgets, list) {
2007                 if (!wsink && !(strcmp(w->name, sink))) {
2008                         wtsink = w;
2009                         if (w->dapm == dapm)
2010                                 wsink = w;
2011                         continue;
2012                 }
2013                 if (!wsource && !(strcmp(w->name, source))) {
2014                         wtsource = w;
2015                         if (w->dapm == dapm)
2016                                 wsource = w;
2017                 }
2018         }
2019         /* use widget from another DAPM context if not found from this */
2020         if (!wsink)
2021                 wsink = wtsink;
2022         if (!wsource)
2023                 wsource = wtsource;
2024
2025         if (wsource == NULL || wsink == NULL)
2026                 return -ENODEV;
2027
2028         path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2029         if (!path)
2030                 return -ENOMEM;
2031
2032         path->source = wsource;
2033         path->sink = wsink;
2034         path->connected = route->connected;
2035         INIT_LIST_HEAD(&path->list);
2036         INIT_LIST_HEAD(&path->list_source);
2037         INIT_LIST_HEAD(&path->list_sink);
2038
2039         /* check for external widgets */
2040         if (wsink->id == snd_soc_dapm_input) {
2041                 if (wsource->id == snd_soc_dapm_micbias ||
2042                         wsource->id == snd_soc_dapm_mic ||
2043                         wsource->id == snd_soc_dapm_line ||
2044                         wsource->id == snd_soc_dapm_output)
2045                         wsink->ext = 1;
2046         }
2047         if (wsource->id == snd_soc_dapm_output) {
2048                 if (wsink->id == snd_soc_dapm_spk ||
2049                         wsink->id == snd_soc_dapm_hp ||
2050                         wsink->id == snd_soc_dapm_line ||
2051                         wsink->id == snd_soc_dapm_input)
2052                         wsource->ext = 1;
2053         }
2054
2055         /* connect static paths */
2056         if (control == NULL) {
2057                 list_add(&path->list, &dapm->card->paths);
2058                 list_add(&path->list_sink, &wsink->sources);
2059                 list_add(&path->list_source, &wsource->sinks);
2060                 path->connect = 1;
2061                 return 0;
2062         }
2063
2064         /* connect dynamic paths */
2065         switch (wsink->id) {
2066         case snd_soc_dapm_adc:
2067         case snd_soc_dapm_dac:
2068         case snd_soc_dapm_pga:
2069         case snd_soc_dapm_out_drv:
2070         case snd_soc_dapm_input:
2071         case snd_soc_dapm_output:
2072         case snd_soc_dapm_siggen:
2073         case snd_soc_dapm_micbias:
2074         case snd_soc_dapm_vmid:
2075         case snd_soc_dapm_pre:
2076         case snd_soc_dapm_post:
2077         case snd_soc_dapm_supply:
2078         case snd_soc_dapm_regulator_supply:
2079         case snd_soc_dapm_aif_in:
2080         case snd_soc_dapm_aif_out:
2081         case snd_soc_dapm_dai:
2082                 list_add(&path->list, &dapm->card->paths);
2083                 list_add(&path->list_sink, &wsink->sources);
2084                 list_add(&path->list_source, &wsource->sinks);
2085                 path->connect = 1;
2086                 return 0;
2087         case snd_soc_dapm_mux:
2088         case snd_soc_dapm_virt_mux:
2089         case snd_soc_dapm_value_mux:
2090                 ret = dapm_connect_mux(dapm, wsource, wsink, path, control,
2091                         &wsink->kcontrol_news[0]);
2092                 if (ret != 0)
2093                         goto err;
2094                 break;
2095         case snd_soc_dapm_switch:
2096         case snd_soc_dapm_mixer:
2097         case snd_soc_dapm_mixer_named_ctl:
2098                 ret = dapm_connect_mixer(dapm, wsource, wsink, path, control);
2099                 if (ret != 0)
2100                         goto err;
2101                 break;
2102         case snd_soc_dapm_hp:
2103         case snd_soc_dapm_mic:
2104         case snd_soc_dapm_line:
2105         case snd_soc_dapm_spk:
2106                 list_add(&path->list, &dapm->card->paths);
2107                 list_add(&path->list_sink, &wsink->sources);
2108                 list_add(&path->list_source, &wsource->sinks);
2109                 path->connect = 0;
2110                 return 0;
2111         }
2112         return 0;
2113
2114 err:
2115         dev_warn(dapm->dev, "asoc: no dapm match for %s --> %s --> %s\n",
2116                  source, control, sink);
2117         kfree(path);
2118         return ret;
2119 }
2120
2121 /**
2122  * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2123  * @dapm: DAPM context
2124  * @route: audio routes
2125  * @num: number of routes
2126  *
2127  * Connects 2 dapm widgets together via a named audio path. The sink is
2128  * the widget receiving the audio signal, whilst the source is the sender
2129  * of the audio signal.
2130  *
2131  * Returns 0 for success else error. On error all resources can be freed
2132  * with a call to snd_soc_card_free().
2133  */
2134 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
2135                             const struct snd_soc_dapm_route *route, int num)
2136 {
2137         int i, ret = 0;
2138
2139         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2140         for (i = 0; i < num; i++) {
2141                 ret = snd_soc_dapm_add_route(dapm, route);
2142                 if (ret < 0) {
2143                         dev_err(dapm->dev, "Failed to add route %s->%s\n",
2144                                 route->source, route->sink);
2145                         break;
2146                 }
2147                 route++;
2148         }
2149         mutex_unlock(&dapm->card->dapm_mutex);
2150
2151         return ret;
2152 }
2153 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2154
2155 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2156                                    const struct snd_soc_dapm_route *route)
2157 {
2158         struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2159                                                               route->source,
2160                                                               true);
2161         struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2162                                                             route->sink,
2163                                                             true);
2164         struct snd_soc_dapm_path *path;
2165         int count = 0;
2166
2167         if (!source) {
2168                 dev_err(dapm->dev, "Unable to find source %s for weak route\n",
2169                         route->source);
2170                 return -ENODEV;
2171         }
2172
2173         if (!sink) {
2174                 dev_err(dapm->dev, "Unable to find sink %s for weak route\n",
2175                         route->sink);
2176                 return -ENODEV;
2177         }
2178
2179         if (route->control || route->connected)
2180                 dev_warn(dapm->dev, "Ignoring control for weak route %s->%s\n",
2181                          route->source, route->sink);
2182
2183         list_for_each_entry(path, &source->sinks, list_source) {
2184                 if (path->sink == sink) {
2185                         path->weak = 1;
2186                         count++;
2187                 }
2188         }
2189
2190         if (count == 0)
2191                 dev_err(dapm->dev, "No path found for weak route %s->%s\n",
2192                         route->source, route->sink);
2193         if (count > 1)
2194                 dev_warn(dapm->dev, "%d paths found for weak route %s->%s\n",
2195                          count, route->source, route->sink);
2196
2197         return 0;
2198 }
2199
2200 /**
2201  * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2202  * @dapm: DAPM context
2203  * @route: audio routes
2204  * @num: number of routes
2205  *
2206  * Mark existing routes matching those specified in the passed array
2207  * as being weak, meaning that they are ignored for the purpose of
2208  * power decisions.  The main intended use case is for sidetone paths
2209  * which couple audio between other independent paths if they are both
2210  * active in order to make the combination work better at the user
2211  * level but which aren't intended to be "used".
2212  *
2213  * Note that CODEC drivers should not use this as sidetone type paths
2214  * can frequently also be used as bypass paths.
2215  */
2216 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2217                              const struct snd_soc_dapm_route *route, int num)
2218 {
2219         int i, err;
2220         int ret = 0;
2221
2222         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2223         for (i = 0; i < num; i++) {
2224                 err = snd_soc_dapm_weak_route(dapm, route);
2225                 if (err)
2226                         ret = err;
2227                 route++;
2228         }
2229         mutex_unlock(&dapm->card->dapm_mutex);
2230
2231         return ret;
2232 }
2233 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2234
2235 /**
2236  * snd_soc_dapm_new_widgets - add new dapm widgets
2237  * @dapm: DAPM context
2238  *
2239  * Checks the codec for any new dapm widgets and creates them if found.
2240  *
2241  * Returns 0 for success.
2242  */
2243 int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm)
2244 {
2245         struct snd_soc_dapm_widget *w;
2246         unsigned int val;
2247
2248         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2249
2250         list_for_each_entry(w, &dapm->card->widgets, list)
2251         {
2252                 if (w->new)
2253                         continue;
2254
2255                 if (w->num_kcontrols) {
2256                         w->kcontrols = kzalloc(w->num_kcontrols *
2257                                                 sizeof(struct snd_kcontrol *),
2258                                                 GFP_KERNEL);
2259                         if (!w->kcontrols) {
2260                                 mutex_unlock(&dapm->card->dapm_mutex);
2261                                 return -ENOMEM;
2262                         }
2263                 }
2264
2265                 switch(w->id) {
2266                 case snd_soc_dapm_switch:
2267                 case snd_soc_dapm_mixer:
2268                 case snd_soc_dapm_mixer_named_ctl:
2269                         dapm_new_mixer(w);
2270                         break;
2271                 case snd_soc_dapm_mux:
2272                 case snd_soc_dapm_virt_mux:
2273                 case snd_soc_dapm_value_mux:
2274                         dapm_new_mux(w);
2275                         break;
2276                 case snd_soc_dapm_pga:
2277                 case snd_soc_dapm_out_drv:
2278                         dapm_new_pga(w);
2279                         break;
2280                 default:
2281                         break;
2282                 }
2283
2284                 /* Read the initial power state from the device */
2285                 if (w->reg >= 0) {
2286                         val = soc_widget_read(w, w->reg);
2287                         val &= 1 << w->shift;
2288                         if (w->invert)
2289                                 val = !val;
2290
2291                         if (val)
2292                                 w->power = 1;
2293                 }
2294
2295                 w->new = 1;
2296
2297                 dapm_mark_dirty(w, "new widget");
2298                 dapm_debugfs_add_widget(w);
2299         }
2300
2301         dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
2302         mutex_unlock(&dapm->card->dapm_mutex);
2303         return 0;
2304 }
2305 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2306
2307 /**
2308  * snd_soc_dapm_get_volsw - dapm mixer get callback
2309  * @kcontrol: mixer control
2310  * @ucontrol: control element information
2311  *
2312  * Callback to get the value of a dapm mixer control.
2313  *
2314  * Returns 0 for success.
2315  */
2316 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2317         struct snd_ctl_elem_value *ucontrol)
2318 {
2319         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2320         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2321         struct soc_mixer_control *mc =
2322                 (struct soc_mixer_control *)kcontrol->private_value;
2323         unsigned int reg = mc->reg;
2324         unsigned int shift = mc->shift;
2325         unsigned int rshift = mc->rshift;
2326         int max = mc->max;
2327         unsigned int invert = mc->invert;
2328         unsigned int mask = (1 << fls(max)) - 1;
2329
2330         ucontrol->value.integer.value[0] =
2331                 (snd_soc_read(widget->codec, reg) >> shift) & mask;
2332         if (shift != rshift)
2333                 ucontrol->value.integer.value[1] =
2334                         (snd_soc_read(widget->codec, reg) >> rshift) & mask;
2335         if (invert) {
2336                 ucontrol->value.integer.value[0] =
2337                         max - ucontrol->value.integer.value[0];
2338                 if (shift != rshift)
2339                         ucontrol->value.integer.value[1] =
2340                                 max - ucontrol->value.integer.value[1];
2341         }
2342
2343         return 0;
2344 }
2345 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
2346
2347 /**
2348  * snd_soc_dapm_put_volsw - dapm mixer set callback
2349  * @kcontrol: mixer control
2350  * @ucontrol: control element information
2351  *
2352  * Callback to set the value of a dapm mixer control.
2353  *
2354  * Returns 0 for success.
2355  */
2356 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
2357         struct snd_ctl_elem_value *ucontrol)
2358 {
2359         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2360         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2361         struct snd_soc_codec *codec = widget->codec;
2362         struct snd_soc_card *card = codec->card;
2363         struct soc_mixer_control *mc =
2364                 (struct soc_mixer_control *)kcontrol->private_value;
2365         unsigned int reg = mc->reg;
2366         unsigned int shift = mc->shift;
2367         int max = mc->max;
2368         unsigned int mask = (1 << fls(max)) - 1;
2369         unsigned int invert = mc->invert;
2370         unsigned int val;
2371         int connect, change;
2372         struct snd_soc_dapm_update update;
2373         int wi;
2374
2375         val = (ucontrol->value.integer.value[0] & mask);
2376
2377         if (invert)
2378                 val = max - val;
2379         mask = mask << shift;
2380         val = val << shift;
2381
2382         if (val)
2383                 /* new connection */
2384                 connect = invert ? 0 : 1;
2385         else
2386                 /* old connection must be powered down */
2387                 connect = invert ? 1 : 0;
2388
2389         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2390
2391         change = snd_soc_test_bits(widget->codec, reg, mask, val);
2392         if (change) {
2393                 for (wi = 0; wi < wlist->num_widgets; wi++) {
2394                         widget = wlist->widgets[wi];
2395
2396                         widget->value = val;
2397
2398                         update.kcontrol = kcontrol;
2399                         update.widget = widget;
2400                         update.reg = reg;
2401                         update.mask = mask;
2402                         update.val = val;
2403                         widget->dapm->update = &update;
2404
2405                         soc_dapm_mixer_update_power(widget, kcontrol, connect);
2406
2407                         widget->dapm->update = NULL;
2408                 }
2409         }
2410
2411         mutex_unlock(&card->dapm_mutex);
2412         return 0;
2413 }
2414 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
2415
2416 /**
2417  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
2418  * @kcontrol: mixer control
2419  * @ucontrol: control element information
2420  *
2421  * Callback to get the value of a dapm enumerated double mixer control.
2422  *
2423  * Returns 0 for success.
2424  */
2425 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
2426         struct snd_ctl_elem_value *ucontrol)
2427 {
2428         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2429         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2430         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2431         unsigned int val, bitmask;
2432
2433         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
2434                 ;
2435         val = snd_soc_read(widget->codec, e->reg);
2436         ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
2437         if (e->shift_l != e->shift_r)
2438                 ucontrol->value.enumerated.item[1] =
2439                         (val >> e->shift_r) & (bitmask - 1);
2440
2441         return 0;
2442 }
2443 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
2444
2445 /**
2446  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
2447  * @kcontrol: mixer control
2448  * @ucontrol: control element information
2449  *
2450  * Callback to set the value of a dapm enumerated double mixer control.
2451  *
2452  * Returns 0 for success.
2453  */
2454 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
2455         struct snd_ctl_elem_value *ucontrol)
2456 {
2457         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2458         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2459         struct snd_soc_codec *codec = widget->codec;
2460         struct snd_soc_card *card = codec->card;
2461         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2462         unsigned int val, mux, change;
2463         unsigned int mask, bitmask;
2464         struct snd_soc_dapm_update update;
2465         int wi;
2466
2467         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
2468                 ;
2469         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2470                 return -EINVAL;
2471         mux = ucontrol->value.enumerated.item[0];
2472         val = mux << e->shift_l;
2473         mask = (bitmask - 1) << e->shift_l;
2474         if (e->shift_l != e->shift_r) {
2475                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2476                         return -EINVAL;
2477                 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2478                 mask |= (bitmask - 1) << e->shift_r;
2479         }
2480
2481         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2482
2483         change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
2484         if (change) {
2485                 for (wi = 0; wi < wlist->num_widgets; wi++) {
2486                         widget = wlist->widgets[wi];
2487
2488                         widget->value = val;
2489
2490                         update.kcontrol = kcontrol;
2491                         update.widget = widget;
2492                         update.reg = e->reg;
2493                         update.mask = mask;
2494                         update.val = val;
2495                         widget->dapm->update = &update;
2496
2497                         soc_dapm_mux_update_power(widget, kcontrol, mux, e);
2498
2499                         widget->dapm->update = NULL;
2500                 }
2501         }
2502
2503         mutex_unlock(&card->dapm_mutex);
2504         return change;
2505 }
2506 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
2507
2508 /**
2509  * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
2510  * @kcontrol: mixer control
2511  * @ucontrol: control element information
2512  *
2513  * Returns 0 for success.
2514  */
2515 int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol,
2516                                struct snd_ctl_elem_value *ucontrol)
2517 {
2518         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2519         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2520
2521         ucontrol->value.enumerated.item[0] = widget->value;
2522
2523         return 0;
2524 }
2525 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt);
2526
2527 /**
2528  * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
2529  * @kcontrol: mixer control
2530  * @ucontrol: control element information
2531  *
2532  * Returns 0 for success.
2533  */
2534 int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
2535                                struct snd_ctl_elem_value *ucontrol)
2536 {
2537         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2538         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2539         struct snd_soc_codec *codec = widget->codec;
2540         struct snd_soc_card *card = codec->card;
2541         struct soc_enum *e =
2542                 (struct soc_enum *)kcontrol->private_value;
2543         int change;
2544         int ret = 0;
2545         int wi;
2546
2547         if (ucontrol->value.enumerated.item[0] >= e->max)
2548                 return -EINVAL;
2549
2550         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2551
2552         change = widget->value != ucontrol->value.enumerated.item[0];
2553         if (change) {
2554                 for (wi = 0; wi < wlist->num_widgets; wi++) {
2555                         widget = wlist->widgets[wi];
2556
2557                         widget->value = ucontrol->value.enumerated.item[0];
2558
2559                         soc_dapm_mux_update_power(widget, kcontrol, widget->value, e);
2560                 }
2561         }
2562
2563         mutex_unlock(&card->dapm_mutex);
2564         return ret;
2565 }
2566 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt);
2567
2568 /**
2569  * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
2570  *                                      callback
2571  * @kcontrol: mixer control
2572  * @ucontrol: control element information
2573  *
2574  * Callback to get the value of a dapm semi enumerated double mixer control.
2575  *
2576  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2577  * used for handling bitfield coded enumeration for example.
2578  *
2579  * Returns 0 for success.
2580  */
2581 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
2582         struct snd_ctl_elem_value *ucontrol)
2583 {
2584         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2585         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2586         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2587         unsigned int reg_val, val, mux;
2588
2589         reg_val = snd_soc_read(widget->codec, e->reg);
2590         val = (reg_val >> e->shift_l) & e->mask;
2591         for (mux = 0; mux < e->max; mux++) {
2592                 if (val == e->values[mux])
2593                         break;
2594         }
2595         ucontrol->value.enumerated.item[0] = mux;
2596         if (e->shift_l != e->shift_r) {
2597                 val = (reg_val >> e->shift_r) & e->mask;
2598                 for (mux = 0; mux < e->max; mux++) {
2599                         if (val == e->values[mux])
2600                                 break;
2601                 }
2602                 ucontrol->value.enumerated.item[1] = mux;
2603         }
2604
2605         return 0;
2606 }
2607 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
2608
2609 /**
2610  * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
2611  *                                      callback
2612  * @kcontrol: mixer control
2613  * @ucontrol: control element information
2614  *
2615  * Callback to set the value of a dapm semi enumerated double mixer control.
2616  *
2617  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2618  * used for handling bitfield coded enumeration for example.
2619  *
2620  * Returns 0 for success.
2621  */
2622 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
2623         struct snd_ctl_elem_value *ucontrol)
2624 {
2625         struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2626         struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2627         struct snd_soc_codec *codec = widget->codec;
2628         struct snd_soc_card *card = codec->card;
2629         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2630         unsigned int val, mux, change;
2631         unsigned int mask;
2632         struct snd_soc_dapm_update update;
2633         int wi;
2634
2635         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2636                 return -EINVAL;
2637         mux = ucontrol->value.enumerated.item[0];
2638         val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2639         mask = e->mask << e->shift_l;
2640         if (e->shift_l != e->shift_r) {
2641                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2642                         return -EINVAL;
2643                 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2644                 mask |= e->mask << e->shift_r;
2645         }
2646
2647         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2648
2649         change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
2650         if (change) {
2651                 for (wi = 0; wi < wlist->num_widgets; wi++) {
2652                         widget = wlist->widgets[wi];
2653
2654                         widget->value = val;
2655
2656                         update.kcontrol = kcontrol;
2657                         update.widget = widget;
2658                         update.reg = e->reg;
2659                         update.mask = mask;
2660                         update.val = val;
2661                         widget->dapm->update = &update;
2662
2663                         soc_dapm_mux_update_power(widget, kcontrol, mux, e);
2664
2665                         widget->dapm->update = NULL;
2666                 }
2667         }
2668
2669         mutex_unlock(&card->dapm_mutex);
2670         return change;
2671 }
2672 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
2673
2674 /**
2675  * snd_soc_dapm_info_pin_switch - Info for a pin switch
2676  *
2677  * @kcontrol: mixer control
2678  * @uinfo: control element information
2679  *
2680  * Callback to provide information about a pin switch control.
2681  */
2682 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
2683                                  struct snd_ctl_elem_info *uinfo)
2684 {
2685         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2686         uinfo->count = 1;
2687         uinfo->value.integer.min = 0;
2688         uinfo->value.integer.max = 1;
2689
2690         return 0;
2691 }
2692 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
2693
2694 /**
2695  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2696  *
2697  * @kcontrol: mixer control
2698  * @ucontrol: Value
2699  */
2700 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
2701                                 struct snd_ctl_elem_value *ucontrol)
2702 {
2703         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
2704         const char *pin = (const char *)kcontrol->private_value;
2705
2706         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2707
2708         ucontrol->value.integer.value[0] =
2709                 snd_soc_dapm_get_pin_status(&card->dapm, pin);
2710
2711         mutex_unlock(&card->dapm_mutex);
2712
2713         return 0;
2714 }
2715 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
2716
2717 /**
2718  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2719  *
2720  * @kcontrol: mixer control
2721  * @ucontrol: Value
2722  */
2723 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
2724                                 struct snd_ctl_elem_value *ucontrol)
2725 {
2726         struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
2727         const char *pin = (const char *)kcontrol->private_value;
2728
2729         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2730
2731         if (ucontrol->value.integer.value[0])
2732                 snd_soc_dapm_enable_pin(&card->dapm, pin);
2733         else
2734                 snd_soc_dapm_disable_pin(&card->dapm, pin);
2735
2736         mutex_unlock(&card->dapm_mutex);
2737
2738         snd_soc_dapm_sync(&card->dapm);
2739         return 0;
2740 }
2741 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
2742
2743 static struct snd_soc_dapm_widget *
2744 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
2745                          const struct snd_soc_dapm_widget *widget)
2746 {
2747         struct snd_soc_dapm_widget *w;
2748         size_t name_len;
2749         int ret;
2750
2751         if ((w = dapm_cnew_widget(widget)) == NULL)
2752                 return NULL;
2753
2754         switch (w->id) {
2755         case snd_soc_dapm_regulator_supply:
2756                 w->regulator = devm_regulator_get(dapm->dev, w->name);
2757                 if (IS_ERR(w->regulator)) {
2758                         ret = PTR_ERR(w->regulator);
2759                         dev_err(dapm->dev, "Failed to request %s: %d\n",
2760                                 w->name, ret);
2761                         return NULL;
2762                 }
2763                 break;
2764         default:
2765                 break;
2766         }
2767
2768         name_len = strlen(widget->name) + 1;
2769         if (dapm->codec && dapm->codec->name_prefix)
2770                 name_len += 1 + strlen(dapm->codec->name_prefix);
2771         w->name = kmalloc(name_len, GFP_KERNEL);
2772         if (w->name == NULL) {
2773                 kfree(w);
2774                 return NULL;
2775         }
2776         if (dapm->codec && dapm->codec->name_prefix)
2777                 snprintf((char *)w->name, name_len, "%s %s",
2778                         dapm->codec->name_prefix, widget->name);
2779         else
2780                 snprintf((char *)w->name, name_len, "%s", widget->name);
2781
2782         switch (w->id) {
2783         case snd_soc_dapm_switch:
2784         case snd_soc_dapm_mixer:
2785         case snd_soc_dapm_mixer_named_ctl:
2786                 w->power_check = dapm_generic_check_power;
2787                 break;
2788         case snd_soc_dapm_mux:
2789         case snd_soc_dapm_virt_mux:
2790         case snd_soc_dapm_value_mux:
2791                 w->power_check = dapm_generic_check_power;
2792                 break;
2793         case snd_soc_dapm_adc:
2794         case snd_soc_dapm_aif_out:
2795                 w->power_check = dapm_adc_check_power;
2796                 break;
2797         case snd_soc_dapm_dac:
2798         case snd_soc_dapm_aif_in:
2799                 w->power_check = dapm_dac_check_power;
2800                 break;
2801         case snd_soc_dapm_pga:
2802         case snd_soc_dapm_out_drv:
2803         case snd_soc_dapm_input:
2804         case snd_soc_dapm_output:
2805         case snd_soc_dapm_micbias:
2806         case snd_soc_dapm_spk:
2807         case snd_soc_dapm_hp:
2808         case snd_soc_dapm_mic:
2809         case snd_soc_dapm_line:
2810                 w->power_check = dapm_generic_check_power;
2811                 break;
2812         case snd_soc_dapm_supply:
2813         case snd_soc_dapm_regulator_supply:
2814                 w->power_check = dapm_supply_check_power;
2815                 break;
2816         case snd_soc_dapm_dai:
2817                 w->power_check = dapm_dai_check_power;
2818                 break;
2819         default:
2820                 w->power_check = dapm_always_on_check_power;
2821                 break;
2822         }
2823
2824         dapm->n_widgets++;
2825         w->dapm = dapm;
2826         w->codec = dapm->codec;
2827         w->platform = dapm->platform;
2828         INIT_LIST_HEAD(&w->sources);
2829         INIT_LIST_HEAD(&w->sinks);
2830         INIT_LIST_HEAD(&w->list);
2831         INIT_LIST_HEAD(&w->dirty);
2832         list_add(&w->list, &dapm->card->widgets);
2833
2834         /* machine layer set ups unconnected pins and insertions */
2835         w->connected = 1;
2836         return w;
2837 }
2838
2839 /**
2840  * snd_soc_dapm_new_controls - create new dapm controls
2841  * @dapm: DAPM context
2842  * @widget: widget array
2843  * @num: number of widgets
2844  *
2845  * Creates new DAPM controls based upon the templates.
2846  *
2847  * Returns 0 for success else error.
2848  */
2849 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
2850         const struct snd_soc_dapm_widget *widget,
2851         int num)
2852 {
2853         struct snd_soc_dapm_widget *w;
2854         int i;
2855         int ret = 0;
2856
2857         mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2858         for (i = 0; i < num; i++) {
2859                 w = snd_soc_dapm_new_control(dapm, widget);
2860                 if (!w) {
2861                         dev_err(dapm->dev,
2862                                 "ASoC: Failed to create DAPM control %s\n",
2863                                 widget->name);
2864                         ret = -ENOMEM;
2865                         break;
2866                 }
2867                 widget++;
2868         }
2869         mutex_unlock(&dapm->card->dapm_mutex);
2870         return ret;
2871 }
2872 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
2873
2874 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
2875                                  struct snd_soc_dai *dai)
2876 {
2877         struct snd_soc_dapm_widget template;
2878         struct snd_soc_dapm_widget *w;
2879
2880         WARN_ON(dapm->dev != dai->dev);
2881
2882         memset(&template, 0, sizeof(template));
2883         template.reg = SND_SOC_NOPM;
2884
2885         if (dai->driver->playback.stream_name) {
2886                 template.id = snd_soc_dapm_dai;
2887                 template.name = dai->driver->playback.stream_name;
2888                 template.sname = dai->driver->playback.stream_name;
2889
2890                 dev_dbg(dai->dev, "adding %s widget\n",
2891                         template.name);
2892
2893                 w = snd_soc_dapm_new_control(dapm, &template);
2894                 if (!w) {
2895                         dev_err(dapm->dev, "Failed to create %s widget\n",
2896                                 dai->driver->playback.stream_name);
2897                 }
2898
2899                 w->priv = dai;
2900                 dai->playback_widget = w;
2901         }
2902
2903         if (dai->driver->capture.stream_name) {
2904                 template.id = snd_soc_dapm_dai;
2905                 template.name = dai->driver->capture.stream_name;
2906                 template.sname = dai->driver->capture.stream_name;
2907
2908                 dev_dbg(dai->dev, "adding %s widget\n",
2909                         template.name);
2910
2911                 w = snd_soc_dapm_new_control(dapm, &template);
2912                 if (!w) {
2913                         dev_err(dapm->dev, "Failed to create %s widget\n",
2914                                 dai->driver->capture.stream_name);
2915                 }
2916
2917                 w->priv = dai;
2918                 dai->capture_widget = w;
2919         }
2920
2921         return 0;
2922 }
2923
2924 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
2925 {
2926         struct snd_soc_dapm_widget *dai_w, *w;
2927         struct snd_soc_dai *dai;
2928         struct snd_soc_dapm_route r;
2929
2930         memset(&r, 0, sizeof(r));
2931
2932         /* For each DAI widget... */
2933         list_for_each_entry(dai_w, &card->widgets, list) {
2934                 if (dai_w->id != snd_soc_dapm_dai)
2935                         continue;
2936
2937                 dai = dai_w->priv;
2938
2939                 /* ...find all widgets with the same stream and link them */
2940                 list_for_each_entry(w, &card->widgets, list) {
2941                         if (w->dapm != dai_w->dapm)
2942                                 continue;
2943
2944                         if (w->id == snd_soc_dapm_dai)
2945                                 continue;
2946
2947                         if (!w->sname)
2948                                 continue;
2949
2950                         if (dai->driver->playback.stream_name &&
2951                             strstr(w->sname,
2952                                    dai->driver->playback.stream_name)) {
2953                                 r.source = dai->playback_widget->name;
2954                                 r.sink = w->name;
2955                                 dev_dbg(dai->dev, "%s -> %s\n",
2956                                          r.source, r.sink);
2957
2958                                 snd_soc_dapm_add_route(w->dapm, &r);
2959                         }
2960
2961                         if (dai->driver->capture.stream_name &&
2962                             strstr(w->sname,
2963                                    dai->driver->capture.stream_name)) {
2964                                 r.source = w->name;
2965                                 r.sink = dai->capture_widget->name;
2966                                 dev_dbg(dai->dev, "%s -> %s\n",
2967                                         r.source, r.sink);
2968
2969                                 snd_soc_dapm_add_route(w->dapm, &r);
2970                         }
2971                 }
2972         }
2973
2974         return 0;
2975 }
2976
2977 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
2978         int event)
2979 {
2980
2981         struct snd_soc_dapm_widget *w_cpu, *w_codec;
2982         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2983         struct snd_soc_dai *codec_dai = rtd->codec_dai;
2984
2985         if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2986                 w_cpu = cpu_dai->playback_widget;
2987                 w_codec = codec_dai->playback_widget;
2988         } else {
2989                 w_cpu = cpu_dai->capture_widget;
2990                 w_codec = codec_dai->capture_widget;
2991         }
2992
2993         if (w_cpu) {
2994
2995                 dapm_mark_dirty(w_cpu, "stream event");
2996
2997                 switch (event) {
2998                 case SND_SOC_DAPM_STREAM_START:
2999                         w_cpu->active = 1;
3000                         break;
3001                 case SND_SOC_DAPM_STREAM_STOP:
3002                         w_cpu->active = 0;
3003                         break;
3004                 case SND_SOC_DAPM_STREAM_SUSPEND:
3005                 case SND_SOC_DAPM_STREAM_RESUME:
3006                 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3007                 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3008                         break;
3009                 }
3010         }
3011
3012         if (w_codec) {
3013
3014                 dapm_mark_dirty(w_codec, "stream event");
3015
3016                 switch (event) {
3017                 case SND_SOC_DAPM_STREAM_START:
3018                         w_codec->active = 1;
3019                         break;
3020                 case SND_SOC_DAPM_STREAM_STOP:
3021                         w_codec->active = 0;
3022                         break;
3023                 case SND_SOC_DAPM_STREAM_SUSPEND:
3024                 case SND_SOC_DAPM_STREAM_RESUME:
3025                 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3026                 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3027                         break;
3028                 }
3029         }
3030
3031         dapm_power_widgets(&rtd->card->dapm, event);
3032 }
3033
3034 /**
3035  * snd_soc_dapm_stream_event - send a stream event to the dapm core
3036  * @rtd: PCM runtime data
3037  * @stream: stream name
3038  * @event: stream event
3039  *
3040  * Sends a stream event to the dapm core. The core then makes any
3041  * necessary widget power changes.
3042  *
3043  * Returns 0 for success else error.
3044  */
3045 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3046                               int event)
3047 {
3048         struct snd_soc_card *card = rtd->card;
3049
3050         mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3051         soc_dapm_stream_event(rtd, stream, event);
3052         mutex_unlock(&card->dapm_mutex);
3053 }
3054
3055 /**
3056  * snd_soc_dapm_enable_pin - enable pin.
3057  * @dapm: DAPM context
3058  * @pin: pin name
3059  *
3060  * Enables input/output pin and its parents or children widgets iff there is
3061  * a valid audio route and active audio stream.
3062  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3063  * do any widget power switching.
3064  */
3065 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
3066 {
3067         return snd_soc_dapm_set_pin(dapm, pin, 1);
3068 }
3069 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
3070
3071 /**
3072  * snd_soc_dapm_force_enable_pin - force a pin to be enabled
3073  * @dapm: DAPM context
3074  * @pin: pin name
3075  *
3076  * Enables input/output pin regardless of any other state.  This is
3077  * intended for use with microphone bias supplies used in microphone
3078  * jack detection.
3079  *
3080  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3081  * do any widget power switching.
3082  */
3083 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
3084                                   const char *pin)
3085 {
3086         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
3087
3088         if (!w) {
3089                 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3090                 return -EINVAL;
3091         }
3092
3093         dev_dbg(w->dapm->dev, "dapm: force enable pin %s\n", pin);
3094         w->connected = 1;
3095         w->force = 1;
3096         dapm_mark_dirty(w, "force enable");
3097
3098         return 0;
3099 }
3100 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
3101
3102 /**
3103  * snd_soc_dapm_disable_pin - disable pin.
3104  * @dapm: DAPM context
3105  * @pin: pin name
3106  *
3107  * Disables input/output pin and its parents or children widgets.
3108  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3109  * do any widget power switching.
3110  */
3111 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
3112                              const char *pin)
3113 {
3114         return snd_soc_dapm_set_pin(dapm, pin, 0);
3115 }
3116 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
3117
3118 /**
3119  * snd_soc_dapm_nc_pin - permanently disable pin.
3120  * @dapm: DAPM context
3121  * @pin: pin name
3122  *
3123  * Marks the specified pin as being not connected, disabling it along
3124  * any parent or child widgets.  At present this is identical to
3125  * snd_soc_dapm_disable_pin() but in future it will be extended to do
3126  * additional things such as disabling controls which only affect
3127  * paths through the pin.
3128  *
3129  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3130  * do any widget power switching.
3131  */
3132 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
3133 {
3134         return snd_soc_dapm_set_pin(dapm, pin, 0);
3135 }
3136 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
3137
3138 /**
3139  * snd_soc_dapm_get_pin_status - get audio pin status
3140  * @dapm: DAPM context
3141  * @pin: audio signal pin endpoint (or start point)
3142  *
3143  * Get audio pin status - connected or disconnected.
3144  *
3145  * Returns 1 for connected otherwise 0.
3146  */
3147 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
3148                                 const char *pin)
3149 {
3150         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
3151
3152         if (w)
3153                 return w->connected;
3154
3155         return 0;
3156 }
3157 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
3158
3159 /**
3160  * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
3161  * @dapm: DAPM context
3162  * @pin: audio signal pin endpoint (or start point)
3163  *
3164  * Mark the given endpoint or pin as ignoring suspend.  When the
3165  * system is disabled a path between two endpoints flagged as ignoring
3166  * suspend will not be disabled.  The path must already be enabled via
3167  * normal means at suspend time, it will not be turned on if it was not
3168  * already enabled.
3169  */
3170 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
3171                                 const char *pin)
3172 {
3173         struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
3174
3175         if (!w) {
3176                 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3177                 return -EINVAL;
3178         }
3179
3180         w->ignore_suspend = 1;
3181
3182         return 0;
3183 }
3184 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
3185
3186 static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card *card,
3187                                               struct snd_soc_dapm_widget *w)
3188 {
3189         struct snd_soc_dapm_path *p;
3190
3191         list_for_each_entry(p, &card->paths, list) {
3192                 if ((p->source == w) || (p->sink == w)) {
3193                         dev_dbg(card->dev,
3194                             "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n",
3195                             p->source->name, p->source->id, p->source->dapm,
3196                             p->sink->name, p->sink->id, p->sink->dapm);
3197
3198                         /* Connected to something other than the codec */
3199                         if (p->source->dapm != p->sink->dapm)
3200                                 return true;
3201                         /*
3202                          * Loopback connection from codec external pin to
3203                          * codec external pin
3204                          */
3205                         if (p->sink->id == snd_soc_dapm_input) {
3206                                 switch (p->source->id) {
3207                                 case snd_soc_dapm_output:
3208                                 case snd_soc_dapm_micbias:
3209                                         return true;
3210                                 default:
3211                                         break;
3212                                 }
3213                         }
3214                 }
3215         }
3216
3217         return false;
3218 }
3219
3220 /**
3221  * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins
3222  * @codec: The codec whose pins should be processed
3223  *
3224  * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec
3225  * which are unused. Pins are used if they are connected externally to the
3226  * codec, whether that be to some other device, or a loop-back connection to
3227  * the codec itself.
3228  */
3229 void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec)
3230 {
3231         struct snd_soc_card *card = codec->card;
3232         struct snd_soc_dapm_context *dapm = &codec->dapm;
3233         struct snd_soc_dapm_widget *w;
3234
3235         dev_dbg(codec->dev, "Auto NC: DAPMs: card:%p codec:%p\n",
3236                 &card->dapm, &codec->dapm);
3237
3238         list_for_each_entry(w, &card->widgets, list) {
3239                 if (w->dapm != dapm)
3240                         continue;
3241                 switch (w->id) {
3242                 case snd_soc_dapm_input:
3243                 case snd_soc_dapm_output:
3244                 case snd_soc_dapm_micbias:
3245                         dev_dbg(codec->dev, "Auto NC: Checking widget %s\n",
3246                                 w->name);
3247                         if (!snd_soc_dapm_widget_in_card_paths(card, w)) {
3248                                 dev_dbg(codec->dev,
3249                                         "... Not in map; disabling\n");
3250                                 snd_soc_dapm_nc_pin(dapm, w->name);
3251                         }
3252                         break;
3253                 default:
3254                         break;
3255                 }
3256         }
3257 }
3258
3259 /**
3260  * snd_soc_dapm_free - free dapm resources
3261  * @dapm: DAPM context
3262  *
3263  * Free all dapm widgets and resources.
3264  */
3265 void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
3266 {
3267         snd_soc_dapm_sys_remove(dapm->dev);
3268         dapm_debugfs_cleanup(dapm);
3269         dapm_free_widgets(dapm);
3270         list_del(&dapm->list);
3271 }
3272 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
3273
3274 static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
3275 {
3276         struct snd_soc_dapm_widget *w;
3277         LIST_HEAD(down_list);
3278         int powerdown = 0;
3279
3280         list_for_each_entry(w, &dapm->card->widgets, list) {
3281                 if (w->dapm != dapm)
3282                         continue;
3283                 if (w->power) {
3284                         dapm_seq_insert(w, &down_list, false);
3285                         w->power = 0;
3286                         powerdown = 1;
3287                 }
3288         }
3289
3290         /* If there were no widgets to power down we're already in
3291          * standby.
3292          */
3293         if (powerdown) {
3294                 if (dapm->bias_level == SND_SOC_BIAS_ON)
3295                         snd_soc_dapm_set_bias_level(dapm,
3296                                                     SND_SOC_BIAS_PREPARE);
3297                 dapm_seq_run(dapm, &down_list, 0, false);
3298                 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
3299                         snd_soc_dapm_set_bias_level(dapm,
3300                                                     SND_SOC_BIAS_STANDBY);
3301         }
3302 }
3303
3304 /*
3305  * snd_soc_dapm_shutdown - callback for system shutdown
3306  */
3307 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
3308 {
3309         struct snd_soc_codec *codec;
3310
3311         list_for_each_entry(codec, &card->codec_dev_list, list) {
3312                 soc_dapm_shutdown_codec(&codec->dapm);
3313                 if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
3314                         snd_soc_dapm_set_bias_level(&codec->dapm,
3315                                                     SND_SOC_BIAS_OFF);
3316         }
3317 }
3318
3319 /* Module information */
3320 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3321 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
3322 MODULE_LICENSE("GPL");