2 * wm8904.c -- WM8904 ALSA SoC Audio driver
4 * Copyright 2009-12 Wolfson Microelectronics plc
6 * 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 #include <linux/clk.h>
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
20 #include <linux/i2c.h>
21 #include <linux/regmap.h>
22 #include <linux/regulator/consumer.h>
23 #include <linux/slab.h>
24 #include <sound/core.h>
25 #include <sound/pcm.h>
26 #include <sound/pcm_params.h>
27 #include <sound/soc.h>
28 #include <sound/initval.h>
29 #include <sound/tlv.h>
30 #include <sound/wm8904.h>
39 #define WM8904_NUM_DCS_CHANNELS 4
41 #define WM8904_NUM_SUPPLIES 5
42 static const char *wm8904_supply_names
[WM8904_NUM_SUPPLIES
] = {
50 /* codec private data */
52 struct regmap
*regmap
;
55 enum wm8904_type devtype
;
57 struct regulator_bulk_data supplies
[WM8904_NUM_SUPPLIES
];
59 struct wm8904_pdata
*pdata
;
63 /* Platform provided DRC configuration */
64 const char **drc_texts
;
66 struct soc_enum drc_enum
;
68 /* Platform provided ReTune mobile configuration */
69 int num_retune_mobile_texts
;
70 const char **retune_mobile_texts
;
71 int retune_mobile_cfg
;
72 struct soc_enum retune_mobile_enum
;
79 /* Clocking configuration */
80 unsigned int mclk_rate
;
82 unsigned int sysclk_rate
;
89 /* DC servo configuration - cached offset values */
90 int dcs_state
[WM8904_NUM_DCS_CHANNELS
];
93 static const struct reg_default wm8904_reg_defaults
[] = {
94 { 4, 0x0018 }, /* R4 - Bias Control 0 */
95 { 5, 0x0000 }, /* R5 - VMID Control 0 */
96 { 6, 0x0000 }, /* R6 - Mic Bias Control 0 */
97 { 7, 0x0000 }, /* R7 - Mic Bias Control 1 */
98 { 8, 0x0001 }, /* R8 - Analogue DAC 0 */
99 { 9, 0x9696 }, /* R9 - mic Filter Control */
100 { 10, 0x0001 }, /* R10 - Analogue ADC 0 */
101 { 12, 0x0000 }, /* R12 - Power Management 0 */
102 { 14, 0x0000 }, /* R14 - Power Management 2 */
103 { 15, 0x0000 }, /* R15 - Power Management 3 */
104 { 18, 0x0000 }, /* R18 - Power Management 6 */
105 { 20, 0x945E }, /* R20 - Clock Rates 0 */
106 { 21, 0x0C05 }, /* R21 - Clock Rates 1 */
107 { 22, 0x0006 }, /* R22 - Clock Rates 2 */
108 { 24, 0x0050 }, /* R24 - Audio Interface 0 */
109 { 25, 0x000A }, /* R25 - Audio Interface 1 */
110 { 26, 0x00E4 }, /* R26 - Audio Interface 2 */
111 { 27, 0x0040 }, /* R27 - Audio Interface 3 */
112 { 30, 0x00C0 }, /* R30 - DAC Digital Volume Left */
113 { 31, 0x00C0 }, /* R31 - DAC Digital Volume Right */
114 { 32, 0x0000 }, /* R32 - DAC Digital 0 */
115 { 33, 0x0008 }, /* R33 - DAC Digital 1 */
116 { 36, 0x00C0 }, /* R36 - ADC Digital Volume Left */
117 { 37, 0x00C0 }, /* R37 - ADC Digital Volume Right */
118 { 38, 0x0010 }, /* R38 - ADC Digital 0 */
119 { 39, 0x0000 }, /* R39 - Digital Microphone 0 */
120 { 40, 0x01AF }, /* R40 - DRC 0 */
121 { 41, 0x3248 }, /* R41 - DRC 1 */
122 { 42, 0x0000 }, /* R42 - DRC 2 */
123 { 43, 0x0000 }, /* R43 - DRC 3 */
124 { 44, 0x0085 }, /* R44 - Analogue Left Input 0 */
125 { 45, 0x0085 }, /* R45 - Analogue Right Input 0 */
126 { 46, 0x0044 }, /* R46 - Analogue Left Input 1 */
127 { 47, 0x0044 }, /* R47 - Analogue Right Input 1 */
128 { 57, 0x002D }, /* R57 - Analogue OUT1 Left */
129 { 58, 0x002D }, /* R58 - Analogue OUT1 Right */
130 { 59, 0x0039 }, /* R59 - Analogue OUT2 Left */
131 { 60, 0x0039 }, /* R60 - Analogue OUT2 Right */
132 { 61, 0x0000 }, /* R61 - Analogue OUT12 ZC */
133 { 67, 0x0000 }, /* R67 - DC Servo 0 */
134 { 69, 0xAAAA }, /* R69 - DC Servo 2 */
135 { 71, 0xAAAA }, /* R71 - DC Servo 4 */
136 { 72, 0xAAAA }, /* R72 - DC Servo 5 */
137 { 90, 0x0000 }, /* R90 - Analogue HP 0 */
138 { 94, 0x0000 }, /* R94 - Analogue Lineout 0 */
139 { 98, 0x0000 }, /* R98 - Charge Pump 0 */
140 { 104, 0x0004 }, /* R104 - Class W 0 */
141 { 108, 0x0000 }, /* R108 - Write Sequencer 0 */
142 { 109, 0x0000 }, /* R109 - Write Sequencer 1 */
143 { 110, 0x0000 }, /* R110 - Write Sequencer 2 */
144 { 111, 0x0000 }, /* R111 - Write Sequencer 3 */
145 { 112, 0x0000 }, /* R112 - Write Sequencer 4 */
146 { 116, 0x0000 }, /* R116 - FLL Control 1 */
147 { 117, 0x0007 }, /* R117 - FLL Control 2 */
148 { 118, 0x0000 }, /* R118 - FLL Control 3 */
149 { 119, 0x2EE0 }, /* R119 - FLL Control 4 */
150 { 120, 0x0004 }, /* R120 - FLL Control 5 */
151 { 121, 0x0014 }, /* R121 - GPIO Control 1 */
152 { 122, 0x0010 }, /* R122 - GPIO Control 2 */
153 { 123, 0x0010 }, /* R123 - GPIO Control 3 */
154 { 124, 0x0000 }, /* R124 - GPIO Control 4 */
155 { 126, 0x0000 }, /* R126 - Digital Pulls */
156 { 128, 0xFFFF }, /* R128 - Interrupt Status Mask */
157 { 129, 0x0000 }, /* R129 - Interrupt Polarity */
158 { 130, 0x0000 }, /* R130 - Interrupt Debounce */
159 { 134, 0x0000 }, /* R134 - EQ1 */
160 { 135, 0x000C }, /* R135 - EQ2 */
161 { 136, 0x000C }, /* R136 - EQ3 */
162 { 137, 0x000C }, /* R137 - EQ4 */
163 { 138, 0x000C }, /* R138 - EQ5 */
164 { 139, 0x000C }, /* R139 - EQ6 */
165 { 140, 0x0FCA }, /* R140 - EQ7 */
166 { 141, 0x0400 }, /* R141 - EQ8 */
167 { 142, 0x00D8 }, /* R142 - EQ9 */
168 { 143, 0x1EB5 }, /* R143 - EQ10 */
169 { 144, 0xF145 }, /* R144 - EQ11 */
170 { 145, 0x0B75 }, /* R145 - EQ12 */
171 { 146, 0x01C5 }, /* R146 - EQ13 */
172 { 147, 0x1C58 }, /* R147 - EQ14 */
173 { 148, 0xF373 }, /* R148 - EQ15 */
174 { 149, 0x0A54 }, /* R149 - EQ16 */
175 { 150, 0x0558 }, /* R150 - EQ17 */
176 { 151, 0x168E }, /* R151 - EQ18 */
177 { 152, 0xF829 }, /* R152 - EQ19 */
178 { 153, 0x07AD }, /* R153 - EQ20 */
179 { 154, 0x1103 }, /* R154 - EQ21 */
180 { 155, 0x0564 }, /* R155 - EQ22 */
181 { 156, 0x0559 }, /* R156 - EQ23 */
182 { 157, 0x4000 }, /* R157 - EQ24 */
183 { 161, 0x0000 }, /* R161 - Control Interface Test 1 */
184 { 204, 0x0000 }, /* R204 - Analogue Output Bias 0 */
185 { 247, 0x0000 }, /* R247 - FLL NCO Test 0 */
186 { 248, 0x0019 }, /* R248 - FLL NCO Test 1 */
189 static bool wm8904_volatile_register(struct device
*dev
, unsigned int reg
)
192 case WM8904_SW_RESET_AND_ID
:
193 case WM8904_REVISION
:
194 case WM8904_DC_SERVO_1
:
195 case WM8904_DC_SERVO_6
:
196 case WM8904_DC_SERVO_7
:
197 case WM8904_DC_SERVO_8
:
198 case WM8904_DC_SERVO_9
:
199 case WM8904_DC_SERVO_READBACK_0
:
200 case WM8904_INTERRUPT_STATUS
:
207 static bool wm8904_readable_register(struct device
*dev
, unsigned int reg
)
210 case WM8904_SW_RESET_AND_ID
:
211 case WM8904_REVISION
:
212 case WM8904_BIAS_CONTROL_0
:
213 case WM8904_VMID_CONTROL_0
:
214 case WM8904_MIC_BIAS_CONTROL_0
:
215 case WM8904_MIC_BIAS_CONTROL_1
:
216 case WM8904_ANALOGUE_DAC_0
:
217 case WM8904_MIC_FILTER_CONTROL
:
218 case WM8904_ANALOGUE_ADC_0
:
219 case WM8904_POWER_MANAGEMENT_0
:
220 case WM8904_POWER_MANAGEMENT_2
:
221 case WM8904_POWER_MANAGEMENT_3
:
222 case WM8904_POWER_MANAGEMENT_6
:
223 case WM8904_CLOCK_RATES_0
:
224 case WM8904_CLOCK_RATES_1
:
225 case WM8904_CLOCK_RATES_2
:
226 case WM8904_AUDIO_INTERFACE_0
:
227 case WM8904_AUDIO_INTERFACE_1
:
228 case WM8904_AUDIO_INTERFACE_2
:
229 case WM8904_AUDIO_INTERFACE_3
:
230 case WM8904_DAC_DIGITAL_VOLUME_LEFT
:
231 case WM8904_DAC_DIGITAL_VOLUME_RIGHT
:
232 case WM8904_DAC_DIGITAL_0
:
233 case WM8904_DAC_DIGITAL_1
:
234 case WM8904_ADC_DIGITAL_VOLUME_LEFT
:
235 case WM8904_ADC_DIGITAL_VOLUME_RIGHT
:
236 case WM8904_ADC_DIGITAL_0
:
237 case WM8904_DIGITAL_MICROPHONE_0
:
242 case WM8904_ANALOGUE_LEFT_INPUT_0
:
243 case WM8904_ANALOGUE_RIGHT_INPUT_0
:
244 case WM8904_ANALOGUE_LEFT_INPUT_1
:
245 case WM8904_ANALOGUE_RIGHT_INPUT_1
:
246 case WM8904_ANALOGUE_OUT1_LEFT
:
247 case WM8904_ANALOGUE_OUT1_RIGHT
:
248 case WM8904_ANALOGUE_OUT2_LEFT
:
249 case WM8904_ANALOGUE_OUT2_RIGHT
:
250 case WM8904_ANALOGUE_OUT12_ZC
:
251 case WM8904_DC_SERVO_0
:
252 case WM8904_DC_SERVO_1
:
253 case WM8904_DC_SERVO_2
:
254 case WM8904_DC_SERVO_4
:
255 case WM8904_DC_SERVO_5
:
256 case WM8904_DC_SERVO_6
:
257 case WM8904_DC_SERVO_7
:
258 case WM8904_DC_SERVO_8
:
259 case WM8904_DC_SERVO_9
:
260 case WM8904_DC_SERVO_READBACK_0
:
261 case WM8904_ANALOGUE_HP_0
:
262 case WM8904_ANALOGUE_LINEOUT_0
:
263 case WM8904_CHARGE_PUMP_0
:
264 case WM8904_CLASS_W_0
:
265 case WM8904_WRITE_SEQUENCER_0
:
266 case WM8904_WRITE_SEQUENCER_1
:
267 case WM8904_WRITE_SEQUENCER_2
:
268 case WM8904_WRITE_SEQUENCER_3
:
269 case WM8904_WRITE_SEQUENCER_4
:
270 case WM8904_FLL_CONTROL_1
:
271 case WM8904_FLL_CONTROL_2
:
272 case WM8904_FLL_CONTROL_3
:
273 case WM8904_FLL_CONTROL_4
:
274 case WM8904_FLL_CONTROL_5
:
275 case WM8904_GPIO_CONTROL_1
:
276 case WM8904_GPIO_CONTROL_2
:
277 case WM8904_GPIO_CONTROL_3
:
278 case WM8904_GPIO_CONTROL_4
:
279 case WM8904_DIGITAL_PULLS
:
280 case WM8904_INTERRUPT_STATUS
:
281 case WM8904_INTERRUPT_STATUS_MASK
:
282 case WM8904_INTERRUPT_POLARITY
:
283 case WM8904_INTERRUPT_DEBOUNCE
:
308 case WM8904_CONTROL_INTERFACE_TEST_1
:
309 case WM8904_ADC_TEST_0
:
310 case WM8904_ANALOGUE_OUTPUT_BIAS_0
:
311 case WM8904_FLL_NCO_TEST_0
:
312 case WM8904_FLL_NCO_TEST_1
:
319 static int wm8904_configure_clocking(struct snd_soc_codec
*codec
)
321 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
322 unsigned int clock0
, clock2
, rate
;
324 /* Gate the clock while we're updating to avoid misclocking */
325 clock2
= snd_soc_read(codec
, WM8904_CLOCK_RATES_2
);
326 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_2
,
327 WM8904_SYSCLK_SRC
, 0);
329 /* This should be done on init() for bypass paths */
330 switch (wm8904
->sysclk_src
) {
331 case WM8904_CLK_MCLK
:
332 dev_dbg(codec
->dev
, "Using %dHz MCLK\n", wm8904
->mclk_rate
);
334 clock2
&= ~WM8904_SYSCLK_SRC
;
335 rate
= wm8904
->mclk_rate
;
337 /* Ensure the FLL is stopped */
338 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
339 WM8904_FLL_OSC_ENA
| WM8904_FLL_ENA
, 0);
343 dev_dbg(codec
->dev
, "Using %dHz FLL clock\n",
346 clock2
|= WM8904_SYSCLK_SRC
;
347 rate
= wm8904
->fll_fout
;
351 dev_err(codec
->dev
, "System clock not configured\n");
355 /* SYSCLK shouldn't be over 13.5MHz */
356 if (rate
> 13500000) {
357 clock0
= WM8904_MCLK_DIV
;
358 wm8904
->sysclk_rate
= rate
/ 2;
361 wm8904
->sysclk_rate
= rate
;
364 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_0
, WM8904_MCLK_DIV
,
367 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_2
,
368 WM8904_CLK_SYS_ENA
| WM8904_SYSCLK_SRC
, clock2
);
370 dev_dbg(codec
->dev
, "CLK_SYS is %dHz\n", wm8904
->sysclk_rate
);
375 static void wm8904_set_drc(struct snd_soc_codec
*codec
)
377 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
378 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
381 /* Save any enables; the configuration should clear them. */
382 save
= snd_soc_read(codec
, WM8904_DRC_0
);
384 for (i
= 0; i
< WM8904_DRC_REGS
; i
++)
385 snd_soc_update_bits(codec
, WM8904_DRC_0
+ i
, 0xffff,
386 pdata
->drc_cfgs
[wm8904
->drc_cfg
].regs
[i
]);
388 /* Reenable the DRC */
389 snd_soc_update_bits(codec
, WM8904_DRC_0
,
390 WM8904_DRC_ENA
| WM8904_DRC_DAC_PATH
, save
);
393 static int wm8904_put_drc_enum(struct snd_kcontrol
*kcontrol
,
394 struct snd_ctl_elem_value
*ucontrol
)
396 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
397 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
398 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
399 int value
= ucontrol
->value
.enumerated
.item
[0];
401 if (value
>= pdata
->num_drc_cfgs
)
404 wm8904
->drc_cfg
= value
;
406 wm8904_set_drc(codec
);
411 static int wm8904_get_drc_enum(struct snd_kcontrol
*kcontrol
,
412 struct snd_ctl_elem_value
*ucontrol
)
414 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
415 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
417 ucontrol
->value
.enumerated
.item
[0] = wm8904
->drc_cfg
;
422 static void wm8904_set_retune_mobile(struct snd_soc_codec
*codec
)
424 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
425 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
426 int best
, best_val
, save
, i
, cfg
;
428 if (!pdata
|| !wm8904
->num_retune_mobile_texts
)
431 /* Find the version of the currently selected configuration
432 * with the nearest sample rate. */
433 cfg
= wm8904
->retune_mobile_cfg
;
436 for (i
= 0; i
< pdata
->num_retune_mobile_cfgs
; i
++) {
437 if (strcmp(pdata
->retune_mobile_cfgs
[i
].name
,
438 wm8904
->retune_mobile_texts
[cfg
]) == 0 &&
439 abs(pdata
->retune_mobile_cfgs
[i
].rate
440 - wm8904
->fs
) < best_val
) {
442 best_val
= abs(pdata
->retune_mobile_cfgs
[i
].rate
447 dev_dbg(codec
->dev
, "ReTune Mobile %s/%dHz for %dHz sample rate\n",
448 pdata
->retune_mobile_cfgs
[best
].name
,
449 pdata
->retune_mobile_cfgs
[best
].rate
,
452 /* The EQ will be disabled while reconfiguring it, remember the
453 * current configuration.
455 save
= snd_soc_read(codec
, WM8904_EQ1
);
457 for (i
= 0; i
< WM8904_EQ_REGS
; i
++)
458 snd_soc_update_bits(codec
, WM8904_EQ1
+ i
, 0xffff,
459 pdata
->retune_mobile_cfgs
[best
].regs
[i
]);
461 snd_soc_update_bits(codec
, WM8904_EQ1
, WM8904_EQ_ENA
, save
);
464 static int wm8904_put_retune_mobile_enum(struct snd_kcontrol
*kcontrol
,
465 struct snd_ctl_elem_value
*ucontrol
)
467 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
468 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
469 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
470 int value
= ucontrol
->value
.enumerated
.item
[0];
472 if (value
>= pdata
->num_retune_mobile_cfgs
)
475 wm8904
->retune_mobile_cfg
= value
;
477 wm8904_set_retune_mobile(codec
);
482 static int wm8904_get_retune_mobile_enum(struct snd_kcontrol
*kcontrol
,
483 struct snd_ctl_elem_value
*ucontrol
)
485 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
486 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
488 ucontrol
->value
.enumerated
.item
[0] = wm8904
->retune_mobile_cfg
;
493 static int deemph_settings
[] = { 0, 32000, 44100, 48000 };
495 static int wm8904_set_deemph(struct snd_soc_codec
*codec
)
497 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
500 /* If we're using deemphasis select the nearest available sample
503 if (wm8904
->deemph
) {
505 for (i
= 2; i
< ARRAY_SIZE(deemph_settings
); i
++) {
506 if (abs(deemph_settings
[i
] - wm8904
->fs
) <
507 abs(deemph_settings
[best
] - wm8904
->fs
))
511 val
= best
<< WM8904_DEEMPH_SHIFT
;
516 dev_dbg(codec
->dev
, "Set deemphasis %d\n", val
);
518 return snd_soc_update_bits(codec
, WM8904_DAC_DIGITAL_1
,
519 WM8904_DEEMPH_MASK
, val
);
522 static int wm8904_get_deemph(struct snd_kcontrol
*kcontrol
,
523 struct snd_ctl_elem_value
*ucontrol
)
525 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
526 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
528 ucontrol
->value
.integer
.value
[0] = wm8904
->deemph
;
532 static int wm8904_put_deemph(struct snd_kcontrol
*kcontrol
,
533 struct snd_ctl_elem_value
*ucontrol
)
535 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
536 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
537 unsigned int deemph
= ucontrol
->value
.integer
.value
[0];
542 wm8904
->deemph
= deemph
;
544 return wm8904_set_deemph(codec
);
547 static const DECLARE_TLV_DB_SCALE(dac_boost_tlv
, 0, 600, 0);
548 static const DECLARE_TLV_DB_SCALE(digital_tlv
, -7200, 75, 1);
549 static const DECLARE_TLV_DB_SCALE(out_tlv
, -5700, 100, 0);
550 static const DECLARE_TLV_DB_SCALE(sidetone_tlv
, -3600, 300, 0);
551 static const DECLARE_TLV_DB_SCALE(eq_tlv
, -1200, 100, 0);
553 static const char *input_mode_text
[] = {
554 "Single-Ended", "Differential Line", "Differential Mic"
557 static SOC_ENUM_SINGLE_DECL(lin_mode
,
558 WM8904_ANALOGUE_LEFT_INPUT_1
, 0,
561 static SOC_ENUM_SINGLE_DECL(rin_mode
,
562 WM8904_ANALOGUE_RIGHT_INPUT_1
, 0,
565 static const char *hpf_mode_text
[] = {
566 "Hi-fi", "Voice 1", "Voice 2", "Voice 3"
569 static SOC_ENUM_SINGLE_DECL(hpf_mode
, WM8904_ADC_DIGITAL_0
, 5,
572 static int wm8904_adc_osr_put(struct snd_kcontrol
*kcontrol
,
573 struct snd_ctl_elem_value
*ucontrol
)
575 struct snd_soc_codec
*codec
= snd_soc_kcontrol_codec(kcontrol
);
579 ret
= snd_soc_put_volsw(kcontrol
, ucontrol
);
583 if (ucontrol
->value
.integer
.value
[0])
586 val
= WM8904_ADC_128_OSR_TST_MODE
| WM8904_ADC_BIASX1P5
;
588 snd_soc_update_bits(codec
, WM8904_ADC_TEST_0
,
589 WM8904_ADC_128_OSR_TST_MODE
| WM8904_ADC_BIASX1P5
,
595 static const struct snd_kcontrol_new wm8904_adc_snd_controls
[] = {
596 SOC_DOUBLE_R_TLV("Digital Capture Volume", WM8904_ADC_DIGITAL_VOLUME_LEFT
,
597 WM8904_ADC_DIGITAL_VOLUME_RIGHT
, 1, 119, 0, digital_tlv
),
599 SOC_ENUM("Left Caputure Mode", lin_mode
),
600 SOC_ENUM("Right Capture Mode", rin_mode
),
602 /* No TLV since it depends on mode */
603 SOC_DOUBLE_R("Capture Volume", WM8904_ANALOGUE_LEFT_INPUT_0
,
604 WM8904_ANALOGUE_RIGHT_INPUT_0
, 0, 31, 0),
605 SOC_DOUBLE_R("Capture Switch", WM8904_ANALOGUE_LEFT_INPUT_0
,
606 WM8904_ANALOGUE_RIGHT_INPUT_0
, 7, 1, 1),
608 SOC_SINGLE("High Pass Filter Switch", WM8904_ADC_DIGITAL_0
, 4, 1, 0),
609 SOC_ENUM("High Pass Filter Mode", hpf_mode
),
610 SOC_SINGLE_EXT("ADC 128x OSR Switch", WM8904_ANALOGUE_ADC_0
, 0, 1, 0,
611 snd_soc_get_volsw
, wm8904_adc_osr_put
),
614 static const char *drc_path_text
[] = {
618 static SOC_ENUM_SINGLE_DECL(drc_path
, WM8904_DRC_0
, 14, drc_path_text
);
620 static const struct snd_kcontrol_new wm8904_dac_snd_controls
[] = {
621 SOC_SINGLE_TLV("Digital Playback Boost Volume",
622 WM8904_AUDIO_INTERFACE_0
, 9, 3, 0, dac_boost_tlv
),
623 SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8904_DAC_DIGITAL_VOLUME_LEFT
,
624 WM8904_DAC_DIGITAL_VOLUME_RIGHT
, 1, 96, 0, digital_tlv
),
626 SOC_DOUBLE_R_TLV("Headphone Volume", WM8904_ANALOGUE_OUT1_LEFT
,
627 WM8904_ANALOGUE_OUT1_RIGHT
, 0, 63, 0, out_tlv
),
628 SOC_DOUBLE_R("Headphone Switch", WM8904_ANALOGUE_OUT1_LEFT
,
629 WM8904_ANALOGUE_OUT1_RIGHT
, 8, 1, 1),
630 SOC_DOUBLE_R("Headphone ZC Switch", WM8904_ANALOGUE_OUT1_LEFT
,
631 WM8904_ANALOGUE_OUT1_RIGHT
, 6, 1, 0),
633 SOC_DOUBLE_R_TLV("Line Output Volume", WM8904_ANALOGUE_OUT2_LEFT
,
634 WM8904_ANALOGUE_OUT2_RIGHT
, 0, 63, 0, out_tlv
),
635 SOC_DOUBLE_R("Line Output Switch", WM8904_ANALOGUE_OUT2_LEFT
,
636 WM8904_ANALOGUE_OUT2_RIGHT
, 8, 1, 1),
637 SOC_DOUBLE_R("Line Output ZC Switch", WM8904_ANALOGUE_OUT2_LEFT
,
638 WM8904_ANALOGUE_OUT2_RIGHT
, 6, 1, 0),
640 SOC_SINGLE("EQ Switch", WM8904_EQ1
, 0, 1, 0),
641 SOC_SINGLE("DRC Switch", WM8904_DRC_0
, 15, 1, 0),
642 SOC_ENUM("DRC Path", drc_path
),
643 SOC_SINGLE("DAC OSRx2 Switch", WM8904_DAC_DIGITAL_1
, 6, 1, 0),
644 SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0,
645 wm8904_get_deemph
, wm8904_put_deemph
),
648 static const struct snd_kcontrol_new wm8904_snd_controls
[] = {
649 SOC_DOUBLE_TLV("Digital Sidetone Volume", WM8904_DAC_DIGITAL_0
, 4, 8, 15, 0,
653 static const struct snd_kcontrol_new wm8904_eq_controls
[] = {
654 SOC_SINGLE_TLV("EQ1 Volume", WM8904_EQ2
, 0, 24, 0, eq_tlv
),
655 SOC_SINGLE_TLV("EQ2 Volume", WM8904_EQ3
, 0, 24, 0, eq_tlv
),
656 SOC_SINGLE_TLV("EQ3 Volume", WM8904_EQ4
, 0, 24, 0, eq_tlv
),
657 SOC_SINGLE_TLV("EQ4 Volume", WM8904_EQ5
, 0, 24, 0, eq_tlv
),
658 SOC_SINGLE_TLV("EQ5 Volume", WM8904_EQ6
, 0, 24, 0, eq_tlv
),
661 static int cp_event(struct snd_soc_dapm_widget
*w
,
662 struct snd_kcontrol
*kcontrol
, int event
)
664 if (WARN_ON(event
!= SND_SOC_DAPM_POST_PMU
))
667 /* Maximum startup time */
673 static int sysclk_event(struct snd_soc_dapm_widget
*w
,
674 struct snd_kcontrol
*kcontrol
, int event
)
676 struct snd_soc_codec
*codec
= snd_soc_dapm_to_codec(w
->dapm
);
677 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
680 case SND_SOC_DAPM_PRE_PMU
:
681 /* If we're using the FLL then we only start it when
682 * required; we assume that the configuration has been
683 * done previously and all we need to do is kick it
686 switch (wm8904
->sysclk_src
) {
688 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
692 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
702 case SND_SOC_DAPM_POST_PMD
:
703 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
704 WM8904_FLL_OSC_ENA
| WM8904_FLL_ENA
, 0);
711 static int out_pga_event(struct snd_soc_dapm_widget
*w
,
712 struct snd_kcontrol
*kcontrol
, int event
)
714 struct snd_soc_codec
*codec
= snd_soc_dapm_to_codec(w
->dapm
);
715 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
719 int dcs_l_reg
, dcs_r_reg
;
723 /* This code is shared between HP and LINEOUT; we do all our
724 * power management in stereo pairs to avoid latency issues so
725 * we reuse shift to identify which rather than strcmp() the
730 case WM8904_ANALOGUE_HP_0
:
731 pwr_reg
= WM8904_POWER_MANAGEMENT_2
;
732 dcs_mask
= WM8904_DCS_ENA_CHAN_0
| WM8904_DCS_ENA_CHAN_1
;
733 dcs_r_reg
= WM8904_DC_SERVO_8
;
734 dcs_l_reg
= WM8904_DC_SERVO_9
;
738 case WM8904_ANALOGUE_LINEOUT_0
:
739 pwr_reg
= WM8904_POWER_MANAGEMENT_3
;
740 dcs_mask
= WM8904_DCS_ENA_CHAN_2
| WM8904_DCS_ENA_CHAN_3
;
741 dcs_r_reg
= WM8904_DC_SERVO_6
;
742 dcs_l_reg
= WM8904_DC_SERVO_7
;
747 WARN(1, "Invalid reg %d\n", reg
);
752 case SND_SOC_DAPM_PRE_PMU
:
753 /* Power on the PGAs */
754 snd_soc_update_bits(codec
, pwr_reg
,
755 WM8904_HPL_PGA_ENA
| WM8904_HPR_PGA_ENA
,
756 WM8904_HPL_PGA_ENA
| WM8904_HPR_PGA_ENA
);
758 /* Power on the amplifier */
759 snd_soc_update_bits(codec
, reg
,
760 WM8904_HPL_ENA
| WM8904_HPR_ENA
,
761 WM8904_HPL_ENA
| WM8904_HPR_ENA
);
764 /* Enable the first stage */
765 snd_soc_update_bits(codec
, reg
,
766 WM8904_HPL_ENA_DLY
| WM8904_HPR_ENA_DLY
,
767 WM8904_HPL_ENA_DLY
| WM8904_HPR_ENA_DLY
);
769 /* Power up the DC servo */
770 snd_soc_update_bits(codec
, WM8904_DC_SERVO_0
,
773 /* Either calibrate the DC servo or restore cached state
776 if (wm8904
->dcs_state
[dcs_l
] || wm8904
->dcs_state
[dcs_r
]) {
777 dev_dbg(codec
->dev
, "Restoring DC servo state\n");
779 snd_soc_write(codec
, dcs_l_reg
,
780 wm8904
->dcs_state
[dcs_l
]);
781 snd_soc_write(codec
, dcs_r_reg
,
782 wm8904
->dcs_state
[dcs_r
]);
784 snd_soc_write(codec
, WM8904_DC_SERVO_1
, dcs_mask
);
788 dev_dbg(codec
->dev
, "Calibrating DC servo\n");
790 snd_soc_write(codec
, WM8904_DC_SERVO_1
,
791 dcs_mask
<< WM8904_DCS_TRIG_STARTUP_0_SHIFT
);
796 /* Wait for DC servo to complete */
797 dcs_mask
<<= WM8904_DCS_CAL_COMPLETE_SHIFT
;
799 val
= snd_soc_read(codec
, WM8904_DC_SERVO_READBACK_0
);
800 if ((val
& dcs_mask
) == dcs_mask
)
806 if ((val
& dcs_mask
) != dcs_mask
)
807 dev_warn(codec
->dev
, "DC servo timed out\n");
809 dev_dbg(codec
->dev
, "DC servo ready\n");
811 /* Enable the output stage */
812 snd_soc_update_bits(codec
, reg
,
813 WM8904_HPL_ENA_OUTP
| WM8904_HPR_ENA_OUTP
,
814 WM8904_HPL_ENA_OUTP
| WM8904_HPR_ENA_OUTP
);
817 case SND_SOC_DAPM_POST_PMU
:
818 /* Unshort the output itself */
819 snd_soc_update_bits(codec
, reg
,
820 WM8904_HPL_RMV_SHORT
|
821 WM8904_HPR_RMV_SHORT
,
822 WM8904_HPL_RMV_SHORT
|
823 WM8904_HPR_RMV_SHORT
);
827 case SND_SOC_DAPM_PRE_PMD
:
828 /* Short the output */
829 snd_soc_update_bits(codec
, reg
,
830 WM8904_HPL_RMV_SHORT
|
831 WM8904_HPR_RMV_SHORT
, 0);
834 case SND_SOC_DAPM_POST_PMD
:
835 /* Cache the DC servo configuration; this will be
836 * invalidated if we change the configuration. */
837 wm8904
->dcs_state
[dcs_l
] = snd_soc_read(codec
, dcs_l_reg
);
838 wm8904
->dcs_state
[dcs_r
] = snd_soc_read(codec
, dcs_r_reg
);
840 snd_soc_update_bits(codec
, WM8904_DC_SERVO_0
,
843 /* Disable the amplifier input and output stages */
844 snd_soc_update_bits(codec
, reg
,
845 WM8904_HPL_ENA
| WM8904_HPR_ENA
|
846 WM8904_HPL_ENA_DLY
| WM8904_HPR_ENA_DLY
|
847 WM8904_HPL_ENA_OUTP
| WM8904_HPR_ENA_OUTP
,
851 snd_soc_update_bits(codec
, pwr_reg
,
852 WM8904_HPL_PGA_ENA
| WM8904_HPR_PGA_ENA
,
860 static const char *lin_text
[] = {
861 "IN1L", "IN2L", "IN3L"
864 static SOC_ENUM_SINGLE_DECL(lin_enum
, WM8904_ANALOGUE_LEFT_INPUT_1
, 2,
867 static const struct snd_kcontrol_new lin_mux
=
868 SOC_DAPM_ENUM("Left Capture Mux", lin_enum
);
870 static SOC_ENUM_SINGLE_DECL(lin_inv_enum
, WM8904_ANALOGUE_LEFT_INPUT_1
, 4,
873 static const struct snd_kcontrol_new lin_inv_mux
=
874 SOC_DAPM_ENUM("Left Capture Inveting Mux", lin_inv_enum
);
876 static const char *rin_text
[] = {
877 "IN1R", "IN2R", "IN3R"
880 static SOC_ENUM_SINGLE_DECL(rin_enum
, WM8904_ANALOGUE_RIGHT_INPUT_1
, 2,
883 static const struct snd_kcontrol_new rin_mux
=
884 SOC_DAPM_ENUM("Right Capture Mux", rin_enum
);
886 static SOC_ENUM_SINGLE_DECL(rin_inv_enum
, WM8904_ANALOGUE_RIGHT_INPUT_1
, 4,
889 static const struct snd_kcontrol_new rin_inv_mux
=
890 SOC_DAPM_ENUM("Right Capture Inveting Mux", rin_inv_enum
);
892 static const char *aif_text
[] = {
896 static SOC_ENUM_SINGLE_DECL(aifoutl_enum
, WM8904_AUDIO_INTERFACE_0
, 7,
899 static const struct snd_kcontrol_new aifoutl_mux
=
900 SOC_DAPM_ENUM("AIFOUTL Mux", aifoutl_enum
);
902 static SOC_ENUM_SINGLE_DECL(aifoutr_enum
, WM8904_AUDIO_INTERFACE_0
, 6,
905 static const struct snd_kcontrol_new aifoutr_mux
=
906 SOC_DAPM_ENUM("AIFOUTR Mux", aifoutr_enum
);
908 static SOC_ENUM_SINGLE_DECL(aifinl_enum
, WM8904_AUDIO_INTERFACE_0
, 5,
911 static const struct snd_kcontrol_new aifinl_mux
=
912 SOC_DAPM_ENUM("AIFINL Mux", aifinl_enum
);
914 static SOC_ENUM_SINGLE_DECL(aifinr_enum
, WM8904_AUDIO_INTERFACE_0
, 4,
917 static const struct snd_kcontrol_new aifinr_mux
=
918 SOC_DAPM_ENUM("AIFINR Mux", aifinr_enum
);
920 static const struct snd_soc_dapm_widget wm8904_core_dapm_widgets
[] = {
921 SND_SOC_DAPM_SUPPLY("SYSCLK", WM8904_CLOCK_RATES_2
, 2, 0, sysclk_event
,
922 SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMD
),
923 SND_SOC_DAPM_SUPPLY("CLK_DSP", WM8904_CLOCK_RATES_2
, 1, 0, NULL
, 0),
924 SND_SOC_DAPM_SUPPLY("TOCLK", WM8904_CLOCK_RATES_2
, 0, 0, NULL
, 0),
927 static const struct snd_soc_dapm_widget wm8904_adc_dapm_widgets
[] = {
928 SND_SOC_DAPM_INPUT("IN1L"),
929 SND_SOC_DAPM_INPUT("IN1R"),
930 SND_SOC_DAPM_INPUT("IN2L"),
931 SND_SOC_DAPM_INPUT("IN2R"),
932 SND_SOC_DAPM_INPUT("IN3L"),
933 SND_SOC_DAPM_INPUT("IN3R"),
935 SND_SOC_DAPM_SUPPLY("MICBIAS", WM8904_MIC_BIAS_CONTROL_0
, 0, 0, NULL
, 0),
937 SND_SOC_DAPM_MUX("Left Capture Mux", SND_SOC_NOPM
, 0, 0, &lin_mux
),
938 SND_SOC_DAPM_MUX("Left Capture Inverting Mux", SND_SOC_NOPM
, 0, 0,
940 SND_SOC_DAPM_MUX("Right Capture Mux", SND_SOC_NOPM
, 0, 0, &rin_mux
),
941 SND_SOC_DAPM_MUX("Right Capture Inverting Mux", SND_SOC_NOPM
, 0, 0,
944 SND_SOC_DAPM_PGA("Left Capture PGA", WM8904_POWER_MANAGEMENT_0
, 1, 0,
946 SND_SOC_DAPM_PGA("Right Capture PGA", WM8904_POWER_MANAGEMENT_0
, 0, 0,
949 SND_SOC_DAPM_ADC("ADCL", NULL
, WM8904_POWER_MANAGEMENT_6
, 1, 0),
950 SND_SOC_DAPM_ADC("ADCR", NULL
, WM8904_POWER_MANAGEMENT_6
, 0, 0),
952 SND_SOC_DAPM_MUX("AIFOUTL Mux", SND_SOC_NOPM
, 0, 0, &aifoutl_mux
),
953 SND_SOC_DAPM_MUX("AIFOUTR Mux", SND_SOC_NOPM
, 0, 0, &aifoutr_mux
),
955 SND_SOC_DAPM_AIF_OUT("AIFOUTL", "Capture", 0, SND_SOC_NOPM
, 0, 0),
956 SND_SOC_DAPM_AIF_OUT("AIFOUTR", "Capture", 1, SND_SOC_NOPM
, 0, 0),
959 static const struct snd_soc_dapm_widget wm8904_dac_dapm_widgets
[] = {
960 SND_SOC_DAPM_AIF_IN("AIFINL", "Playback", 0, SND_SOC_NOPM
, 0, 0),
961 SND_SOC_DAPM_AIF_IN("AIFINR", "Playback", 1, SND_SOC_NOPM
, 0, 0),
963 SND_SOC_DAPM_MUX("DACL Mux", SND_SOC_NOPM
, 0, 0, &aifinl_mux
),
964 SND_SOC_DAPM_MUX("DACR Mux", SND_SOC_NOPM
, 0, 0, &aifinr_mux
),
966 SND_SOC_DAPM_DAC("DACL", NULL
, WM8904_POWER_MANAGEMENT_6
, 3, 0),
967 SND_SOC_DAPM_DAC("DACR", NULL
, WM8904_POWER_MANAGEMENT_6
, 2, 0),
969 SND_SOC_DAPM_SUPPLY("Charge pump", WM8904_CHARGE_PUMP_0
, 0, 0, cp_event
,
970 SND_SOC_DAPM_POST_PMU
),
972 SND_SOC_DAPM_PGA("HPL PGA", SND_SOC_NOPM
, 1, 0, NULL
, 0),
973 SND_SOC_DAPM_PGA("HPR PGA", SND_SOC_NOPM
, 0, 0, NULL
, 0),
975 SND_SOC_DAPM_PGA("LINEL PGA", SND_SOC_NOPM
, 1, 0, NULL
, 0),
976 SND_SOC_DAPM_PGA("LINER PGA", SND_SOC_NOPM
, 0, 0, NULL
, 0),
978 SND_SOC_DAPM_PGA_E("Headphone Output", SND_SOC_NOPM
, WM8904_ANALOGUE_HP_0
,
979 0, NULL
, 0, out_pga_event
,
980 SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMU
|
981 SND_SOC_DAPM_PRE_PMD
| SND_SOC_DAPM_POST_PMD
),
982 SND_SOC_DAPM_PGA_E("Line Output", SND_SOC_NOPM
, WM8904_ANALOGUE_LINEOUT_0
,
983 0, NULL
, 0, out_pga_event
,
984 SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMU
|
985 SND_SOC_DAPM_PRE_PMD
| SND_SOC_DAPM_POST_PMD
),
987 SND_SOC_DAPM_OUTPUT("HPOUTL"),
988 SND_SOC_DAPM_OUTPUT("HPOUTR"),
989 SND_SOC_DAPM_OUTPUT("LINEOUTL"),
990 SND_SOC_DAPM_OUTPUT("LINEOUTR"),
993 static const char *out_mux_text
[] = {
997 static SOC_ENUM_SINGLE_DECL(hpl_enum
, WM8904_ANALOGUE_OUT12_ZC
, 3,
1000 static const struct snd_kcontrol_new hpl_mux
=
1001 SOC_DAPM_ENUM("HPL Mux", hpl_enum
);
1003 static SOC_ENUM_SINGLE_DECL(hpr_enum
, WM8904_ANALOGUE_OUT12_ZC
, 2,
1006 static const struct snd_kcontrol_new hpr_mux
=
1007 SOC_DAPM_ENUM("HPR Mux", hpr_enum
);
1009 static SOC_ENUM_SINGLE_DECL(linel_enum
, WM8904_ANALOGUE_OUT12_ZC
, 1,
1012 static const struct snd_kcontrol_new linel_mux
=
1013 SOC_DAPM_ENUM("LINEL Mux", linel_enum
);
1015 static SOC_ENUM_SINGLE_DECL(liner_enum
, WM8904_ANALOGUE_OUT12_ZC
, 0,
1018 static const struct snd_kcontrol_new liner_mux
=
1019 SOC_DAPM_ENUM("LINER Mux", liner_enum
);
1021 static const char *sidetone_text
[] = {
1022 "None", "Left", "Right"
1025 static SOC_ENUM_SINGLE_DECL(dacl_sidetone_enum
, WM8904_DAC_DIGITAL_0
, 2,
1028 static const struct snd_kcontrol_new dacl_sidetone_mux
=
1029 SOC_DAPM_ENUM("Left Sidetone Mux", dacl_sidetone_enum
);
1031 static SOC_ENUM_SINGLE_DECL(dacr_sidetone_enum
, WM8904_DAC_DIGITAL_0
, 0,
1034 static const struct snd_kcontrol_new dacr_sidetone_mux
=
1035 SOC_DAPM_ENUM("Right Sidetone Mux", dacr_sidetone_enum
);
1037 static const struct snd_soc_dapm_widget wm8904_dapm_widgets
[] = {
1038 SND_SOC_DAPM_SUPPLY("Class G", WM8904_CLASS_W_0
, 0, 1, NULL
, 0),
1039 SND_SOC_DAPM_PGA("Left Bypass", SND_SOC_NOPM
, 0, 0, NULL
, 0),
1040 SND_SOC_DAPM_PGA("Right Bypass", SND_SOC_NOPM
, 0, 0, NULL
, 0),
1042 SND_SOC_DAPM_MUX("Left Sidetone", SND_SOC_NOPM
, 0, 0, &dacl_sidetone_mux
),
1043 SND_SOC_DAPM_MUX("Right Sidetone", SND_SOC_NOPM
, 0, 0, &dacr_sidetone_mux
),
1045 SND_SOC_DAPM_MUX("HPL Mux", SND_SOC_NOPM
, 0, 0, &hpl_mux
),
1046 SND_SOC_DAPM_MUX("HPR Mux", SND_SOC_NOPM
, 0, 0, &hpr_mux
),
1047 SND_SOC_DAPM_MUX("LINEL Mux", SND_SOC_NOPM
, 0, 0, &linel_mux
),
1048 SND_SOC_DAPM_MUX("LINER Mux", SND_SOC_NOPM
, 0, 0, &liner_mux
),
1051 static const struct snd_soc_dapm_route core_intercon
[] = {
1052 { "CLK_DSP", NULL
, "SYSCLK" },
1053 { "TOCLK", NULL
, "SYSCLK" },
1056 static const struct snd_soc_dapm_route adc_intercon
[] = {
1057 { "Left Capture Mux", "IN1L", "IN1L" },
1058 { "Left Capture Mux", "IN2L", "IN2L" },
1059 { "Left Capture Mux", "IN3L", "IN3L" },
1061 { "Left Capture Inverting Mux", "IN1L", "IN1L" },
1062 { "Left Capture Inverting Mux", "IN2L", "IN2L" },
1063 { "Left Capture Inverting Mux", "IN3L", "IN3L" },
1065 { "Right Capture Mux", "IN1R", "IN1R" },
1066 { "Right Capture Mux", "IN2R", "IN2R" },
1067 { "Right Capture Mux", "IN3R", "IN3R" },
1069 { "Right Capture Inverting Mux", "IN1R", "IN1R" },
1070 { "Right Capture Inverting Mux", "IN2R", "IN2R" },
1071 { "Right Capture Inverting Mux", "IN3R", "IN3R" },
1073 { "Left Capture PGA", NULL
, "Left Capture Mux" },
1074 { "Left Capture PGA", NULL
, "Left Capture Inverting Mux" },
1076 { "Right Capture PGA", NULL
, "Right Capture Mux" },
1077 { "Right Capture PGA", NULL
, "Right Capture Inverting Mux" },
1079 { "AIFOUTL Mux", "Left", "ADCL" },
1080 { "AIFOUTL Mux", "Right", "ADCR" },
1081 { "AIFOUTR Mux", "Left", "ADCL" },
1082 { "AIFOUTR Mux", "Right", "ADCR" },
1084 { "AIFOUTL", NULL
, "AIFOUTL Mux" },
1085 { "AIFOUTR", NULL
, "AIFOUTR Mux" },
1087 { "ADCL", NULL
, "CLK_DSP" },
1088 { "ADCL", NULL
, "Left Capture PGA" },
1090 { "ADCR", NULL
, "CLK_DSP" },
1091 { "ADCR", NULL
, "Right Capture PGA" },
1094 static const struct snd_soc_dapm_route dac_intercon
[] = {
1095 { "DACL Mux", "Left", "AIFINL" },
1096 { "DACL Mux", "Right", "AIFINR" },
1098 { "DACR Mux", "Left", "AIFINL" },
1099 { "DACR Mux", "Right", "AIFINR" },
1101 { "DACL", NULL
, "DACL Mux" },
1102 { "DACL", NULL
, "CLK_DSP" },
1104 { "DACR", NULL
, "DACR Mux" },
1105 { "DACR", NULL
, "CLK_DSP" },
1107 { "Charge pump", NULL
, "SYSCLK" },
1109 { "Headphone Output", NULL
, "HPL PGA" },
1110 { "Headphone Output", NULL
, "HPR PGA" },
1111 { "Headphone Output", NULL
, "Charge pump" },
1112 { "Headphone Output", NULL
, "TOCLK" },
1114 { "Line Output", NULL
, "LINEL PGA" },
1115 { "Line Output", NULL
, "LINER PGA" },
1116 { "Line Output", NULL
, "Charge pump" },
1117 { "Line Output", NULL
, "TOCLK" },
1119 { "HPOUTL", NULL
, "Headphone Output" },
1120 { "HPOUTR", NULL
, "Headphone Output" },
1122 { "LINEOUTL", NULL
, "Line Output" },
1123 { "LINEOUTR", NULL
, "Line Output" },
1126 static const struct snd_soc_dapm_route wm8904_intercon
[] = {
1127 { "Left Sidetone", "Left", "ADCL" },
1128 { "Left Sidetone", "Right", "ADCR" },
1129 { "DACL", NULL
, "Left Sidetone" },
1131 { "Right Sidetone", "Left", "ADCL" },
1132 { "Right Sidetone", "Right", "ADCR" },
1133 { "DACR", NULL
, "Right Sidetone" },
1135 { "Left Bypass", NULL
, "Class G" },
1136 { "Left Bypass", NULL
, "Left Capture PGA" },
1138 { "Right Bypass", NULL
, "Class G" },
1139 { "Right Bypass", NULL
, "Right Capture PGA" },
1141 { "HPL Mux", "DAC", "DACL" },
1142 { "HPL Mux", "Bypass", "Left Bypass" },
1144 { "HPR Mux", "DAC", "DACR" },
1145 { "HPR Mux", "Bypass", "Right Bypass" },
1147 { "LINEL Mux", "DAC", "DACL" },
1148 { "LINEL Mux", "Bypass", "Left Bypass" },
1150 { "LINER Mux", "DAC", "DACR" },
1151 { "LINER Mux", "Bypass", "Right Bypass" },
1153 { "HPL PGA", NULL
, "HPL Mux" },
1154 { "HPR PGA", NULL
, "HPR Mux" },
1156 { "LINEL PGA", NULL
, "LINEL Mux" },
1157 { "LINER PGA", NULL
, "LINER Mux" },
1160 static const struct snd_soc_dapm_route wm8912_intercon
[] = {
1161 { "HPL PGA", NULL
, "DACL" },
1162 { "HPR PGA", NULL
, "DACR" },
1164 { "LINEL PGA", NULL
, "DACL" },
1165 { "LINER PGA", NULL
, "DACR" },
1168 static int wm8904_add_widgets(struct snd_soc_codec
*codec
)
1170 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1171 struct snd_soc_dapm_context
*dapm
= snd_soc_codec_get_dapm(codec
);
1173 snd_soc_dapm_new_controls(dapm
, wm8904_core_dapm_widgets
,
1174 ARRAY_SIZE(wm8904_core_dapm_widgets
));
1175 snd_soc_dapm_add_routes(dapm
, core_intercon
,
1176 ARRAY_SIZE(core_intercon
));
1178 switch (wm8904
->devtype
) {
1180 snd_soc_add_codec_controls(codec
, wm8904_adc_snd_controls
,
1181 ARRAY_SIZE(wm8904_adc_snd_controls
));
1182 snd_soc_add_codec_controls(codec
, wm8904_dac_snd_controls
,
1183 ARRAY_SIZE(wm8904_dac_snd_controls
));
1184 snd_soc_add_codec_controls(codec
, wm8904_snd_controls
,
1185 ARRAY_SIZE(wm8904_snd_controls
));
1187 snd_soc_dapm_new_controls(dapm
, wm8904_adc_dapm_widgets
,
1188 ARRAY_SIZE(wm8904_adc_dapm_widgets
));
1189 snd_soc_dapm_new_controls(dapm
, wm8904_dac_dapm_widgets
,
1190 ARRAY_SIZE(wm8904_dac_dapm_widgets
));
1191 snd_soc_dapm_new_controls(dapm
, wm8904_dapm_widgets
,
1192 ARRAY_SIZE(wm8904_dapm_widgets
));
1194 snd_soc_dapm_add_routes(dapm
, adc_intercon
,
1195 ARRAY_SIZE(adc_intercon
));
1196 snd_soc_dapm_add_routes(dapm
, dac_intercon
,
1197 ARRAY_SIZE(dac_intercon
));
1198 snd_soc_dapm_add_routes(dapm
, wm8904_intercon
,
1199 ARRAY_SIZE(wm8904_intercon
));
1203 snd_soc_add_codec_controls(codec
, wm8904_dac_snd_controls
,
1204 ARRAY_SIZE(wm8904_dac_snd_controls
));
1206 snd_soc_dapm_new_controls(dapm
, wm8904_dac_dapm_widgets
,
1207 ARRAY_SIZE(wm8904_dac_dapm_widgets
));
1209 snd_soc_dapm_add_routes(dapm
, dac_intercon
,
1210 ARRAY_SIZE(dac_intercon
));
1211 snd_soc_dapm_add_routes(dapm
, wm8912_intercon
,
1212 ARRAY_SIZE(wm8912_intercon
));
1221 unsigned int clk_sys_rate
;
1222 } clk_sys_rates
[] = {
1238 } sample_rates
[] = {
1251 int div
; /* *10 due to .5s */
1277 static int wm8904_hw_params(struct snd_pcm_substream
*substream
,
1278 struct snd_pcm_hw_params
*params
,
1279 struct snd_soc_dai
*dai
)
1281 struct snd_soc_codec
*codec
= dai
->codec
;
1282 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1283 int ret
, i
, best
, best_val
, cur_val
;
1284 unsigned int aif1
= 0;
1285 unsigned int aif2
= 0;
1286 unsigned int aif3
= 0;
1287 unsigned int clock1
= 0;
1288 unsigned int dac_digital1
= 0;
1290 /* What BCLK do we need? */
1291 wm8904
->fs
= params_rate(params
);
1292 if (wm8904
->tdm_slots
) {
1293 dev_dbg(codec
->dev
, "Configuring for %d %d bit TDM slots\n",
1294 wm8904
->tdm_slots
, wm8904
->tdm_width
);
1295 wm8904
->bclk
= snd_soc_calc_bclk(wm8904
->fs
,
1296 wm8904
->tdm_width
, 2,
1299 wm8904
->bclk
= snd_soc_params_to_bclk(params
);
1302 switch (params_width(params
)) {
1319 dev_dbg(codec
->dev
, "Target BCLK is %dHz\n", wm8904
->bclk
);
1321 ret
= wm8904_configure_clocking(codec
);
1325 /* Select nearest CLK_SYS_RATE */
1327 best_val
= abs((wm8904
->sysclk_rate
/ clk_sys_rates
[0].ratio
)
1329 for (i
= 1; i
< ARRAY_SIZE(clk_sys_rates
); i
++) {
1330 cur_val
= abs((wm8904
->sysclk_rate
/
1331 clk_sys_rates
[i
].ratio
) - wm8904
->fs
);
1332 if (cur_val
< best_val
) {
1337 dev_dbg(codec
->dev
, "Selected CLK_SYS_RATIO of %d\n",
1338 clk_sys_rates
[best
].ratio
);
1339 clock1
|= (clk_sys_rates
[best
].clk_sys_rate
1340 << WM8904_CLK_SYS_RATE_SHIFT
);
1344 best_val
= abs(wm8904
->fs
- sample_rates
[0].rate
);
1345 for (i
= 1; i
< ARRAY_SIZE(sample_rates
); i
++) {
1347 cur_val
= abs(wm8904
->fs
- sample_rates
[i
].rate
);
1348 if (cur_val
< best_val
) {
1353 dev_dbg(codec
->dev
, "Selected SAMPLE_RATE of %dHz\n",
1354 sample_rates
[best
].rate
);
1355 clock1
|= (sample_rates
[best
].sample_rate
1356 << WM8904_SAMPLE_RATE_SHIFT
);
1358 /* Enable sloping stopband filter for low sample rates */
1359 if (wm8904
->fs
<= 24000)
1360 dac_digital1
|= WM8904_DAC_SB_FILT
;
1365 for (i
= 0; i
< ARRAY_SIZE(bclk_divs
); i
++) {
1366 cur_val
= ((wm8904
->sysclk_rate
* 10) / bclk_divs
[i
].div
)
1368 if (cur_val
< 0) /* Table is sorted */
1370 if (cur_val
< best_val
) {
1375 wm8904
->bclk
= (wm8904
->sysclk_rate
* 10) / bclk_divs
[best
].div
;
1376 dev_dbg(codec
->dev
, "Selected BCLK_DIV of %d for %dHz BCLK\n",
1377 bclk_divs
[best
].div
, wm8904
->bclk
);
1378 aif2
|= bclk_divs
[best
].bclk_div
;
1380 /* LRCLK is a simple fraction of BCLK */
1381 dev_dbg(codec
->dev
, "LRCLK_RATE is %d\n", wm8904
->bclk
/ wm8904
->fs
);
1382 aif3
|= wm8904
->bclk
/ wm8904
->fs
;
1384 /* Apply the settings */
1385 snd_soc_update_bits(codec
, WM8904_DAC_DIGITAL_1
,
1386 WM8904_DAC_SB_FILT
, dac_digital1
);
1387 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_1
,
1388 WM8904_AIF_WL_MASK
, aif1
);
1389 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_2
,
1390 WM8904_BCLK_DIV_MASK
, aif2
);
1391 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_3
,
1392 WM8904_LRCLK_RATE_MASK
, aif3
);
1393 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_1
,
1394 WM8904_SAMPLE_RATE_MASK
|
1395 WM8904_CLK_SYS_RATE_MASK
, clock1
);
1397 /* Update filters for the new settings */
1398 wm8904_set_retune_mobile(codec
);
1399 wm8904_set_deemph(codec
);
1405 static int wm8904_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
1406 unsigned int freq
, int dir
)
1408 struct snd_soc_codec
*codec
= dai
->codec
;
1409 struct wm8904_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
1412 case WM8904_CLK_MCLK
:
1413 priv
->sysclk_src
= clk_id
;
1414 priv
->mclk_rate
= freq
;
1417 case WM8904_CLK_FLL
:
1418 priv
->sysclk_src
= clk_id
;
1425 dev_dbg(dai
->dev
, "Clock source is %d at %uHz\n", clk_id
, freq
);
1427 wm8904_configure_clocking(codec
);
1432 static int wm8904_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
1434 struct snd_soc_codec
*codec
= dai
->codec
;
1435 unsigned int aif1
= 0;
1436 unsigned int aif3
= 0;
1438 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
1439 case SND_SOC_DAIFMT_CBS_CFS
:
1441 case SND_SOC_DAIFMT_CBS_CFM
:
1442 aif3
|= WM8904_LRCLK_DIR
;
1444 case SND_SOC_DAIFMT_CBM_CFS
:
1445 aif1
|= WM8904_BCLK_DIR
;
1447 case SND_SOC_DAIFMT_CBM_CFM
:
1448 aif1
|= WM8904_BCLK_DIR
;
1449 aif3
|= WM8904_LRCLK_DIR
;
1455 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1456 case SND_SOC_DAIFMT_DSP_B
:
1457 aif1
|= 0x3 | WM8904_AIF_LRCLK_INV
;
1458 case SND_SOC_DAIFMT_DSP_A
:
1461 case SND_SOC_DAIFMT_I2S
:
1464 case SND_SOC_DAIFMT_RIGHT_J
:
1466 case SND_SOC_DAIFMT_LEFT_J
:
1473 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1474 case SND_SOC_DAIFMT_DSP_A
:
1475 case SND_SOC_DAIFMT_DSP_B
:
1476 /* frame inversion not valid for DSP modes */
1477 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
1478 case SND_SOC_DAIFMT_NB_NF
:
1480 case SND_SOC_DAIFMT_IB_NF
:
1481 aif1
|= WM8904_AIF_BCLK_INV
;
1488 case SND_SOC_DAIFMT_I2S
:
1489 case SND_SOC_DAIFMT_RIGHT_J
:
1490 case SND_SOC_DAIFMT_LEFT_J
:
1491 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
1492 case SND_SOC_DAIFMT_NB_NF
:
1494 case SND_SOC_DAIFMT_IB_IF
:
1495 aif1
|= WM8904_AIF_BCLK_INV
| WM8904_AIF_LRCLK_INV
;
1497 case SND_SOC_DAIFMT_IB_NF
:
1498 aif1
|= WM8904_AIF_BCLK_INV
;
1500 case SND_SOC_DAIFMT_NB_IF
:
1501 aif1
|= WM8904_AIF_LRCLK_INV
;
1511 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_1
,
1512 WM8904_AIF_BCLK_INV
| WM8904_AIF_LRCLK_INV
|
1513 WM8904_AIF_FMT_MASK
| WM8904_BCLK_DIR
, aif1
);
1514 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_3
,
1515 WM8904_LRCLK_DIR
, aif3
);
1521 static int wm8904_set_tdm_slot(struct snd_soc_dai
*dai
, unsigned int tx_mask
,
1522 unsigned int rx_mask
, int slots
, int slot_width
)
1524 struct snd_soc_codec
*codec
= dai
->codec
;
1525 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1528 /* Don't need to validate anything if we're turning off TDM */
1532 /* Note that we allow configurations we can't handle ourselves -
1533 * for example, we can generate clocks for slots 2 and up even if
1534 * we can't use those slots ourselves.
1536 aif1
|= WM8904_AIFADC_TDM
| WM8904_AIFDAC_TDM
;
1542 aif1
|= WM8904_AIFADC_TDM_CHAN
;
1553 aif1
|= WM8904_AIFDAC_TDM_CHAN
;
1560 wm8904
->tdm_width
= slot_width
;
1561 wm8904
->tdm_slots
= slots
/ 2;
1563 snd_soc_update_bits(codec
, WM8904_AUDIO_INTERFACE_1
,
1564 WM8904_AIFADC_TDM
| WM8904_AIFADC_TDM_CHAN
|
1565 WM8904_AIFDAC_TDM
| WM8904_AIFDAC_TDM_CHAN
, aif1
);
1573 u16 fll_clk_ref_div
;
1578 /* The size in bits of the FLL divide multiplied by 10
1579 * to allow rounding later */
1580 #define FIXED_FLL_SIZE ((1 << 16) * 10)
1588 { 0, 64000, 4, 16 },
1589 { 64000, 128000, 3, 8 },
1590 { 128000, 256000, 2, 4 },
1591 { 256000, 1000000, 1, 2 },
1592 { 1000000, 13500000, 0, 1 },
1595 static int fll_factors(struct _fll_div
*fll_div
, unsigned int Fref
,
1599 unsigned int K
, Ndiv
, Nmod
, target
;
1603 /* Fref must be <=13.5MHz */
1605 fll_div
->fll_clk_ref_div
= 0;
1606 while ((Fref
/ div
) > 13500000) {
1608 fll_div
->fll_clk_ref_div
++;
1611 pr_err("Can't scale %dMHz input down to <=13.5MHz\n",
1617 pr_debug("Fref=%u Fout=%u\n", Fref
, Fout
);
1619 /* Apply the division for our remaining calculations */
1622 /* Fvco should be 90-100MHz; don't check the upper bound */
1624 while (Fout
* div
< 90000000) {
1627 pr_err("Unable to find FLL_OUTDIV for Fout=%uHz\n",
1632 target
= Fout
* div
;
1633 fll_div
->fll_outdiv
= div
- 1;
1635 pr_debug("Fvco=%dHz\n", target
);
1637 /* Find an appropriate FLL_FRATIO and factor it out of the target */
1638 for (i
= 0; i
< ARRAY_SIZE(fll_fratios
); i
++) {
1639 if (fll_fratios
[i
].min
<= Fref
&& Fref
<= fll_fratios
[i
].max
) {
1640 fll_div
->fll_fratio
= fll_fratios
[i
].fll_fratio
;
1641 target
/= fll_fratios
[i
].ratio
;
1645 if (i
== ARRAY_SIZE(fll_fratios
)) {
1646 pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref
);
1650 /* Now, calculate N.K */
1651 Ndiv
= target
/ Fref
;
1654 Nmod
= target
% Fref
;
1655 pr_debug("Nmod=%d\n", Nmod
);
1657 /* Calculate fractional part - scale up so we can round. */
1658 Kpart
= FIXED_FLL_SIZE
* (long long)Nmod
;
1660 do_div(Kpart
, Fref
);
1662 K
= Kpart
& 0xFFFFFFFF;
1667 /* Move down to proper range now rounding is done */
1668 fll_div
->k
= K
/ 10;
1670 pr_debug("N=%x K=%x FLL_FRATIO=%x FLL_OUTDIV=%x FLL_CLK_REF_DIV=%x\n",
1671 fll_div
->n
, fll_div
->k
,
1672 fll_div
->fll_fratio
, fll_div
->fll_outdiv
,
1673 fll_div
->fll_clk_ref_div
);
1678 static int wm8904_set_fll(struct snd_soc_dai
*dai
, int fll_id
, int source
,
1679 unsigned int Fref
, unsigned int Fout
)
1681 struct snd_soc_codec
*codec
= dai
->codec
;
1682 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1683 struct _fll_div fll_div
;
1688 if (source
== wm8904
->fll_src
&& Fref
== wm8904
->fll_fref
&&
1689 Fout
== wm8904
->fll_fout
)
1692 clock2
= snd_soc_read(codec
, WM8904_CLOCK_RATES_2
);
1695 dev_dbg(codec
->dev
, "FLL disabled\n");
1697 wm8904
->fll_fref
= 0;
1698 wm8904
->fll_fout
= 0;
1700 /* Gate SYSCLK to avoid glitches */
1701 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_2
,
1702 WM8904_CLK_SYS_ENA
, 0);
1704 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
1705 WM8904_FLL_OSC_ENA
| WM8904_FLL_ENA
, 0);
1710 /* Validate the FLL ID */
1712 case WM8904_FLL_MCLK
:
1713 case WM8904_FLL_LRCLK
:
1714 case WM8904_FLL_BCLK
:
1715 ret
= fll_factors(&fll_div
, Fref
, Fout
);
1720 case WM8904_FLL_FREE_RUNNING
:
1721 dev_dbg(codec
->dev
, "Using free running FLL\n");
1722 /* Force 12MHz and output/4 for now */
1726 memset(&fll_div
, 0, sizeof(fll_div
));
1727 fll_div
.fll_outdiv
= 3;
1731 dev_err(codec
->dev
, "Unknown FLL ID %d\n", fll_id
);
1735 /* Save current state then disable the FLL and SYSCLK to avoid
1737 fll1
= snd_soc_read(codec
, WM8904_FLL_CONTROL_1
);
1738 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_2
,
1739 WM8904_CLK_SYS_ENA
, 0);
1740 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
1741 WM8904_FLL_OSC_ENA
| WM8904_FLL_ENA
, 0);
1743 /* Unlock forced oscilator control to switch it on/off */
1744 snd_soc_update_bits(codec
, WM8904_CONTROL_INTERFACE_TEST_1
,
1745 WM8904_USER_KEY
, WM8904_USER_KEY
);
1747 if (fll_id
== WM8904_FLL_FREE_RUNNING
) {
1748 val
= WM8904_FLL_FRC_NCO
;
1753 snd_soc_update_bits(codec
, WM8904_FLL_NCO_TEST_1
, WM8904_FLL_FRC_NCO
,
1755 snd_soc_update_bits(codec
, WM8904_CONTROL_INTERFACE_TEST_1
,
1756 WM8904_USER_KEY
, 0);
1759 case WM8904_FLL_MCLK
:
1760 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_5
,
1761 WM8904_FLL_CLK_REF_SRC_MASK
, 0);
1764 case WM8904_FLL_LRCLK
:
1765 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_5
,
1766 WM8904_FLL_CLK_REF_SRC_MASK
, 1);
1769 case WM8904_FLL_BCLK
:
1770 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_5
,
1771 WM8904_FLL_CLK_REF_SRC_MASK
, 2);
1776 val
= WM8904_FLL_FRACN_ENA
;
1779 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
1780 WM8904_FLL_FRACN_ENA
, val
);
1782 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_2
,
1783 WM8904_FLL_OUTDIV_MASK
| WM8904_FLL_FRATIO_MASK
,
1784 (fll_div
.fll_outdiv
<< WM8904_FLL_OUTDIV_SHIFT
) |
1785 (fll_div
.fll_fratio
<< WM8904_FLL_FRATIO_SHIFT
));
1787 snd_soc_write(codec
, WM8904_FLL_CONTROL_3
, fll_div
.k
);
1789 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_4
, WM8904_FLL_N_MASK
,
1790 fll_div
.n
<< WM8904_FLL_N_SHIFT
);
1792 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_5
,
1793 WM8904_FLL_CLK_REF_DIV_MASK
,
1794 fll_div
.fll_clk_ref_div
1795 << WM8904_FLL_CLK_REF_DIV_SHIFT
);
1797 dev_dbg(codec
->dev
, "FLL configured for %dHz->%dHz\n", Fref
, Fout
);
1799 wm8904
->fll_fref
= Fref
;
1800 wm8904
->fll_fout
= Fout
;
1801 wm8904
->fll_src
= source
;
1803 /* Enable the FLL if it was previously active */
1804 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
1805 WM8904_FLL_OSC_ENA
, fll1
);
1806 snd_soc_update_bits(codec
, WM8904_FLL_CONTROL_1
,
1807 WM8904_FLL_ENA
, fll1
);
1810 /* Reenable SYSCLK if it was previously active */
1811 snd_soc_update_bits(codec
, WM8904_CLOCK_RATES_2
,
1812 WM8904_CLK_SYS_ENA
, clock2
);
1817 static int wm8904_digital_mute(struct snd_soc_dai
*codec_dai
, int mute
)
1819 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1823 val
= WM8904_DAC_MUTE
;
1827 snd_soc_update_bits(codec
, WM8904_DAC_DIGITAL_1
, WM8904_DAC_MUTE
, val
);
1832 static int wm8904_set_bias_level(struct snd_soc_codec
*codec
,
1833 enum snd_soc_bias_level level
)
1835 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1839 case SND_SOC_BIAS_ON
:
1840 ret
= clk_prepare_enable(wm8904
->mclk
);
1845 case SND_SOC_BIAS_PREPARE
:
1846 /* VMID resistance 2*50k */
1847 snd_soc_update_bits(codec
, WM8904_VMID_CONTROL_0
,
1848 WM8904_VMID_RES_MASK
,
1849 0x1 << WM8904_VMID_RES_SHIFT
);
1851 /* Normal bias current */
1852 snd_soc_update_bits(codec
, WM8904_BIAS_CONTROL_0
,
1853 WM8904_ISEL_MASK
, 2 << WM8904_ISEL_SHIFT
);
1856 case SND_SOC_BIAS_STANDBY
:
1857 if (snd_soc_codec_get_bias_level(codec
) == SND_SOC_BIAS_OFF
) {
1858 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8904
->supplies
),
1862 "Failed to enable supplies: %d\n",
1867 regcache_cache_only(wm8904
->regmap
, false);
1868 regcache_sync(wm8904
->regmap
);
1871 snd_soc_update_bits(codec
, WM8904_BIAS_CONTROL_0
,
1872 WM8904_BIAS_ENA
, WM8904_BIAS_ENA
);
1874 /* Enable VMID, VMID buffering, 2*5k resistance */
1875 snd_soc_update_bits(codec
, WM8904_VMID_CONTROL_0
,
1877 WM8904_VMID_RES_MASK
,
1879 0x3 << WM8904_VMID_RES_SHIFT
);
1885 /* Maintain VMID with 2*250k */
1886 snd_soc_update_bits(codec
, WM8904_VMID_CONTROL_0
,
1887 WM8904_VMID_RES_MASK
,
1888 0x2 << WM8904_VMID_RES_SHIFT
);
1890 /* Bias current *0.5 */
1891 snd_soc_update_bits(codec
, WM8904_BIAS_CONTROL_0
,
1892 WM8904_ISEL_MASK
, 0);
1895 case SND_SOC_BIAS_OFF
:
1897 snd_soc_update_bits(codec
, WM8904_VMID_CONTROL_0
,
1898 WM8904_VMID_RES_MASK
| WM8904_VMID_ENA
, 0);
1900 /* Stop bias generation */
1901 snd_soc_update_bits(codec
, WM8904_BIAS_CONTROL_0
,
1902 WM8904_BIAS_ENA
, 0);
1904 regcache_cache_only(wm8904
->regmap
, true);
1905 regcache_mark_dirty(wm8904
->regmap
);
1907 regulator_bulk_disable(ARRAY_SIZE(wm8904
->supplies
),
1909 clk_disable_unprepare(wm8904
->mclk
);
1915 #define WM8904_RATES SNDRV_PCM_RATE_8000_96000
1917 #define WM8904_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
1918 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
1920 static const struct snd_soc_dai_ops wm8904_dai_ops
= {
1921 .set_sysclk
= wm8904_set_sysclk
,
1922 .set_fmt
= wm8904_set_fmt
,
1923 .set_tdm_slot
= wm8904_set_tdm_slot
,
1924 .set_pll
= wm8904_set_fll
,
1925 .hw_params
= wm8904_hw_params
,
1926 .digital_mute
= wm8904_digital_mute
,
1929 static struct snd_soc_dai_driver wm8904_dai
= {
1930 .name
= "wm8904-hifi",
1932 .stream_name
= "Playback",
1935 .rates
= WM8904_RATES
,
1936 .formats
= WM8904_FORMATS
,
1939 .stream_name
= "Capture",
1942 .rates
= WM8904_RATES
,
1943 .formats
= WM8904_FORMATS
,
1945 .ops
= &wm8904_dai_ops
,
1946 .symmetric_rates
= 1,
1949 static void wm8904_handle_retune_mobile_pdata(struct snd_soc_codec
*codec
)
1951 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
1952 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
1953 struct snd_kcontrol_new control
=
1954 SOC_ENUM_EXT("EQ Mode",
1955 wm8904
->retune_mobile_enum
,
1956 wm8904_get_retune_mobile_enum
,
1957 wm8904_put_retune_mobile_enum
);
1961 /* We need an array of texts for the enum API but the number
1962 * of texts is likely to be less than the number of
1963 * configurations due to the sample rate dependency of the
1964 * configurations. */
1965 wm8904
->num_retune_mobile_texts
= 0;
1966 wm8904
->retune_mobile_texts
= NULL
;
1967 for (i
= 0; i
< pdata
->num_retune_mobile_cfgs
; i
++) {
1968 for (j
= 0; j
< wm8904
->num_retune_mobile_texts
; j
++) {
1969 if (strcmp(pdata
->retune_mobile_cfgs
[i
].name
,
1970 wm8904
->retune_mobile_texts
[j
]) == 0)
1974 if (j
!= wm8904
->num_retune_mobile_texts
)
1977 /* Expand the array... */
1978 t
= krealloc(wm8904
->retune_mobile_texts
,
1980 (wm8904
->num_retune_mobile_texts
+ 1),
1985 /* ...store the new entry... */
1986 t
[wm8904
->num_retune_mobile_texts
] =
1987 pdata
->retune_mobile_cfgs
[i
].name
;
1989 /* ...and remember the new version. */
1990 wm8904
->num_retune_mobile_texts
++;
1991 wm8904
->retune_mobile_texts
= t
;
1994 dev_dbg(codec
->dev
, "Allocated %d unique ReTune Mobile names\n",
1995 wm8904
->num_retune_mobile_texts
);
1997 wm8904
->retune_mobile_enum
.items
= wm8904
->num_retune_mobile_texts
;
1998 wm8904
->retune_mobile_enum
.texts
= wm8904
->retune_mobile_texts
;
2000 ret
= snd_soc_add_codec_controls(codec
, &control
, 1);
2003 "Failed to add ReTune Mobile control: %d\n", ret
);
2006 static void wm8904_handle_pdata(struct snd_soc_codec
*codec
)
2008 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
2009 struct wm8904_pdata
*pdata
= wm8904
->pdata
;
2013 snd_soc_add_codec_controls(codec
, wm8904_eq_controls
,
2014 ARRAY_SIZE(wm8904_eq_controls
));
2018 dev_dbg(codec
->dev
, "%d DRC configurations\n", pdata
->num_drc_cfgs
);
2020 if (pdata
->num_drc_cfgs
) {
2021 struct snd_kcontrol_new control
=
2022 SOC_ENUM_EXT("DRC Mode", wm8904
->drc_enum
,
2023 wm8904_get_drc_enum
, wm8904_put_drc_enum
);
2025 /* We need an array of texts for the enum API */
2026 wm8904
->drc_texts
= kmalloc(sizeof(char *)
2027 * pdata
->num_drc_cfgs
, GFP_KERNEL
);
2028 if (!wm8904
->drc_texts
)
2031 for (i
= 0; i
< pdata
->num_drc_cfgs
; i
++)
2032 wm8904
->drc_texts
[i
] = pdata
->drc_cfgs
[i
].name
;
2034 wm8904
->drc_enum
.items
= pdata
->num_drc_cfgs
;
2035 wm8904
->drc_enum
.texts
= wm8904
->drc_texts
;
2037 ret
= snd_soc_add_codec_controls(codec
, &control
, 1);
2040 "Failed to add DRC mode control: %d\n", ret
);
2042 wm8904_set_drc(codec
);
2045 dev_dbg(codec
->dev
, "%d ReTune Mobile configurations\n",
2046 pdata
->num_retune_mobile_cfgs
);
2048 if (pdata
->num_retune_mobile_cfgs
)
2049 wm8904_handle_retune_mobile_pdata(codec
);
2051 snd_soc_add_codec_controls(codec
, wm8904_eq_controls
,
2052 ARRAY_SIZE(wm8904_eq_controls
));
2056 static int wm8904_probe(struct snd_soc_codec
*codec
)
2058 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
2060 switch (wm8904
->devtype
) {
2064 memset(&wm8904_dai
.capture
, 0, sizeof(wm8904_dai
.capture
));
2067 dev_err(codec
->dev
, "Unknown device type %d\n",
2072 wm8904_handle_pdata(codec
);
2074 wm8904_add_widgets(codec
);
2079 static int wm8904_remove(struct snd_soc_codec
*codec
)
2081 struct wm8904_priv
*wm8904
= snd_soc_codec_get_drvdata(codec
);
2083 kfree(wm8904
->retune_mobile_texts
);
2084 kfree(wm8904
->drc_texts
);
2089 static const struct snd_soc_codec_driver soc_codec_dev_wm8904
= {
2090 .probe
= wm8904_probe
,
2091 .remove
= wm8904_remove
,
2092 .set_bias_level
= wm8904_set_bias_level
,
2093 .idle_bias_off
= true,
2096 static const struct regmap_config wm8904_regmap
= {
2100 .max_register
= WM8904_MAX_REGISTER
,
2101 .volatile_reg
= wm8904_volatile_register
,
2102 .readable_reg
= wm8904_readable_register
,
2104 .cache_type
= REGCACHE_RBTREE
,
2105 .reg_defaults
= wm8904_reg_defaults
,
2106 .num_reg_defaults
= ARRAY_SIZE(wm8904_reg_defaults
),
2110 static enum wm8904_type wm8904_data
= WM8904
;
2111 static enum wm8904_type wm8912_data
= WM8912
;
2113 static const struct of_device_id wm8904_of_match
[] = {
2115 .compatible
= "wlf,wm8904",
2116 .data
= &wm8904_data
,
2118 .compatible
= "wlf,wm8912",
2119 .data
= &wm8912_data
,
2124 MODULE_DEVICE_TABLE(of
, wm8904_of_match
);
2127 static int wm8904_i2c_probe(struct i2c_client
*i2c
,
2128 const struct i2c_device_id
*id
)
2130 struct wm8904_priv
*wm8904
;
2134 wm8904
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8904_priv
),
2139 wm8904
->mclk
= devm_clk_get(&i2c
->dev
, "mclk");
2140 if (IS_ERR(wm8904
->mclk
)) {
2141 ret
= PTR_ERR(wm8904
->mclk
);
2142 dev_err(&i2c
->dev
, "Failed to get MCLK\n");
2146 wm8904
->regmap
= devm_regmap_init_i2c(i2c
, &wm8904_regmap
);
2147 if (IS_ERR(wm8904
->regmap
)) {
2148 ret
= PTR_ERR(wm8904
->regmap
);
2149 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
2154 if (i2c
->dev
.of_node
) {
2155 const struct of_device_id
*match
;
2157 match
= of_match_node(wm8904_of_match
, i2c
->dev
.of_node
);
2160 wm8904
->devtype
= *((enum wm8904_type
*)match
->data
);
2162 wm8904
->devtype
= id
->driver_data
;
2165 i2c_set_clientdata(i2c
, wm8904
);
2166 wm8904
->pdata
= i2c
->dev
.platform_data
;
2168 for (i
= 0; i
< ARRAY_SIZE(wm8904
->supplies
); i
++)
2169 wm8904
->supplies
[i
].supply
= wm8904_supply_names
[i
];
2171 ret
= devm_regulator_bulk_get(&i2c
->dev
, ARRAY_SIZE(wm8904
->supplies
),
2174 dev_err(&i2c
->dev
, "Failed to request supplies: %d\n", ret
);
2178 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8904
->supplies
),
2181 dev_err(&i2c
->dev
, "Failed to enable supplies: %d\n", ret
);
2185 ret
= regmap_read(wm8904
->regmap
, WM8904_SW_RESET_AND_ID
, &val
);
2187 dev_err(&i2c
->dev
, "Failed to read ID register: %d\n", ret
);
2190 if (val
!= 0x8904) {
2191 dev_err(&i2c
->dev
, "Device is not a WM8904, ID is %x\n", val
);
2196 ret
= regmap_read(wm8904
->regmap
, WM8904_REVISION
, &val
);
2198 dev_err(&i2c
->dev
, "Failed to read device revision: %d\n",
2202 dev_info(&i2c
->dev
, "revision %c\n", val
+ 'A');
2204 ret
= regmap_write(wm8904
->regmap
, WM8904_SW_RESET_AND_ID
, 0);
2206 dev_err(&i2c
->dev
, "Failed to issue reset: %d\n", ret
);
2210 /* Change some default settings - latch VU and enable ZC */
2211 regmap_update_bits(wm8904
->regmap
, WM8904_ADC_DIGITAL_VOLUME_LEFT
,
2212 WM8904_ADC_VU
, WM8904_ADC_VU
);
2213 regmap_update_bits(wm8904
->regmap
, WM8904_ADC_DIGITAL_VOLUME_RIGHT
,
2214 WM8904_ADC_VU
, WM8904_ADC_VU
);
2215 regmap_update_bits(wm8904
->regmap
, WM8904_DAC_DIGITAL_VOLUME_LEFT
,
2216 WM8904_DAC_VU
, WM8904_DAC_VU
);
2217 regmap_update_bits(wm8904
->regmap
, WM8904_DAC_DIGITAL_VOLUME_RIGHT
,
2218 WM8904_DAC_VU
, WM8904_DAC_VU
);
2219 regmap_update_bits(wm8904
->regmap
, WM8904_ANALOGUE_OUT1_LEFT
,
2220 WM8904_HPOUT_VU
| WM8904_HPOUTLZC
,
2221 WM8904_HPOUT_VU
| WM8904_HPOUTLZC
);
2222 regmap_update_bits(wm8904
->regmap
, WM8904_ANALOGUE_OUT1_RIGHT
,
2223 WM8904_HPOUT_VU
| WM8904_HPOUTRZC
,
2224 WM8904_HPOUT_VU
| WM8904_HPOUTRZC
);
2225 regmap_update_bits(wm8904
->regmap
, WM8904_ANALOGUE_OUT2_LEFT
,
2226 WM8904_LINEOUT_VU
| WM8904_LINEOUTLZC
,
2227 WM8904_LINEOUT_VU
| WM8904_LINEOUTLZC
);
2228 regmap_update_bits(wm8904
->regmap
, WM8904_ANALOGUE_OUT2_RIGHT
,
2229 WM8904_LINEOUT_VU
| WM8904_LINEOUTRZC
,
2230 WM8904_LINEOUT_VU
| WM8904_LINEOUTRZC
);
2231 regmap_update_bits(wm8904
->regmap
, WM8904_CLOCK_RATES_0
,
2234 /* Apply configuration from the platform data. */
2235 if (wm8904
->pdata
) {
2236 for (i
= 0; i
< WM8904_GPIO_REGS
; i
++) {
2237 if (!wm8904
->pdata
->gpio_cfg
[i
])
2240 regmap_update_bits(wm8904
->regmap
,
2241 WM8904_GPIO_CONTROL_1
+ i
,
2243 wm8904
->pdata
->gpio_cfg
[i
]);
2246 /* Zero is the default value for these anyway */
2247 for (i
= 0; i
< WM8904_MIC_REGS
; i
++)
2248 regmap_update_bits(wm8904
->regmap
,
2249 WM8904_MIC_BIAS_CONTROL_0
+ i
,
2251 wm8904
->pdata
->mic_cfg
[i
]);
2254 /* Set Class W by default - this will be managed by the Class
2255 * G widget at runtime where bypass paths are available.
2257 regmap_update_bits(wm8904
->regmap
, WM8904_CLASS_W_0
,
2258 WM8904_CP_DYN_PWR
, WM8904_CP_DYN_PWR
);
2260 /* Use normal bias source */
2261 regmap_update_bits(wm8904
->regmap
, WM8904_BIAS_CONTROL_0
,
2264 /* Can leave the device powered off until we need it */
2265 regcache_cache_only(wm8904
->regmap
, true);
2266 regulator_bulk_disable(ARRAY_SIZE(wm8904
->supplies
), wm8904
->supplies
);
2268 ret
= snd_soc_register_codec(&i2c
->dev
,
2269 &soc_codec_dev_wm8904
, &wm8904_dai
, 1);
2276 regulator_bulk_disable(ARRAY_SIZE(wm8904
->supplies
), wm8904
->supplies
);
2280 static int wm8904_i2c_remove(struct i2c_client
*client
)
2282 snd_soc_unregister_codec(&client
->dev
);
2286 static const struct i2c_device_id wm8904_i2c_id
[] = {
2287 { "wm8904", WM8904
},
2288 { "wm8912", WM8912
},
2289 { "wm8918", WM8904
}, /* Actually a subset, updates to follow */
2292 MODULE_DEVICE_TABLE(i2c
, wm8904_i2c_id
);
2294 static struct i2c_driver wm8904_i2c_driver
= {
2297 .of_match_table
= of_match_ptr(wm8904_of_match
),
2299 .probe
= wm8904_i2c_probe
,
2300 .remove
= wm8904_i2c_remove
,
2301 .id_table
= wm8904_i2c_id
,
2304 module_i2c_driver(wm8904_i2c_driver
);
2306 MODULE_DESCRIPTION("ASoC WM8904 driver");
2307 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
2308 MODULE_LICENSE("GPL");