Merge tag 'erofs-for-6.10-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / sound / soc / codecs / wm8974.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
0a1bf553
MB
2/*
3 * wm8974.c -- WM8974 ALSA Soc Audio driver
4 *
8b83a193 5 * Copyright 2006-2009 Wolfson Microelectronics PLC.
0a1bf553 6 *
9a185b9a 7 * Author: Liam Girdwood <Liam.Girdwood@wolfsonmicro.com>
0a1bf553
MB
8 */
9
10#include <linux/module.h>
0a1bf553
MB
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/delay.h>
14#include <linux/pm.h>
15#include <linux/i2c.h>
e40e0b5d 16#include <linux/regmap.h>
5a0e3ad6 17#include <linux/slab.h>
0a1bf553
MB
18#include <sound/core.h>
19#include <sound/pcm.h>
20#include <sound/pcm_params.h>
21#include <sound/soc.h>
0a1bf553 22#include <sound/initval.h>
a5f8d2f1 23#include <sound/tlv.h>
0a1bf553
MB
24
25#include "wm8974.h"
26
51b2bb3f
MR
27struct wm8974_priv {
28 unsigned int mclk;
29 unsigned int fs;
30};
31
e40e0b5d
MB
32static const struct reg_default wm8974_reg_defaults[] = {
33 { 0, 0x0000 }, { 1, 0x0000 }, { 2, 0x0000 }, { 3, 0x0000 },
34 { 4, 0x0050 }, { 5, 0x0000 }, { 6, 0x0140 }, { 7, 0x0000 },
35 { 8, 0x0000 }, { 9, 0x0000 }, { 10, 0x0000 }, { 11, 0x00ff },
36 { 12, 0x0000 }, { 13, 0x0000 }, { 14, 0x0100 }, { 15, 0x00ff },
37 { 16, 0x0000 }, { 17, 0x0000 }, { 18, 0x012c }, { 19, 0x002c },
38 { 20, 0x002c }, { 21, 0x002c }, { 22, 0x002c }, { 23, 0x0000 },
39 { 24, 0x0032 }, { 25, 0x0000 }, { 26, 0x0000 }, { 27, 0x0000 },
40 { 28, 0x0000 }, { 29, 0x0000 }, { 30, 0x0000 }, { 31, 0x0000 },
41 { 32, 0x0038 }, { 33, 0x000b }, { 34, 0x0032 }, { 35, 0x0000 },
42 { 36, 0x0008 }, { 37, 0x000c }, { 38, 0x0093 }, { 39, 0x00e9 },
43 { 40, 0x0000 }, { 41, 0x0000 }, { 42, 0x0000 }, { 43, 0x0000 },
44 { 44, 0x0003 }, { 45, 0x0010 }, { 46, 0x0000 }, { 47, 0x0000 },
45 { 48, 0x0000 }, { 49, 0x0002 }, { 50, 0x0000 }, { 51, 0x0000 },
46 { 52, 0x0000 }, { 53, 0x0000 }, { 54, 0x0039 }, { 55, 0x0000 },
47 { 56, 0x0000 },
0a1bf553
MB
48};
49
df1ef7a3 50#define WM8974_POWER1_BIASEN 0x08
48c03ce7 51#define WM8974_POWER1_BUFIOEN 0x04
df1ef7a3 52
3e32a3ff 53#define wm8974_reset(c) snd_soc_component_write(c, WM8974_RESET, 0)
0a1bf553
MB
54
55static const char *wm8974_companding[] = {"Off", "NC", "u-law", "A-law" };
56static const char *wm8974_deemp[] = {"None", "32kHz", "44.1kHz", "48kHz" };
57static const char *wm8974_eqmode[] = {"Capture", "Playback" };
58static const char *wm8974_bw[] = {"Narrow", "Wide" };
59static const char *wm8974_eq1[] = {"80Hz", "105Hz", "135Hz", "175Hz" };
60static const char *wm8974_eq2[] = {"230Hz", "300Hz", "385Hz", "500Hz" };
61static const char *wm8974_eq3[] = {"650Hz", "850Hz", "1.1kHz", "1.4kHz" };
62static const char *wm8974_eq4[] = {"1.8kHz", "2.4kHz", "3.2kHz", "4.1kHz" };
63static const char *wm8974_eq5[] = {"5.3kHz", "6.9kHz", "9kHz", "11.7kHz" };
64static const char *wm8974_alc[] = {"ALC", "Limiter" };
65
66static const struct soc_enum wm8974_enum[] = {
67 SOC_ENUM_SINGLE(WM8974_COMP, 1, 4, wm8974_companding), /* adc */
68 SOC_ENUM_SINGLE(WM8974_COMP, 3, 4, wm8974_companding), /* dac */
69 SOC_ENUM_SINGLE(WM8974_DAC, 4, 4, wm8974_deemp),
70 SOC_ENUM_SINGLE(WM8974_EQ1, 8, 2, wm8974_eqmode),
71
72 SOC_ENUM_SINGLE(WM8974_EQ1, 5, 4, wm8974_eq1),
73 SOC_ENUM_SINGLE(WM8974_EQ2, 8, 2, wm8974_bw),
74 SOC_ENUM_SINGLE(WM8974_EQ2, 5, 4, wm8974_eq2),
75 SOC_ENUM_SINGLE(WM8974_EQ3, 8, 2, wm8974_bw),
76
77 SOC_ENUM_SINGLE(WM8974_EQ3, 5, 4, wm8974_eq3),
78 SOC_ENUM_SINGLE(WM8974_EQ4, 8, 2, wm8974_bw),
79 SOC_ENUM_SINGLE(WM8974_EQ4, 5, 4, wm8974_eq4),
80 SOC_ENUM_SINGLE(WM8974_EQ5, 8, 2, wm8974_bw),
81
82 SOC_ENUM_SINGLE(WM8974_EQ5, 5, 4, wm8974_eq5),
83 SOC_ENUM_SINGLE(WM8974_ALC3, 8, 2, wm8974_alc),
84};
85
8a123ee2
MB
86static const char *wm8974_auxmode_text[] = { "Buffer", "Mixer" };
87
de461bd2
TI
88static SOC_ENUM_SINGLE_DECL(wm8974_auxmode,
89 WM8974_INPUT, 3, wm8974_auxmode_text);
8a123ee2 90
a5f8d2f1
MB
91static const DECLARE_TLV_DB_SCALE(digital_tlv, -12750, 50, 1);
92static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
93static const DECLARE_TLV_DB_SCALE(inpga_tlv, -1200, 75, 0);
94static const DECLARE_TLV_DB_SCALE(spk_tlv, -5700, 100, 0);
95
0a1bf553
MB
96static const struct snd_kcontrol_new wm8974_snd_controls[] = {
97
98SOC_SINGLE("Digital Loopback Switch", WM8974_COMP, 0, 1, 0),
99
100SOC_ENUM("DAC Companding", wm8974_enum[1]),
101SOC_ENUM("ADC Companding", wm8974_enum[0]),
102
103SOC_ENUM("Playback De-emphasis", wm8974_enum[2]),
104SOC_SINGLE("DAC Inversion Switch", WM8974_DAC, 0, 1, 0),
105
a5f8d2f1 106SOC_SINGLE_TLV("PCM Volume", WM8974_DACVOL, 0, 255, 0, digital_tlv),
0a1bf553
MB
107
108SOC_SINGLE("High Pass Filter Switch", WM8974_ADC, 8, 1, 0),
109SOC_SINGLE("High Pass Cut Off", WM8974_ADC, 4, 7, 0),
25cbf465 110SOC_SINGLE("ADC Inversion Switch", WM8974_ADC, 0, 1, 0),
0a1bf553 111
a5f8d2f1 112SOC_SINGLE_TLV("Capture Volume", WM8974_ADCVOL, 0, 255, 0, digital_tlv),
0a1bf553
MB
113
114SOC_ENUM("Equaliser Function", wm8974_enum[3]),
115SOC_ENUM("EQ1 Cut Off", wm8974_enum[4]),
a5f8d2f1 116SOC_SINGLE_TLV("EQ1 Volume", WM8974_EQ1, 0, 24, 1, eq_tlv),
0a1bf553 117
c46d5c04 118SOC_ENUM("Equaliser EQ2 Bandwidth", wm8974_enum[5]),
0a1bf553 119SOC_ENUM("EQ2 Cut Off", wm8974_enum[6]),
a5f8d2f1 120SOC_SINGLE_TLV("EQ2 Volume", WM8974_EQ2, 0, 24, 1, eq_tlv),
0a1bf553 121
c46d5c04 122SOC_ENUM("Equaliser EQ3 Bandwidth", wm8974_enum[7]),
0a1bf553 123SOC_ENUM("EQ3 Cut Off", wm8974_enum[8]),
a5f8d2f1 124SOC_SINGLE_TLV("EQ3 Volume", WM8974_EQ3, 0, 24, 1, eq_tlv),
0a1bf553 125
c46d5c04 126SOC_ENUM("Equaliser EQ4 Bandwidth", wm8974_enum[9]),
0a1bf553 127SOC_ENUM("EQ4 Cut Off", wm8974_enum[10]),
a5f8d2f1 128SOC_SINGLE_TLV("EQ4 Volume", WM8974_EQ4, 0, 24, 1, eq_tlv),
0a1bf553 129
a895d57d 130SOC_ENUM("Equaliser EQ5 Bandwidth", wm8974_enum[11]),
0a1bf553 131SOC_ENUM("EQ5 Cut Off", wm8974_enum[12]),
a5f8d2f1 132SOC_SINGLE_TLV("EQ5 Volume", WM8974_EQ5, 0, 24, 1, eq_tlv),
0a1bf553
MB
133
134SOC_SINGLE("DAC Playback Limiter Switch", WM8974_DACLIM1, 8, 1, 0),
135SOC_SINGLE("DAC Playback Limiter Decay", WM8974_DACLIM1, 4, 15, 0),
136SOC_SINGLE("DAC Playback Limiter Attack", WM8974_DACLIM1, 0, 15, 0),
137
138SOC_SINGLE("DAC Playback Limiter Threshold", WM8974_DACLIM2, 4, 7, 0),
139SOC_SINGLE("DAC Playback Limiter Boost", WM8974_DACLIM2, 0, 15, 0),
140
141SOC_SINGLE("ALC Enable Switch", WM8974_ALC1, 8, 1, 0),
142SOC_SINGLE("ALC Capture Max Gain", WM8974_ALC1, 3, 7, 0),
143SOC_SINGLE("ALC Capture Min Gain", WM8974_ALC1, 0, 7, 0),
144
145SOC_SINGLE("ALC Capture ZC Switch", WM8974_ALC2, 8, 1, 0),
146SOC_SINGLE("ALC Capture Hold", WM8974_ALC2, 4, 7, 0),
147SOC_SINGLE("ALC Capture Target", WM8974_ALC2, 0, 15, 0),
148
149SOC_ENUM("ALC Capture Mode", wm8974_enum[13]),
150SOC_SINGLE("ALC Capture Decay", WM8974_ALC3, 4, 15, 0),
151SOC_SINGLE("ALC Capture Attack", WM8974_ALC3, 0, 15, 0),
152
153SOC_SINGLE("ALC Capture Noise Gate Switch", WM8974_NGATE, 3, 1, 0),
154SOC_SINGLE("ALC Capture Noise Gate Threshold", WM8974_NGATE, 0, 7, 0),
155
156SOC_SINGLE("Capture PGA ZC Switch", WM8974_INPPGA, 7, 1, 0),
a5f8d2f1 157SOC_SINGLE_TLV("Capture PGA Volume", WM8974_INPPGA, 0, 63, 0, inpga_tlv),
0a1bf553
MB
158
159SOC_SINGLE("Speaker Playback ZC Switch", WM8974_SPKVOL, 7, 1, 0),
160SOC_SINGLE("Speaker Playback Switch", WM8974_SPKVOL, 6, 1, 1),
8a123ee2
MB
161SOC_SINGLE_TLV("Speaker Playback Volume", WM8974_SPKVOL, 0, 63, 0, spk_tlv),
162
163SOC_ENUM("Aux Mode", wm8974_auxmode),
0a1bf553
MB
164
165SOC_SINGLE("Capture Boost(+20dB)", WM8974_ADCBOOST, 8, 1, 0),
8a123ee2 166SOC_SINGLE("Mono Playback Switch", WM8974_MONOMIX, 6, 1, 1),
b2c3e923
GL
167
168/* DAC / ADC oversampling */
169SOC_SINGLE("DAC 128x Oversampling Switch", WM8974_DAC, 8, 1, 0),
170SOC_SINGLE("ADC 128x Oversampling Switch", WM8974_ADC, 8, 1, 0),
0a1bf553
MB
171};
172
0a1bf553
MB
173/* Speaker Output Mixer */
174static const struct snd_kcontrol_new wm8974_speaker_mixer_controls[] = {
175SOC_DAPM_SINGLE("Line Bypass Switch", WM8974_SPKMIX, 1, 1, 0),
176SOC_DAPM_SINGLE("Aux Playback Switch", WM8974_SPKMIX, 5, 1, 0),
759512fb 177SOC_DAPM_SINGLE("PCM Playback Switch", WM8974_SPKMIX, 0, 1, 0),
0a1bf553
MB
178};
179
180/* Mono Output Mixer */
181static const struct snd_kcontrol_new wm8974_mono_mixer_controls[] = {
182SOC_DAPM_SINGLE("Line Bypass Switch", WM8974_MONOMIX, 1, 1, 0),
183SOC_DAPM_SINGLE("Aux Playback Switch", WM8974_MONOMIX, 2, 1, 0),
8a123ee2
MB
184SOC_DAPM_SINGLE("PCM Playback Switch", WM8974_MONOMIX, 0, 1, 0),
185};
186
187/* Boost mixer */
188static const struct snd_kcontrol_new wm8974_boost_mixer[] = {
37e6fd0c 189SOC_DAPM_SINGLE("PGA Switch", WM8974_INPPGA, 6, 1, 1),
8a123ee2
MB
190};
191
192/* Input PGA */
193static const struct snd_kcontrol_new wm8974_inpga[] = {
194SOC_DAPM_SINGLE("Aux Switch", WM8974_INPUT, 2, 1, 0),
195SOC_DAPM_SINGLE("MicN Switch", WM8974_INPUT, 1, 1, 0),
196SOC_DAPM_SINGLE("MicP Switch", WM8974_INPUT, 0, 1, 0),
0a1bf553
MB
197};
198
0a1bf553
MB
199static const struct snd_soc_dapm_widget wm8974_dapm_widgets[] = {
200SND_SOC_DAPM_MIXER("Speaker Mixer", WM8974_POWER3, 2, 0,
201 &wm8974_speaker_mixer_controls[0],
202 ARRAY_SIZE(wm8974_speaker_mixer_controls)),
203SND_SOC_DAPM_MIXER("Mono Mixer", WM8974_POWER3, 3, 0,
204 &wm8974_mono_mixer_controls[0],
205 ARRAY_SIZE(wm8974_mono_mixer_controls)),
206SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8974_POWER3, 0, 0),
8a123ee2 207SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8974_POWER2, 0, 0),
0a1bf553
MB
208SND_SOC_DAPM_PGA("Aux Input", WM8974_POWER1, 6, 0, NULL, 0),
209SND_SOC_DAPM_PGA("SpkN Out", WM8974_POWER3, 5, 0, NULL, 0),
210SND_SOC_DAPM_PGA("SpkP Out", WM8974_POWER3, 6, 0, NULL, 0),
211SND_SOC_DAPM_PGA("Mono Out", WM8974_POWER3, 7, 0, NULL, 0),
0a1bf553 212
8a123ee2
MB
213SND_SOC_DAPM_MIXER("Input PGA", WM8974_POWER2, 2, 0, wm8974_inpga,
214 ARRAY_SIZE(wm8974_inpga)),
215SND_SOC_DAPM_MIXER("Boost Mixer", WM8974_POWER2, 4, 0,
216 wm8974_boost_mixer, ARRAY_SIZE(wm8974_boost_mixer)),
0a1bf553 217
48dd231b 218SND_SOC_DAPM_SUPPLY("Mic Bias", WM8974_POWER1, 4, 0, NULL, 0),
0a1bf553
MB
219
220SND_SOC_DAPM_INPUT("MICN"),
221SND_SOC_DAPM_INPUT("MICP"),
222SND_SOC_DAPM_INPUT("AUX"),
223SND_SOC_DAPM_OUTPUT("MONOOUT"),
224SND_SOC_DAPM_OUTPUT("SPKOUTP"),
225SND_SOC_DAPM_OUTPUT("SPKOUTN"),
226};
227
a2bd691c 228static const struct snd_soc_dapm_route wm8974_dapm_routes[] = {
0a1bf553
MB
229 /* Mono output mixer */
230 {"Mono Mixer", "PCM Playback Switch", "DAC"},
231 {"Mono Mixer", "Aux Playback Switch", "Aux Input"},
232 {"Mono Mixer", "Line Bypass Switch", "Boost Mixer"},
233
234 /* Speaker output mixer */
235 {"Speaker Mixer", "PCM Playback Switch", "DAC"},
236 {"Speaker Mixer", "Aux Playback Switch", "Aux Input"},
237 {"Speaker Mixer", "Line Bypass Switch", "Boost Mixer"},
238
239 /* Outputs */
240 {"Mono Out", NULL, "Mono Mixer"},
241 {"MONOOUT", NULL, "Mono Out"},
242 {"SpkN Out", NULL, "Speaker Mixer"},
243 {"SpkP Out", NULL, "Speaker Mixer"},
244 {"SPKOUTN", NULL, "SpkN Out"},
245 {"SPKOUTP", NULL, "SpkP Out"},
246
247 /* Boost Mixer */
8a123ee2 248 {"ADC", NULL, "Boost Mixer"},
37e6fd0c
CK
249 {"Boost Mixer", NULL, "Aux Input"},
250 {"Boost Mixer", "PGA Switch", "Input PGA"},
8a123ee2
MB
251 {"Boost Mixer", NULL, "MICP"},
252
253 /* Input PGA */
254 {"Input PGA", "Aux Switch", "Aux Input"},
255 {"Input PGA", "MicN Switch", "MICN"},
256 {"Input PGA", "MicP Switch", "MICP"},
0a1bf553
MB
257
258 /* Inputs */
8a123ee2 259 {"Aux Input", NULL, "AUX"},
0a1bf553
MB
260};
261
0a1bf553 262struct pll_ {
c36b2fc7 263 unsigned int pre_div:1;
0a1bf553
MB
264 unsigned int n:4;
265 unsigned int k;
266};
267
91d0c3ec
MB
268/* The size in bits of the pll divide multiplied by 10
269 * to allow rounding later */
270#define FIXED_PLL_SIZE ((1 << 24) * 10)
271
c36b2fc7
MB
272static void pll_factors(struct pll_ *pll_div,
273 unsigned int target, unsigned int source)
91d0c3ec
MB
274{
275 unsigned long long Kpart;
276 unsigned int K, Ndiv, Nmod;
277
c36b2fc7
MB
278 /* There is a fixed divide by 4 in the output path */
279 target *= 4;
280
91d0c3ec
MB
281 Ndiv = target / source;
282 if (Ndiv < 6) {
c36b2fc7
MB
283 source /= 2;
284 pll_div->pre_div = 1;
91d0c3ec
MB
285 Ndiv = target / source;
286 } else
c36b2fc7 287 pll_div->pre_div = 0;
91d0c3ec
MB
288
289 if ((Ndiv < 6) || (Ndiv > 12))
290 printk(KERN_WARNING
8b83a193 291 "WM8974 N value %u outwith recommended range!\n",
91d0c3ec
MB
292 Ndiv);
293
c36b2fc7 294 pll_div->n = Ndiv;
91d0c3ec
MB
295 Nmod = target % source;
296 Kpart = FIXED_PLL_SIZE * (long long)Nmod;
297
298 do_div(Kpart, source);
299
300 K = Kpart & 0xFFFFFFFF;
301
302 /* Check if we need to round */
303 if ((K % 10) >= 5)
304 K += 5;
305
306 /* Move down to proper range now rounding is done */
307 K /= 10;
308
c36b2fc7 309 pll_div->k = K;
91d0c3ec 310}
0a1bf553 311
85488037
MB
312static int wm8974_set_dai_pll(struct snd_soc_dai *codec_dai, int pll_id,
313 int source, unsigned int freq_in, unsigned int freq_out)
0a1bf553 314{
3e32a3ff 315 struct snd_soc_component *component = codec_dai->component;
c36b2fc7 316 struct pll_ pll_div;
0a1bf553
MB
317 u16 reg;
318
1a55b3f6 319 if (freq_in == 0 || freq_out == 0) {
91d0c3ec 320 /* Clock CODEC directly from MCLK */
6d75dfc3 321 reg = snd_soc_component_read(component, WM8974_CLOCK);
3e32a3ff 322 snd_soc_component_write(component, WM8974_CLOCK, reg & 0x0ff);
91d0c3ec
MB
323
324 /* Turn off PLL */
6d75dfc3 325 reg = snd_soc_component_read(component, WM8974_POWER1);
3e32a3ff 326 snd_soc_component_write(component, WM8974_POWER1, reg & 0x1df);
0a1bf553
MB
327 return 0;
328 }
329
c36b2fc7 330 pll_factors(&pll_div, freq_out, freq_in);
91d0c3ec 331
3e32a3ff
KM
332 snd_soc_component_write(component, WM8974_PLLN, (pll_div.pre_div << 4) | pll_div.n);
333 snd_soc_component_write(component, WM8974_PLLK1, pll_div.k >> 18);
334 snd_soc_component_write(component, WM8974_PLLK2, (pll_div.k >> 9) & 0x1ff);
335 snd_soc_component_write(component, WM8974_PLLK3, pll_div.k & 0x1ff);
6d75dfc3 336 reg = snd_soc_component_read(component, WM8974_POWER1);
3e32a3ff 337 snd_soc_component_write(component, WM8974_POWER1, reg | 0x020);
1a55b3f6 338
91d0c3ec 339 /* Run CODEC from PLL instead of MCLK */
6d75dfc3 340 reg = snd_soc_component_read(component, WM8974_CLOCK);
3e32a3ff 341 snd_soc_component_write(component, WM8974_CLOCK, reg | 0x100);
91d0c3ec
MB
342
343 return 0;
0a1bf553
MB
344}
345
346/*
347 * Configure WM8974 clock dividers.
348 */
349static int wm8974_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
350 int div_id, int div)
351{
3e32a3ff 352 struct snd_soc_component *component = codec_dai->component;
0a1bf553
MB
353 u16 reg;
354
355 switch (div_id) {
356 case WM8974_OPCLKDIV:
6d75dfc3 357 reg = snd_soc_component_read(component, WM8974_GPIO) & 0x1cf;
3e32a3ff 358 snd_soc_component_write(component, WM8974_GPIO, reg | div);
0a1bf553
MB
359 break;
360 case WM8974_MCLKDIV:
6d75dfc3 361 reg = snd_soc_component_read(component, WM8974_CLOCK) & 0x11f;
3e32a3ff 362 snd_soc_component_write(component, WM8974_CLOCK, reg | div);
0a1bf553 363 break;
0a1bf553 364 case WM8974_BCLKDIV:
6d75dfc3 365 reg = snd_soc_component_read(component, WM8974_CLOCK) & 0x1e3;
3e32a3ff 366 snd_soc_component_write(component, WM8974_CLOCK, reg | div);
0a1bf553
MB
367 break;
368 default:
369 return -EINVAL;
370 }
371
372 return 0;
373}
374
51b2bb3f
MR
375static unsigned int wm8974_get_mclkdiv(unsigned int f_in, unsigned int f_out,
376 int *mclkdiv)
377{
378 unsigned int ratio = 2 * f_in / f_out;
379
380 if (ratio <= 2) {
381 *mclkdiv = WM8974_MCLKDIV_1;
382 ratio = 2;
383 } else if (ratio == 3) {
384 *mclkdiv = WM8974_MCLKDIV_1_5;
385 } else if (ratio == 4) {
386 *mclkdiv = WM8974_MCLKDIV_2;
387 } else if (ratio <= 6) {
388 *mclkdiv = WM8974_MCLKDIV_3;
389 ratio = 6;
390 } else if (ratio <= 8) {
391 *mclkdiv = WM8974_MCLKDIV_4;
392 ratio = 8;
393 } else if (ratio <= 12) {
394 *mclkdiv = WM8974_MCLKDIV_6;
395 ratio = 12;
396 } else if (ratio <= 16) {
397 *mclkdiv = WM8974_MCLKDIV_8;
398 ratio = 16;
399 } else {
400 *mclkdiv = WM8974_MCLKDIV_12;
401 ratio = 24;
402 }
403
404 return f_out * ratio / 2;
405}
406
407static int wm8974_update_clocks(struct snd_soc_dai *dai)
408{
3e32a3ff
KM
409 struct snd_soc_component *component = dai->component;
410 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
51b2bb3f
MR
411 unsigned int fs256;
412 unsigned int fpll = 0;
413 unsigned int f;
414 int mclkdiv;
415
416 if (!priv->mclk || !priv->fs)
417 return 0;
418
419 fs256 = 256 * priv->fs;
420
421 f = wm8974_get_mclkdiv(priv->mclk, fs256, &mclkdiv);
422
423 if (f != priv->mclk) {
424 /* The PLL performs best around 90MHz */
425 fpll = wm8974_get_mclkdiv(22500000, fs256, &mclkdiv);
426 }
427
428 wm8974_set_dai_pll(dai, 0, 0, priv->mclk, fpll);
429 wm8974_set_dai_clkdiv(dai, WM8974_MCLKDIV, mclkdiv);
430
431 return 0;
432}
433
434static int wm8974_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id,
435 unsigned int freq, int dir)
436{
3e32a3ff
KM
437 struct snd_soc_component *component = dai->component;
438 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
51b2bb3f
MR
439
440 if (dir != SND_SOC_CLOCK_IN)
441 return -EINVAL;
442
443 priv->mclk = freq;
444
445 return wm8974_update_clocks(dai);
446}
447
0a1bf553
MB
448static int wm8974_set_dai_fmt(struct snd_soc_dai *codec_dai,
449 unsigned int fmt)
450{
3e32a3ff 451 struct snd_soc_component *component = codec_dai->component;
0a1bf553 452 u16 iface = 0;
6d75dfc3 453 u16 clk = snd_soc_component_read(component, WM8974_CLOCK) & 0x1fe;
0a1bf553
MB
454
455 /* set master/slave audio interface */
456 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
457 case SND_SOC_DAIFMT_CBM_CFM:
458 clk |= 0x0001;
459 break;
460 case SND_SOC_DAIFMT_CBS_CFS:
461 break;
462 default:
463 return -EINVAL;
464 }
465
466 /* interface format */
467 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
468 case SND_SOC_DAIFMT_I2S:
469 iface |= 0x0010;
470 break;
471 case SND_SOC_DAIFMT_RIGHT_J:
472 break;
473 case SND_SOC_DAIFMT_LEFT_J:
474 iface |= 0x0008;
475 break;
476 case SND_SOC_DAIFMT_DSP_A:
01283d56
PL
477 if ((fmt & SND_SOC_DAIFMT_INV_MASK) == SND_SOC_DAIFMT_IB_IF ||
478 (fmt & SND_SOC_DAIFMT_INV_MASK) == SND_SOC_DAIFMT_NB_IF) {
479 return -EINVAL;
480 }
0a1bf553
MB
481 iface |= 0x00018;
482 break;
483 default:
484 return -EINVAL;
485 }
486
487 /* clock inversion */
488 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
489 case SND_SOC_DAIFMT_NB_NF:
490 break;
491 case SND_SOC_DAIFMT_IB_IF:
492 iface |= 0x0180;
493 break;
494 case SND_SOC_DAIFMT_IB_NF:
495 iface |= 0x0100;
496 break;
497 case SND_SOC_DAIFMT_NB_IF:
498 iface |= 0x0080;
499 break;
500 default:
501 return -EINVAL;
502 }
503
3e32a3ff
KM
504 snd_soc_component_write(component, WM8974_IFACE, iface);
505 snd_soc_component_write(component, WM8974_CLOCK, clk);
0a1bf553
MB
506 return 0;
507}
508
509static int wm8974_pcm_hw_params(struct snd_pcm_substream *substream,
510 struct snd_pcm_hw_params *params,
511 struct snd_soc_dai *dai)
512{
3e32a3ff
KM
513 struct snd_soc_component *component = dai->component;
514 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
6d75dfc3
KM
515 u16 iface = snd_soc_component_read(component, WM8974_IFACE) & 0x19f;
516 u16 adn = snd_soc_component_read(component, WM8974_ADD) & 0x1f1;
51b2bb3f
MR
517 int err;
518
519 priv->fs = params_rate(params);
520 err = wm8974_update_clocks(dai);
521 if (err)
522 return err;
0a1bf553
MB
523
524 /* bit size */
6afdc9a0
MB
525 switch (params_width(params)) {
526 case 16:
0a1bf553 527 break;
6afdc9a0 528 case 20:
0a1bf553
MB
529 iface |= 0x0020;
530 break;
6afdc9a0 531 case 24:
0a1bf553
MB
532 iface |= 0x0040;
533 break;
6afdc9a0 534 case 32:
0a1bf553
MB
535 iface |= 0x0060;
536 break;
537 }
538
539 /* filter coefficient */
540 switch (params_rate(params)) {
b3172f22 541 case 8000:
0a1bf553
MB
542 adn |= 0x5 << 1;
543 break;
b3172f22 544 case 11025:
0a1bf553
MB
545 adn |= 0x4 << 1;
546 break;
b3172f22 547 case 16000:
0a1bf553
MB
548 adn |= 0x3 << 1;
549 break;
b3172f22 550 case 22050:
0a1bf553
MB
551 adn |= 0x2 << 1;
552 break;
b3172f22 553 case 32000:
0a1bf553
MB
554 adn |= 0x1 << 1;
555 break;
b3172f22
GL
556 case 44100:
557 case 48000:
0a1bf553
MB
558 break;
559 }
560
3e32a3ff
KM
561 snd_soc_component_write(component, WM8974_IFACE, iface);
562 snd_soc_component_write(component, WM8974_ADD, adn);
0a1bf553
MB
563 return 0;
564}
565
26d3c16e 566static int wm8974_mute(struct snd_soc_dai *dai, int mute, int direction)
0a1bf553 567{
3e32a3ff 568 struct snd_soc_component *component = dai->component;
6d75dfc3 569 u16 mute_reg = snd_soc_component_read(component, WM8974_DAC) & 0xffbf;
0a1bf553 570
1a55b3f6 571 if (mute)
3e32a3ff 572 snd_soc_component_write(component, WM8974_DAC, mute_reg | 0x40);
0a1bf553 573 else
3e32a3ff 574 snd_soc_component_write(component, WM8974_DAC, mute_reg);
0a1bf553
MB
575 return 0;
576}
577
578/* liam need to make this lower power with dapm */
3e32a3ff 579static int wm8974_set_bias_level(struct snd_soc_component *component,
0a1bf553
MB
580 enum snd_soc_bias_level level)
581{
6d75dfc3 582 u16 power1 = snd_soc_component_read(component, WM8974_POWER1) & ~0x3;
df1ef7a3 583
0a1bf553
MB
584 switch (level) {
585 case SND_SOC_BIAS_ON:
0a1bf553 586 case SND_SOC_BIAS_PREPARE:
df1ef7a3 587 power1 |= 0x1; /* VMID 50k */
3e32a3ff 588 snd_soc_component_write(component, WM8974_POWER1, power1);
0a1bf553 589 break;
df1ef7a3 590
0a1bf553 591 case SND_SOC_BIAS_STANDBY:
df1ef7a3
MB
592 power1 |= WM8974_POWER1_BIASEN | WM8974_POWER1_BUFIOEN;
593
3e32a3ff
KM
594 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
595 regcache_sync(dev_get_regmap(component->dev, NULL));
0bad3d84 596
df1ef7a3 597 /* Initial cap charge at VMID 5k */
3e32a3ff 598 snd_soc_component_write(component, WM8974_POWER1, power1 | 0x3);
df1ef7a3
MB
599 mdelay(100);
600 }
601
602 power1 |= 0x2; /* VMID 500k */
3e32a3ff 603 snd_soc_component_write(component, WM8974_POWER1, power1);
0a1bf553 604 break;
df1ef7a3 605
0a1bf553 606 case SND_SOC_BIAS_OFF:
3e32a3ff
KM
607 snd_soc_component_write(component, WM8974_POWER1, 0);
608 snd_soc_component_write(component, WM8974_POWER2, 0);
609 snd_soc_component_write(component, WM8974_POWER3, 0);
0a1bf553
MB
610 break;
611 }
df1ef7a3 612
0a1bf553
MB
613 return 0;
614}
615
1a55b3f6 616#define WM8974_RATES (SNDRV_PCM_RATE_8000_48000)
0a1bf553
MB
617
618#define WM8974_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
619 SNDRV_PCM_FMTBIT_S24_LE)
620
85e7652d 621static const struct snd_soc_dai_ops wm8974_ops = {
0a1bf553 622 .hw_params = wm8974_pcm_hw_params,
26d3c16e 623 .mute_stream = wm8974_mute,
0a1bf553
MB
624 .set_fmt = wm8974_set_dai_fmt,
625 .set_clkdiv = wm8974_set_dai_clkdiv,
626 .set_pll = wm8974_set_dai_pll,
51b2bb3f 627 .set_sysclk = wm8974_set_dai_sysclk,
26d3c16e 628 .no_capture_mute = 1,
0a1bf553
MB
629};
630
f0fba2ad
LG
631static struct snd_soc_dai_driver wm8974_dai = {
632 .name = "wm8974-hifi",
0a1bf553
MB
633 .playback = {
634 .stream_name = "Playback",
635 .channels_min = 1,
33d81af4 636 .channels_max = 2, /* Only 1 channel of data */
0a1bf553
MB
637 .rates = WM8974_RATES,
638 .formats = WM8974_FORMATS,},
639 .capture = {
640 .stream_name = "Capture",
641 .channels_min = 1,
33d81af4 642 .channels_max = 2, /* Only 1 channel of data */
0a1bf553
MB
643 .rates = WM8974_RATES,
644 .formats = WM8974_FORMATS,},
645 .ops = &wm8974_ops,
07695752 646 .symmetric_rate = 1,
0a1bf553 647};
0a1bf553 648
e40e0b5d
MB
649static const struct regmap_config wm8974_regmap = {
650 .reg_bits = 7,
651 .val_bits = 9,
652
653 .max_register = WM8974_MONOMIX,
654 .reg_defaults = wm8974_reg_defaults,
655 .num_reg_defaults = ARRAY_SIZE(wm8974_reg_defaults),
1ea5998a 656 .cache_type = REGCACHE_FLAT,
e40e0b5d
MB
657};
658
3e32a3ff 659static int wm8974_probe(struct snd_soc_component *component)
0a1bf553 660{
0a1bf553
MB
661 int ret = 0;
662
3e32a3ff 663 ret = wm8974_reset(component);
1a55b3f6 664 if (ret < 0) {
3e32a3ff 665 dev_err(component->dev, "Failed to issue reset\n");
f0fba2ad 666 return ret;
0a1bf553
MB
667 }
668
4fcbbb67
MB
669 return 0;
670}
0a1bf553 671
3e32a3ff
KM
672static const struct snd_soc_component_driver soc_component_dev_wm8974 = {
673 .probe = wm8974_probe,
674 .set_bias_level = wm8974_set_bias_level,
675 .controls = wm8974_snd_controls,
676 .num_controls = ARRAY_SIZE(wm8974_snd_controls),
677 .dapm_widgets = wm8974_dapm_widgets,
678 .num_dapm_widgets = ARRAY_SIZE(wm8974_dapm_widgets),
679 .dapm_routes = wm8974_dapm_routes,
680 .num_dapm_routes = ARRAY_SIZE(wm8974_dapm_routes),
681 .suspend_bias_off = 1,
682 .idle_bias_on = 1,
683 .use_pmdown_time = 1,
684 .endianness = 1,
4fcbbb67 685};
0a1bf553 686
97b0b6e3 687static int wm8974_i2c_probe(struct i2c_client *i2c)
0a1bf553 688{
51b2bb3f 689 struct wm8974_priv *priv;
e40e0b5d 690 struct regmap *regmap;
f0fba2ad 691 int ret;
0a1bf553 692
51b2bb3f
MR
693 priv = devm_kzalloc(&i2c->dev, sizeof(*priv), GFP_KERNEL);
694 if (!priv)
695 return -ENOMEM;
696
697 i2c_set_clientdata(i2c, priv);
698
e40e0b5d
MB
699 regmap = devm_regmap_init_i2c(i2c, &wm8974_regmap);
700 if (IS_ERR(regmap))
701 return PTR_ERR(regmap);
702
3e32a3ff
KM
703 ret = devm_snd_soc_register_component(&i2c->dev,
704 &soc_component_dev_wm8974, &wm8974_dai, 1);
c2562a8e 705
f0fba2ad 706 return ret;
4fcbbb67 707}
0a1bf553 708
4fcbbb67 709static const struct i2c_device_id wm8974_i2c_id[] = {
ba2a2c37 710 { "wm8974" },
4fcbbb67
MB
711 { }
712};
713MODULE_DEVICE_TABLE(i2c, wm8974_i2c_id);
714
2005bd88
MR
715static const struct of_device_id wm8974_of_match[] = {
716 { .compatible = "wlf,wm8974", },
717 { }
718};
719MODULE_DEVICE_TABLE(of, wm8974_of_match);
720
4fcbbb67
MB
721static struct i2c_driver wm8974_i2c_driver = {
722 .driver = {
091edccf 723 .name = "wm8974",
2005bd88 724 .of_match_table = wm8974_of_match,
4fcbbb67 725 },
9abcd240 726 .probe = wm8974_i2c_probe,
4fcbbb67 727 .id_table = wm8974_i2c_id,
0a1bf553 728};
0a1bf553 729
2be59418 730module_i2c_driver(wm8974_i2c_driver);
0a1bf553
MB
731
732MODULE_DESCRIPTION("ASoC WM8974 driver");
733MODULE_AUTHOR("Liam Girdwood");
734MODULE_LICENSE("GPL");