Merge tag 'intel-pinctrl-v6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / sound / soc / codecs / es8326.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 //
3 // es8326.c -- es8326 ALSA SoC audio driver
4 // Copyright Everest Semiconductor Co., Ltd
5 //
6 // Authors: David Yang <yangxiaohua@everest-semi.com>
7 //
8
9 #include <linux/clk.h>
10 #include <linux/i2c.h>
11 #include <linux/interrupt.h>
12 #include <linux/irq.h>
13 #include <linux/module.h>
14 #include <sound/jack.h>
15 #include <sound/pcm_params.h>
16 #include <sound/soc.h>
17 #include <sound/soc-dapm.h>
18 #include <sound/tlv.h>
19 #include "es8326.h"
20
21 struct es8326_priv {
22         struct clk *mclk;
23         struct i2c_client *i2c;
24         struct regmap *regmap;
25         struct snd_soc_component *component;
26         struct delayed_work jack_detect_work;
27         struct delayed_work button_press_work;
28         struct snd_soc_jack *jack;
29         int irq;
30         /* The lock protects the situation that an irq is generated
31          * while enabling or disabling or during an irq.
32          */
33         struct mutex lock;
34         u8 jack_pol;
35         u8 interrupt_src;
36         u8 interrupt_clk;
37         u8 hpl_vol;
38         u8 hpr_vol;
39         bool jd_inverted;
40         unsigned int sysclk;
41
42         bool calibrated;
43         int version;
44         int hp;
45         int jack_remove_retry;
46 };
47
48 static int es8326_crosstalk1_get(struct snd_kcontrol *kcontrol,
49                 struct snd_ctl_elem_value *ucontrol)
50 {
51         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
52         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
53         unsigned int crosstalk_h, crosstalk_l;
54         unsigned int crosstalk;
55
56         regmap_read(es8326->regmap, ES8326_DAC_RAMPRATE, &crosstalk_h);
57         regmap_read(es8326->regmap, ES8326_DAC_CROSSTALK, &crosstalk_l);
58         crosstalk_h &= 0x20;
59         crosstalk_l &= 0xf0;
60         crosstalk = crosstalk_h >> 1 | crosstalk_l >> 4;
61         ucontrol->value.integer.value[0] = crosstalk;
62
63         return 0;
64 }
65
66 static int es8326_crosstalk1_set(struct snd_kcontrol *kcontrol,
67                 struct snd_ctl_elem_value *ucontrol)
68 {
69         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
70         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
71         unsigned int crosstalk_h, crosstalk_l;
72         unsigned int crosstalk;
73
74         crosstalk = ucontrol->value.integer.value[0];
75         regmap_read(es8326->regmap, ES8326_DAC_CROSSTALK, &crosstalk_l);
76         crosstalk_h = (crosstalk & 0x10) << 1;
77         crosstalk_l &= 0x0f;
78         crosstalk_l |= (crosstalk & 0x0f) << 4;
79         regmap_update_bits(es8326->regmap, ES8326_DAC_RAMPRATE,
80                         0x20, crosstalk_h);
81         regmap_write(es8326->regmap, ES8326_DAC_CROSSTALK, crosstalk_l);
82
83         return 0;
84 }
85
86 static int es8326_crosstalk2_get(struct snd_kcontrol *kcontrol,
87                 struct snd_ctl_elem_value *ucontrol)
88 {
89         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
90         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
91         unsigned int crosstalk_h, crosstalk_l;
92         unsigned int crosstalk;
93
94         regmap_read(es8326->regmap, ES8326_DAC_RAMPRATE, &crosstalk_h);
95         regmap_read(es8326->regmap, ES8326_DAC_CROSSTALK, &crosstalk_l);
96         crosstalk_h &= 0x10;
97         crosstalk_l &= 0x0f;
98         crosstalk = crosstalk_h  | crosstalk_l;
99         ucontrol->value.integer.value[0] = crosstalk;
100
101         return 0;
102 }
103
104 static int es8326_crosstalk2_set(struct snd_kcontrol *kcontrol,
105                 struct snd_ctl_elem_value *ucontrol)
106 {
107         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
108         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
109         unsigned int crosstalk_h, crosstalk_l;
110         unsigned int crosstalk;
111
112         crosstalk = ucontrol->value.integer.value[0];
113         regmap_read(es8326->regmap, ES8326_DAC_CROSSTALK, &crosstalk_l);
114         crosstalk_h = crosstalk & 0x10;
115         crosstalk_l &= 0xf0;
116         crosstalk_l |= crosstalk & 0x0f;
117         regmap_update_bits(es8326->regmap, ES8326_DAC_RAMPRATE,
118                         0x10, crosstalk_h);
119         regmap_write(es8326->regmap, ES8326_DAC_CROSSTALK, crosstalk_l);
120
121         return 0;
122 }
123
124 static int es8326_hplvol_get(struct snd_kcontrol *kcontrol,
125                 struct snd_ctl_elem_value *ucontrol)
126 {
127         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
128         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
129
130         ucontrol->value.integer.value[0] = es8326->hpl_vol;
131
132         return 0;
133 }
134
135 static int es8326_hplvol_set(struct snd_kcontrol *kcontrol,
136                 struct snd_ctl_elem_value *ucontrol)
137 {
138         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
139         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
140         unsigned int hp_vol;
141
142         hp_vol = ucontrol->value.integer.value[0];
143         if (hp_vol > 5)
144                 return -EINVAL;
145         if (es8326->hpl_vol != hp_vol) {
146                 es8326->hpl_vol = hp_vol;
147                 if (hp_vol >= 3)
148                         hp_vol++;
149                 regmap_update_bits(es8326->regmap, ES8326_HP_VOL,
150                                 0x70, (hp_vol << 4));
151                 return 1;
152         }
153
154         return 0;
155 }
156
157 static int es8326_hprvol_get(struct snd_kcontrol *kcontrol,
158                 struct snd_ctl_elem_value *ucontrol)
159 {
160         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
161         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
162
163         ucontrol->value.integer.value[0] = es8326->hpr_vol;
164
165         return 0;
166 }
167
168 static int es8326_hprvol_set(struct snd_kcontrol *kcontrol,
169                 struct snd_ctl_elem_value *ucontrol)
170 {
171         struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
172         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
173         unsigned int hp_vol;
174
175         hp_vol = ucontrol->value.integer.value[0];
176         if (hp_vol > 5)
177                 return -EINVAL;
178         if (es8326->hpr_vol != hp_vol) {
179                 es8326->hpr_vol = hp_vol;
180                 if (hp_vol >= 3)
181                         hp_vol++;
182                 regmap_update_bits(es8326->regmap, ES8326_HP_VOL,
183                                 0x07, hp_vol);
184                 return 1;
185         }
186
187         return 0;
188 }
189
190 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(dac_vol_tlv, -9550, 50, 0);
191 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(adc_vol_tlv, -9550, 50, 0);
192 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(adc_analog_pga_tlv, 0, 300, 0);
193 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(adc_pga_tlv, 0, 600, 0);
194 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(softramp_rate, 0, 100, 0);
195 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(drc_target_tlv, -3200, 200, 0);
196 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(drc_recovery_tlv, -125, 250, 0);
197
198 static const char *const winsize[] = {
199         "0.25db/2  LRCK",
200         "0.25db/4  LRCK",
201         "0.25db/8  LRCK",
202         "0.25db/16  LRCK",
203         "0.25db/32  LRCK",
204         "0.25db/64  LRCK",
205         "0.25db/128  LRCK",
206         "0.25db/256  LRCK",
207         "0.25db/512  LRCK",
208         "0.25db/1024  LRCK",
209         "0.25db/2048  LRCK",
210         "0.25db/4096  LRCK",
211         "0.25db/8192  LRCK",
212         "0.25db/16384  LRCK",
213         "0.25db/32768  LRCK",
214         "0.25db/65536  LRCK",
215 };
216
217 static const char *const dacpol_txt[] = {
218         "Normal", "R Invert", "L Invert", "L + R Invert" };
219
220 static const char *const hp_spkvol_switch[] = {
221         "HPVOL: HPL+HPL, SPKVOL: HPL+HPL",
222         "HPVOL: HPL+HPR, SPKVOL: HPL+HPR",
223         "HPVOL: HPL+HPL, SPKVOL: SPKL+SPKR",
224         "HPVOL: HPL+HPR, SPKVOL: SPKL+SPKR",
225 };
226
227 static const struct soc_enum dacpol =
228         SOC_ENUM_SINGLE(ES8326_DAC_DSM, 4, 4, dacpol_txt);
229 static const struct soc_enum alc_winsize =
230         SOC_ENUM_SINGLE(ES8326_ADC_RAMPRATE, 4, 16, winsize);
231 static const struct soc_enum drc_winsize =
232         SOC_ENUM_SINGLE(ES8326_DRC_WINSIZE, 4, 16, winsize);
233 static const struct soc_enum hpvol_spkvol_switch =
234         SOC_ENUM_SINGLE(ES8326_HP_MISC, 6, 4, hp_spkvol_switch);
235
236 static const struct snd_kcontrol_new es8326_snd_controls[] = {
237         SOC_SINGLE_TLV("DAC Playback Volume", ES8326_DACL_VOL, 0, 0xbf, 0, dac_vol_tlv),
238         SOC_ENUM("Playback Polarity", dacpol),
239         SOC_SINGLE_TLV("DAC Ramp Rate", ES8326_DAC_RAMPRATE, 0, 0x0f, 0, softramp_rate),
240         SOC_SINGLE_TLV("DRC Recovery Level", ES8326_DRC_RECOVERY, 0, 4, 0, drc_recovery_tlv),
241         SOC_ENUM("DRC Winsize", drc_winsize),
242         SOC_SINGLE_TLV("DRC Target Level", ES8326_DRC_WINSIZE, 0, 0x0f, 0, drc_target_tlv),
243
244         SOC_DOUBLE_R_TLV("ADC Capture Volume", ES8326_ADC1_VOL, ES8326_ADC2_VOL, 0, 0xff, 0,
245                          adc_vol_tlv),
246         SOC_DOUBLE_TLV("ADC PGA Volume", ES8326_ADC_SCALE, 4, 0, 5, 0, adc_pga_tlv),
247         SOC_SINGLE_TLV("ADC PGA Gain Volume", ES8326_PGAGAIN, 0, 10, 0, adc_analog_pga_tlv),
248         SOC_SINGLE_TLV("ADC Ramp Rate", ES8326_ADC_RAMPRATE, 0, 0x0f, 0, softramp_rate),
249         SOC_SINGLE("ALC Capture Switch", ES8326_ALC_RECOVERY, 3, 1, 0),
250         SOC_SINGLE_TLV("ALC Capture Recovery Level", ES8326_ALC_LEVEL,
251                         0, 4, 0, drc_recovery_tlv),
252         SOC_ENUM("ALC Capture Winsize", alc_winsize),
253         SOC_SINGLE_TLV("ALC Capture Target Level", ES8326_ALC_LEVEL,
254                         0, 0x0f, 0, drc_target_tlv),
255
256         SOC_SINGLE_EXT("CROSSTALK1", SND_SOC_NOPM, 0, 31, 0,
257                         es8326_crosstalk1_get, es8326_crosstalk1_set),
258         SOC_SINGLE_EXT("CROSSTALK2", SND_SOC_NOPM, 0, 31, 0,
259                         es8326_crosstalk2_get, es8326_crosstalk2_set),
260         SOC_SINGLE_EXT("HPL Volume", SND_SOC_NOPM, 0, 5, 0,
261                         es8326_hplvol_get, es8326_hplvol_set),
262         SOC_SINGLE_EXT("HPR Volume", SND_SOC_NOPM, 0, 5, 0,
263                         es8326_hprvol_get, es8326_hprvol_set),
264
265         SOC_SINGLE_TLV("HPL Playback Volume", ES8326_DACL_VOL, 0, 0xbf, 0, dac_vol_tlv),
266         SOC_SINGLE_TLV("HPR Playback Volume", ES8326_DACR_VOL, 0, 0xbf, 0, dac_vol_tlv),
267         SOC_SINGLE_TLV("SPKL Playback Volume", ES8326_SPKL_VOL, 0, 0xbf, 0, dac_vol_tlv),
268         SOC_SINGLE_TLV("SPKR Playback Volume", ES8326_SPKR_VOL, 0, 0xbf, 0, dac_vol_tlv),
269
270         SOC_ENUM("HPVol SPKVol Switch", hpvol_spkvol_switch),
271 };
272
273 static const struct snd_soc_dapm_widget es8326_dapm_widgets[] = {
274         SND_SOC_DAPM_INPUT("MIC1"),
275         SND_SOC_DAPM_INPUT("MIC2"),
276         SND_SOC_DAPM_INPUT("MIC3"),
277         SND_SOC_DAPM_INPUT("MIC4"),
278
279         SND_SOC_DAPM_ADC("ADC L", NULL, SND_SOC_NOPM, 0, 0),
280         SND_SOC_DAPM_ADC("ADC R", NULL, SND_SOC_NOPM, 0, 0),
281
282         /* Digital Interface */
283         SND_SOC_DAPM_AIF_OUT("I2S OUT", "I2S1 Capture", 0, SND_SOC_NOPM, 0, 0),
284         SND_SOC_DAPM_AIF_IN("I2S IN", "I2S1 Playback", 0, SND_SOC_NOPM, 0, 0),
285
286         /* Analog Power Supply*/
287         SND_SOC_DAPM_DAC("Right DAC", NULL, ES8326_ANA_PDN, 0, 1),
288         SND_SOC_DAPM_DAC("Left DAC", NULL, ES8326_ANA_PDN, 1, 1),
289         SND_SOC_DAPM_SUPPLY("MICBIAS1", ES8326_ANA_MICBIAS, 2, 0, NULL, 0),
290         SND_SOC_DAPM_SUPPLY("MICBIAS2", ES8326_ANA_MICBIAS, 3, 0, NULL, 0),
291
292         SND_SOC_DAPM_PGA("LHPMIX", ES8326_DAC2HPMIX, 7, 0, NULL, 0),
293         SND_SOC_DAPM_PGA("RHPMIX", ES8326_DAC2HPMIX, 3, 0, NULL, 0),
294
295         SND_SOC_DAPM_REG(snd_soc_dapm_supply, "HPOR Supply", ES8326_HP_CAL,
296                          4, 7, 0, 0),
297         SND_SOC_DAPM_REG(snd_soc_dapm_supply, "HPOL Supply", ES8326_HP_CAL,
298                          0, 7, 0, 0),
299
300         SND_SOC_DAPM_OUTPUT("HPOL"),
301         SND_SOC_DAPM_OUTPUT("HPOR"),
302 };
303
304 static const struct snd_soc_dapm_route es8326_dapm_routes[] = {
305         {"ADC L", NULL, "MIC1"},
306         {"ADC R", NULL, "MIC2"},
307         {"ADC L", NULL, "MIC3"},
308         {"ADC R", NULL, "MIC4"},
309
310         {"I2S OUT", NULL, "ADC L"},
311         {"I2S OUT", NULL, "ADC R"},
312
313         {"Right DAC", NULL, "I2S IN"},
314         {"Left DAC", NULL, "I2S IN"},
315
316         {"LHPMIX", NULL, "Left DAC"},
317         {"RHPMIX", NULL, "Right DAC"},
318
319         {"HPOR", NULL, "HPOR Supply"},
320         {"HPOL", NULL, "HPOL Supply"},
321
322         {"HPOL", NULL, "LHPMIX"},
323         {"HPOR", NULL, "RHPMIX"},
324 };
325
326 static bool es8326_volatile_register(struct device *dev, unsigned int reg)
327 {
328         switch (reg) {
329         case ES8326_HPL_OFFSET_INI:
330         case ES8326_HPR_OFFSET_INI:
331         case ES8326_HPDET_STA:
332         case ES8326_CTIA_OMTP_STA:
333         case ES8326_CSM_MUTE_STA:
334                 return true;
335         default:
336                 return false;
337         }
338 }
339
340 static const struct regmap_config es8326_regmap_config = {
341         .reg_bits = 8,
342         .val_bits = 8,
343         .max_register = 0xff,
344         .volatile_reg = es8326_volatile_register,
345         .cache_type = REGCACHE_RBTREE,
346 };
347
348 struct _coeff_div {
349         u16 fs;
350         u32 rate;
351         u32 mclk;
352         u8 reg4;
353         u8 reg5;
354         u8 reg6;
355         u8 reg7;
356         u8 reg8;
357         u8 reg9;
358         u8 rega;
359         u8 regb;
360 };
361
362 /* codec hifi mclk clock divider coefficients */
363 /* {ratio, LRCK, MCLK, REG04, REG05, REG06, REG07, REG08, REG09, REG10, REG11} */
364 static const struct _coeff_div coeff_div_v0[] = {
365         {64, 8000, 512000, 0x60, 0x01, 0x0F, 0x75, 0x0A, 0x1B, 0x1F, 0x7F},
366         {64, 16000, 1024000, 0x20, 0x00, 0x33, 0x35, 0x0A, 0x1B, 0x1F, 0x3F},
367         {64, 44100, 2822400, 0xE0, 0x00, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
368         {64, 48000, 3072000, 0xE0, 0x00, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
369         {128, 8000, 1024000, 0x60, 0x00, 0x33, 0x35, 0x0A, 0x1B, 0x1F, 0x7F},
370         {128, 16000, 2048000, 0x20, 0x00, 0x03, 0x35, 0x0A, 0x1B, 0x1F, 0x3F},
371         {128, 44100, 5644800, 0xE0, 0x01, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
372         {128, 48000, 6144000, 0xE0, 0x01, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
373
374         {192, 32000, 6144000, 0xE0, 0x02, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
375         {256, 8000, 2048000, 0x60, 0x00, 0x03, 0x35, 0x0A, 0x1B, 0x1F, 0x7F},
376         {256, 16000, 4096000, 0x20, 0x01, 0x03, 0x35, 0x0A, 0x1B, 0x1F, 0x3F},
377         {256, 44100, 11289600, 0xE0, 0x00, 0x30, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
378         {256, 48000, 12288000, 0xE0, 0x00, 0x30, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
379         {384, 32000, 12288000, 0xE0, 0x05, 0x03, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
380         {400, 48000, 19200000, 0xE9, 0x04, 0x0F, 0x6d, 0x4A, 0x0A, 0x1F, 0x1F},
381
382         {500, 48000, 24000000, 0xF8, 0x04, 0x3F, 0x6D, 0x4A, 0x0A, 0x1F, 0x1F},
383         {512, 8000, 4096000, 0x60, 0x01, 0x03, 0x35, 0x0A, 0x1B, 0x1F, 0x7F},
384         {512, 16000, 8192000, 0x20, 0x00, 0x30, 0x35, 0x0A, 0x1B, 0x1F, 0x3F},
385         {512, 44100, 22579200, 0xE0, 0x00, 0x00, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
386         {512, 48000, 24576000, 0xE0, 0x00, 0x00, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
387         {768, 32000, 24576000, 0xE0, 0x02, 0x30, 0x2D, 0x4A, 0x0A, 0x1F, 0x1F},
388         {1024, 8000, 8192000, 0x60, 0x00, 0x30, 0x35, 0x0A, 0x1B, 0x1F, 0x7F},
389         {1024, 16000, 16384000, 0x20, 0x00, 0x00, 0x35, 0x0A, 0x1B, 0x1F, 0x3F},
390 };
391
392 static const struct _coeff_div coeff_div_v3[] = {
393         {32, 8000, 256000, 0x60, 0x00, 0x0F, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
394         {32, 16000, 512000, 0x20, 0x00, 0x0D, 0x75, 0x8A, 0x1B, 0x1F, 0x3F},
395         {32, 44100, 1411200, 0x00, 0x00, 0x13, 0x2D, 0x8A, 0x0A, 0x1F, 0x1F},
396         {32, 48000, 1536000, 0x00, 0x00, 0x13, 0x2D, 0x8A, 0x0A, 0x1F, 0x1F},
397         {36, 8000, 288000, 0x20, 0x00, 0x0D, 0x75, 0x8A, 0x1B, 0x23, 0x47},
398         {36, 16000, 576000, 0x20, 0x00, 0x0D, 0x75, 0x8A, 0x1B, 0x23, 0x47},
399         {48, 8000, 384000, 0x60, 0x02, 0x1F, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
400         {48, 16000, 768000, 0x20, 0x02, 0x0F, 0x75, 0x8A, 0x1B, 0x1F, 0x3F},
401         {48, 48000, 2304000, 0x00, 0x02, 0x0D, 0x2D, 0x8A, 0x0A, 0x1F, 0x1F},
402
403         {64, 8000, 512000, 0x60, 0x00, 0x35, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
404         {64, 16000, 1024000, 0x20, 0x00, 0x05, 0x75, 0x8A, 0x1B, 0x1F, 0x3F},
405         {64, 44100, 2822400, 0xE0, 0x00, 0x31, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
406         {64, 48000, 3072000, 0xE0, 0x00, 0x31, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
407         {72, 8000, 576000, 0x20, 0x00, 0x13, 0x35, 0x8A, 0x1B, 0x23, 0x47},
408         {72, 16000, 1152000, 0x20, 0x00, 0x05, 0x75, 0x8A, 0x1B, 0x23, 0x47},
409         {96, 8000, 768000, 0x60, 0x02, 0x1D, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
410         {96, 16000, 1536000, 0x20, 0x02, 0x0D, 0x75, 0x8A, 0x1B, 0x1F, 0x3F},
411         {100, 48000, 4800000, 0x04, 0x04, 0x3F, 0x6D, 0xB8, 0x08, 0x4f, 0x1f},
412         {125, 48000, 6000000, 0x04, 0x04, 0x1F, 0x2D, 0x8A, 0x0A, 0x27, 0x27},
413
414         {128, 8000, 1024000, 0x60, 0x00, 0x05, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
415         {128, 16000, 2048000, 0x20, 0x00, 0x31, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
416         {128, 44100, 5644800, 0xE0, 0x00, 0x01, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
417         {128, 48000, 6144000, 0xE0, 0x00, 0x01, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
418         {144, 8000, 1152000, 0x20, 0x00, 0x03, 0x35, 0x8A, 0x1B, 0x23, 0x47},
419         {144, 16000, 2304000, 0x20, 0x00, 0x11, 0x35, 0x8A, 0x1B, 0x23, 0x47},
420         {192, 8000, 1536000, 0x60, 0x02, 0x0D, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
421         {192, 32000, 6144000, 0xE0, 0x02, 0x31, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
422         {192, 16000, 3072000, 0x20, 0x02, 0x05, 0x75, 0xCA, 0x1B, 0x1F, 0x3F},
423
424         {200, 48000, 9600000, 0x04, 0x04, 0x0F, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
425         {250, 48000, 12000000, 0x04, 0x04, 0x0F, 0x2D, 0xCA, 0x0A, 0x27, 0x27},
426         {256, 8000, 2048000, 0x60, 0x00, 0x31, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
427         {256, 16000, 4096000, 0x20, 0x00, 0x01, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
428         {256, 44100, 11289600, 0xE0, 0x00, 0x30, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
429         {256, 48000, 12288000, 0xE0, 0x00, 0x30, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
430         {288, 8000, 2304000, 0x20, 0x00, 0x01, 0x35, 0x8A, 0x1B, 0x23, 0x47},
431         {384, 8000, 3072000, 0x60, 0x02, 0x05, 0x75, 0x8A, 0x1B, 0x1F, 0x7F},
432         {384, 16000, 6144000, 0x20, 0x02, 0x03, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
433         {384, 32000, 12288000, 0xE0, 0x02, 0x01, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
434         {384, 48000, 18432000, 0x00, 0x02, 0x01, 0x2D, 0x8A, 0x0A, 0x1F, 0x1F},
435
436         {400, 48000, 19200000, 0xE4, 0x04, 0x35, 0x6d, 0xCA, 0x0A, 0x1F, 0x1F},
437         {500, 48000, 24000000, 0xF8, 0x04, 0x3F, 0x6D, 0xCA, 0x0A, 0x1F, 0x1F},
438         {512, 8000, 4096000, 0x60, 0x00, 0x01, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
439         {512, 16000, 8192000, 0x20, 0x00, 0x30, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
440         {512, 44100, 22579200, 0xE0, 0x00, 0x00, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
441         {512, 48000, 24576000, 0xE0, 0x00, 0x00, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
442         {768, 8000, 6144000, 0x60, 0x02, 0x11, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
443         {768, 16000, 12288000, 0x20, 0x02, 0x01, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
444         {768, 32000, 24576000, 0xE0, 0x02, 0x30, 0x2D, 0xCA, 0x0A, 0x1F, 0x1F},
445         {800, 48000, 38400000, 0x00, 0x18, 0x13, 0x2D, 0x8A, 0x0A, 0x1F, 0x1F},
446
447         {1024, 8000, 8192000, 0x60, 0x00, 0x30, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
448         {1024, 16000, 16384000, 0x20, 0x00, 0x00, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
449         {1152, 16000, 18432000, 0x20, 0x08, 0x11, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
450         {1536, 8000, 12288000, 0x60, 0x02, 0x01, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
451         {1536, 16000, 24576000, 0x20, 0x02, 0x10, 0x35, 0x8A, 0x1B, 0x1F, 0x3F},
452         {1625, 8000, 13000000, 0x0C, 0x18, 0x1F, 0x2D, 0x8A, 0x0A, 0x27, 0x27},
453         {1625, 16000, 26000000, 0x0C, 0x18, 0x1F, 0x2D, 0x8A, 0x0A, 0x27, 0x27},
454         {2048, 8000, 16384000, 0x60, 0x00, 0x00, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
455         {2304, 8000, 18432000, 0x40, 0x02, 0x10, 0x35, 0x8A, 0x1B, 0x1F, 0x5F},
456         {3072, 8000, 24576000, 0x60, 0x02, 0x10, 0x35, 0x8A, 0x1B, 0x1F, 0x7F},
457         {3250, 8000, 26000000, 0x0C, 0x18, 0x0F, 0x2D, 0x8A, 0x0A, 0x27, 0x27},
458 };
459
460 static inline int get_coeff(int mclk, int rate, int array,
461                                 const struct _coeff_div *coeff_div)
462 {
463         int i;
464
465         for (i = 0; i < array; i++) {
466                 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
467                         return i;
468         }
469
470         return -EINVAL;
471 }
472
473 static int es8326_set_dai_sysclk(struct snd_soc_dai *codec_dai,
474                                  int clk_id, unsigned int freq, int dir)
475 {
476         struct snd_soc_component *codec = codec_dai->component;
477         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(codec);
478
479         es8326->sysclk = freq;
480
481         return 0;
482 }
483
484 static int es8326_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
485 {
486         struct snd_soc_component *component = codec_dai->component;
487         u8 iface = 0;
488
489         switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
490         case SND_SOC_DAIFMT_CBC_CFP:
491                 snd_soc_component_update_bits(component, ES8326_RESET,
492                                               ES8326_MASTER_MODE_EN, ES8326_MASTER_MODE_EN);
493                 break;
494         case SND_SOC_DAIFMT_CBC_CFC:
495                 break;
496         default:
497                 return -EINVAL;
498         }
499
500         /* interface format */
501         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
502         case SND_SOC_DAIFMT_I2S:
503                 break;
504         case SND_SOC_DAIFMT_RIGHT_J:
505                 dev_err(component->dev, "Codec driver does not support right justified\n");
506                 return -EINVAL;
507         case SND_SOC_DAIFMT_LEFT_J:
508                 iface |= ES8326_DAIFMT_LEFT_J;
509                 break;
510         case SND_SOC_DAIFMT_DSP_A:
511                 iface |= ES8326_DAIFMT_DSP_A;
512                 break;
513         case SND_SOC_DAIFMT_DSP_B:
514                 iface |= ES8326_DAIFMT_DSP_B;
515                 break;
516         default:
517                 return -EINVAL;
518         }
519
520         snd_soc_component_update_bits(component, ES8326_FMT, ES8326_DAIFMT_MASK, iface);
521
522         return 0;
523 }
524
525 static int es8326_pcm_hw_params(struct snd_pcm_substream *substream,
526                                 struct snd_pcm_hw_params *params,
527                                 struct snd_soc_dai *dai)
528 {
529         struct snd_soc_component *component = dai->component;
530         const struct _coeff_div *coeff_div;
531         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
532         u8 srate = 0;
533         int coeff, array;
534
535         if (es8326->version == 0) {
536                 coeff_div =  coeff_div_v0;
537                 array = ARRAY_SIZE(coeff_div_v0);
538         } else {
539                 coeff_div =  coeff_div_v3;
540                 array = ARRAY_SIZE(coeff_div_v3);
541         }
542         coeff = get_coeff(es8326->sysclk, params_rate(params), array, coeff_div);
543         /* bit size */
544         switch (params_format(params)) {
545         case SNDRV_PCM_FORMAT_S16_LE:
546                 srate |= ES8326_S16_LE;
547                 break;
548         case SNDRV_PCM_FORMAT_S20_3LE:
549                 srate |= ES8326_S20_3_LE;
550                 break;
551         case SNDRV_PCM_FORMAT_S18_3LE:
552                 srate |= ES8326_S18_LE;
553                 break;
554         case SNDRV_PCM_FORMAT_S24_LE:
555                 srate |= ES8326_S24_LE;
556                 break;
557         case SNDRV_PCM_FORMAT_S32_LE:
558                 srate |= ES8326_S32_LE;
559                 break;
560         default:
561                 return -EINVAL;
562         }
563
564         /* set iface & srate */
565         snd_soc_component_update_bits(component, ES8326_FMT, ES8326_DATA_LEN_MASK, srate);
566
567         if (coeff >= 0) {
568                 regmap_write(es8326->regmap,  ES8326_CLK_DIV1,
569                              coeff_div[coeff].reg4);
570                 regmap_write(es8326->regmap,  ES8326_CLK_DIV2,
571                              coeff_div[coeff].reg5);
572                 regmap_write(es8326->regmap,  ES8326_CLK_DLL,
573                              coeff_div[coeff].reg6);
574                 regmap_write(es8326->regmap,  ES8326_CLK_MUX,
575                              coeff_div[coeff].reg7);
576                 regmap_write(es8326->regmap,  ES8326_CLK_ADC_SEL,
577                              coeff_div[coeff].reg8);
578                 regmap_write(es8326->regmap,  ES8326_CLK_DAC_SEL,
579                              coeff_div[coeff].reg9);
580                 regmap_write(es8326->regmap,  ES8326_CLK_ADC_OSR,
581                              coeff_div[coeff].rega);
582                 regmap_write(es8326->regmap,  ES8326_CLK_DAC_OSR,
583                              coeff_div[coeff].regb);
584         } else {
585                 dev_warn(component->dev, "Clock coefficients do not match");
586         }
587
588         return 0;
589 }
590
591 static int es8326_mute(struct snd_soc_dai *dai, int mute, int direction)
592 {
593         struct snd_soc_component *component = dai->component;
594         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
595         unsigned int offset_l, offset_r;
596
597         if (mute) {
598                 if (direction == SNDRV_PCM_STREAM_PLAYBACK) {
599                         regmap_write(es8326->regmap, ES8326_HP_CAL, ES8326_HP_OFF);
600                         regmap_update_bits(es8326->regmap, ES8326_DAC_MUTE,
601                                         ES8326_MUTE_MASK, ES8326_MUTE);
602                         regmap_update_bits(es8326->regmap, ES8326_HP_DRIVER_REF,
603                                         0x30, 0x00);
604                 } else {
605                         regmap_update_bits(es8326->regmap,  ES8326_ADC_MUTE,
606                                         0x0F, 0x0F);
607                 }
608         } else {
609                 if (!es8326->calibrated) {
610                         regmap_write(es8326->regmap, ES8326_HP_CAL, ES8326_HP_FORCE_CAL);
611                         msleep(30);
612                         regmap_write(es8326->regmap, ES8326_HP_CAL, ES8326_HP_OFF);
613                         regmap_read(es8326->regmap, ES8326_HPL_OFFSET_INI, &offset_l);
614                         regmap_read(es8326->regmap, ES8326_HPR_OFFSET_INI, &offset_r);
615                         regmap_write(es8326->regmap, ES8326_HP_OFFSET_CAL, 0x8c);
616                         regmap_write(es8326->regmap, ES8326_HPL_OFFSET_INI, offset_l);
617                         regmap_write(es8326->regmap, ES8326_HPR_OFFSET_INI, offset_r);
618                         es8326->calibrated = true;
619                 }
620                 if (direction == SNDRV_PCM_STREAM_PLAYBACK) {
621                         regmap_update_bits(es8326->regmap, ES8326_DAC_DSM, 0x01, 0x01);
622                         usleep_range(1000, 5000);
623                         regmap_update_bits(es8326->regmap, ES8326_DAC_DSM, 0x01, 0x00);
624                         usleep_range(1000, 5000);
625                         regmap_update_bits(es8326->regmap, ES8326_HP_DRIVER_REF, 0x30, 0x20);
626                         regmap_update_bits(es8326->regmap, ES8326_HP_DRIVER_REF, 0x30, 0x30);
627                         regmap_write(es8326->regmap, ES8326_HP_DRIVER, 0xa1);
628                         regmap_write(es8326->regmap, ES8326_HP_CAL, ES8326_HP_ON);
629                         regmap_update_bits(es8326->regmap, ES8326_DAC_MUTE,
630                                         ES8326_MUTE_MASK, ~(ES8326_MUTE));
631                 } else {
632                         msleep(300);
633                         regmap_update_bits(es8326->regmap,  ES8326_ADC_MUTE,
634                                         0x0F, 0x00);
635                 }
636         }
637         return 0;
638 }
639
640 static int es8326_set_bias_level(struct snd_soc_component *codec,
641                                  enum snd_soc_bias_level level)
642 {
643         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(codec);
644         int ret;
645
646         switch (level) {
647         case SND_SOC_BIAS_ON:
648                 ret = clk_prepare_enable(es8326->mclk);
649                 if (ret)
650                         return ret;
651
652                 regmap_update_bits(es8326->regmap, ES8326_RESET, 0x02, 0x02);
653                 usleep_range(5000, 10000);
654                 regmap_write(es8326->regmap, ES8326_INTOUT_IO, es8326->interrupt_clk);
655                 regmap_write(es8326->regmap, ES8326_SDINOUT1_IO,
656                             (ES8326_IO_DMIC_CLK << ES8326_SDINOUT1_SHIFT));
657                 regmap_write(es8326->regmap, ES8326_PGA_PDN, 0x40);
658                 regmap_write(es8326->regmap, ES8326_ANA_PDN, 0x00);
659                 regmap_update_bits(es8326->regmap,  ES8326_CLK_CTL, 0x20, 0x20);
660                 regmap_update_bits(es8326->regmap, ES8326_RESET, 0x02, 0x00);
661                 break;
662         case SND_SOC_BIAS_PREPARE:
663                 break;
664         case SND_SOC_BIAS_STANDBY:
665                 regmap_write(es8326->regmap, ES8326_ANA_PDN, 0x3b);
666                 regmap_update_bits(es8326->regmap, ES8326_CLK_CTL, 0x20, 0x00);
667                 regmap_write(es8326->regmap, ES8326_SDINOUT1_IO, ES8326_IO_INPUT);
668                 break;
669         case SND_SOC_BIAS_OFF:
670                 clk_disable_unprepare(es8326->mclk);
671                 break;
672         }
673
674         return 0;
675 }
676
677 #define es8326_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
678         SNDRV_PCM_FMTBIT_S24_LE)
679
680 static const struct snd_soc_dai_ops es8326_ops = {
681         .hw_params = es8326_pcm_hw_params,
682         .set_fmt = es8326_set_dai_fmt,
683         .set_sysclk = es8326_set_dai_sysclk,
684         .mute_stream = es8326_mute,
685         .no_capture_mute = 0,
686 };
687
688 static struct snd_soc_dai_driver es8326_dai = {
689         .name = "ES8326 HiFi",
690         .playback = {
691                 .stream_name = "Playback",
692                 .channels_min = 1,
693                 .channels_max = 2,
694                 .rates = SNDRV_PCM_RATE_8000_48000,
695                 .formats = es8326_FORMATS,
696                 },
697         .capture = {
698                 .stream_name = "Capture",
699                 .channels_min = 1,
700                 .channels_max = 2,
701                 .rates = SNDRV_PCM_RATE_8000_48000,
702                 .formats = es8326_FORMATS,
703                 },
704         .ops = &es8326_ops,
705         .symmetric_rate = 1,
706 };
707
708 static void es8326_enable_micbias(struct snd_soc_component *component)
709 {
710         struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
711
712         snd_soc_dapm_mutex_lock(dapm);
713         snd_soc_dapm_force_enable_pin_unlocked(dapm, "MICBIAS1");
714         snd_soc_dapm_force_enable_pin_unlocked(dapm, "MICBIAS2");
715         snd_soc_dapm_sync_unlocked(dapm);
716         snd_soc_dapm_mutex_unlock(dapm);
717 }
718
719 static void es8326_disable_micbias(struct snd_soc_component *component)
720 {
721         struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
722
723         snd_soc_dapm_mutex_lock(dapm);
724         snd_soc_dapm_disable_pin_unlocked(dapm, "MICBIAS1");
725         snd_soc_dapm_disable_pin_unlocked(dapm, "MICBIAS2");
726         snd_soc_dapm_sync_unlocked(dapm);
727         snd_soc_dapm_mutex_unlock(dapm);
728 }
729
730 /*
731  *      For button detection, set the following in soundcard
732  *      snd_jack_set_key(jack->jack, SND_JACK_BTN_0, KEY_PLAYPAUSE);
733  *      snd_jack_set_key(jack->jack, SND_JACK_BTN_1, KEY_VOLUMEUP);
734  *      snd_jack_set_key(jack->jack, SND_JACK_BTN_2, KEY_VOLUMEDOWN);
735  */
736 static void es8326_jack_button_handler(struct work_struct *work)
737 {
738         struct es8326_priv *es8326 =
739                 container_of(work, struct es8326_priv, button_press_work.work);
740         struct snd_soc_component *comp = es8326->component;
741         unsigned int iface;
742         static int button_to_report, press_count;
743         static int prev_button, cur_button;
744
745         if (!(es8326->jack->status & SND_JACK_HEADSET)) /* Jack unplugged */
746                 return;
747
748         mutex_lock(&es8326->lock);
749         iface = snd_soc_component_read(comp, ES8326_HPDET_STA);
750         switch (iface) {
751         case 0x93:
752                 /* pause button detected */
753                 cur_button = SND_JACK_BTN_0;
754                 break;
755         case 0x6f:
756         case 0x4b:
757                 /* button volume up */
758                 cur_button = SND_JACK_BTN_1;
759                 break;
760         case 0x27:
761                 /* button volume down */
762                 cur_button = SND_JACK_BTN_2;
763                 break;
764         case 0x1e:
765         case 0xe2:
766                 /* button released or not pressed */
767                 cur_button = 0;
768                 break;
769         default:
770                 break;
771         }
772
773         if ((prev_button == cur_button) && (cur_button != 0)) {
774                 press_count++;
775                 if (press_count > 3) {
776                         /* report a press every 120ms */
777                         snd_soc_jack_report(es8326->jack, cur_button,
778                                         SND_JACK_BTN_0 | SND_JACK_BTN_1 | SND_JACK_BTN_2);
779                         press_count = 0;
780                 }
781                 button_to_report = cur_button;
782                 queue_delayed_work(system_wq, &es8326->button_press_work,
783                                    msecs_to_jiffies(35));
784         } else if (prev_button != cur_button) {
785                 /* mismatch, detect again */
786                 prev_button = cur_button;
787                 queue_delayed_work(system_wq, &es8326->button_press_work,
788                                    msecs_to_jiffies(35));
789         } else {
790                 /* released or no pressed */
791                 if (button_to_report != 0) {
792                         snd_soc_jack_report(es8326->jack, button_to_report,
793                                     SND_JACK_BTN_0 | SND_JACK_BTN_1 | SND_JACK_BTN_2);
794                         snd_soc_jack_report(es8326->jack, 0,
795                                     SND_JACK_BTN_0 | SND_JACK_BTN_1 | SND_JACK_BTN_2);
796                         button_to_report = 0;
797                 }
798         }
799         mutex_unlock(&es8326->lock);
800 }
801
802 static void es8326_jack_detect_handler(struct work_struct *work)
803 {
804         struct es8326_priv *es8326 =
805                 container_of(work, struct es8326_priv, jack_detect_work.work);
806         struct snd_soc_component *comp = es8326->component;
807         unsigned int iface;
808
809         mutex_lock(&es8326->lock);
810         iface = snd_soc_component_read(comp, ES8326_HPDET_STA);
811         dev_dbg(comp->dev, "gpio flag %#04x", iface);
812
813         if ((es8326->jack_remove_retry == 1) && (es8326->version != ES8326_VERSION_B)) {
814                 if (iface & ES8326_HPINSERT_FLAG)
815                         es8326->jack_remove_retry = 2;
816                 else
817                         es8326->jack_remove_retry = 0;
818
819                 dev_dbg(comp->dev, "remove event check, set HPJACK_POL normal, cnt = %d\n",
820                                 es8326->jack_remove_retry);
821                 /*
822                  * Inverted HPJACK_POL bit to trigger one IRQ to double check HP Removal event
823                  */
824                 regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE,
825                                         ES8326_HP_DET_JACK_POL, (es8326->jd_inverted ?
826                                         ~es8326->jack_pol : es8326->jack_pol));
827                 goto exit;
828         }
829
830         if ((iface & ES8326_HPINSERT_FLAG) == 0) {
831                 /* Jack unplugged or spurious IRQ */
832                 dev_dbg(comp->dev, "No headset detected\n");
833                 es8326_disable_micbias(es8326->component);
834                 if (es8326->jack->status & SND_JACK_HEADPHONE) {
835                         dev_dbg(comp->dev, "Report hp remove event\n");
836                         snd_soc_jack_report(es8326->jack, 0, SND_JACK_HEADSET);
837                         /* mute adc when mic path switch */
838                         regmap_write(es8326->regmap, ES8326_ADC_SCALE, 0x33);
839                         regmap_write(es8326->regmap, ES8326_ADC1_SRC, 0x44);
840                         regmap_write(es8326->regmap, ES8326_ADC2_SRC, 0x66);
841                         es8326->hp = 0;
842                 }
843                 regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE, 0x03, 0x01);
844                 regmap_write(es8326->regmap, ES8326_SYS_BIAS, 0x0a);
845                 regmap_update_bits(es8326->regmap, ES8326_HP_DRIVER_REF, 0x0f, 0x03);
846                 /*
847                  * Inverted HPJACK_POL bit to trigger one IRQ to double check HP Removal event
848                  */
849                 if ((es8326->jack_remove_retry == 0) && (es8326->version != ES8326_VERSION_B)) {
850                         es8326->jack_remove_retry = 1;
851                         dev_dbg(comp->dev, "remove event check, invert HPJACK_POL, cnt = %d\n",
852                                         es8326->jack_remove_retry);
853                         regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE,
854                                         ES8326_HP_DET_JACK_POL, (es8326->jd_inverted ?
855                                         es8326->jack_pol : ~es8326->jack_pol));
856
857                 } else {
858                         es8326->jack_remove_retry = 0;
859                 }
860         } else if ((iface & ES8326_HPINSERT_FLAG) == ES8326_HPINSERT_FLAG) {
861                 es8326->jack_remove_retry = 0;
862                 if (es8326->hp == 0) {
863                         dev_dbg(comp->dev, "First insert, start OMTP/CTIA type check\n");
864                         /*
865                          * set auto-check mode, then restart jack_detect_work after 400ms.
866                          * Don't report jack status.
867                          */
868                         regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE, 0x03, 0x01);
869                         es8326_enable_micbias(es8326->component);
870                         usleep_range(50000, 70000);
871                         regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE, 0x03, 0x00);
872                         regmap_write(es8326->regmap, ES8326_SYS_BIAS, 0x1f);
873                         regmap_update_bits(es8326->regmap, ES8326_HP_DRIVER_REF, 0x0f, 0x08);
874                         queue_delayed_work(system_wq, &es8326->jack_detect_work,
875                                         msecs_to_jiffies(400));
876                         es8326->hp = 1;
877                         goto exit;
878                 }
879                 if (es8326->jack->status & SND_JACK_HEADSET) {
880                         /* detect button */
881                         dev_dbg(comp->dev, "button pressed\n");
882                         queue_delayed_work(system_wq, &es8326->button_press_work, 10);
883                         goto exit;
884                 }
885                 if ((iface & ES8326_HPBUTTON_FLAG) == 0x01) {
886                         dev_dbg(comp->dev, "Headphone detected\n");
887                         snd_soc_jack_report(es8326->jack,
888                                         SND_JACK_HEADPHONE, SND_JACK_HEADSET);
889                 } else {
890                         dev_dbg(comp->dev, "Headset detected\n");
891                         snd_soc_jack_report(es8326->jack,
892                                         SND_JACK_HEADSET, SND_JACK_HEADSET);
893
894                         regmap_write(es8326->regmap, ES8326_ADC_SCALE, 0x33);
895                         regmap_update_bits(es8326->regmap, ES8326_PGA_PDN,
896                                         0x08, 0x08);
897                         regmap_update_bits(es8326->regmap, ES8326_PGAGAIN,
898                                         0x80, 0x80);
899                         regmap_write(es8326->regmap, ES8326_ADC1_SRC, 0x00);
900                         regmap_write(es8326->regmap, ES8326_ADC2_SRC, 0x00);
901                         regmap_update_bits(es8326->regmap, ES8326_PGA_PDN,
902                                         0x08, 0x00);
903                         usleep_range(10000, 15000);
904                 }
905         }
906 exit:
907         mutex_unlock(&es8326->lock);
908 }
909
910 static irqreturn_t es8326_irq(int irq, void *dev_id)
911 {
912         struct es8326_priv *es8326 = dev_id;
913
914         if (!es8326->jack)
915                 goto out;
916
917         if (es8326->jack->status & SND_JACK_HEADSET)
918                 queue_delayed_work(system_wq, &es8326->jack_detect_work,
919                                    msecs_to_jiffies(10));
920         else
921                 queue_delayed_work(system_wq, &es8326->jack_detect_work,
922                                    msecs_to_jiffies(300));
923
924 out:
925         return IRQ_HANDLED;
926 }
927
928 static int es8326_calibrate(struct snd_soc_component *component)
929 {
930         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
931         unsigned int reg;
932         unsigned int offset_l, offset_r;
933
934         regmap_read(es8326->regmap, ES8326_CHIP_VERSION, &reg);
935         es8326->version = reg;
936
937         if ((es8326->version == ES8326_VERSION_B) && (es8326->calibrated == false)) {
938                 dev_dbg(component->dev, "ES8326_VERSION_B, calibrating\n");
939                 regmap_write(es8326->regmap, ES8326_CLK_INV, 0xc0);
940                 regmap_write(es8326->regmap, ES8326_CLK_DIV1, 0x03);
941                 regmap_write(es8326->regmap, ES8326_CLK_DLL, 0x30);
942                 regmap_write(es8326->regmap, ES8326_CLK_MUX, 0xed);
943                 regmap_write(es8326->regmap, ES8326_CLK_DAC_SEL, 0x08);
944                 regmap_write(es8326->regmap, ES8326_CLK_TRI, 0xc1);
945                 regmap_write(es8326->regmap, ES8326_DAC_MUTE, 0x03);
946                 regmap_write(es8326->regmap, ES8326_ANA_VSEL, 0x7f);
947                 regmap_write(es8326->regmap, ES8326_VMIDLOW, 0x23);
948                 regmap_write(es8326->regmap, ES8326_DAC2HPMIX, 0x88);
949                 usleep_range(15000, 20000);
950                 regmap_write(es8326->regmap, ES8326_HP_OFFSET_CAL, 0x8c);
951                 usleep_range(15000, 20000);
952                 regmap_write(es8326->regmap, ES8326_RESET, 0xc0);
953                 usleep_range(15000, 20000);
954
955                 regmap_write(es8326->regmap, ES8326_HP_OFFSET_CAL, ES8326_HP_OFF);
956                 regmap_read(es8326->regmap, ES8326_CSM_MUTE_STA, &reg);
957                 if ((reg & 0xf0) != 0x40)
958                         msleep(50);
959
960                 regmap_write(es8326->regmap, ES8326_HP_CAL, 0xd4);
961                 msleep(200);
962                 regmap_write(es8326->regmap, ES8326_HP_CAL, 0x4d);
963                 msleep(200);
964                 regmap_write(es8326->regmap, ES8326_HP_CAL, ES8326_HP_OFF);
965                 regmap_read(es8326->regmap, ES8326_HPL_OFFSET_INI, &offset_l);
966                 regmap_read(es8326->regmap, ES8326_HPR_OFFSET_INI, &offset_r);
967                 regmap_write(es8326->regmap, ES8326_HP_OFFSET_CAL, 0x8c);
968                 regmap_write(es8326->regmap, ES8326_HPL_OFFSET_INI, offset_l);
969                 regmap_write(es8326->regmap, ES8326_HPR_OFFSET_INI, offset_r);
970                 regmap_write(es8326->regmap, ES8326_CLK_INV, 0x00);
971
972                 es8326->calibrated = true;
973         }
974
975         return 0;
976 }
977
978 static int es8326_resume(struct snd_soc_component *component)
979 {
980         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
981
982         regcache_cache_only(es8326->regmap, false);
983         regcache_sync(es8326->regmap);
984
985         /* reset internal clock state */
986         regmap_write(es8326->regmap, ES8326_RESET, 0x1f);
987         regmap_write(es8326->regmap, ES8326_VMIDSEL, 0x0E);
988         regmap_write(es8326->regmap, ES8326_ANA_LP, 0xf0);
989         usleep_range(10000, 15000);
990         regmap_write(es8326->regmap, ES8326_HPJACK_TIMER, 0xe9);
991         regmap_write(es8326->regmap, ES8326_ANA_MICBIAS, 0xcb);
992         /* set headphone default type and detect pin */
993         regmap_write(es8326->regmap, ES8326_HPDET_TYPE, 0x83);
994         regmap_write(es8326->regmap, ES8326_CLK_RESAMPLE, 0x05);
995
996         /* set internal oscillator as clock source of headpone cp */
997         regmap_write(es8326->regmap, ES8326_CLK_DIV_CPC, 0x89);
998         regmap_write(es8326->regmap, ES8326_CLK_CTL, ES8326_CLK_ON);
999         /* clock manager reset release */
1000         regmap_write(es8326->regmap, ES8326_RESET, 0x17);
1001         /* set headphone detection as half scan mode */
1002         regmap_write(es8326->regmap, ES8326_HP_MISC, 0x3d);
1003         regmap_write(es8326->regmap, ES8326_PULLUP_CTL, 0x00);
1004
1005         /* enable headphone driver */
1006         regmap_write(es8326->regmap, ES8326_HP_VOL, 0xc4);
1007         regmap_write(es8326->regmap, ES8326_HP_DRIVER, 0xa7);
1008         usleep_range(2000, 5000);
1009         regmap_write(es8326->regmap, ES8326_HP_DRIVER_REF, 0x23);
1010         regmap_write(es8326->regmap, ES8326_HP_DRIVER_REF, 0x33);
1011         regmap_write(es8326->regmap, ES8326_HP_DRIVER, 0xa1);
1012
1013         regmap_write(es8326->regmap, ES8326_CLK_INV, 0x00);
1014         regmap_write(es8326->regmap, ES8326_CLK_VMIDS1, 0xc4);
1015         regmap_write(es8326->regmap, ES8326_CLK_VMIDS2, 0x81);
1016         regmap_write(es8326->regmap, ES8326_CLK_CAL_TIME, 0x00);
1017         /* calibrate for B version */
1018         es8326_calibrate(component);
1019         regmap_write(es8326->regmap, ES8326_DAC_CROSSTALK, 0xaa);
1020         regmap_write(es8326->regmap, ES8326_DAC_RAMPRATE, 0x00);
1021         /* turn off headphone out */
1022         regmap_write(es8326->regmap, ES8326_HP_CAL, 0x00);
1023         /* set ADC and DAC in low power mode */
1024         regmap_write(es8326->regmap, ES8326_ANA_LP, 0xf0);
1025
1026         regmap_write(es8326->regmap, ES8326_ANA_VSEL, 0x7F);
1027         /* select vdda as micbias source */
1028         regmap_write(es8326->regmap, ES8326_VMIDLOW, 0x23);
1029         /* set dac dsmclip = 1 */
1030         regmap_write(es8326->regmap, ES8326_DAC_DSM, 0x08);
1031         regmap_write(es8326->regmap, ES8326_DAC_VPPSCALE, 0x15);
1032
1033         regmap_write(es8326->regmap, ES8326_HPDET_TYPE, 0x80 |
1034                         ((es8326->version == ES8326_VERSION_B) ?
1035                         (ES8326_HP_DET_SRC_PIN9 | es8326->jack_pol) :
1036                         (ES8326_HP_DET_SRC_PIN9 | es8326->jack_pol | 0x04)));
1037         usleep_range(5000, 10000);
1038         es8326_enable_micbias(es8326->component);
1039         usleep_range(50000, 70000);
1040         regmap_update_bits(es8326->regmap, ES8326_HPDET_TYPE, 0x03, 0x00);
1041         regmap_write(es8326->regmap, ES8326_INT_SOURCE,
1042                     (ES8326_INT_SRC_PIN9 | ES8326_INT_SRC_BUTTON));
1043         regmap_write(es8326->regmap, ES8326_INTOUT_IO,
1044                      es8326->interrupt_clk);
1045         regmap_write(es8326->regmap, ES8326_SDINOUT1_IO,
1046                     (ES8326_IO_DMIC_CLK << ES8326_SDINOUT1_SHIFT));
1047         regmap_write(es8326->regmap, ES8326_SDINOUT23_IO, ES8326_IO_INPUT);
1048
1049         regmap_write(es8326->regmap, ES8326_ANA_PDN, 0x00);
1050         regmap_write(es8326->regmap, ES8326_RESET, ES8326_CSM_ON);
1051         regmap_update_bits(es8326->regmap, ES8326_PGAGAIN, ES8326_MIC_SEL_MASK,
1052                            ES8326_MIC1_SEL);
1053
1054         regmap_update_bits(es8326->regmap, ES8326_DAC_MUTE, ES8326_MUTE_MASK,
1055                            ES8326_MUTE);
1056
1057         regmap_write(es8326->regmap, ES8326_ADC_MUTE, 0x0f);
1058
1059         es8326->jack_remove_retry = 0;
1060         es8326->hp = 0;
1061         es8326->hpl_vol = 0x03;
1062         es8326->hpr_vol = 0x03;
1063         return 0;
1064 }
1065
1066 static int es8326_suspend(struct snd_soc_component *component)
1067 {
1068         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
1069
1070         cancel_delayed_work_sync(&es8326->jack_detect_work);
1071         es8326_disable_micbias(component);
1072         es8326->calibrated = false;
1073         regmap_write(es8326->regmap, ES8326_CLK_CTL, ES8326_CLK_OFF);
1074         regcache_cache_only(es8326->regmap, true);
1075         regcache_mark_dirty(es8326->regmap);
1076
1077         /* reset register value to default */
1078         regmap_write(es8326->regmap, ES8326_CSM_I2C_STA, 0x01);
1079         usleep_range(1000, 3000);
1080         regmap_write(es8326->regmap, ES8326_CSM_I2C_STA, 0x00);
1081         return 0;
1082 }
1083
1084 static int es8326_probe(struct snd_soc_component *component)
1085 {
1086         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
1087         int ret;
1088
1089         es8326->component = component;
1090         es8326->jd_inverted = device_property_read_bool(component->dev,
1091                                                         "everest,jack-detect-inverted");
1092
1093         ret = device_property_read_u8(component->dev, "everest,jack-pol", &es8326->jack_pol);
1094         if (ret != 0) {
1095                 dev_dbg(component->dev, "jack-pol return %d", ret);
1096                 es8326->jack_pol = ES8326_HP_TYPE_AUTO;
1097         }
1098         dev_dbg(component->dev, "jack-pol %x", es8326->jack_pol);
1099
1100         ret = device_property_read_u8(component->dev, "everest,interrupt-src",
1101                                       &es8326->interrupt_src);
1102         if (ret != 0) {
1103                 dev_dbg(component->dev, "interrupt-src return %d", ret);
1104                 es8326->interrupt_src = ES8326_HP_DET_SRC_PIN9;
1105         }
1106         dev_dbg(component->dev, "interrupt-src %x", es8326->interrupt_src);
1107
1108         ret = device_property_read_u8(component->dev, "everest,interrupt-clk",
1109                                       &es8326->interrupt_clk);
1110         if (ret != 0) {
1111                 dev_dbg(component->dev, "interrupt-clk return %d", ret);
1112                 es8326->interrupt_clk = 0x00;
1113         }
1114         dev_dbg(component->dev, "interrupt-clk %x", es8326->interrupt_clk);
1115
1116         es8326_resume(component);
1117         return 0;
1118 }
1119
1120 static void es8326_enable_jack_detect(struct snd_soc_component *component,
1121                                 struct snd_soc_jack *jack)
1122 {
1123         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
1124
1125         mutex_lock(&es8326->lock);
1126         if (es8326->jd_inverted)
1127                 snd_soc_component_update_bits(component, ES8326_HPDET_TYPE,
1128                                               ES8326_HP_DET_JACK_POL, ~es8326->jack_pol);
1129         es8326->jack = jack;
1130
1131         mutex_unlock(&es8326->lock);
1132         es8326_irq(es8326->irq, es8326);
1133 }
1134
1135 static void es8326_disable_jack_detect(struct snd_soc_component *component)
1136 {
1137         struct es8326_priv *es8326 = snd_soc_component_get_drvdata(component);
1138
1139         dev_dbg(component->dev, "Enter into %s\n", __func__);
1140         if (!es8326->jack)
1141                 return; /* Already disabled (or never enabled) */
1142         cancel_delayed_work_sync(&es8326->jack_detect_work);
1143
1144         mutex_lock(&es8326->lock);
1145         if (es8326->jack->status & SND_JACK_MICROPHONE) {
1146                 es8326_disable_micbias(component);
1147                 snd_soc_jack_report(es8326->jack, 0, SND_JACK_HEADSET);
1148         }
1149         es8326->jack = NULL;
1150         mutex_unlock(&es8326->lock);
1151 }
1152
1153 static int es8326_set_jack(struct snd_soc_component *component,
1154                         struct snd_soc_jack *jack, void *data)
1155 {
1156         if (jack)
1157                 es8326_enable_jack_detect(component, jack);
1158         else
1159                 es8326_disable_jack_detect(component);
1160
1161         return 0;
1162 }
1163
1164 static void es8326_remove(struct snd_soc_component *component)
1165 {
1166         es8326_disable_jack_detect(component);
1167         es8326_set_bias_level(component, SND_SOC_BIAS_OFF);
1168 }
1169
1170 static const struct snd_soc_component_driver soc_component_dev_es8326 = {
1171         .probe          = es8326_probe,
1172         .remove         = es8326_remove,
1173         .resume         = es8326_resume,
1174         .suspend        = es8326_suspend,
1175         .set_bias_level = es8326_set_bias_level,
1176         .set_jack       = es8326_set_jack,
1177         .dapm_widgets   = es8326_dapm_widgets,
1178         .num_dapm_widgets       = ARRAY_SIZE(es8326_dapm_widgets),
1179         .dapm_routes            = es8326_dapm_routes,
1180         .num_dapm_routes        = ARRAY_SIZE(es8326_dapm_routes),
1181         .controls               = es8326_snd_controls,
1182         .num_controls           = ARRAY_SIZE(es8326_snd_controls),
1183         .use_pmdown_time        = 1,
1184         .endianness             = 1,
1185 };
1186
1187 static int es8326_i2c_probe(struct i2c_client *i2c)
1188 {
1189         struct es8326_priv *es8326;
1190         int ret;
1191
1192         es8326 = devm_kzalloc(&i2c->dev, sizeof(struct es8326_priv), GFP_KERNEL);
1193         if (!es8326)
1194                 return -ENOMEM;
1195
1196         i2c_set_clientdata(i2c, es8326);
1197         es8326->i2c = i2c;
1198         mutex_init(&es8326->lock);
1199         es8326->regmap = devm_regmap_init_i2c(i2c, &es8326_regmap_config);
1200         if (IS_ERR(es8326->regmap)) {
1201                 ret = PTR_ERR(es8326->regmap);
1202                 dev_err(&i2c->dev, "Failed to init regmap: %d\n", ret);
1203                 return ret;
1204         }
1205
1206         es8326->irq = i2c->irq;
1207         INIT_DELAYED_WORK(&es8326->jack_detect_work,
1208                           es8326_jack_detect_handler);
1209         INIT_DELAYED_WORK(&es8326->button_press_work,
1210                           es8326_jack_button_handler);
1211         /* ES8316 is level-based while ES8326 is edge-based */
1212         ret = devm_request_threaded_irq(&i2c->dev, es8326->irq, NULL, es8326_irq,
1213                                         IRQF_TRIGGER_RISING | IRQF_ONESHOT,
1214                                         "es8326", es8326);
1215         if (ret) {
1216                 dev_warn(&i2c->dev, "Failed to request IRQ: %d: %d\n",
1217                 es8326->irq, ret);
1218                 es8326->irq = -ENXIO;
1219         }
1220
1221         es8326->mclk = devm_clk_get_optional(&i2c->dev, "mclk");
1222         if (IS_ERR(es8326->mclk)) {
1223                 dev_err(&i2c->dev, "unable to get mclk\n");
1224                 return PTR_ERR(es8326->mclk);
1225         }
1226         if (!es8326->mclk)
1227                 dev_warn(&i2c->dev, "assuming static mclk\n");
1228
1229         ret = clk_prepare_enable(es8326->mclk);
1230         if (ret) {
1231                 dev_err(&i2c->dev, "unable to enable mclk\n");
1232                 return ret;
1233         }
1234         return devm_snd_soc_register_component(&i2c->dev,
1235                                         &soc_component_dev_es8326,
1236                                         &es8326_dai, 1);
1237 }
1238
1239 static const struct i2c_device_id es8326_i2c_id[] = {
1240         {"es8326", 0 },
1241         {}
1242 };
1243 MODULE_DEVICE_TABLE(i2c, es8326_i2c_id);
1244
1245 #ifdef CONFIG_OF
1246 static const struct of_device_id es8326_of_match[] = {
1247         { .compatible = "everest,es8326", },
1248         {}
1249 };
1250 MODULE_DEVICE_TABLE(of, es8326_of_match);
1251 #endif
1252
1253 #ifdef CONFIG_ACPI
1254 static const struct acpi_device_id es8326_acpi_match[] = {
1255         {"ESSX8326", 0},
1256         {},
1257 };
1258 MODULE_DEVICE_TABLE(acpi, es8326_acpi_match);
1259 #endif
1260
1261 static struct i2c_driver es8326_i2c_driver = {
1262         .driver = {
1263                 .name = "es8326",
1264                 .acpi_match_table = ACPI_PTR(es8326_acpi_match),
1265                 .of_match_table = of_match_ptr(es8326_of_match),
1266         },
1267         .probe = es8326_i2c_probe,
1268         .id_table = es8326_i2c_id,
1269 };
1270 module_i2c_driver(es8326_i2c_driver);
1271
1272 MODULE_DESCRIPTION("ASoC es8326 driver");
1273 MODULE_AUTHOR("David Yang <yangxiaohua@everest-semi.com>");
1274 MODULE_LICENSE("GPL");