1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm8960.c -- WM8960 ALSA SoC Audio driver
5 * Copyright 2007-11 Wolfson Microelectronics, plc
7 * Author: Liam Girdwood
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
15 #include <linux/clk.h>
16 #include <linux/i2c.h>
17 #include <linux/slab.h>
18 #include <sound/core.h>
19 #include <sound/pcm.h>
20 #include <sound/pcm_params.h>
21 #include <sound/soc.h>
22 #include <sound/initval.h>
23 #include <sound/tlv.h>
24 #include <sound/wm8960.h>
29 #define WM8960_VMID_MASK 0x180
30 #define WM8960_VREF 0x40
33 #define WM8960_PWR2_LOUT1 0x40
34 #define WM8960_PWR2_ROUT1 0x20
35 #define WM8960_PWR2_OUT3 0x02
37 /* R28 - Anti-pop 1 */
38 #define WM8960_POBCTRL 0x80
39 #define WM8960_BUFDCOPEN 0x10
40 #define WM8960_BUFIOEN 0x08
41 #define WM8960_SOFT_ST 0x04
42 #define WM8960_HPSTBY 0x01
44 /* R29 - Anti-pop 2 */
45 #define WM8960_DISOP 0x40
46 #define WM8960_DRES_MASK 0x30
48 static bool is_pll_freq_available(unsigned int source
, unsigned int target
);
49 static int wm8960_set_pll(struct snd_soc_component
*component
,
50 unsigned int freq_in
, unsigned int freq_out
);
52 * wm8960 register cache
53 * We can't read the WM8960 register space when we are
54 * using 2 wire for device control, so we cache them instead.
56 static const struct reg_default wm8960_reg_defaults
[] = {
110 static bool wm8960_volatile(struct device
*dev
, unsigned int reg
)
122 struct regmap
*regmap
;
123 int (*set_bias_level
)(struct snd_soc_component
*,
124 enum snd_soc_bias_level level
);
125 struct snd_soc_dapm_widget
*lout1
;
126 struct snd_soc_dapm_widget
*rout1
;
127 struct snd_soc_dapm_widget
*out3
;
134 bool is_stream_in_use
[2];
135 struct wm8960_data pdata
;
138 #define wm8960_reset(c) regmap_write(c, WM8960_RESET, 0)
140 /* enumerated controls */
141 static const char *wm8960_polarity
[] = {"No Inversion", "Left Inverted",
142 "Right Inverted", "Stereo Inversion"};
143 static const char *wm8960_3d_upper_cutoff
[] = {"High", "Low"};
144 static const char *wm8960_3d_lower_cutoff
[] = {"Low", "High"};
145 static const char *wm8960_alcfunc
[] = {"Off", "Right", "Left", "Stereo"};
146 static const char *wm8960_alcmode
[] = {"ALC", "Limiter"};
147 static const char *wm8960_adc_data_output_sel
[] = {
148 "Left Data = Left ADC; Right Data = Right ADC",
149 "Left Data = Left ADC; Right Data = Left ADC",
150 "Left Data = Right ADC; Right Data = Right ADC",
151 "Left Data = Right ADC; Right Data = Left ADC",
153 static const char *wm8960_dmonomix
[] = {"Stereo", "Mono"};
155 static const struct soc_enum wm8960_enum
[] = {
156 SOC_ENUM_SINGLE(WM8960_DACCTL1
, 5, 4, wm8960_polarity
),
157 SOC_ENUM_SINGLE(WM8960_DACCTL2
, 5, 4, wm8960_polarity
),
158 SOC_ENUM_SINGLE(WM8960_3D
, 6, 2, wm8960_3d_upper_cutoff
),
159 SOC_ENUM_SINGLE(WM8960_3D
, 5, 2, wm8960_3d_lower_cutoff
),
160 SOC_ENUM_SINGLE(WM8960_ALC1
, 7, 4, wm8960_alcfunc
),
161 SOC_ENUM_SINGLE(WM8960_ALC3
, 8, 2, wm8960_alcmode
),
162 SOC_ENUM_SINGLE(WM8960_ADDCTL1
, 2, 4, wm8960_adc_data_output_sel
),
163 SOC_ENUM_SINGLE(WM8960_ADDCTL1
, 4, 2, wm8960_dmonomix
),
166 static const int deemph_settings
[] = { 0, 32000, 44100, 48000 };
168 static int wm8960_set_deemph(struct snd_soc_component
*component
)
170 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
173 /* If we're using deemphasis select the nearest available sample
176 if (wm8960
->deemph
) {
178 for (i
= 2; i
< ARRAY_SIZE(deemph_settings
); i
++) {
179 if (abs(deemph_settings
[i
] - wm8960
->lrclk
) <
180 abs(deemph_settings
[best
] - wm8960
->lrclk
))
189 dev_dbg(component
->dev
, "Set deemphasis %d\n", val
);
191 return snd_soc_component_update_bits(component
, WM8960_DACCTL1
,
195 static int wm8960_get_deemph(struct snd_kcontrol
*kcontrol
,
196 struct snd_ctl_elem_value
*ucontrol
)
198 struct snd_soc_component
*component
= snd_soc_kcontrol_component(kcontrol
);
199 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
201 ucontrol
->value
.integer
.value
[0] = wm8960
->deemph
;
205 static int wm8960_put_deemph(struct snd_kcontrol
*kcontrol
,
206 struct snd_ctl_elem_value
*ucontrol
)
208 struct snd_soc_component
*component
= snd_soc_kcontrol_component(kcontrol
);
209 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
210 unsigned int deemph
= ucontrol
->value
.integer
.value
[0];
215 wm8960
->deemph
= deemph
;
217 return wm8960_set_deemph(component
);
220 static const DECLARE_TLV_DB_SCALE(adc_tlv
, -9750, 50, 1);
221 static const DECLARE_TLV_DB_SCALE(inpga_tlv
, -1725, 75, 0);
222 static const DECLARE_TLV_DB_SCALE(dac_tlv
, -12750, 50, 1);
223 static const DECLARE_TLV_DB_SCALE(bypass_tlv
, -2100, 300, 0);
224 static const DECLARE_TLV_DB_SCALE(out_tlv
, -12100, 100, 1);
225 static const DECLARE_TLV_DB_SCALE(lineinboost_tlv
, -1500, 300, 1);
226 static const SNDRV_CTL_TLVD_DECLARE_DB_RANGE(micboost_tlv
,
227 0, 1, TLV_DB_SCALE_ITEM(0, 1300, 0),
228 2, 3, TLV_DB_SCALE_ITEM(2000, 900, 0),
231 static const struct snd_kcontrol_new wm8960_snd_controls
[] = {
232 SOC_DOUBLE_R_TLV("Capture Volume", WM8960_LINVOL
, WM8960_RINVOL
,
233 0, 63, 0, inpga_tlv
),
234 SOC_DOUBLE_R("Capture Volume ZC Switch", WM8960_LINVOL
, WM8960_RINVOL
,
236 SOC_DOUBLE_R("Capture Switch", WM8960_LINVOL
, WM8960_RINVOL
,
239 SOC_SINGLE_TLV("Left Input Boost Mixer LINPUT3 Volume",
240 WM8960_INBMIX1
, 4, 7, 0, lineinboost_tlv
),
241 SOC_SINGLE_TLV("Left Input Boost Mixer LINPUT2 Volume",
242 WM8960_INBMIX1
, 1, 7, 0, lineinboost_tlv
),
243 SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT3 Volume",
244 WM8960_INBMIX2
, 4, 7, 0, lineinboost_tlv
),
245 SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT2 Volume",
246 WM8960_INBMIX2
, 1, 7, 0, lineinboost_tlv
),
247 SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT1 Volume",
248 WM8960_RINPATH
, 4, 3, 0, micboost_tlv
),
249 SOC_SINGLE_TLV("Left Input Boost Mixer LINPUT1 Volume",
250 WM8960_LINPATH
, 4, 3, 0, micboost_tlv
),
252 SOC_DOUBLE_R_TLV("Playback Volume", WM8960_LDAC
, WM8960_RDAC
,
255 SOC_DOUBLE_R_TLV("Headphone Playback Volume", WM8960_LOUT1
, WM8960_ROUT1
,
257 SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8960_LOUT1
, WM8960_ROUT1
,
260 SOC_DOUBLE_R_TLV("Speaker Playback Volume", WM8960_LOUT2
, WM8960_ROUT2
,
262 SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8960_LOUT2
, WM8960_ROUT2
,
264 SOC_SINGLE("Speaker DC Volume", WM8960_CLASSD3
, 3, 5, 0),
265 SOC_SINGLE("Speaker AC Volume", WM8960_CLASSD3
, 0, 5, 0),
267 SOC_SINGLE("PCM Playback -6dB Switch", WM8960_DACCTL1
, 7, 1, 0),
268 SOC_ENUM("ADC Polarity", wm8960_enum
[0]),
269 SOC_SINGLE("ADC High Pass Filter Switch", WM8960_DACCTL1
, 0, 1, 0),
271 SOC_ENUM("DAC Polarity", wm8960_enum
[1]),
272 SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0,
273 wm8960_get_deemph
, wm8960_put_deemph
),
275 SOC_ENUM("3D Filter Upper Cut-Off", wm8960_enum
[2]),
276 SOC_ENUM("3D Filter Lower Cut-Off", wm8960_enum
[3]),
277 SOC_SINGLE("3D Volume", WM8960_3D
, 1, 15, 0),
278 SOC_SINGLE("3D Switch", WM8960_3D
, 0, 1, 0),
280 SOC_ENUM("ALC Function", wm8960_enum
[4]),
281 SOC_SINGLE("ALC Max Gain", WM8960_ALC1
, 4, 7, 0),
282 SOC_SINGLE("ALC Target", WM8960_ALC1
, 0, 15, 1),
283 SOC_SINGLE("ALC Min Gain", WM8960_ALC2
, 4, 7, 0),
284 SOC_SINGLE("ALC Hold Time", WM8960_ALC2
, 0, 15, 0),
285 SOC_ENUM("ALC Mode", wm8960_enum
[5]),
286 SOC_SINGLE("ALC Decay", WM8960_ALC3
, 4, 15, 0),
287 SOC_SINGLE("ALC Attack", WM8960_ALC3
, 0, 15, 0),
289 SOC_SINGLE("Noise Gate Threshold", WM8960_NOISEG
, 3, 31, 0),
290 SOC_SINGLE("Noise Gate Switch", WM8960_NOISEG
, 0, 1, 0),
292 SOC_DOUBLE_R_TLV("ADC PCM Capture Volume", WM8960_LADC
, WM8960_RADC
,
295 SOC_SINGLE_TLV("Left Output Mixer Boost Bypass Volume",
296 WM8960_BYPASS1
, 4, 7, 1, bypass_tlv
),
297 SOC_SINGLE_TLV("Left Output Mixer LINPUT3 Volume",
298 WM8960_LOUTMIX
, 4, 7, 1, bypass_tlv
),
299 SOC_SINGLE_TLV("Right Output Mixer Boost Bypass Volume",
300 WM8960_BYPASS2
, 4, 7, 1, bypass_tlv
),
301 SOC_SINGLE_TLV("Right Output Mixer RINPUT3 Volume",
302 WM8960_ROUTMIX
, 4, 7, 1, bypass_tlv
),
304 SOC_ENUM("ADC Data Output Select", wm8960_enum
[6]),
305 SOC_ENUM("DAC Mono Mix", wm8960_enum
[7]),
308 static const struct snd_kcontrol_new wm8960_lin_boost
[] = {
309 SOC_DAPM_SINGLE("LINPUT2 Switch", WM8960_LINPATH
, 6, 1, 0),
310 SOC_DAPM_SINGLE("LINPUT3 Switch", WM8960_LINPATH
, 7, 1, 0),
311 SOC_DAPM_SINGLE("LINPUT1 Switch", WM8960_LINPATH
, 8, 1, 0),
314 static const struct snd_kcontrol_new wm8960_lin
[] = {
315 SOC_DAPM_SINGLE("Boost Switch", WM8960_LINPATH
, 3, 1, 0),
318 static const struct snd_kcontrol_new wm8960_rin_boost
[] = {
319 SOC_DAPM_SINGLE("RINPUT2 Switch", WM8960_RINPATH
, 6, 1, 0),
320 SOC_DAPM_SINGLE("RINPUT3 Switch", WM8960_RINPATH
, 7, 1, 0),
321 SOC_DAPM_SINGLE("RINPUT1 Switch", WM8960_RINPATH
, 8, 1, 0),
324 static const struct snd_kcontrol_new wm8960_rin
[] = {
325 SOC_DAPM_SINGLE("Boost Switch", WM8960_RINPATH
, 3, 1, 0),
328 static const struct snd_kcontrol_new wm8960_loutput_mixer
[] = {
329 SOC_DAPM_SINGLE("PCM Playback Switch", WM8960_LOUTMIX
, 8, 1, 0),
330 SOC_DAPM_SINGLE("LINPUT3 Switch", WM8960_LOUTMIX
, 7, 1, 0),
331 SOC_DAPM_SINGLE("Boost Bypass Switch", WM8960_BYPASS1
, 7, 1, 0),
334 static const struct snd_kcontrol_new wm8960_routput_mixer
[] = {
335 SOC_DAPM_SINGLE("PCM Playback Switch", WM8960_ROUTMIX
, 8, 1, 0),
336 SOC_DAPM_SINGLE("RINPUT3 Switch", WM8960_ROUTMIX
, 7, 1, 0),
337 SOC_DAPM_SINGLE("Boost Bypass Switch", WM8960_BYPASS2
, 7, 1, 0),
340 static const struct snd_kcontrol_new wm8960_mono_out
[] = {
341 SOC_DAPM_SINGLE("Left Switch", WM8960_MONOMIX1
, 7, 1, 0),
342 SOC_DAPM_SINGLE("Right Switch", WM8960_MONOMIX2
, 7, 1, 0),
345 static const struct snd_soc_dapm_widget wm8960_dapm_widgets
[] = {
346 SND_SOC_DAPM_INPUT("LINPUT1"),
347 SND_SOC_DAPM_INPUT("RINPUT1"),
348 SND_SOC_DAPM_INPUT("LINPUT2"),
349 SND_SOC_DAPM_INPUT("RINPUT2"),
350 SND_SOC_DAPM_INPUT("LINPUT3"),
351 SND_SOC_DAPM_INPUT("RINPUT3"),
353 SND_SOC_DAPM_SUPPLY("MICB", WM8960_POWER1
, 1, 0, NULL
, 0),
355 SND_SOC_DAPM_MIXER("Left Boost Mixer", WM8960_POWER1
, 5, 0,
356 wm8960_lin_boost
, ARRAY_SIZE(wm8960_lin_boost
)),
357 SND_SOC_DAPM_MIXER("Right Boost Mixer", WM8960_POWER1
, 4, 0,
358 wm8960_rin_boost
, ARRAY_SIZE(wm8960_rin_boost
)),
360 SND_SOC_DAPM_MIXER("Left Input Mixer", WM8960_POWER3
, 5, 0,
361 wm8960_lin
, ARRAY_SIZE(wm8960_lin
)),
362 SND_SOC_DAPM_MIXER("Right Input Mixer", WM8960_POWER3
, 4, 0,
363 wm8960_rin
, ARRAY_SIZE(wm8960_rin
)),
365 SND_SOC_DAPM_ADC("Left ADC", "Capture", WM8960_POWER1
, 3, 0),
366 SND_SOC_DAPM_ADC("Right ADC", "Capture", WM8960_POWER1
, 2, 0),
368 SND_SOC_DAPM_DAC("Left DAC", "Playback", WM8960_POWER2
, 8, 0),
369 SND_SOC_DAPM_DAC("Right DAC", "Playback", WM8960_POWER2
, 7, 0),
371 SND_SOC_DAPM_MIXER("Left Output Mixer", WM8960_POWER3
, 3, 0,
372 &wm8960_loutput_mixer
[0],
373 ARRAY_SIZE(wm8960_loutput_mixer
)),
374 SND_SOC_DAPM_MIXER("Right Output Mixer", WM8960_POWER3
, 2, 0,
375 &wm8960_routput_mixer
[0],
376 ARRAY_SIZE(wm8960_routput_mixer
)),
378 SND_SOC_DAPM_PGA("LOUT1 PGA", WM8960_POWER2
, 6, 0, NULL
, 0),
379 SND_SOC_DAPM_PGA("ROUT1 PGA", WM8960_POWER2
, 5, 0, NULL
, 0),
381 SND_SOC_DAPM_PGA("Left Speaker PGA", WM8960_POWER2
, 4, 0, NULL
, 0),
382 SND_SOC_DAPM_PGA("Right Speaker PGA", WM8960_POWER2
, 3, 0, NULL
, 0),
384 SND_SOC_DAPM_PGA("Right Speaker Output", WM8960_CLASSD1
, 7, 0, NULL
, 0),
385 SND_SOC_DAPM_PGA("Left Speaker Output", WM8960_CLASSD1
, 6, 0, NULL
, 0),
387 SND_SOC_DAPM_OUTPUT("SPK_LP"),
388 SND_SOC_DAPM_OUTPUT("SPK_LN"),
389 SND_SOC_DAPM_OUTPUT("HP_L"),
390 SND_SOC_DAPM_OUTPUT("HP_R"),
391 SND_SOC_DAPM_OUTPUT("SPK_RP"),
392 SND_SOC_DAPM_OUTPUT("SPK_RN"),
393 SND_SOC_DAPM_OUTPUT("OUT3"),
396 static const struct snd_soc_dapm_widget wm8960_dapm_widgets_out3
[] = {
397 SND_SOC_DAPM_MIXER("Mono Output Mixer", WM8960_POWER2
, 1, 0,
399 ARRAY_SIZE(wm8960_mono_out
)),
402 /* Represent OUT3 as a PGA so that it gets turned on with LOUT1/ROUT1 */
403 static const struct snd_soc_dapm_widget wm8960_dapm_widgets_capless
[] = {
404 SND_SOC_DAPM_PGA("OUT3 VMID", WM8960_POWER2
, 1, 0, NULL
, 0),
407 static const struct snd_soc_dapm_route audio_paths
[] = {
408 { "Left Boost Mixer", "LINPUT1 Switch", "LINPUT1" },
409 { "Left Boost Mixer", "LINPUT2 Switch", "LINPUT2" },
410 { "Left Boost Mixer", "LINPUT3 Switch", "LINPUT3" },
412 { "Left Input Mixer", "Boost Switch", "Left Boost Mixer" },
413 { "Left Input Mixer", "Boost Switch", "LINPUT1" }, /* Really Boost Switch */
414 { "Left Input Mixer", NULL
, "LINPUT2" },
415 { "Left Input Mixer", NULL
, "LINPUT3" },
417 { "Right Boost Mixer", "RINPUT1 Switch", "RINPUT1" },
418 { "Right Boost Mixer", "RINPUT2 Switch", "RINPUT2" },
419 { "Right Boost Mixer", "RINPUT3 Switch", "RINPUT3" },
421 { "Right Input Mixer", "Boost Switch", "Right Boost Mixer" },
422 { "Right Input Mixer", "Boost Switch", "RINPUT1" }, /* Really Boost Switch */
423 { "Right Input Mixer", NULL
, "RINPUT2" },
424 { "Right Input Mixer", NULL
, "RINPUT3" },
426 { "Left ADC", NULL
, "Left Input Mixer" },
427 { "Right ADC", NULL
, "Right Input Mixer" },
429 { "Left Output Mixer", "LINPUT3 Switch", "LINPUT3" },
430 { "Left Output Mixer", "Boost Bypass Switch", "Left Boost Mixer" },
431 { "Left Output Mixer", "PCM Playback Switch", "Left DAC" },
433 { "Right Output Mixer", "RINPUT3 Switch", "RINPUT3" },
434 { "Right Output Mixer", "Boost Bypass Switch", "Right Boost Mixer" },
435 { "Right Output Mixer", "PCM Playback Switch", "Right DAC" },
437 { "LOUT1 PGA", NULL
, "Left Output Mixer" },
438 { "ROUT1 PGA", NULL
, "Right Output Mixer" },
440 { "HP_L", NULL
, "LOUT1 PGA" },
441 { "HP_R", NULL
, "ROUT1 PGA" },
443 { "Left Speaker PGA", NULL
, "Left Output Mixer" },
444 { "Right Speaker PGA", NULL
, "Right Output Mixer" },
446 { "Left Speaker Output", NULL
, "Left Speaker PGA" },
447 { "Right Speaker Output", NULL
, "Right Speaker PGA" },
449 { "SPK_LN", NULL
, "Left Speaker Output" },
450 { "SPK_LP", NULL
, "Left Speaker Output" },
451 { "SPK_RN", NULL
, "Right Speaker Output" },
452 { "SPK_RP", NULL
, "Right Speaker Output" },
455 static const struct snd_soc_dapm_route audio_paths_out3
[] = {
456 { "Mono Output Mixer", "Left Switch", "Left Output Mixer" },
457 { "Mono Output Mixer", "Right Switch", "Right Output Mixer" },
459 { "OUT3", NULL
, "Mono Output Mixer", }
462 static const struct snd_soc_dapm_route audio_paths_capless
[] = {
463 { "HP_L", NULL
, "OUT3 VMID" },
464 { "HP_R", NULL
, "OUT3 VMID" },
466 { "OUT3 VMID", NULL
, "Left Output Mixer" },
467 { "OUT3 VMID", NULL
, "Right Output Mixer" },
470 static int wm8960_add_widgets(struct snd_soc_component
*component
)
472 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
473 struct wm8960_data
*pdata
= &wm8960
->pdata
;
474 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(component
);
475 struct snd_soc_dapm_widget
*w
;
477 snd_soc_dapm_new_controls(dapm
, wm8960_dapm_widgets
,
478 ARRAY_SIZE(wm8960_dapm_widgets
));
480 snd_soc_dapm_add_routes(dapm
, audio_paths
, ARRAY_SIZE(audio_paths
));
482 /* In capless mode OUT3 is used to provide VMID for the
483 * headphone outputs, otherwise it is used as a mono mixer.
485 if (pdata
&& pdata
->capless
) {
486 snd_soc_dapm_new_controls(dapm
, wm8960_dapm_widgets_capless
,
487 ARRAY_SIZE(wm8960_dapm_widgets_capless
));
489 snd_soc_dapm_add_routes(dapm
, audio_paths_capless
,
490 ARRAY_SIZE(audio_paths_capless
));
492 snd_soc_dapm_new_controls(dapm
, wm8960_dapm_widgets_out3
,
493 ARRAY_SIZE(wm8960_dapm_widgets_out3
));
495 snd_soc_dapm_add_routes(dapm
, audio_paths_out3
,
496 ARRAY_SIZE(audio_paths_out3
));
499 /* We need to power up the headphone output stage out of
500 * sequence for capless mode. To save scanning the widget
501 * list each time to find the desired power state do so now
502 * and save the result.
504 list_for_each_entry(w
, &component
->card
->widgets
, list
) {
507 if (strcmp(w
->name
, "LOUT1 PGA") == 0)
509 if (strcmp(w
->name
, "ROUT1 PGA") == 0)
511 if (strcmp(w
->name
, "OUT3 VMID") == 0)
518 static int wm8960_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
521 struct snd_soc_component
*component
= codec_dai
->component
;
524 /* set master/slave audio interface */
525 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
526 case SND_SOC_DAIFMT_CBM_CFM
:
529 case SND_SOC_DAIFMT_CBS_CFS
:
535 /* interface format */
536 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
537 case SND_SOC_DAIFMT_I2S
:
540 case SND_SOC_DAIFMT_RIGHT_J
:
542 case SND_SOC_DAIFMT_LEFT_J
:
545 case SND_SOC_DAIFMT_DSP_A
:
548 case SND_SOC_DAIFMT_DSP_B
:
555 /* clock inversion */
556 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
557 case SND_SOC_DAIFMT_NB_NF
:
559 case SND_SOC_DAIFMT_IB_IF
:
562 case SND_SOC_DAIFMT_IB_NF
:
565 case SND_SOC_DAIFMT_NB_IF
:
573 snd_soc_component_write(component
, WM8960_IFACE1
, iface
);
592 /* -1 for reserved value */
593 static const int sysclk_divs
[] = { 1, -1, 2, -1 };
595 /* Multiply 256 for internal 256 div */
596 static const int dac_divs
[] = { 256, 384, 512, 768, 1024, 1408, 1536 };
598 /* Multiply 10 to eliminate decimials */
599 static const int bclk_divs
[] = {
600 10, 15, 20, 30, 40, 55, 60, 80, 110,
601 120, 160, 220, 240, 320, 320, 320
605 * wm8960_configure_sysclk - checks if there is a sysclk frequency available
606 * The sysclk must be chosen such that:
607 * - sysclk = MCLK / sysclk_divs
608 * - lrclk = sysclk / dac_divs
609 * - 10 * bclk = sysclk / bclk_divs
611 * If we cannot find an exact match for (sysclk, lrclk, bclk)
612 * triplet, we relax the bclk such that bclk is chosen as the
613 * closest available frequency greater than expected bclk.
615 * @wm8960_priv: wm8960 codec private data
616 * @mclk: MCLK used to derive sysclk
617 * @sysclk_idx: sysclk_divs index for found sysclk
618 * @dac_idx: dac_divs index for found lrclk
619 * @bclk_idx: bclk_divs index for found bclk
622 * -1, in case no sysclk frequency available found
623 * >=0, in case we could derive bclk and lrclk from sysclk using
624 * (@sysclk_idx, @dac_idx, @bclk_idx) dividers
627 int wm8960_configure_sysclk(struct wm8960_priv
*wm8960
, int mclk
,
628 int *sysclk_idx
, int *dac_idx
, int *bclk_idx
)
630 int sysclk
, bclk
, lrclk
;
632 int diff
, closest
= mclk
;
634 /* marker for no match */
638 lrclk
= wm8960
->lrclk
;
640 /* check if the sysclk frequency is available. */
641 for (i
= 0; i
< ARRAY_SIZE(sysclk_divs
); ++i
) {
642 if (sysclk_divs
[i
] == -1)
644 sysclk
= mclk
/ sysclk_divs
[i
];
645 for (j
= 0; j
< ARRAY_SIZE(dac_divs
); ++j
) {
646 if (sysclk
!= dac_divs
[j
] * lrclk
)
648 for (k
= 0; k
< ARRAY_SIZE(bclk_divs
); ++k
) {
649 diff
= sysclk
- bclk
* bclk_divs
[k
] / 10;
656 if (diff
> 0 && closest
> diff
) {
663 if (k
!= ARRAY_SIZE(bclk_divs
))
666 if (j
!= ARRAY_SIZE(dac_divs
))
673 * wm8960_configure_pll - checks if there is a PLL out frequency available
674 * The PLL out frequency must be chosen such that:
675 * - sysclk = lrclk * dac_divs
676 * - freq_out = sysclk * sysclk_divs
677 * - 10 * sysclk = bclk * bclk_divs
679 * If we cannot find an exact match for (sysclk, lrclk, bclk)
680 * triplet, we relax the bclk such that bclk is chosen as the
681 * closest available frequency greater than expected bclk.
683 * @component: component structure
684 * @freq_in: input frequency used to derive freq out via PLL
685 * @sysclk_idx: sysclk_divs index for found sysclk
686 * @dac_idx: dac_divs index for found lrclk
687 * @bclk_idx: bclk_divs index for found bclk
690 * < 0, in case no PLL frequency out available was found
691 * >=0, in case we could derive bclk, lrclk, sysclk from PLL out using
692 * (@sysclk_idx, @dac_idx, @bclk_idx) dividers
695 int wm8960_configure_pll(struct snd_soc_component
*component
, int freq_in
,
696 int *sysclk_idx
, int *dac_idx
, int *bclk_idx
)
698 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
699 int sysclk
, bclk
, lrclk
, freq_out
;
700 int diff
, closest
, best_freq_out
;
704 lrclk
= wm8960
->lrclk
;
707 best_freq_out
= -EINVAL
;
708 *sysclk_idx
= *dac_idx
= *bclk_idx
= -1;
710 for (i
= 0; i
< ARRAY_SIZE(sysclk_divs
); ++i
) {
711 if (sysclk_divs
[i
] == -1)
713 for (j
= 0; j
< ARRAY_SIZE(dac_divs
); ++j
) {
714 sysclk
= lrclk
* dac_divs
[j
];
715 freq_out
= sysclk
* sysclk_divs
[i
];
717 for (k
= 0; k
< ARRAY_SIZE(bclk_divs
); ++k
) {
718 if (!is_pll_freq_available(freq_in
, freq_out
))
721 diff
= sysclk
- bclk
* bclk_divs
[k
] / 10;
728 if (diff
> 0 && closest
> diff
) {
733 best_freq_out
= freq_out
;
739 return best_freq_out
;
741 static int wm8960_configure_clocking(struct snd_soc_component
*component
)
743 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
744 int freq_out
, freq_in
;
745 u16 iface1
= snd_soc_component_read32(component
, WM8960_IFACE1
);
749 if (!(iface1
& (1<<6))) {
750 dev_dbg(component
->dev
,
751 "Codec is slave mode, no need to configure clock\n");
755 if (wm8960
->clk_id
!= WM8960_SYSCLK_MCLK
&& !wm8960
->freq_in
) {
756 dev_err(component
->dev
, "No MCLK configured\n");
760 freq_in
= wm8960
->freq_in
;
762 * If it's sysclk auto mode, check if the MCLK can provide sysclk or
763 * not. If MCLK can provide sysclk, using MCLK to provide sysclk
764 * directly. Otherwise, auto select a available pll out frequency
767 if (wm8960
->clk_id
== WM8960_SYSCLK_AUTO
) {
768 /* disable the PLL and using MCLK to provide sysclk */
769 wm8960_set_pll(component
, 0, 0);
771 } else if (wm8960
->sysclk
) {
772 freq_out
= wm8960
->sysclk
;
774 dev_err(component
->dev
, "No SYSCLK configured\n");
778 if (wm8960
->clk_id
!= WM8960_SYSCLK_PLL
) {
779 ret
= wm8960_configure_sysclk(wm8960
, freq_out
, &i
, &j
, &k
);
781 goto configure_clock
;
782 } else if (wm8960
->clk_id
!= WM8960_SYSCLK_AUTO
) {
783 dev_err(component
->dev
, "failed to configure clock\n");
788 freq_out
= wm8960_configure_pll(component
, freq_in
, &i
, &j
, &k
);
790 dev_err(component
->dev
, "failed to configure clock via PLL\n");
793 wm8960_set_pll(component
, freq_in
, freq_out
);
796 /* configure sysclk clock */
797 snd_soc_component_update_bits(component
, WM8960_CLOCK1
, 3 << 1, i
<< 1);
799 /* configure frame clock */
800 snd_soc_component_update_bits(component
, WM8960_CLOCK1
, 0x7 << 3, j
<< 3);
801 snd_soc_component_update_bits(component
, WM8960_CLOCK1
, 0x7 << 6, j
<< 6);
803 /* configure bit clock */
804 snd_soc_component_update_bits(component
, WM8960_CLOCK2
, 0xf, k
);
809 static int wm8960_hw_params(struct snd_pcm_substream
*substream
,
810 struct snd_pcm_hw_params
*params
,
811 struct snd_soc_dai
*dai
)
813 struct snd_soc_component
*component
= dai
->component
;
814 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
815 u16 iface
= snd_soc_component_read32(component
, WM8960_IFACE1
) & 0xfff3;
816 bool tx
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
819 wm8960
->bclk
= snd_soc_params_to_bclk(params
);
820 if (params_channels(params
) == 1)
824 switch (params_width(params
)) {
834 /* right justify mode does not support 32 word length */
835 if ((iface
& 0x3) != 0) {
841 dev_err(component
->dev
, "unsupported width %d\n",
842 params_width(params
));
846 wm8960
->lrclk
= params_rate(params
);
847 /* Update filters for the new rate */
849 wm8960_set_deemph(component
);
851 for (i
= 0; i
< ARRAY_SIZE(alc_rates
); i
++)
852 if (alc_rates
[i
].rate
== params_rate(params
))
853 snd_soc_component_update_bits(component
,
859 snd_soc_component_write(component
, WM8960_IFACE1
, iface
);
861 wm8960
->is_stream_in_use
[tx
] = true;
863 if (snd_soc_component_get_bias_level(component
) == SND_SOC_BIAS_ON
&&
864 !wm8960
->is_stream_in_use
[!tx
])
865 return wm8960_configure_clocking(component
);
870 static int wm8960_hw_free(struct snd_pcm_substream
*substream
,
871 struct snd_soc_dai
*dai
)
873 struct snd_soc_component
*component
= dai
->component
;
874 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
875 bool tx
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
877 wm8960
->is_stream_in_use
[tx
] = false;
882 static int wm8960_mute(struct snd_soc_dai
*dai
, int mute
)
884 struct snd_soc_component
*component
= dai
->component
;
887 snd_soc_component_update_bits(component
, WM8960_DACCTL1
, 0x8, 0x8);
889 snd_soc_component_update_bits(component
, WM8960_DACCTL1
, 0x8, 0);
893 static int wm8960_set_bias_level_out3(struct snd_soc_component
*component
,
894 enum snd_soc_bias_level level
)
896 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
897 u16 pm2
= snd_soc_component_read32(component
, WM8960_POWER2
);
901 case SND_SOC_BIAS_ON
:
904 case SND_SOC_BIAS_PREPARE
:
905 switch (snd_soc_component_get_bias_level(component
)) {
906 case SND_SOC_BIAS_STANDBY
:
907 if (!IS_ERR(wm8960
->mclk
)) {
908 ret
= clk_prepare_enable(wm8960
->mclk
);
910 dev_err(component
->dev
,
911 "Failed to enable MCLK: %d\n",
917 ret
= wm8960_configure_clocking(component
);
921 /* Set VMID to 2x50k */
922 snd_soc_component_update_bits(component
, WM8960_POWER1
, 0x180, 0x80);
925 case SND_SOC_BIAS_ON
:
927 * If it's sysclk auto mode, and the pll is enabled,
930 if (wm8960
->clk_id
== WM8960_SYSCLK_AUTO
&& (pm2
& 0x1))
931 wm8960_set_pll(component
, 0, 0);
933 if (!IS_ERR(wm8960
->mclk
))
934 clk_disable_unprepare(wm8960
->mclk
);
943 case SND_SOC_BIAS_STANDBY
:
944 if (snd_soc_component_get_bias_level(component
) == SND_SOC_BIAS_OFF
) {
945 regcache_sync(wm8960
->regmap
);
947 /* Enable anti-pop features */
948 snd_soc_component_write(component
, WM8960_APOP1
,
949 WM8960_POBCTRL
| WM8960_SOFT_ST
|
950 WM8960_BUFDCOPEN
| WM8960_BUFIOEN
);
952 /* Enable & ramp VMID at 2x50k */
953 snd_soc_component_update_bits(component
, WM8960_POWER1
, 0x80, 0x80);
957 snd_soc_component_update_bits(component
, WM8960_POWER1
, WM8960_VREF
,
960 /* Disable anti-pop features */
961 snd_soc_component_write(component
, WM8960_APOP1
, WM8960_BUFIOEN
);
964 /* Set VMID to 2x250k */
965 snd_soc_component_update_bits(component
, WM8960_POWER1
, 0x180, 0x100);
968 case SND_SOC_BIAS_OFF
:
969 /* Enable anti-pop features */
970 snd_soc_component_write(component
, WM8960_APOP1
,
971 WM8960_POBCTRL
| WM8960_SOFT_ST
|
972 WM8960_BUFDCOPEN
| WM8960_BUFIOEN
);
974 /* Disable VMID and VREF, let them discharge */
975 snd_soc_component_write(component
, WM8960_POWER1
, 0);
983 static int wm8960_set_bias_level_capless(struct snd_soc_component
*component
,
984 enum snd_soc_bias_level level
)
986 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
987 u16 pm2
= snd_soc_component_read32(component
, WM8960_POWER2
);
991 case SND_SOC_BIAS_ON
:
994 case SND_SOC_BIAS_PREPARE
:
995 switch (snd_soc_component_get_bias_level(component
)) {
996 case SND_SOC_BIAS_STANDBY
:
997 /* Enable anti pop mode */
998 snd_soc_component_update_bits(component
, WM8960_APOP1
,
999 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1001 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1004 /* Enable LOUT1, ROUT1 and OUT3 if they're enabled */
1006 if (wm8960
->lout1
&& wm8960
->lout1
->power
)
1007 reg
|= WM8960_PWR2_LOUT1
;
1008 if (wm8960
->rout1
&& wm8960
->rout1
->power
)
1009 reg
|= WM8960_PWR2_ROUT1
;
1010 if (wm8960
->out3
&& wm8960
->out3
->power
)
1011 reg
|= WM8960_PWR2_OUT3
;
1012 snd_soc_component_update_bits(component
, WM8960_POWER2
,
1015 WM8960_PWR2_OUT3
, reg
);
1017 /* Enable VMID at 2*50k */
1018 snd_soc_component_update_bits(component
, WM8960_POWER1
,
1019 WM8960_VMID_MASK
, 0x80);
1025 snd_soc_component_update_bits(component
, WM8960_POWER1
,
1026 WM8960_VREF
, WM8960_VREF
);
1030 if (!IS_ERR(wm8960
->mclk
)) {
1031 ret
= clk_prepare_enable(wm8960
->mclk
);
1033 dev_err(component
->dev
,
1034 "Failed to enable MCLK: %d\n",
1040 ret
= wm8960_configure_clocking(component
);
1046 case SND_SOC_BIAS_ON
:
1048 * If it's sysclk auto mode, and the pll is enabled,
1051 if (wm8960
->clk_id
== WM8960_SYSCLK_AUTO
&& (pm2
& 0x1))
1052 wm8960_set_pll(component
, 0, 0);
1054 if (!IS_ERR(wm8960
->mclk
))
1055 clk_disable_unprepare(wm8960
->mclk
);
1057 /* Enable anti-pop mode */
1058 snd_soc_component_update_bits(component
, WM8960_APOP1
,
1059 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1061 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1064 /* Disable VMID and VREF */
1065 snd_soc_component_update_bits(component
, WM8960_POWER1
,
1066 WM8960_VREF
| WM8960_VMID_MASK
, 0);
1069 case SND_SOC_BIAS_OFF
:
1070 regcache_sync(wm8960
->regmap
);
1077 case SND_SOC_BIAS_STANDBY
:
1078 switch (snd_soc_component_get_bias_level(component
)) {
1079 case SND_SOC_BIAS_PREPARE
:
1080 /* Disable HP discharge */
1081 snd_soc_component_update_bits(component
, WM8960_APOP2
,
1082 WM8960_DISOP
| WM8960_DRES_MASK
,
1085 /* Disable anti-pop features */
1086 snd_soc_component_update_bits(component
, WM8960_APOP1
,
1087 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1089 WM8960_POBCTRL
| WM8960_SOFT_ST
|
1098 case SND_SOC_BIAS_OFF
:
1112 static bool is_pll_freq_available(unsigned int source
, unsigned int target
)
1116 if (source
== 0 || target
== 0)
1119 /* Scale up target to PLL operating frequency */
1121 Ndiv
= target
/ source
;
1125 Ndiv
= target
/ source
;
1128 if ((Ndiv
< 6) || (Ndiv
> 12))
1134 /* The size in bits of the pll divide multiplied by 10
1135 * to allow rounding later */
1136 #define FIXED_PLL_SIZE ((1 << 24) * 10)
1138 static int pll_factors(unsigned int source
, unsigned int target
,
1139 struct _pll_div
*pll_div
)
1141 unsigned long long Kpart
;
1142 unsigned int K
, Ndiv
, Nmod
;
1144 pr_debug("WM8960 PLL: setting %dHz->%dHz\n", source
, target
);
1146 /* Scale up target to PLL operating frequency */
1149 Ndiv
= target
/ source
;
1152 pll_div
->pre_div
= 1;
1153 Ndiv
= target
/ source
;
1155 pll_div
->pre_div
= 0;
1157 if ((Ndiv
< 6) || (Ndiv
> 12)) {
1158 pr_err("WM8960 PLL: Unsupported N=%d\n", Ndiv
);
1163 Nmod
= target
% source
;
1164 Kpart
= FIXED_PLL_SIZE
* (long long)Nmod
;
1166 do_div(Kpart
, source
);
1168 K
= Kpart
& 0xFFFFFFFF;
1170 /* Check if we need to round */
1174 /* Move down to proper range now rounding is done */
1179 pr_debug("WM8960 PLL: N=%x K=%x pre_div=%d\n",
1180 pll_div
->n
, pll_div
->k
, pll_div
->pre_div
);
1185 static int wm8960_set_pll(struct snd_soc_component
*component
,
1186 unsigned int freq_in
, unsigned int freq_out
)
1189 static struct _pll_div pll_div
;
1192 if (freq_in
&& freq_out
) {
1193 ret
= pll_factors(freq_in
, freq_out
, &pll_div
);
1198 /* Disable the PLL: even if we are changing the frequency the
1199 * PLL needs to be disabled while we do so. */
1200 snd_soc_component_update_bits(component
, WM8960_CLOCK1
, 0x1, 0);
1201 snd_soc_component_update_bits(component
, WM8960_POWER2
, 0x1, 0);
1203 if (!freq_in
|| !freq_out
)
1206 reg
= snd_soc_component_read32(component
, WM8960_PLL1
) & ~0x3f;
1207 reg
|= pll_div
.pre_div
<< 4;
1213 snd_soc_component_write(component
, WM8960_PLL2
, (pll_div
.k
>> 16) & 0xff);
1214 snd_soc_component_write(component
, WM8960_PLL3
, (pll_div
.k
>> 8) & 0xff);
1215 snd_soc_component_write(component
, WM8960_PLL4
, pll_div
.k
& 0xff);
1217 snd_soc_component_write(component
, WM8960_PLL1
, reg
);
1220 snd_soc_component_update_bits(component
, WM8960_POWER2
, 0x1, 0x1);
1222 snd_soc_component_update_bits(component
, WM8960_CLOCK1
, 0x1, 0x1);
1227 static int wm8960_set_dai_pll(struct snd_soc_dai
*codec_dai
, int pll_id
,
1228 int source
, unsigned int freq_in
, unsigned int freq_out
)
1230 struct snd_soc_component
*component
= codec_dai
->component
;
1231 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
1233 wm8960
->freq_in
= freq_in
;
1235 if (pll_id
== WM8960_SYSCLK_AUTO
)
1238 return wm8960_set_pll(component
, freq_in
, freq_out
);
1241 static int wm8960_set_dai_clkdiv(struct snd_soc_dai
*codec_dai
,
1242 int div_id
, int div
)
1244 struct snd_soc_component
*component
= codec_dai
->component
;
1248 case WM8960_SYSCLKDIV
:
1249 reg
= snd_soc_component_read32(component
, WM8960_CLOCK1
) & 0x1f9;
1250 snd_soc_component_write(component
, WM8960_CLOCK1
, reg
| div
);
1253 reg
= snd_soc_component_read32(component
, WM8960_CLOCK1
) & 0x1c7;
1254 snd_soc_component_write(component
, WM8960_CLOCK1
, reg
| div
);
1256 case WM8960_OPCLKDIV
:
1257 reg
= snd_soc_component_read32(component
, WM8960_PLL1
) & 0x03f;
1258 snd_soc_component_write(component
, WM8960_PLL1
, reg
| div
);
1260 case WM8960_DCLKDIV
:
1261 reg
= snd_soc_component_read32(component
, WM8960_CLOCK2
) & 0x03f;
1262 snd_soc_component_write(component
, WM8960_CLOCK2
, reg
| div
);
1264 case WM8960_TOCLKSEL
:
1265 reg
= snd_soc_component_read32(component
, WM8960_ADDCTL1
) & 0x1fd;
1266 snd_soc_component_write(component
, WM8960_ADDCTL1
, reg
| div
);
1275 static int wm8960_set_bias_level(struct snd_soc_component
*component
,
1276 enum snd_soc_bias_level level
)
1278 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
1280 return wm8960
->set_bias_level(component
, level
);
1283 static int wm8960_set_dai_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
1284 unsigned int freq
, int dir
)
1286 struct snd_soc_component
*component
= dai
->component
;
1287 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
1290 case WM8960_SYSCLK_MCLK
:
1291 snd_soc_component_update_bits(component
, WM8960_CLOCK1
,
1292 0x1, WM8960_SYSCLK_MCLK
);
1294 case WM8960_SYSCLK_PLL
:
1295 snd_soc_component_update_bits(component
, WM8960_CLOCK1
,
1296 0x1, WM8960_SYSCLK_PLL
);
1298 case WM8960_SYSCLK_AUTO
:
1304 wm8960
->sysclk
= freq
;
1305 wm8960
->clk_id
= clk_id
;
1310 #define WM8960_RATES SNDRV_PCM_RATE_8000_48000
1312 #define WM8960_FORMATS \
1313 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1314 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
1316 static const struct snd_soc_dai_ops wm8960_dai_ops
= {
1317 .hw_params
= wm8960_hw_params
,
1318 .hw_free
= wm8960_hw_free
,
1319 .digital_mute
= wm8960_mute
,
1320 .set_fmt
= wm8960_set_dai_fmt
,
1321 .set_clkdiv
= wm8960_set_dai_clkdiv
,
1322 .set_pll
= wm8960_set_dai_pll
,
1323 .set_sysclk
= wm8960_set_dai_sysclk
,
1326 static struct snd_soc_dai_driver wm8960_dai
= {
1327 .name
= "wm8960-hifi",
1329 .stream_name
= "Playback",
1332 .rates
= WM8960_RATES
,
1333 .formats
= WM8960_FORMATS
,},
1335 .stream_name
= "Capture",
1338 .rates
= WM8960_RATES
,
1339 .formats
= WM8960_FORMATS
,},
1340 .ops
= &wm8960_dai_ops
,
1341 .symmetric_rates
= 1,
1344 static int wm8960_probe(struct snd_soc_component
*component
)
1346 struct wm8960_priv
*wm8960
= snd_soc_component_get_drvdata(component
);
1347 struct wm8960_data
*pdata
= &wm8960
->pdata
;
1350 wm8960
->set_bias_level
= wm8960_set_bias_level_capless
;
1352 wm8960
->set_bias_level
= wm8960_set_bias_level_out3
;
1354 snd_soc_add_component_controls(component
, wm8960_snd_controls
,
1355 ARRAY_SIZE(wm8960_snd_controls
));
1356 wm8960_add_widgets(component
);
1361 static const struct snd_soc_component_driver soc_component_dev_wm8960
= {
1362 .probe
= wm8960_probe
,
1363 .set_bias_level
= wm8960_set_bias_level
,
1364 .suspend_bias_off
= 1,
1366 .use_pmdown_time
= 1,
1368 .non_legacy_dai_naming
= 1,
1371 static const struct regmap_config wm8960_regmap
= {
1374 .max_register
= WM8960_PLL4
,
1376 .reg_defaults
= wm8960_reg_defaults
,
1377 .num_reg_defaults
= ARRAY_SIZE(wm8960_reg_defaults
),
1378 .cache_type
= REGCACHE_RBTREE
,
1380 .volatile_reg
= wm8960_volatile
,
1383 static void wm8960_set_pdata_from_of(struct i2c_client
*i2c
,
1384 struct wm8960_data
*pdata
)
1386 const struct device_node
*np
= i2c
->dev
.of_node
;
1388 if (of_property_read_bool(np
, "wlf,capless"))
1389 pdata
->capless
= true;
1391 if (of_property_read_bool(np
, "wlf,shared-lrclk"))
1392 pdata
->shared_lrclk
= true;
1395 static int wm8960_i2c_probe(struct i2c_client
*i2c
,
1396 const struct i2c_device_id
*id
)
1398 struct wm8960_data
*pdata
= dev_get_platdata(&i2c
->dev
);
1399 struct wm8960_priv
*wm8960
;
1402 wm8960
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8960_priv
),
1407 wm8960
->mclk
= devm_clk_get(&i2c
->dev
, "mclk");
1408 if (IS_ERR(wm8960
->mclk
)) {
1409 if (PTR_ERR(wm8960
->mclk
) == -EPROBE_DEFER
)
1410 return -EPROBE_DEFER
;
1413 wm8960
->regmap
= devm_regmap_init_i2c(i2c
, &wm8960_regmap
);
1414 if (IS_ERR(wm8960
->regmap
))
1415 return PTR_ERR(wm8960
->regmap
);
1418 memcpy(&wm8960
->pdata
, pdata
, sizeof(struct wm8960_data
));
1419 else if (i2c
->dev
.of_node
)
1420 wm8960_set_pdata_from_of(i2c
, &wm8960
->pdata
);
1422 ret
= wm8960_reset(wm8960
->regmap
);
1424 dev_err(&i2c
->dev
, "Failed to issue reset\n");
1428 if (wm8960
->pdata
.shared_lrclk
) {
1429 ret
= regmap_update_bits(wm8960
->regmap
, WM8960_ADDCTL2
,
1432 dev_err(&i2c
->dev
, "Failed to enable LRCM: %d\n",
1438 /* Latch the update bits */
1439 regmap_update_bits(wm8960
->regmap
, WM8960_LINVOL
, 0x100, 0x100);
1440 regmap_update_bits(wm8960
->regmap
, WM8960_RINVOL
, 0x100, 0x100);
1441 regmap_update_bits(wm8960
->regmap
, WM8960_LADC
, 0x100, 0x100);
1442 regmap_update_bits(wm8960
->regmap
, WM8960_RADC
, 0x100, 0x100);
1443 regmap_update_bits(wm8960
->regmap
, WM8960_LDAC
, 0x100, 0x100);
1444 regmap_update_bits(wm8960
->regmap
, WM8960_RDAC
, 0x100, 0x100);
1445 regmap_update_bits(wm8960
->regmap
, WM8960_LOUT1
, 0x100, 0x100);
1446 regmap_update_bits(wm8960
->regmap
, WM8960_ROUT1
, 0x100, 0x100);
1447 regmap_update_bits(wm8960
->regmap
, WM8960_LOUT2
, 0x100, 0x100);
1448 regmap_update_bits(wm8960
->regmap
, WM8960_ROUT2
, 0x100, 0x100);
1450 i2c_set_clientdata(i2c
, wm8960
);
1452 ret
= devm_snd_soc_register_component(&i2c
->dev
,
1453 &soc_component_dev_wm8960
, &wm8960_dai
, 1);
1458 static int wm8960_i2c_remove(struct i2c_client
*client
)
1463 static const struct i2c_device_id wm8960_i2c_id
[] = {
1467 MODULE_DEVICE_TABLE(i2c
, wm8960_i2c_id
);
1469 static const struct of_device_id wm8960_of_match
[] = {
1470 { .compatible
= "wlf,wm8960", },
1473 MODULE_DEVICE_TABLE(of
, wm8960_of_match
);
1475 static struct i2c_driver wm8960_i2c_driver
= {
1478 .of_match_table
= wm8960_of_match
,
1480 .probe
= wm8960_i2c_probe
,
1481 .remove
= wm8960_i2c_remove
,
1482 .id_table
= wm8960_i2c_id
,
1485 module_i2c_driver(wm8960_i2c_driver
);
1487 MODULE_DESCRIPTION("ASoC WM8960 driver");
1488 MODULE_AUTHOR("Liam Girdwood");
1489 MODULE_LICENSE("GPL");