newton:update cs42l52 driver
[firefly-linux-kernel-4.4.55.git] / sound / soc / soc-dapm.c
1 /*
2  * soc-dapm.c  --  ALSA SoC Dynamic Audio Power Management
3  *
4  * Copyright 2005 Wolfson Microelectronics PLC.
5  * Author: Liam Girdwood <lrg@slimlogic.co.uk>
6  *
7  *  This program is free software; you can redistribute  it and/or modify it
8  *  under  the terms of  the GNU General  Public License as published by the
9  *  Free Software Foundation;  either version 2 of the  License, or (at your
10  *  option) any later version.
11  *
12  *  Features:
13  *    o Changes power status of internal codec blocks depending on the
14  *      dynamic configuration of codec internal audio paths and active
15  *      DACs/ADCs.
16  *    o Platform power domain - can support external components i.e. amps and
17  *      mic/meadphone 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 powerdown of audio susbsystem to reduce pops between a quick
22  *      device reopen.
23  *
24  *  Todo:
25  *    o DAPM power change sequencing - allow for configurable per
26  *      codec sequences.
27  *    o Support for analogue bias optimisation.
28  *    o Support for reduced codec oversampling rates.
29  *    o Support for reduced codec bias currents.
30  */
31
32 #include <linux/module.h>
33 #include <linux/moduleparam.h>
34 #include <linux/init.h>
35 #include <linux/delay.h>
36 #include <linux/pm.h>
37 #include <linux/bitops.h>
38 #include <linux/platform_device.h>
39 #include <linux/jiffies.h>
40 #include <linux/debugfs.h>
41 #include <sound/core.h>
42 #include <sound/pcm.h>
43 #include <sound/pcm_params.h>
44 #include <sound/soc-dapm.h>
45 #include <sound/initval.h>
46
47 /* debug */
48 #ifdef DEBUG
49 #define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
50 #else
51 #define dump_dapm(codec, action)
52 #endif
53
54 /* dapm power sequences - make this per codec in the future */
55 static int dapm_up_seq[] = {
56         [snd_soc_dapm_pre] = 0,
57         [snd_soc_dapm_supply] = 1,
58         [snd_soc_dapm_micbias] = 2,
59         [snd_soc_dapm_aif_in] = 3,
60         [snd_soc_dapm_aif_out] = 3,
61         [snd_soc_dapm_mic] = 4,
62         [snd_soc_dapm_mux] = 5,
63         [snd_soc_dapm_value_mux] = 5,
64         [snd_soc_dapm_dac] = 6,
65         [snd_soc_dapm_mixer] = 7,
66         [snd_soc_dapm_mixer_named_ctl] = 7,
67         [snd_soc_dapm_pga] = 8,
68         [snd_soc_dapm_adc] = 9,
69         [snd_soc_dapm_hp] = 10,
70         [snd_soc_dapm_spk] = 10,
71         [snd_soc_dapm_post] = 11,
72 };
73
74 static int dapm_down_seq[] = {
75         [snd_soc_dapm_pre] = 0,
76         [snd_soc_dapm_adc] = 1,
77         [snd_soc_dapm_hp] = 2,
78         [snd_soc_dapm_spk] = 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_value_mux] = 9,
87         [snd_soc_dapm_aif_in] = 10,
88         [snd_soc_dapm_aif_out] = 10,
89         [snd_soc_dapm_supply] = 11,
90         [snd_soc_dapm_post] = 12,
91 };
92
93 static void pop_wait(u32 pop_time)
94 {
95         if (pop_time)
96                 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
97 }
98
99 static void pop_dbg(u32 pop_time, const char *fmt, ...)
100 {
101         va_list args;
102
103         va_start(args, fmt);
104
105         if (pop_time) {
106                 vprintk(fmt, args);
107                 pop_wait(pop_time);
108         }
109
110         va_end(args);
111 }
112
113 /* create a new dapm widget */
114 static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
115         const struct snd_soc_dapm_widget *_widget)
116 {
117         return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
118 }
119
120 /**
121  * snd_soc_dapm_set_bias_level - set the bias level for the system
122  * @socdev: audio device
123  * @level: level to configure
124  *
125  * Configure the bias (power) levels for the SoC audio device.
126  *
127  * Returns 0 for success else error.
128  */
129 static int snd_soc_dapm_set_bias_level(struct snd_soc_device *socdev,
130                                        enum snd_soc_bias_level level)
131 {
132         struct snd_soc_card *card = socdev->card;
133         struct snd_soc_codec *codec = socdev->card->codec;
134         int ret = 0;
135
136         switch (level) {
137         case SND_SOC_BIAS_ON:
138                 dev_dbg(socdev->dev, "Setting full bias\n");
139                 break;
140         case SND_SOC_BIAS_PREPARE:
141                 dev_dbg(socdev->dev, "Setting bias prepare\n");
142                 break;
143         case SND_SOC_BIAS_STANDBY:
144                 dev_dbg(socdev->dev, "Setting standby bias\n");
145                 break;
146         case SND_SOC_BIAS_OFF:
147                 dev_dbg(socdev->dev, "Setting bias off\n");
148                 break;
149         default:
150                 dev_err(socdev->dev, "Setting invalid bias %d\n", level);
151                 return -EINVAL;
152         }
153
154         if (card->set_bias_level)
155                 ret = card->set_bias_level(card, level);
156         if (ret == 0) {
157                 if (codec->set_bias_level)
158                         ret = codec->set_bias_level(codec, level);
159                 else
160                         codec->bias_level = level;
161         }
162
163         return ret;
164 }
165
166 /* set up initial codec paths */
167 static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
168         struct snd_soc_dapm_path *p, int i)
169 {
170         switch (w->id) {
171         case snd_soc_dapm_switch:
172         case snd_soc_dapm_mixer:
173         case snd_soc_dapm_mixer_named_ctl: {
174                 int val;
175                 struct soc_mixer_control *mc = (struct soc_mixer_control *)
176                         w->kcontrols[i].private_value;
177                 unsigned int reg = mc->reg;
178                 unsigned int shift = mc->shift;
179                 int max = mc->max;
180                 unsigned int mask = (1 << fls(max)) - 1;
181                 unsigned int invert = mc->invert;
182
183                 val = snd_soc_read(w->codec, reg);
184                 val = (val >> shift) & mask;
185
186                 if ((invert && !val) || (!invert && val))
187                         p->connect = 1;
188                 else
189                         p->connect = 0;
190         }
191         break;
192         case snd_soc_dapm_mux: {
193                 struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value;
194                 int val, item, bitmask;
195
196                 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
197                 ;
198                 val = snd_soc_read(w->codec, e->reg);
199                 item = (val >> e->shift_l) & (bitmask - 1);
200
201                 p->connect = 0;
202                 for (i = 0; i < e->max; i++) {
203                         if (!(strcmp(p->name, e->texts[i])) && item == i)
204                                 p->connect = 1;
205                 }
206         }
207         break;
208         case snd_soc_dapm_value_mux: {
209                 struct soc_enum *e = (struct soc_enum *)
210                         w->kcontrols[i].private_value;
211                 int val, item;
212
213                 val = snd_soc_read(w->codec, e->reg);
214                 val = (val >> e->shift_l) & e->mask;
215                 for (item = 0; item < e->max; item++) {
216                         if (val == e->values[item])
217                                 break;
218                 }
219
220                 p->connect = 0;
221                 for (i = 0; i < e->max; i++) {
222                         if (!(strcmp(p->name, e->texts[i])) && item == i)
223                                 p->connect = 1;
224                 }
225         }
226         break;
227         /* does not effect routing - always connected */
228         case snd_soc_dapm_pga:
229         case snd_soc_dapm_output:
230         case snd_soc_dapm_adc:
231         case snd_soc_dapm_input:
232         case snd_soc_dapm_dac:
233         case snd_soc_dapm_micbias:
234         case snd_soc_dapm_vmid:
235         case snd_soc_dapm_supply:
236         case snd_soc_dapm_aif_in:
237         case snd_soc_dapm_aif_out:
238                 p->connect = 1;
239         break;
240         /* does effect routing - dynamically connected */
241         case snd_soc_dapm_hp:
242         case snd_soc_dapm_mic:
243         case snd_soc_dapm_spk:
244         case snd_soc_dapm_line:
245         case snd_soc_dapm_pre:
246         case snd_soc_dapm_post:
247                 p->connect = 0;
248         break;
249         }
250 }
251
252 /* connect mux widget to its interconnecting audio paths */
253 static int dapm_connect_mux(struct snd_soc_codec *codec,
254         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
255         struct snd_soc_dapm_path *path, const char *control_name,
256         const struct snd_kcontrol_new *kcontrol)
257 {
258         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
259         int i;
260
261         for (i = 0; i < e->max; i++) {
262                 if (!(strcmp(control_name, e->texts[i]))) {
263                         list_add(&path->list, &codec->dapm_paths);
264                         list_add(&path->list_sink, &dest->sources);
265                         list_add(&path->list_source, &src->sinks);
266                         path->name = (char*)e->texts[i];
267                         dapm_set_path_status(dest, path, 0);
268                         return 0;
269                 }
270         }
271
272         return -ENODEV;
273 }
274
275 /* connect mixer widget to its interconnecting audio paths */
276 static int dapm_connect_mixer(struct snd_soc_codec *codec,
277         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
278         struct snd_soc_dapm_path *path, const char *control_name)
279 {
280         int i;
281
282         /* search for mixer kcontrol */
283         for (i = 0; i < dest->num_kcontrols; i++) {
284                 if (!strcmp(control_name, dest->kcontrols[i].name)) {
285                         list_add(&path->list, &codec->dapm_paths);
286                         list_add(&path->list_sink, &dest->sources);
287                         list_add(&path->list_source, &src->sinks);
288                         path->name = dest->kcontrols[i].name;
289                         dapm_set_path_status(dest, path, i);
290                         return 0;
291                 }
292         }
293         return -ENODEV;
294 }
295
296 /* update dapm codec register bits */
297 static int dapm_update_bits(struct snd_soc_dapm_widget *widget)
298 {
299         int change, power;
300         unsigned int old, new;
301         struct snd_soc_codec *codec = widget->codec;
302
303         /* check for valid widgets */
304         if (widget->reg < 0 || widget->id == snd_soc_dapm_input ||
305                 widget->id == snd_soc_dapm_output ||
306                 widget->id == snd_soc_dapm_hp ||
307                 widget->id == snd_soc_dapm_mic ||
308                 widget->id == snd_soc_dapm_line ||
309                 widget->id == snd_soc_dapm_spk)
310                 return 0;
311
312         power = widget->power;
313         if (widget->invert)
314                 power = (power ? 0:1);
315
316         old = snd_soc_read(codec, widget->reg);
317         new = (old & ~(0x1 << widget->shift)) | (power << widget->shift);
318
319         change = old != new;
320         if (change) {
321                 pop_dbg(codec->pop_time, "pop test %s : %s in %d ms\n",
322                         widget->name, widget->power ? "on" : "off",
323                         codec->pop_time);
324                 snd_soc_write(codec, widget->reg, new);
325                 pop_wait(codec->pop_time);
326         }
327         pr_debug("reg %x old %x new %x change %d\n", widget->reg,
328                  old, new, change);
329         return change;
330 }
331
332 /* ramps the volume up or down to minimise pops before or after a
333  * DAPM power event */
334 static int dapm_set_pga(struct snd_soc_dapm_widget *widget, int power)
335 {
336         const struct snd_kcontrol_new *k = widget->kcontrols;
337
338         if (widget->muted && !power)
339                 return 0;
340         if (!widget->muted && power)
341                 return 0;
342
343         if (widget->num_kcontrols && k) {
344                 struct soc_mixer_control *mc =
345                         (struct soc_mixer_control *)k->private_value;
346                 unsigned int reg = mc->reg;
347                 unsigned int shift = mc->shift;
348                 int max = mc->max;
349                 unsigned int mask = (1 << fls(max)) - 1;
350                 unsigned int invert = mc->invert;
351
352                 if (power) {
353                         int i;
354                         /* power up has happended, increase volume to last level */
355                         if (invert) {
356                                 for (i = max; i > widget->saved_value; i--)
357                                         snd_soc_update_bits(widget->codec, reg, mask, i);
358                         } else {
359                                 for (i = 0; i < widget->saved_value; i++)
360                                         snd_soc_update_bits(widget->codec, reg, mask, i);
361                         }
362                         widget->muted = 0;
363                 } else {
364                         /* power down is about to occur, decrease volume to mute */
365                         int val = snd_soc_read(widget->codec, reg);
366                         int i = widget->saved_value = (val >> shift) & mask;
367                         if (invert) {
368                                 for (; i < mask; i++)
369                                         snd_soc_update_bits(widget->codec, reg, mask, i);
370                         } else {
371                                 for (; i > 0; i--)
372                                         snd_soc_update_bits(widget->codec, reg, mask, i);
373                         }
374                         widget->muted = 1;
375                 }
376         }
377         return 0;
378 }
379
380 /* create new dapm mixer control */
381 static int dapm_new_mixer(struct snd_soc_codec *codec,
382         struct snd_soc_dapm_widget *w)
383 {
384         int i, ret = 0;
385         size_t name_len;
386         struct snd_soc_dapm_path *path;
387
388         /* add kcontrol */
389         for (i = 0; i < w->num_kcontrols; i++) {
390
391                 /* match name */
392                 list_for_each_entry(path, &w->sources, list_sink) {
393
394                         /* mixer/mux paths name must match control name */
395                         if (path->name != (char*)w->kcontrols[i].name)
396                                 continue;
397
398                         /* add dapm control with long name.
399                          * for dapm_mixer this is the concatenation of the
400                          * mixer and kcontrol name.
401                          * for dapm_mixer_named_ctl this is simply the
402                          * kcontrol name.
403                          */
404                         name_len = strlen(w->kcontrols[i].name) + 1;
405                         if (w->id != snd_soc_dapm_mixer_named_ctl)
406                                 name_len += 1 + strlen(w->name);
407
408                         path->long_name = kmalloc(name_len, GFP_KERNEL);
409
410                         if (path->long_name == NULL)
411                                 return -ENOMEM;
412
413                         switch (w->id) {
414                         default:
415                                 snprintf(path->long_name, name_len, "%s %s",
416                                          w->name, w->kcontrols[i].name);
417                                 break;
418                         case snd_soc_dapm_mixer_named_ctl:
419                                 snprintf(path->long_name, name_len, "%s",
420                                          w->kcontrols[i].name);
421                                 break;
422                         }
423
424                         path->long_name[name_len - 1] = '\0';
425
426                         path->kcontrol = snd_soc_cnew(&w->kcontrols[i], w,
427                                 path->long_name);
428                         ret = snd_ctl_add(codec->card, path->kcontrol);
429                         if (ret < 0) {
430                                 printk(KERN_ERR "asoc: failed to add dapm kcontrol %s: %d\n",
431                                        path->long_name,
432                                        ret);
433                                 kfree(path->long_name);
434                                 path->long_name = NULL;
435                                 return ret;
436                         }
437                 }
438         }
439         return ret;
440 }
441
442 /* create new dapm mux control */
443 static int dapm_new_mux(struct snd_soc_codec *codec,
444         struct snd_soc_dapm_widget *w)
445 {
446         struct snd_soc_dapm_path *path = NULL;
447         struct snd_kcontrol *kcontrol;
448         int ret = 0;
449
450         if (!w->num_kcontrols) {
451                 printk(KERN_ERR "asoc: mux %s has no controls\n", w->name);
452                 return -EINVAL;
453         }
454
455         kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
456         ret = snd_ctl_add(codec->card, kcontrol);
457         if (ret < 0)
458                 goto err;
459
460         list_for_each_entry(path, &w->sources, list_sink)
461                 path->kcontrol = kcontrol;
462
463         return ret;
464
465 err:
466         printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
467         return ret;
468 }
469
470 /* create new dapm volume control */
471 static int dapm_new_pga(struct snd_soc_codec *codec,
472         struct snd_soc_dapm_widget *w)
473 {
474         struct snd_kcontrol *kcontrol;
475         int ret = 0;
476
477         if (!w->num_kcontrols)
478                 return -EINVAL;
479
480         kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
481         ret = snd_ctl_add(codec->card, kcontrol);
482         if (ret < 0) {
483                 printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
484                 return ret;
485         }
486
487         return ret;
488 }
489
490 /* reset 'walked' bit for each dapm path */
491 static inline void dapm_clear_walk(struct snd_soc_codec *codec)
492 {
493         struct snd_soc_dapm_path *p;
494
495         list_for_each_entry(p, &codec->dapm_paths, list)
496                 p->walked = 0;
497 }
498
499 /*
500  * Recursively check for a completed path to an active or physically connected
501  * output widget. Returns number of complete paths.
502  */
503 static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
504 {
505         struct snd_soc_dapm_path *path;
506         int con = 0;
507
508         if (widget->id == snd_soc_dapm_supply)
509                 return 0;
510
511         switch (widget->id) {
512         case snd_soc_dapm_adc:
513         case snd_soc_dapm_aif_out:
514                 if (widget->active)
515                         return 1;
516         default:
517                 break;
518         }
519
520         if (widget->connected) {
521                 /* connected pin ? */
522                 if (widget->id == snd_soc_dapm_output && !widget->ext)
523                         return 1;
524
525                 /* connected jack or spk ? */
526                 if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk ||
527                     (widget->id == snd_soc_dapm_line && !list_empty(&widget->sources)))
528                         return 1;
529         }
530
531         list_for_each_entry(path, &widget->sinks, list_source) {
532                 if (path->walked)
533                         continue;
534
535                 if (path->sink && path->connect) {
536                         path->walked = 1;
537                         con += is_connected_output_ep(path->sink);
538                 }
539         }
540
541         return con;
542 }
543
544 /*
545  * Recursively check for a completed path to an active or physically connected
546  * input widget. Returns number of complete paths.
547  */
548 static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
549 {
550         struct snd_soc_dapm_path *path;
551         int con = 0;
552
553         if (widget->id == snd_soc_dapm_supply)
554                 return 0;
555
556         /* active stream ? */
557         switch (widget->id) {
558         case snd_soc_dapm_dac:
559         case snd_soc_dapm_aif_in:
560                 if (widget->active)
561                         return 1;
562         default:
563                 break;
564         }
565
566         if (widget->connected) {
567                 /* connected pin ? */
568                 if (widget->id == snd_soc_dapm_input && !widget->ext)
569                         return 1;
570
571                 /* connected VMID/Bias for lower pops */
572                 if (widget->id == snd_soc_dapm_vmid)
573                         return 1;
574
575                 /* connected jack ? */
576                 if (widget->id == snd_soc_dapm_mic ||
577                     (widget->id == snd_soc_dapm_line && !list_empty(&widget->sinks)))
578                         return 1;
579         }
580
581         list_for_each_entry(path, &widget->sources, list_sink) {
582                 if (path->walked)
583                         continue;
584
585                 if (path->source && path->connect) {
586                         path->walked = 1;
587                         con += is_connected_input_ep(path->source);
588                 }
589         }
590
591         return con;
592 }
593
594 /*
595  * Handler for generic register modifier widget.
596  */
597 int dapm_reg_event(struct snd_soc_dapm_widget *w,
598                    struct snd_kcontrol *kcontrol, int event)
599 {
600         unsigned int val;
601
602         if (SND_SOC_DAPM_EVENT_ON(event))
603                 val = w->on_val;
604         else
605                 val = w->off_val;
606
607         snd_soc_update_bits(w->codec, -(w->reg + 1),
608                             w->mask << w->shift, val << w->shift);
609
610         return 0;
611 }
612 EXPORT_SYMBOL_GPL(dapm_reg_event);
613
614 /* Standard power change method, used to apply power changes to most
615  * widgets.
616  */
617 static int dapm_generic_apply_power(struct snd_soc_dapm_widget *w)
618 {
619         int ret;
620
621         /* call any power change event handlers */
622         if (w->event)
623                 pr_debug("power %s event for %s flags %x\n",
624                          w->power ? "on" : "off",
625                          w->name, w->event_flags);
626
627         /* power up pre event */
628         if (w->power && w->event &&
629             (w->event_flags & SND_SOC_DAPM_PRE_PMU)) {
630                 ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMU);
631                 if (ret < 0)
632                         return ret;
633         }
634
635         /* power down pre event */
636         if (!w->power && w->event &&
637             (w->event_flags & SND_SOC_DAPM_PRE_PMD)) {
638                 ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMD);
639                 if (ret < 0)
640                         return ret;
641         }
642
643         /* Lower PGA volume to reduce pops */
644         if (w->id == snd_soc_dapm_pga && !w->power)
645                 dapm_set_pga(w, w->power);
646
647         dapm_update_bits(w);
648
649         /* Raise PGA volume to reduce pops */
650         if (w->id == snd_soc_dapm_pga && w->power)
651                 dapm_set_pga(w, w->power);
652
653         /* power up post event */
654         if (w->power && w->event &&
655             (w->event_flags & SND_SOC_DAPM_POST_PMU)) {
656                 ret = w->event(w,
657                                NULL, SND_SOC_DAPM_POST_PMU);
658                 if (ret < 0)
659                         return ret;
660         }
661
662         /* power down post event */
663         if (!w->power && w->event &&
664             (w->event_flags & SND_SOC_DAPM_POST_PMD)) {
665                 ret = w->event(w, NULL, SND_SOC_DAPM_POST_PMD);
666                 if (ret < 0)
667                         return ret;
668         }
669
670         return 0;
671 }
672
673 /* Generic check to see if a widget should be powered.
674  */
675 static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
676 {
677         int in, out;
678
679         in = is_connected_input_ep(w);
680         dapm_clear_walk(w->codec);
681         out = is_connected_output_ep(w);
682         dapm_clear_walk(w->codec);
683         return out != 0 && in != 0;
684 }
685
686 /* Check to see if an ADC has power */
687 static int dapm_adc_check_power(struct snd_soc_dapm_widget *w)
688 {
689         int in;
690
691         if (w->active) {
692                 in = is_connected_input_ep(w);
693                 dapm_clear_walk(w->codec);
694                 return in != 0;
695         } else {
696                 return dapm_generic_check_power(w);
697         }
698 }
699
700 /* Check to see if a DAC has power */
701 static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
702 {
703         int out;
704
705         if (w->active) {
706                 out = is_connected_output_ep(w);
707                 dapm_clear_walk(w->codec);
708                 return out != 0;
709         } else {
710                 return dapm_generic_check_power(w);
711         }
712 }
713
714 /* Check to see if a power supply is needed */
715 static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
716 {
717         struct snd_soc_dapm_path *path;
718         int power = 0;
719
720         /* Check if one of our outputs is connected */
721         list_for_each_entry(path, &w->sinks, list_source) {
722                 if (path->sink && path->sink->power_check &&
723                     path->sink->power_check(path->sink)) {
724                         power = 1;
725                         break;
726                 }
727         }
728
729         dapm_clear_walk(w->codec);
730
731         return power;
732 }
733
734 static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
735                             struct snd_soc_dapm_widget *b,
736                             int sort[])
737 {
738         if (sort[a->id] != sort[b->id])
739                 return sort[a->id] - sort[b->id];
740         if (a->reg != b->reg)
741                 return a->reg - b->reg;
742
743         return 0;
744 }
745
746 /* Insert a widget in order into a DAPM power sequence. */
747 static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
748                             struct list_head *list,
749                             int sort[])
750 {
751         struct snd_soc_dapm_widget *w;
752
753         list_for_each_entry(w, list, power_list)
754                 if (dapm_seq_compare(new_widget, w, sort) < 0) {
755                         list_add_tail(&new_widget->power_list, &w->power_list);
756                         return;
757                 }
758
759         list_add_tail(&new_widget->power_list, list);
760 }
761
762 /* Apply the coalesced changes from a DAPM sequence */
763 static void dapm_seq_run_coalesced(struct snd_soc_codec *codec,
764                                    struct list_head *pending)
765 {
766         struct snd_soc_dapm_widget *w;
767         int reg, power, ret;
768         unsigned int value = 0;
769         unsigned int mask = 0;
770         unsigned int cur_mask;
771
772         reg = list_first_entry(pending, struct snd_soc_dapm_widget,
773                                power_list)->reg;
774
775         list_for_each_entry(w, pending, power_list) {
776                 cur_mask = 1 << w->shift;
777                 BUG_ON(reg != w->reg);
778
779                 if (w->invert)
780                         power = !w->power;
781                 else
782                         power = w->power;
783
784                 mask |= cur_mask;
785                 if (power)
786                         value |= cur_mask;
787
788                 pop_dbg(codec->pop_time,
789                         "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
790                         w->name, reg, value, mask);
791
792                 /* power up pre event */
793                 if (w->power && w->event &&
794                     (w->event_flags & SND_SOC_DAPM_PRE_PMU)) {
795                         pop_dbg(codec->pop_time, "pop test : %s PRE_PMU\n",
796                                 w->name);
797                         ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMU);
798                         if (ret < 0)
799                                 pr_err("%s: pre event failed: %d\n",
800                                        w->name, ret);
801                 }
802
803                 /* power down pre event */
804                 if (!w->power && w->event &&
805                     (w->event_flags & SND_SOC_DAPM_PRE_PMD)) {
806                         pop_dbg(codec->pop_time, "pop test : %s PRE_PMD\n",
807                                 w->name);
808                         ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMD);
809                         if (ret < 0)
810                                 pr_err("%s: pre event failed: %d\n",
811                                        w->name, ret);
812                 }
813
814                 /* Lower PGA volume to reduce pops */
815                 if (w->id == snd_soc_dapm_pga && !w->power)
816                         dapm_set_pga(w, w->power);
817         }
818
819         if (reg >= 0) {
820                 pop_dbg(codec->pop_time,
821                         "pop test : Applying 0x%x/0x%x to %x in %dms\n",
822                         value, mask, reg, codec->pop_time);
823                 pop_wait(codec->pop_time);
824                 snd_soc_update_bits(codec, reg, mask, value);
825         }
826
827         list_for_each_entry(w, pending, power_list) {
828                 /* Raise PGA volume to reduce pops */
829                 if (w->id == snd_soc_dapm_pga && w->power)
830                         dapm_set_pga(w, w->power);
831
832                 /* power up post event */
833                 if (w->power && w->event &&
834                     (w->event_flags & SND_SOC_DAPM_POST_PMU)) {
835                         pop_dbg(codec->pop_time, "pop test : %s POST_PMU\n",
836                                 w->name);
837                         ret = w->event(w,
838                                        NULL, SND_SOC_DAPM_POST_PMU);
839                         if (ret < 0)
840                                 pr_err("%s: post event failed: %d\n",
841                                        w->name, ret);
842                 }
843
844                 /* power down post event */
845                 if (!w->power && w->event &&
846                     (w->event_flags & SND_SOC_DAPM_POST_PMD)) {
847                         pop_dbg(codec->pop_time, "pop test : %s POST_PMD\n",
848                                 w->name);
849                         ret = w->event(w, NULL, SND_SOC_DAPM_POST_PMD);
850                         if (ret < 0)
851                                 pr_err("%s: post event failed: %d\n",
852                                        w->name, ret);
853                 }
854         }
855 }
856
857 /* Apply a DAPM power sequence.
858  *
859  * We walk over a pre-sorted list of widgets to apply power to.  In
860  * order to minimise the number of writes to the device required
861  * multiple widgets will be updated in a single write where possible.
862  * Currently anything that requires more than a single write is not
863  * handled.
864  */
865 static void dapm_seq_run(struct snd_soc_codec *codec, struct list_head *list,
866                          int event, int sort[])
867 {
868         struct snd_soc_dapm_widget *w, *n;
869         LIST_HEAD(pending);
870         int cur_sort = -1;
871         int cur_reg = SND_SOC_NOPM;
872         int ret;
873
874         list_for_each_entry_safe(w, n, list, power_list) {
875                 ret = 0;
876
877                 /* Do we need to apply any queued changes? */
878                 if (sort[w->id] != cur_sort || w->reg != cur_reg) {
879                         if (!list_empty(&pending))
880                                 dapm_seq_run_coalesced(codec, &pending);
881
882                         INIT_LIST_HEAD(&pending);
883                         cur_sort = -1;
884                         cur_reg = SND_SOC_NOPM;
885                 }
886
887                 switch (w->id) {
888                 case snd_soc_dapm_pre:
889                         if (!w->event)
890                                 list_for_each_entry_safe_continue(w, n, list,
891                                                                   power_list);
892
893                         if (event == SND_SOC_DAPM_STREAM_START)
894                                 ret = w->event(w,
895                                                NULL, SND_SOC_DAPM_PRE_PMU);
896                         else if (event == SND_SOC_DAPM_STREAM_STOP)
897                                 ret = w->event(w,
898                                                NULL, SND_SOC_DAPM_PRE_PMD);
899                         break;
900
901                 case snd_soc_dapm_post:
902                         if (!w->event)
903                                 list_for_each_entry_safe_continue(w, n, list,
904                                                                   power_list);
905
906                         if (event == SND_SOC_DAPM_STREAM_START)
907                                 ret = w->event(w,
908                                                NULL, SND_SOC_DAPM_POST_PMU);
909                         else if (event == SND_SOC_DAPM_STREAM_STOP)
910                                 ret = w->event(w,
911                                                NULL, SND_SOC_DAPM_POST_PMD);
912                         break;
913
914                 case snd_soc_dapm_input:
915                 case snd_soc_dapm_output:
916                 case snd_soc_dapm_hp:
917                 case snd_soc_dapm_mic:
918                 case snd_soc_dapm_line:
919                 case snd_soc_dapm_spk:
920                         /* No register support currently */
921                         ret = dapm_generic_apply_power(w);
922                         break;
923
924                 default:
925                         /* Queue it up for application */
926                         cur_sort = sort[w->id];
927                         cur_reg = w->reg;
928                         list_move(&w->power_list, &pending);
929                         break;
930                 }
931
932                 if (ret < 0)
933                         pr_err("Failed to apply widget power: %d\n",
934                                ret);
935         }
936
937         if (!list_empty(&pending))
938                 dapm_seq_run_coalesced(codec, &pending);
939 }
940
941 /*
942  * Scan each dapm widget for complete audio path.
943  * A complete path is a route that has valid endpoints i.e.:-
944  *
945  *  o DAC to output pin.
946  *  o Input Pin to ADC.
947  *  o Input pin to Output pin (bypass, sidetone)
948  *  o DAC to ADC (loopback).
949  */
950 static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
951 {
952         struct snd_soc_device *socdev = codec->socdev;
953         struct snd_soc_dapm_widget *w;
954         LIST_HEAD(up_list);
955         LIST_HEAD(down_list);
956         int ret = 0;
957         int power;
958         int sys_power = 0;
959
960         /* Check which widgets we need to power and store them in
961          * lists indicating if they should be powered up or down.
962          */
963         list_for_each_entry(w, &codec->dapm_widgets, list) {
964                 switch (w->id) {
965                 case snd_soc_dapm_pre:
966                         dapm_seq_insert(w, &down_list, dapm_down_seq);
967                         break;
968                 case snd_soc_dapm_post:
969                         dapm_seq_insert(w, &up_list, dapm_up_seq);
970                         break;
971
972                 default:
973                         if (!w->power_check)
974                                 continue;
975
976                         /* If we're suspending then pull down all the 
977                          * power. */
978                         switch (event) {
979                         case SND_SOC_DAPM_STREAM_SUSPEND:
980                                 power = 0;
981                                 break;
982
983                         default:
984                                 power = w->power_check(w);
985                                 if (power)
986                                         sys_power = 1;
987                                 break;
988                         }
989
990                         if (w->power == power)
991                                 continue;
992
993                         if (power)
994                                 dapm_seq_insert(w, &up_list, dapm_up_seq);
995                         else
996                                 dapm_seq_insert(w, &down_list, dapm_down_seq);
997
998                         w->power = power;
999                         break;
1000                 }
1001         }
1002
1003         /* If there are no DAPM widgets then try to figure out power from the
1004          * event type.
1005          */
1006         if (list_empty(&codec->dapm_widgets)) {
1007                 switch (event) {
1008                 case SND_SOC_DAPM_STREAM_START:
1009                 case SND_SOC_DAPM_STREAM_RESUME:
1010                         sys_power = 1;
1011                         break;
1012                 case SND_SOC_DAPM_STREAM_SUSPEND:
1013                         sys_power = 0;
1014                         break;
1015                 case SND_SOC_DAPM_STREAM_NOP:
1016                         sys_power = codec->bias_level != SND_SOC_BIAS_STANDBY;
1017                         break;
1018                 default:
1019                         break;
1020                 }
1021         }
1022
1023         /* If we're changing to all on or all off then prepare */
1024         if ((sys_power && codec->bias_level == SND_SOC_BIAS_STANDBY) ||
1025             (!sys_power && codec->bias_level == SND_SOC_BIAS_ON)) {
1026                 ret = snd_soc_dapm_set_bias_level(socdev,
1027                                                   SND_SOC_BIAS_PREPARE);
1028                 if (ret != 0)
1029                         pr_err("Failed to prepare bias: %d\n", ret);
1030         }
1031
1032         /* Power down widgets first; try to avoid amplifying pops. */
1033         dapm_seq_run(codec, &down_list, event, dapm_down_seq);
1034
1035         /* Now power up. */
1036         dapm_seq_run(codec, &up_list, event, dapm_up_seq);
1037
1038         /* If we just powered the last thing off drop to standby bias */
1039         if (codec->bias_level == SND_SOC_BIAS_PREPARE && !sys_power) {
1040                 ret = snd_soc_dapm_set_bias_level(socdev,
1041                                                   SND_SOC_BIAS_STANDBY);
1042                 if (ret != 0)
1043                         pr_err("Failed to apply standby bias: %d\n", ret);
1044         }
1045
1046         /* If we just powered up then move to active bias */
1047         if (codec->bias_level == SND_SOC_BIAS_PREPARE && sys_power) {
1048                 ret = snd_soc_dapm_set_bias_level(socdev,
1049                                                   SND_SOC_BIAS_ON);
1050                 if (ret != 0)
1051                         pr_err("Failed to apply active bias: %d\n", ret);
1052         }
1053
1054         pop_dbg(codec->pop_time, "DAPM sequencing finished, waiting %dms\n",
1055                 codec->pop_time);
1056
1057         return 0;
1058 }
1059
1060 #ifdef DEBUG
1061 static void dbg_dump_dapm(struct snd_soc_codec* codec, const char *action)
1062 {
1063         struct snd_soc_dapm_widget *w;
1064         struct snd_soc_dapm_path *p = NULL;
1065         int in, out;
1066
1067         printk("DAPM %s %s\n", codec->name, action);
1068
1069         list_for_each_entry(w, &codec->dapm_widgets, list) {
1070
1071                 /* only display widgets that effect routing */
1072                 switch (w->id) {
1073                 case snd_soc_dapm_pre:
1074                 case snd_soc_dapm_post:
1075                 case snd_soc_dapm_vmid:
1076                         continue;
1077                 case snd_soc_dapm_mux:
1078                 case snd_soc_dapm_value_mux:
1079                 case snd_soc_dapm_output:
1080                 case snd_soc_dapm_input:
1081                 case snd_soc_dapm_switch:
1082                 case snd_soc_dapm_hp:
1083                 case snd_soc_dapm_mic:
1084                 case snd_soc_dapm_spk:
1085                 case snd_soc_dapm_line:
1086                 case snd_soc_dapm_micbias:
1087                 case snd_soc_dapm_dac:
1088                 case snd_soc_dapm_adc:
1089                 case snd_soc_dapm_pga:
1090                 case snd_soc_dapm_mixer:
1091                 case snd_soc_dapm_mixer_named_ctl:
1092                 case snd_soc_dapm_supply:
1093                 case snd_soc_dapm_aif_in:
1094                 case snd_soc_dapm_aif_out:
1095                         if (w->name) {
1096                                 in = is_connected_input_ep(w);
1097                                 dapm_clear_walk(w->codec);
1098                                 out = is_connected_output_ep(w);
1099                                 dapm_clear_walk(w->codec);
1100                                 printk("%s: %s  in %d out %d\n", w->name,
1101                                         w->power ? "On":"Off",in, out);
1102
1103                                 list_for_each_entry(p, &w->sources, list_sink) {
1104                                         if (p->connect)
1105                                                 printk(" in  %s %s\n", p->name ? p->name : "static",
1106                                                         p->source->name);
1107                                 }
1108                                 list_for_each_entry(p, &w->sinks, list_source) {
1109                                         if (p->connect)
1110                                                 printk(" out %s %s\n", p->name ? p->name : "static",
1111                                                         p->sink->name);
1112                                 }
1113                         }
1114                 break;
1115                 }
1116         }
1117 }
1118 #endif
1119
1120 #ifdef CONFIG_DEBUG_FS
1121 static int dapm_widget_power_open_file(struct inode *inode, struct file *file)
1122 {
1123         file->private_data = inode->i_private;
1124         return 0;
1125 }
1126
1127 static ssize_t dapm_widget_power_read_file(struct file *file,
1128                                            char __user *user_buf,
1129                                            size_t count, loff_t *ppos)
1130 {
1131         struct snd_soc_dapm_widget *w = file->private_data;
1132         char *buf;
1133         int in, out;
1134         ssize_t ret;
1135         struct snd_soc_dapm_path *p = NULL;
1136
1137         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1138         if (!buf)
1139                 return -ENOMEM;
1140
1141         in = is_connected_input_ep(w);
1142         dapm_clear_walk(w->codec);
1143         out = is_connected_output_ep(w);
1144         dapm_clear_walk(w->codec);
1145
1146         ret = snprintf(buf, PAGE_SIZE, "%s: %s  in %d out %d\n",
1147                        w->name, w->power ? "On" : "Off", in, out);
1148
1149         if (w->sname)
1150                 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1151                                 w->sname,
1152                                 w->active ? "active" : "inactive");
1153
1154         list_for_each_entry(p, &w->sources, list_sink) {
1155                 if (p->connect)
1156                         ret += snprintf(buf + ret, PAGE_SIZE - ret,
1157                                         " in  %s %s\n",
1158                                         p->name ? p->name : "static",
1159                                         p->source->name);
1160         }
1161         list_for_each_entry(p, &w->sinks, list_source) {
1162                 if (p->connect)
1163                         ret += snprintf(buf + ret, PAGE_SIZE - ret,
1164                                         " out %s %s\n",
1165                                         p->name ? p->name : "static",
1166                                         p->sink->name);
1167         }
1168
1169         ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1170
1171         kfree(buf);
1172         return ret;
1173 }
1174
1175 static const struct file_operations dapm_widget_power_fops = {
1176         .open = dapm_widget_power_open_file,
1177         .read = dapm_widget_power_read_file,
1178 };
1179
1180 void snd_soc_dapm_debugfs_init(struct snd_soc_codec *codec)
1181 {
1182         struct snd_soc_dapm_widget *w;
1183         struct dentry *d;
1184
1185         if (!codec->debugfs_dapm)
1186                 return;
1187
1188         list_for_each_entry(w, &codec->dapm_widgets, list) {
1189                 if (!w->name)
1190                         continue;
1191
1192                 d = debugfs_create_file(w->name, 0444,
1193                                         codec->debugfs_dapm, w,
1194                                         &dapm_widget_power_fops);
1195                 if (!d)
1196                         printk(KERN_WARNING
1197                                "ASoC: Failed to create %s debugfs file\n",
1198                                w->name);
1199         }
1200 }
1201 #else
1202 void snd_soc_dapm_debugfs_init(struct snd_soc_codec *codec)
1203 {
1204 }
1205 #endif
1206
1207 /* test and update the power status of a mux widget */
1208 static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
1209                                  struct snd_kcontrol *kcontrol, int mask,
1210                                  int mux, int val, struct soc_enum *e)
1211 {
1212         struct snd_soc_dapm_path *path;
1213         int found = 0;
1214
1215         if (widget->id != snd_soc_dapm_mux &&
1216             widget->id != snd_soc_dapm_value_mux)
1217                 return -ENODEV;
1218
1219         if (!snd_soc_test_bits(widget->codec, e->reg, mask, val))
1220                 return 0;
1221
1222         /* find dapm widget path assoc with kcontrol */
1223         list_for_each_entry(path, &widget->codec->dapm_paths, list) {
1224                 if (path->kcontrol != kcontrol)
1225                         continue;
1226
1227                 if (!path->name || !e->texts[mux])
1228                         continue;
1229
1230                 found = 1;
1231                 /* we now need to match the string in the enum to the path */
1232                 if (!(strcmp(path->name, e->texts[mux])))
1233                         path->connect = 1; /* new connection */
1234                 else
1235                         path->connect = 0; /* old connection must be powered down */
1236         }
1237
1238         if (found) {
1239                 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
1240                 dump_dapm(widget->codec, "mux power update");
1241         }
1242
1243         return 0;
1244 }
1245
1246 /* test and update the power status of a mux widget */
1247 //copy on 2.6.34  by qjb 
1248 static int dapm_mux_update_power_34(struct snd_soc_dapm_widget *widget,
1249                                  struct snd_kcontrol *kcontrol, int change,
1250                                  int mux, struct soc_enum *e)
1251 {
1252         struct snd_soc_dapm_path *path;
1253         int found = 0;
1254
1255         if (widget->id != snd_soc_dapm_mux &&
1256             widget->id != snd_soc_dapm_value_mux)
1257                 return -ENODEV;
1258
1259         if (!change)
1260                 return 0;
1261
1262         /* find dapm widget path assoc with kcontrol */
1263         list_for_each_entry(path, &widget->codec->dapm_paths, list) {
1264                 if (path->kcontrol != kcontrol)
1265                         continue;
1266
1267                 if (!path->name || !e->texts[mux])
1268                         continue;
1269
1270                 found = 1;
1271                 /* we now need to match the string in the enum to the path */
1272                 if (!(strcmp(path->name, e->texts[mux])))
1273                         path->connect = 1; /* new connection */
1274                 else
1275                         path->connect = 0; /* old connection must be powered down */
1276         }
1277
1278         if (found)
1279                 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
1280
1281         return 0;
1282 }
1283
1284 /* test and update the power status of a mixer or switch widget */
1285 static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
1286                                    struct snd_kcontrol *kcontrol, int reg,
1287                                    int val_mask, int val, int invert)
1288 {
1289         struct snd_soc_dapm_path *path;
1290         int found = 0;
1291
1292         if (widget->id != snd_soc_dapm_mixer &&
1293             widget->id != snd_soc_dapm_mixer_named_ctl &&
1294             widget->id != snd_soc_dapm_switch)
1295                 return -ENODEV;
1296
1297         if (!snd_soc_test_bits(widget->codec, reg, val_mask, val))
1298                 return 0;
1299
1300         /* find dapm widget path assoc with kcontrol */
1301         list_for_each_entry(path, &widget->codec->dapm_paths, list) {
1302                 if (path->kcontrol != kcontrol)
1303                         continue;
1304
1305                 /* found, now check type */
1306                 found = 1;
1307                 if (val)
1308                         /* new connection */
1309                         path->connect = invert ? 0:1;
1310                 else
1311                         /* old connection must be powered down */
1312                         path->connect = invert ? 1:0;
1313                 break;
1314         }
1315
1316         if (found) {
1317                 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
1318                 dump_dapm(widget->codec, "mixer power update");
1319         }
1320
1321         return 0;
1322 }
1323
1324 /* show dapm widget status in sys fs */
1325 static ssize_t dapm_widget_show(struct device *dev,
1326         struct device_attribute *attr, char *buf)
1327 {
1328         struct snd_soc_device *devdata = dev_get_drvdata(dev);
1329         struct snd_soc_codec *codec = devdata->card->codec;
1330         struct snd_soc_dapm_widget *w;
1331         int count = 0;
1332         char *state = "not set";
1333
1334         list_for_each_entry(w, &codec->dapm_widgets, list) {
1335
1336                 /* only display widgets that burnm power */
1337                 switch (w->id) {
1338                 case snd_soc_dapm_hp:
1339                 case snd_soc_dapm_mic:
1340                 case snd_soc_dapm_spk:
1341                 case snd_soc_dapm_line:
1342                 case snd_soc_dapm_micbias:
1343                 case snd_soc_dapm_dac:
1344                 case snd_soc_dapm_adc:
1345                 case snd_soc_dapm_pga:
1346                 case snd_soc_dapm_mixer:
1347                 case snd_soc_dapm_mixer_named_ctl:
1348                 case snd_soc_dapm_supply:
1349                         if (w->name)
1350                                 count += sprintf(buf + count, "%s: %s\n",
1351                                         w->name, w->power ? "On":"Off");
1352                 break;
1353                 default:
1354                 break;
1355                 }
1356         }
1357
1358         switch (codec->bias_level) {
1359         case SND_SOC_BIAS_ON:
1360                 state = "On";
1361                 break;
1362         case SND_SOC_BIAS_PREPARE:
1363                 state = "Prepare";
1364                 break;
1365         case SND_SOC_BIAS_STANDBY:
1366                 state = "Standby";
1367                 break;
1368         case SND_SOC_BIAS_OFF:
1369                 state = "Off";
1370                 break;
1371         }
1372         count += sprintf(buf + count, "PM State: %s\n", state);
1373
1374         return count;
1375 }
1376
1377 static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
1378
1379 int snd_soc_dapm_sys_add(struct device *dev)
1380 {
1381         return device_create_file(dev, &dev_attr_dapm_widget);
1382 }
1383
1384 static void snd_soc_dapm_sys_remove(struct device *dev)
1385 {
1386         device_remove_file(dev, &dev_attr_dapm_widget);
1387 }
1388
1389 /* free all dapm widgets and resources */
1390 static void dapm_free_widgets(struct snd_soc_codec *codec)
1391 {
1392         struct snd_soc_dapm_widget *w, *next_w;
1393         struct snd_soc_dapm_path *p, *next_p;
1394
1395         list_for_each_entry_safe(w, next_w, &codec->dapm_widgets, list) {
1396                 list_del(&w->list);
1397                 kfree(w);
1398         }
1399
1400         list_for_each_entry_safe(p, next_p, &codec->dapm_paths, list) {
1401                 list_del(&p->list);
1402                 kfree(p->long_name);
1403                 kfree(p);
1404         }
1405 }
1406
1407 static int snd_soc_dapm_set_pin(struct snd_soc_codec *codec,
1408                                 const char *pin, int status)
1409 {
1410         struct snd_soc_dapm_widget *w;
1411
1412         list_for_each_entry(w, &codec->dapm_widgets, list) {
1413                 if (!strcmp(w->name, pin)) {
1414                         pr_debug("dapm: %s: pin %s\n", codec->name, pin);
1415                         w->connected = status;
1416                         return 0;
1417                 }
1418         }
1419
1420         pr_err("dapm: %s: configuring unknown pin %s\n", codec->name, pin);
1421         return -EINVAL;
1422 }
1423
1424 /**
1425  * snd_soc_dapm_sync - scan and power dapm paths
1426  * @codec: audio codec
1427  *
1428  * Walks all dapm audio paths and powers widgets according to their
1429  * stream or path usage.
1430  *
1431  * Returns 0 for success.
1432  */
1433 int snd_soc_dapm_sync(struct snd_soc_codec *codec)
1434 {
1435         int ret = dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
1436         dump_dapm(codec, "sync");
1437         return ret;
1438 }
1439 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
1440
1441 static int snd_soc_dapm_add_route(struct snd_soc_codec *codec,
1442         const char *sink, const char *control, const char *source)
1443 {
1444         struct snd_soc_dapm_path *path;
1445         struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
1446         int ret = 0;
1447
1448         /* find src and dest widgets */
1449         list_for_each_entry(w, &codec->dapm_widgets, list) {
1450
1451                 if (!wsink && !(strcmp(w->name, sink))) {
1452                         wsink = w;
1453                         continue;
1454                 }
1455                 if (!wsource && !(strcmp(w->name, source))) {
1456                         wsource = w;
1457                 }
1458         }
1459
1460         if (wsource == NULL || wsink == NULL)
1461                 return -ENODEV;
1462
1463         path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
1464         if (!path)
1465                 return -ENOMEM;
1466
1467         path->source = wsource;
1468         path->sink = wsink;
1469         INIT_LIST_HEAD(&path->list);
1470         INIT_LIST_HEAD(&path->list_source);
1471         INIT_LIST_HEAD(&path->list_sink);
1472
1473         /* check for external widgets */
1474         if (wsink->id == snd_soc_dapm_input) {
1475                 if (wsource->id == snd_soc_dapm_micbias ||
1476                         wsource->id == snd_soc_dapm_mic ||
1477                         wsource->id == snd_soc_dapm_line ||
1478                         wsource->id == snd_soc_dapm_output)
1479                         wsink->ext = 1;
1480         }
1481         if (wsource->id == snd_soc_dapm_output) {
1482                 if (wsink->id == snd_soc_dapm_spk ||
1483                         wsink->id == snd_soc_dapm_hp ||
1484                         wsink->id == snd_soc_dapm_line ||
1485                         wsink->id == snd_soc_dapm_input)
1486                         wsource->ext = 1;
1487         }
1488
1489         /* connect static paths */
1490         if (control == NULL) {
1491                 list_add(&path->list, &codec->dapm_paths);
1492                 list_add(&path->list_sink, &wsink->sources);
1493                 list_add(&path->list_source, &wsource->sinks);
1494                 path->connect = 1;
1495                 return 0;
1496         }
1497
1498         /* connect dynamic paths */
1499         switch(wsink->id) {
1500         case snd_soc_dapm_adc:
1501         case snd_soc_dapm_dac:
1502         case snd_soc_dapm_pga:
1503         case snd_soc_dapm_input:
1504         case snd_soc_dapm_output:
1505         case snd_soc_dapm_micbias:
1506         case snd_soc_dapm_vmid:
1507         case snd_soc_dapm_pre:
1508         case snd_soc_dapm_post:
1509         case snd_soc_dapm_supply:
1510         case snd_soc_dapm_aif_in:
1511         case snd_soc_dapm_aif_out:
1512                 list_add(&path->list, &codec->dapm_paths);
1513                 list_add(&path->list_sink, &wsink->sources);
1514                 list_add(&path->list_source, &wsource->sinks);
1515                 path->connect = 1;
1516                 return 0;
1517         case snd_soc_dapm_mux:
1518         case snd_soc_dapm_value_mux:
1519                 ret = dapm_connect_mux(codec, wsource, wsink, path, control,
1520                         &wsink->kcontrols[0]);
1521                 if (ret != 0)
1522                         goto err;
1523                 break;
1524         case snd_soc_dapm_switch:
1525         case snd_soc_dapm_mixer:
1526         case snd_soc_dapm_mixer_named_ctl:
1527                 ret = dapm_connect_mixer(codec, wsource, wsink, path, control);
1528                 if (ret != 0)
1529                         goto err;
1530                 break;
1531         case snd_soc_dapm_hp:
1532         case snd_soc_dapm_mic:
1533         case snd_soc_dapm_line:
1534         case snd_soc_dapm_spk:
1535                 list_add(&path->list, &codec->dapm_paths);
1536                 list_add(&path->list_sink, &wsink->sources);
1537                 list_add(&path->list_source, &wsource->sinks);
1538                 path->connect = 0;
1539                 return 0;
1540         }
1541         return 0;
1542
1543 err:
1544         printk(KERN_WARNING "asoc: no dapm match for %s --> %s --> %s\n", source,
1545                 control, sink);
1546         kfree(path);
1547         return ret;
1548 }
1549
1550 /**
1551  * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1552  * @codec: codec
1553  * @route: audio routes
1554  * @num: number of routes
1555  *
1556  * Connects 2 dapm widgets together via a named audio path. The sink is
1557  * the widget receiving the audio signal, whilst the source is the sender
1558  * of the audio signal.
1559  *
1560  * Returns 0 for success else error. On error all resources can be freed
1561  * with a call to snd_soc_card_free().
1562  */
1563 int snd_soc_dapm_add_routes(struct snd_soc_codec *codec,
1564                             const struct snd_soc_dapm_route *route, int num)
1565 {
1566         int i, ret;
1567
1568         for (i = 0; i < num; i++) {
1569                 ret = snd_soc_dapm_add_route(codec, route->sink,
1570                                              route->control, route->source);
1571                 if (ret < 0) {
1572                         printk(KERN_ERR "Failed to add route %s->%s\n",
1573                                route->source,
1574                                route->sink);
1575                         return ret;
1576                 }
1577                 route++;
1578         }
1579
1580         return 0;
1581 }
1582 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
1583
1584 /**
1585  * snd_soc_dapm_new_widgets - add new dapm widgets
1586  * @codec: audio codec
1587  *
1588  * Checks the codec for any new dapm widgets and creates them if found.
1589  *
1590  * Returns 0 for success.
1591  */
1592 int snd_soc_dapm_new_widgets(struct snd_soc_codec *codec)
1593 {
1594         struct snd_soc_dapm_widget *w;
1595
1596         list_for_each_entry(w, &codec->dapm_widgets, list)
1597         {
1598                 if (w->new)
1599                         continue;
1600
1601                 switch(w->id) {
1602                 case snd_soc_dapm_switch:
1603                 case snd_soc_dapm_mixer:
1604                 case snd_soc_dapm_mixer_named_ctl:
1605                         w->power_check = dapm_generic_check_power;
1606                         dapm_new_mixer(codec, w);
1607                         break;
1608                 case snd_soc_dapm_mux:
1609                 case snd_soc_dapm_value_mux:
1610                         w->power_check = dapm_generic_check_power;
1611                         dapm_new_mux(codec, w);
1612                         break;
1613                 case snd_soc_dapm_adc:
1614                 case snd_soc_dapm_aif_out:
1615                         w->power_check = dapm_adc_check_power;
1616                         break;
1617                 case snd_soc_dapm_dac:
1618                 case snd_soc_dapm_aif_in:
1619                         w->power_check = dapm_dac_check_power;
1620                         break;
1621                 case snd_soc_dapm_pga:
1622                         w->power_check = dapm_generic_check_power;
1623                         dapm_new_pga(codec, w);
1624                         break;
1625                 case snd_soc_dapm_input:
1626                 case snd_soc_dapm_output:
1627                 case snd_soc_dapm_micbias:
1628                 case snd_soc_dapm_spk:
1629                 case snd_soc_dapm_hp:
1630                 case snd_soc_dapm_mic:
1631                 case snd_soc_dapm_line:
1632                         w->power_check = dapm_generic_check_power;
1633                         break;
1634                 case snd_soc_dapm_supply:
1635                         w->power_check = dapm_supply_check_power;
1636                 case snd_soc_dapm_vmid:
1637                 case snd_soc_dapm_pre:
1638                 case snd_soc_dapm_post:
1639                         break;
1640                 }
1641                 w->new = 1;
1642         }
1643
1644         dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
1645         return 0;
1646 }
1647 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
1648
1649 /**
1650  * snd_soc_dapm_get_volsw - dapm mixer get callback
1651  * @kcontrol: mixer control
1652  * @ucontrol: control element information
1653  *
1654  * Callback to get the value of a dapm mixer control.
1655  *
1656  * Returns 0 for success.
1657  */
1658 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
1659         struct snd_ctl_elem_value *ucontrol)
1660 {
1661         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1662         struct soc_mixer_control *mc =
1663                 (struct soc_mixer_control *)kcontrol->private_value;
1664         unsigned int reg = mc->reg;
1665         unsigned int shift = mc->shift;
1666         unsigned int rshift = mc->rshift;
1667         int max = mc->max;
1668         unsigned int invert = mc->invert;
1669         unsigned int mask = (1 << fls(max)) - 1;
1670
1671         /* return the saved value if we are powered down */
1672         if (widget->id == snd_soc_dapm_pga && !widget->power) {
1673                 ucontrol->value.integer.value[0] = widget->saved_value;
1674                 return 0;
1675         }
1676
1677         ucontrol->value.integer.value[0] =
1678                 (snd_soc_read(widget->codec, reg) >> shift) & mask;
1679         if (shift != rshift)
1680                 ucontrol->value.integer.value[1] =
1681                         (snd_soc_read(widget->codec, reg) >> rshift) & mask;
1682         if (invert) {
1683                 ucontrol->value.integer.value[0] =
1684                         max - ucontrol->value.integer.value[0];
1685                 if (shift != rshift)
1686                         ucontrol->value.integer.value[1] =
1687                                 max - ucontrol->value.integer.value[1];
1688         }
1689
1690         return 0;
1691 }
1692 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
1693
1694 /**
1695  * snd_soc_dapm_put_volsw - dapm mixer set callback
1696  * @kcontrol: mixer control
1697  * @ucontrol: control element information
1698  *
1699  * Callback to set the value of a dapm mixer control.
1700  *
1701  * Returns 0 for success.
1702  */
1703 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
1704         struct snd_ctl_elem_value *ucontrol)
1705 {
1706         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1707         struct soc_mixer_control *mc =
1708                 (struct soc_mixer_control *)kcontrol->private_value;
1709         unsigned int reg = mc->reg;
1710         unsigned int shift = mc->shift;
1711         unsigned int rshift = mc->rshift;
1712         int max = mc->max;
1713         unsigned int mask = (1 << fls(max)) - 1;
1714         unsigned int invert = mc->invert;
1715         unsigned int val, val2, val_mask;
1716         int ret;
1717
1718         val = (ucontrol->value.integer.value[0] & mask);
1719
1720         if (invert)
1721                 val = max - val;
1722         val_mask = mask << shift;
1723         val = val << shift;
1724         if (shift != rshift) {
1725                 val2 = (ucontrol->value.integer.value[1] & mask);
1726                 if (invert)
1727                         val2 = max - val2;
1728                 val_mask |= mask << rshift;
1729                 val |= val2 << rshift;
1730         }
1731
1732         mutex_lock(&widget->codec->mutex);
1733         widget->value = val;
1734
1735         /* save volume value if the widget is powered down */
1736         if (widget->id == snd_soc_dapm_pga && !widget->power) {
1737                 widget->saved_value = val;
1738                 mutex_unlock(&widget->codec->mutex);
1739                 return 1;
1740         }
1741
1742         dapm_mixer_update_power(widget, kcontrol, reg, val_mask, val, invert);
1743         if (widget->event) {
1744                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1745                         ret = widget->event(widget, kcontrol,
1746                                                 SND_SOC_DAPM_PRE_REG);
1747                         if (ret < 0) {
1748                                 ret = 1;
1749                                 goto out;
1750                         }
1751                 }
1752                 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1753                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1754                         ret = widget->event(widget, kcontrol,
1755                                                 SND_SOC_DAPM_POST_REG);
1756         } else
1757                 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1758
1759 out:
1760         mutex_unlock(&widget->codec->mutex);
1761         return ret;
1762 }
1763 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
1764
1765 /**
1766  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1767  * @kcontrol: mixer control
1768  * @ucontrol: control element information
1769  *
1770  * Callback to get the value of a dapm enumerated double mixer control.
1771  *
1772  * Returns 0 for success.
1773  */
1774 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
1775         struct snd_ctl_elem_value *ucontrol)
1776 {
1777         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1778         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1779         unsigned int val, bitmask;
1780
1781         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
1782                 ;
1783         val = snd_soc_read(widget->codec, e->reg);
1784         ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
1785         if (e->shift_l != e->shift_r)
1786                 ucontrol->value.enumerated.item[1] =
1787                         (val >> e->shift_r) & (bitmask - 1);
1788
1789         return 0;
1790 }
1791 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
1792
1793 /**
1794  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1795  * @kcontrol: mixer control
1796  * @ucontrol: control element information
1797  *
1798  * Callback to set the value of a dapm enumerated double mixer control.
1799  *
1800  * Returns 0 for success.
1801  */
1802 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
1803         struct snd_ctl_elem_value *ucontrol)
1804 {
1805         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1806         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1807         unsigned int val, mux;
1808         unsigned int mask, bitmask;
1809         int ret = 0;
1810
1811         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
1812                 ;
1813         if (ucontrol->value.enumerated.item[0] > e->max - 1)
1814                 return -EINVAL;
1815         mux = ucontrol->value.enumerated.item[0];
1816         val = mux << e->shift_l;
1817         mask = (bitmask - 1) << e->shift_l;
1818         if (e->shift_l != e->shift_r) {
1819                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1820                         return -EINVAL;
1821                 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1822                 mask |= (bitmask - 1) << e->shift_r;
1823         }
1824
1825         mutex_lock(&widget->codec->mutex);
1826         widget->value = val;
1827         dapm_mux_update_power(widget, kcontrol, mask, mux, val, e);
1828         if (widget->event) {
1829                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1830                         ret = widget->event(widget,
1831                                 kcontrol, SND_SOC_DAPM_PRE_REG);
1832                         if (ret < 0)
1833                                 goto out;
1834                 }
1835                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1836                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1837                         ret = widget->event(widget,
1838                                 kcontrol, SND_SOC_DAPM_POST_REG);
1839         } else
1840                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1841
1842 out:
1843         mutex_unlock(&widget->codec->mutex);
1844         return ret;
1845 }
1846 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
1847
1848 /**
1849  * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
1850  * @kcontrol: mixer control
1851  * @ucontrol: control element information
1852  *
1853  * Returns 0 for success.
1854  */
1855  //copy on 2.6.34  by qjb 
1856 int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol,
1857                                struct snd_ctl_elem_value *ucontrol)
1858 {
1859         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1860
1861         ucontrol->value.enumerated.item[0] = widget->value;
1862
1863         return 0;
1864 }
1865 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt);
1866
1867 /**
1868  * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
1869  * @kcontrol: mixer control
1870  * @ucontrol: control element information
1871  *
1872  * Returns 0 for success.
1873  */
1874  //copy on 2.6.34  by qjb 
1875 int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
1876                                struct snd_ctl_elem_value *ucontrol)
1877 {
1878         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1879         struct soc_enum *e =
1880                 (struct soc_enum *)kcontrol->private_value;
1881         int change;
1882         int ret = 0;
1883
1884         if (ucontrol->value.enumerated.item[0] >= e->max)
1885                 return -EINVAL;
1886
1887         mutex_lock(&widget->codec->mutex);
1888
1889         change = widget->value != ucontrol->value.enumerated.item[0];
1890         widget->value = ucontrol->value.enumerated.item[0];
1891         dapm_mux_update_power_34(widget, kcontrol, change, widget->value, e);
1892
1893         mutex_unlock(&widget->codec->mutex);
1894         return ret;
1895 }
1896 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt);
1897
1898 /**
1899  * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
1900  *                                      callback
1901  * @kcontrol: mixer control
1902  * @ucontrol: control element information
1903  *
1904  * Callback to get the value of a dapm semi enumerated double mixer control.
1905  *
1906  * Semi enumerated mixer: the enumerated items are referred as values. Can be
1907  * used for handling bitfield coded enumeration for example.
1908  *
1909  * Returns 0 for success.
1910  */
1911 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
1912         struct snd_ctl_elem_value *ucontrol)
1913 {
1914         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1915         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1916         unsigned int reg_val, val, mux;
1917
1918         reg_val = snd_soc_read(widget->codec, e->reg);
1919         val = (reg_val >> e->shift_l) & e->mask;
1920         for (mux = 0; mux < e->max; mux++) {
1921                 if (val == e->values[mux])
1922                         break;
1923         }
1924         ucontrol->value.enumerated.item[0] = mux;
1925         if (e->shift_l != e->shift_r) {
1926                 val = (reg_val >> e->shift_r) & e->mask;
1927                 for (mux = 0; mux < e->max; mux++) {
1928                         if (val == e->values[mux])
1929                                 break;
1930                 }
1931                 ucontrol->value.enumerated.item[1] = mux;
1932         }
1933
1934         return 0;
1935 }
1936 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
1937
1938 /**
1939  * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
1940  *                                      callback
1941  * @kcontrol: mixer control
1942  * @ucontrol: control element information
1943  *
1944  * Callback to set the value of a dapm semi enumerated double mixer control.
1945  *
1946  * Semi enumerated mixer: the enumerated items are referred as values. Can be
1947  * used for handling bitfield coded enumeration for example.
1948  *
1949  * Returns 0 for success.
1950  */
1951 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
1952         struct snd_ctl_elem_value *ucontrol)
1953 {
1954         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1955         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1956         unsigned int val, mux;
1957         unsigned int mask;
1958         int ret = 0;
1959
1960         if (ucontrol->value.enumerated.item[0] > e->max - 1)
1961                 return -EINVAL;
1962         mux = ucontrol->value.enumerated.item[0];
1963         val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1964         mask = e->mask << e->shift_l;
1965         if (e->shift_l != e->shift_r) {
1966                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1967                         return -EINVAL;
1968                 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1969                 mask |= e->mask << e->shift_r;
1970         }
1971
1972         mutex_lock(&widget->codec->mutex);
1973         widget->value = val;
1974         dapm_mux_update_power(widget, kcontrol, mask, mux, val, e);
1975         if (widget->event) {
1976                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1977                         ret = widget->event(widget,
1978                                 kcontrol, SND_SOC_DAPM_PRE_REG);
1979                         if (ret < 0)
1980                                 goto out;
1981                 }
1982                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1983                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1984                         ret = widget->event(widget,
1985                                 kcontrol, SND_SOC_DAPM_POST_REG);
1986         } else
1987                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1988
1989 out:
1990         mutex_unlock(&widget->codec->mutex);
1991         return ret;
1992 }
1993 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
1994
1995 /**
1996  * snd_soc_dapm_info_pin_switch - Info for a pin switch
1997  *
1998  * @kcontrol: mixer control
1999  * @uinfo: control element information
2000  *
2001  * Callback to provide information about a pin switch control.
2002  */
2003 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
2004                                  struct snd_ctl_elem_info *uinfo)
2005 {
2006         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2007         uinfo->count = 1;
2008         uinfo->value.integer.min = 0;
2009         uinfo->value.integer.max = 1;
2010
2011         return 0;
2012 }
2013 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
2014
2015 /**
2016  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2017  *
2018  * @kcontrol: mixer control
2019  * @ucontrol: Value
2020  */
2021 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
2022                                 struct snd_ctl_elem_value *ucontrol)
2023 {
2024         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2025         const char *pin = (const char *)kcontrol->private_value;
2026
2027         mutex_lock(&codec->mutex);
2028
2029         ucontrol->value.integer.value[0] =
2030                 snd_soc_dapm_get_pin_status(codec, pin);
2031
2032         mutex_unlock(&codec->mutex);
2033
2034         return 0;
2035 }
2036 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
2037
2038 /**
2039  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2040  *
2041  * @kcontrol: mixer control
2042  * @ucontrol: Value
2043  */
2044 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
2045                                 struct snd_ctl_elem_value *ucontrol)
2046 {
2047         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2048         const char *pin = (const char *)kcontrol->private_value;
2049
2050         mutex_lock(&codec->mutex);
2051
2052         if (ucontrol->value.integer.value[0])
2053                 snd_soc_dapm_enable_pin(codec, pin);
2054         else
2055                 snd_soc_dapm_disable_pin(codec, pin);
2056
2057         snd_soc_dapm_sync(codec);
2058
2059         mutex_unlock(&codec->mutex);
2060
2061         return 0;
2062 }
2063 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
2064
2065 /**
2066  * snd_soc_dapm_new_control - create new dapm control
2067  * @codec: audio codec
2068  * @widget: widget template
2069  *
2070  * Creates a new dapm control based upon the template.
2071  *
2072  * Returns 0 for success else error.
2073  */
2074 int snd_soc_dapm_new_control(struct snd_soc_codec *codec,
2075         const struct snd_soc_dapm_widget *widget)
2076 {
2077         struct snd_soc_dapm_widget *w;
2078
2079         if ((w = dapm_cnew_widget(widget)) == NULL)
2080                 return -ENOMEM;
2081
2082         w->codec = codec;
2083         INIT_LIST_HEAD(&w->sources);
2084         INIT_LIST_HEAD(&w->sinks);
2085         INIT_LIST_HEAD(&w->list);
2086         list_add(&w->list, &codec->dapm_widgets);
2087
2088         /* machine layer set ups unconnected pins and insertions */
2089         w->connected = 1;
2090         return 0;
2091 }
2092 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
2093
2094 /**
2095  * snd_soc_dapm_new_controls - create new dapm controls
2096  * @codec: audio codec
2097  * @widget: widget array
2098  * @num: number of widgets
2099  *
2100  * Creates new DAPM controls based upon the templates.
2101  *
2102  * Returns 0 for success else error.
2103  */
2104 int snd_soc_dapm_new_controls(struct snd_soc_codec *codec,
2105         const struct snd_soc_dapm_widget *widget,
2106         int num)
2107 {
2108         int i, ret;
2109
2110         for (i = 0; i < num; i++) {
2111                 ret = snd_soc_dapm_new_control(codec, widget);
2112                 if (ret < 0) {
2113                         printk(KERN_ERR
2114                                "ASoC: Failed to create DAPM control %s: %d\n",
2115                                widget->name, ret);
2116                         return ret;
2117                 }
2118                 widget++;
2119         }
2120         return 0;
2121 }
2122 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
2123
2124
2125 /**
2126  * snd_soc_dapm_stream_event - send a stream event to the dapm core
2127  * @codec: audio codec
2128  * @stream: stream name
2129  * @event: stream event
2130  *
2131  * Sends a stream event to the dapm core. The core then makes any
2132  * necessary widget power changes.
2133  *
2134  * Returns 0 for success else error.
2135  */
2136 int snd_soc_dapm_stream_event(struct snd_soc_codec *codec,
2137         char *stream, int event)
2138 {
2139         struct snd_soc_dapm_widget *w;
2140
2141         if (stream == NULL)
2142                 return 0;
2143
2144         mutex_lock(&codec->mutex);
2145         list_for_each_entry(w, &codec->dapm_widgets, list)
2146         {
2147                 if (!w->sname)
2148                         continue;
2149                 pr_debug("widget %s\n %s stream %s event %d\n",
2150                          w->name, w->sname, stream, event);
2151                 if (strstr(w->sname, stream)) {
2152                         switch(event) {
2153                         case SND_SOC_DAPM_STREAM_START:
2154                                 w->active = 1;
2155                                 break;
2156                         case SND_SOC_DAPM_STREAM_STOP:
2157                                 w->active = 0;
2158                                 break;
2159                         case SND_SOC_DAPM_STREAM_SUSPEND:
2160                                 if (w->active)
2161                                         w->suspend = 1;
2162                                 w->active = 0;
2163                                 break;
2164                         case SND_SOC_DAPM_STREAM_RESUME:
2165                                 if (w->suspend) {
2166                                         w->active = 1;
2167                                         w->suspend = 0;
2168                                 }
2169                                 break;
2170                         case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
2171                                 break;
2172                         case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
2173                                 break;
2174                         }
2175                 }
2176         }
2177
2178         dapm_power_widgets(codec, event);
2179         mutex_unlock(&codec->mutex);
2180         dump_dapm(codec, __func__);
2181         return 0;
2182 }
2183 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event);
2184
2185 /**
2186  * snd_soc_dapm_enable_pin - enable pin.
2187  * @codec: SoC codec
2188  * @pin: pin name
2189  *
2190  * Enables input/output pin and its parents or children widgets iff there is
2191  * a valid audio route and active audio stream.
2192  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2193  * do any widget power switching.
2194  */
2195 int snd_soc_dapm_enable_pin(struct snd_soc_codec *codec, const char *pin)
2196 {
2197         return snd_soc_dapm_set_pin(codec, pin, 1);
2198 }
2199 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
2200
2201 /**
2202  * snd_soc_dapm_disable_pin - disable pin.
2203  * @codec: SoC codec
2204  * @pin: pin name
2205  *
2206  * Disables input/output pin and its parents or children widgets.
2207  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2208  * do any widget power switching.
2209  */
2210 int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, const char *pin)
2211 {
2212         return snd_soc_dapm_set_pin(codec, pin, 0);
2213 }
2214 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
2215
2216 /**
2217  * snd_soc_dapm_nc_pin - permanently disable pin.
2218  * @codec: SoC codec
2219  * @pin: pin name
2220  *
2221  * Marks the specified pin as being not connected, disabling it along
2222  * any parent or child widgets.  At present this is identical to
2223  * snd_soc_dapm_disable_pin() but in future it will be extended to do
2224  * additional things such as disabling controls which only affect
2225  * paths through the pin.
2226  *
2227  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2228  * do any widget power switching.
2229  */
2230 int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, const char *pin)
2231 {
2232         return snd_soc_dapm_set_pin(codec, pin, 0);
2233 }
2234 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
2235
2236 /**
2237  * snd_soc_dapm_get_pin_status - get audio pin status
2238  * @codec: audio codec
2239  * @pin: audio signal pin endpoint (or start point)
2240  *
2241  * Get audio pin status - connected or disconnected.
2242  *
2243  * Returns 1 for connected otherwise 0.
2244  */
2245 int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, const char *pin)
2246 {
2247         struct snd_soc_dapm_widget *w;
2248
2249         list_for_each_entry(w, &codec->dapm_widgets, list) {
2250                 if (!strcmp(w->name, pin))
2251                         return w->connected;
2252         }
2253
2254         return 0;
2255 }
2256 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
2257
2258 /**
2259  * snd_soc_dapm_free - free dapm resources
2260  * @socdev: SoC device
2261  *
2262  * Free all dapm widgets and resources.
2263  */
2264 void snd_soc_dapm_free(struct snd_soc_device *socdev)
2265 {
2266         struct snd_soc_codec *codec = socdev->card->codec;
2267
2268         snd_soc_dapm_sys_remove(socdev->dev);
2269         dapm_free_widgets(codec);
2270 }
2271 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
2272
2273 /*
2274  * snd_soc_dapm_shutdown - callback for system shutdown
2275  */
2276 void snd_soc_dapm_shutdown(struct snd_soc_device *socdev)
2277 {
2278         struct snd_soc_codec *codec = socdev->card->codec;
2279         struct snd_soc_dapm_widget *w;
2280         LIST_HEAD(down_list);
2281         int powerdown = 0;
2282
2283         list_for_each_entry(w, &codec->dapm_widgets, list) {
2284                 if (w->power) {
2285                         dapm_seq_insert(w, &down_list, dapm_down_seq);
2286                         w->power = 0;
2287                         powerdown = 1;
2288                 }
2289         }
2290
2291         /* If there were no widgets to power down we're already in
2292          * standby.
2293          */
2294         if (powerdown) {
2295                 snd_soc_dapm_set_bias_level(socdev, SND_SOC_BIAS_PREPARE);
2296                 dapm_seq_run(codec, &down_list, 0, dapm_down_seq);
2297                 snd_soc_dapm_set_bias_level(socdev, SND_SOC_BIAS_STANDBY);
2298         }
2299
2300         snd_soc_dapm_set_bias_level(socdev, SND_SOC_BIAS_OFF);
2301 }
2302
2303 /* Module information */
2304 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
2305 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
2306 MODULE_LICENSE("GPL");