ASoC: Factor out DAPM power checks for DACs and ADCs
[safe/jmp/linux-2.6] / 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  *      DAC's/ADC's.
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 <sound/core.h>
41 #include <sound/pcm.h>
42 #include <sound/pcm_params.h>
43 #include <sound/soc-dapm.h>
44 #include <sound/initval.h>
45
46 /* debug */
47 #ifdef DEBUG
48 #define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
49 #else
50 #define dump_dapm(codec, action)
51 #endif
52
53 /* dapm power sequences - make this per codec in the future */
54 static int dapm_up_seq[] = {
55         snd_soc_dapm_pre, snd_soc_dapm_micbias, snd_soc_dapm_mic,
56         snd_soc_dapm_mux, snd_soc_dapm_value_mux, snd_soc_dapm_dac,
57         snd_soc_dapm_mixer, snd_soc_dapm_mixer_named_ctl, snd_soc_dapm_pga,
58         snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk, snd_soc_dapm_post
59 };
60
61 static int dapm_down_seq[] = {
62         snd_soc_dapm_pre, snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk,
63         snd_soc_dapm_pga, snd_soc_dapm_mixer_named_ctl, snd_soc_dapm_mixer,
64         snd_soc_dapm_dac, snd_soc_dapm_mic, snd_soc_dapm_micbias,
65         snd_soc_dapm_mux, snd_soc_dapm_value_mux, snd_soc_dapm_post
66 };
67
68 static int dapm_status = 1;
69 module_param(dapm_status, int, 0);
70 MODULE_PARM_DESC(dapm_status, "enable DPM sysfs entries");
71
72 static void pop_wait(u32 pop_time)
73 {
74         if (pop_time)
75                 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
76 }
77
78 static void pop_dbg(u32 pop_time, const char *fmt, ...)
79 {
80         va_list args;
81
82         va_start(args, fmt);
83
84         if (pop_time) {
85                 vprintk(fmt, args);
86                 pop_wait(pop_time);
87         }
88
89         va_end(args);
90 }
91
92 /* create a new dapm widget */
93 static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
94         const struct snd_soc_dapm_widget *_widget)
95 {
96         return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
97 }
98
99 /* set up initial codec paths */
100 static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
101         struct snd_soc_dapm_path *p, int i)
102 {
103         switch (w->id) {
104         case snd_soc_dapm_switch:
105         case snd_soc_dapm_mixer:
106         case snd_soc_dapm_mixer_named_ctl: {
107                 int val;
108                 struct soc_mixer_control *mc = (struct soc_mixer_control *)
109                         w->kcontrols[i].private_value;
110                 unsigned int reg = mc->reg;
111                 unsigned int shift = mc->shift;
112                 int max = mc->max;
113                 unsigned int mask = (1 << fls(max)) - 1;
114                 unsigned int invert = mc->invert;
115
116                 val = snd_soc_read(w->codec, reg);
117                 val = (val >> shift) & mask;
118
119                 if ((invert && !val) || (!invert && val))
120                         p->connect = 1;
121                 else
122                         p->connect = 0;
123         }
124         break;
125         case snd_soc_dapm_mux: {
126                 struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value;
127                 int val, item, bitmask;
128
129                 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
130                 ;
131                 val = snd_soc_read(w->codec, e->reg);
132                 item = (val >> e->shift_l) & (bitmask - 1);
133
134                 p->connect = 0;
135                 for (i = 0; i < e->max; i++) {
136                         if (!(strcmp(p->name, e->texts[i])) && item == i)
137                                 p->connect = 1;
138                 }
139         }
140         break;
141         case snd_soc_dapm_value_mux: {
142                 struct soc_enum *e = (struct soc_enum *)
143                         w->kcontrols[i].private_value;
144                 int val, item;
145
146                 val = snd_soc_read(w->codec, e->reg);
147                 val = (val >> e->shift_l) & e->mask;
148                 for (item = 0; item < e->max; item++) {
149                         if (val == e->values[item])
150                                 break;
151                 }
152
153                 p->connect = 0;
154                 for (i = 0; i < e->max; i++) {
155                         if (!(strcmp(p->name, e->texts[i])) && item == i)
156                                 p->connect = 1;
157                 }
158         }
159         break;
160         /* does not effect routing - always connected */
161         case snd_soc_dapm_pga:
162         case snd_soc_dapm_output:
163         case snd_soc_dapm_adc:
164         case snd_soc_dapm_input:
165         case snd_soc_dapm_dac:
166         case snd_soc_dapm_micbias:
167         case snd_soc_dapm_vmid:
168                 p->connect = 1;
169         break;
170         /* does effect routing - dynamically connected */
171         case snd_soc_dapm_hp:
172         case snd_soc_dapm_mic:
173         case snd_soc_dapm_spk:
174         case snd_soc_dapm_line:
175         case snd_soc_dapm_pre:
176         case snd_soc_dapm_post:
177                 p->connect = 0;
178         break;
179         }
180 }
181
182 /* connect mux widget to it's interconnecting audio paths */
183 static int dapm_connect_mux(struct snd_soc_codec *codec,
184         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
185         struct snd_soc_dapm_path *path, const char *control_name,
186         const struct snd_kcontrol_new *kcontrol)
187 {
188         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
189         int i;
190
191         for (i = 0; i < e->max; i++) {
192                 if (!(strcmp(control_name, e->texts[i]))) {
193                         list_add(&path->list, &codec->dapm_paths);
194                         list_add(&path->list_sink, &dest->sources);
195                         list_add(&path->list_source, &src->sinks);
196                         path->name = (char*)e->texts[i];
197                         dapm_set_path_status(dest, path, 0);
198                         return 0;
199                 }
200         }
201
202         return -ENODEV;
203 }
204
205 /* connect mixer widget to it's interconnecting audio paths */
206 static int dapm_connect_mixer(struct snd_soc_codec *codec,
207         struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
208         struct snd_soc_dapm_path *path, const char *control_name)
209 {
210         int i;
211
212         /* search for mixer kcontrol */
213         for (i = 0; i < dest->num_kcontrols; i++) {
214                 if (!strcmp(control_name, dest->kcontrols[i].name)) {
215                         list_add(&path->list, &codec->dapm_paths);
216                         list_add(&path->list_sink, &dest->sources);
217                         list_add(&path->list_source, &src->sinks);
218                         path->name = dest->kcontrols[i].name;
219                         dapm_set_path_status(dest, path, i);
220                         return 0;
221                 }
222         }
223         return -ENODEV;
224 }
225
226 /* update dapm codec register bits */
227 static int dapm_update_bits(struct snd_soc_dapm_widget *widget)
228 {
229         int change, power;
230         unsigned short old, new;
231         struct snd_soc_codec *codec = widget->codec;
232
233         /* check for valid widgets */
234         if (widget->reg < 0 || widget->id == snd_soc_dapm_input ||
235                 widget->id == snd_soc_dapm_output ||
236                 widget->id == snd_soc_dapm_hp ||
237                 widget->id == snd_soc_dapm_mic ||
238                 widget->id == snd_soc_dapm_line ||
239                 widget->id == snd_soc_dapm_spk)
240                 return 0;
241
242         power = widget->power;
243         if (widget->invert)
244                 power = (power ? 0:1);
245
246         old = snd_soc_read(codec, widget->reg);
247         new = (old & ~(0x1 << widget->shift)) | (power << widget->shift);
248
249         change = old != new;
250         if (change) {
251                 pop_dbg(codec->pop_time, "pop test %s : %s in %d ms\n",
252                         widget->name, widget->power ? "on" : "off",
253                         codec->pop_time);
254                 snd_soc_write(codec, widget->reg, new);
255                 pop_wait(codec->pop_time);
256         }
257         pr_debug("reg %x old %x new %x change %d\n", widget->reg,
258                  old, new, change);
259         return change;
260 }
261
262 /* ramps the volume up or down to minimise pops before or after a
263  * DAPM power event */
264 static int dapm_set_pga(struct snd_soc_dapm_widget *widget, int power)
265 {
266         const struct snd_kcontrol_new *k = widget->kcontrols;
267
268         if (widget->muted && !power)
269                 return 0;
270         if (!widget->muted && power)
271                 return 0;
272
273         if (widget->num_kcontrols && k) {
274                 struct soc_mixer_control *mc =
275                         (struct soc_mixer_control *)k->private_value;
276                 unsigned int reg = mc->reg;
277                 unsigned int shift = mc->shift;
278                 int max = mc->max;
279                 unsigned int mask = (1 << fls(max)) - 1;
280                 unsigned int invert = mc->invert;
281
282                 if (power) {
283                         int i;
284                         /* power up has happended, increase volume to last level */
285                         if (invert) {
286                                 for (i = max; i > widget->saved_value; i--)
287                                         snd_soc_update_bits(widget->codec, reg, mask, i);
288                         } else {
289                                 for (i = 0; i < widget->saved_value; i++)
290                                         snd_soc_update_bits(widget->codec, reg, mask, i);
291                         }
292                         widget->muted = 0;
293                 } else {
294                         /* power down is about to occur, decrease volume to mute */
295                         int val = snd_soc_read(widget->codec, reg);
296                         int i = widget->saved_value = (val >> shift) & mask;
297                         if (invert) {
298                                 for (; i < mask; i++)
299                                         snd_soc_update_bits(widget->codec, reg, mask, i);
300                         } else {
301                                 for (; i > 0; i--)
302                                         snd_soc_update_bits(widget->codec, reg, mask, i);
303                         }
304                         widget->muted = 1;
305                 }
306         }
307         return 0;
308 }
309
310 /* create new dapm mixer control */
311 static int dapm_new_mixer(struct snd_soc_codec *codec,
312         struct snd_soc_dapm_widget *w)
313 {
314         int i, ret = 0;
315         size_t name_len;
316         struct snd_soc_dapm_path *path;
317
318         /* add kcontrol */
319         for (i = 0; i < w->num_kcontrols; i++) {
320
321                 /* match name */
322                 list_for_each_entry(path, &w->sources, list_sink) {
323
324                         /* mixer/mux paths name must match control name */
325                         if (path->name != (char*)w->kcontrols[i].name)
326                                 continue;
327
328                         /* add dapm control with long name.
329                          * for dapm_mixer this is the concatenation of the
330                          * mixer and kcontrol name.
331                          * for dapm_mixer_named_ctl this is simply the
332                          * kcontrol name.
333                          */
334                         name_len = strlen(w->kcontrols[i].name) + 1;
335                         if (w->id != snd_soc_dapm_mixer_named_ctl)
336                                 name_len += 1 + strlen(w->name);
337
338                         path->long_name = kmalloc(name_len, GFP_KERNEL);
339
340                         if (path->long_name == NULL)
341                                 return -ENOMEM;
342
343                         switch (w->id) {
344                         default:
345                                 snprintf(path->long_name, name_len, "%s %s",
346                                          w->name, w->kcontrols[i].name);
347                                 break;
348                         case snd_soc_dapm_mixer_named_ctl:
349                                 snprintf(path->long_name, name_len, "%s",
350                                          w->kcontrols[i].name);
351                                 break;
352                         }
353
354                         path->long_name[name_len - 1] = '\0';
355
356                         path->kcontrol = snd_soc_cnew(&w->kcontrols[i], w,
357                                 path->long_name);
358                         ret = snd_ctl_add(codec->card, path->kcontrol);
359                         if (ret < 0) {
360                                 printk(KERN_ERR "asoc: failed to add dapm kcontrol %s: %d\n",
361                                        path->long_name,
362                                        ret);
363                                 kfree(path->long_name);
364                                 path->long_name = NULL;
365                                 return ret;
366                         }
367                 }
368         }
369         return ret;
370 }
371
372 /* create new dapm mux control */
373 static int dapm_new_mux(struct snd_soc_codec *codec,
374         struct snd_soc_dapm_widget *w)
375 {
376         struct snd_soc_dapm_path *path = NULL;
377         struct snd_kcontrol *kcontrol;
378         int ret = 0;
379
380         if (!w->num_kcontrols) {
381                 printk(KERN_ERR "asoc: mux %s has no controls\n", w->name);
382                 return -EINVAL;
383         }
384
385         kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
386         ret = snd_ctl_add(codec->card, kcontrol);
387         if (ret < 0)
388                 goto err;
389
390         list_for_each_entry(path, &w->sources, list_sink)
391                 path->kcontrol = kcontrol;
392
393         return ret;
394
395 err:
396         printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
397         return ret;
398 }
399
400 /* create new dapm volume control */
401 static int dapm_new_pga(struct snd_soc_codec *codec,
402         struct snd_soc_dapm_widget *w)
403 {
404         struct snd_kcontrol *kcontrol;
405         int ret = 0;
406
407         if (!w->num_kcontrols)
408                 return -EINVAL;
409
410         kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
411         ret = snd_ctl_add(codec->card, kcontrol);
412         if (ret < 0) {
413                 printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
414                 return ret;
415         }
416
417         return ret;
418 }
419
420 /* reset 'walked' bit for each dapm path */
421 static inline void dapm_clear_walk(struct snd_soc_codec *codec)
422 {
423         struct snd_soc_dapm_path *p;
424
425         list_for_each_entry(p, &codec->dapm_paths, list)
426                 p->walked = 0;
427 }
428
429 /*
430  * Recursively check for a completed path to an active or physically connected
431  * output widget. Returns number of complete paths.
432  */
433 static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
434 {
435         struct snd_soc_dapm_path *path;
436         int con = 0;
437
438         if (widget->id == snd_soc_dapm_adc && widget->active)
439                 return 1;
440
441         if (widget->connected) {
442                 /* connected pin ? */
443                 if (widget->id == snd_soc_dapm_output && !widget->ext)
444                         return 1;
445
446                 /* connected jack or spk ? */
447                 if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk ||
448                         widget->id == snd_soc_dapm_line)
449                         return 1;
450         }
451
452         list_for_each_entry(path, &widget->sinks, list_source) {
453                 if (path->walked)
454                         continue;
455
456                 if (path->sink && path->connect) {
457                         path->walked = 1;
458                         con += is_connected_output_ep(path->sink);
459                 }
460         }
461
462         return con;
463 }
464
465 /*
466  * Recursively check for a completed path to an active or physically connected
467  * input widget. Returns number of complete paths.
468  */
469 static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
470 {
471         struct snd_soc_dapm_path *path;
472         int con = 0;
473
474         /* active stream ? */
475         if (widget->id == snd_soc_dapm_dac && widget->active)
476                 return 1;
477
478         if (widget->connected) {
479                 /* connected pin ? */
480                 if (widget->id == snd_soc_dapm_input && !widget->ext)
481                         return 1;
482
483                 /* connected VMID/Bias for lower pops */
484                 if (widget->id == snd_soc_dapm_vmid)
485                         return 1;
486
487                 /* connected jack ? */
488                 if (widget->id == snd_soc_dapm_mic || widget->id == snd_soc_dapm_line)
489                         return 1;
490         }
491
492         list_for_each_entry(path, &widget->sources, list_sink) {
493                 if (path->walked)
494                         continue;
495
496                 if (path->source && path->connect) {
497                         path->walked = 1;
498                         con += is_connected_input_ep(path->source);
499                 }
500         }
501
502         return con;
503 }
504
505 /*
506  * Handler for generic register modifier widget.
507  */
508 int dapm_reg_event(struct snd_soc_dapm_widget *w,
509                    struct snd_kcontrol *kcontrol, int event)
510 {
511         unsigned int val;
512
513         if (SND_SOC_DAPM_EVENT_ON(event))
514                 val = w->on_val;
515         else
516                 val = w->off_val;
517
518         snd_soc_update_bits(w->codec, -(w->reg + 1),
519                             w->mask << w->shift, val << w->shift);
520
521         return 0;
522 }
523 EXPORT_SYMBOL_GPL(dapm_reg_event);
524
525 /* Standard power change method, used to apply power changes to most
526  * widgets.
527  */
528 static int dapm_generic_apply_power(struct snd_soc_dapm_widget *w)
529 {
530         int ret;
531
532         /* call any power change event handlers */
533         if (w->event)
534                 pr_debug("power %s event for %s flags %x\n",
535                          w->power ? "on" : "off",
536                          w->name, w->event_flags);
537
538         /* power up pre event */
539         if (w->power && w->event &&
540             (w->event_flags & SND_SOC_DAPM_PRE_PMU)) {
541                 ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMU);
542                 if (ret < 0)
543                         return ret;
544         }
545
546         /* power down pre event */
547         if (!w->power && w->event &&
548             (w->event_flags & SND_SOC_DAPM_PRE_PMD)) {
549                 ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMD);
550                 if (ret < 0)
551                         return ret;
552         }
553
554         /* Lower PGA volume to reduce pops */
555         if (w->id == snd_soc_dapm_pga && !w->power)
556                 dapm_set_pga(w, w->power);
557
558         dapm_update_bits(w);
559
560         /* Raise PGA volume to reduce pops */
561         if (w->id == snd_soc_dapm_pga && w->power)
562                 dapm_set_pga(w, w->power);
563
564         /* power up post event */
565         if (w->power && w->event &&
566             (w->event_flags & SND_SOC_DAPM_POST_PMU)) {
567                 ret = w->event(w,
568                                NULL, SND_SOC_DAPM_POST_PMU);
569                 if (ret < 0)
570                         return ret;
571         }
572
573         /* power down post event */
574         if (!w->power && w->event &&
575             (w->event_flags & SND_SOC_DAPM_POST_PMD)) {
576                 ret = w->event(w, NULL, SND_SOC_DAPM_POST_PMD);
577                 if (ret < 0)
578                         return ret;
579         }
580
581         return 0;
582 }
583
584 /* Generic check to see if a widget should be powered.
585  */
586 static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
587 {
588         int in, out;
589
590         in = is_connected_input_ep(w);
591         dapm_clear_walk(w->codec);
592         out = is_connected_output_ep(w);
593         dapm_clear_walk(w->codec);
594         return out != 0 && in != 0;
595 }
596
597 /* Check to see if an ADC has power */
598 static int dapm_adc_check_power(struct snd_soc_dapm_widget *w)
599 {
600         int in;
601
602         if (w->active) {
603                 in = is_connected_input_ep(w);
604                 dapm_clear_walk(w->codec);
605                 return in != 0;
606         } else {
607                 return dapm_generic_check_power(w);
608         }
609 }
610
611 /* Check to see if a DAC has power */
612 static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
613 {
614         int out;
615
616         if (w->active) {
617                 out = is_connected_output_ep(w);
618                 dapm_clear_walk(w->codec);
619                 return out != 0;
620         } else {
621                 return dapm_generic_check_power(w);
622         }
623 }
624
625 /*
626  * Scan a single DAPM widget for a complete audio path and update the
627  * power status appropriately.
628  */
629 static int dapm_power_widget(struct snd_soc_codec *codec, int event,
630                              struct snd_soc_dapm_widget *w)
631 {
632         int power, ret;
633
634         /* Work out the new power state */
635         switch (w->id) {
636         case snd_soc_dapm_vmid:
637                 /* No action required */
638                 return 0;
639
640         case snd_soc_dapm_adc:
641                 power = dapm_adc_check_power(w);
642                 break;
643
644         case snd_soc_dapm_dac:
645                 power = dapm_dac_check_power(w);
646                 break;
647
648         case snd_soc_dapm_pre:
649                 if (!w->event)
650                         return 0;
651
652                 if (event == SND_SOC_DAPM_STREAM_START) {
653                         ret = w->event(w,
654                                        NULL, SND_SOC_DAPM_PRE_PMU);
655                         if (ret < 0)
656                                 return ret;
657                 } else if (event == SND_SOC_DAPM_STREAM_STOP) {
658                         ret = w->event(w,
659                                        NULL, SND_SOC_DAPM_PRE_PMD);
660                         if (ret < 0)
661                                 return ret;
662                 }
663                 return 0;
664
665         case snd_soc_dapm_post:
666                 if (!w->event)
667                         return 0;
668
669                 if (event == SND_SOC_DAPM_STREAM_START) {
670                         ret = w->event(w,
671                                        NULL, SND_SOC_DAPM_POST_PMU);
672                         if (ret < 0)
673                                 return ret;
674                 } else if (event == SND_SOC_DAPM_STREAM_STOP) {
675                         ret = w->event(w,
676                                        NULL, SND_SOC_DAPM_POST_PMD);
677                         if (ret < 0)
678                                 return ret;
679                 }
680                 return 0;
681
682         default:
683                 power = dapm_generic_check_power(w);
684                 break;
685         }
686
687         if (w->power == power)
688                 return 0;
689         w->power = power;
690
691         return dapm_generic_apply_power(w);
692 }
693
694 /*
695  * Scan each dapm widget for complete audio path.
696  * A complete path is a route that has valid endpoints i.e.:-
697  *
698  *  o DAC to output pin.
699  *  o Input Pin to ADC.
700  *  o Input pin to Output pin (bypass, sidetone)
701  *  o DAC to ADC (loopback).
702  */
703 static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
704 {
705         struct snd_soc_dapm_widget *w;
706         int i, c = 1, *seq = NULL, ret = 0;
707
708         /* do we have a sequenced stream event */
709         if (event == SND_SOC_DAPM_STREAM_START) {
710                 c = ARRAY_SIZE(dapm_up_seq);
711                 seq = dapm_up_seq;
712         } else if (event == SND_SOC_DAPM_STREAM_STOP) {
713                 c = ARRAY_SIZE(dapm_down_seq);
714                 seq = dapm_down_seq;
715         }
716
717         for (i = 0; i < c; i++) {
718                 list_for_each_entry(w, &codec->dapm_widgets, list) {
719
720                         /* is widget in stream order */
721                         if (seq && seq[i] && w->id != seq[i])
722                                 continue;
723
724                         ret = dapm_power_widget(codec, event, w);
725                         if (ret != 0)
726                                 return ret;
727                 }
728         }
729
730         return 0;
731 }
732
733 #ifdef DEBUG
734 static void dbg_dump_dapm(struct snd_soc_codec* codec, const char *action)
735 {
736         struct snd_soc_dapm_widget *w;
737         struct snd_soc_dapm_path *p = NULL;
738         int in, out;
739
740         printk("DAPM %s %s\n", codec->name, action);
741
742         list_for_each_entry(w, &codec->dapm_widgets, list) {
743
744                 /* only display widgets that effect routing */
745                 switch (w->id) {
746                 case snd_soc_dapm_pre:
747                 case snd_soc_dapm_post:
748                 case snd_soc_dapm_vmid:
749                         continue;
750                 case snd_soc_dapm_mux:
751                 case snd_soc_dapm_value_mux:
752                 case snd_soc_dapm_output:
753                 case snd_soc_dapm_input:
754                 case snd_soc_dapm_switch:
755                 case snd_soc_dapm_hp:
756                 case snd_soc_dapm_mic:
757                 case snd_soc_dapm_spk:
758                 case snd_soc_dapm_line:
759                 case snd_soc_dapm_micbias:
760                 case snd_soc_dapm_dac:
761                 case snd_soc_dapm_adc:
762                 case snd_soc_dapm_pga:
763                 case snd_soc_dapm_mixer:
764                 case snd_soc_dapm_mixer_named_ctl:
765                         if (w->name) {
766                                 in = is_connected_input_ep(w);
767                                 dapm_clear_walk(w->codec);
768                                 out = is_connected_output_ep(w);
769                                 dapm_clear_walk(w->codec);
770                                 printk("%s: %s  in %d out %d\n", w->name,
771                                         w->power ? "On":"Off",in, out);
772
773                                 list_for_each_entry(p, &w->sources, list_sink) {
774                                         if (p->connect)
775                                                 printk(" in  %s %s\n", p->name ? p->name : "static",
776                                                         p->source->name);
777                                 }
778                                 list_for_each_entry(p, &w->sinks, list_source) {
779                                         if (p->connect)
780                                                 printk(" out %s %s\n", p->name ? p->name : "static",
781                                                         p->sink->name);
782                                 }
783                         }
784                 break;
785                 }
786         }
787 }
788 #endif
789
790 /* test and update the power status of a mux widget */
791 static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
792                                  struct snd_kcontrol *kcontrol, int mask,
793                                  int mux, int val, struct soc_enum *e)
794 {
795         struct snd_soc_dapm_path *path;
796         int found = 0;
797
798         if (widget->id != snd_soc_dapm_mux &&
799             widget->id != snd_soc_dapm_value_mux)
800                 return -ENODEV;
801
802         if (!snd_soc_test_bits(widget->codec, e->reg, mask, val))
803                 return 0;
804
805         /* find dapm widget path assoc with kcontrol */
806         list_for_each_entry(path, &widget->codec->dapm_paths, list) {
807                 if (path->kcontrol != kcontrol)
808                         continue;
809
810                 if (!path->name || !e->texts[mux])
811                         continue;
812
813                 found = 1;
814                 /* we now need to match the string in the enum to the path */
815                 if (!(strcmp(path->name, e->texts[mux])))
816                         path->connect = 1; /* new connection */
817                 else
818                         path->connect = 0; /* old connection must be powered down */
819         }
820
821         if (found) {
822                 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
823                 dump_dapm(widget->codec, "mux power update");
824         }
825
826         return 0;
827 }
828
829 /* test and update the power status of a mixer or switch widget */
830 static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
831                                    struct snd_kcontrol *kcontrol, int reg,
832                                    int val_mask, int val, int invert)
833 {
834         struct snd_soc_dapm_path *path;
835         int found = 0;
836
837         if (widget->id != snd_soc_dapm_mixer &&
838             widget->id != snd_soc_dapm_mixer_named_ctl &&
839             widget->id != snd_soc_dapm_switch)
840                 return -ENODEV;
841
842         if (!snd_soc_test_bits(widget->codec, reg, val_mask, val))
843                 return 0;
844
845         /* find dapm widget path assoc with kcontrol */
846         list_for_each_entry(path, &widget->codec->dapm_paths, list) {
847                 if (path->kcontrol != kcontrol)
848                         continue;
849
850                 /* found, now check type */
851                 found = 1;
852                 if (val)
853                         /* new connection */
854                         path->connect = invert ? 0:1;
855                 else
856                         /* old connection must be powered down */
857                         path->connect = invert ? 1:0;
858                 break;
859         }
860
861         if (found) {
862                 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
863                 dump_dapm(widget->codec, "mixer power update");
864         }
865
866         return 0;
867 }
868
869 /* show dapm widget status in sys fs */
870 static ssize_t dapm_widget_show(struct device *dev,
871         struct device_attribute *attr, char *buf)
872 {
873         struct snd_soc_device *devdata = dev_get_drvdata(dev);
874         struct snd_soc_codec *codec = devdata->card->codec;
875         struct snd_soc_dapm_widget *w;
876         int count = 0;
877         char *state = "not set";
878
879         list_for_each_entry(w, &codec->dapm_widgets, list) {
880
881                 /* only display widgets that burnm power */
882                 switch (w->id) {
883                 case snd_soc_dapm_hp:
884                 case snd_soc_dapm_mic:
885                 case snd_soc_dapm_spk:
886                 case snd_soc_dapm_line:
887                 case snd_soc_dapm_micbias:
888                 case snd_soc_dapm_dac:
889                 case snd_soc_dapm_adc:
890                 case snd_soc_dapm_pga:
891                 case snd_soc_dapm_mixer:
892                 case snd_soc_dapm_mixer_named_ctl:
893                         if (w->name)
894                                 count += sprintf(buf + count, "%s: %s\n",
895                                         w->name, w->power ? "On":"Off");
896                 break;
897                 default:
898                 break;
899                 }
900         }
901
902         switch (codec->bias_level) {
903         case SND_SOC_BIAS_ON:
904                 state = "On";
905                 break;
906         case SND_SOC_BIAS_PREPARE:
907                 state = "Prepare";
908                 break;
909         case SND_SOC_BIAS_STANDBY:
910                 state = "Standby";
911                 break;
912         case SND_SOC_BIAS_OFF:
913                 state = "Off";
914                 break;
915         }
916         count += sprintf(buf + count, "PM State: %s\n", state);
917
918         return count;
919 }
920
921 static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
922
923 int snd_soc_dapm_sys_add(struct device *dev)
924 {
925         if (!dapm_status)
926                 return 0;
927         return device_create_file(dev, &dev_attr_dapm_widget);
928 }
929
930 static void snd_soc_dapm_sys_remove(struct device *dev)
931 {
932         if (dapm_status) {
933                 device_remove_file(dev, &dev_attr_dapm_widget);
934         }
935 }
936
937 /* free all dapm widgets and resources */
938 static void dapm_free_widgets(struct snd_soc_codec *codec)
939 {
940         struct snd_soc_dapm_widget *w, *next_w;
941         struct snd_soc_dapm_path *p, *next_p;
942
943         list_for_each_entry_safe(w, next_w, &codec->dapm_widgets, list) {
944                 list_del(&w->list);
945                 kfree(w);
946         }
947
948         list_for_each_entry_safe(p, next_p, &codec->dapm_paths, list) {
949                 list_del(&p->list);
950                 kfree(p->long_name);
951                 kfree(p);
952         }
953 }
954
955 static int snd_soc_dapm_set_pin(struct snd_soc_codec *codec,
956                                 const char *pin, int status)
957 {
958         struct snd_soc_dapm_widget *w;
959
960         list_for_each_entry(w, &codec->dapm_widgets, list) {
961                 if (!strcmp(w->name, pin)) {
962                         pr_debug("dapm: %s: pin %s\n", codec->name, pin);
963                         w->connected = status;
964                         return 0;
965                 }
966         }
967
968         pr_err("dapm: %s: configuring unknown pin %s\n", codec->name, pin);
969         return -EINVAL;
970 }
971
972 /**
973  * snd_soc_dapm_sync - scan and power dapm paths
974  * @codec: audio codec
975  *
976  * Walks all dapm audio paths and powers widgets according to their
977  * stream or path usage.
978  *
979  * Returns 0 for success.
980  */
981 int snd_soc_dapm_sync(struct snd_soc_codec *codec)
982 {
983         int ret = dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
984         dump_dapm(codec, "sync");
985         return ret;
986 }
987 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
988
989 static int snd_soc_dapm_add_route(struct snd_soc_codec *codec,
990         const char *sink, const char *control, const char *source)
991 {
992         struct snd_soc_dapm_path *path;
993         struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
994         int ret = 0;
995
996         /* find src and dest widgets */
997         list_for_each_entry(w, &codec->dapm_widgets, list) {
998
999                 if (!wsink && !(strcmp(w->name, sink))) {
1000                         wsink = w;
1001                         continue;
1002                 }
1003                 if (!wsource && !(strcmp(w->name, source))) {
1004                         wsource = w;
1005                 }
1006         }
1007
1008         if (wsource == NULL || wsink == NULL)
1009                 return -ENODEV;
1010
1011         path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
1012         if (!path)
1013                 return -ENOMEM;
1014
1015         path->source = wsource;
1016         path->sink = wsink;
1017         INIT_LIST_HEAD(&path->list);
1018         INIT_LIST_HEAD(&path->list_source);
1019         INIT_LIST_HEAD(&path->list_sink);
1020
1021         /* check for external widgets */
1022         if (wsink->id == snd_soc_dapm_input) {
1023                 if (wsource->id == snd_soc_dapm_micbias ||
1024                         wsource->id == snd_soc_dapm_mic ||
1025                         wsink->id == snd_soc_dapm_line ||
1026                         wsink->id == snd_soc_dapm_output)
1027                         wsink->ext = 1;
1028         }
1029         if (wsource->id == snd_soc_dapm_output) {
1030                 if (wsink->id == snd_soc_dapm_spk ||
1031                         wsink->id == snd_soc_dapm_hp ||
1032                         wsink->id == snd_soc_dapm_line ||
1033                         wsink->id == snd_soc_dapm_input)
1034                         wsource->ext = 1;
1035         }
1036
1037         /* connect static paths */
1038         if (control == NULL) {
1039                 list_add(&path->list, &codec->dapm_paths);
1040                 list_add(&path->list_sink, &wsink->sources);
1041                 list_add(&path->list_source, &wsource->sinks);
1042                 path->connect = 1;
1043                 return 0;
1044         }
1045
1046         /* connect dynamic paths */
1047         switch(wsink->id) {
1048         case snd_soc_dapm_adc:
1049         case snd_soc_dapm_dac:
1050         case snd_soc_dapm_pga:
1051         case snd_soc_dapm_input:
1052         case snd_soc_dapm_output:
1053         case snd_soc_dapm_micbias:
1054         case snd_soc_dapm_vmid:
1055         case snd_soc_dapm_pre:
1056         case snd_soc_dapm_post:
1057                 list_add(&path->list, &codec->dapm_paths);
1058                 list_add(&path->list_sink, &wsink->sources);
1059                 list_add(&path->list_source, &wsource->sinks);
1060                 path->connect = 1;
1061                 return 0;
1062         case snd_soc_dapm_mux:
1063         case snd_soc_dapm_value_mux:
1064                 ret = dapm_connect_mux(codec, wsource, wsink, path, control,
1065                         &wsink->kcontrols[0]);
1066                 if (ret != 0)
1067                         goto err;
1068                 break;
1069         case snd_soc_dapm_switch:
1070         case snd_soc_dapm_mixer:
1071         case snd_soc_dapm_mixer_named_ctl:
1072                 ret = dapm_connect_mixer(codec, wsource, wsink, path, control);
1073                 if (ret != 0)
1074                         goto err;
1075                 break;
1076         case snd_soc_dapm_hp:
1077         case snd_soc_dapm_mic:
1078         case snd_soc_dapm_line:
1079         case snd_soc_dapm_spk:
1080                 list_add(&path->list, &codec->dapm_paths);
1081                 list_add(&path->list_sink, &wsink->sources);
1082                 list_add(&path->list_source, &wsource->sinks);
1083                 path->connect = 0;
1084                 return 0;
1085         }
1086         return 0;
1087
1088 err:
1089         printk(KERN_WARNING "asoc: no dapm match for %s --> %s --> %s\n", source,
1090                 control, sink);
1091         kfree(path);
1092         return ret;
1093 }
1094
1095 /**
1096  * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1097  * @codec: codec
1098  * @route: audio routes
1099  * @num: number of routes
1100  *
1101  * Connects 2 dapm widgets together via a named audio path. The sink is
1102  * the widget receiving the audio signal, whilst the source is the sender
1103  * of the audio signal.
1104  *
1105  * Returns 0 for success else error. On error all resources can be freed
1106  * with a call to snd_soc_card_free().
1107  */
1108 int snd_soc_dapm_add_routes(struct snd_soc_codec *codec,
1109                             const struct snd_soc_dapm_route *route, int num)
1110 {
1111         int i, ret;
1112
1113         for (i = 0; i < num; i++) {
1114                 ret = snd_soc_dapm_add_route(codec, route->sink,
1115                                              route->control, route->source);
1116                 if (ret < 0) {
1117                         printk(KERN_ERR "Failed to add route %s->%s\n",
1118                                route->source,
1119                                route->sink);
1120                         return ret;
1121                 }
1122                 route++;
1123         }
1124
1125         return 0;
1126 }
1127 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
1128
1129 /**
1130  * snd_soc_dapm_new_widgets - add new dapm widgets
1131  * @codec: audio codec
1132  *
1133  * Checks the codec for any new dapm widgets and creates them if found.
1134  *
1135  * Returns 0 for success.
1136  */
1137 int snd_soc_dapm_new_widgets(struct snd_soc_codec *codec)
1138 {
1139         struct snd_soc_dapm_widget *w;
1140
1141         list_for_each_entry(w, &codec->dapm_widgets, list)
1142         {
1143                 if (w->new)
1144                         continue;
1145
1146                 switch(w->id) {
1147                 case snd_soc_dapm_switch:
1148                 case snd_soc_dapm_mixer:
1149                 case snd_soc_dapm_mixer_named_ctl:
1150                         dapm_new_mixer(codec, w);
1151                         break;
1152                 case snd_soc_dapm_mux:
1153                 case snd_soc_dapm_value_mux:
1154                         dapm_new_mux(codec, w);
1155                         break;
1156                 case snd_soc_dapm_adc:
1157                 case snd_soc_dapm_dac:
1158                 case snd_soc_dapm_pga:
1159                         dapm_new_pga(codec, w);
1160                         break;
1161                 case snd_soc_dapm_input:
1162                 case snd_soc_dapm_output:
1163                 case snd_soc_dapm_micbias:
1164                 case snd_soc_dapm_spk:
1165                 case snd_soc_dapm_hp:
1166                 case snd_soc_dapm_mic:
1167                 case snd_soc_dapm_line:
1168                 case snd_soc_dapm_vmid:
1169                 case snd_soc_dapm_pre:
1170                 case snd_soc_dapm_post:
1171                         break;
1172                 }
1173                 w->new = 1;
1174         }
1175
1176         dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
1177         return 0;
1178 }
1179 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
1180
1181 /**
1182  * snd_soc_dapm_get_volsw - dapm mixer get callback
1183  * @kcontrol: mixer control
1184  * @ucontrol: control element information
1185  *
1186  * Callback to get the value of a dapm mixer control.
1187  *
1188  * Returns 0 for success.
1189  */
1190 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
1191         struct snd_ctl_elem_value *ucontrol)
1192 {
1193         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1194         struct soc_mixer_control *mc =
1195                 (struct soc_mixer_control *)kcontrol->private_value;
1196         unsigned int reg = mc->reg;
1197         unsigned int shift = mc->shift;
1198         unsigned int rshift = mc->rshift;
1199         int max = mc->max;
1200         unsigned int invert = mc->invert;
1201         unsigned int mask = (1 << fls(max)) - 1;
1202
1203         /* return the saved value if we are powered down */
1204         if (widget->id == snd_soc_dapm_pga && !widget->power) {
1205                 ucontrol->value.integer.value[0] = widget->saved_value;
1206                 return 0;
1207         }
1208
1209         ucontrol->value.integer.value[0] =
1210                 (snd_soc_read(widget->codec, reg) >> shift) & mask;
1211         if (shift != rshift)
1212                 ucontrol->value.integer.value[1] =
1213                         (snd_soc_read(widget->codec, reg) >> rshift) & mask;
1214         if (invert) {
1215                 ucontrol->value.integer.value[0] =
1216                         max - ucontrol->value.integer.value[0];
1217                 if (shift != rshift)
1218                         ucontrol->value.integer.value[1] =
1219                                 max - ucontrol->value.integer.value[1];
1220         }
1221
1222         return 0;
1223 }
1224 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
1225
1226 /**
1227  * snd_soc_dapm_put_volsw - dapm mixer set callback
1228  * @kcontrol: mixer control
1229  * @ucontrol: control element information
1230  *
1231  * Callback to set the value of a dapm mixer control.
1232  *
1233  * Returns 0 for success.
1234  */
1235 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
1236         struct snd_ctl_elem_value *ucontrol)
1237 {
1238         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1239         struct soc_mixer_control *mc =
1240                 (struct soc_mixer_control *)kcontrol->private_value;
1241         unsigned int reg = mc->reg;
1242         unsigned int shift = mc->shift;
1243         unsigned int rshift = mc->rshift;
1244         int max = mc->max;
1245         unsigned int mask = (1 << fls(max)) - 1;
1246         unsigned int invert = mc->invert;
1247         unsigned short val, val2, val_mask;
1248         int ret;
1249
1250         val = (ucontrol->value.integer.value[0] & mask);
1251
1252         if (invert)
1253                 val = max - val;
1254         val_mask = mask << shift;
1255         val = val << shift;
1256         if (shift != rshift) {
1257                 val2 = (ucontrol->value.integer.value[1] & mask);
1258                 if (invert)
1259                         val2 = max - val2;
1260                 val_mask |= mask << rshift;
1261                 val |= val2 << rshift;
1262         }
1263
1264         mutex_lock(&widget->codec->mutex);
1265         widget->value = val;
1266
1267         /* save volume value if the widget is powered down */
1268         if (widget->id == snd_soc_dapm_pga && !widget->power) {
1269                 widget->saved_value = val;
1270                 mutex_unlock(&widget->codec->mutex);
1271                 return 1;
1272         }
1273
1274         dapm_mixer_update_power(widget, kcontrol, reg, val_mask, val, invert);
1275         if (widget->event) {
1276                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1277                         ret = widget->event(widget, kcontrol,
1278                                                 SND_SOC_DAPM_PRE_REG);
1279                         if (ret < 0) {
1280                                 ret = 1;
1281                                 goto out;
1282                         }
1283                 }
1284                 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1285                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1286                         ret = widget->event(widget, kcontrol,
1287                                                 SND_SOC_DAPM_POST_REG);
1288         } else
1289                 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1290
1291 out:
1292         mutex_unlock(&widget->codec->mutex);
1293         return ret;
1294 }
1295 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
1296
1297 /**
1298  * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1299  * @kcontrol: mixer control
1300  * @ucontrol: control element information
1301  *
1302  * Callback to get the value of a dapm enumerated double mixer control.
1303  *
1304  * Returns 0 for success.
1305  */
1306 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
1307         struct snd_ctl_elem_value *ucontrol)
1308 {
1309         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1310         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1311         unsigned short val, bitmask;
1312
1313         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
1314                 ;
1315         val = snd_soc_read(widget->codec, e->reg);
1316         ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
1317         if (e->shift_l != e->shift_r)
1318                 ucontrol->value.enumerated.item[1] =
1319                         (val >> e->shift_r) & (bitmask - 1);
1320
1321         return 0;
1322 }
1323 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
1324
1325 /**
1326  * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1327  * @kcontrol: mixer control
1328  * @ucontrol: control element information
1329  *
1330  * Callback to set the value of a dapm enumerated double mixer control.
1331  *
1332  * Returns 0 for success.
1333  */
1334 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
1335         struct snd_ctl_elem_value *ucontrol)
1336 {
1337         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1338         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1339         unsigned short val, mux;
1340         unsigned short mask, bitmask;
1341         int ret = 0;
1342
1343         for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
1344                 ;
1345         if (ucontrol->value.enumerated.item[0] > e->max - 1)
1346                 return -EINVAL;
1347         mux = ucontrol->value.enumerated.item[0];
1348         val = mux << e->shift_l;
1349         mask = (bitmask - 1) << e->shift_l;
1350         if (e->shift_l != e->shift_r) {
1351                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1352                         return -EINVAL;
1353                 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1354                 mask |= (bitmask - 1) << e->shift_r;
1355         }
1356
1357         mutex_lock(&widget->codec->mutex);
1358         widget->value = val;
1359         dapm_mux_update_power(widget, kcontrol, mask, mux, val, e);
1360         if (widget->event) {
1361                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1362                         ret = widget->event(widget,
1363                                 kcontrol, SND_SOC_DAPM_PRE_REG);
1364                         if (ret < 0)
1365                                 goto out;
1366                 }
1367                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1368                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1369                         ret = widget->event(widget,
1370                                 kcontrol, SND_SOC_DAPM_POST_REG);
1371         } else
1372                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1373
1374 out:
1375         mutex_unlock(&widget->codec->mutex);
1376         return ret;
1377 }
1378 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
1379
1380 /**
1381  * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
1382  *                                      callback
1383  * @kcontrol: mixer control
1384  * @ucontrol: control element information
1385  *
1386  * Callback to get the value of a dapm semi enumerated double mixer control.
1387  *
1388  * Semi enumerated mixer: the enumerated items are referred as values. Can be
1389  * used for handling bitfield coded enumeration for example.
1390  *
1391  * Returns 0 for success.
1392  */
1393 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
1394         struct snd_ctl_elem_value *ucontrol)
1395 {
1396         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1397         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1398         unsigned short reg_val, val, mux;
1399
1400         reg_val = snd_soc_read(widget->codec, e->reg);
1401         val = (reg_val >> e->shift_l) & e->mask;
1402         for (mux = 0; mux < e->max; mux++) {
1403                 if (val == e->values[mux])
1404                         break;
1405         }
1406         ucontrol->value.enumerated.item[0] = mux;
1407         if (e->shift_l != e->shift_r) {
1408                 val = (reg_val >> e->shift_r) & e->mask;
1409                 for (mux = 0; mux < e->max; mux++) {
1410                         if (val == e->values[mux])
1411                                 break;
1412                 }
1413                 ucontrol->value.enumerated.item[1] = mux;
1414         }
1415
1416         return 0;
1417 }
1418 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
1419
1420 /**
1421  * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
1422  *                                      callback
1423  * @kcontrol: mixer control
1424  * @ucontrol: control element information
1425  *
1426  * Callback to set the value of a dapm semi enumerated double mixer control.
1427  *
1428  * Semi enumerated mixer: the enumerated items are referred as values. Can be
1429  * used for handling bitfield coded enumeration for example.
1430  *
1431  * Returns 0 for success.
1432  */
1433 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
1434         struct snd_ctl_elem_value *ucontrol)
1435 {
1436         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1437         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1438         unsigned short val, mux;
1439         unsigned short mask;
1440         int ret = 0;
1441
1442         if (ucontrol->value.enumerated.item[0] > e->max - 1)
1443                 return -EINVAL;
1444         mux = ucontrol->value.enumerated.item[0];
1445         val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1446         mask = e->mask << e->shift_l;
1447         if (e->shift_l != e->shift_r) {
1448                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1449                         return -EINVAL;
1450                 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1451                 mask |= e->mask << e->shift_r;
1452         }
1453
1454         mutex_lock(&widget->codec->mutex);
1455         widget->value = val;
1456         dapm_mux_update_power(widget, kcontrol, mask, mux, val, e);
1457         if (widget->event) {
1458                 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
1459                         ret = widget->event(widget,
1460                                 kcontrol, SND_SOC_DAPM_PRE_REG);
1461                         if (ret < 0)
1462                                 goto out;
1463                 }
1464                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1465                 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
1466                         ret = widget->event(widget,
1467                                 kcontrol, SND_SOC_DAPM_POST_REG);
1468         } else
1469                 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1470
1471 out:
1472         mutex_unlock(&widget->codec->mutex);
1473         return ret;
1474 }
1475 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
1476
1477 /**
1478  * snd_soc_dapm_info_pin_switch - Info for a pin switch
1479  *
1480  * @kcontrol: mixer control
1481  * @uinfo: control element information
1482  *
1483  * Callback to provide information about a pin switch control.
1484  */
1485 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
1486                                  struct snd_ctl_elem_info *uinfo)
1487 {
1488         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1489         uinfo->count = 1;
1490         uinfo->value.integer.min = 0;
1491         uinfo->value.integer.max = 1;
1492
1493         return 0;
1494 }
1495 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
1496
1497 /**
1498  * snd_soc_dapm_get_pin_switch - Get information for a pin switch
1499  *
1500  * @kcontrol: mixer control
1501  * @ucontrol: Value
1502  */
1503 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
1504                                 struct snd_ctl_elem_value *ucontrol)
1505 {
1506         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1507         const char *pin = (const char *)kcontrol->private_value;
1508
1509         mutex_lock(&codec->mutex);
1510
1511         ucontrol->value.integer.value[0] =
1512                 snd_soc_dapm_get_pin_status(codec, pin);
1513
1514         mutex_unlock(&codec->mutex);
1515
1516         return 0;
1517 }
1518 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
1519
1520 /**
1521  * snd_soc_dapm_put_pin_switch - Set information for a pin switch
1522  *
1523  * @kcontrol: mixer control
1524  * @ucontrol: Value
1525  */
1526 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
1527                                 struct snd_ctl_elem_value *ucontrol)
1528 {
1529         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1530         const char *pin = (const char *)kcontrol->private_value;
1531
1532         mutex_lock(&codec->mutex);
1533
1534         if (ucontrol->value.integer.value[0])
1535                 snd_soc_dapm_enable_pin(codec, pin);
1536         else
1537                 snd_soc_dapm_disable_pin(codec, pin);
1538
1539         snd_soc_dapm_sync(codec);
1540
1541         mutex_unlock(&codec->mutex);
1542
1543         return 0;
1544 }
1545 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
1546
1547 /**
1548  * snd_soc_dapm_new_control - create new dapm control
1549  * @codec: audio codec
1550  * @widget: widget template
1551  *
1552  * Creates a new dapm control based upon the template.
1553  *
1554  * Returns 0 for success else error.
1555  */
1556 int snd_soc_dapm_new_control(struct snd_soc_codec *codec,
1557         const struct snd_soc_dapm_widget *widget)
1558 {
1559         struct snd_soc_dapm_widget *w;
1560
1561         if ((w = dapm_cnew_widget(widget)) == NULL)
1562                 return -ENOMEM;
1563
1564         w->codec = codec;
1565         INIT_LIST_HEAD(&w->sources);
1566         INIT_LIST_HEAD(&w->sinks);
1567         INIT_LIST_HEAD(&w->list);
1568         list_add(&w->list, &codec->dapm_widgets);
1569
1570         /* machine layer set ups unconnected pins and insertions */
1571         w->connected = 1;
1572         return 0;
1573 }
1574 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
1575
1576 /**
1577  * snd_soc_dapm_new_controls - create new dapm controls
1578  * @codec: audio codec
1579  * @widget: widget array
1580  * @num: number of widgets
1581  *
1582  * Creates new DAPM controls based upon the templates.
1583  *
1584  * Returns 0 for success else error.
1585  */
1586 int snd_soc_dapm_new_controls(struct snd_soc_codec *codec,
1587         const struct snd_soc_dapm_widget *widget,
1588         int num)
1589 {
1590         int i, ret;
1591
1592         for (i = 0; i < num; i++) {
1593                 ret = snd_soc_dapm_new_control(codec, widget);
1594                 if (ret < 0) {
1595                         printk(KERN_ERR
1596                                "ASoC: Failed to create DAPM control %s: %d\n",
1597                                widget->name, ret);
1598                         return ret;
1599                 }
1600                 widget++;
1601         }
1602         return 0;
1603 }
1604 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
1605
1606
1607 /**
1608  * snd_soc_dapm_stream_event - send a stream event to the dapm core
1609  * @codec: audio codec
1610  * @stream: stream name
1611  * @event: stream event
1612  *
1613  * Sends a stream event to the dapm core. The core then makes any
1614  * necessary widget power changes.
1615  *
1616  * Returns 0 for success else error.
1617  */
1618 int snd_soc_dapm_stream_event(struct snd_soc_codec *codec,
1619         char *stream, int event)
1620 {
1621         struct snd_soc_dapm_widget *w;
1622
1623         if (stream == NULL)
1624                 return 0;
1625
1626         mutex_lock(&codec->mutex);
1627         list_for_each_entry(w, &codec->dapm_widgets, list)
1628         {
1629                 if (!w->sname)
1630                         continue;
1631                 pr_debug("widget %s\n %s stream %s event %d\n",
1632                          w->name, w->sname, stream, event);
1633                 if (strstr(w->sname, stream)) {
1634                         switch(event) {
1635                         case SND_SOC_DAPM_STREAM_START:
1636                                 w->active = 1;
1637                                 break;
1638                         case SND_SOC_DAPM_STREAM_STOP:
1639                                 w->active = 0;
1640                                 break;
1641                         case SND_SOC_DAPM_STREAM_SUSPEND:
1642                                 if (w->active)
1643                                         w->suspend = 1;
1644                                 w->active = 0;
1645                                 break;
1646                         case SND_SOC_DAPM_STREAM_RESUME:
1647                                 if (w->suspend) {
1648                                         w->active = 1;
1649                                         w->suspend = 0;
1650                                 }
1651                                 break;
1652                         case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
1653                                 break;
1654                         case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
1655                                 break;
1656                         }
1657                 }
1658         }
1659         mutex_unlock(&codec->mutex);
1660
1661         dapm_power_widgets(codec, event);
1662         dump_dapm(codec, __func__);
1663         return 0;
1664 }
1665 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event);
1666
1667 /**
1668  * snd_soc_dapm_set_bias_level - set the bias level for the system
1669  * @socdev: audio device
1670  * @level: level to configure
1671  *
1672  * Configure the bias (power) levels for the SoC audio device.
1673  *
1674  * Returns 0 for success else error.
1675  */
1676 int snd_soc_dapm_set_bias_level(struct snd_soc_device *socdev,
1677                                 enum snd_soc_bias_level level)
1678 {
1679         struct snd_soc_card *card = socdev->card;
1680         struct snd_soc_codec *codec = socdev->card->codec;
1681         int ret = 0;
1682
1683         if (card->set_bias_level)
1684                 ret = card->set_bias_level(card, level);
1685         if (ret == 0 && codec->set_bias_level)
1686                 ret = codec->set_bias_level(codec, level);
1687
1688         return ret;
1689 }
1690
1691 /**
1692  * snd_soc_dapm_enable_pin - enable pin.
1693  * @codec: SoC codec
1694  * @pin: pin name
1695  *
1696  * Enables input/output pin and it's parents or children widgets iff there is
1697  * a valid audio route and active audio stream.
1698  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
1699  * do any widget power switching.
1700  */
1701 int snd_soc_dapm_enable_pin(struct snd_soc_codec *codec, const char *pin)
1702 {
1703         return snd_soc_dapm_set_pin(codec, pin, 1);
1704 }
1705 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
1706
1707 /**
1708  * snd_soc_dapm_disable_pin - disable pin.
1709  * @codec: SoC codec
1710  * @pin: pin name
1711  *
1712  * Disables input/output pin and it's parents or children widgets.
1713  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
1714  * do any widget power switching.
1715  */
1716 int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, const char *pin)
1717 {
1718         return snd_soc_dapm_set_pin(codec, pin, 0);
1719 }
1720 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
1721
1722 /**
1723  * snd_soc_dapm_nc_pin - permanently disable pin.
1724  * @codec: SoC codec
1725  * @pin: pin name
1726  *
1727  * Marks the specified pin as being not connected, disabling it along
1728  * any parent or child widgets.  At present this is identical to
1729  * snd_soc_dapm_disable_pin() but in future it will be extended to do
1730  * additional things such as disabling controls which only affect
1731  * paths through the pin.
1732  *
1733  * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
1734  * do any widget power switching.
1735  */
1736 int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, const char *pin)
1737 {
1738         return snd_soc_dapm_set_pin(codec, pin, 0);
1739 }
1740 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
1741
1742 /**
1743  * snd_soc_dapm_get_pin_status - get audio pin status
1744  * @codec: audio codec
1745  * @pin: audio signal pin endpoint (or start point)
1746  *
1747  * Get audio pin status - connected or disconnected.
1748  *
1749  * Returns 1 for connected otherwise 0.
1750  */
1751 int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, const char *pin)
1752 {
1753         struct snd_soc_dapm_widget *w;
1754
1755         list_for_each_entry(w, &codec->dapm_widgets, list) {
1756                 if (!strcmp(w->name, pin))
1757                         return w->connected;
1758         }
1759
1760         return 0;
1761 }
1762 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
1763
1764 /**
1765  * snd_soc_dapm_free - free dapm resources
1766  * @socdev: SoC device
1767  *
1768  * Free all dapm widgets and resources.
1769  */
1770 void snd_soc_dapm_free(struct snd_soc_device *socdev)
1771 {
1772         struct snd_soc_codec *codec = socdev->card->codec;
1773
1774         snd_soc_dapm_sys_remove(socdev->dev);
1775         dapm_free_widgets(codec);
1776 }
1777 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
1778
1779 /* Module information */
1780 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
1781 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
1782 MODULE_LICENSE("GPL");