blob: 91cbbefefb0a09af9a1226244f7937da04efbcea [file] [log] [blame]
Richard Purdie2b97eab2006-10-06 18:32:18 +02001/*
2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood
6 * liam.girdwood@wolfsonmicro.com or linux@wolfsonmicro.com
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020013 * Features:
14 * o Changes power status of internal codec blocks depending on the
15 * dynamic configuration of codec internal audio paths and active
16 * DAC's/ADC's.
17 * o Platform power domain - can support external components i.e. amps and
18 * mic/meadphone insertion events.
19 * o Automatic Mic Bias support
20 * o Jack insertion power event initiation - e.g. hp insertion will enable
21 * sinks, dacs, etc
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020022 * o Delayed powerdown of audio susbsystem to reduce pops between a quick
Richard Purdie2b97eab2006-10-06 18:32:18 +020023 * device reopen.
24 *
25 * Todo:
26 * o DAPM power change sequencing - allow for configurable per
27 * codec sequences.
28 * o Support for analogue bias optimisation.
29 * o Support for reduced codec oversampling rates.
30 * o Support for reduced codec bias currents.
31 */
32
33#include <linux/module.h>
34#include <linux/moduleparam.h>
35#include <linux/init.h>
36#include <linux/delay.h>
37#include <linux/pm.h>
38#include <linux/bitops.h>
39#include <linux/platform_device.h>
40#include <linux/jiffies.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020041#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#define DAPM_DEBUG 0
49#if DAPM_DEBUG
50#define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
51#define dbg(format, arg...) printk(format, ## arg)
52#else
53#define dump_dapm(codec, action)
54#define dbg(format, arg...)
55#endif
56
Richard Purdie2b97eab2006-10-06 18:32:18 +020057/* dapm power sequences - make this per codec in the future */
58static int dapm_up_seq[] = {
59 snd_soc_dapm_pre, snd_soc_dapm_micbias, snd_soc_dapm_mic,
60 snd_soc_dapm_mux, snd_soc_dapm_dac, snd_soc_dapm_mixer, snd_soc_dapm_pga,
61 snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk, snd_soc_dapm_post
62};
63static int dapm_down_seq[] = {
64 snd_soc_dapm_pre, snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk,
65 snd_soc_dapm_pga, snd_soc_dapm_mixer, snd_soc_dapm_dac, snd_soc_dapm_mic,
66 snd_soc_dapm_micbias, snd_soc_dapm_mux, snd_soc_dapm_post
67};
68
69static int dapm_status = 1;
70module_param(dapm_status, int, 0);
71MODULE_PARM_DESC(dapm_status, "enable DPM sysfs entries");
72
Mark Brown15e4c722008-07-02 11:51:20 +010073static unsigned int pop_time;
74
75static void pop_wait(void)
76{
77 if (pop_time)
78 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
79}
80
81static void pop_dbg(const char *fmt, ...)
82{
83 va_list args;
84
85 va_start(args, fmt);
86
87 if (pop_time) {
88 vprintk(fmt, args);
89 pop_wait();
90 }
91
92 va_end(args);
93}
94
Richard Purdie2b97eab2006-10-06 18:32:18 +020095/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +010096static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +020097 const struct snd_soc_dapm_widget *_widget)
98{
Takashi Iwai88cb4292007-02-05 14:56:20 +010099 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200100}
101
102/* set up initial codec paths */
103static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
104 struct snd_soc_dapm_path *p, int i)
105{
106 switch (w->id) {
107 case snd_soc_dapm_switch:
108 case snd_soc_dapm_mixer: {
109 int val;
110 int reg = w->kcontrols[i].private_value & 0xff;
111 int shift = (w->kcontrols[i].private_value >> 8) & 0x0f;
112 int mask = (w->kcontrols[i].private_value >> 16) & 0xff;
113 int invert = (w->kcontrols[i].private_value >> 24) & 0x01;
114
115 val = snd_soc_read(w->codec, reg);
116 val = (val >> shift) & mask;
117
118 if ((invert && !val) || (!invert && val))
119 p->connect = 1;
120 else
121 p->connect = 0;
122 }
123 break;
124 case snd_soc_dapm_mux: {
125 struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value;
126 int val, item, bitmask;
127
128 for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
129 ;
130 val = snd_soc_read(w->codec, e->reg);
131 item = (val >> e->shift_l) & (bitmask - 1);
132
133 p->connect = 0;
134 for (i = 0; i < e->mask; i++) {
135 if (!(strcmp(p->name, e->texts[i])) && item == i)
136 p->connect = 1;
137 }
138 }
139 break;
140 /* does not effect routing - always connected */
141 case snd_soc_dapm_pga:
142 case snd_soc_dapm_output:
143 case snd_soc_dapm_adc:
144 case snd_soc_dapm_input:
145 case snd_soc_dapm_dac:
146 case snd_soc_dapm_micbias:
147 case snd_soc_dapm_vmid:
148 p->connect = 1;
149 break;
150 /* does effect routing - dynamically connected */
151 case snd_soc_dapm_hp:
152 case snd_soc_dapm_mic:
153 case snd_soc_dapm_spk:
154 case snd_soc_dapm_line:
155 case snd_soc_dapm_pre:
156 case snd_soc_dapm_post:
157 p->connect = 0;
158 break;
159 }
160}
161
162/* connect mux widget to it's interconnecting audio paths */
163static int dapm_connect_mux(struct snd_soc_codec *codec,
164 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
165 struct snd_soc_dapm_path *path, const char *control_name,
166 const struct snd_kcontrol_new *kcontrol)
167{
168 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
169 int i;
170
171 for (i = 0; i < e->mask; i++) {
172 if (!(strcmp(control_name, e->texts[i]))) {
173 list_add(&path->list, &codec->dapm_paths);
174 list_add(&path->list_sink, &dest->sources);
175 list_add(&path->list_source, &src->sinks);
176 path->name = (char*)e->texts[i];
177 dapm_set_path_status(dest, path, 0);
178 return 0;
179 }
180 }
181
182 return -ENODEV;
183}
184
185/* connect mixer widget to it's interconnecting audio paths */
186static int dapm_connect_mixer(struct snd_soc_codec *codec,
187 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
188 struct snd_soc_dapm_path *path, const char *control_name)
189{
190 int i;
191
192 /* search for mixer kcontrol */
193 for (i = 0; i < dest->num_kcontrols; i++) {
194 if (!strcmp(control_name, dest->kcontrols[i].name)) {
195 list_add(&path->list, &codec->dapm_paths);
196 list_add(&path->list_sink, &dest->sources);
197 list_add(&path->list_source, &src->sinks);
198 path->name = dest->kcontrols[i].name;
199 dapm_set_path_status(dest, path, i);
200 return 0;
201 }
202 }
203 return -ENODEV;
204}
205
206/* update dapm codec register bits */
207static int dapm_update_bits(struct snd_soc_dapm_widget *widget)
208{
209 int change, power;
210 unsigned short old, new;
211 struct snd_soc_codec *codec = widget->codec;
212
213 /* check for valid widgets */
214 if (widget->reg < 0 || widget->id == snd_soc_dapm_input ||
215 widget->id == snd_soc_dapm_output ||
216 widget->id == snd_soc_dapm_hp ||
217 widget->id == snd_soc_dapm_mic ||
218 widget->id == snd_soc_dapm_line ||
219 widget->id == snd_soc_dapm_spk)
220 return 0;
221
222 power = widget->power;
223 if (widget->invert)
224 power = (power ? 0:1);
225
226 old = snd_soc_read(codec, widget->reg);
227 new = (old & ~(0x1 << widget->shift)) | (power << widget->shift);
228
229 change = old != new;
230 if (change) {
231 pop_dbg("pop test %s : %s in %d ms\n", widget->name,
Mark Brown15e4c722008-07-02 11:51:20 +0100232 widget->power ? "on" : "off", pop_time);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200233 snd_soc_write(codec, widget->reg, new);
Mark Brown15e4c722008-07-02 11:51:20 +0100234 pop_wait();
Richard Purdie2b97eab2006-10-06 18:32:18 +0200235 }
Mark Brown32f48762008-04-14 12:59:27 +0200236 dbg("reg %x old %x new %x change %d\n", widget->reg, old, new, change);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200237 return change;
238}
239
240/* ramps the volume up or down to minimise pops before or after a
241 * DAPM power event */
242static int dapm_set_pga(struct snd_soc_dapm_widget *widget, int power)
243{
244 const struct snd_kcontrol_new *k = widget->kcontrols;
245
246 if (widget->muted && !power)
247 return 0;
248 if (!widget->muted && power)
249 return 0;
250
251 if (widget->num_kcontrols && k) {
252 int reg = k->private_value & 0xff;
253 int shift = (k->private_value >> 8) & 0x0f;
254 int mask = (k->private_value >> 16) & 0xff;
255 int invert = (k->private_value >> 24) & 0x01;
256
257 if (power) {
258 int i;
259 /* power up has happended, increase volume to last level */
260 if (invert) {
261 for (i = mask; i > widget->saved_value; i--)
262 snd_soc_update_bits(widget->codec, reg, mask, i);
263 } else {
264 for (i = 0; i < widget->saved_value; i++)
265 snd_soc_update_bits(widget->codec, reg, mask, i);
266 }
267 widget->muted = 0;
268 } else {
269 /* power down is about to occur, decrease volume to mute */
270 int val = snd_soc_read(widget->codec, reg);
271 int i = widget->saved_value = (val >> shift) & mask;
272 if (invert) {
273 for (; i < mask; i++)
274 snd_soc_update_bits(widget->codec, reg, mask, i);
275 } else {
276 for (; i > 0; i--)
277 snd_soc_update_bits(widget->codec, reg, mask, i);
278 }
279 widget->muted = 1;
280 }
281 }
282 return 0;
283}
284
285/* create new dapm mixer control */
286static int dapm_new_mixer(struct snd_soc_codec *codec,
287 struct snd_soc_dapm_widget *w)
288{
289 int i, ret = 0;
290 char name[32];
291 struct snd_soc_dapm_path *path;
292
293 /* add kcontrol */
294 for (i = 0; i < w->num_kcontrols; i++) {
295
296 /* match name */
297 list_for_each_entry(path, &w->sources, list_sink) {
298
299 /* mixer/mux paths name must match control name */
300 if (path->name != (char*)w->kcontrols[i].name)
301 continue;
302
303 /* add dapm control with long name */
304 snprintf(name, 32, "%s %s", w->name, w->kcontrols[i].name);
305 path->long_name = kstrdup (name, GFP_KERNEL);
306 if (path->long_name == NULL)
307 return -ENOMEM;
308
309 path->kcontrol = snd_soc_cnew(&w->kcontrols[i], w,
310 path->long_name);
311 ret = snd_ctl_add(codec->card, path->kcontrol);
312 if (ret < 0) {
313 printk(KERN_ERR "asoc: failed to add dapm kcontrol %s\n",
314 path->long_name);
315 kfree(path->long_name);
316 path->long_name = NULL;
317 return ret;
318 }
319 }
320 }
321 return ret;
322}
323
324/* create new dapm mux control */
325static int dapm_new_mux(struct snd_soc_codec *codec,
326 struct snd_soc_dapm_widget *w)
327{
328 struct snd_soc_dapm_path *path = NULL;
329 struct snd_kcontrol *kcontrol;
330 int ret = 0;
331
332 if (!w->num_kcontrols) {
333 printk(KERN_ERR "asoc: mux %s has no controls\n", w->name);
334 return -EINVAL;
335 }
336
337 kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
338 ret = snd_ctl_add(codec->card, kcontrol);
339 if (ret < 0)
340 goto err;
341
342 list_for_each_entry(path, &w->sources, list_sink)
343 path->kcontrol = kcontrol;
344
345 return ret;
346
347err:
348 printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
349 return ret;
350}
351
352/* create new dapm volume control */
353static int dapm_new_pga(struct snd_soc_codec *codec,
354 struct snd_soc_dapm_widget *w)
355{
356 struct snd_kcontrol *kcontrol;
357 int ret = 0;
358
359 if (!w->num_kcontrols)
360 return -EINVAL;
361
362 kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
363 ret = snd_ctl_add(codec->card, kcontrol);
364 if (ret < 0) {
365 printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
366 return ret;
367 }
368
369 return ret;
370}
371
372/* reset 'walked' bit for each dapm path */
373static inline void dapm_clear_walk(struct snd_soc_codec *codec)
374{
375 struct snd_soc_dapm_path *p;
376
377 list_for_each_entry(p, &codec->dapm_paths, list)
378 p->walked = 0;
379}
380
381/*
382 * Recursively check for a completed path to an active or physically connected
383 * output widget. Returns number of complete paths.
384 */
385static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
386{
387 struct snd_soc_dapm_path *path;
388 int con = 0;
389
390 if (widget->id == snd_soc_dapm_adc && widget->active)
391 return 1;
392
393 if (widget->connected) {
394 /* connected pin ? */
395 if (widget->id == snd_soc_dapm_output && !widget->ext)
396 return 1;
397
398 /* connected jack or spk ? */
399 if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk ||
400 widget->id == snd_soc_dapm_line)
401 return 1;
402 }
403
404 list_for_each_entry(path, &widget->sinks, list_source) {
405 if (path->walked)
406 continue;
407
408 if (path->sink && path->connect) {
409 path->walked = 1;
410 con += is_connected_output_ep(path->sink);
411 }
412 }
413
414 return con;
415}
416
417/*
418 * Recursively check for a completed path to an active or physically connected
419 * input widget. Returns number of complete paths.
420 */
421static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
422{
423 struct snd_soc_dapm_path *path;
424 int con = 0;
425
426 /* active stream ? */
427 if (widget->id == snd_soc_dapm_dac && widget->active)
428 return 1;
429
430 if (widget->connected) {
431 /* connected pin ? */
432 if (widget->id == snd_soc_dapm_input && !widget->ext)
433 return 1;
434
435 /* connected VMID/Bias for lower pops */
436 if (widget->id == snd_soc_dapm_vmid)
437 return 1;
438
439 /* connected jack ? */
440 if (widget->id == snd_soc_dapm_mic || widget->id == snd_soc_dapm_line)
441 return 1;
442 }
443
444 list_for_each_entry(path, &widget->sources, list_sink) {
445 if (path->walked)
446 continue;
447
448 if (path->source && path->connect) {
449 path->walked = 1;
450 con += is_connected_input_ep(path->source);
451 }
452 }
453
454 return con;
455}
456
457/*
Jarkko Nikulae2be2cc2008-06-25 14:42:07 +0300458 * Handler for generic register modifier widget.
459 */
460int dapm_reg_event(struct snd_soc_dapm_widget *w,
461 struct snd_kcontrol *kcontrol, int event)
462{
463 unsigned int val;
464
465 if (SND_SOC_DAPM_EVENT_ON(event))
466 val = w->on_val;
467 else
468 val = w->off_val;
469
470 snd_soc_update_bits(w->codec, -(w->reg + 1),
471 w->mask << w->shift, val << w->shift);
472
473 return 0;
474}
475
476/*
Richard Purdie2b97eab2006-10-06 18:32:18 +0200477 * Scan each dapm widget for complete audio path.
478 * A complete path is a route that has valid endpoints i.e.:-
479 *
480 * o DAC to output pin.
481 * o Input Pin to ADC.
482 * o Input pin to Output pin (bypass, sidetone)
483 * o DAC to ADC (loopback).
484 */
Adrian Bunkd9c96cf2006-11-28 12:10:09 +0100485static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200486{
487 struct snd_soc_dapm_widget *w;
488 int in, out, i, c = 1, *seq = NULL, ret = 0, power_change, power;
489
490 /* do we have a sequenced stream event */
491 if (event == SND_SOC_DAPM_STREAM_START) {
492 c = ARRAY_SIZE(dapm_up_seq);
493 seq = dapm_up_seq;
494 } else if (event == SND_SOC_DAPM_STREAM_STOP) {
495 c = ARRAY_SIZE(dapm_down_seq);
496 seq = dapm_down_seq;
497 }
498
499 for(i = 0; i < c; i++) {
500 list_for_each_entry(w, &codec->dapm_widgets, list) {
501
502 /* is widget in stream order */
503 if (seq && seq[i] && w->id != seq[i])
504 continue;
505
506 /* vmid - no action */
507 if (w->id == snd_soc_dapm_vmid)
508 continue;
509
510 /* active ADC */
511 if (w->id == snd_soc_dapm_adc && w->active) {
512 in = is_connected_input_ep(w);
513 dapm_clear_walk(w->codec);
514 w->power = (in != 0) ? 1 : 0;
515 dapm_update_bits(w);
516 continue;
517 }
518
519 /* active DAC */
520 if (w->id == snd_soc_dapm_dac && w->active) {
521 out = is_connected_output_ep(w);
522 dapm_clear_walk(w->codec);
523 w->power = (out != 0) ? 1 : 0;
524 dapm_update_bits(w);
525 continue;
526 }
527
528 /* programmable gain/attenuation */
529 if (w->id == snd_soc_dapm_pga) {
530 int on;
531 in = is_connected_input_ep(w);
532 dapm_clear_walk(w->codec);
533 out = is_connected_output_ep(w);
534 dapm_clear_walk(w->codec);
535 w->power = on = (out != 0 && in != 0) ? 1 : 0;
536
537 if (!on)
538 dapm_set_pga(w, on); /* lower volume to reduce pops */
539 dapm_update_bits(w);
540 if (on)
541 dapm_set_pga(w, on); /* restore volume from zero */
542
543 continue;
544 }
545
546 /* pre and post event widgets */
547 if (w->id == snd_soc_dapm_pre) {
548 if (!w->event)
549 continue;
550
551 if (event == SND_SOC_DAPM_STREAM_START) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100552 ret = w->event(w,
553 NULL, SND_SOC_DAPM_PRE_PMU);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200554 if (ret < 0)
555 return ret;
556 } else if (event == SND_SOC_DAPM_STREAM_STOP) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100557 ret = w->event(w,
558 NULL, SND_SOC_DAPM_PRE_PMD);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200559 if (ret < 0)
560 return ret;
561 }
562 continue;
563 }
564 if (w->id == snd_soc_dapm_post) {
565 if (!w->event)
566 continue;
567
568 if (event == SND_SOC_DAPM_STREAM_START) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100569 ret = w->event(w,
570 NULL, SND_SOC_DAPM_POST_PMU);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200571 if (ret < 0)
572 return ret;
573 } else if (event == SND_SOC_DAPM_STREAM_STOP) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100574 ret = w->event(w,
575 NULL, SND_SOC_DAPM_POST_PMD);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200576 if (ret < 0)
577 return ret;
578 }
579 continue;
580 }
581
582 /* all other widgets */
583 in = is_connected_input_ep(w);
584 dapm_clear_walk(w->codec);
585 out = is_connected_output_ep(w);
586 dapm_clear_walk(w->codec);
587 power = (out != 0 && in != 0) ? 1 : 0;
588 power_change = (w->power == power) ? 0: 1;
589 w->power = power;
590
591 /* call any power change event handlers */
592 if (power_change) {
593 if (w->event) {
594 dbg("power %s event for %s flags %x\n",
595 w->power ? "on" : "off", w->name, w->event_flags);
596 if (power) {
597 /* power up event */
598 if (w->event_flags & SND_SOC_DAPM_PRE_PMU) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100599 ret = w->event(w,
600 NULL, SND_SOC_DAPM_PRE_PMU);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200601 if (ret < 0)
602 return ret;
603 }
604 dapm_update_bits(w);
605 if (w->event_flags & SND_SOC_DAPM_POST_PMU){
Laim Girdwood9af6d952008-01-10 14:41:02 +0100606 ret = w->event(w,
607 NULL, SND_SOC_DAPM_POST_PMU);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200608 if (ret < 0)
609 return ret;
610 }
611 } else {
612 /* power down event */
613 if (w->event_flags & SND_SOC_DAPM_PRE_PMD) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100614 ret = w->event(w,
615 NULL, SND_SOC_DAPM_PRE_PMD);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200616 if (ret < 0)
617 return ret;
618 }
619 dapm_update_bits(w);
620 if (w->event_flags & SND_SOC_DAPM_POST_PMD) {
Laim Girdwood9af6d952008-01-10 14:41:02 +0100621 ret = w->event(w,
622 NULL, SND_SOC_DAPM_POST_PMD);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200623 if (ret < 0)
624 return ret;
625 }
626 }
627 } else
628 /* no event handler */
629 dapm_update_bits(w);
630 }
631 }
632 }
633
634 return ret;
635}
636
637#if DAPM_DEBUG
638static void dbg_dump_dapm(struct snd_soc_codec* codec, const char *action)
639{
640 struct snd_soc_dapm_widget *w;
641 struct snd_soc_dapm_path *p = NULL;
642 int in, out;
643
644 printk("DAPM %s %s\n", codec->name, action);
645
646 list_for_each_entry(w, &codec->dapm_widgets, list) {
647
648 /* only display widgets that effect routing */
649 switch (w->id) {
650 case snd_soc_dapm_pre:
651 case snd_soc_dapm_post:
652 case snd_soc_dapm_vmid:
653 continue;
654 case snd_soc_dapm_mux:
655 case snd_soc_dapm_output:
656 case snd_soc_dapm_input:
657 case snd_soc_dapm_switch:
658 case snd_soc_dapm_hp:
659 case snd_soc_dapm_mic:
660 case snd_soc_dapm_spk:
661 case snd_soc_dapm_line:
662 case snd_soc_dapm_micbias:
663 case snd_soc_dapm_dac:
664 case snd_soc_dapm_adc:
665 case snd_soc_dapm_pga:
666 case snd_soc_dapm_mixer:
667 if (w->name) {
668 in = is_connected_input_ep(w);
669 dapm_clear_walk(w->codec);
670 out = is_connected_output_ep(w);
671 dapm_clear_walk(w->codec);
672 printk("%s: %s in %d out %d\n", w->name,
673 w->power ? "On":"Off",in, out);
674
675 list_for_each_entry(p, &w->sources, list_sink) {
676 if (p->connect)
677 printk(" in %s %s\n", p->name ? p->name : "static",
678 p->source->name);
679 }
680 list_for_each_entry(p, &w->sinks, list_source) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200681 if (p->connect)
682 printk(" out %s %s\n", p->name ? p->name : "static",
683 p->sink->name);
684 }
685 }
686 break;
687 }
688 }
689}
690#endif
691
692/* test and update the power status of a mux widget */
Adrian Bunkd9c96cf2006-11-28 12:10:09 +0100693static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
694 struct snd_kcontrol *kcontrol, int mask,
695 int val, struct soc_enum* e)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200696{
697 struct snd_soc_dapm_path *path;
698 int found = 0;
699
700 if (widget->id != snd_soc_dapm_mux)
701 return -ENODEV;
702
703 if (!snd_soc_test_bits(widget->codec, e->reg, mask, val))
704 return 0;
705
706 /* find dapm widget path assoc with kcontrol */
707 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
708 if (path->kcontrol != kcontrol)
709 continue;
710
711 if (!path->name || ! e->texts[val])
712 continue;
713
714 found = 1;
715 /* we now need to match the string in the enum to the path */
716 if (!(strcmp(path->name, e->texts[val])))
717 path->connect = 1; /* new connection */
718 else
719 path->connect = 0; /* old connection must be powered down */
720 }
721
722 if (found)
723 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
724
725 return 0;
726}
Richard Purdie2b97eab2006-10-06 18:32:18 +0200727
Milan plzik1b075e32008-01-10 14:39:46 +0100728/* test and update the power status of a mixer or switch widget */
Adrian Bunkd9c96cf2006-11-28 12:10:09 +0100729static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
730 struct snd_kcontrol *kcontrol, int reg,
731 int val_mask, int val, int invert)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200732{
733 struct snd_soc_dapm_path *path;
734 int found = 0;
735
Milan plzik1b075e32008-01-10 14:39:46 +0100736 if (widget->id != snd_soc_dapm_mixer &&
737 widget->id != snd_soc_dapm_switch)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200738 return -ENODEV;
739
740 if (!snd_soc_test_bits(widget->codec, reg, val_mask, val))
741 return 0;
742
743 /* find dapm widget path assoc with kcontrol */
744 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
745 if (path->kcontrol != kcontrol)
746 continue;
747
748 /* found, now check type */
749 found = 1;
750 if (val)
751 /* new connection */
752 path->connect = invert ? 0:1;
753 else
754 /* old connection must be powered down */
755 path->connect = invert ? 1:0;
756 break;
757 }
758
759 if (found)
760 dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
761
762 return 0;
763}
Richard Purdie2b97eab2006-10-06 18:32:18 +0200764
765/* show dapm widget status in sys fs */
766static ssize_t dapm_widget_show(struct device *dev,
767 struct device_attribute *attr, char *buf)
768{
769 struct snd_soc_device *devdata = dev_get_drvdata(dev);
770 struct snd_soc_codec *codec = devdata->codec;
771 struct snd_soc_dapm_widget *w;
772 int count = 0;
773 char *state = "not set";
774
775 list_for_each_entry(w, &codec->dapm_widgets, list) {
776
777 /* only display widgets that burnm power */
778 switch (w->id) {
779 case snd_soc_dapm_hp:
780 case snd_soc_dapm_mic:
781 case snd_soc_dapm_spk:
782 case snd_soc_dapm_line:
783 case snd_soc_dapm_micbias:
784 case snd_soc_dapm_dac:
785 case snd_soc_dapm_adc:
786 case snd_soc_dapm_pga:
787 case snd_soc_dapm_mixer:
788 if (w->name)
789 count += sprintf(buf + count, "%s: %s\n",
790 w->name, w->power ? "On":"Off");
791 break;
792 default:
793 break;
794 }
795 }
796
Mark Brown0be98982008-05-19 12:31:28 +0200797 switch (codec->bias_level) {
798 case SND_SOC_BIAS_ON:
799 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +0200800 break;
Mark Brown0be98982008-05-19 12:31:28 +0200801 case SND_SOC_BIAS_PREPARE:
802 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +0200803 break;
Mark Brown0be98982008-05-19 12:31:28 +0200804 case SND_SOC_BIAS_STANDBY:
805 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +0200806 break;
Mark Brown0be98982008-05-19 12:31:28 +0200807 case SND_SOC_BIAS_OFF:
808 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +0200809 break;
810 }
811 count += sprintf(buf + count, "PM State: %s\n", state);
812
813 return count;
814}
815
816static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
817
Mark Brown15e4c722008-07-02 11:51:20 +0100818/* pop/click delay times */
819static ssize_t dapm_pop_time_show(struct device *dev,
820 struct device_attribute *attr, char *buf)
821{
822 return sprintf(buf, "%d\n", pop_time);
823}
824
825static ssize_t dapm_pop_time_store(struct device *dev,
826 struct device_attribute *attr,
827 const char *buf, size_t count)
828
829{
Mark Brown73ead482008-07-04 16:01:14 +0100830 unsigned long val;
831
832 if (strict_strtoul(buf, 10, &val) >= 0)
833 pop_time = val;
834 else
Mark Brown15e4c722008-07-02 11:51:20 +0100835 printk(KERN_ERR "Unable to parse pop_time setting\n");
836
837 return count;
838}
839
840static DEVICE_ATTR(dapm_pop_time, 0744, dapm_pop_time_show,
841 dapm_pop_time_store);
842
Richard Purdie2b97eab2006-10-06 18:32:18 +0200843int snd_soc_dapm_sys_add(struct device *dev)
844{
845 int ret = 0;
846
Mark Brown15e4c722008-07-02 11:51:20 +0100847 if (dapm_status) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200848 ret = device_create_file(dev, &dev_attr_dapm_widget);
849
Mark Brown15e4c722008-07-02 11:51:20 +0100850 if (ret == 0)
851 ret = device_create_file(dev, &dev_attr_dapm_pop_time);
852 }
853
Richard Purdie2b97eab2006-10-06 18:32:18 +0200854 return ret;
855}
856
857static void snd_soc_dapm_sys_remove(struct device *dev)
858{
Mark Brown15e4c722008-07-02 11:51:20 +0100859 if (dapm_status) {
860 device_remove_file(dev, &dev_attr_dapm_pop_time);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200861 device_remove_file(dev, &dev_attr_dapm_widget);
Mark Brown15e4c722008-07-02 11:51:20 +0100862 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200863}
864
865/* free all dapm widgets and resources */
Adrian Bunkd9c96cf2006-11-28 12:10:09 +0100866static void dapm_free_widgets(struct snd_soc_codec *codec)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200867{
868 struct snd_soc_dapm_widget *w, *next_w;
869 struct snd_soc_dapm_path *p, *next_p;
870
871 list_for_each_entry_safe(w, next_w, &codec->dapm_widgets, list) {
872 list_del(&w->list);
873 kfree(w);
874 }
875
876 list_for_each_entry_safe(p, next_p, &codec->dapm_paths, list) {
877 list_del(&p->list);
878 kfree(p->long_name);
879 kfree(p);
880 }
881}
882
883/**
884 * snd_soc_dapm_sync_endpoints - scan and power dapm paths
885 * @codec: audio codec
886 *
887 * Walks all dapm audio paths and powers widgets according to their
888 * stream or path usage.
889 *
890 * Returns 0 for success.
891 */
892int snd_soc_dapm_sync_endpoints(struct snd_soc_codec *codec)
893{
894 return dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
895}
896EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_endpoints);
897
Mark Brown105f1c22008-05-13 14:52:19 +0200898static int snd_soc_dapm_add_route(struct snd_soc_codec *codec,
899 const char *sink, const char *control, const char *source)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200900{
901 struct snd_soc_dapm_path *path;
902 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
903 int ret = 0;
904
905 /* find src and dest widgets */
906 list_for_each_entry(w, &codec->dapm_widgets, list) {
907
908 if (!wsink && !(strcmp(w->name, sink))) {
909 wsink = w;
910 continue;
911 }
912 if (!wsource && !(strcmp(w->name, source))) {
913 wsource = w;
914 }
915 }
916
917 if (wsource == NULL || wsink == NULL)
918 return -ENODEV;
919
920 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
921 if (!path)
922 return -ENOMEM;
923
924 path->source = wsource;
925 path->sink = wsink;
926 INIT_LIST_HEAD(&path->list);
927 INIT_LIST_HEAD(&path->list_source);
928 INIT_LIST_HEAD(&path->list_sink);
929
930 /* check for external widgets */
931 if (wsink->id == snd_soc_dapm_input) {
932 if (wsource->id == snd_soc_dapm_micbias ||
933 wsource->id == snd_soc_dapm_mic ||
Seth Forshee1e392212007-04-16 15:36:42 +0200934 wsink->id == snd_soc_dapm_line ||
935 wsink->id == snd_soc_dapm_output)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200936 wsink->ext = 1;
937 }
938 if (wsource->id == snd_soc_dapm_output) {
939 if (wsink->id == snd_soc_dapm_spk ||
940 wsink->id == snd_soc_dapm_hp ||
Seth Forshee1e392212007-04-16 15:36:42 +0200941 wsink->id == snd_soc_dapm_line ||
942 wsink->id == snd_soc_dapm_input)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200943 wsource->ext = 1;
944 }
945
946 /* connect static paths */
947 if (control == NULL) {
948 list_add(&path->list, &codec->dapm_paths);
949 list_add(&path->list_sink, &wsink->sources);
950 list_add(&path->list_source, &wsource->sinks);
951 path->connect = 1;
952 return 0;
953 }
954
955 /* connect dynamic paths */
956 switch(wsink->id) {
957 case snd_soc_dapm_adc:
958 case snd_soc_dapm_dac:
959 case snd_soc_dapm_pga:
960 case snd_soc_dapm_input:
961 case snd_soc_dapm_output:
962 case snd_soc_dapm_micbias:
963 case snd_soc_dapm_vmid:
964 case snd_soc_dapm_pre:
965 case snd_soc_dapm_post:
966 list_add(&path->list, &codec->dapm_paths);
967 list_add(&path->list_sink, &wsink->sources);
968 list_add(&path->list_source, &wsource->sinks);
969 path->connect = 1;
970 return 0;
971 case snd_soc_dapm_mux:
972 ret = dapm_connect_mux(codec, wsource, wsink, path, control,
973 &wsink->kcontrols[0]);
974 if (ret != 0)
975 goto err;
976 break;
977 case snd_soc_dapm_switch:
978 case snd_soc_dapm_mixer:
979 ret = dapm_connect_mixer(codec, wsource, wsink, path, control);
980 if (ret != 0)
981 goto err;
982 break;
983 case snd_soc_dapm_hp:
984 case snd_soc_dapm_mic:
985 case snd_soc_dapm_line:
986 case snd_soc_dapm_spk:
987 list_add(&path->list, &codec->dapm_paths);
988 list_add(&path->list_sink, &wsink->sources);
989 list_add(&path->list_source, &wsource->sinks);
990 path->connect = 0;
991 return 0;
992 }
993 return 0;
994
995err:
996 printk(KERN_WARNING "asoc: no dapm match for %s --> %s --> %s\n", source,
997 control, sink);
998 kfree(path);
999 return ret;
1000}
Mark Brown105f1c22008-05-13 14:52:19 +02001001
1002/**
1003 * snd_soc_dapm_connect_input - connect dapm widgets
1004 * @codec: audio codec
1005 * @sink: name of target widget
1006 * @control: mixer control name
1007 * @source: name of source name
1008 *
1009 * Connects 2 dapm widgets together via a named audio path. The sink is
1010 * the widget receiving the audio signal, whilst the source is the sender
1011 * of the audio signal.
1012 *
1013 * This function has been deprecated in favour of snd_soc_dapm_add_routes().
1014 *
1015 * Returns 0 for success else error.
1016 */
1017int snd_soc_dapm_connect_input(struct snd_soc_codec *codec, const char *sink,
1018 const char *control, const char *source)
1019{
1020 return snd_soc_dapm_add_route(codec, sink, control, source);
1021}
Richard Purdie2b97eab2006-10-06 18:32:18 +02001022EXPORT_SYMBOL_GPL(snd_soc_dapm_connect_input);
1023
1024/**
Mark Brown105f1c22008-05-13 14:52:19 +02001025 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1026 * @codec: codec
1027 * @route: audio routes
1028 * @num: number of routes
1029 *
1030 * Connects 2 dapm widgets together via a named audio path. The sink is
1031 * the widget receiving the audio signal, whilst the source is the sender
1032 * of the audio signal.
1033 *
1034 * Returns 0 for success else error. On error all resources can be freed
1035 * with a call to snd_soc_card_free().
1036 */
1037int snd_soc_dapm_add_routes(struct snd_soc_codec *codec,
1038 const struct snd_soc_dapm_route *route, int num)
1039{
1040 int i, ret;
1041
1042 for (i = 0; i < num; i++) {
1043 ret = snd_soc_dapm_add_route(codec, route->sink,
1044 route->control, route->source);
1045 if (ret < 0) {
1046 printk(KERN_ERR "Failed to add route %s->%s\n",
1047 route->source,
1048 route->sink);
1049 return ret;
1050 }
1051 route++;
1052 }
1053
1054 return 0;
1055}
1056EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
1057
1058/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02001059 * snd_soc_dapm_new_widgets - add new dapm widgets
1060 * @codec: audio codec
1061 *
1062 * Checks the codec for any new dapm widgets and creates them if found.
1063 *
1064 * Returns 0 for success.
1065 */
1066int snd_soc_dapm_new_widgets(struct snd_soc_codec *codec)
1067{
1068 struct snd_soc_dapm_widget *w;
1069
Richard Purdie2b97eab2006-10-06 18:32:18 +02001070 list_for_each_entry(w, &codec->dapm_widgets, list)
1071 {
1072 if (w->new)
1073 continue;
1074
1075 switch(w->id) {
1076 case snd_soc_dapm_switch:
1077 case snd_soc_dapm_mixer:
1078 dapm_new_mixer(codec, w);
1079 break;
1080 case snd_soc_dapm_mux:
1081 dapm_new_mux(codec, w);
1082 break;
1083 case snd_soc_dapm_adc:
1084 case snd_soc_dapm_dac:
1085 case snd_soc_dapm_pga:
1086 dapm_new_pga(codec, w);
1087 break;
1088 case snd_soc_dapm_input:
1089 case snd_soc_dapm_output:
1090 case snd_soc_dapm_micbias:
1091 case snd_soc_dapm_spk:
1092 case snd_soc_dapm_hp:
1093 case snd_soc_dapm_mic:
1094 case snd_soc_dapm_line:
1095 case snd_soc_dapm_vmid:
1096 case snd_soc_dapm_pre:
1097 case snd_soc_dapm_post:
1098 break;
1099 }
1100 w->new = 1;
1101 }
1102
1103 dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001104 return 0;
1105}
1106EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
1107
1108/**
1109 * snd_soc_dapm_get_volsw - dapm mixer get callback
1110 * @kcontrol: mixer control
1111 * @uinfo: control element information
1112 *
1113 * Callback to get the value of a dapm mixer control.
1114 *
1115 * Returns 0 for success.
1116 */
1117int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
1118 struct snd_ctl_elem_value *ucontrol)
1119{
1120 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1121 int reg = kcontrol->private_value & 0xff;
1122 int shift = (kcontrol->private_value >> 8) & 0x0f;
1123 int rshift = (kcontrol->private_value >> 12) & 0x0f;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001124 int max = (kcontrol->private_value >> 16) & 0xff;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001125 int invert = (kcontrol->private_value >> 24) & 0x01;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001126 int mask = (1 << fls(max)) - 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001127
1128 /* return the saved value if we are powered down */
1129 if (widget->id == snd_soc_dapm_pga && !widget->power) {
1130 ucontrol->value.integer.value[0] = widget->saved_value;
1131 return 0;
1132 }
1133
1134 ucontrol->value.integer.value[0] =
1135 (snd_soc_read(widget->codec, reg) >> shift) & mask;
1136 if (shift != rshift)
1137 ucontrol->value.integer.value[1] =
1138 (snd_soc_read(widget->codec, reg) >> rshift) & mask;
1139 if (invert) {
1140 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001141 max - ucontrol->value.integer.value[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001142 if (shift != rshift)
1143 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001144 max - ucontrol->value.integer.value[1];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001145 }
1146
1147 return 0;
1148}
1149EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
1150
1151/**
1152 * snd_soc_dapm_put_volsw - dapm mixer set callback
1153 * @kcontrol: mixer control
1154 * @uinfo: control element information
1155 *
1156 * Callback to set the value of a dapm mixer control.
1157 *
1158 * Returns 0 for success.
1159 */
1160int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
1161 struct snd_ctl_elem_value *ucontrol)
1162{
1163 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1164 int reg = kcontrol->private_value & 0xff;
1165 int shift = (kcontrol->private_value >> 8) & 0x0f;
1166 int rshift = (kcontrol->private_value >> 12) & 0x0f;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001167 int max = (kcontrol->private_value >> 16) & 0xff;
1168 int mask = (1 << fls(max)) - 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001169 int invert = (kcontrol->private_value >> 24) & 0x01;
1170 unsigned short val, val2, val_mask;
1171 int ret;
1172
1173 val = (ucontrol->value.integer.value[0] & mask);
1174
1175 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001176 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001177 val_mask = mask << shift;
1178 val = val << shift;
1179 if (shift != rshift) {
1180 val2 = (ucontrol->value.integer.value[1] & mask);
1181 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001182 val2 = max - val2;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001183 val_mask |= mask << rshift;
1184 val |= val2 << rshift;
1185 }
1186
1187 mutex_lock(&widget->codec->mutex);
1188 widget->value = val;
1189
1190 /* save volume value if the widget is powered down */
1191 if (widget->id == snd_soc_dapm_pga && !widget->power) {
1192 widget->saved_value = val;
1193 mutex_unlock(&widget->codec->mutex);
1194 return 1;
1195 }
1196
1197 dapm_mixer_update_power(widget, kcontrol, reg, val_mask, val, invert);
1198 if (widget->event) {
1199 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
Laim Girdwood9af6d952008-01-10 14:41:02 +01001200 ret = widget->event(widget, kcontrol,
1201 SND_SOC_DAPM_PRE_REG);
1202 if (ret < 0) {
1203 ret = 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001204 goto out;
Laim Girdwood9af6d952008-01-10 14:41:02 +01001205 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001206 }
1207 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1208 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
Laim Girdwood9af6d952008-01-10 14:41:02 +01001209 ret = widget->event(widget, kcontrol,
1210 SND_SOC_DAPM_POST_REG);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001211 } else
1212 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
1213
1214out:
1215 mutex_unlock(&widget->codec->mutex);
1216 return ret;
1217}
1218EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
1219
1220/**
1221 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1222 * @kcontrol: mixer control
1223 * @uinfo: control element information
1224 *
1225 * Callback to get the value of a dapm enumerated double mixer control.
1226 *
1227 * Returns 0 for success.
1228 */
1229int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
1230 struct snd_ctl_elem_value *ucontrol)
1231{
1232 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1233 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1234 unsigned short val, bitmask;
1235
1236 for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
1237 ;
1238 val = snd_soc_read(widget->codec, e->reg);
1239 ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
1240 if (e->shift_l != e->shift_r)
1241 ucontrol->value.enumerated.item[1] =
1242 (val >> e->shift_r) & (bitmask - 1);
1243
1244 return 0;
1245}
1246EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
1247
1248/**
1249 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1250 * @kcontrol: mixer control
1251 * @uinfo: control element information
1252 *
1253 * Callback to set the value of a dapm enumerated double mixer control.
1254 *
1255 * Returns 0 for success.
1256 */
1257int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
1258 struct snd_ctl_elem_value *ucontrol)
1259{
1260 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
1261 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1262 unsigned short val, mux;
1263 unsigned short mask, bitmask;
1264 int ret = 0;
1265
1266 for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
1267 ;
1268 if (ucontrol->value.enumerated.item[0] > e->mask - 1)
1269 return -EINVAL;
1270 mux = ucontrol->value.enumerated.item[0];
1271 val = mux << e->shift_l;
1272 mask = (bitmask - 1) << e->shift_l;
1273 if (e->shift_l != e->shift_r) {
1274 if (ucontrol->value.enumerated.item[1] > e->mask - 1)
1275 return -EINVAL;
1276 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1277 mask |= (bitmask - 1) << e->shift_r;
1278 }
1279
1280 mutex_lock(&widget->codec->mutex);
1281 widget->value = val;
1282 dapm_mux_update_power(widget, kcontrol, mask, mux, e);
1283 if (widget->event) {
1284 if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
Laim Girdwood9af6d952008-01-10 14:41:02 +01001285 ret = widget->event(widget,
1286 kcontrol, SND_SOC_DAPM_PRE_REG);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001287 if (ret < 0)
1288 goto out;
1289 }
1290 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1291 if (widget->event_flags & SND_SOC_DAPM_POST_REG)
Laim Girdwood9af6d952008-01-10 14:41:02 +01001292 ret = widget->event(widget,
1293 kcontrol, SND_SOC_DAPM_POST_REG);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001294 } else
1295 ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
1296
1297out:
1298 mutex_unlock(&widget->codec->mutex);
1299 return ret;
1300}
1301EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
1302
1303/**
1304 * snd_soc_dapm_new_control - create new dapm control
1305 * @codec: audio codec
1306 * @widget: widget template
1307 *
1308 * Creates a new dapm control based upon the template.
1309 *
1310 * Returns 0 for success else error.
1311 */
1312int snd_soc_dapm_new_control(struct snd_soc_codec *codec,
1313 const struct snd_soc_dapm_widget *widget)
1314{
1315 struct snd_soc_dapm_widget *w;
1316
1317 if ((w = dapm_cnew_widget(widget)) == NULL)
1318 return -ENOMEM;
1319
1320 w->codec = codec;
1321 INIT_LIST_HEAD(&w->sources);
1322 INIT_LIST_HEAD(&w->sinks);
1323 INIT_LIST_HEAD(&w->list);
1324 list_add(&w->list, &codec->dapm_widgets);
1325
1326 /* machine layer set ups unconnected pins and insertions */
1327 w->connected = 1;
1328 return 0;
1329}
1330EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
1331
1332/**
Mark Brown4ba13272008-05-13 14:51:19 +02001333 * snd_soc_dapm_new_controls - create new dapm controls
1334 * @codec: audio codec
1335 * @widget: widget array
1336 * @num: number of widgets
1337 *
1338 * Creates new DAPM controls based upon the templates.
1339 *
1340 * Returns 0 for success else error.
1341 */
1342int snd_soc_dapm_new_controls(struct snd_soc_codec *codec,
1343 const struct snd_soc_dapm_widget *widget,
1344 int num)
1345{
1346 int i, ret;
1347
1348 for (i = 0; i < num; i++) {
1349 ret = snd_soc_dapm_new_control(codec, widget);
1350 if (ret < 0)
1351 return ret;
1352 widget++;
1353 }
1354 return 0;
1355}
1356EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
1357
1358
1359/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02001360 * snd_soc_dapm_stream_event - send a stream event to the dapm core
1361 * @codec: audio codec
1362 * @stream: stream name
1363 * @event: stream event
1364 *
1365 * Sends a stream event to the dapm core. The core then makes any
1366 * necessary widget power changes.
1367 *
1368 * Returns 0 for success else error.
1369 */
1370int snd_soc_dapm_stream_event(struct snd_soc_codec *codec,
1371 char *stream, int event)
1372{
1373 struct snd_soc_dapm_widget *w;
1374
Seth Forshee11da21a2007-02-02 17:14:19 +01001375 if (stream == NULL)
1376 return 0;
1377
Richard Purdie2b97eab2006-10-06 18:32:18 +02001378 mutex_lock(&codec->mutex);
1379 list_for_each_entry(w, &codec->dapm_widgets, list)
1380 {
1381 if (!w->sname)
1382 continue;
1383 dbg("widget %s\n %s stream %s event %d\n", w->name, w->sname,
1384 stream, event);
1385 if (strstr(w->sname, stream)) {
1386 switch(event) {
1387 case SND_SOC_DAPM_STREAM_START:
1388 w->active = 1;
1389 break;
1390 case SND_SOC_DAPM_STREAM_STOP:
1391 w->active = 0;
1392 break;
1393 case SND_SOC_DAPM_STREAM_SUSPEND:
1394 if (w->active)
1395 w->suspend = 1;
1396 w->active = 0;
1397 break;
1398 case SND_SOC_DAPM_STREAM_RESUME:
1399 if (w->suspend) {
1400 w->active = 1;
1401 w->suspend = 0;
1402 }
1403 break;
1404 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
1405 break;
1406 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
1407 break;
1408 }
1409 }
1410 }
1411 mutex_unlock(&codec->mutex);
1412
1413 dapm_power_widgets(codec, event);
Harvey Harrison9bf8e7d2008-03-03 15:32:18 -08001414 dump_dapm(codec, __func__);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001415 return 0;
1416}
1417EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event);
1418
1419/**
Mark Brown0be98982008-05-19 12:31:28 +02001420 * snd_soc_dapm_set_bias_level - set the bias level for the system
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001421 * @socdev: audio device
Mark Brown0be98982008-05-19 12:31:28 +02001422 * @level: level to configure
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001423 *
Mark Brown0be98982008-05-19 12:31:28 +02001424 * Configure the bias (power) levels for the SoC audio device.
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001425 *
1426 * Returns 0 for success else error.
1427 */
Mark Brown0be98982008-05-19 12:31:28 +02001428int snd_soc_dapm_set_bias_level(struct snd_soc_device *socdev,
1429 enum snd_soc_bias_level level)
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001430{
1431 struct snd_soc_codec *codec = socdev->codec;
1432 struct snd_soc_machine *machine = socdev->machine;
Mark Brown0be98982008-05-19 12:31:28 +02001433 int ret = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001434
Mark Brown0be98982008-05-19 12:31:28 +02001435 if (machine->set_bias_level)
1436 ret = machine->set_bias_level(machine, level);
1437 if (ret == 0 && codec->set_bias_level)
1438 ret = codec->set_bias_level(codec, level);
1439
1440 return ret;
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001441}
Liam Girdwood0b4d2212008-01-10 14:36:20 +01001442
1443/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02001444 * snd_soc_dapm_set_endpoint - set audio endpoint status
1445 * @codec: audio codec
1446 * @endpoint: audio signal endpoint (or start point)
1447 * @status: point status
1448 *
1449 * Set audio endpoint status - connected or disconnected.
1450 *
1451 * Returns 0 for success else error.
1452 */
1453int snd_soc_dapm_set_endpoint(struct snd_soc_codec *codec,
1454 char *endpoint, int status)
1455{
1456 struct snd_soc_dapm_widget *w;
1457
1458 list_for_each_entry(w, &codec->dapm_widgets, list) {
1459 if (!strcmp(w->name, endpoint)) {
1460 w->connected = status;
Mark Brown964a7882008-02-26 13:16:08 +01001461 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001462 }
1463 }
1464
Mark Brown964a7882008-02-26 13:16:08 +01001465 return -ENODEV;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001466}
1467EXPORT_SYMBOL_GPL(snd_soc_dapm_set_endpoint);
1468
1469/**
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02001470 * snd_soc_dapm_get_endpoint_status - get audio endpoint status
1471 * @codec: audio codec
1472 * @endpoint: audio signal endpoint (or start point)
1473 *
1474 * Get audio endpoint status - connected or disconnected.
1475 *
1476 * Returns status
1477 */
1478int snd_soc_dapm_get_endpoint_status(struct snd_soc_codec *codec,
1479 char *endpoint)
1480{
1481 struct snd_soc_dapm_widget *w;
1482
1483 list_for_each_entry(w, &codec->dapm_widgets, list) {
1484 if (!strcmp(w->name, endpoint))
1485 return w->connected;
1486 }
1487
1488 return 0;
1489}
Stephen Rothwell650f6b12008-05-01 10:49:18 +02001490EXPORT_SYMBOL_GPL(snd_soc_dapm_get_endpoint_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02001491
1492/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02001493 * snd_soc_dapm_free - free dapm resources
1494 * @socdev: SoC device
1495 *
1496 * Free all dapm widgets and resources.
1497 */
1498void snd_soc_dapm_free(struct snd_soc_device *socdev)
1499{
1500 struct snd_soc_codec *codec = socdev->codec;
1501
1502 snd_soc_dapm_sys_remove(socdev->dev);
1503 dapm_free_widgets(codec);
1504}
1505EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
1506
1507/* Module information */
1508MODULE_AUTHOR("Liam Girdwood, liam.girdwood@wolfsonmicro.com, www.wolfsonmicro.com");
1509MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
1510MODULE_LICENSE("GPL");