2 * wm8903.c -- WM8903 ALSA SoC Audio driver
4 * Copyright 2008 Wolfson Microelectronics
5 * Copyright 2011 NVIDIA, Inc.
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 * - TDM mode configuration.
15 * - Digital microphone support.
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/init.h>
21 #include <linux/completion.h>
22 #include <linux/delay.h>
23 #include <linux/gpio.h>
25 #include <linux/i2c.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28 #include <sound/core.h>
29 #include <sound/jack.h>
30 #include <sound/pcm.h>
31 #include <sound/pcm_params.h>
32 #include <sound/tlv.h>
33 #include <sound/soc.h>
34 #include <sound/initval.h>
35 #include <sound/wm8903.h>
36 #include <trace/events/asoc.h>
40 /* Register defaults at reset */
41 static u16 wm8903_reg_defaults
[] = {
42 0x8903, /* R0 - SW Reset and ID */
43 0x0000, /* R1 - Revision Number */
46 0x0018, /* R4 - Bias Control 0 */
47 0x0000, /* R5 - VMID Control 0 */
48 0x0000, /* R6 - Mic Bias Control 0 */
50 0x0001, /* R8 - Analogue DAC 0 */
52 0x0001, /* R10 - Analogue ADC 0 */
54 0x0000, /* R12 - Power Management 0 */
55 0x0000, /* R13 - Power Management 1 */
56 0x0000, /* R14 - Power Management 2 */
57 0x0000, /* R15 - Power Management 3 */
58 0x0000, /* R16 - Power Management 4 */
59 0x0000, /* R17 - Power Management 5 */
60 0x0000, /* R18 - Power Management 6 */
62 0x0400, /* R20 - Clock Rates 0 */
63 0x0D07, /* R21 - Clock Rates 1 */
64 0x0000, /* R22 - Clock Rates 2 */
66 0x0050, /* R24 - Audio Interface 0 */
67 0x0242, /* R25 - Audio Interface 1 */
68 0x0008, /* R26 - Audio Interface 2 */
69 0x0022, /* R27 - Audio Interface 3 */
72 0x00C0, /* R30 - DAC Digital Volume Left */
73 0x00C0, /* R31 - DAC Digital Volume Right */
74 0x0000, /* R32 - DAC Digital 0 */
75 0x0000, /* R33 - DAC Digital 1 */
78 0x00C0, /* R36 - ADC Digital Volume Left */
79 0x00C0, /* R37 - ADC Digital Volume Right */
80 0x0000, /* R38 - ADC Digital 0 */
81 0x0073, /* R39 - Digital Microphone 0 */
82 0x09BF, /* R40 - DRC 0 */
83 0x3241, /* R41 - DRC 1 */
84 0x0020, /* R42 - DRC 2 */
85 0x0000, /* R43 - DRC 3 */
86 0x0085, /* R44 - Analogue Left Input 0 */
87 0x0085, /* R45 - Analogue Right Input 0 */
88 0x0044, /* R46 - Analogue Left Input 1 */
89 0x0044, /* R47 - Analogue Right Input 1 */
92 0x0008, /* R50 - Analogue Left Mix 0 */
93 0x0004, /* R51 - Analogue Right Mix 0 */
94 0x0000, /* R52 - Analogue Spk Mix Left 0 */
95 0x0000, /* R53 - Analogue Spk Mix Left 1 */
96 0x0000, /* R54 - Analogue Spk Mix Right 0 */
97 0x0000, /* R55 - Analogue Spk Mix Right 1 */
99 0x002D, /* R57 - Analogue OUT1 Left */
100 0x002D, /* R58 - Analogue OUT1 Right */
101 0x0039, /* R59 - Analogue OUT2 Left */
102 0x0039, /* R60 - Analogue OUT2 Right */
104 0x0139, /* R62 - Analogue OUT3 Left */
105 0x0139, /* R63 - Analogue OUT3 Right */
107 0x0000, /* R65 - Analogue SPK Output Control 0 */
109 0x0010, /* R67 - DC Servo 0 */
111 0x00A4, /* R69 - DC Servo 2 */
132 0x0000, /* R90 - Analogue HP 0 */
136 0x0000, /* R94 - Analogue Lineout 0 */
140 0x0000, /* R98 - Charge Pump 0 */
146 0x0000, /* R104 - Class W 0 */
150 0x0000, /* R108 - Write Sequencer 0 */
151 0x0000, /* R109 - Write Sequencer 1 */
152 0x0000, /* R110 - Write Sequencer 2 */
153 0x0000, /* R111 - Write Sequencer 3 */
154 0x0000, /* R112 - Write Sequencer 4 */
156 0x0000, /* R114 - Control Interface */
158 0x00A8, /* R116 - GPIO Control 1 */
159 0x00A8, /* R117 - GPIO Control 2 */
160 0x00A8, /* R118 - GPIO Control 3 */
161 0x0220, /* R119 - GPIO Control 4 */
162 0x01A0, /* R120 - GPIO Control 5 */
163 0x0000, /* R121 - Interrupt Status 1 */
164 0xFFFF, /* R122 - Interrupt Status 1 Mask */
165 0x0000, /* R123 - Interrupt Polarity 1 */
168 0x0000, /* R126 - Interrupt Control */
171 0x0000, /* R129 - Control Interface Test 1 */
191 0x6810, /* R149 - Charge Pump Test 1 */
206 0x0028, /* R164 - Clock Rate Test 4 */
214 0x0000, /* R172 - Analogue Output Bias 0 */
218 struct snd_soc_codec
*codec
;
229 /* Reference count */
232 struct snd_soc_jack
*mic_jack
;
238 #ifdef CONFIG_GPIOLIB
239 struct gpio_chip gpio_chip
;
243 static int wm8903_volatile_register(struct snd_soc_codec
*codec
, unsigned int reg
)
246 case WM8903_SW_RESET_AND_ID
:
247 case WM8903_REVISION_NUMBER
:
248 case WM8903_INTERRUPT_STATUS_1
:
249 case WM8903_WRITE_SEQUENCER_4
:
250 case WM8903_DC_SERVO_READBACK_1
:
251 case WM8903_DC_SERVO_READBACK_2
:
252 case WM8903_DC_SERVO_READBACK_3
:
253 case WM8903_DC_SERVO_READBACK_4
:
261 static void wm8903_reset(struct snd_soc_codec
*codec
)
263 snd_soc_write(codec
, WM8903_SW_RESET_AND_ID
, 0);
264 memcpy(codec
->reg_cache
, wm8903_reg_defaults
,
265 sizeof(wm8903_reg_defaults
));
268 static int wm8903_cp_event(struct snd_soc_dapm_widget
*w
,
269 struct snd_kcontrol
*kcontrol
, int event
)
271 WARN_ON(event
!= SND_SOC_DAPM_POST_PMU
);
277 static int wm8903_dcs_event(struct snd_soc_dapm_widget
*w
,
278 struct snd_kcontrol
*kcontrol
, int event
)
280 struct snd_soc_codec
*codec
= w
->codec
;
281 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
284 case SND_SOC_DAPM_POST_PMU
:
285 wm8903
->dcs_pending
|= 1 << w
->shift
;
287 case SND_SOC_DAPM_PRE_PMD
:
288 snd_soc_update_bits(codec
, WM8903_DC_SERVO_0
,
296 #define WM8903_DCS_MODE_WRITE_STOP 0
297 #define WM8903_DCS_MODE_START_STOP 2
299 static void wm8903_seq_notifier(struct snd_soc_dapm_context
*dapm
,
300 enum snd_soc_dapm_type event
, int subseq
)
302 struct snd_soc_codec
*codec
= container_of(dapm
,
303 struct snd_soc_codec
, dapm
);
304 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
305 int dcs_mode
= WM8903_DCS_MODE_WRITE_STOP
;
308 /* Complete any pending DC servo starts */
309 if (wm8903
->dcs_pending
) {
310 dev_dbg(codec
->dev
, "Starting DC servo for %x\n",
311 wm8903
->dcs_pending
);
313 /* If we've no cached values then we need to do startup */
314 for (i
= 0; i
< ARRAY_SIZE(wm8903
->dcs_cache
); i
++) {
315 if (!(wm8903
->dcs_pending
& (1 << i
)))
318 if (wm8903
->dcs_cache
[i
]) {
320 "Restore DC servo %d value %x\n",
321 3 - i
, wm8903
->dcs_cache
[i
]);
323 snd_soc_write(codec
, WM8903_DC_SERVO_4
+ i
,
324 wm8903
->dcs_cache
[i
] & 0xff);
327 "Calibrate DC servo %d\n", 3 - i
);
328 dcs_mode
= WM8903_DCS_MODE_START_STOP
;
332 /* Don't trust the cache for analogue */
333 if (wm8903
->class_w_users
)
334 dcs_mode
= WM8903_DCS_MODE_START_STOP
;
336 snd_soc_update_bits(codec
, WM8903_DC_SERVO_2
,
337 WM8903_DCS_MODE_MASK
, dcs_mode
);
339 snd_soc_update_bits(codec
, WM8903_DC_SERVO_0
,
340 WM8903_DCS_ENA_MASK
, wm8903
->dcs_pending
);
343 case WM8903_DCS_MODE_WRITE_STOP
:
346 case WM8903_DCS_MODE_START_STOP
:
349 /* Cache the measured offsets for digital */
350 if (wm8903
->class_w_users
)
353 for (i
= 0; i
< ARRAY_SIZE(wm8903
->dcs_cache
); i
++) {
354 if (!(wm8903
->dcs_pending
& (1 << i
)))
357 val
= snd_soc_read(codec
,
358 WM8903_DC_SERVO_READBACK_1
+ i
);
359 dev_dbg(codec
->dev
, "DC servo %d: %x\n",
361 wm8903
->dcs_cache
[i
] = val
;
366 pr_warn("DCS mode %d delay not set\n", dcs_mode
);
370 wm8903
->dcs_pending
= 0;
375 * When used with DAC outputs only the WM8903 charge pump supports
376 * operation in class W mode, providing very low power consumption
377 * when used with digital sources. Enable and disable this mode
378 * automatically depending on the mixer configuration.
380 * All the relevant controls are simple switches.
382 static int wm8903_class_w_put(struct snd_kcontrol
*kcontrol
,
383 struct snd_ctl_elem_value
*ucontrol
)
385 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
386 struct snd_soc_codec
*codec
= widget
->codec
;
387 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
391 reg
= snd_soc_read(codec
, WM8903_CLASS_W_0
);
393 /* Turn it off if we're about to enable bypass */
394 if (ucontrol
->value
.integer
.value
[0]) {
395 if (wm8903
->class_w_users
== 0) {
396 dev_dbg(codec
->dev
, "Disabling Class W\n");
397 snd_soc_write(codec
, WM8903_CLASS_W_0
, reg
&
398 ~(WM8903_CP_DYN_FREQ
| WM8903_CP_DYN_V
));
400 wm8903
->class_w_users
++;
403 /* Implement the change */
404 ret
= snd_soc_dapm_put_volsw(kcontrol
, ucontrol
);
406 /* If we've just disabled the last bypass path turn Class W on */
407 if (!ucontrol
->value
.integer
.value
[0]) {
408 if (wm8903
->class_w_users
== 1) {
409 dev_dbg(codec
->dev
, "Enabling Class W\n");
410 snd_soc_write(codec
, WM8903_CLASS_W_0
, reg
|
411 WM8903_CP_DYN_FREQ
| WM8903_CP_DYN_V
);
413 wm8903
->class_w_users
--;
416 dev_dbg(codec
->dev
, "Bypass use count now %d\n",
417 wm8903
->class_w_users
);
422 #define SOC_DAPM_SINGLE_W(xname, reg, shift, max, invert) \
423 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
424 .info = snd_soc_info_volsw, \
425 .get = snd_soc_dapm_get_volsw, .put = wm8903_class_w_put, \
426 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) }
429 static int wm8903_deemph
[] = { 0, 32000, 44100, 48000 };
431 static int wm8903_set_deemph(struct snd_soc_codec
*codec
)
433 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
436 /* If we're using deemphasis select the nearest available sample
439 if (wm8903
->deemph
) {
441 for (i
= 2; i
< ARRAY_SIZE(wm8903_deemph
); i
++) {
442 if (abs(wm8903_deemph
[i
] - wm8903
->fs
) <
443 abs(wm8903_deemph
[best
] - wm8903
->fs
))
447 val
= best
<< WM8903_DEEMPH_SHIFT
;
453 dev_dbg(codec
->dev
, "Set deemphasis %d (%dHz)\n",
454 best
, wm8903_deemph
[best
]);
456 return snd_soc_update_bits(codec
, WM8903_DAC_DIGITAL_1
,
457 WM8903_DEEMPH_MASK
, val
);
460 static int wm8903_get_deemph(struct snd_kcontrol
*kcontrol
,
461 struct snd_ctl_elem_value
*ucontrol
)
463 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
464 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
466 ucontrol
->value
.enumerated
.item
[0] = wm8903
->deemph
;
471 static int wm8903_put_deemph(struct snd_kcontrol
*kcontrol
,
472 struct snd_ctl_elem_value
*ucontrol
)
474 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
475 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
476 int deemph
= ucontrol
->value
.enumerated
.item
[0];
482 mutex_lock(&codec
->mutex
);
483 if (wm8903
->deemph
!= deemph
) {
484 wm8903
->deemph
= deemph
;
486 wm8903_set_deemph(codec
);
490 mutex_unlock(&codec
->mutex
);
495 /* ALSA can only do steps of .01dB */
496 static const DECLARE_TLV_DB_SCALE(digital_tlv
, -7200, 75, 1);
498 static const DECLARE_TLV_DB_SCALE(digital_sidetone_tlv
, -3600, 300, 0);
499 static const DECLARE_TLV_DB_SCALE(out_tlv
, -5700, 100, 0);
501 static const DECLARE_TLV_DB_SCALE(drc_tlv_thresh
, 0, 75, 0);
502 static const DECLARE_TLV_DB_SCALE(drc_tlv_amp
, -2250, 75, 0);
503 static const DECLARE_TLV_DB_SCALE(drc_tlv_min
, 0, 600, 0);
504 static const DECLARE_TLV_DB_SCALE(drc_tlv_max
, 1200, 600, 0);
505 static const DECLARE_TLV_DB_SCALE(drc_tlv_startup
, -300, 50, 0);
507 static const char *hpf_mode_text
[] = {
508 "Hi-fi", "Voice 1", "Voice 2", "Voice 3"
511 static const struct soc_enum hpf_mode
=
512 SOC_ENUM_SINGLE(WM8903_ADC_DIGITAL_0
, 5, 4, hpf_mode_text
);
514 static const char *osr_text
[] = {
515 "Low power", "High performance"
518 static const struct soc_enum adc_osr
=
519 SOC_ENUM_SINGLE(WM8903_ANALOGUE_ADC_0
, 0, 2, osr_text
);
521 static const struct soc_enum dac_osr
=
522 SOC_ENUM_SINGLE(WM8903_DAC_DIGITAL_1
, 0, 2, osr_text
);
524 static const char *drc_slope_text
[] = {
525 "1", "1/2", "1/4", "1/8", "1/16", "0"
528 static const struct soc_enum drc_slope_r0
=
529 SOC_ENUM_SINGLE(WM8903_DRC_2
, 3, 6, drc_slope_text
);
531 static const struct soc_enum drc_slope_r1
=
532 SOC_ENUM_SINGLE(WM8903_DRC_2
, 0, 6, drc_slope_text
);
534 static const char *drc_attack_text
[] = {
536 "363us", "762us", "1.45ms", "2.9ms", "5.8ms", "11.6ms", "23.2ms",
537 "46.4ms", "92.8ms", "185.6ms"
540 static const struct soc_enum drc_attack
=
541 SOC_ENUM_SINGLE(WM8903_DRC_1
, 12, 11, drc_attack_text
);
543 static const char *drc_decay_text
[] = {
544 "186ms", "372ms", "743ms", "1.49s", "2.97s", "5.94s", "11.89s",
548 static const struct soc_enum drc_decay
=
549 SOC_ENUM_SINGLE(WM8903_DRC_1
, 8, 9, drc_decay_text
);
551 static const char *drc_ff_delay_text
[] = {
552 "5 samples", "9 samples"
555 static const struct soc_enum drc_ff_delay
=
556 SOC_ENUM_SINGLE(WM8903_DRC_0
, 5, 2, drc_ff_delay_text
);
558 static const char *drc_qr_decay_text
[] = {
559 "0.725ms", "1.45ms", "5.8ms"
562 static const struct soc_enum drc_qr_decay
=
563 SOC_ENUM_SINGLE(WM8903_DRC_1
, 4, 3, drc_qr_decay_text
);
565 static const char *drc_smoothing_text
[] = {
566 "Low", "Medium", "High"
569 static const struct soc_enum drc_smoothing
=
570 SOC_ENUM_SINGLE(WM8903_DRC_0
, 11, 3, drc_smoothing_text
);
572 static const char *soft_mute_text
[] = {
573 "Fast (fs/2)", "Slow (fs/32)"
576 static const struct soc_enum soft_mute
=
577 SOC_ENUM_SINGLE(WM8903_DAC_DIGITAL_1
, 10, 2, soft_mute_text
);
579 static const char *mute_mode_text
[] = {
583 static const struct soc_enum mute_mode
=
584 SOC_ENUM_SINGLE(WM8903_DAC_DIGITAL_1
, 9, 2, mute_mode_text
);
586 static const char *companding_text
[] = {
590 static const struct soc_enum dac_companding
=
591 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 0, 2, companding_text
);
593 static const struct soc_enum adc_companding
=
594 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 2, 2, companding_text
);
596 static const char *input_mode_text
[] = {
597 "Single-Ended", "Differential Line", "Differential Mic"
600 static const struct soc_enum linput_mode_enum
=
601 SOC_ENUM_SINGLE(WM8903_ANALOGUE_LEFT_INPUT_1
, 0, 3, input_mode_text
);
603 static const struct soc_enum rinput_mode_enum
=
604 SOC_ENUM_SINGLE(WM8903_ANALOGUE_RIGHT_INPUT_1
, 0, 3, input_mode_text
);
606 static const char *linput_mux_text
[] = {
607 "IN1L", "IN2L", "IN3L"
610 static const struct soc_enum linput_enum
=
611 SOC_ENUM_SINGLE(WM8903_ANALOGUE_LEFT_INPUT_1
, 2, 3, linput_mux_text
);
613 static const struct soc_enum linput_inv_enum
=
614 SOC_ENUM_SINGLE(WM8903_ANALOGUE_LEFT_INPUT_1
, 4, 3, linput_mux_text
);
616 static const char *rinput_mux_text
[] = {
617 "IN1R", "IN2R", "IN3R"
620 static const struct soc_enum rinput_enum
=
621 SOC_ENUM_SINGLE(WM8903_ANALOGUE_RIGHT_INPUT_1
, 2, 3, rinput_mux_text
);
623 static const struct soc_enum rinput_inv_enum
=
624 SOC_ENUM_SINGLE(WM8903_ANALOGUE_RIGHT_INPUT_1
, 4, 3, rinput_mux_text
);
627 static const char *sidetone_text
[] = {
628 "None", "Left", "Right"
631 static const struct soc_enum lsidetone_enum
=
632 SOC_ENUM_SINGLE(WM8903_DAC_DIGITAL_0
, 2, 3, sidetone_text
);
634 static const struct soc_enum rsidetone_enum
=
635 SOC_ENUM_SINGLE(WM8903_DAC_DIGITAL_0
, 0, 3, sidetone_text
);
637 static const char *adcinput_text
[] = {
641 static const struct soc_enum adcinput_enum
=
642 SOC_ENUM_SINGLE(WM8903_CLOCK_RATE_TEST_4
, 9, 2, adcinput_text
);
644 static const char *aif_text
[] = {
648 static const struct soc_enum lcapture_enum
=
649 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 7, 2, aif_text
);
651 static const struct soc_enum rcapture_enum
=
652 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 6, 2, aif_text
);
654 static const struct soc_enum lplay_enum
=
655 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 5, 2, aif_text
);
657 static const struct soc_enum rplay_enum
=
658 SOC_ENUM_SINGLE(WM8903_AUDIO_INTERFACE_0
, 4, 2, aif_text
);
660 static const struct snd_kcontrol_new wm8903_snd_controls
[] = {
662 /* Input PGAs - No TLV since the scale depends on PGA mode */
663 SOC_SINGLE("Left Input PGA Switch", WM8903_ANALOGUE_LEFT_INPUT_0
,
665 SOC_SINGLE("Left Input PGA Volume", WM8903_ANALOGUE_LEFT_INPUT_0
,
667 SOC_SINGLE("Left Input PGA Common Mode Switch", WM8903_ANALOGUE_LEFT_INPUT_1
,
670 SOC_SINGLE("Right Input PGA Switch", WM8903_ANALOGUE_RIGHT_INPUT_0
,
672 SOC_SINGLE("Right Input PGA Volume", WM8903_ANALOGUE_RIGHT_INPUT_0
,
674 SOC_SINGLE("Right Input PGA Common Mode Switch", WM8903_ANALOGUE_RIGHT_INPUT_1
,
678 SOC_ENUM("ADC OSR", adc_osr
),
679 SOC_SINGLE("HPF Switch", WM8903_ADC_DIGITAL_0
, 4, 1, 0),
680 SOC_ENUM("HPF Mode", hpf_mode
),
681 SOC_SINGLE("DRC Switch", WM8903_DRC_0
, 15, 1, 0),
682 SOC_ENUM("DRC Compressor Slope R0", drc_slope_r0
),
683 SOC_ENUM("DRC Compressor Slope R1", drc_slope_r1
),
684 SOC_SINGLE_TLV("DRC Compressor Threshold Volume", WM8903_DRC_3
, 5, 124, 1,
686 SOC_SINGLE_TLV("DRC Volume", WM8903_DRC_3
, 0, 30, 1, drc_tlv_amp
),
687 SOC_SINGLE_TLV("DRC Minimum Gain Volume", WM8903_DRC_1
, 2, 3, 1, drc_tlv_min
),
688 SOC_SINGLE_TLV("DRC Maximum Gain Volume", WM8903_DRC_1
, 0, 3, 0, drc_tlv_max
),
689 SOC_ENUM("DRC Attack Rate", drc_attack
),
690 SOC_ENUM("DRC Decay Rate", drc_decay
),
691 SOC_ENUM("DRC FF Delay", drc_ff_delay
),
692 SOC_SINGLE("DRC Anticlip Switch", WM8903_DRC_0
, 1, 1, 0),
693 SOC_SINGLE("DRC QR Switch", WM8903_DRC_0
, 2, 1, 0),
694 SOC_SINGLE_TLV("DRC QR Threshold Volume", WM8903_DRC_0
, 6, 3, 0, drc_tlv_max
),
695 SOC_ENUM("DRC QR Decay Rate", drc_qr_decay
),
696 SOC_SINGLE("DRC Smoothing Switch", WM8903_DRC_0
, 3, 1, 0),
697 SOC_SINGLE("DRC Smoothing Hysteresis Switch", WM8903_DRC_0
, 0, 1, 0),
698 SOC_ENUM("DRC Smoothing Threshold", drc_smoothing
),
699 SOC_SINGLE_TLV("DRC Startup Volume", WM8903_DRC_0
, 6, 18, 0, drc_tlv_startup
),
701 SOC_DOUBLE_R_TLV("Digital Capture Volume", WM8903_ADC_DIGITAL_VOLUME_LEFT
,
702 WM8903_ADC_DIGITAL_VOLUME_RIGHT
, 1, 96, 0, digital_tlv
),
703 SOC_ENUM("ADC Companding Mode", adc_companding
),
704 SOC_SINGLE("ADC Companding Switch", WM8903_AUDIO_INTERFACE_0
, 3, 1, 0),
706 SOC_DOUBLE_TLV("Digital Sidetone Volume", WM8903_DAC_DIGITAL_0
, 4, 8,
707 12, 0, digital_sidetone_tlv
),
710 SOC_ENUM("DAC OSR", dac_osr
),
711 SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8903_DAC_DIGITAL_VOLUME_LEFT
,
712 WM8903_DAC_DIGITAL_VOLUME_RIGHT
, 1, 120, 0, digital_tlv
),
713 SOC_ENUM("DAC Soft Mute Rate", soft_mute
),
714 SOC_ENUM("DAC Mute Mode", mute_mode
),
715 SOC_SINGLE("DAC Mono Switch", WM8903_DAC_DIGITAL_1
, 12, 1, 0),
716 SOC_ENUM("DAC Companding Mode", dac_companding
),
717 SOC_SINGLE("DAC Companding Switch", WM8903_AUDIO_INTERFACE_0
, 1, 1, 0),
718 SOC_SINGLE_BOOL_EXT("Playback Deemphasis Switch", 0,
719 wm8903_get_deemph
, wm8903_put_deemph
),
722 SOC_DOUBLE_R("Headphone Switch",
723 WM8903_ANALOGUE_OUT1_LEFT
, WM8903_ANALOGUE_OUT1_RIGHT
,
725 SOC_DOUBLE_R("Headphone ZC Switch",
726 WM8903_ANALOGUE_OUT1_LEFT
, WM8903_ANALOGUE_OUT1_RIGHT
,
728 SOC_DOUBLE_R_TLV("Headphone Volume",
729 WM8903_ANALOGUE_OUT1_LEFT
, WM8903_ANALOGUE_OUT1_RIGHT
,
733 SOC_DOUBLE_R("Line Out Switch",
734 WM8903_ANALOGUE_OUT2_LEFT
, WM8903_ANALOGUE_OUT2_RIGHT
,
736 SOC_DOUBLE_R("Line Out ZC Switch",
737 WM8903_ANALOGUE_OUT2_LEFT
, WM8903_ANALOGUE_OUT2_RIGHT
,
739 SOC_DOUBLE_R_TLV("Line Out Volume",
740 WM8903_ANALOGUE_OUT2_LEFT
, WM8903_ANALOGUE_OUT2_RIGHT
,
744 SOC_DOUBLE_R("Speaker Switch",
745 WM8903_ANALOGUE_OUT3_LEFT
, WM8903_ANALOGUE_OUT3_RIGHT
, 8, 1, 1),
746 SOC_DOUBLE_R("Speaker ZC Switch",
747 WM8903_ANALOGUE_OUT3_LEFT
, WM8903_ANALOGUE_OUT3_RIGHT
, 6, 1, 0),
748 SOC_DOUBLE_R_TLV("Speaker Volume",
749 WM8903_ANALOGUE_OUT3_LEFT
, WM8903_ANALOGUE_OUT3_RIGHT
,
753 static const struct snd_kcontrol_new linput_mode_mux
=
754 SOC_DAPM_ENUM("Left Input Mode Mux", linput_mode_enum
);
756 static const struct snd_kcontrol_new rinput_mode_mux
=
757 SOC_DAPM_ENUM("Right Input Mode Mux", rinput_mode_enum
);
759 static const struct snd_kcontrol_new linput_mux
=
760 SOC_DAPM_ENUM("Left Input Mux", linput_enum
);
762 static const struct snd_kcontrol_new linput_inv_mux
=
763 SOC_DAPM_ENUM("Left Inverting Input Mux", linput_inv_enum
);
765 static const struct snd_kcontrol_new rinput_mux
=
766 SOC_DAPM_ENUM("Right Input Mux", rinput_enum
);
768 static const struct snd_kcontrol_new rinput_inv_mux
=
769 SOC_DAPM_ENUM("Right Inverting Input Mux", rinput_inv_enum
);
771 static const struct snd_kcontrol_new lsidetone_mux
=
772 SOC_DAPM_ENUM("DACL Sidetone Mux", lsidetone_enum
);
774 static const struct snd_kcontrol_new rsidetone_mux
=
775 SOC_DAPM_ENUM("DACR Sidetone Mux", rsidetone_enum
);
777 static const struct snd_kcontrol_new adcinput_mux
=
778 SOC_DAPM_ENUM("ADC Input", adcinput_enum
);
780 static const struct snd_kcontrol_new lcapture_mux
=
781 SOC_DAPM_ENUM("Left Capture Mux", lcapture_enum
);
783 static const struct snd_kcontrol_new rcapture_mux
=
784 SOC_DAPM_ENUM("Right Capture Mux", rcapture_enum
);
786 static const struct snd_kcontrol_new lplay_mux
=
787 SOC_DAPM_ENUM("Left Playback Mux", lplay_enum
);
789 static const struct snd_kcontrol_new rplay_mux
=
790 SOC_DAPM_ENUM("Right Playback Mux", rplay_enum
);
792 static const struct snd_kcontrol_new left_output_mixer
[] = {
793 SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_LEFT_MIX_0
, 3, 1, 0),
794 SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_LEFT_MIX_0
, 2, 1, 0),
795 SOC_DAPM_SINGLE_W("Left Bypass Switch", WM8903_ANALOGUE_LEFT_MIX_0
, 1, 1, 0),
796 SOC_DAPM_SINGLE_W("Right Bypass Switch", WM8903_ANALOGUE_LEFT_MIX_0
, 0, 1, 0),
799 static const struct snd_kcontrol_new right_output_mixer
[] = {
800 SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_RIGHT_MIX_0
, 3, 1, 0),
801 SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_RIGHT_MIX_0
, 2, 1, 0),
802 SOC_DAPM_SINGLE_W("Left Bypass Switch", WM8903_ANALOGUE_RIGHT_MIX_0
, 1, 1, 0),
803 SOC_DAPM_SINGLE_W("Right Bypass Switch", WM8903_ANALOGUE_RIGHT_MIX_0
, 0, 1, 0),
806 static const struct snd_kcontrol_new left_speaker_mixer
[] = {
807 SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0
, 3, 1, 0),
808 SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0
, 2, 1, 0),
809 SOC_DAPM_SINGLE("Left Bypass Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0
, 1, 1, 0),
810 SOC_DAPM_SINGLE("Right Bypass Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0
,
814 static const struct snd_kcontrol_new right_speaker_mixer
[] = {
815 SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0
, 3, 1, 0),
816 SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0
, 2, 1, 0),
817 SOC_DAPM_SINGLE("Left Bypass Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0
,
819 SOC_DAPM_SINGLE("Right Bypass Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0
,
823 static const struct snd_soc_dapm_widget wm8903_dapm_widgets
[] = {
824 SND_SOC_DAPM_INPUT("IN1L"),
825 SND_SOC_DAPM_INPUT("IN1R"),
826 SND_SOC_DAPM_INPUT("IN2L"),
827 SND_SOC_DAPM_INPUT("IN2R"),
828 SND_SOC_DAPM_INPUT("IN3L"),
829 SND_SOC_DAPM_INPUT("IN3R"),
830 SND_SOC_DAPM_INPUT("DMICDAT"),
832 SND_SOC_DAPM_OUTPUT("HPOUTL"),
833 SND_SOC_DAPM_OUTPUT("HPOUTR"),
834 SND_SOC_DAPM_OUTPUT("LINEOUTL"),
835 SND_SOC_DAPM_OUTPUT("LINEOUTR"),
836 SND_SOC_DAPM_OUTPUT("LOP"),
837 SND_SOC_DAPM_OUTPUT("LON"),
838 SND_SOC_DAPM_OUTPUT("ROP"),
839 SND_SOC_DAPM_OUTPUT("RON"),
841 SND_SOC_DAPM_MICBIAS("Mic Bias", WM8903_MIC_BIAS_CONTROL_0
, 0, 0),
843 SND_SOC_DAPM_MUX("Left Input Mux", SND_SOC_NOPM
, 0, 0, &linput_mux
),
844 SND_SOC_DAPM_MUX("Left Input Inverting Mux", SND_SOC_NOPM
, 0, 0,
846 SND_SOC_DAPM_MUX("Left Input Mode Mux", SND_SOC_NOPM
, 0, 0, &linput_mode_mux
),
848 SND_SOC_DAPM_MUX("Right Input Mux", SND_SOC_NOPM
, 0, 0, &rinput_mux
),
849 SND_SOC_DAPM_MUX("Right Input Inverting Mux", SND_SOC_NOPM
, 0, 0,
851 SND_SOC_DAPM_MUX("Right Input Mode Mux", SND_SOC_NOPM
, 0, 0, &rinput_mode_mux
),
853 SND_SOC_DAPM_PGA("Left Input PGA", WM8903_POWER_MANAGEMENT_0
, 1, 0, NULL
, 0),
854 SND_SOC_DAPM_PGA("Right Input PGA", WM8903_POWER_MANAGEMENT_0
, 0, 0, NULL
, 0),
856 SND_SOC_DAPM_MUX("Left ADC Input", SND_SOC_NOPM
, 0, 0, &adcinput_mux
),
857 SND_SOC_DAPM_MUX("Right ADC Input", SND_SOC_NOPM
, 0, 0, &adcinput_mux
),
859 SND_SOC_DAPM_ADC("ADCL", NULL
, WM8903_POWER_MANAGEMENT_6
, 1, 0),
860 SND_SOC_DAPM_ADC("ADCR", NULL
, WM8903_POWER_MANAGEMENT_6
, 0, 0),
862 SND_SOC_DAPM_MUX("Left Capture Mux", SND_SOC_NOPM
, 0, 0, &lcapture_mux
),
863 SND_SOC_DAPM_MUX("Right Capture Mux", SND_SOC_NOPM
, 0, 0, &rcapture_mux
),
865 SND_SOC_DAPM_AIF_OUT("AIFTXL", "Left HiFi Capture", 0, SND_SOC_NOPM
, 0, 0),
866 SND_SOC_DAPM_AIF_OUT("AIFTXR", "Right HiFi Capture", 0, SND_SOC_NOPM
, 0, 0),
868 SND_SOC_DAPM_MUX("DACL Sidetone", SND_SOC_NOPM
, 0, 0, &lsidetone_mux
),
869 SND_SOC_DAPM_MUX("DACR Sidetone", SND_SOC_NOPM
, 0, 0, &rsidetone_mux
),
871 SND_SOC_DAPM_AIF_IN("AIFRXL", "Left Playback", 0, SND_SOC_NOPM
, 0, 0),
872 SND_SOC_DAPM_AIF_IN("AIFRXR", "Right Playback", 0, SND_SOC_NOPM
, 0, 0),
874 SND_SOC_DAPM_MUX("Left Playback Mux", SND_SOC_NOPM
, 0, 0, &lplay_mux
),
875 SND_SOC_DAPM_MUX("Right Playback Mux", SND_SOC_NOPM
, 0, 0, &rplay_mux
),
877 SND_SOC_DAPM_DAC("DACL", NULL
, WM8903_POWER_MANAGEMENT_6
, 3, 0),
878 SND_SOC_DAPM_DAC("DACR", NULL
, WM8903_POWER_MANAGEMENT_6
, 2, 0),
880 SND_SOC_DAPM_MIXER("Left Output Mixer", WM8903_POWER_MANAGEMENT_1
, 1, 0,
881 left_output_mixer
, ARRAY_SIZE(left_output_mixer
)),
882 SND_SOC_DAPM_MIXER("Right Output Mixer", WM8903_POWER_MANAGEMENT_1
, 0, 0,
883 right_output_mixer
, ARRAY_SIZE(right_output_mixer
)),
885 SND_SOC_DAPM_MIXER("Left Speaker Mixer", WM8903_POWER_MANAGEMENT_4
, 1, 0,
886 left_speaker_mixer
, ARRAY_SIZE(left_speaker_mixer
)),
887 SND_SOC_DAPM_MIXER("Right Speaker Mixer", WM8903_POWER_MANAGEMENT_4
, 0, 0,
888 right_speaker_mixer
, ARRAY_SIZE(right_speaker_mixer
)),
890 SND_SOC_DAPM_PGA_S("Left Headphone Output PGA", 0, WM8903_POWER_MANAGEMENT_2
,
892 SND_SOC_DAPM_PGA_S("Right Headphone Output PGA", 0, WM8903_POWER_MANAGEMENT_2
,
895 SND_SOC_DAPM_PGA_S("Left Line Output PGA", 0, WM8903_POWER_MANAGEMENT_3
, 1, 0,
897 SND_SOC_DAPM_PGA_S("Right Line Output PGA", 0, WM8903_POWER_MANAGEMENT_3
, 0, 0,
900 SND_SOC_DAPM_PGA_S("HPL_RMV_SHORT", 4, WM8903_ANALOGUE_HP_0
, 7, 0, NULL
, 0),
901 SND_SOC_DAPM_PGA_S("HPL_ENA_OUTP", 3, WM8903_ANALOGUE_HP_0
, 6, 0, NULL
, 0),
902 SND_SOC_DAPM_PGA_S("HPL_ENA_DLY", 2, WM8903_ANALOGUE_HP_0
, 5, 0, NULL
, 0),
903 SND_SOC_DAPM_PGA_S("HPL_ENA", 1, WM8903_ANALOGUE_HP_0
, 4, 0, NULL
, 0),
904 SND_SOC_DAPM_PGA_S("HPR_RMV_SHORT", 4, WM8903_ANALOGUE_HP_0
, 3, 0, NULL
, 0),
905 SND_SOC_DAPM_PGA_S("HPR_ENA_OUTP", 3, WM8903_ANALOGUE_HP_0
, 2, 0, NULL
, 0),
906 SND_SOC_DAPM_PGA_S("HPR_ENA_DLY", 2, WM8903_ANALOGUE_HP_0
, 1, 0, NULL
, 0),
907 SND_SOC_DAPM_PGA_S("HPR_ENA", 1, WM8903_ANALOGUE_HP_0
, 0, 0, NULL
, 0),
909 SND_SOC_DAPM_PGA_S("LINEOUTL_RMV_SHORT", 4, WM8903_ANALOGUE_LINEOUT_0
, 7, 0,
911 SND_SOC_DAPM_PGA_S("LINEOUTL_ENA_OUTP", 3, WM8903_ANALOGUE_LINEOUT_0
, 6, 0,
913 SND_SOC_DAPM_PGA_S("LINEOUTL_ENA_DLY", 2, WM8903_ANALOGUE_LINEOUT_0
, 5, 0,
915 SND_SOC_DAPM_PGA_S("LINEOUTL_ENA", 1, WM8903_ANALOGUE_LINEOUT_0
, 4, 0,
917 SND_SOC_DAPM_PGA_S("LINEOUTR_RMV_SHORT", 4, WM8903_ANALOGUE_LINEOUT_0
, 3, 0,
919 SND_SOC_DAPM_PGA_S("LINEOUTR_ENA_OUTP", 3, WM8903_ANALOGUE_LINEOUT_0
, 2, 0,
921 SND_SOC_DAPM_PGA_S("LINEOUTR_ENA_DLY", 2, WM8903_ANALOGUE_LINEOUT_0
, 1, 0,
923 SND_SOC_DAPM_PGA_S("LINEOUTR_ENA", 1, WM8903_ANALOGUE_LINEOUT_0
, 0, 0,
926 SND_SOC_DAPM_SUPPLY("DCS Master", WM8903_DC_SERVO_0
, 4, 0, NULL
, 0),
927 SND_SOC_DAPM_PGA_S("HPL_DCS", 3, SND_SOC_NOPM
, 3, 0, wm8903_dcs_event
,
928 SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
929 SND_SOC_DAPM_PGA_S("HPR_DCS", 3, SND_SOC_NOPM
, 2, 0, wm8903_dcs_event
,
930 SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
931 SND_SOC_DAPM_PGA_S("LINEOUTL_DCS", 3, SND_SOC_NOPM
, 1, 0, wm8903_dcs_event
,
932 SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
933 SND_SOC_DAPM_PGA_S("LINEOUTR_DCS", 3, SND_SOC_NOPM
, 0, 0, wm8903_dcs_event
,
934 SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
936 SND_SOC_DAPM_PGA("Left Speaker PGA", WM8903_POWER_MANAGEMENT_5
, 1, 0,
938 SND_SOC_DAPM_PGA("Right Speaker PGA", WM8903_POWER_MANAGEMENT_5
, 0, 0,
941 SND_SOC_DAPM_SUPPLY("Charge Pump", WM8903_CHARGE_PUMP_0
, 0, 0,
942 wm8903_cp_event
, SND_SOC_DAPM_POST_PMU
),
943 SND_SOC_DAPM_SUPPLY("CLK_DSP", WM8903_CLOCK_RATES_2
, 1, 0, NULL
, 0),
944 SND_SOC_DAPM_SUPPLY("CLK_SYS", WM8903_CLOCK_RATES_2
, 2, 0, NULL
, 0),
947 static const struct snd_soc_dapm_route wm8903_intercon
[] = {
949 { "CLK_DSP", NULL
, "CLK_SYS" },
950 { "Mic Bias", NULL
, "CLK_SYS" },
951 { "HPL_DCS", NULL
, "CLK_SYS" },
952 { "HPR_DCS", NULL
, "CLK_SYS" },
953 { "LINEOUTL_DCS", NULL
, "CLK_SYS" },
954 { "LINEOUTR_DCS", NULL
, "CLK_SYS" },
956 { "Left Input Mux", "IN1L", "IN1L" },
957 { "Left Input Mux", "IN2L", "IN2L" },
958 { "Left Input Mux", "IN3L", "IN3L" },
960 { "Left Input Inverting Mux", "IN1L", "IN1L" },
961 { "Left Input Inverting Mux", "IN2L", "IN2L" },
962 { "Left Input Inverting Mux", "IN3L", "IN3L" },
964 { "Right Input Mux", "IN1R", "IN1R" },
965 { "Right Input Mux", "IN2R", "IN2R" },
966 { "Right Input Mux", "IN3R", "IN3R" },
968 { "Right Input Inverting Mux", "IN1R", "IN1R" },
969 { "Right Input Inverting Mux", "IN2R", "IN2R" },
970 { "Right Input Inverting Mux", "IN3R", "IN3R" },
972 { "Left Input Mode Mux", "Single-Ended", "Left Input Inverting Mux" },
973 { "Left Input Mode Mux", "Differential Line",
975 { "Left Input Mode Mux", "Differential Line",
976 "Left Input Inverting Mux" },
977 { "Left Input Mode Mux", "Differential Mic",
979 { "Left Input Mode Mux", "Differential Mic",
980 "Left Input Inverting Mux" },
982 { "Right Input Mode Mux", "Single-Ended",
983 "Right Input Inverting Mux" },
984 { "Right Input Mode Mux", "Differential Line",
986 { "Right Input Mode Mux", "Differential Line",
987 "Right Input Inverting Mux" },
988 { "Right Input Mode Mux", "Differential Mic",
990 { "Right Input Mode Mux", "Differential Mic",
991 "Right Input Inverting Mux" },
993 { "Left Input PGA", NULL
, "Left Input Mode Mux" },
994 { "Right Input PGA", NULL
, "Right Input Mode Mux" },
996 { "Left ADC Input", "ADC", "Left Input PGA" },
997 { "Left ADC Input", "DMIC", "DMICDAT" },
998 { "Right ADC Input", "ADC", "Right Input PGA" },
999 { "Right ADC Input", "DMIC", "DMICDAT" },
1001 { "Left Capture Mux", "Left", "ADCL" },
1002 { "Left Capture Mux", "Right", "ADCR" },
1004 { "Right Capture Mux", "Left", "ADCL" },
1005 { "Right Capture Mux", "Right", "ADCR" },
1007 { "AIFTXL", NULL
, "Left Capture Mux" },
1008 { "AIFTXR", NULL
, "Right Capture Mux" },
1010 { "ADCL", NULL
, "Left ADC Input" },
1011 { "ADCL", NULL
, "CLK_DSP" },
1012 { "ADCR", NULL
, "Right ADC Input" },
1013 { "ADCR", NULL
, "CLK_DSP" },
1015 { "Left Playback Mux", "Left", "AIFRXL" },
1016 { "Left Playback Mux", "Right", "AIFRXR" },
1018 { "Right Playback Mux", "Left", "AIFRXL" },
1019 { "Right Playback Mux", "Right", "AIFRXR" },
1021 { "DACL Sidetone", "Left", "ADCL" },
1022 { "DACL Sidetone", "Right", "ADCR" },
1023 { "DACR Sidetone", "Left", "ADCL" },
1024 { "DACR Sidetone", "Right", "ADCR" },
1026 { "DACL", NULL
, "Left Playback Mux" },
1027 { "DACL", NULL
, "DACL Sidetone" },
1028 { "DACL", NULL
, "CLK_DSP" },
1030 { "DACR", NULL
, "Right Playback Mux" },
1031 { "DACR", NULL
, "DACR Sidetone" },
1032 { "DACR", NULL
, "CLK_DSP" },
1034 { "Left Output Mixer", "Left Bypass Switch", "Left Input PGA" },
1035 { "Left Output Mixer", "Right Bypass Switch", "Right Input PGA" },
1036 { "Left Output Mixer", "DACL Switch", "DACL" },
1037 { "Left Output Mixer", "DACR Switch", "DACR" },
1039 { "Right Output Mixer", "Left Bypass Switch", "Left Input PGA" },
1040 { "Right Output Mixer", "Right Bypass Switch", "Right Input PGA" },
1041 { "Right Output Mixer", "DACL Switch", "DACL" },
1042 { "Right Output Mixer", "DACR Switch", "DACR" },
1044 { "Left Speaker Mixer", "Left Bypass Switch", "Left Input PGA" },
1045 { "Left Speaker Mixer", "Right Bypass Switch", "Right Input PGA" },
1046 { "Left Speaker Mixer", "DACL Switch", "DACL" },
1047 { "Left Speaker Mixer", "DACR Switch", "DACR" },
1049 { "Right Speaker Mixer", "Left Bypass Switch", "Left Input PGA" },
1050 { "Right Speaker Mixer", "Right Bypass Switch", "Right Input PGA" },
1051 { "Right Speaker Mixer", "DACL Switch", "DACL" },
1052 { "Right Speaker Mixer", "DACR Switch", "DACR" },
1054 { "Left Line Output PGA", NULL
, "Left Output Mixer" },
1055 { "Right Line Output PGA", NULL
, "Right Output Mixer" },
1057 { "Left Headphone Output PGA", NULL
, "Left Output Mixer" },
1058 { "Right Headphone Output PGA", NULL
, "Right Output Mixer" },
1060 { "Left Speaker PGA", NULL
, "Left Speaker Mixer" },
1061 { "Right Speaker PGA", NULL
, "Right Speaker Mixer" },
1063 { "HPL_ENA", NULL
, "Left Headphone Output PGA" },
1064 { "HPR_ENA", NULL
, "Right Headphone Output PGA" },
1065 { "HPL_ENA_DLY", NULL
, "HPL_ENA" },
1066 { "HPR_ENA_DLY", NULL
, "HPR_ENA" },
1067 { "LINEOUTL_ENA", NULL
, "Left Line Output PGA" },
1068 { "LINEOUTR_ENA", NULL
, "Right Line Output PGA" },
1069 { "LINEOUTL_ENA_DLY", NULL
, "LINEOUTL_ENA" },
1070 { "LINEOUTR_ENA_DLY", NULL
, "LINEOUTR_ENA" },
1072 { "HPL_DCS", NULL
, "DCS Master" },
1073 { "HPR_DCS", NULL
, "DCS Master" },
1074 { "LINEOUTL_DCS", NULL
, "DCS Master" },
1075 { "LINEOUTR_DCS", NULL
, "DCS Master" },
1077 { "HPL_DCS", NULL
, "HPL_ENA_DLY" },
1078 { "HPR_DCS", NULL
, "HPR_ENA_DLY" },
1079 { "LINEOUTL_DCS", NULL
, "LINEOUTL_ENA_DLY" },
1080 { "LINEOUTR_DCS", NULL
, "LINEOUTR_ENA_DLY" },
1082 { "HPL_ENA_OUTP", NULL
, "HPL_DCS" },
1083 { "HPR_ENA_OUTP", NULL
, "HPR_DCS" },
1084 { "LINEOUTL_ENA_OUTP", NULL
, "LINEOUTL_DCS" },
1085 { "LINEOUTR_ENA_OUTP", NULL
, "LINEOUTR_DCS" },
1087 { "HPL_RMV_SHORT", NULL
, "HPL_ENA_OUTP" },
1088 { "HPR_RMV_SHORT", NULL
, "HPR_ENA_OUTP" },
1089 { "LINEOUTL_RMV_SHORT", NULL
, "LINEOUTL_ENA_OUTP" },
1090 { "LINEOUTR_RMV_SHORT", NULL
, "LINEOUTR_ENA_OUTP" },
1092 { "HPOUTL", NULL
, "HPL_RMV_SHORT" },
1093 { "HPOUTR", NULL
, "HPR_RMV_SHORT" },
1094 { "LINEOUTL", NULL
, "LINEOUTL_RMV_SHORT" },
1095 { "LINEOUTR", NULL
, "LINEOUTR_RMV_SHORT" },
1097 { "LOP", NULL
, "Left Speaker PGA" },
1098 { "LON", NULL
, "Left Speaker PGA" },
1100 { "ROP", NULL
, "Right Speaker PGA" },
1101 { "RON", NULL
, "Right Speaker PGA" },
1103 { "Left Headphone Output PGA", NULL
, "Charge Pump" },
1104 { "Right Headphone Output PGA", NULL
, "Charge Pump" },
1105 { "Left Line Output PGA", NULL
, "Charge Pump" },
1106 { "Right Line Output PGA", NULL
, "Charge Pump" },
1109 static int wm8903_set_bias_level(struct snd_soc_codec
*codec
,
1110 enum snd_soc_bias_level level
)
1113 case SND_SOC_BIAS_ON
:
1116 case SND_SOC_BIAS_PREPARE
:
1117 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1118 WM8903_VMID_RES_MASK
,
1119 WM8903_VMID_RES_50K
);
1122 case SND_SOC_BIAS_STANDBY
:
1123 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_OFF
) {
1124 snd_soc_update_bits(codec
, WM8903_BIAS_CONTROL_0
,
1125 WM8903_POBCTRL
| WM8903_ISEL_MASK
|
1126 WM8903_STARTUP_BIAS_ENA
|
1129 (2 << WM8903_ISEL_SHIFT
) |
1130 WM8903_STARTUP_BIAS_ENA
);
1132 snd_soc_update_bits(codec
,
1133 WM8903_ANALOGUE_SPK_OUTPUT_CONTROL_0
,
1134 WM8903_SPK_DISCHARGE
,
1135 WM8903_SPK_DISCHARGE
);
1139 snd_soc_update_bits(codec
, WM8903_POWER_MANAGEMENT_5
,
1140 WM8903_SPKL_ENA
| WM8903_SPKR_ENA
,
1141 WM8903_SPKL_ENA
| WM8903_SPKR_ENA
);
1143 snd_soc_update_bits(codec
,
1144 WM8903_ANALOGUE_SPK_OUTPUT_CONTROL_0
,
1145 WM8903_SPK_DISCHARGE
, 0);
1147 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1148 WM8903_VMID_TIE_ENA
|
1150 WM8903_VMID_IO_ENA
|
1151 WM8903_VMID_SOFT_MASK
|
1152 WM8903_VMID_RES_MASK
|
1153 WM8903_VMID_BUF_ENA
,
1154 WM8903_VMID_TIE_ENA
|
1156 WM8903_VMID_IO_ENA
|
1157 (2 << WM8903_VMID_SOFT_SHIFT
) |
1158 WM8903_VMID_RES_250K
|
1159 WM8903_VMID_BUF_ENA
);
1163 snd_soc_update_bits(codec
, WM8903_POWER_MANAGEMENT_5
,
1164 WM8903_SPKL_ENA
| WM8903_SPKR_ENA
,
1167 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1168 WM8903_VMID_SOFT_MASK
, 0);
1170 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1171 WM8903_VMID_RES_MASK
,
1172 WM8903_VMID_RES_50K
);
1174 snd_soc_update_bits(codec
, WM8903_BIAS_CONTROL_0
,
1175 WM8903_BIAS_ENA
| WM8903_POBCTRL
,
1178 /* By default no bypass paths are enabled so
1179 * enable Class W support.
1181 dev_dbg(codec
->dev
, "Enabling Class W\n");
1182 snd_soc_update_bits(codec
, WM8903_CLASS_W_0
,
1183 WM8903_CP_DYN_FREQ
|
1185 WM8903_CP_DYN_FREQ
|
1189 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1190 WM8903_VMID_RES_MASK
,
1191 WM8903_VMID_RES_250K
);
1194 case SND_SOC_BIAS_OFF
:
1195 snd_soc_update_bits(codec
, WM8903_BIAS_CONTROL_0
,
1196 WM8903_BIAS_ENA
, 0);
1198 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1199 WM8903_VMID_SOFT_MASK
,
1200 2 << WM8903_VMID_SOFT_SHIFT
);
1202 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1203 WM8903_VMID_BUF_ENA
, 0);
1207 snd_soc_update_bits(codec
, WM8903_VMID_CONTROL_0
,
1208 WM8903_VMID_TIE_ENA
| WM8903_BUFIO_ENA
|
1209 WM8903_VMID_IO_ENA
| WM8903_VMID_RES_MASK
|
1210 WM8903_VMID_SOFT_MASK
|
1211 WM8903_VMID_BUF_ENA
, 0);
1213 snd_soc_update_bits(codec
, WM8903_BIAS_CONTROL_0
,
1214 WM8903_STARTUP_BIAS_ENA
, 0);
1218 codec
->dapm
.bias_level
= level
;
1223 static int wm8903_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
1224 int clk_id
, unsigned int freq
, int dir
)
1226 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1227 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1229 wm8903
->sysclk
= freq
;
1234 static int wm8903_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
1237 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1238 u16 aif1
= snd_soc_read(codec
, WM8903_AUDIO_INTERFACE_1
);
1240 aif1
&= ~(WM8903_LRCLK_DIR
| WM8903_BCLK_DIR
| WM8903_AIF_FMT_MASK
|
1241 WM8903_AIF_LRCLK_INV
| WM8903_AIF_BCLK_INV
);
1243 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
1244 case SND_SOC_DAIFMT_CBS_CFS
:
1246 case SND_SOC_DAIFMT_CBS_CFM
:
1247 aif1
|= WM8903_LRCLK_DIR
;
1249 case SND_SOC_DAIFMT_CBM_CFM
:
1250 aif1
|= WM8903_LRCLK_DIR
| WM8903_BCLK_DIR
;
1252 case SND_SOC_DAIFMT_CBM_CFS
:
1253 aif1
|= WM8903_BCLK_DIR
;
1259 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1260 case SND_SOC_DAIFMT_DSP_A
:
1263 case SND_SOC_DAIFMT_DSP_B
:
1264 aif1
|= 0x3 | WM8903_AIF_LRCLK_INV
;
1266 case SND_SOC_DAIFMT_I2S
:
1269 case SND_SOC_DAIFMT_RIGHT_J
:
1272 case SND_SOC_DAIFMT_LEFT_J
:
1278 /* Clock inversion */
1279 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1280 case SND_SOC_DAIFMT_DSP_A
:
1281 case SND_SOC_DAIFMT_DSP_B
:
1282 /* frame inversion not valid for DSP modes */
1283 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
1284 case SND_SOC_DAIFMT_NB_NF
:
1286 case SND_SOC_DAIFMT_IB_NF
:
1287 aif1
|= WM8903_AIF_BCLK_INV
;
1293 case SND_SOC_DAIFMT_I2S
:
1294 case SND_SOC_DAIFMT_RIGHT_J
:
1295 case SND_SOC_DAIFMT_LEFT_J
:
1296 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
1297 case SND_SOC_DAIFMT_NB_NF
:
1299 case SND_SOC_DAIFMT_IB_IF
:
1300 aif1
|= WM8903_AIF_BCLK_INV
| WM8903_AIF_LRCLK_INV
;
1302 case SND_SOC_DAIFMT_IB_NF
:
1303 aif1
|= WM8903_AIF_BCLK_INV
;
1305 case SND_SOC_DAIFMT_NB_IF
:
1306 aif1
|= WM8903_AIF_LRCLK_INV
;
1316 snd_soc_write(codec
, WM8903_AUDIO_INTERFACE_1
, aif1
);
1321 static int wm8903_digital_mute(struct snd_soc_dai
*codec_dai
, int mute
)
1323 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1326 reg
= snd_soc_read(codec
, WM8903_DAC_DIGITAL_1
);
1329 reg
|= WM8903_DAC_MUTE
;
1331 reg
&= ~WM8903_DAC_MUTE
;
1333 snd_soc_write(codec
, WM8903_DAC_DIGITAL_1
, reg
);
1338 /* Lookup table for CLK_SYS/fs ratio. 256fs or more is recommended
1339 * for optimal performance so we list the lower rates first and match
1340 * on the last match we find. */
1346 } clk_sys_ratios
[] = {
1347 { 64, 0x0, 0x0, 1 },
1348 { 68, 0x0, 0x1, 1 },
1349 { 125, 0x0, 0x2, 1 },
1350 { 128, 0x1, 0x0, 1 },
1351 { 136, 0x1, 0x1, 1 },
1352 { 192, 0x2, 0x0, 1 },
1353 { 204, 0x2, 0x1, 1 },
1355 { 64, 0x0, 0x0, 2 },
1356 { 68, 0x0, 0x1, 2 },
1357 { 125, 0x0, 0x2, 2 },
1358 { 128, 0x1, 0x0, 2 },
1359 { 136, 0x1, 0x1, 2 },
1360 { 192, 0x2, 0x0, 2 },
1361 { 204, 0x2, 0x1, 2 },
1363 { 250, 0x2, 0x2, 1 },
1364 { 256, 0x3, 0x0, 1 },
1365 { 272, 0x3, 0x1, 1 },
1366 { 384, 0x4, 0x0, 1 },
1367 { 408, 0x4, 0x1, 1 },
1368 { 375, 0x4, 0x2, 1 },
1369 { 512, 0x5, 0x0, 1 },
1370 { 544, 0x5, 0x1, 1 },
1371 { 500, 0x5, 0x2, 1 },
1372 { 768, 0x6, 0x0, 1 },
1373 { 816, 0x6, 0x1, 1 },
1374 { 750, 0x6, 0x2, 1 },
1375 { 1024, 0x7, 0x0, 1 },
1376 { 1088, 0x7, 0x1, 1 },
1377 { 1000, 0x7, 0x2, 1 },
1378 { 1408, 0x8, 0x0, 1 },
1379 { 1496, 0x8, 0x1, 1 },
1380 { 1536, 0x9, 0x0, 1 },
1381 { 1632, 0x9, 0x1, 1 },
1382 { 1500, 0x9, 0x2, 1 },
1384 { 250, 0x2, 0x2, 2 },
1385 { 256, 0x3, 0x0, 2 },
1386 { 272, 0x3, 0x1, 2 },
1387 { 384, 0x4, 0x0, 2 },
1388 { 408, 0x4, 0x1, 2 },
1389 { 375, 0x4, 0x2, 2 },
1390 { 512, 0x5, 0x0, 2 },
1391 { 544, 0x5, 0x1, 2 },
1392 { 500, 0x5, 0x2, 2 },
1393 { 768, 0x6, 0x0, 2 },
1394 { 816, 0x6, 0x1, 2 },
1395 { 750, 0x6, 0x2, 2 },
1396 { 1024, 0x7, 0x0, 2 },
1397 { 1088, 0x7, 0x1, 2 },
1398 { 1000, 0x7, 0x2, 2 },
1399 { 1408, 0x8, 0x0, 2 },
1400 { 1496, 0x8, 0x1, 2 },
1401 { 1536, 0x9, 0x0, 2 },
1402 { 1632, 0x9, 0x1, 2 },
1403 { 1500, 0x9, 0x2, 2 },
1406 /* CLK_SYS/BCLK ratios - multiplied by 10 due to .5s */
1430 /* Sample rates for DSP */
1434 } sample_rates
[] = {
1449 static int wm8903_hw_params(struct snd_pcm_substream
*substream
,
1450 struct snd_pcm_hw_params
*params
,
1451 struct snd_soc_dai
*dai
)
1453 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1454 struct snd_soc_codec
*codec
=rtd
->codec
;
1455 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1456 int fs
= params_rate(params
);
1466 u16 aif1
= snd_soc_read(codec
, WM8903_AUDIO_INTERFACE_1
);
1467 u16 aif2
= snd_soc_read(codec
, WM8903_AUDIO_INTERFACE_2
);
1468 u16 aif3
= snd_soc_read(codec
, WM8903_AUDIO_INTERFACE_3
);
1469 u16 clock0
= snd_soc_read(codec
, WM8903_CLOCK_RATES_0
);
1470 u16 clock1
= snd_soc_read(codec
, WM8903_CLOCK_RATES_1
);
1471 u16 dac_digital1
= snd_soc_read(codec
, WM8903_DAC_DIGITAL_1
);
1473 /* Enable sloping stopband filter for low sample rates */
1475 dac_digital1
|= WM8903_DAC_SB_FILT
;
1477 dac_digital1
&= ~WM8903_DAC_SB_FILT
;
1479 /* Configure sample rate logic for DSP - choose nearest rate */
1481 best_val
= abs(sample_rates
[dsp_config
].rate
- fs
);
1482 for (i
= 1; i
< ARRAY_SIZE(sample_rates
); i
++) {
1483 cur_val
= abs(sample_rates
[i
].rate
- fs
);
1484 if (cur_val
<= best_val
) {
1490 dev_dbg(codec
->dev
, "DSP fs = %dHz\n", sample_rates
[dsp_config
].rate
);
1491 clock1
&= ~WM8903_SAMPLE_RATE_MASK
;
1492 clock1
|= sample_rates
[dsp_config
].value
;
1494 aif1
&= ~WM8903_AIF_WL_MASK
;
1496 switch (params_format(params
)) {
1497 case SNDRV_PCM_FORMAT_S16_LE
:
1500 case SNDRV_PCM_FORMAT_S20_3LE
:
1504 case SNDRV_PCM_FORMAT_S24_LE
:
1508 case SNDRV_PCM_FORMAT_S32_LE
:
1516 dev_dbg(codec
->dev
, "MCLK = %dHz, target sample rate = %dHz\n",
1517 wm8903
->sysclk
, fs
);
1519 /* We may not have an MCLK which allows us to generate exactly
1520 * the clock we want, particularly with USB derived inputs, so
1524 best_val
= abs((wm8903
->sysclk
/
1525 (clk_sys_ratios
[0].mclk_div
*
1526 clk_sys_ratios
[0].div
)) - fs
);
1527 for (i
= 1; i
< ARRAY_SIZE(clk_sys_ratios
); i
++) {
1528 cur_val
= abs((wm8903
->sysclk
/
1529 (clk_sys_ratios
[i
].mclk_div
*
1530 clk_sys_ratios
[i
].div
)) - fs
);
1532 if (cur_val
<= best_val
) {
1538 if (clk_sys_ratios
[clk_config
].mclk_div
== 2) {
1539 clock0
|= WM8903_MCLKDIV2
;
1540 clk_sys
= wm8903
->sysclk
/ 2;
1542 clock0
&= ~WM8903_MCLKDIV2
;
1543 clk_sys
= wm8903
->sysclk
;
1546 clock1
&= ~(WM8903_CLK_SYS_RATE_MASK
|
1547 WM8903_CLK_SYS_MODE_MASK
);
1548 clock1
|= clk_sys_ratios
[clk_config
].rate
<< WM8903_CLK_SYS_RATE_SHIFT
;
1549 clock1
|= clk_sys_ratios
[clk_config
].mode
<< WM8903_CLK_SYS_MODE_SHIFT
;
1551 dev_dbg(codec
->dev
, "CLK_SYS_RATE=%x, CLK_SYS_MODE=%x div=%d\n",
1552 clk_sys_ratios
[clk_config
].rate
,
1553 clk_sys_ratios
[clk_config
].mode
,
1554 clk_sys_ratios
[clk_config
].div
);
1556 dev_dbg(codec
->dev
, "Actual CLK_SYS = %dHz\n", clk_sys
);
1558 /* We may not get quite the right frequency if using
1559 * approximate clocks so look for the closest match that is
1560 * higher than the target (we need to ensure that there enough
1561 * BCLKs to clock out the samples).
1564 best_val
= ((clk_sys
* 10) / bclk_divs
[0].ratio
) - bclk
;
1566 while (i
< ARRAY_SIZE(bclk_divs
)) {
1567 cur_val
= ((clk_sys
* 10) / bclk_divs
[i
].ratio
) - bclk
;
1568 if (cur_val
< 0) /* BCLK table is sorted */
1575 aif2
&= ~WM8903_BCLK_DIV_MASK
;
1576 aif3
&= ~WM8903_LRCLK_RATE_MASK
;
1578 dev_dbg(codec
->dev
, "BCLK ratio %d for %dHz - actual BCLK = %dHz\n",
1579 bclk_divs
[bclk_div
].ratio
/ 10, bclk
,
1580 (clk_sys
* 10) / bclk_divs
[bclk_div
].ratio
);
1582 aif2
|= bclk_divs
[bclk_div
].div
;
1585 wm8903
->fs
= params_rate(params
);
1586 wm8903_set_deemph(codec
);
1588 snd_soc_write(codec
, WM8903_CLOCK_RATES_0
, clock0
);
1589 snd_soc_write(codec
, WM8903_CLOCK_RATES_1
, clock1
);
1590 snd_soc_write(codec
, WM8903_AUDIO_INTERFACE_1
, aif1
);
1591 snd_soc_write(codec
, WM8903_AUDIO_INTERFACE_2
, aif2
);
1592 snd_soc_write(codec
, WM8903_AUDIO_INTERFACE_3
, aif3
);
1593 snd_soc_write(codec
, WM8903_DAC_DIGITAL_1
, dac_digital1
);
1599 * wm8903_mic_detect - Enable microphone detection via the WM8903 IRQ
1601 * @codec: WM8903 codec
1602 * @jack: jack to report detection events on
1603 * @det: value to report for presence detection
1604 * @shrt: value to report for short detection
1606 * Enable microphone detection via IRQ on the WM8903. If GPIOs are
1607 * being used to bring out signals to the processor then only platform
1608 * data configuration is needed for WM8903 and processor GPIOs should
1609 * be configured using snd_soc_jack_add_gpios() instead.
1611 * The current threasholds for detection should be configured using
1612 * micdet_cfg in the platform data. Using this function will force on
1613 * the microphone bias for the device.
1615 int wm8903_mic_detect(struct snd_soc_codec
*codec
, struct snd_soc_jack
*jack
,
1618 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1619 int irq_mask
= WM8903_MICDET_EINT
| WM8903_MICSHRT_EINT
;
1621 dev_dbg(codec
->dev
, "Enabling microphone detection: %x %x\n",
1624 /* Store the configuration */
1625 wm8903
->mic_jack
= jack
;
1626 wm8903
->mic_det
= det
;
1627 wm8903
->mic_short
= shrt
;
1629 /* Enable interrupts we've got a report configured for */
1631 irq_mask
&= ~WM8903_MICDET_EINT
;
1633 irq_mask
&= ~WM8903_MICSHRT_EINT
;
1635 snd_soc_update_bits(codec
, WM8903_INTERRUPT_STATUS_1_MASK
,
1636 WM8903_MICDET_EINT
| WM8903_MICSHRT_EINT
,
1640 /* Enable mic detection, this may not have been set through
1641 * platform data (eg, if the defaults are OK). */
1642 snd_soc_update_bits(codec
, WM8903_WRITE_SEQUENCER_0
,
1643 WM8903_WSEQ_ENA
, WM8903_WSEQ_ENA
);
1644 snd_soc_update_bits(codec
, WM8903_MIC_BIAS_CONTROL_0
,
1645 WM8903_MICDET_ENA
, WM8903_MICDET_ENA
);
1647 snd_soc_update_bits(codec
, WM8903_MIC_BIAS_CONTROL_0
,
1648 WM8903_MICDET_ENA
, 0);
1653 EXPORT_SYMBOL_GPL(wm8903_mic_detect
);
1655 static irqreturn_t
wm8903_irq(int irq
, void *data
)
1657 struct snd_soc_codec
*codec
= data
;
1658 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1662 int mask
= ~snd_soc_read(codec
, WM8903_INTERRUPT_STATUS_1_MASK
);
1664 int_val
= snd_soc_read(codec
, WM8903_INTERRUPT_STATUS_1
) & mask
;
1666 if (int_val
& WM8903_WSEQ_BUSY_EINT
) {
1667 dev_warn(codec
->dev
, "Write sequencer done\n");
1671 * The rest is microphone jack detection. We need to manually
1672 * invert the polarity of the interrupt after each event - to
1673 * simplify the code keep track of the last state we reported
1674 * and just invert the relevant bits in both the report and
1675 * the polarity register.
1677 mic_report
= wm8903
->mic_last_report
;
1678 int_pol
= snd_soc_read(codec
, WM8903_INTERRUPT_POLARITY_1
);
1680 #ifndef CONFIG_SND_SOC_WM8903_MODULE
1681 if (int_val
& (WM8903_MICSHRT_EINT
| WM8903_MICDET_EINT
))
1682 trace_snd_soc_jack_irq(dev_name(codec
->dev
));
1685 if (int_val
& WM8903_MICSHRT_EINT
) {
1686 dev_dbg(codec
->dev
, "Microphone short (pol=%x)\n", int_pol
);
1688 mic_report
^= wm8903
->mic_short
;
1689 int_pol
^= WM8903_MICSHRT_INV
;
1692 if (int_val
& WM8903_MICDET_EINT
) {
1693 dev_dbg(codec
->dev
, "Microphone detect (pol=%x)\n", int_pol
);
1695 mic_report
^= wm8903
->mic_det
;
1696 int_pol
^= WM8903_MICDET_INV
;
1698 msleep(wm8903
->mic_delay
);
1701 snd_soc_update_bits(codec
, WM8903_INTERRUPT_POLARITY_1
,
1702 WM8903_MICSHRT_INV
| WM8903_MICDET_INV
, int_pol
);
1704 snd_soc_jack_report(wm8903
->mic_jack
, mic_report
,
1705 wm8903
->mic_short
| wm8903
->mic_det
);
1707 wm8903
->mic_last_report
= mic_report
;
1712 #define WM8903_PLAYBACK_RATES (SNDRV_PCM_RATE_8000 |\
1713 SNDRV_PCM_RATE_11025 | \
1714 SNDRV_PCM_RATE_16000 | \
1715 SNDRV_PCM_RATE_22050 | \
1716 SNDRV_PCM_RATE_32000 | \
1717 SNDRV_PCM_RATE_44100 | \
1718 SNDRV_PCM_RATE_48000 | \
1719 SNDRV_PCM_RATE_88200 | \
1720 SNDRV_PCM_RATE_96000)
1722 #define WM8903_CAPTURE_RATES (SNDRV_PCM_RATE_8000 |\
1723 SNDRV_PCM_RATE_11025 | \
1724 SNDRV_PCM_RATE_16000 | \
1725 SNDRV_PCM_RATE_22050 | \
1726 SNDRV_PCM_RATE_32000 | \
1727 SNDRV_PCM_RATE_44100 | \
1728 SNDRV_PCM_RATE_48000)
1730 #define WM8903_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
1731 SNDRV_PCM_FMTBIT_S20_3LE |\
1732 SNDRV_PCM_FMTBIT_S24_LE)
1734 static struct snd_soc_dai_ops wm8903_dai_ops
= {
1735 .hw_params
= wm8903_hw_params
,
1736 .digital_mute
= wm8903_digital_mute
,
1737 .set_fmt
= wm8903_set_dai_fmt
,
1738 .set_sysclk
= wm8903_set_dai_sysclk
,
1741 static struct snd_soc_dai_driver wm8903_dai
= {
1742 .name
= "wm8903-hifi",
1744 .stream_name
= "Playback",
1747 .rates
= WM8903_PLAYBACK_RATES
,
1748 .formats
= WM8903_FORMATS
,
1751 .stream_name
= "Capture",
1754 .rates
= WM8903_CAPTURE_RATES
,
1755 .formats
= WM8903_FORMATS
,
1757 .ops
= &wm8903_dai_ops
,
1758 .symmetric_rates
= 1,
1761 static int wm8903_suspend(struct snd_soc_codec
*codec
, pm_message_t state
)
1763 wm8903_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
1768 static int wm8903_resume(struct snd_soc_codec
*codec
)
1771 u16
*reg_cache
= codec
->reg_cache
;
1772 u16
*tmp_cache
= kmemdup(reg_cache
, sizeof(wm8903_reg_defaults
),
1775 /* Bring the codec back up to standby first to minimise pop/clicks */
1776 wm8903_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
1778 /* Sync back everything else */
1780 for (i
= 2; i
< ARRAY_SIZE(wm8903_reg_defaults
); i
++)
1781 if (tmp_cache
[i
] != reg_cache
[i
])
1782 snd_soc_write(codec
, i
, tmp_cache
[i
]);
1785 dev_err(codec
->dev
, "Failed to allocate temporary cache\n");
1791 #ifdef CONFIG_GPIOLIB
1792 static inline struct wm8903_priv
*gpio_to_wm8903(struct gpio_chip
*chip
)
1794 return container_of(chip
, struct wm8903_priv
, gpio_chip
);
1797 static int wm8903_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
1799 if (offset
>= WM8903_NUM_GPIO
)
1805 static int wm8903_gpio_direction_in(struct gpio_chip
*chip
, unsigned offset
)
1807 struct wm8903_priv
*wm8903
= gpio_to_wm8903(chip
);
1808 struct snd_soc_codec
*codec
= wm8903
->codec
;
1809 unsigned int mask
, val
;
1811 mask
= WM8903_GP1_FN_MASK
| WM8903_GP1_DIR_MASK
;
1812 val
= (WM8903_GPn_FN_GPIO_INPUT
<< WM8903_GP1_FN_SHIFT
) |
1815 return snd_soc_update_bits(codec
, WM8903_GPIO_CONTROL_1
+ offset
,
1819 static int wm8903_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
1821 struct wm8903_priv
*wm8903
= gpio_to_wm8903(chip
);
1822 struct snd_soc_codec
*codec
= wm8903
->codec
;
1825 reg
= snd_soc_read(codec
, WM8903_GPIO_CONTROL_1
+ offset
);
1827 return (reg
& WM8903_GP1_LVL_MASK
) >> WM8903_GP1_LVL_SHIFT
;
1830 static int wm8903_gpio_direction_out(struct gpio_chip
*chip
,
1831 unsigned offset
, int value
)
1833 struct wm8903_priv
*wm8903
= gpio_to_wm8903(chip
);
1834 struct snd_soc_codec
*codec
= wm8903
->codec
;
1835 unsigned int mask
, val
;
1837 mask
= WM8903_GP1_FN_MASK
| WM8903_GP1_DIR_MASK
| WM8903_GP1_LVL_MASK
;
1838 val
= (WM8903_GPn_FN_GPIO_OUTPUT
<< WM8903_GP1_FN_SHIFT
) |
1839 (value
<< WM8903_GP2_LVL_SHIFT
);
1841 return snd_soc_update_bits(codec
, WM8903_GPIO_CONTROL_1
+ offset
,
1845 static void wm8903_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
1847 struct wm8903_priv
*wm8903
= gpio_to_wm8903(chip
);
1848 struct snd_soc_codec
*codec
= wm8903
->codec
;
1850 snd_soc_update_bits(codec
, WM8903_GPIO_CONTROL_1
+ offset
,
1851 WM8903_GP1_LVL_MASK
,
1852 !!value
<< WM8903_GP1_LVL_SHIFT
);
1855 static struct gpio_chip wm8903_template_chip
= {
1857 .owner
= THIS_MODULE
,
1858 .request
= wm8903_gpio_request
,
1859 .direction_input
= wm8903_gpio_direction_in
,
1860 .get
= wm8903_gpio_get
,
1861 .direction_output
= wm8903_gpio_direction_out
,
1862 .set
= wm8903_gpio_set
,
1866 static void wm8903_init_gpio(struct snd_soc_codec
*codec
)
1868 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1869 struct wm8903_platform_data
*pdata
= dev_get_platdata(codec
->dev
);
1872 wm8903
->gpio_chip
= wm8903_template_chip
;
1873 wm8903
->gpio_chip
.ngpio
= WM8903_NUM_GPIO
;
1874 wm8903
->gpio_chip
.dev
= codec
->dev
;
1876 if (pdata
&& pdata
->gpio_base
)
1877 wm8903
->gpio_chip
.base
= pdata
->gpio_base
;
1879 wm8903
->gpio_chip
.base
= -1;
1881 ret
= gpiochip_add(&wm8903
->gpio_chip
);
1883 dev_err(codec
->dev
, "Failed to add GPIOs: %d\n", ret
);
1886 static void wm8903_free_gpio(struct snd_soc_codec
*codec
)
1888 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1891 ret
= gpiochip_remove(&wm8903
->gpio_chip
);
1893 dev_err(codec
->dev
, "Failed to remove GPIOs: %d\n", ret
);
1896 static void wm8903_init_gpio(struct snd_soc_codec
*codec
)
1900 static void wm8903_free_gpio(struct snd_soc_codec
*codec
)
1905 static int wm8903_probe(struct snd_soc_codec
*codec
)
1907 struct wm8903_platform_data
*pdata
= dev_get_platdata(codec
->dev
);
1908 struct wm8903_priv
*wm8903
= snd_soc_codec_get_drvdata(codec
);
1910 int trigger
, irq_pol
;
1913 wm8903
->codec
= codec
;
1915 ret
= snd_soc_codec_set_cache_io(codec
, 8, 16, SND_SOC_I2C
);
1917 dev_err(codec
->dev
, "Failed to set cache I/O: %d\n", ret
);
1921 val
= snd_soc_read(codec
, WM8903_SW_RESET_AND_ID
);
1922 if (val
!= wm8903_reg_defaults
[WM8903_SW_RESET_AND_ID
]) {
1924 "Device with ID register %x is not a WM8903\n", val
);
1928 val
= snd_soc_read(codec
, WM8903_REVISION_NUMBER
);
1929 dev_info(codec
->dev
, "WM8903 revision %c\n",
1930 (val
& WM8903_CHIP_REV_MASK
) + 'A');
1932 wm8903_reset(codec
);
1934 /* Set up GPIOs and microphone detection */
1936 bool mic_gpio
= false;
1938 for (i
= 0; i
< ARRAY_SIZE(pdata
->gpio_cfg
); i
++) {
1939 if (pdata
->gpio_cfg
[i
] == WM8903_GPIO_NO_CONFIG
)
1942 snd_soc_write(codec
, WM8903_GPIO_CONTROL_1
+ i
,
1943 pdata
->gpio_cfg
[i
] & 0xffff);
1945 val
= (pdata
->gpio_cfg
[i
] & WM8903_GP1_FN_MASK
)
1946 >> WM8903_GP1_FN_SHIFT
;
1949 case WM8903_GPn_FN_MICBIAS_CURRENT_DETECT
:
1950 case WM8903_GPn_FN_MICBIAS_SHORT_DETECT
:
1958 snd_soc_write(codec
, WM8903_MIC_BIAS_CONTROL_0
,
1961 /* Microphone detection needs the WSEQ clock */
1962 if (pdata
->micdet_cfg
)
1963 snd_soc_update_bits(codec
, WM8903_WRITE_SEQUENCER_0
,
1964 WM8903_WSEQ_ENA
, WM8903_WSEQ_ENA
);
1966 /* If microphone detection is enabled by pdata but
1967 * detected via IRQ then interrupts can be lost before
1968 * the machine driver has set up microphone detection
1969 * IRQs as the IRQs are clear on read. The detection
1970 * will be enabled when the machine driver configures.
1972 WARN_ON(!mic_gpio
&& (pdata
->micdet_cfg
& WM8903_MICDET_ENA
));
1974 wm8903
->mic_delay
= pdata
->micdet_delay
;
1978 if (pdata
&& pdata
->irq_active_low
) {
1979 trigger
= IRQF_TRIGGER_LOW
;
1980 irq_pol
= WM8903_IRQ_POL
;
1982 trigger
= IRQF_TRIGGER_HIGH
;
1986 snd_soc_update_bits(codec
, WM8903_INTERRUPT_CONTROL
,
1987 WM8903_IRQ_POL
, irq_pol
);
1989 ret
= request_threaded_irq(wm8903
->irq
, NULL
, wm8903_irq
,
1990 trigger
| IRQF_ONESHOT
,
1993 dev_err(codec
->dev
, "Failed to request IRQ: %d\n",
1998 /* Enable write sequencer interrupts */
1999 snd_soc_update_bits(codec
, WM8903_INTERRUPT_STATUS_1_MASK
,
2000 WM8903_IM_WSEQ_BUSY_EINT
, 0);
2003 /* power on device */
2004 wm8903_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
2006 /* Latch volume update bits */
2007 val
= snd_soc_read(codec
, WM8903_ADC_DIGITAL_VOLUME_LEFT
);
2008 val
|= WM8903_ADCVU
;
2009 snd_soc_write(codec
, WM8903_ADC_DIGITAL_VOLUME_LEFT
, val
);
2010 snd_soc_write(codec
, WM8903_ADC_DIGITAL_VOLUME_RIGHT
, val
);
2012 val
= snd_soc_read(codec
, WM8903_DAC_DIGITAL_VOLUME_LEFT
);
2013 val
|= WM8903_DACVU
;
2014 snd_soc_write(codec
, WM8903_DAC_DIGITAL_VOLUME_LEFT
, val
);
2015 snd_soc_write(codec
, WM8903_DAC_DIGITAL_VOLUME_RIGHT
, val
);
2017 val
= snd_soc_read(codec
, WM8903_ANALOGUE_OUT1_LEFT
);
2018 val
|= WM8903_HPOUTVU
;
2019 snd_soc_write(codec
, WM8903_ANALOGUE_OUT1_LEFT
, val
);
2020 snd_soc_write(codec
, WM8903_ANALOGUE_OUT1_RIGHT
, val
);
2022 val
= snd_soc_read(codec
, WM8903_ANALOGUE_OUT2_LEFT
);
2023 val
|= WM8903_LINEOUTVU
;
2024 snd_soc_write(codec
, WM8903_ANALOGUE_OUT2_LEFT
, val
);
2025 snd_soc_write(codec
, WM8903_ANALOGUE_OUT2_RIGHT
, val
);
2027 val
= snd_soc_read(codec
, WM8903_ANALOGUE_OUT3_LEFT
);
2028 val
|= WM8903_SPKVU
;
2029 snd_soc_write(codec
, WM8903_ANALOGUE_OUT3_LEFT
, val
);
2030 snd_soc_write(codec
, WM8903_ANALOGUE_OUT3_RIGHT
, val
);
2032 /* Enable DAC soft mute by default */
2033 snd_soc_update_bits(codec
, WM8903_DAC_DIGITAL_1
,
2034 WM8903_DAC_MUTEMODE
| WM8903_DAC_MUTE
,
2035 WM8903_DAC_MUTEMODE
| WM8903_DAC_MUTE
);
2037 snd_soc_add_controls(codec
, wm8903_snd_controls
,
2038 ARRAY_SIZE(wm8903_snd_controls
));
2040 wm8903_init_gpio(codec
);
2045 /* power down chip */
2046 static int wm8903_remove(struct snd_soc_codec
*codec
)
2048 wm8903_free_gpio(codec
);
2049 wm8903_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
2053 static struct snd_soc_codec_driver soc_codec_dev_wm8903
= {
2054 .probe
= wm8903_probe
,
2055 .remove
= wm8903_remove
,
2056 .suspend
= wm8903_suspend
,
2057 .resume
= wm8903_resume
,
2058 .set_bias_level
= wm8903_set_bias_level
,
2059 .reg_cache_size
= ARRAY_SIZE(wm8903_reg_defaults
),
2060 .reg_word_size
= sizeof(u16
),
2061 .reg_cache_default
= wm8903_reg_defaults
,
2062 .volatile_register
= wm8903_volatile_register
,
2063 .seq_notifier
= wm8903_seq_notifier
,
2064 .dapm_widgets
= wm8903_dapm_widgets
,
2065 .num_dapm_widgets
= ARRAY_SIZE(wm8903_dapm_widgets
),
2066 .dapm_routes
= wm8903_intercon
,
2067 .num_dapm_routes
= ARRAY_SIZE(wm8903_intercon
),
2070 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
2071 static __devinit
int wm8903_i2c_probe(struct i2c_client
*i2c
,
2072 const struct i2c_device_id
*id
)
2074 struct wm8903_priv
*wm8903
;
2077 wm8903
= kzalloc(sizeof(struct wm8903_priv
), GFP_KERNEL
);
2081 i2c_set_clientdata(i2c
, wm8903
);
2082 wm8903
->irq
= i2c
->irq
;
2084 ret
= snd_soc_register_codec(&i2c
->dev
,
2085 &soc_codec_dev_wm8903
, &wm8903_dai
, 1);
2091 static __devexit
int wm8903_i2c_remove(struct i2c_client
*client
)
2093 snd_soc_unregister_codec(&client
->dev
);
2094 kfree(i2c_get_clientdata(client
));
2098 static const struct i2c_device_id wm8903_i2c_id
[] = {
2102 MODULE_DEVICE_TABLE(i2c
, wm8903_i2c_id
);
2104 static struct i2c_driver wm8903_i2c_driver
= {
2107 .owner
= THIS_MODULE
,
2109 .probe
= wm8903_i2c_probe
,
2110 .remove
= __devexit_p(wm8903_i2c_remove
),
2111 .id_table
= wm8903_i2c_id
,
2115 static int __init
wm8903_modinit(void)
2118 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
2119 ret
= i2c_add_driver(&wm8903_i2c_driver
);
2121 printk(KERN_ERR
"Failed to register wm8903 I2C driver: %d\n",
2127 module_init(wm8903_modinit
);
2129 static void __exit
wm8903_exit(void)
2131 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
2132 i2c_del_driver(&wm8903_i2c_driver
);
2135 module_exit(wm8903_exit
);
2137 MODULE_DESCRIPTION("ASoC WM8903 driver");
2138 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.cm>");
2139 MODULE_LICENSE("GPL");