1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm8988.c -- WM8988 ALSA SoC audio driver
5 * Copyright 2009 Wolfson Microelectronics plc
6 * Copyright 2005 Openedhand Ltd.
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/init.h>
14 #include <linux/delay.h>
16 #include <linux/i2c.h>
17 #include <linux/spi/spi.h>
18 #include <linux/slab.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/pcm_params.h>
22 #include <sound/tlv.h>
23 #include <sound/soc.h>
24 #include <sound/initval.h>
29 * wm8988 register cache
30 * We can't read the WM8988 register space when we
31 * are using 2 wire for device control, so we cache them instead.
33 static const struct reg_default wm8988_reg_defaults[] = {
69 static bool wm8988_writeable(struct device *dev, unsigned int reg)
112 /* codec private data */
114 struct regmap *regmap;
116 const struct snd_pcm_hw_constraint_list *sysclk_constraints;
119 #define wm8988_reset(c) snd_soc_component_write(c, WM8988_RESET, 0)
125 static const char *bass_boost_txt[] = {"Linear Control", "Adaptive Boost"};
126 static SOC_ENUM_SINGLE_DECL(bass_boost,
127 WM8988_BASS, 7, bass_boost_txt);
129 static const char *bass_filter_txt[] = { "130Hz @ 48kHz", "200Hz @ 48kHz" };
130 static SOC_ENUM_SINGLE_DECL(bass_filter,
131 WM8988_BASS, 6, bass_filter_txt);
133 static const char *treble_txt[] = {"8kHz", "4kHz"};
134 static SOC_ENUM_SINGLE_DECL(treble,
135 WM8988_TREBLE, 6, treble_txt);
137 static const char *stereo_3d_lc_txt[] = {"200Hz", "500Hz"};
138 static SOC_ENUM_SINGLE_DECL(stereo_3d_lc,
139 WM8988_3D, 5, stereo_3d_lc_txt);
141 static const char *stereo_3d_uc_txt[] = {"2.2kHz", "1.5kHz"};
142 static SOC_ENUM_SINGLE_DECL(stereo_3d_uc,
143 WM8988_3D, 6, stereo_3d_uc_txt);
145 static const char *stereo_3d_func_txt[] = {"Capture", "Playback"};
146 static SOC_ENUM_SINGLE_DECL(stereo_3d_func,
147 WM8988_3D, 7, stereo_3d_func_txt);
149 static const char *alc_func_txt[] = {"Off", "Right", "Left", "Stereo"};
150 static SOC_ENUM_SINGLE_DECL(alc_func,
151 WM8988_ALC1, 7, alc_func_txt);
153 static const char *ng_type_txt[] = {"Constant PGA Gain",
155 static SOC_ENUM_SINGLE_DECL(ng_type,
156 WM8988_NGATE, 1, ng_type_txt);
158 static const char *deemph_txt[] = {"None", "32Khz", "44.1Khz", "48Khz"};
159 static SOC_ENUM_SINGLE_DECL(deemph,
160 WM8988_ADCDAC, 1, deemph_txt);
162 static const char *adcpol_txt[] = {"Normal", "L Invert", "R Invert",
164 static SOC_ENUM_SINGLE_DECL(adcpol,
165 WM8988_ADCDAC, 5, adcpol_txt);
167 static const DECLARE_TLV_DB_SCALE(pga_tlv, -1725, 75, 0);
168 static const DECLARE_TLV_DB_SCALE(adc_tlv, -9750, 50, 1);
169 static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1);
170 static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
171 static const DECLARE_TLV_DB_SCALE(bypass_tlv, -1500, 300, 0);
173 static const struct snd_kcontrol_new wm8988_snd_controls[] = {
175 SOC_ENUM("Bass Boost", bass_boost),
176 SOC_ENUM("Bass Filter", bass_filter),
177 SOC_SINGLE("Bass Volume", WM8988_BASS, 0, 15, 1),
179 SOC_SINGLE("Treble Volume", WM8988_TREBLE, 0, 15, 0),
180 SOC_ENUM("Treble Cut-off", treble),
182 SOC_SINGLE("3D Switch", WM8988_3D, 0, 1, 0),
183 SOC_SINGLE("3D Volume", WM8988_3D, 1, 15, 0),
184 SOC_ENUM("3D Lower Cut-off", stereo_3d_lc),
185 SOC_ENUM("3D Upper Cut-off", stereo_3d_uc),
186 SOC_ENUM("3D Mode", stereo_3d_func),
188 SOC_SINGLE("ALC Capture Target Volume", WM8988_ALC1, 0, 7, 0),
189 SOC_SINGLE("ALC Capture Max Volume", WM8988_ALC1, 4, 7, 0),
190 SOC_ENUM("ALC Capture Function", alc_func),
191 SOC_SINGLE("ALC Capture ZC Switch", WM8988_ALC2, 7, 1, 0),
192 SOC_SINGLE("ALC Capture Hold Time", WM8988_ALC2, 0, 15, 0),
193 SOC_SINGLE("ALC Capture Decay Time", WM8988_ALC3, 4, 15, 0),
194 SOC_SINGLE("ALC Capture Attack Time", WM8988_ALC3, 0, 15, 0),
195 SOC_SINGLE("ALC Capture NG Threshold", WM8988_NGATE, 3, 31, 0),
196 SOC_ENUM("ALC Capture NG Type", ng_type),
197 SOC_SINGLE("ALC Capture NG Switch", WM8988_NGATE, 0, 1, 0),
199 SOC_SINGLE("ZC Timeout Switch", WM8988_ADCTL1, 0, 1, 0),
201 SOC_DOUBLE_R_TLV("Capture Digital Volume", WM8988_LADC, WM8988_RADC,
203 SOC_DOUBLE_R_TLV("Capture Volume", WM8988_LINVOL, WM8988_RINVOL,
205 SOC_DOUBLE_R("Capture ZC Switch", WM8988_LINVOL, WM8988_RINVOL, 6, 1, 0),
206 SOC_DOUBLE_R("Capture Switch", WM8988_LINVOL, WM8988_RINVOL, 7, 1, 1),
208 SOC_ENUM("Playback De-emphasis", deemph),
210 SOC_ENUM("Capture Polarity", adcpol),
211 SOC_SINGLE("Playback 6dB Attenuate", WM8988_ADCDAC, 7, 1, 0),
212 SOC_SINGLE("Capture 6dB Attenuate", WM8988_ADCDAC, 8, 1, 0),
214 SOC_DOUBLE_R_TLV("PCM Volume", WM8988_LDAC, WM8988_RDAC, 0, 255, 0, dac_tlv),
216 SOC_SINGLE_TLV("Left Mixer Left Bypass Volume", WM8988_LOUTM1, 4, 7, 1,
218 SOC_SINGLE_TLV("Left Mixer Right Bypass Volume", WM8988_LOUTM2, 4, 7, 1,
220 SOC_SINGLE_TLV("Right Mixer Left Bypass Volume", WM8988_ROUTM1, 4, 7, 1,
222 SOC_SINGLE_TLV("Right Mixer Right Bypass Volume", WM8988_ROUTM2, 4, 7, 1,
225 SOC_DOUBLE_R("Output 1 Playback ZC Switch", WM8988_LOUT1V,
226 WM8988_ROUT1V, 7, 1, 0),
227 SOC_DOUBLE_R_TLV("Output 1 Playback Volume", WM8988_LOUT1V, WM8988_ROUT1V,
230 SOC_DOUBLE_R("Output 2 Playback ZC Switch", WM8988_LOUT2V,
231 WM8988_ROUT2V, 7, 1, 0),
232 SOC_DOUBLE_R_TLV("Output 2 Playback Volume", WM8988_LOUT2V, WM8988_ROUT2V,
241 static int wm8988_lrc_control(struct snd_soc_dapm_widget *w,
242 struct snd_kcontrol *kcontrol, int event)
244 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
245 u16 adctl2 = snd_soc_component_read32(component, WM8988_ADCTL2);
247 /* Use the DAC to gate LRC if active, otherwise use ADC */
248 if (snd_soc_component_read32(component, WM8988_PWR2) & 0x180)
253 return snd_soc_component_write(component, WM8988_ADCTL2, adctl2);
256 static const char *wm8988_line_texts[] = {
257 "Line 1", "Line 2", "PGA", "Differential"};
259 static const unsigned int wm8988_line_values[] = {
262 static const struct soc_enum wm8988_lline_enum =
263 SOC_VALUE_ENUM_SINGLE(WM8988_LOUTM1, 0, 7,
264 ARRAY_SIZE(wm8988_line_texts),
267 static const struct snd_kcontrol_new wm8988_left_line_controls =
268 SOC_DAPM_ENUM("Route", wm8988_lline_enum);
270 static const struct soc_enum wm8988_rline_enum =
271 SOC_VALUE_ENUM_SINGLE(WM8988_ROUTM1, 0, 7,
272 ARRAY_SIZE(wm8988_line_texts),
275 static const struct snd_kcontrol_new wm8988_right_line_controls =
276 SOC_DAPM_ENUM("Route", wm8988_lline_enum);
279 static const struct snd_kcontrol_new wm8988_left_mixer_controls[] = {
280 SOC_DAPM_SINGLE("Playback Switch", WM8988_LOUTM1, 8, 1, 0),
281 SOC_DAPM_SINGLE("Left Bypass Switch", WM8988_LOUTM1, 7, 1, 0),
282 SOC_DAPM_SINGLE("Right Playback Switch", WM8988_LOUTM2, 8, 1, 0),
283 SOC_DAPM_SINGLE("Right Bypass Switch", WM8988_LOUTM2, 7, 1, 0),
287 static const struct snd_kcontrol_new wm8988_right_mixer_controls[] = {
288 SOC_DAPM_SINGLE("Left Playback Switch", WM8988_ROUTM1, 8, 1, 0),
289 SOC_DAPM_SINGLE("Left Bypass Switch", WM8988_ROUTM1, 7, 1, 0),
290 SOC_DAPM_SINGLE("Playback Switch", WM8988_ROUTM2, 8, 1, 0),
291 SOC_DAPM_SINGLE("Right Bypass Switch", WM8988_ROUTM2, 7, 1, 0),
294 static const char *wm8988_pga_sel[] = {"Line 1", "Line 2", "Differential"};
295 static const unsigned int wm8988_pga_val[] = { 0, 1, 3 };
298 static const struct soc_enum wm8988_lpga_enum =
299 SOC_VALUE_ENUM_SINGLE(WM8988_LADCIN, 6, 3,
300 ARRAY_SIZE(wm8988_pga_sel),
303 static const struct snd_kcontrol_new wm8988_left_pga_controls =
304 SOC_DAPM_ENUM("Route", wm8988_lpga_enum);
307 static const struct soc_enum wm8988_rpga_enum =
308 SOC_VALUE_ENUM_SINGLE(WM8988_RADCIN, 6, 3,
309 ARRAY_SIZE(wm8988_pga_sel),
312 static const struct snd_kcontrol_new wm8988_right_pga_controls =
313 SOC_DAPM_ENUM("Route", wm8988_rpga_enum);
315 /* Differential Mux */
316 static const char *wm8988_diff_sel[] = {"Line 1", "Line 2"};
317 static SOC_ENUM_SINGLE_DECL(diffmux,
318 WM8988_ADCIN, 8, wm8988_diff_sel);
319 static const struct snd_kcontrol_new wm8988_diffmux_controls =
320 SOC_DAPM_ENUM("Route", diffmux);
323 static const char *wm8988_mono_mux[] = {"Stereo", "Mono (Left)",
324 "Mono (Right)", "Digital Mono"};
325 static SOC_ENUM_SINGLE_DECL(monomux,
326 WM8988_ADCIN, 6, wm8988_mono_mux);
327 static const struct snd_kcontrol_new wm8988_monomux_controls =
328 SOC_DAPM_ENUM("Route", monomux);
330 static const struct snd_soc_dapm_widget wm8988_dapm_widgets[] = {
331 SND_SOC_DAPM_SUPPLY("Mic Bias", WM8988_PWR1, 1, 0, NULL, 0),
333 SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM, 0, 0,
334 &wm8988_diffmux_controls),
335 SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM, 0, 0,
336 &wm8988_monomux_controls),
337 SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM, 0, 0,
338 &wm8988_monomux_controls),
340 SND_SOC_DAPM_MUX("Left PGA Mux", WM8988_PWR1, 5, 0,
341 &wm8988_left_pga_controls),
342 SND_SOC_DAPM_MUX("Right PGA Mux", WM8988_PWR1, 4, 0,
343 &wm8988_right_pga_controls),
345 SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM, 0, 0,
346 &wm8988_left_line_controls),
347 SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM, 0, 0,
348 &wm8988_right_line_controls),
350 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8988_PWR1, 2, 0),
351 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8988_PWR1, 3, 0),
353 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", WM8988_PWR2, 7, 0),
354 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", WM8988_PWR2, 8, 0),
356 SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
357 &wm8988_left_mixer_controls[0],
358 ARRAY_SIZE(wm8988_left_mixer_controls)),
359 SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
360 &wm8988_right_mixer_controls[0],
361 ARRAY_SIZE(wm8988_right_mixer_controls)),
363 SND_SOC_DAPM_PGA("Right Out 2", WM8988_PWR2, 3, 0, NULL, 0),
364 SND_SOC_DAPM_PGA("Left Out 2", WM8988_PWR2, 4, 0, NULL, 0),
365 SND_SOC_DAPM_PGA("Right Out 1", WM8988_PWR2, 5, 0, NULL, 0),
366 SND_SOC_DAPM_PGA("Left Out 1", WM8988_PWR2, 6, 0, NULL, 0),
368 SND_SOC_DAPM_POST("LRC control", wm8988_lrc_control),
370 SND_SOC_DAPM_OUTPUT("LOUT1"),
371 SND_SOC_DAPM_OUTPUT("ROUT1"),
372 SND_SOC_DAPM_OUTPUT("LOUT2"),
373 SND_SOC_DAPM_OUTPUT("ROUT2"),
374 SND_SOC_DAPM_OUTPUT("VREF"),
376 SND_SOC_DAPM_INPUT("LINPUT1"),
377 SND_SOC_DAPM_INPUT("LINPUT2"),
378 SND_SOC_DAPM_INPUT("RINPUT1"),
379 SND_SOC_DAPM_INPUT("RINPUT2"),
382 static const struct snd_soc_dapm_route wm8988_dapm_routes[] = {
384 { "Left Line Mux", "Line 1", "LINPUT1" },
385 { "Left Line Mux", "Line 2", "LINPUT2" },
386 { "Left Line Mux", "PGA", "Left PGA Mux" },
387 { "Left Line Mux", "Differential", "Differential Mux" },
389 { "Right Line Mux", "Line 1", "RINPUT1" },
390 { "Right Line Mux", "Line 2", "RINPUT2" },
391 { "Right Line Mux", "PGA", "Right PGA Mux" },
392 { "Right Line Mux", "Differential", "Differential Mux" },
394 { "Left PGA Mux", "Line 1", "LINPUT1" },
395 { "Left PGA Mux", "Line 2", "LINPUT2" },
396 { "Left PGA Mux", "Differential", "Differential Mux" },
398 { "Right PGA Mux", "Line 1", "RINPUT1" },
399 { "Right PGA Mux", "Line 2", "RINPUT2" },
400 { "Right PGA Mux", "Differential", "Differential Mux" },
402 { "Differential Mux", "Line 1", "LINPUT1" },
403 { "Differential Mux", "Line 1", "RINPUT1" },
404 { "Differential Mux", "Line 2", "LINPUT2" },
405 { "Differential Mux", "Line 2", "RINPUT2" },
407 { "Left ADC Mux", "Stereo", "Left PGA Mux" },
408 { "Left ADC Mux", "Mono (Left)", "Left PGA Mux" },
409 { "Left ADC Mux", "Digital Mono", "Left PGA Mux" },
411 { "Right ADC Mux", "Stereo", "Right PGA Mux" },
412 { "Right ADC Mux", "Mono (Right)", "Right PGA Mux" },
413 { "Right ADC Mux", "Digital Mono", "Right PGA Mux" },
415 { "Left ADC", NULL, "Left ADC Mux" },
416 { "Right ADC", NULL, "Right ADC Mux" },
418 { "Left Line Mux", "Line 1", "LINPUT1" },
419 { "Left Line Mux", "Line 2", "LINPUT2" },
420 { "Left Line Mux", "PGA", "Left PGA Mux" },
421 { "Left Line Mux", "Differential", "Differential Mux" },
423 { "Right Line Mux", "Line 1", "RINPUT1" },
424 { "Right Line Mux", "Line 2", "RINPUT2" },
425 { "Right Line Mux", "PGA", "Right PGA Mux" },
426 { "Right Line Mux", "Differential", "Differential Mux" },
428 { "Left Mixer", "Playback Switch", "Left DAC" },
429 { "Left Mixer", "Left Bypass Switch", "Left Line Mux" },
430 { "Left Mixer", "Right Playback Switch", "Right DAC" },
431 { "Left Mixer", "Right Bypass Switch", "Right Line Mux" },
433 { "Right Mixer", "Left Playback Switch", "Left DAC" },
434 { "Right Mixer", "Left Bypass Switch", "Left Line Mux" },
435 { "Right Mixer", "Playback Switch", "Right DAC" },
436 { "Right Mixer", "Right Bypass Switch", "Right Line Mux" },
438 { "Left Out 1", NULL, "Left Mixer" },
439 { "LOUT1", NULL, "Left Out 1" },
440 { "Right Out 1", NULL, "Right Mixer" },
441 { "ROUT1", NULL, "Right Out 1" },
443 { "Left Out 2", NULL, "Left Mixer" },
444 { "LOUT2", NULL, "Left Out 2" },
445 { "Right Out 2", NULL, "Right Mixer" },
446 { "ROUT2", NULL, "Right Out 2" },
457 /* codec hifi mclk clock divider coefficients */
458 static const struct _coeff_div coeff_div[] = {
460 {12288000, 8000, 1536, 0x6, 0x0},
461 {11289600, 8000, 1408, 0x16, 0x0},
462 {18432000, 8000, 2304, 0x7, 0x0},
463 {16934400, 8000, 2112, 0x17, 0x0},
464 {12000000, 8000, 1500, 0x6, 0x1},
467 {11289600, 11025, 1024, 0x18, 0x0},
468 {16934400, 11025, 1536, 0x19, 0x0},
469 {12000000, 11025, 1088, 0x19, 0x1},
472 {12288000, 16000, 768, 0xa, 0x0},
473 {18432000, 16000, 1152, 0xb, 0x0},
474 {12000000, 16000, 750, 0xa, 0x1},
477 {11289600, 22050, 512, 0x1a, 0x0},
478 {16934400, 22050, 768, 0x1b, 0x0},
479 {12000000, 22050, 544, 0x1b, 0x1},
482 {12288000, 32000, 384, 0xc, 0x0},
483 {18432000, 32000, 576, 0xd, 0x0},
484 {12000000, 32000, 375, 0xa, 0x1},
487 {11289600, 44100, 256, 0x10, 0x0},
488 {16934400, 44100, 384, 0x11, 0x0},
489 {12000000, 44100, 272, 0x11, 0x1},
492 {12288000, 48000, 256, 0x0, 0x0},
493 {18432000, 48000, 384, 0x1, 0x0},
494 {12000000, 48000, 250, 0x0, 0x1},
497 {11289600, 88200, 128, 0x1e, 0x0},
498 {16934400, 88200, 192, 0x1f, 0x0},
499 {12000000, 88200, 136, 0x1f, 0x1},
502 {12288000, 96000, 128, 0xe, 0x0},
503 {18432000, 96000, 192, 0xf, 0x0},
504 {12000000, 96000, 125, 0xe, 0x1},
507 static inline int get_coeff(int mclk, int rate)
511 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
512 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
519 /* The set of rates we can generate from the above for each SYSCLK */
521 static const unsigned int rates_12288[] = {
522 8000, 12000, 16000, 24000, 32000, 48000, 96000,
525 static const struct snd_pcm_hw_constraint_list constraints_12288 = {
526 .count = ARRAY_SIZE(rates_12288),
530 static const unsigned int rates_112896[] = {
531 8000, 11025, 22050, 44100,
534 static const struct snd_pcm_hw_constraint_list constraints_112896 = {
535 .count = ARRAY_SIZE(rates_112896),
536 .list = rates_112896,
539 static const unsigned int rates_12[] = {
540 8000, 11025, 12000, 16000, 22050, 24000, 32000, 41100, 48000,
544 static const struct snd_pcm_hw_constraint_list constraints_12 = {
545 .count = ARRAY_SIZE(rates_12),
550 * Note that this should be called from init rather than from hw_params.
552 static int wm8988_set_dai_sysclk(struct snd_soc_dai *codec_dai,
553 int clk_id, unsigned int freq, int dir)
555 struct snd_soc_component *component = codec_dai->component;
556 struct wm8988_priv *wm8988 = snd_soc_component_get_drvdata(component);
563 wm8988->sysclk_constraints = &constraints_112896;
564 wm8988->sysclk = freq;
571 wm8988->sysclk_constraints = &constraints_12288;
572 wm8988->sysclk = freq;
577 wm8988->sysclk_constraints = &constraints_12;
578 wm8988->sysclk = freq;
584 static int wm8988_set_dai_fmt(struct snd_soc_dai *codec_dai,
587 struct snd_soc_component *component = codec_dai->component;
590 /* set master/slave audio interface */
591 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
592 case SND_SOC_DAIFMT_CBM_CFM:
595 case SND_SOC_DAIFMT_CBS_CFS:
601 /* interface format */
602 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
603 case SND_SOC_DAIFMT_I2S:
606 case SND_SOC_DAIFMT_RIGHT_J:
608 case SND_SOC_DAIFMT_LEFT_J:
611 case SND_SOC_DAIFMT_DSP_A:
614 case SND_SOC_DAIFMT_DSP_B:
621 /* clock inversion */
622 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
623 case SND_SOC_DAIFMT_NB_NF:
625 case SND_SOC_DAIFMT_IB_IF:
628 case SND_SOC_DAIFMT_IB_NF:
631 case SND_SOC_DAIFMT_NB_IF:
638 snd_soc_component_write(component, WM8988_IFACE, iface);
642 static int wm8988_pcm_startup(struct snd_pcm_substream *substream,
643 struct snd_soc_dai *dai)
645 struct snd_soc_component *component = dai->component;
646 struct wm8988_priv *wm8988 = snd_soc_component_get_drvdata(component);
648 /* The set of sample rates that can be supported depends on the
649 * MCLK supplied to the CODEC - enforce this.
651 if (!wm8988->sysclk) {
652 dev_err(component->dev,
653 "No MCLK configured, call set_sysclk() on init\n");
657 snd_pcm_hw_constraint_list(substream->runtime, 0,
658 SNDRV_PCM_HW_PARAM_RATE,
659 wm8988->sysclk_constraints);
664 static int wm8988_pcm_hw_params(struct snd_pcm_substream *substream,
665 struct snd_pcm_hw_params *params,
666 struct snd_soc_dai *dai)
668 struct snd_soc_component *component = dai->component;
669 struct wm8988_priv *wm8988 = snd_soc_component_get_drvdata(component);
670 u16 iface = snd_soc_component_read32(component, WM8988_IFACE) & 0x1f3;
671 u16 srate = snd_soc_component_read32(component, WM8988_SRATE) & 0x180;
674 coeff = get_coeff(wm8988->sysclk, params_rate(params));
676 coeff = get_coeff(wm8988->sysclk / 2, params_rate(params));
680 dev_err(component->dev,
681 "Unable to configure sample rate %dHz with %dHz MCLK\n",
682 params_rate(params), wm8988->sysclk);
687 switch (params_width(params)) {
701 /* set iface & srate */
702 snd_soc_component_write(component, WM8988_IFACE, iface);
704 snd_soc_component_write(component, WM8988_SRATE, srate |
705 (coeff_div[coeff].sr << 1) | coeff_div[coeff].usb);
710 static int wm8988_mute(struct snd_soc_dai *dai, int mute)
712 struct snd_soc_component *component = dai->component;
713 u16 mute_reg = snd_soc_component_read32(component, WM8988_ADCDAC) & 0xfff7;
716 snd_soc_component_write(component, WM8988_ADCDAC, mute_reg | 0x8);
718 snd_soc_component_write(component, WM8988_ADCDAC, mute_reg);
722 static int wm8988_set_bias_level(struct snd_soc_component *component,
723 enum snd_soc_bias_level level)
725 struct wm8988_priv *wm8988 = snd_soc_component_get_drvdata(component);
726 u16 pwr_reg = snd_soc_component_read32(component, WM8988_PWR1) & ~0x1c1;
729 case SND_SOC_BIAS_ON:
732 case SND_SOC_BIAS_PREPARE:
733 /* VREF, VMID=2x50k, digital enabled */
734 snd_soc_component_write(component, WM8988_PWR1, pwr_reg | 0x00c0);
737 case SND_SOC_BIAS_STANDBY:
738 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
739 regcache_sync(wm8988->regmap);
741 /* VREF, VMID=2x5k */
742 snd_soc_component_write(component, WM8988_PWR1, pwr_reg | 0x1c1);
748 /* VREF, VMID=2*500k, digital stopped */
749 snd_soc_component_write(component, WM8988_PWR1, pwr_reg | 0x0141);
752 case SND_SOC_BIAS_OFF:
753 snd_soc_component_write(component, WM8988_PWR1, 0x0000);
759 #define WM8988_RATES SNDRV_PCM_RATE_8000_96000
761 #define WM8988_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
762 SNDRV_PCM_FMTBIT_S24_LE)
764 static const struct snd_soc_dai_ops wm8988_ops = {
765 .startup = wm8988_pcm_startup,
766 .hw_params = wm8988_pcm_hw_params,
767 .set_fmt = wm8988_set_dai_fmt,
768 .set_sysclk = wm8988_set_dai_sysclk,
769 .digital_mute = wm8988_mute,
772 static struct snd_soc_dai_driver wm8988_dai = {
773 .name = "wm8988-hifi",
775 .stream_name = "Playback",
778 .rates = WM8988_RATES,
779 .formats = WM8988_FORMATS,
782 .stream_name = "Capture",
785 .rates = WM8988_RATES,
786 .formats = WM8988_FORMATS,
789 .symmetric_rates = 1,
792 static int wm8988_probe(struct snd_soc_component *component)
796 ret = wm8988_reset(component);
798 dev_err(component->dev, "Failed to issue reset\n");
802 /* set the update bits (we always update left then right) */
803 snd_soc_component_update_bits(component, WM8988_RADC, 0x0100, 0x0100);
804 snd_soc_component_update_bits(component, WM8988_RDAC, 0x0100, 0x0100);
805 snd_soc_component_update_bits(component, WM8988_ROUT1V, 0x0100, 0x0100);
806 snd_soc_component_update_bits(component, WM8988_ROUT2V, 0x0100, 0x0100);
807 snd_soc_component_update_bits(component, WM8988_RINVOL, 0x0100, 0x0100);
812 static const struct snd_soc_component_driver soc_component_dev_wm8988 = {
813 .probe = wm8988_probe,
814 .set_bias_level = wm8988_set_bias_level,
815 .controls = wm8988_snd_controls,
816 .num_controls = ARRAY_SIZE(wm8988_snd_controls),
817 .dapm_widgets = wm8988_dapm_widgets,
818 .num_dapm_widgets = ARRAY_SIZE(wm8988_dapm_widgets),
819 .dapm_routes = wm8988_dapm_routes,
820 .num_dapm_routes = ARRAY_SIZE(wm8988_dapm_routes),
821 .suspend_bias_off = 1,
823 .use_pmdown_time = 1,
825 .non_legacy_dai_naming = 1,
828 static const struct regmap_config wm8988_regmap = {
832 .max_register = WM8988_LPPB,
833 .writeable_reg = wm8988_writeable,
835 .cache_type = REGCACHE_RBTREE,
836 .reg_defaults = wm8988_reg_defaults,
837 .num_reg_defaults = ARRAY_SIZE(wm8988_reg_defaults),
840 #if defined(CONFIG_SPI_MASTER)
841 static int wm8988_spi_probe(struct spi_device *spi)
843 struct wm8988_priv *wm8988;
846 wm8988 = devm_kzalloc(&spi->dev, sizeof(struct wm8988_priv),
851 wm8988->regmap = devm_regmap_init_spi(spi, &wm8988_regmap);
852 if (IS_ERR(wm8988->regmap)) {
853 ret = PTR_ERR(wm8988->regmap);
854 dev_err(&spi->dev, "Failed to init regmap: %d\n", ret);
858 spi_set_drvdata(spi, wm8988);
860 ret = devm_snd_soc_register_component(&spi->dev,
861 &soc_component_dev_wm8988, &wm8988_dai, 1);
865 static struct spi_driver wm8988_spi_driver = {
869 .probe = wm8988_spi_probe,
871 #endif /* CONFIG_SPI_MASTER */
873 #if IS_ENABLED(CONFIG_I2C)
874 static int wm8988_i2c_probe(struct i2c_client *i2c,
875 const struct i2c_device_id *id)
877 struct wm8988_priv *wm8988;
880 wm8988 = devm_kzalloc(&i2c->dev, sizeof(struct wm8988_priv),
885 i2c_set_clientdata(i2c, wm8988);
887 wm8988->regmap = devm_regmap_init_i2c(i2c, &wm8988_regmap);
888 if (IS_ERR(wm8988->regmap)) {
889 ret = PTR_ERR(wm8988->regmap);
890 dev_err(&i2c->dev, "Failed to init regmap: %d\n", ret);
894 ret = devm_snd_soc_register_component(&i2c->dev,
895 &soc_component_dev_wm8988, &wm8988_dai, 1);
899 static const struct i2c_device_id wm8988_i2c_id[] = {
903 MODULE_DEVICE_TABLE(i2c, wm8988_i2c_id);
905 static struct i2c_driver wm8988_i2c_driver = {
909 .probe = wm8988_i2c_probe,
910 .id_table = wm8988_i2c_id,
914 static int __init wm8988_modinit(void)
917 #if IS_ENABLED(CONFIG_I2C)
918 ret = i2c_add_driver(&wm8988_i2c_driver);
920 printk(KERN_ERR "Failed to register WM8988 I2C driver: %d\n",
924 #if defined(CONFIG_SPI_MASTER)
925 ret = spi_register_driver(&wm8988_spi_driver);
927 printk(KERN_ERR "Failed to register WM8988 SPI driver: %d\n",
933 module_init(wm8988_modinit);
935 static void __exit wm8988_exit(void)
937 #if IS_ENABLED(CONFIG_I2C)
938 i2c_del_driver(&wm8988_i2c_driver);
940 #if defined(CONFIG_SPI_MASTER)
941 spi_unregister_driver(&wm8988_spi_driver);
944 module_exit(wm8988_exit);
947 MODULE_DESCRIPTION("ASoC WM8988 driver");
949 MODULE_LICENSE("GPL");