2 * wm8753.c -- WM8753 ALSA Soc Audio driver
4 * Copyright 2003-11 Wolfson Microelectronics PLC.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 * The WM8753 is a low power, high quality stereo codec with integrated PCM
14 * codec designed for portable digital telephony applications.
18 * This driver support 2 DAI PCM's. This makes the default PCM available for
19 * HiFi audio (e.g. MP3, ogg) playback/capture and the other PCM available for
22 * Please note that the voice PCM can be connected directly to a Bluetooth
23 * codec or GSM modem and thus cannot be read or written to, although it is
24 * available to be configured with snd_hw_params(), etc and kcontrols in the
27 * Fast DAI switching:-
29 * The driver can now fast switch between the DAI configurations via a
30 * an alsa kcontrol. This allows the PCM to remain open.
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/init.h>
37 #include <linux/delay.h>
39 #include <linux/i2c.h>
40 #include <linux/of_device.h>
41 #include <linux/regmap.h>
42 #include <linux/spi/spi.h>
43 #include <linux/slab.h>
44 #include <sound/core.h>
45 #include <sound/pcm.h>
46 #include <sound/pcm_params.h>
47 #include <sound/soc.h>
48 #include <sound/initval.h>
49 #include <sound/tlv.h>
50 #include <asm/div64.h>
54 static int caps_charge = 2000;
55 module_param(caps_charge, int, 0);
56 MODULE_PARM_DESC(caps_charge, "WM8753 cap charge time (msecs)");
58 static int wm8753_hifi_write_dai_fmt(struct snd_soc_component *component,
60 static int wm8753_voice_write_dai_fmt(struct snd_soc_component *component,
64 * wm8753 register cache
65 * We can't read the WM8753 register space when we
66 * are using 2 wire for device control, so we cache them instead.
68 static const struct reg_default wm8753_reg_defaults[] = {
135 static bool wm8753_volatile(struct device *dev, unsigned int reg)
137 return reg == WM8753_RESET;
140 /* codec private data */
142 struct regmap *regmap;
146 unsigned int voice_fmt;
147 unsigned int hifi_fmt;
150 struct delayed_work charge_work;
153 #define wm8753_reset(c) snd_soc_component_write(c, WM8753_RESET, 0)
158 static const char *wm8753_base[] = {"Linear Control", "Adaptive Boost"};
159 static const char *wm8753_base_filter[] =
160 {"130Hz @ 48kHz", "200Hz @ 48kHz", "100Hz @ 16kHz", "400Hz @ 48kHz",
161 "100Hz @ 8kHz", "200Hz @ 8kHz"};
162 static const char *wm8753_treble[] = {"8kHz", "4kHz"};
163 static const char *wm8753_alc_func[] = {"Off", "Right", "Left", "Stereo"};
164 static const char *wm8753_ng_type[] = {"Constant PGA Gain", "Mute ADC Output"};
165 static const char *wm8753_3d_func[] = {"Capture", "Playback"};
166 static const char *wm8753_3d_uc[] = {"2.2kHz", "1.5kHz"};
167 static const char *wm8753_3d_lc[] = {"200Hz", "500Hz"};
168 static const char *wm8753_deemp[] = {"None", "32kHz", "44.1kHz", "48kHz"};
169 static const char *wm8753_mono_mix[] = {"Stereo", "Left", "Right", "Mono"};
170 static const char *wm8753_dac_phase[] = {"Non Inverted", "Inverted"};
171 static const char *wm8753_line_mix[] = {"Line 1 + 2", "Line 1 - 2",
173 static const char *wm8753_mono_mux[] = {"Line Mix", "Rx Mix"};
174 static const char *wm8753_right_mux[] = {"Line 2", "Rx Mix"};
175 static const char *wm8753_left_mux[] = {"Line 1", "Rx Mix"};
176 static const char *wm8753_rxmsel[] = {"RXP - RXN", "RXP + RXN", "RXP", "RXN"};
177 static const char *wm8753_sidetone_mux[] = {"Left PGA", "Mic 1", "Mic 2",
179 static const char *wm8753_mono2_src[] = {"Inverted Mono 1", "Left", "Right",
181 static const char *wm8753_out3[] = {"VREF", "ROUT2", "Left + Right"};
182 static const char *wm8753_out4[] = {"VREF", "Capture ST", "LOUT2"};
183 static const char *wm8753_radcsel[] = {"PGA", "Line or RXP-RXN", "Sidetone"};
184 static const char *wm8753_ladcsel[] = {"PGA", "Line or RXP-RXN", "Line"};
185 static const char *wm8753_mono_adc[] = {"Stereo", "Analogue Mix Left",
186 "Analogue Mix Right", "Digital Mono Mix"};
187 static const char *wm8753_adc_hp[] = {"3.4Hz @ 48kHz", "82Hz @ 16k",
188 "82Hz @ 8kHz", "170Hz @ 8kHz"};
189 static const char *wm8753_adc_filter[] = {"HiFi", "Voice"};
190 static const char *wm8753_mic_sel[] = {"Mic 1", "Mic 2", "Mic 3"};
191 static const char *wm8753_dai_mode[] = {"DAI 0", "DAI 1", "DAI 2", "DAI 3"};
192 static const char *wm8753_dat_sel[] = {"Stereo", "Left ADC", "Right ADC",
194 static const char *wm8753_rout2_phase[] = {"Non Inverted", "Inverted"};
196 static const struct soc_enum wm8753_enum[] = {
197 SOC_ENUM_SINGLE(WM8753_BASS, 7, 2, wm8753_base),
198 SOC_ENUM_SINGLE(WM8753_BASS, 4, 6, wm8753_base_filter),
199 SOC_ENUM_SINGLE(WM8753_TREBLE, 6, 2, wm8753_treble),
200 SOC_ENUM_SINGLE(WM8753_ALC1, 7, 4, wm8753_alc_func),
201 SOC_ENUM_SINGLE(WM8753_NGATE, 1, 2, wm8753_ng_type),
202 SOC_ENUM_SINGLE(WM8753_3D, 7, 2, wm8753_3d_func),
203 SOC_ENUM_SINGLE(WM8753_3D, 6, 2, wm8753_3d_uc),
204 SOC_ENUM_SINGLE(WM8753_3D, 5, 2, wm8753_3d_lc),
205 SOC_ENUM_SINGLE(WM8753_DAC, 1, 4, wm8753_deemp),
206 SOC_ENUM_SINGLE(WM8753_DAC, 4, 4, wm8753_mono_mix),
207 SOC_ENUM_SINGLE(WM8753_DAC, 6, 2, wm8753_dac_phase),
208 SOC_ENUM_SINGLE(WM8753_INCTL1, 3, 4, wm8753_line_mix),
209 SOC_ENUM_SINGLE(WM8753_INCTL1, 2, 2, wm8753_mono_mux),
210 SOC_ENUM_SINGLE(WM8753_INCTL1, 1, 2, wm8753_right_mux),
211 SOC_ENUM_SINGLE(WM8753_INCTL1, 0, 2, wm8753_left_mux),
212 SOC_ENUM_SINGLE(WM8753_INCTL2, 6, 4, wm8753_rxmsel),
213 SOC_ENUM_SINGLE(WM8753_INCTL2, 4, 4, wm8753_sidetone_mux),
214 SOC_ENUM_SINGLE(WM8753_OUTCTL, 7, 4, wm8753_mono2_src),
215 SOC_ENUM_SINGLE(WM8753_OUTCTL, 0, 3, wm8753_out3),
216 SOC_ENUM_SINGLE(WM8753_ADCTL2, 7, 3, wm8753_out4),
217 SOC_ENUM_SINGLE(WM8753_ADCIN, 2, 3, wm8753_radcsel),
218 SOC_ENUM_SINGLE(WM8753_ADCIN, 0, 3, wm8753_ladcsel),
219 SOC_ENUM_SINGLE(WM8753_ADCIN, 4, 4, wm8753_mono_adc),
220 SOC_ENUM_SINGLE(WM8753_ADC, 2, 4, wm8753_adc_hp),
221 SOC_ENUM_SINGLE(WM8753_ADC, 4, 2, wm8753_adc_filter),
222 SOC_ENUM_SINGLE(WM8753_MICBIAS, 6, 3, wm8753_mic_sel),
223 SOC_ENUM_SINGLE(WM8753_IOCTL, 2, 4, wm8753_dai_mode),
224 SOC_ENUM_SINGLE(WM8753_ADC, 7, 4, wm8753_dat_sel),
225 SOC_ENUM_SINGLE(WM8753_OUTCTL, 2, 2, wm8753_rout2_phase),
229 static int wm8753_get_dai(struct snd_kcontrol *kcontrol,
230 struct snd_ctl_elem_value *ucontrol)
232 struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
233 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
235 ucontrol->value.enumerated.item[0] = wm8753->dai_func;
239 static int wm8753_set_dai(struct snd_kcontrol *kcontrol,
240 struct snd_ctl_elem_value *ucontrol)
242 struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
243 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
246 if (wm8753->dai_func == ucontrol->value.enumerated.item[0])
249 if (snd_soc_component_is_active(component))
252 ioctl = snd_soc_component_read32(component, WM8753_IOCTL);
254 wm8753->dai_func = ucontrol->value.enumerated.item[0];
256 if (((ioctl >> 2) & 0x3) == wm8753->dai_func)
259 ioctl = (ioctl & 0x1f3) | (wm8753->dai_func << 2);
260 snd_soc_component_write(component, WM8753_IOCTL, ioctl);
263 wm8753_hifi_write_dai_fmt(component, wm8753->hifi_fmt);
264 wm8753_voice_write_dai_fmt(component, wm8753->voice_fmt);
269 static const DECLARE_TLV_DB_SCALE(rec_mix_tlv, -1500, 300, 0);
270 static const DECLARE_TLV_DB_SCALE(mic_preamp_tlv, 1200, 600, 0);
271 static const DECLARE_TLV_DB_SCALE(adc_tlv, -9750, 50, 1);
272 static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1);
273 static const DECLARE_TLV_DB_RANGE(out_tlv,
274 /* 0000000 - 0101111 = "Analogue mute" */
275 0, 48, TLV_DB_SCALE_ITEM(-25500, 0, 0),
276 48, 127, TLV_DB_SCALE_ITEM(-7300, 100, 0)
278 static const DECLARE_TLV_DB_SCALE(mix_tlv, -1500, 300, 0);
279 static const DECLARE_TLV_DB_SCALE(voice_mix_tlv, -1200, 300, 0);
280 static const DECLARE_TLV_DB_SCALE(pga_tlv, -1725, 75, 0);
282 static const struct snd_kcontrol_new wm8753_snd_controls[] = {
283 SOC_SINGLE("Hi-Fi DAC Left/Right channel Swap", WM8753_HIFI, 5, 1, 0),
284 SOC_DOUBLE_R_TLV("PCM Volume", WM8753_LDAC, WM8753_RDAC, 0, 255, 0, dac_tlv),
286 SOC_DOUBLE_R_TLV("ADC Capture Volume", WM8753_LADC, WM8753_RADC, 0, 255, 0,
289 SOC_DOUBLE_R_TLV("Headphone Playback Volume", WM8753_LOUT1V, WM8753_ROUT1V,
291 SOC_DOUBLE_R_TLV("Speaker Playback Volume", WM8753_LOUT2V, WM8753_ROUT2V, 0,
294 SOC_SINGLE_TLV("Mono Playback Volume", WM8753_MOUTV, 0, 127, 0, out_tlv),
296 SOC_DOUBLE_R_TLV("Bypass Playback Volume", WM8753_LOUTM1, WM8753_ROUTM1, 4, 7,
298 SOC_DOUBLE_R_TLV("Sidetone Playback Volume", WM8753_LOUTM2, WM8753_ROUTM2, 4,
300 SOC_DOUBLE_R_TLV("Voice Playback Volume", WM8753_LOUTM2, WM8753_ROUTM2, 0, 7,
303 SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8753_LOUT1V, WM8753_ROUT1V, 7,
305 SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8753_LOUT2V, WM8753_ROUT2V, 7,
308 SOC_SINGLE_TLV("Mono Bypass Playback Volume", WM8753_MOUTM1, 4, 7, 1, mix_tlv),
309 SOC_SINGLE_TLV("Mono Sidetone Playback Volume", WM8753_MOUTM2, 4, 7, 1,
311 SOC_SINGLE_TLV("Mono Voice Playback Volume", WM8753_MOUTM2, 0, 7, 1,
313 SOC_SINGLE("Mono Playback ZC Switch", WM8753_MOUTV, 7, 1, 0),
315 SOC_ENUM("Bass Boost", wm8753_enum[0]),
316 SOC_ENUM("Bass Filter", wm8753_enum[1]),
317 SOC_SINGLE("Bass Volume", WM8753_BASS, 0, 15, 1),
319 SOC_SINGLE("Treble Volume", WM8753_TREBLE, 0, 15, 1),
320 SOC_ENUM("Treble Cut-off", wm8753_enum[2]),
322 SOC_DOUBLE_TLV("Sidetone Capture Volume", WM8753_RECMIX1, 0, 4, 7, 1,
324 SOC_SINGLE_TLV("Voice Sidetone Capture Volume", WM8753_RECMIX2, 0, 7, 1,
327 SOC_DOUBLE_R_TLV("Capture Volume", WM8753_LINVOL, WM8753_RINVOL, 0, 63, 0,
329 SOC_DOUBLE_R("Capture ZC Switch", WM8753_LINVOL, WM8753_RINVOL, 6, 1, 0),
330 SOC_DOUBLE_R("Capture Switch", WM8753_LINVOL, WM8753_RINVOL, 7, 1, 1),
332 SOC_ENUM("Capture Filter Select", wm8753_enum[23]),
333 SOC_ENUM("Capture Filter Cut-off", wm8753_enum[24]),
334 SOC_SINGLE("Capture Filter Switch", WM8753_ADC, 0, 1, 1),
336 SOC_SINGLE("ALC Capture Target Volume", WM8753_ALC1, 0, 7, 0),
337 SOC_SINGLE("ALC Capture Max Volume", WM8753_ALC1, 4, 7, 0),
338 SOC_ENUM("ALC Capture Function", wm8753_enum[3]),
339 SOC_SINGLE("ALC Capture ZC Switch", WM8753_ALC2, 8, 1, 0),
340 SOC_SINGLE("ALC Capture Hold Time", WM8753_ALC2, 0, 15, 1),
341 SOC_SINGLE("ALC Capture Decay Time", WM8753_ALC3, 4, 15, 1),
342 SOC_SINGLE("ALC Capture Attack Time", WM8753_ALC3, 0, 15, 0),
343 SOC_SINGLE("ALC Capture NG Threshold", WM8753_NGATE, 3, 31, 0),
344 SOC_ENUM("ALC Capture NG Type", wm8753_enum[4]),
345 SOC_SINGLE("ALC Capture NG Switch", WM8753_NGATE, 0, 1, 0),
347 SOC_ENUM("3D Function", wm8753_enum[5]),
348 SOC_ENUM("3D Upper Cut-off", wm8753_enum[6]),
349 SOC_ENUM("3D Lower Cut-off", wm8753_enum[7]),
350 SOC_SINGLE("3D Volume", WM8753_3D, 1, 15, 0),
351 SOC_SINGLE("3D Switch", WM8753_3D, 0, 1, 0),
353 SOC_SINGLE("Capture 6dB Attenuate", WM8753_ADCTL1, 2, 1, 0),
354 SOC_SINGLE("Playback 6dB Attenuate", WM8753_ADCTL1, 1, 1, 0),
356 SOC_ENUM("De-emphasis", wm8753_enum[8]),
357 SOC_ENUM("Playback Mono Mix", wm8753_enum[9]),
358 SOC_ENUM("Playback Phase", wm8753_enum[10]),
360 SOC_SINGLE_TLV("Mic2 Capture Volume", WM8753_INCTL1, 7, 3, 0, mic_preamp_tlv),
361 SOC_SINGLE_TLV("Mic1 Capture Volume", WM8753_INCTL1, 5, 3, 0, mic_preamp_tlv),
363 SOC_ENUM_EXT("DAI Mode", wm8753_enum[26], wm8753_get_dai, wm8753_set_dai),
365 SOC_ENUM("ADC Data Select", wm8753_enum[27]),
366 SOC_ENUM("ROUT2 Phase", wm8753_enum[28]),
374 static const struct snd_kcontrol_new wm8753_left_mixer_controls[] = {
375 SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_LOUTM2, 8, 1, 0),
376 SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_LOUTM2, 7, 1, 0),
377 SOC_DAPM_SINGLE("Left Playback Switch", WM8753_LOUTM1, 8, 1, 0),
378 SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_LOUTM1, 7, 1, 0),
382 static const struct snd_kcontrol_new wm8753_right_mixer_controls[] = {
383 SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_ROUTM2, 8, 1, 0),
384 SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_ROUTM2, 7, 1, 0),
385 SOC_DAPM_SINGLE("Right Playback Switch", WM8753_ROUTM1, 8, 1, 0),
386 SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_ROUTM1, 7, 1, 0),
390 static const struct snd_kcontrol_new wm8753_mono_mixer_controls[] = {
391 SOC_DAPM_SINGLE("Left Playback Switch", WM8753_MOUTM1, 8, 1, 0),
392 SOC_DAPM_SINGLE("Right Playback Switch", WM8753_MOUTM2, 8, 1, 0),
393 SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_MOUTM2, 3, 1, 0),
394 SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_MOUTM2, 7, 1, 0),
395 SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_MOUTM1, 7, 1, 0),
399 static const struct snd_kcontrol_new wm8753_mono2_controls =
400 SOC_DAPM_ENUM("Route", wm8753_enum[17]);
403 static const struct snd_kcontrol_new wm8753_out3_controls =
404 SOC_DAPM_ENUM("Route", wm8753_enum[18]);
407 static const struct snd_kcontrol_new wm8753_out4_controls =
408 SOC_DAPM_ENUM("Route", wm8753_enum[19]);
411 static const struct snd_kcontrol_new wm8753_adc_mono_controls =
412 SOC_DAPM_ENUM("Route", wm8753_enum[22]);
415 static const struct snd_kcontrol_new wm8753_record_mixer_controls[] = {
416 SOC_DAPM_SINGLE("Voice Capture Switch", WM8753_RECMIX2, 3, 1, 0),
417 SOC_DAPM_SINGLE("Left Capture Switch", WM8753_RECMIX1, 3, 1, 0),
418 SOC_DAPM_SINGLE("Right Capture Switch", WM8753_RECMIX1, 7, 1, 0),
422 static const struct snd_kcontrol_new wm8753_adc_left_controls =
423 SOC_DAPM_ENUM("Route", wm8753_enum[21]);
426 static const struct snd_kcontrol_new wm8753_adc_right_controls =
427 SOC_DAPM_ENUM("Route", wm8753_enum[20]);
430 static const struct snd_kcontrol_new wm8753_mic_mux_controls =
431 SOC_DAPM_ENUM("Route", wm8753_enum[16]);
434 static const struct snd_kcontrol_new wm8753_alc_mixer_controls[] = {
435 SOC_DAPM_SINGLE("Line Capture Switch", WM8753_INCTL2, 3, 1, 0),
436 SOC_DAPM_SINGLE("Mic2 Capture Switch", WM8753_INCTL2, 2, 1, 0),
437 SOC_DAPM_SINGLE("Mic1 Capture Switch", WM8753_INCTL2, 1, 1, 0),
438 SOC_DAPM_SINGLE("Rx Capture Switch", WM8753_INCTL2, 0, 1, 0),
442 static const struct snd_kcontrol_new wm8753_line_left_controls =
443 SOC_DAPM_ENUM("Route", wm8753_enum[14]);
446 static const struct snd_kcontrol_new wm8753_line_right_controls =
447 SOC_DAPM_ENUM("Route", wm8753_enum[13]);
450 static const struct snd_kcontrol_new wm8753_line_mono_controls =
451 SOC_DAPM_ENUM("Route", wm8753_enum[12]);
453 /* Line mux and mixer */
454 static const struct snd_kcontrol_new wm8753_line_mux_mix_controls =
455 SOC_DAPM_ENUM("Route", wm8753_enum[11]);
457 /* Rx mux and mixer */
458 static const struct snd_kcontrol_new wm8753_rx_mux_mix_controls =
459 SOC_DAPM_ENUM("Route", wm8753_enum[15]);
461 /* Mic Selector Mux */
462 static const struct snd_kcontrol_new wm8753_mic_sel_mux_controls =
463 SOC_DAPM_ENUM("Route", wm8753_enum[25]);
465 static const struct snd_soc_dapm_widget wm8753_dapm_widgets[] = {
466 SND_SOC_DAPM_MICBIAS("Mic Bias", WM8753_PWR1, 5, 0),
467 SND_SOC_DAPM_MIXER("Left Mixer", WM8753_PWR4, 0, 0,
468 &wm8753_left_mixer_controls[0], ARRAY_SIZE(wm8753_left_mixer_controls)),
469 SND_SOC_DAPM_PGA("Left Out 1", WM8753_PWR3, 8, 0, NULL, 0),
470 SND_SOC_DAPM_PGA("Left Out 2", WM8753_PWR3, 6, 0, NULL, 0),
471 SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", WM8753_PWR1, 3, 0),
472 SND_SOC_DAPM_OUTPUT("LOUT1"),
473 SND_SOC_DAPM_OUTPUT("LOUT2"),
474 SND_SOC_DAPM_MIXER("Right Mixer", WM8753_PWR4, 1, 0,
475 &wm8753_right_mixer_controls[0], ARRAY_SIZE(wm8753_right_mixer_controls)),
476 SND_SOC_DAPM_PGA("Right Out 1", WM8753_PWR3, 7, 0, NULL, 0),
477 SND_SOC_DAPM_PGA("Right Out 2", WM8753_PWR3, 5, 0, NULL, 0),
478 SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", WM8753_PWR1, 2, 0),
479 SND_SOC_DAPM_OUTPUT("ROUT1"),
480 SND_SOC_DAPM_OUTPUT("ROUT2"),
481 SND_SOC_DAPM_MIXER("Mono Mixer", WM8753_PWR4, 2, 0,
482 &wm8753_mono_mixer_controls[0], ARRAY_SIZE(wm8753_mono_mixer_controls)),
483 SND_SOC_DAPM_PGA("Mono Out 1", WM8753_PWR3, 2, 0, NULL, 0),
484 SND_SOC_DAPM_PGA("Mono Out 2", WM8753_PWR3, 1, 0, NULL, 0),
485 SND_SOC_DAPM_DAC("Voice DAC", "Voice Playback", WM8753_PWR1, 4, 0),
486 SND_SOC_DAPM_OUTPUT("MONO1"),
487 SND_SOC_DAPM_MUX("Mono 2 Mux", SND_SOC_NOPM, 0, 0, &wm8753_mono2_controls),
488 SND_SOC_DAPM_OUTPUT("MONO2"),
489 SND_SOC_DAPM_MIXER("Out3 Left + Right", SND_SOC_NOPM, 0, 0, NULL, 0),
490 SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0, &wm8753_out3_controls),
491 SND_SOC_DAPM_PGA("Out 3", WM8753_PWR3, 4, 0, NULL, 0),
492 SND_SOC_DAPM_OUTPUT("OUT3"),
493 SND_SOC_DAPM_MUX("Out4 Mux", SND_SOC_NOPM, 0, 0, &wm8753_out4_controls),
494 SND_SOC_DAPM_PGA("Out 4", WM8753_PWR3, 3, 0, NULL, 0),
495 SND_SOC_DAPM_OUTPUT("OUT4"),
496 SND_SOC_DAPM_MIXER("Playback Mixer", WM8753_PWR4, 3, 0,
497 &wm8753_record_mixer_controls[0],
498 ARRAY_SIZE(wm8753_record_mixer_controls)),
499 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8753_PWR2, 3, 0),
500 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8753_PWR2, 2, 0),
501 SND_SOC_DAPM_MUX("Capture Left Mixer", SND_SOC_NOPM, 0, 0,
502 &wm8753_adc_mono_controls),
503 SND_SOC_DAPM_MUX("Capture Right Mixer", SND_SOC_NOPM, 0, 0,
504 &wm8753_adc_mono_controls),
505 SND_SOC_DAPM_MUX("Capture Left Mux", SND_SOC_NOPM, 0, 0,
506 &wm8753_adc_left_controls),
507 SND_SOC_DAPM_MUX("Capture Right Mux", SND_SOC_NOPM, 0, 0,
508 &wm8753_adc_right_controls),
509 SND_SOC_DAPM_MUX("Mic Sidetone Mux", SND_SOC_NOPM, 0, 0,
510 &wm8753_mic_mux_controls),
511 SND_SOC_DAPM_PGA("Left Capture Volume", WM8753_PWR2, 5, 0, NULL, 0),
512 SND_SOC_DAPM_PGA("Right Capture Volume", WM8753_PWR2, 4, 0, NULL, 0),
513 SND_SOC_DAPM_MIXER("ALC Mixer", WM8753_PWR2, 6, 0,
514 &wm8753_alc_mixer_controls[0], ARRAY_SIZE(wm8753_alc_mixer_controls)),
515 SND_SOC_DAPM_MUX("Line Left Mux", SND_SOC_NOPM, 0, 0,
516 &wm8753_line_left_controls),
517 SND_SOC_DAPM_MUX("Line Right Mux", SND_SOC_NOPM, 0, 0,
518 &wm8753_line_right_controls),
519 SND_SOC_DAPM_MUX("Line Mono Mux", SND_SOC_NOPM, 0, 0,
520 &wm8753_line_mono_controls),
521 SND_SOC_DAPM_MUX("Line Mixer", WM8753_PWR2, 0, 0,
522 &wm8753_line_mux_mix_controls),
523 SND_SOC_DAPM_MUX("Rx Mixer", WM8753_PWR2, 1, 0,
524 &wm8753_rx_mux_mix_controls),
525 SND_SOC_DAPM_PGA("Mic 1 Volume", WM8753_PWR2, 8, 0, NULL, 0),
526 SND_SOC_DAPM_PGA("Mic 2 Volume", WM8753_PWR2, 7, 0, NULL, 0),
527 SND_SOC_DAPM_MUX("Mic Selection Mux", SND_SOC_NOPM, 0, 0,
528 &wm8753_mic_sel_mux_controls),
529 SND_SOC_DAPM_INPUT("LINE1"),
530 SND_SOC_DAPM_INPUT("LINE2"),
531 SND_SOC_DAPM_INPUT("RXP"),
532 SND_SOC_DAPM_INPUT("RXN"),
533 SND_SOC_DAPM_INPUT("ACIN"),
534 SND_SOC_DAPM_OUTPUT("ACOP"),
535 SND_SOC_DAPM_INPUT("MIC1N"),
536 SND_SOC_DAPM_INPUT("MIC1"),
537 SND_SOC_DAPM_INPUT("MIC2N"),
538 SND_SOC_DAPM_INPUT("MIC2"),
539 SND_SOC_DAPM_VMID("VREF"),
542 static const struct snd_soc_dapm_route wm8753_dapm_routes[] = {
544 {"Left Mixer", "Left Playback Switch", "Left DAC"},
545 {"Left Mixer", "Voice Playback Switch", "Voice DAC"},
546 {"Left Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
547 {"Left Mixer", "Bypass Playback Switch", "Line Left Mux"},
550 {"Right Mixer", "Right Playback Switch", "Right DAC"},
551 {"Right Mixer", "Voice Playback Switch", "Voice DAC"},
552 {"Right Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
553 {"Right Mixer", "Bypass Playback Switch", "Line Right Mux"},
556 {"Mono Mixer", "Voice Playback Switch", "Voice DAC"},
557 {"Mono Mixer", "Left Playback Switch", "Left DAC"},
558 {"Mono Mixer", "Right Playback Switch", "Right DAC"},
559 {"Mono Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
560 {"Mono Mixer", "Bypass Playback Switch", "Line Mono Mux"},
563 {"Left Out 1", NULL, "Left Mixer"},
564 {"Left Out 2", NULL, "Left Mixer"},
565 {"LOUT1", NULL, "Left Out 1"},
566 {"LOUT2", NULL, "Left Out 2"},
569 {"Right Out 1", NULL, "Right Mixer"},
570 {"Right Out 2", NULL, "Right Mixer"},
571 {"ROUT1", NULL, "Right Out 1"},
572 {"ROUT2", NULL, "Right Out 2"},
575 {"Mono Out 1", NULL, "Mono Mixer"},
576 {"MONO1", NULL, "Mono Out 1"},
579 {"Mono 2 Mux", "Left + Right", "Out3 Left + Right"},
580 {"Mono 2 Mux", "Inverted Mono 1", "MONO1"},
581 {"Mono 2 Mux", "Left", "Left Mixer"},
582 {"Mono 2 Mux", "Right", "Right Mixer"},
583 {"Mono Out 2", NULL, "Mono 2 Mux"},
584 {"MONO2", NULL, "Mono Out 2"},
587 {"Out3 Left + Right", NULL, "Left Mixer"},
588 {"Out3 Left + Right", NULL, "Right Mixer"},
589 {"Out3 Mux", "VREF", "VREF"},
590 {"Out3 Mux", "Left + Right", "Out3 Left + Right"},
591 {"Out3 Mux", "ROUT2", "ROUT2"},
592 {"Out 3", NULL, "Out3 Mux"},
593 {"OUT3", NULL, "Out 3"},
596 {"Out4 Mux", "VREF", "VREF"},
597 {"Out4 Mux", "Capture ST", "Playback Mixer"},
598 {"Out4 Mux", "LOUT2", "LOUT2"},
599 {"Out 4", NULL, "Out4 Mux"},
600 {"OUT4", NULL, "Out 4"},
603 {"Playback Mixer", "Left Capture Switch", "Left Mixer"},
604 {"Playback Mixer", "Voice Capture Switch", "Mono Mixer"},
605 {"Playback Mixer", "Right Capture Switch", "Right Mixer"},
607 /* Mic/SideTone Mux */
608 {"Mic Sidetone Mux", "Left PGA", "Left Capture Volume"},
609 {"Mic Sidetone Mux", "Right PGA", "Right Capture Volume"},
610 {"Mic Sidetone Mux", "Mic 1", "Mic 1 Volume"},
611 {"Mic Sidetone Mux", "Mic 2", "Mic 2 Volume"},
613 /* Capture Left Mux */
614 {"Capture Left Mux", "PGA", "Left Capture Volume"},
615 {"Capture Left Mux", "Line or RXP-RXN", "Line Left Mux"},
616 {"Capture Left Mux", "Line", "LINE1"},
618 /* Capture Right Mux */
619 {"Capture Right Mux", "PGA", "Right Capture Volume"},
620 {"Capture Right Mux", "Line or RXP-RXN", "Line Right Mux"},
621 {"Capture Right Mux", "Sidetone", "Playback Mixer"},
623 /* Mono Capture mixer-mux */
624 {"Capture Right Mixer", "Stereo", "Capture Right Mux"},
625 {"Capture Left Mixer", "Stereo", "Capture Left Mux"},
626 {"Capture Left Mixer", "Analogue Mix Left", "Capture Left Mux"},
627 {"Capture Left Mixer", "Analogue Mix Left", "Capture Right Mux"},
628 {"Capture Right Mixer", "Analogue Mix Right", "Capture Left Mux"},
629 {"Capture Right Mixer", "Analogue Mix Right", "Capture Right Mux"},
630 {"Capture Left Mixer", "Digital Mono Mix", "Capture Left Mux"},
631 {"Capture Left Mixer", "Digital Mono Mix", "Capture Right Mux"},
632 {"Capture Right Mixer", "Digital Mono Mix", "Capture Left Mux"},
633 {"Capture Right Mixer", "Digital Mono Mix", "Capture Right Mux"},
636 {"Left ADC", NULL, "Capture Left Mixer"},
637 {"Right ADC", NULL, "Capture Right Mixer"},
639 /* Left Capture Volume */
640 {"Left Capture Volume", NULL, "ACIN"},
642 /* Right Capture Volume */
643 {"Right Capture Volume", NULL, "Mic 2 Volume"},
646 {"ALC Mixer", "Line Capture Switch", "Line Mixer"},
647 {"ALC Mixer", "Mic2 Capture Switch", "Mic 2 Volume"},
648 {"ALC Mixer", "Mic1 Capture Switch", "Mic 1 Volume"},
649 {"ALC Mixer", "Rx Capture Switch", "Rx Mixer"},
652 {"Line Left Mux", "Line 1", "LINE1"},
653 {"Line Left Mux", "Rx Mix", "Rx Mixer"},
656 {"Line Right Mux", "Line 2", "LINE2"},
657 {"Line Right Mux", "Rx Mix", "Rx Mixer"},
660 {"Line Mono Mux", "Line Mix", "Line Mixer"},
661 {"Line Mono Mux", "Rx Mix", "Rx Mixer"},
664 {"Line Mixer", "Line 1 + 2", "LINE1"},
665 {"Line Mixer", "Line 1 - 2", "LINE1"},
666 {"Line Mixer", "Line 1 + 2", "LINE2"},
667 {"Line Mixer", "Line 1 - 2", "LINE2"},
668 {"Line Mixer", "Line 1", "LINE1"},
669 {"Line Mixer", "Line 2", "LINE2"},
672 {"Rx Mixer", "RXP - RXN", "RXP"},
673 {"Rx Mixer", "RXP + RXN", "RXP"},
674 {"Rx Mixer", "RXP - RXN", "RXN"},
675 {"Rx Mixer", "RXP + RXN", "RXN"},
676 {"Rx Mixer", "RXP", "RXP"},
677 {"Rx Mixer", "RXN", "RXN"},
680 {"Mic 1 Volume", NULL, "MIC1N"},
681 {"Mic 1 Volume", NULL, "Mic Selection Mux"},
684 {"Mic 2 Volume", NULL, "MIC2N"},
685 {"Mic 2 Volume", NULL, "MIC2"},
687 /* Mic Selector Mux */
688 {"Mic Selection Mux", "Mic 1", "MIC1"},
689 {"Mic Selection Mux", "Mic 2", "MIC2N"},
690 {"Mic Selection Mux", "Mic 3", "MIC2"},
693 {"ACOP", NULL, "ALC Mixer"},
703 /* The size in bits of the pll divide multiplied by 10
704 * to allow rounding later */
705 #define FIXED_PLL_SIZE ((1 << 22) * 10)
707 static void pll_factors(struct _pll_div *pll_div, unsigned int target,
711 unsigned int K, Ndiv, Nmod;
713 Ndiv = target / source;
717 Ndiv = target / source;
721 if ((Ndiv < 6) || (Ndiv > 12))
723 "wm8753: unsupported N = %u\n", Ndiv);
726 Nmod = target % source;
727 Kpart = FIXED_PLL_SIZE * (long long)Nmod;
729 do_div(Kpart, source);
731 K = Kpart & 0xFFFFFFFF;
733 /* Check if we need to round */
737 /* Move down to proper range now rounding is done */
743 static int wm8753_set_dai_pll(struct snd_soc_dai *codec_dai, int pll_id,
744 int source, unsigned int freq_in, unsigned int freq_out)
748 struct snd_soc_component *component = codec_dai->component;
750 if (pll_id < WM8753_PLL1 || pll_id > WM8753_PLL2)
753 if (pll_id == WM8753_PLL1) {
756 reg = snd_soc_component_read32(component, WM8753_CLOCK) & 0xffef;
760 reg = snd_soc_component_read32(component, WM8753_CLOCK) & 0xfff7;
763 if (!freq_in || !freq_out) {
765 snd_soc_component_write(component, WM8753_PLL1CTL1 + offset, 0x0026);
766 snd_soc_component_write(component, WM8753_CLOCK, reg);
770 struct _pll_div pll_div;
772 pll_factors(&pll_div, freq_out * 8, freq_in);
774 /* set up N and K PLL divisor ratios */
775 /* bits 8:5 = PLL_N, bits 3:0 = PLL_K[21:18] */
776 value = (pll_div.n << 5) + ((pll_div.k & 0x3c0000) >> 18);
777 snd_soc_component_write(component, WM8753_PLL1CTL2 + offset, value);
779 /* bits 8:0 = PLL_K[17:9] */
780 value = (pll_div.k & 0x03fe00) >> 9;
781 snd_soc_component_write(component, WM8753_PLL1CTL3 + offset, value);
783 /* bits 8:0 = PLL_K[8:0] */
784 value = pll_div.k & 0x0001ff;
785 snd_soc_component_write(component, WM8753_PLL1CTL4 + offset, value);
787 /* set PLL as input and enable */
788 snd_soc_component_write(component, WM8753_PLL1CTL1 + offset, 0x0027 |
789 (pll_div.div2 << 3));
790 snd_soc_component_write(component, WM8753_CLOCK, reg | enable);
802 /* codec hifi mclk (after PLL) clock divider coefficients */
803 static const struct _coeff_div coeff_div[] = {
805 {12288000, 8000, 0x6, 0x0},
806 {11289600, 8000, 0x16, 0x0},
807 {18432000, 8000, 0x7, 0x0},
808 {16934400, 8000, 0x17, 0x0},
809 {12000000, 8000, 0x6, 0x1},
812 {11289600, 11025, 0x18, 0x0},
813 {16934400, 11025, 0x19, 0x0},
814 {12000000, 11025, 0x19, 0x1},
817 {12288000, 16000, 0xa, 0x0},
818 {18432000, 16000, 0xb, 0x0},
819 {12000000, 16000, 0xa, 0x1},
822 {11289600, 22050, 0x1a, 0x0},
823 {16934400, 22050, 0x1b, 0x0},
824 {12000000, 22050, 0x1b, 0x1},
827 {12288000, 32000, 0xc, 0x0},
828 {18432000, 32000, 0xd, 0x0},
829 {12000000, 32000, 0xa, 0x1},
832 {11289600, 44100, 0x10, 0x0},
833 {16934400, 44100, 0x11, 0x0},
834 {12000000, 44100, 0x11, 0x1},
837 {12288000, 48000, 0x0, 0x0},
838 {18432000, 48000, 0x1, 0x0},
839 {12000000, 48000, 0x0, 0x1},
842 {11289600, 88200, 0x1e, 0x0},
843 {16934400, 88200, 0x1f, 0x0},
844 {12000000, 88200, 0x1f, 0x1},
847 {12288000, 96000, 0xe, 0x0},
848 {18432000, 96000, 0xf, 0x0},
849 {12000000, 96000, 0xe, 0x1},
852 static int get_coeff(int mclk, int rate)
856 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
857 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
864 * Clock after PLL and dividers
866 static int wm8753_set_dai_sysclk(struct snd_soc_dai *codec_dai,
867 int clk_id, unsigned int freq, int dir)
869 struct snd_soc_component *component = codec_dai->component;
870 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
878 if (clk_id == WM8753_MCLK) {
879 wm8753->sysclk = freq;
881 } else if (clk_id == WM8753_PCMCLK) {
882 wm8753->pcmclk = freq;
891 * Set's ADC and Voice DAC format.
893 static int wm8753_vdac_adc_set_dai_fmt(struct snd_soc_component *component,
896 u16 voice = snd_soc_component_read32(component, WM8753_PCM) & 0x01ec;
898 /* interface format */
899 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
900 case SND_SOC_DAIFMT_I2S:
903 case SND_SOC_DAIFMT_RIGHT_J:
905 case SND_SOC_DAIFMT_LEFT_J:
908 case SND_SOC_DAIFMT_DSP_A:
911 case SND_SOC_DAIFMT_DSP_B:
918 snd_soc_component_write(component, WM8753_PCM, voice);
923 * Set PCM DAI bit size and sample rate.
925 static int wm8753_pcm_hw_params(struct snd_pcm_substream *substream,
926 struct snd_pcm_hw_params *params,
927 struct snd_soc_dai *dai)
929 struct snd_soc_component *component = dai->component;
930 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
931 u16 voice = snd_soc_component_read32(component, WM8753_PCM) & 0x01f3;
932 u16 srate = snd_soc_component_read32(component, WM8753_SRATE1) & 0x017f;
935 switch (params_width(params)) {
950 if (params_rate(params) * 384 == wm8753->pcmclk)
952 snd_soc_component_write(component, WM8753_SRATE1, srate);
954 snd_soc_component_write(component, WM8753_PCM, voice);
959 * Set's PCM dai fmt and BCLK.
961 static int wm8753_pcm_set_dai_fmt(struct snd_soc_component *component,
966 voice = snd_soc_component_read32(component, WM8753_PCM) & 0x011f;
967 ioctl = snd_soc_component_read32(component, WM8753_IOCTL) & 0x015d;
969 /* set master/slave audio interface */
970 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
971 case SND_SOC_DAIFMT_CBS_CFS:
973 case SND_SOC_DAIFMT_CBM_CFM:
974 ioctl |= 0x2; /* fall through */
975 case SND_SOC_DAIFMT_CBM_CFS:
982 /* clock inversion */
983 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
984 case SND_SOC_DAIFMT_DSP_A:
985 case SND_SOC_DAIFMT_DSP_B:
986 /* frame inversion not valid for DSP modes */
987 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
988 case SND_SOC_DAIFMT_NB_NF:
990 case SND_SOC_DAIFMT_IB_NF:
997 case SND_SOC_DAIFMT_I2S:
998 case SND_SOC_DAIFMT_RIGHT_J:
999 case SND_SOC_DAIFMT_LEFT_J:
1001 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1002 case SND_SOC_DAIFMT_NB_NF:
1004 case SND_SOC_DAIFMT_IB_IF:
1007 case SND_SOC_DAIFMT_IB_NF:
1010 case SND_SOC_DAIFMT_NB_IF:
1021 snd_soc_component_write(component, WM8753_PCM, voice);
1022 snd_soc_component_write(component, WM8753_IOCTL, ioctl);
1026 static int wm8753_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
1027 int div_id, int div)
1029 struct snd_soc_component *component = codec_dai->component;
1034 reg = snd_soc_component_read32(component, WM8753_CLOCK) & 0x003f;
1035 snd_soc_component_write(component, WM8753_CLOCK, reg | div);
1037 case WM8753_BCLKDIV:
1038 reg = snd_soc_component_read32(component, WM8753_SRATE2) & 0x01c7;
1039 snd_soc_component_write(component, WM8753_SRATE2, reg | div);
1041 case WM8753_VXCLKDIV:
1042 reg = snd_soc_component_read32(component, WM8753_SRATE2) & 0x003f;
1043 snd_soc_component_write(component, WM8753_SRATE2, reg | div);
1052 * Set's HiFi DAC format.
1054 static int wm8753_hdac_set_dai_fmt(struct snd_soc_component *component,
1057 u16 hifi = snd_soc_component_read32(component, WM8753_HIFI) & 0x01e0;
1059 /* interface format */
1060 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1061 case SND_SOC_DAIFMT_I2S:
1064 case SND_SOC_DAIFMT_RIGHT_J:
1066 case SND_SOC_DAIFMT_LEFT_J:
1069 case SND_SOC_DAIFMT_DSP_A:
1072 case SND_SOC_DAIFMT_DSP_B:
1079 snd_soc_component_write(component, WM8753_HIFI, hifi);
1084 * Set's I2S DAI format.
1086 static int wm8753_i2s_set_dai_fmt(struct snd_soc_component *component,
1091 hifi = snd_soc_component_read32(component, WM8753_HIFI) & 0x013f;
1092 ioctl = snd_soc_component_read32(component, WM8753_IOCTL) & 0x00ae;
1094 /* set master/slave audio interface */
1095 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1096 case SND_SOC_DAIFMT_CBS_CFS:
1098 case SND_SOC_DAIFMT_CBM_CFM:
1099 ioctl |= 0x1; /* fall through */
1100 case SND_SOC_DAIFMT_CBM_CFS:
1107 /* clock inversion */
1108 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1109 case SND_SOC_DAIFMT_DSP_A:
1110 case SND_SOC_DAIFMT_DSP_B:
1111 /* frame inversion not valid for DSP modes */
1112 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1113 case SND_SOC_DAIFMT_NB_NF:
1115 case SND_SOC_DAIFMT_IB_NF:
1122 case SND_SOC_DAIFMT_I2S:
1123 case SND_SOC_DAIFMT_RIGHT_J:
1124 case SND_SOC_DAIFMT_LEFT_J:
1126 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1127 case SND_SOC_DAIFMT_NB_NF:
1129 case SND_SOC_DAIFMT_IB_IF:
1132 case SND_SOC_DAIFMT_IB_NF:
1135 case SND_SOC_DAIFMT_NB_IF:
1146 snd_soc_component_write(component, WM8753_HIFI, hifi);
1147 snd_soc_component_write(component, WM8753_IOCTL, ioctl);
1152 * Set PCM DAI bit size and sample rate.
1154 static int wm8753_i2s_hw_params(struct snd_pcm_substream *substream,
1155 struct snd_pcm_hw_params *params,
1156 struct snd_soc_dai *dai)
1158 struct snd_soc_component *component = dai->component;
1159 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1160 u16 srate = snd_soc_component_read32(component, WM8753_SRATE1) & 0x01c0;
1161 u16 hifi = snd_soc_component_read32(component, WM8753_HIFI) & 0x01f3;
1164 /* is digital filter coefficient valid ? */
1165 coeff = get_coeff(wm8753->sysclk, params_rate(params));
1167 printk(KERN_ERR "wm8753 invalid MCLK or rate\n");
1170 snd_soc_component_write(component, WM8753_SRATE1, srate | (coeff_div[coeff].sr << 1) |
1171 coeff_div[coeff].usb);
1174 switch (params_width(params)) {
1188 snd_soc_component_write(component, WM8753_HIFI, hifi);
1192 static int wm8753_mode1v_set_dai_fmt(struct snd_soc_component *component,
1197 /* set clk source as pcmclk */
1198 clock = snd_soc_component_read32(component, WM8753_CLOCK) & 0xfffb;
1199 snd_soc_component_write(component, WM8753_CLOCK, clock);
1201 return wm8753_vdac_adc_set_dai_fmt(component, fmt);
1204 static int wm8753_mode1h_set_dai_fmt(struct snd_soc_component *component,
1207 return wm8753_hdac_set_dai_fmt(component, fmt);
1210 static int wm8753_mode2_set_dai_fmt(struct snd_soc_component *component,
1215 /* set clk source as pcmclk */
1216 clock = snd_soc_component_read32(component, WM8753_CLOCK) & 0xfffb;
1217 snd_soc_component_write(component, WM8753_CLOCK, clock);
1219 return wm8753_vdac_adc_set_dai_fmt(component, fmt);
1222 static int wm8753_mode3_4_set_dai_fmt(struct snd_soc_component *component,
1227 /* set clk source as mclk */
1228 clock = snd_soc_component_read32(component, WM8753_CLOCK) & 0xfffb;
1229 snd_soc_component_write(component, WM8753_CLOCK, clock | 0x4);
1231 if (wm8753_hdac_set_dai_fmt(component, fmt) < 0)
1233 return wm8753_vdac_adc_set_dai_fmt(component, fmt);
1236 static int wm8753_hifi_write_dai_fmt(struct snd_soc_component *component,
1239 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1242 switch (wm8753->dai_func) {
1244 ret = wm8753_mode1h_set_dai_fmt(component, fmt);
1247 ret = wm8753_mode2_set_dai_fmt(component, fmt);
1251 ret = wm8753_mode3_4_set_dai_fmt(component, fmt);
1259 return wm8753_i2s_set_dai_fmt(component, fmt);
1262 static int wm8753_hifi_set_dai_fmt(struct snd_soc_dai *codec_dai,
1265 struct snd_soc_component *component = codec_dai->component;
1266 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1268 wm8753->hifi_fmt = fmt;
1270 return wm8753_hifi_write_dai_fmt(component, fmt);
1273 static int wm8753_voice_write_dai_fmt(struct snd_soc_component *component,
1276 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1279 if (wm8753->dai_func != 0)
1282 ret = wm8753_mode1v_set_dai_fmt(component, fmt);
1285 ret = wm8753_pcm_set_dai_fmt(component, fmt);
1292 static int wm8753_voice_set_dai_fmt(struct snd_soc_dai *codec_dai,
1295 struct snd_soc_component *component = codec_dai->component;
1296 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1298 wm8753->voice_fmt = fmt;
1300 return wm8753_voice_write_dai_fmt(component, fmt);
1303 static int wm8753_mute(struct snd_soc_dai *dai, int mute)
1305 struct snd_soc_component *component = dai->component;
1306 u16 mute_reg = snd_soc_component_read32(component, WM8753_DAC) & 0xfff7;
1307 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1309 /* the digital mute covers the HiFi and Voice DAC's on the WM8753.
1310 * make sure we check if they are not both active when we mute */
1311 if (mute && wm8753->dai_func == 1) {
1312 if (!snd_soc_component_is_active(component))
1313 snd_soc_component_write(component, WM8753_DAC, mute_reg | 0x8);
1316 snd_soc_component_write(component, WM8753_DAC, mute_reg | 0x8);
1318 snd_soc_component_write(component, WM8753_DAC, mute_reg);
1324 static void wm8753_charge_work(struct work_struct *work)
1326 struct wm8753_priv *wm8753 =
1327 container_of(work, struct wm8753_priv, charge_work.work);
1330 regmap_update_bits(wm8753->regmap, WM8753_PWR1, 0x0180, 0x0100);
1333 static int wm8753_set_bias_level(struct snd_soc_component *component,
1334 enum snd_soc_bias_level level)
1336 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1337 u16 pwr_reg = snd_soc_component_read32(component, WM8753_PWR1) & 0xfe3e;
1340 case SND_SOC_BIAS_ON:
1341 /* set vmid to 50k and unmute dac */
1342 snd_soc_component_write(component, WM8753_PWR1, pwr_reg | 0x00c0);
1344 case SND_SOC_BIAS_PREPARE:
1345 /* Wait until fully charged */
1346 flush_delayed_work(&wm8753->charge_work);
1348 case SND_SOC_BIAS_STANDBY:
1349 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
1350 /* set vmid to 5k for quick power up */
1351 snd_soc_component_write(component, WM8753_PWR1, pwr_reg | 0x01c1);
1352 schedule_delayed_work(&wm8753->charge_work,
1353 msecs_to_jiffies(caps_charge));
1355 /* mute dac and set vmid to 500k, enable VREF */
1356 snd_soc_component_write(component, WM8753_PWR1, pwr_reg | 0x0141);
1359 case SND_SOC_BIAS_OFF:
1360 cancel_delayed_work_sync(&wm8753->charge_work);
1361 snd_soc_component_write(component, WM8753_PWR1, 0x0001);
1367 #define WM8753_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
1368 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
1369 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1370 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
1372 #define WM8753_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
1373 SNDRV_PCM_FMTBIT_S24_LE)
1376 * The WM8753 supports up to 4 different and mutually exclusive DAI
1377 * configurations. This gives 2 PCM's available for use, hifi and voice.
1378 * NOTE: The Voice PCM cannot play or capture audio to the CPU as it's DAI
1379 * is connected between the wm8753 and a BT codec or GSM modem.
1381 * 1. Voice over PCM DAI - HIFI DAC over HIFI DAI
1382 * 2. Voice over HIFI DAI - HIFI disabled
1383 * 3. Voice disabled - HIFI over HIFI
1384 * 4. Voice disabled - HIFI over HIFI, uses voice DAI LRC for capture
1386 static const struct snd_soc_dai_ops wm8753_dai_ops_hifi_mode = {
1387 .hw_params = wm8753_i2s_hw_params,
1388 .digital_mute = wm8753_mute,
1389 .set_fmt = wm8753_hifi_set_dai_fmt,
1390 .set_clkdiv = wm8753_set_dai_clkdiv,
1391 .set_pll = wm8753_set_dai_pll,
1392 .set_sysclk = wm8753_set_dai_sysclk,
1395 static const struct snd_soc_dai_ops wm8753_dai_ops_voice_mode = {
1396 .hw_params = wm8753_pcm_hw_params,
1397 .digital_mute = wm8753_mute,
1398 .set_fmt = wm8753_voice_set_dai_fmt,
1399 .set_clkdiv = wm8753_set_dai_clkdiv,
1400 .set_pll = wm8753_set_dai_pll,
1401 .set_sysclk = wm8753_set_dai_sysclk,
1404 static struct snd_soc_dai_driver wm8753_dai[] = {
1405 /* DAI HiFi mode 1 */
1406 { .name = "wm8753-hifi",
1408 .stream_name = "HiFi Playback",
1411 .rates = WM8753_RATES,
1412 .formats = WM8753_FORMATS
1414 .capture = { /* dummy for fast DAI switching */
1415 .stream_name = "Capture",
1418 .rates = WM8753_RATES,
1419 .formats = WM8753_FORMATS
1421 .ops = &wm8753_dai_ops_hifi_mode,
1423 /* DAI Voice mode 1 */
1424 { .name = "wm8753-voice",
1426 .stream_name = "Voice Playback",
1429 .rates = WM8753_RATES,
1430 .formats = WM8753_FORMATS,
1433 .stream_name = "Capture",
1436 .rates = WM8753_RATES,
1437 .formats = WM8753_FORMATS,
1439 .ops = &wm8753_dai_ops_voice_mode,
1443 static int wm8753_resume(struct snd_soc_component *component)
1445 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1447 regcache_sync(wm8753->regmap);
1452 static int wm8753_probe(struct snd_soc_component *component)
1454 struct wm8753_priv *wm8753 = snd_soc_component_get_drvdata(component);
1457 INIT_DELAYED_WORK(&wm8753->charge_work, wm8753_charge_work);
1459 ret = wm8753_reset(component);
1461 dev_err(component->dev, "Failed to issue reset: %d\n", ret);
1465 wm8753->dai_func = 0;
1467 /* set the update bits */
1468 snd_soc_component_update_bits(component, WM8753_LDAC, 0x0100, 0x0100);
1469 snd_soc_component_update_bits(component, WM8753_RDAC, 0x0100, 0x0100);
1470 snd_soc_component_update_bits(component, WM8753_LADC, 0x0100, 0x0100);
1471 snd_soc_component_update_bits(component, WM8753_RADC, 0x0100, 0x0100);
1472 snd_soc_component_update_bits(component, WM8753_LOUT1V, 0x0100, 0x0100);
1473 snd_soc_component_update_bits(component, WM8753_ROUT1V, 0x0100, 0x0100);
1474 snd_soc_component_update_bits(component, WM8753_LOUT2V, 0x0100, 0x0100);
1475 snd_soc_component_update_bits(component, WM8753_ROUT2V, 0x0100, 0x0100);
1476 snd_soc_component_update_bits(component, WM8753_LINVOL, 0x0100, 0x0100);
1477 snd_soc_component_update_bits(component, WM8753_RINVOL, 0x0100, 0x0100);
1482 static const struct snd_soc_component_driver soc_component_dev_wm8753 = {
1483 .probe = wm8753_probe,
1484 .resume = wm8753_resume,
1485 .set_bias_level = wm8753_set_bias_level,
1486 .controls = wm8753_snd_controls,
1487 .num_controls = ARRAY_SIZE(wm8753_snd_controls),
1488 .dapm_widgets = wm8753_dapm_widgets,
1489 .num_dapm_widgets = ARRAY_SIZE(wm8753_dapm_widgets),
1490 .dapm_routes = wm8753_dapm_routes,
1491 .num_dapm_routes = ARRAY_SIZE(wm8753_dapm_routes),
1492 .suspend_bias_off = 1,
1494 .use_pmdown_time = 1,
1496 .non_legacy_dai_naming = 1,
1499 static const struct of_device_id wm8753_of_match[] = {
1500 { .compatible = "wlf,wm8753", },
1503 MODULE_DEVICE_TABLE(of, wm8753_of_match);
1505 static const struct regmap_config wm8753_regmap = {
1509 .max_register = WM8753_ADCTL2,
1510 .volatile_reg = wm8753_volatile,
1512 .cache_type = REGCACHE_RBTREE,
1513 .reg_defaults = wm8753_reg_defaults,
1514 .num_reg_defaults = ARRAY_SIZE(wm8753_reg_defaults),
1517 #if defined(CONFIG_SPI_MASTER)
1518 static int wm8753_spi_probe(struct spi_device *spi)
1520 struct wm8753_priv *wm8753;
1523 wm8753 = devm_kzalloc(&spi->dev, sizeof(struct wm8753_priv),
1528 spi_set_drvdata(spi, wm8753);
1530 wm8753->regmap = devm_regmap_init_spi(spi, &wm8753_regmap);
1531 if (IS_ERR(wm8753->regmap)) {
1532 ret = PTR_ERR(wm8753->regmap);
1533 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
1538 ret = devm_snd_soc_register_component(&spi->dev, &soc_component_dev_wm8753,
1539 wm8753_dai, ARRAY_SIZE(wm8753_dai));
1541 dev_err(&spi->dev, "Failed to register CODEC: %d\n", ret);
1546 static struct spi_driver wm8753_spi_driver = {
1549 .of_match_table = wm8753_of_match,
1551 .probe = wm8753_spi_probe,
1553 #endif /* CONFIG_SPI_MASTER */
1555 #if IS_ENABLED(CONFIG_I2C)
1556 static int wm8753_i2c_probe(struct i2c_client *i2c,
1557 const struct i2c_device_id *id)
1559 struct wm8753_priv *wm8753;
1562 wm8753 = devm_kzalloc(&i2c->dev, sizeof(struct wm8753_priv),
1567 i2c_set_clientdata(i2c, wm8753);
1569 wm8753->regmap = devm_regmap_init_i2c(i2c, &wm8753_regmap);
1570 if (IS_ERR(wm8753->regmap)) {
1571 ret = PTR_ERR(wm8753->regmap);
1572 dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
1577 ret = devm_snd_soc_register_component(&i2c->dev, &soc_component_dev_wm8753,
1578 wm8753_dai, ARRAY_SIZE(wm8753_dai));
1580 dev_err(&i2c->dev, "Failed to register CODEC: %d\n", ret);
1585 static const struct i2c_device_id wm8753_i2c_id[] = {
1589 MODULE_DEVICE_TABLE(i2c, wm8753_i2c_id);
1591 static struct i2c_driver wm8753_i2c_driver = {
1594 .of_match_table = wm8753_of_match,
1596 .probe = wm8753_i2c_probe,
1597 .id_table = wm8753_i2c_id,
1601 static int __init wm8753_modinit(void)
1604 #if IS_ENABLED(CONFIG_I2C)
1605 ret = i2c_add_driver(&wm8753_i2c_driver);
1607 printk(KERN_ERR "Failed to register wm8753 I2C driver: %d\n",
1611 #if defined(CONFIG_SPI_MASTER)
1612 ret = spi_register_driver(&wm8753_spi_driver);
1614 printk(KERN_ERR "Failed to register wm8753 SPI driver: %d\n",
1620 module_init(wm8753_modinit);
1622 static void __exit wm8753_exit(void)
1624 #if IS_ENABLED(CONFIG_I2C)
1625 i2c_del_driver(&wm8753_i2c_driver);
1627 #if defined(CONFIG_SPI_MASTER)
1628 spi_unregister_driver(&wm8753_spi_driver);
1631 module_exit(wm8753_exit);
1633 MODULE_DESCRIPTION("ASoC WM8753 driver");
1634 MODULE_AUTHOR("Liam Girdwood");
1635 MODULE_LICENSE("GPL");