2 * wm8988.c -- WM8988 ALSA SoC audio driver
4 * Copyright 2009 Wolfson Microelectronics plc
5 * Copyright 2005 Openedhand Ltd.
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 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
19 #include <linux/i2c.h>
20 #include <linux/spi/spi.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
26 #include <sound/tlv.h>
27 #include <sound/soc.h>
28 #include <sound/initval.h>
33 * wm8988 register cache
34 * We can't read the WM8988 register space when we
35 * are using 2 wire for device control, so we cache them instead.
37 static const u16 wm8988_reg
[] = {
38 0x0097, 0x0097, 0x0079, 0x0079, /* 0 */
39 0x0000, 0x0008, 0x0000, 0x000a, /* 4 */
40 0x0000, 0x0000, 0x00ff, 0x00ff, /* 8 */
41 0x000f, 0x000f, 0x0000, 0x0000, /* 12 */
42 0x0000, 0x007b, 0x0000, 0x0032, /* 16 */
43 0x0000, 0x00c3, 0x00c3, 0x00c0, /* 20 */
44 0x0000, 0x0000, 0x0000, 0x0000, /* 24 */
45 0x0000, 0x0000, 0x0000, 0x0000, /* 28 */
46 0x0000, 0x0000, 0x0050, 0x0050, /* 32 */
47 0x0050, 0x0050, 0x0050, 0x0050, /* 36 */
48 0x0079, 0x0079, 0x0079, /* 40 */
51 /* codec private data */
54 enum snd_soc_control_type control_type
;
55 struct snd_pcm_hw_constraint_list
*sysclk_constraints
;
59 #define wm8988_reset(c) snd_soc_write(c, WM8988_RESET, 0)
65 static const char *bass_boost_txt
[] = {"Linear Control", "Adaptive Boost"};
66 static const struct soc_enum bass_boost
=
67 SOC_ENUM_SINGLE(WM8988_BASS
, 7, 2, bass_boost_txt
);
69 static const char *bass_filter_txt
[] = { "130Hz @ 48kHz", "200Hz @ 48kHz" };
70 static const struct soc_enum bass_filter
=
71 SOC_ENUM_SINGLE(WM8988_BASS
, 6, 2, bass_filter_txt
);
73 static const char *treble_txt
[] = {"8kHz", "4kHz"};
74 static const struct soc_enum treble
=
75 SOC_ENUM_SINGLE(WM8988_TREBLE
, 6, 2, treble_txt
);
77 static const char *stereo_3d_lc_txt
[] = {"200Hz", "500Hz"};
78 static const struct soc_enum stereo_3d_lc
=
79 SOC_ENUM_SINGLE(WM8988_3D
, 5, 2, stereo_3d_lc_txt
);
81 static const char *stereo_3d_uc_txt
[] = {"2.2kHz", "1.5kHz"};
82 static const struct soc_enum stereo_3d_uc
=
83 SOC_ENUM_SINGLE(WM8988_3D
, 6, 2, stereo_3d_uc_txt
);
85 static const char *stereo_3d_func_txt
[] = {"Capture", "Playback"};
86 static const struct soc_enum stereo_3d_func
=
87 SOC_ENUM_SINGLE(WM8988_3D
, 7, 2, stereo_3d_func_txt
);
89 static const char *alc_func_txt
[] = {"Off", "Right", "Left", "Stereo"};
90 static const struct soc_enum alc_func
=
91 SOC_ENUM_SINGLE(WM8988_ALC1
, 7, 4, alc_func_txt
);
93 static const char *ng_type_txt
[] = {"Constant PGA Gain",
95 static const struct soc_enum ng_type
=
96 SOC_ENUM_SINGLE(WM8988_NGATE
, 1, 2, ng_type_txt
);
98 static const char *deemph_txt
[] = {"None", "32Khz", "44.1Khz", "48Khz"};
99 static const struct soc_enum deemph
=
100 SOC_ENUM_SINGLE(WM8988_ADCDAC
, 1, 4, deemph_txt
);
102 static const char *adcpol_txt
[] = {"Normal", "L Invert", "R Invert",
104 static const struct soc_enum adcpol
=
105 SOC_ENUM_SINGLE(WM8988_ADCDAC
, 5, 4, adcpol_txt
);
107 static const DECLARE_TLV_DB_SCALE(pga_tlv
, -1725, 75, 0);
108 static const DECLARE_TLV_DB_SCALE(adc_tlv
, -9750, 50, 1);
109 static const DECLARE_TLV_DB_SCALE(dac_tlv
, -12750, 50, 1);
110 static const DECLARE_TLV_DB_SCALE(out_tlv
, -12100, 100, 1);
111 static const DECLARE_TLV_DB_SCALE(bypass_tlv
, -1500, 300, 0);
113 static const struct snd_kcontrol_new wm8988_snd_controls
[] = {
115 SOC_ENUM("Bass Boost", bass_boost
),
116 SOC_ENUM("Bass Filter", bass_filter
),
117 SOC_SINGLE("Bass Volume", WM8988_BASS
, 0, 15, 1),
119 SOC_SINGLE("Treble Volume", WM8988_TREBLE
, 0, 15, 0),
120 SOC_ENUM("Treble Cut-off", treble
),
122 SOC_SINGLE("3D Switch", WM8988_3D
, 0, 1, 0),
123 SOC_SINGLE("3D Volume", WM8988_3D
, 1, 15, 0),
124 SOC_ENUM("3D Lower Cut-off", stereo_3d_lc
),
125 SOC_ENUM("3D Upper Cut-off", stereo_3d_uc
),
126 SOC_ENUM("3D Mode", stereo_3d_func
),
128 SOC_SINGLE("ALC Capture Target Volume", WM8988_ALC1
, 0, 7, 0),
129 SOC_SINGLE("ALC Capture Max Volume", WM8988_ALC1
, 4, 7, 0),
130 SOC_ENUM("ALC Capture Function", alc_func
),
131 SOC_SINGLE("ALC Capture ZC Switch", WM8988_ALC2
, 7, 1, 0),
132 SOC_SINGLE("ALC Capture Hold Time", WM8988_ALC2
, 0, 15, 0),
133 SOC_SINGLE("ALC Capture Decay Time", WM8988_ALC3
, 4, 15, 0),
134 SOC_SINGLE("ALC Capture Attack Time", WM8988_ALC3
, 0, 15, 0),
135 SOC_SINGLE("ALC Capture NG Threshold", WM8988_NGATE
, 3, 31, 0),
136 SOC_ENUM("ALC Capture NG Type", ng_type
),
137 SOC_SINGLE("ALC Capture NG Switch", WM8988_NGATE
, 0, 1, 0),
139 SOC_SINGLE("ZC Timeout Switch", WM8988_ADCTL1
, 0, 1, 0),
141 SOC_DOUBLE_R_TLV("Capture Digital Volume", WM8988_LADC
, WM8988_RADC
,
143 SOC_DOUBLE_R_TLV("Capture Volume", WM8988_LINVOL
, WM8988_RINVOL
,
145 SOC_DOUBLE_R("Capture ZC Switch", WM8988_LINVOL
, WM8988_RINVOL
, 6, 1, 0),
146 SOC_DOUBLE_R("Capture Switch", WM8988_LINVOL
, WM8988_RINVOL
, 7, 1, 1),
148 SOC_ENUM("Playback De-emphasis", deemph
),
150 SOC_ENUM("Capture Polarity", adcpol
),
151 SOC_SINGLE("Playback 6dB Attenuate", WM8988_ADCDAC
, 7, 1, 0),
152 SOC_SINGLE("Capture 6dB Attenuate", WM8988_ADCDAC
, 8, 1, 0),
154 SOC_DOUBLE_R_TLV("PCM Volume", WM8988_LDAC
, WM8988_RDAC
, 0, 255, 0, dac_tlv
),
156 SOC_SINGLE_TLV("Left Mixer Left Bypass Volume", WM8988_LOUTM1
, 4, 7, 1,
158 SOC_SINGLE_TLV("Left Mixer Right Bypass Volume", WM8988_LOUTM2
, 4, 7, 1,
160 SOC_SINGLE_TLV("Right Mixer Left Bypass Volume", WM8988_ROUTM1
, 4, 7, 1,
162 SOC_SINGLE_TLV("Right Mixer Right Bypass Volume", WM8988_ROUTM2
, 4, 7, 1,
165 SOC_DOUBLE_R("Output 1 Playback ZC Switch", WM8988_LOUT1V
,
166 WM8988_ROUT1V
, 7, 1, 0),
167 SOC_DOUBLE_R_TLV("Output 1 Playback Volume", WM8988_LOUT1V
, WM8988_ROUT1V
,
170 SOC_DOUBLE_R("Output 2 Playback ZC Switch", WM8988_LOUT2V
,
171 WM8988_ROUT2V
, 7, 1, 0),
172 SOC_DOUBLE_R_TLV("Output 2 Playback Volume", WM8988_LOUT2V
, WM8988_ROUT2V
,
181 static int wm8988_lrc_control(struct snd_soc_dapm_widget
*w
,
182 struct snd_kcontrol
*kcontrol
, int event
)
184 struct snd_soc_codec
*codec
= w
->codec
;
185 u16 adctl2
= snd_soc_read(codec
, WM8988_ADCTL2
);
187 /* Use the DAC to gate LRC if active, otherwise use ADC */
188 if (snd_soc_read(codec
, WM8988_PWR2
) & 0x180)
193 return snd_soc_write(codec
, WM8988_ADCTL2
, adctl2
);
196 static const char *wm8988_line_texts
[] = {
197 "Line 1", "Line 2", "PGA", "Differential"};
199 static const unsigned int wm8988_line_values
[] = {
202 static const struct soc_enum wm8988_lline_enum
=
203 SOC_VALUE_ENUM_SINGLE(WM8988_LOUTM1
, 0, 7,
204 ARRAY_SIZE(wm8988_line_texts
),
207 static const struct snd_kcontrol_new wm8988_left_line_controls
=
208 SOC_DAPM_VALUE_ENUM("Route", wm8988_lline_enum
);
210 static const struct soc_enum wm8988_rline_enum
=
211 SOC_VALUE_ENUM_SINGLE(WM8988_ROUTM1
, 0, 7,
212 ARRAY_SIZE(wm8988_line_texts
),
215 static const struct snd_kcontrol_new wm8988_right_line_controls
=
216 SOC_DAPM_VALUE_ENUM("Route", wm8988_lline_enum
);
219 static const struct snd_kcontrol_new wm8988_left_mixer_controls
[] = {
220 SOC_DAPM_SINGLE("Playback Switch", WM8988_LOUTM1
, 8, 1, 0),
221 SOC_DAPM_SINGLE("Left Bypass Switch", WM8988_LOUTM1
, 7, 1, 0),
222 SOC_DAPM_SINGLE("Right Playback Switch", WM8988_LOUTM2
, 8, 1, 0),
223 SOC_DAPM_SINGLE("Right Bypass Switch", WM8988_LOUTM2
, 7, 1, 0),
227 static const struct snd_kcontrol_new wm8988_right_mixer_controls
[] = {
228 SOC_DAPM_SINGLE("Left Playback Switch", WM8988_ROUTM1
, 8, 1, 0),
229 SOC_DAPM_SINGLE("Left Bypass Switch", WM8988_ROUTM1
, 7, 1, 0),
230 SOC_DAPM_SINGLE("Playback Switch", WM8988_ROUTM2
, 8, 1, 0),
231 SOC_DAPM_SINGLE("Right Bypass Switch", WM8988_ROUTM2
, 7, 1, 0),
234 static const char *wm8988_pga_sel
[] = {"Line 1", "Line 2", "Differential"};
235 static const unsigned int wm8988_pga_val
[] = { 0, 1, 3 };
238 static const struct soc_enum wm8988_lpga_enum
=
239 SOC_VALUE_ENUM_SINGLE(WM8988_LADCIN
, 6, 3,
240 ARRAY_SIZE(wm8988_pga_sel
),
243 static const struct snd_kcontrol_new wm8988_left_pga_controls
=
244 SOC_DAPM_VALUE_ENUM("Route", wm8988_lpga_enum
);
247 static const struct soc_enum wm8988_rpga_enum
=
248 SOC_VALUE_ENUM_SINGLE(WM8988_RADCIN
, 6, 3,
249 ARRAY_SIZE(wm8988_pga_sel
),
252 static const struct snd_kcontrol_new wm8988_right_pga_controls
=
253 SOC_DAPM_VALUE_ENUM("Route", wm8988_rpga_enum
);
255 /* Differential Mux */
256 static const char *wm8988_diff_sel
[] = {"Line 1", "Line 2"};
257 static const struct soc_enum diffmux
=
258 SOC_ENUM_SINGLE(WM8988_ADCIN
, 8, 2, wm8988_diff_sel
);
259 static const struct snd_kcontrol_new wm8988_diffmux_controls
=
260 SOC_DAPM_ENUM("Route", diffmux
);
263 static const char *wm8988_mono_mux
[] = {"Stereo", "Mono (Left)",
264 "Mono (Right)", "Digital Mono"};
265 static const struct soc_enum monomux
=
266 SOC_ENUM_SINGLE(WM8988_ADCIN
, 6, 4, wm8988_mono_mux
);
267 static const struct snd_kcontrol_new wm8988_monomux_controls
=
268 SOC_DAPM_ENUM("Route", monomux
);
270 static const struct snd_soc_dapm_widget wm8988_dapm_widgets
[] = {
271 SND_SOC_DAPM_MICBIAS("Mic Bias", WM8988_PWR1
, 1, 0),
273 SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM
, 0, 0,
274 &wm8988_diffmux_controls
),
275 SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM
, 0, 0,
276 &wm8988_monomux_controls
),
277 SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM
, 0, 0,
278 &wm8988_monomux_controls
),
280 SND_SOC_DAPM_MUX("Left PGA Mux", WM8988_PWR1
, 5, 0,
281 &wm8988_left_pga_controls
),
282 SND_SOC_DAPM_MUX("Right PGA Mux", WM8988_PWR1
, 4, 0,
283 &wm8988_right_pga_controls
),
285 SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM
, 0, 0,
286 &wm8988_left_line_controls
),
287 SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM
, 0, 0,
288 &wm8988_right_line_controls
),
290 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8988_PWR1
, 2, 0),
291 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8988_PWR1
, 3, 0),
293 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", WM8988_PWR2
, 7, 0),
294 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", WM8988_PWR2
, 8, 0),
296 SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM
, 0, 0,
297 &wm8988_left_mixer_controls
[0],
298 ARRAY_SIZE(wm8988_left_mixer_controls
)),
299 SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM
, 0, 0,
300 &wm8988_right_mixer_controls
[0],
301 ARRAY_SIZE(wm8988_right_mixer_controls
)),
303 SND_SOC_DAPM_PGA("Right Out 2", WM8988_PWR2
, 3, 0, NULL
, 0),
304 SND_SOC_DAPM_PGA("Left Out 2", WM8988_PWR2
, 4, 0, NULL
, 0),
305 SND_SOC_DAPM_PGA("Right Out 1", WM8988_PWR2
, 5, 0, NULL
, 0),
306 SND_SOC_DAPM_PGA("Left Out 1", WM8988_PWR2
, 6, 0, NULL
, 0),
308 SND_SOC_DAPM_POST("LRC control", wm8988_lrc_control
),
310 SND_SOC_DAPM_OUTPUT("LOUT1"),
311 SND_SOC_DAPM_OUTPUT("ROUT1"),
312 SND_SOC_DAPM_OUTPUT("LOUT2"),
313 SND_SOC_DAPM_OUTPUT("ROUT2"),
314 SND_SOC_DAPM_OUTPUT("VREF"),
316 SND_SOC_DAPM_INPUT("LINPUT1"),
317 SND_SOC_DAPM_INPUT("LINPUT2"),
318 SND_SOC_DAPM_INPUT("RINPUT1"),
319 SND_SOC_DAPM_INPUT("RINPUT2"),
322 static const struct snd_soc_dapm_route audio_map
[] = {
324 { "Left Line Mux", "Line 1", "LINPUT1" },
325 { "Left Line Mux", "Line 2", "LINPUT2" },
326 { "Left Line Mux", "PGA", "Left PGA Mux" },
327 { "Left Line Mux", "Differential", "Differential Mux" },
329 { "Right Line Mux", "Line 1", "RINPUT1" },
330 { "Right Line Mux", "Line 2", "RINPUT2" },
331 { "Right Line Mux", "PGA", "Right PGA Mux" },
332 { "Right Line Mux", "Differential", "Differential Mux" },
334 { "Left PGA Mux", "Line 1", "LINPUT1" },
335 { "Left PGA Mux", "Line 2", "LINPUT2" },
336 { "Left PGA Mux", "Differential", "Differential Mux" },
338 { "Right PGA Mux", "Line 1", "RINPUT1" },
339 { "Right PGA Mux", "Line 2", "RINPUT2" },
340 { "Right PGA Mux", "Differential", "Differential Mux" },
342 { "Differential Mux", "Line 1", "LINPUT1" },
343 { "Differential Mux", "Line 1", "RINPUT1" },
344 { "Differential Mux", "Line 2", "LINPUT2" },
345 { "Differential Mux", "Line 2", "RINPUT2" },
347 { "Left ADC Mux", "Stereo", "Left PGA Mux" },
348 { "Left ADC Mux", "Mono (Left)", "Left PGA Mux" },
349 { "Left ADC Mux", "Digital Mono", "Left PGA Mux" },
351 { "Right ADC Mux", "Stereo", "Right PGA Mux" },
352 { "Right ADC Mux", "Mono (Right)", "Right PGA Mux" },
353 { "Right ADC Mux", "Digital Mono", "Right PGA Mux" },
355 { "Left ADC", NULL
, "Left ADC Mux" },
356 { "Right ADC", NULL
, "Right ADC Mux" },
358 { "Left Line Mux", "Line 1", "LINPUT1" },
359 { "Left Line Mux", "Line 2", "LINPUT2" },
360 { "Left Line Mux", "PGA", "Left PGA Mux" },
361 { "Left Line Mux", "Differential", "Differential Mux" },
363 { "Right Line Mux", "Line 1", "RINPUT1" },
364 { "Right Line Mux", "Line 2", "RINPUT2" },
365 { "Right Line Mux", "PGA", "Right PGA Mux" },
366 { "Right Line Mux", "Differential", "Differential Mux" },
368 { "Left Mixer", "Playback Switch", "Left DAC" },
369 { "Left Mixer", "Left Bypass Switch", "Left Line Mux" },
370 { "Left Mixer", "Right Playback Switch", "Right DAC" },
371 { "Left Mixer", "Right Bypass Switch", "Right Line Mux" },
373 { "Right Mixer", "Left Playback Switch", "Left DAC" },
374 { "Right Mixer", "Left Bypass Switch", "Left Line Mux" },
375 { "Right Mixer", "Playback Switch", "Right DAC" },
376 { "Right Mixer", "Right Bypass Switch", "Right Line Mux" },
378 { "Left Out 1", NULL
, "Left Mixer" },
379 { "LOUT1", NULL
, "Left Out 1" },
380 { "Right Out 1", NULL
, "Right Mixer" },
381 { "ROUT1", NULL
, "Right Out 1" },
383 { "Left Out 2", NULL
, "Left Mixer" },
384 { "LOUT2", NULL
, "Left Out 2" },
385 { "Right Out 2", NULL
, "Right Mixer" },
386 { "ROUT2", NULL
, "Right Out 2" },
397 /* codec hifi mclk clock divider coefficients */
398 static const struct _coeff_div coeff_div
[] = {
400 {12288000, 8000, 1536, 0x6, 0x0},
401 {11289600, 8000, 1408, 0x16, 0x0},
402 {18432000, 8000, 2304, 0x7, 0x0},
403 {16934400, 8000, 2112, 0x17, 0x0},
404 {12000000, 8000, 1500, 0x6, 0x1},
407 {11289600, 11025, 1024, 0x18, 0x0},
408 {16934400, 11025, 1536, 0x19, 0x0},
409 {12000000, 11025, 1088, 0x19, 0x1},
412 {12288000, 16000, 768, 0xa, 0x0},
413 {18432000, 16000, 1152, 0xb, 0x0},
414 {12000000, 16000, 750, 0xa, 0x1},
417 {11289600, 22050, 512, 0x1a, 0x0},
418 {16934400, 22050, 768, 0x1b, 0x0},
419 {12000000, 22050, 544, 0x1b, 0x1},
422 {12288000, 32000, 384, 0xc, 0x0},
423 {18432000, 32000, 576, 0xd, 0x0},
424 {12000000, 32000, 375, 0xa, 0x1},
427 {11289600, 44100, 256, 0x10, 0x0},
428 {16934400, 44100, 384, 0x11, 0x0},
429 {12000000, 44100, 272, 0x11, 0x1},
432 {12288000, 48000, 256, 0x0, 0x0},
433 {18432000, 48000, 384, 0x1, 0x0},
434 {12000000, 48000, 250, 0x0, 0x1},
437 {11289600, 88200, 128, 0x1e, 0x0},
438 {16934400, 88200, 192, 0x1f, 0x0},
439 {12000000, 88200, 136, 0x1f, 0x1},
442 {12288000, 96000, 128, 0xe, 0x0},
443 {18432000, 96000, 192, 0xf, 0x0},
444 {12000000, 96000, 125, 0xe, 0x1},
447 static inline int get_coeff(int mclk
, int rate
)
451 for (i
= 0; i
< ARRAY_SIZE(coeff_div
); i
++) {
452 if (coeff_div
[i
].rate
== rate
&& coeff_div
[i
].mclk
== mclk
)
459 /* The set of rates we can generate from the above for each SYSCLK */
461 static unsigned int rates_12288
[] = {
462 8000, 12000, 16000, 24000, 24000, 32000, 48000, 96000,
465 static struct snd_pcm_hw_constraint_list constraints_12288
= {
466 .count
= ARRAY_SIZE(rates_12288
),
470 static unsigned int rates_112896
[] = {
471 8000, 11025, 22050, 44100,
474 static struct snd_pcm_hw_constraint_list constraints_112896
= {
475 .count
= ARRAY_SIZE(rates_112896
),
476 .list
= rates_112896
,
479 static unsigned int rates_12
[] = {
480 8000, 11025, 12000, 16000, 22050, 2400, 32000, 41100, 48000,
484 static struct snd_pcm_hw_constraint_list constraints_12
= {
485 .count
= ARRAY_SIZE(rates_12
),
490 * Note that this should be called from init rather than from hw_params.
492 static int wm8988_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
493 int clk_id
, unsigned int freq
, int dir
)
495 struct snd_soc_codec
*codec
= codec_dai
->codec
;
496 struct wm8988_priv
*wm8988
= snd_soc_codec_get_drvdata(codec
);
503 wm8988
->sysclk_constraints
= &constraints_112896
;
504 wm8988
->sysclk
= freq
;
511 wm8988
->sysclk_constraints
= &constraints_12288
;
512 wm8988
->sysclk
= freq
;
517 wm8988
->sysclk_constraints
= &constraints_12
;
518 wm8988
->sysclk
= freq
;
524 static int wm8988_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
527 struct snd_soc_codec
*codec
= codec_dai
->codec
;
530 /* set master/slave audio interface */
531 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
532 case SND_SOC_DAIFMT_CBM_CFM
:
535 case SND_SOC_DAIFMT_CBS_CFS
:
541 /* interface format */
542 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
543 case SND_SOC_DAIFMT_I2S
:
546 case SND_SOC_DAIFMT_RIGHT_J
:
548 case SND_SOC_DAIFMT_LEFT_J
:
551 case SND_SOC_DAIFMT_DSP_A
:
554 case SND_SOC_DAIFMT_DSP_B
:
561 /* clock inversion */
562 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
563 case SND_SOC_DAIFMT_NB_NF
:
565 case SND_SOC_DAIFMT_IB_IF
:
568 case SND_SOC_DAIFMT_IB_NF
:
571 case SND_SOC_DAIFMT_NB_IF
:
578 snd_soc_write(codec
, WM8988_IFACE
, iface
);
582 static int wm8988_pcm_startup(struct snd_pcm_substream
*substream
,
583 struct snd_soc_dai
*dai
)
585 struct snd_soc_codec
*codec
= dai
->codec
;
586 struct wm8988_priv
*wm8988
= snd_soc_codec_get_drvdata(codec
);
588 /* The set of sample rates that can be supported depends on the
589 * MCLK supplied to the CODEC - enforce this.
591 if (!wm8988
->sysclk
) {
593 "No MCLK configured, call set_sysclk() on init\n");
597 snd_pcm_hw_constraint_list(substream
->runtime
, 0,
598 SNDRV_PCM_HW_PARAM_RATE
,
599 wm8988
->sysclk_constraints
);
604 static int wm8988_pcm_hw_params(struct snd_pcm_substream
*substream
,
605 struct snd_pcm_hw_params
*params
,
606 struct snd_soc_dai
*dai
)
608 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
609 struct snd_soc_codec
*codec
= rtd
->codec
;
610 struct wm8988_priv
*wm8988
= snd_soc_codec_get_drvdata(codec
);
611 u16 iface
= snd_soc_read(codec
, WM8988_IFACE
) & 0x1f3;
612 u16 srate
= snd_soc_read(codec
, WM8988_SRATE
) & 0x180;
615 coeff
= get_coeff(wm8988
->sysclk
, params_rate(params
));
617 coeff
= get_coeff(wm8988
->sysclk
/ 2, params_rate(params
));
622 "Unable to configure sample rate %dHz with %dHz MCLK\n",
623 params_rate(params
), wm8988
->sysclk
);
628 switch (params_format(params
)) {
629 case SNDRV_PCM_FORMAT_S16_LE
:
631 case SNDRV_PCM_FORMAT_S20_3LE
:
634 case SNDRV_PCM_FORMAT_S24_LE
:
637 case SNDRV_PCM_FORMAT_S32_LE
:
642 /* set iface & srate */
643 snd_soc_write(codec
, WM8988_IFACE
, iface
);
645 snd_soc_write(codec
, WM8988_SRATE
, srate
|
646 (coeff_div
[coeff
].sr
<< 1) | coeff_div
[coeff
].usb
);
651 static int wm8988_mute(struct snd_soc_dai
*dai
, int mute
)
653 struct snd_soc_codec
*codec
= dai
->codec
;
654 u16 mute_reg
= snd_soc_read(codec
, WM8988_ADCDAC
) & 0xfff7;
657 snd_soc_write(codec
, WM8988_ADCDAC
, mute_reg
| 0x8);
659 snd_soc_write(codec
, WM8988_ADCDAC
, mute_reg
);
663 static int wm8988_set_bias_level(struct snd_soc_codec
*codec
,
664 enum snd_soc_bias_level level
)
666 u16 pwr_reg
= snd_soc_read(codec
, WM8988_PWR1
) & ~0x1c1;
669 case SND_SOC_BIAS_ON
:
672 case SND_SOC_BIAS_PREPARE
:
673 /* VREF, VMID=2x50k, digital enabled */
674 snd_soc_write(codec
, WM8988_PWR1
, pwr_reg
| 0x00c0);
677 case SND_SOC_BIAS_STANDBY
:
678 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_OFF
) {
679 /* VREF, VMID=2x5k */
680 snd_soc_write(codec
, WM8988_PWR1
, pwr_reg
| 0x1c1);
686 /* VREF, VMID=2*500k, digital stopped */
687 snd_soc_write(codec
, WM8988_PWR1
, pwr_reg
| 0x0141);
690 case SND_SOC_BIAS_OFF
:
691 snd_soc_write(codec
, WM8988_PWR1
, 0x0000);
694 codec
->dapm
.bias_level
= level
;
698 #define WM8988_RATES SNDRV_PCM_RATE_8000_96000
700 #define WM8988_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
701 SNDRV_PCM_FMTBIT_S24_LE)
703 static struct snd_soc_dai_ops wm8988_ops
= {
704 .startup
= wm8988_pcm_startup
,
705 .hw_params
= wm8988_pcm_hw_params
,
706 .set_fmt
= wm8988_set_dai_fmt
,
707 .set_sysclk
= wm8988_set_dai_sysclk
,
708 .digital_mute
= wm8988_mute
,
711 static struct snd_soc_dai_driver wm8988_dai
= {
712 .name
= "wm8988-hifi",
714 .stream_name
= "Playback",
717 .rates
= WM8988_RATES
,
718 .formats
= WM8988_FORMATS
,
721 .stream_name
= "Capture",
724 .rates
= WM8988_RATES
,
725 .formats
= WM8988_FORMATS
,
728 .symmetric_rates
= 1,
731 static int wm8988_suspend(struct snd_soc_codec
*codec
, pm_message_t state
)
733 wm8988_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
737 static int wm8988_resume(struct snd_soc_codec
*codec
)
741 u16
*cache
= codec
->reg_cache
;
743 /* Sync reg_cache with the hardware */
744 for (i
= 0; i
< WM8988_NUM_REG
; i
++) {
745 if (i
== WM8988_RESET
)
747 data
[0] = (i
<< 1) | ((cache
[i
] >> 8) & 0x0001);
748 data
[1] = cache
[i
] & 0x00ff;
749 codec
->hw_write(codec
->control_data
, data
, 2);
752 wm8988_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
757 static int wm8988_probe(struct snd_soc_codec
*codec
)
759 struct wm8988_priv
*wm8988
= snd_soc_codec_get_drvdata(codec
);
760 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
764 ret
= snd_soc_codec_set_cache_io(codec
, 7, 9, wm8988
->control_type
);
766 dev_err(codec
->dev
, "Failed to set cache I/O: %d\n", ret
);
770 ret
= wm8988_reset(codec
);
772 dev_err(codec
->dev
, "Failed to issue reset\n");
776 /* set the update bits (we always update left then right) */
777 reg
= snd_soc_read(codec
, WM8988_RADC
);
778 snd_soc_write(codec
, WM8988_RADC
, reg
| 0x100);
779 reg
= snd_soc_read(codec
, WM8988_RDAC
);
780 snd_soc_write(codec
, WM8988_RDAC
, reg
| 0x0100);
781 reg
= snd_soc_read(codec
, WM8988_ROUT1V
);
782 snd_soc_write(codec
, WM8988_ROUT1V
, reg
| 0x0100);
783 reg
= snd_soc_read(codec
, WM8988_ROUT2V
);
784 snd_soc_write(codec
, WM8988_ROUT2V
, reg
| 0x0100);
785 reg
= snd_soc_read(codec
, WM8988_RINVOL
);
786 snd_soc_write(codec
, WM8988_RINVOL
, reg
| 0x0100);
788 wm8988_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
790 snd_soc_add_controls(codec
, wm8988_snd_controls
,
791 ARRAY_SIZE(wm8988_snd_controls
));
792 snd_soc_dapm_new_controls(dapm
, wm8988_dapm_widgets
,
793 ARRAY_SIZE(wm8988_dapm_widgets
));
794 snd_soc_dapm_add_routes(dapm
, audio_map
, ARRAY_SIZE(audio_map
));
799 static int wm8988_remove(struct snd_soc_codec
*codec
)
801 wm8988_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
805 static struct snd_soc_codec_driver soc_codec_dev_wm8988
= {
806 .probe
= wm8988_probe
,
807 .remove
= wm8988_remove
,
808 .suspend
= wm8988_suspend
,
809 .resume
= wm8988_resume
,
810 .set_bias_level
= wm8988_set_bias_level
,
811 .reg_cache_size
= ARRAY_SIZE(wm8988_reg
),
812 .reg_word_size
= sizeof(u16
),
813 .reg_cache_default
= wm8988_reg
,
816 #if defined(CONFIG_SPI_MASTER)
817 static int __devinit
wm8988_spi_probe(struct spi_device
*spi
)
819 struct wm8988_priv
*wm8988
;
822 wm8988
= kzalloc(sizeof(struct wm8988_priv
), GFP_KERNEL
);
826 wm8988
->control_type
= SND_SOC_SPI
;
827 spi_set_drvdata(spi
, wm8988
);
829 ret
= snd_soc_register_codec(&spi
->dev
,
830 &soc_codec_dev_wm8988
, &wm8988_dai
, 1);
836 static int __devexit
wm8988_spi_remove(struct spi_device
*spi
)
838 snd_soc_unregister_codec(&spi
->dev
);
839 kfree(spi_get_drvdata(spi
));
843 static struct spi_driver wm8988_spi_driver
= {
845 .name
= "wm8988-codec",
846 .owner
= THIS_MODULE
,
848 .probe
= wm8988_spi_probe
,
849 .remove
= __devexit_p(wm8988_spi_remove
),
851 #endif /* CONFIG_SPI_MASTER */
853 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
854 static __devinit
int wm8988_i2c_probe(struct i2c_client
*i2c
,
855 const struct i2c_device_id
*id
)
857 struct wm8988_priv
*wm8988
;
860 wm8988
= kzalloc(sizeof(struct wm8988_priv
), GFP_KERNEL
);
864 i2c_set_clientdata(i2c
, wm8988
);
865 wm8988
->control_type
= SND_SOC_I2C
;
867 ret
= snd_soc_register_codec(&i2c
->dev
,
868 &soc_codec_dev_wm8988
, &wm8988_dai
, 1);
874 static __devexit
int wm8988_i2c_remove(struct i2c_client
*client
)
876 snd_soc_unregister_codec(&client
->dev
);
877 kfree(i2c_get_clientdata(client
));
881 static const struct i2c_device_id wm8988_i2c_id
[] = {
885 MODULE_DEVICE_TABLE(i2c
, wm8988_i2c_id
);
887 static struct i2c_driver wm8988_i2c_driver
= {
889 .name
= "wm8988-codec",
890 .owner
= THIS_MODULE
,
892 .probe
= wm8988_i2c_probe
,
893 .remove
= __devexit_p(wm8988_i2c_remove
),
894 .id_table
= wm8988_i2c_id
,
898 static int __init
wm8988_modinit(void)
901 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
902 ret
= i2c_add_driver(&wm8988_i2c_driver
);
904 printk(KERN_ERR
"Failed to register WM8988 I2C driver: %d\n",
908 #if defined(CONFIG_SPI_MASTER)
909 ret
= spi_register_driver(&wm8988_spi_driver
);
911 printk(KERN_ERR
"Failed to register WM8988 SPI driver: %d\n",
917 module_init(wm8988_modinit
);
919 static void __exit
wm8988_exit(void)
921 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
922 i2c_del_driver(&wm8988_i2c_driver
);
924 #if defined(CONFIG_SPI_MASTER)
925 spi_unregister_driver(&wm8988_spi_driver
);
928 module_exit(wm8988_exit
);
931 MODULE_DESCRIPTION("ASoC WM8988 driver");
932 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
933 MODULE_LICENSE("GPL");