GNU Linux-libre 4.14.290-gnu1
[releases.git] / sound / soc / codecs / nau8824.c
1 /*
2  * NAU88L24 ALSA SoC audio driver
3  *
4  * Copyright 2016 Nuvoton Technology Corp.
5  * Author: John Hsu <KCHSU0@nuvoton.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/module.h>
13 #include <linux/delay.h>
14 #include <linux/init.h>
15 #include <linux/i2c.h>
16 #include <linux/regmap.h>
17 #include <linux/slab.h>
18 #include <linux/clk.h>
19 #include <linux/acpi.h>
20 #include <linux/math64.h>
21 #include <linux/semaphore.h>
22
23 #include <sound/initval.h>
24 #include <sound/tlv.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
28 #include <sound/soc.h>
29 #include <sound/jack.h>
30
31 #include "nau8824.h"
32
33
34 static int nau8824_config_sysclk(struct nau8824 *nau8824,
35         int clk_id, unsigned int freq);
36 static bool nau8824_is_jack_inserted(struct nau8824 *nau8824);
37
38 /* the ADC threshold of headset */
39 #define DMIC_CLK 3072000
40
41 /* the ADC threshold of headset */
42 #define HEADSET_SARADC_THD 0x80
43
44 /* the parameter threshold of FLL */
45 #define NAU_FREF_MAX 13500000
46 #define NAU_FVCO_MAX 124000000
47 #define NAU_FVCO_MIN 90000000
48
49 /* scaling for mclk from sysclk_src output */
50 static const struct nau8824_fll_attr mclk_src_scaling[] = {
51         { 1, 0x0 },
52         { 2, 0x2 },
53         { 4, 0x3 },
54         { 8, 0x4 },
55         { 16, 0x5 },
56         { 32, 0x6 },
57         { 3, 0x7 },
58         { 6, 0xa },
59         { 12, 0xb },
60         { 24, 0xc },
61 };
62
63 /* ratio for input clk freq */
64 static const struct nau8824_fll_attr fll_ratio[] = {
65         { 512000, 0x01 },
66         { 256000, 0x02 },
67         { 128000, 0x04 },
68         { 64000, 0x08 },
69         { 32000, 0x10 },
70         { 8000, 0x20 },
71         { 4000, 0x40 },
72 };
73
74 static const struct nau8824_fll_attr fll_pre_scalar[] = {
75         { 1, 0x0 },
76         { 2, 0x1 },
77         { 4, 0x2 },
78         { 8, 0x3 },
79 };
80
81 /* the maximum frequency of CLK_ADC and CLK_DAC */
82 #define CLK_DA_AD_MAX 6144000
83
84 /* over sampling rate */
85 static const struct nau8824_osr_attr osr_dac_sel[] = {
86         { 64, 2 },      /* OSR 64, SRC 1/4 */
87         { 256, 0 },     /* OSR 256, SRC 1 */
88         { 128, 1 },     /* OSR 128, SRC 1/2 */
89         { 0, 0 },
90         { 32, 3 },      /* OSR 32, SRC 1/8 */
91 };
92
93 static const struct nau8824_osr_attr osr_adc_sel[] = {
94         { 32, 3 },      /* OSR 32, SRC 1/8 */
95         { 64, 2 },      /* OSR 64, SRC 1/4 */
96         { 128, 1 },     /* OSR 128, SRC 1/2 */
97         { 256, 0 },     /* OSR 256, SRC 1 */
98 };
99
100 static const struct reg_default nau8824_reg_defaults[] = {
101         { NAU8824_REG_ENA_CTRL, 0x0000 },
102         { NAU8824_REG_CLK_GATING_ENA, 0x0000 },
103         { NAU8824_REG_CLK_DIVIDER, 0x0000 },
104         { NAU8824_REG_FLL1, 0x0000 },
105         { NAU8824_REG_FLL2, 0x3126 },
106         { NAU8824_REG_FLL3, 0x0008 },
107         { NAU8824_REG_FLL4, 0x0010 },
108         { NAU8824_REG_FLL5, 0xC000 },
109         { NAU8824_REG_FLL6, 0x6000 },
110         { NAU8824_REG_FLL_VCO_RSV, 0xF13C },
111         { NAU8824_REG_JACK_DET_CTRL, 0x0000 },
112         { NAU8824_REG_INTERRUPT_SETTING_1, 0x0000 },
113         { NAU8824_REG_IRQ, 0x0000 },
114         { NAU8824_REG_CLEAR_INT_REG, 0x0000 },
115         { NAU8824_REG_INTERRUPT_SETTING, 0x1000 },
116         { NAU8824_REG_SAR_ADC, 0x0015 },
117         { NAU8824_REG_VDET_COEFFICIENT, 0x0110 },
118         { NAU8824_REG_VDET_THRESHOLD_1, 0x0000 },
119         { NAU8824_REG_VDET_THRESHOLD_2, 0x0000 },
120         { NAU8824_REG_VDET_THRESHOLD_3, 0x0000 },
121         { NAU8824_REG_VDET_THRESHOLD_4, 0x0000 },
122         { NAU8824_REG_GPIO_SEL, 0x0000 },
123         { NAU8824_REG_PORT0_I2S_PCM_CTRL_1, 0x000B },
124         { NAU8824_REG_PORT0_I2S_PCM_CTRL_2, 0x0010 },
125         { NAU8824_REG_PORT0_LEFT_TIME_SLOT, 0x0000 },
126         { NAU8824_REG_PORT0_RIGHT_TIME_SLOT, 0x0000 },
127         { NAU8824_REG_TDM_CTRL, 0x0000 },
128         { NAU8824_REG_ADC_HPF_FILTER, 0x0000 },
129         { NAU8824_REG_ADC_FILTER_CTRL, 0x0002 },
130         { NAU8824_REG_DAC_FILTER_CTRL_1, 0x0000 },
131         { NAU8824_REG_DAC_FILTER_CTRL_2, 0x0000 },
132         { NAU8824_REG_NOTCH_FILTER_1, 0x0000 },
133         { NAU8824_REG_NOTCH_FILTER_2, 0x0000 },
134         { NAU8824_REG_EQ1_LOW, 0x112C },
135         { NAU8824_REG_EQ2_EQ3, 0x2C2C },
136         { NAU8824_REG_EQ4_EQ5, 0x2C2C },
137         { NAU8824_REG_ADC_CH0_DGAIN_CTRL, 0x0100 },
138         { NAU8824_REG_ADC_CH1_DGAIN_CTRL, 0x0100 },
139         { NAU8824_REG_ADC_CH2_DGAIN_CTRL, 0x0100 },
140         { NAU8824_REG_ADC_CH3_DGAIN_CTRL, 0x0100 },
141         { NAU8824_REG_DAC_MUTE_CTRL, 0x0000 },
142         { NAU8824_REG_DAC_CH0_DGAIN_CTRL, 0x0100 },
143         { NAU8824_REG_DAC_CH1_DGAIN_CTRL, 0x0100 },
144         { NAU8824_REG_ADC_TO_DAC_ST, 0x0000 },
145         { NAU8824_REG_DRC_KNEE_IP12_ADC_CH01, 0x1486 },
146         { NAU8824_REG_DRC_KNEE_IP34_ADC_CH01, 0x0F12 },
147         { NAU8824_REG_DRC_SLOPE_ADC_CH01, 0x25FF },
148         { NAU8824_REG_DRC_ATKDCY_ADC_CH01, 0x3457 },
149         { NAU8824_REG_DRC_KNEE_IP12_ADC_CH23, 0x1486 },
150         { NAU8824_REG_DRC_KNEE_IP34_ADC_CH23, 0x0F12 },
151         { NAU8824_REG_DRC_SLOPE_ADC_CH23, 0x25FF },
152         { NAU8824_REG_DRC_ATKDCY_ADC_CH23, 0x3457 },
153         { NAU8824_REG_DRC_GAINL_ADC0, 0x0200 },
154         { NAU8824_REG_DRC_GAINL_ADC1, 0x0200 },
155         { NAU8824_REG_DRC_GAINL_ADC2, 0x0200 },
156         { NAU8824_REG_DRC_GAINL_ADC3, 0x0200 },
157         { NAU8824_REG_DRC_KNEE_IP12_DAC, 0x1486 },
158         { NAU8824_REG_DRC_KNEE_IP34_DAC, 0x0F12 },
159         { NAU8824_REG_DRC_SLOPE_DAC, 0x25F9 },
160         { NAU8824_REG_DRC_ATKDCY_DAC, 0x3457 },
161         { NAU8824_REG_DRC_GAIN_DAC_CH0, 0x0200 },
162         { NAU8824_REG_DRC_GAIN_DAC_CH1, 0x0200 },
163         { NAU8824_REG_MODE, 0x0000 },
164         { NAU8824_REG_MODE1, 0x0000 },
165         { NAU8824_REG_MODE2, 0x0000 },
166         { NAU8824_REG_CLASSG, 0x0000 },
167         { NAU8824_REG_OTP_EFUSE, 0x0000 },
168         { NAU8824_REG_OTPDOUT_1, 0x0000 },
169         { NAU8824_REG_OTPDOUT_2, 0x0000 },
170         { NAU8824_REG_MISC_CTRL, 0x0000 },
171         { NAU8824_REG_I2C_TIMEOUT, 0xEFFF },
172         { NAU8824_REG_TEST_MODE, 0x0000 },
173         { NAU8824_REG_I2C_DEVICE_ID, 0x1AF1 },
174         { NAU8824_REG_SAR_ADC_DATA_OUT, 0x00FF },
175         { NAU8824_REG_BIAS_ADJ, 0x0000 },
176         { NAU8824_REG_PGA_GAIN, 0x0000 },
177         { NAU8824_REG_TRIM_SETTINGS, 0x0000 },
178         { NAU8824_REG_ANALOG_CONTROL_1, 0x0000 },
179         { NAU8824_REG_ANALOG_CONTROL_2, 0x0000 },
180         { NAU8824_REG_ENABLE_LO, 0x0000 },
181         { NAU8824_REG_GAIN_LO, 0x0000 },
182         { NAU8824_REG_CLASSD_GAIN_1, 0x0000 },
183         { NAU8824_REG_CLASSD_GAIN_2, 0x0000 },
184         { NAU8824_REG_ANALOG_ADC_1, 0x0011 },
185         { NAU8824_REG_ANALOG_ADC_2, 0x0020 },
186         { NAU8824_REG_RDAC, 0x0008 },
187         { NAU8824_REG_MIC_BIAS, 0x0006 },
188         { NAU8824_REG_HS_VOLUME_CONTROL, 0x0000 },
189         { NAU8824_REG_BOOST, 0x0000 },
190         { NAU8824_REG_FEPGA, 0x0000 },
191         { NAU8824_REG_FEPGA_II, 0x0000 },
192         { NAU8824_REG_FEPGA_SE, 0x0000 },
193         { NAU8824_REG_FEPGA_ATTENUATION, 0x0000 },
194         { NAU8824_REG_ATT_PORT0, 0x0000 },
195         { NAU8824_REG_ATT_PORT1, 0x0000 },
196         { NAU8824_REG_POWER_UP_CONTROL, 0x0000 },
197         { NAU8824_REG_CHARGE_PUMP_CONTROL, 0x0300 },
198         { NAU8824_REG_CHARGE_PUMP_INPUT, 0x0013 },
199 };
200
201 static int nau8824_sema_acquire(struct nau8824 *nau8824, long timeout)
202 {
203         int ret;
204
205         if (timeout) {
206                 ret = down_timeout(&nau8824->jd_sem, timeout);
207                 if (ret < 0)
208                         dev_warn(nau8824->dev, "Acquire semaphone timeout\n");
209         } else {
210                 ret = down_interruptible(&nau8824->jd_sem);
211                 if (ret < 0)
212                         dev_warn(nau8824->dev, "Acquire semaphone fail\n");
213         }
214
215         return ret;
216 }
217
218 static inline void nau8824_sema_release(struct nau8824 *nau8824)
219 {
220         up(&nau8824->jd_sem);
221 }
222
223 static bool nau8824_readable_reg(struct device *dev, unsigned int reg)
224 {
225         switch (reg) {
226         case NAU8824_REG_ENA_CTRL ... NAU8824_REG_FLL_VCO_RSV:
227         case NAU8824_REG_JACK_DET_CTRL:
228         case NAU8824_REG_INTERRUPT_SETTING_1:
229         case NAU8824_REG_IRQ:
230         case NAU8824_REG_CLEAR_INT_REG ... NAU8824_REG_VDET_THRESHOLD_4:
231         case NAU8824_REG_GPIO_SEL:
232         case NAU8824_REG_PORT0_I2S_PCM_CTRL_1 ... NAU8824_REG_TDM_CTRL:
233         case NAU8824_REG_ADC_HPF_FILTER ... NAU8824_REG_EQ4_EQ5:
234         case NAU8824_REG_ADC_CH0_DGAIN_CTRL ... NAU8824_REG_ADC_TO_DAC_ST:
235         case NAU8824_REG_DRC_KNEE_IP12_ADC_CH01 ... NAU8824_REG_DRC_GAINL_ADC3:
236         case NAU8824_REG_DRC_KNEE_IP12_DAC ... NAU8824_REG_DRC_GAIN_DAC_CH1:
237         case NAU8824_REG_CLASSG ... NAU8824_REG_OTP_EFUSE:
238         case NAU8824_REG_OTPDOUT_1 ... NAU8824_REG_OTPDOUT_2:
239         case NAU8824_REG_I2C_TIMEOUT:
240         case NAU8824_REG_I2C_DEVICE_ID ... NAU8824_REG_SAR_ADC_DATA_OUT:
241         case NAU8824_REG_BIAS_ADJ ... NAU8824_REG_CLASSD_GAIN_2:
242         case NAU8824_REG_ANALOG_ADC_1 ... NAU8824_REG_ATT_PORT1:
243         case NAU8824_REG_POWER_UP_CONTROL ... NAU8824_REG_CHARGE_PUMP_INPUT:
244                 return true;
245         default:
246                 return false;
247         }
248
249 }
250
251 static bool nau8824_writeable_reg(struct device *dev, unsigned int reg)
252 {
253         switch (reg) {
254         case NAU8824_REG_RESET ... NAU8824_REG_FLL_VCO_RSV:
255         case NAU8824_REG_JACK_DET_CTRL:
256         case NAU8824_REG_INTERRUPT_SETTING_1:
257         case NAU8824_REG_CLEAR_INT_REG ... NAU8824_REG_VDET_THRESHOLD_4:
258         case NAU8824_REG_GPIO_SEL:
259         case NAU8824_REG_PORT0_I2S_PCM_CTRL_1 ... NAU8824_REG_TDM_CTRL:
260         case NAU8824_REG_ADC_HPF_FILTER ... NAU8824_REG_EQ4_EQ5:
261         case NAU8824_REG_ADC_CH0_DGAIN_CTRL ... NAU8824_REG_ADC_TO_DAC_ST:
262         case NAU8824_REG_DRC_KNEE_IP12_ADC_CH01:
263         case NAU8824_REG_DRC_KNEE_IP34_ADC_CH01:
264         case NAU8824_REG_DRC_SLOPE_ADC_CH01:
265         case NAU8824_REG_DRC_ATKDCY_ADC_CH01:
266         case NAU8824_REG_DRC_KNEE_IP12_ADC_CH23:
267         case NAU8824_REG_DRC_KNEE_IP34_ADC_CH23:
268         case NAU8824_REG_DRC_SLOPE_ADC_CH23:
269         case NAU8824_REG_DRC_ATKDCY_ADC_CH23:
270         case NAU8824_REG_DRC_KNEE_IP12_DAC ... NAU8824_REG_DRC_ATKDCY_DAC:
271         case NAU8824_REG_CLASSG ... NAU8824_REG_OTP_EFUSE:
272         case NAU8824_REG_I2C_TIMEOUT:
273         case NAU8824_REG_BIAS_ADJ ... NAU8824_REG_CLASSD_GAIN_2:
274         case NAU8824_REG_ANALOG_ADC_1 ... NAU8824_REG_ATT_PORT1:
275         case NAU8824_REG_POWER_UP_CONTROL ... NAU8824_REG_CHARGE_PUMP_CONTROL:
276                 return true;
277         default:
278                 return false;
279         }
280 }
281
282 static bool nau8824_volatile_reg(struct device *dev, unsigned int reg)
283 {
284         switch (reg) {
285         case NAU8824_REG_RESET:
286         case NAU8824_REG_IRQ ... NAU8824_REG_CLEAR_INT_REG:
287         case NAU8824_REG_DRC_GAINL_ADC0 ... NAU8824_REG_DRC_GAINL_ADC3:
288         case NAU8824_REG_DRC_GAIN_DAC_CH0 ... NAU8824_REG_DRC_GAIN_DAC_CH1:
289         case NAU8824_REG_OTPDOUT_1 ... NAU8824_REG_OTPDOUT_2:
290         case NAU8824_REG_I2C_DEVICE_ID ... NAU8824_REG_SAR_ADC_DATA_OUT:
291         case NAU8824_REG_CHARGE_PUMP_INPUT:
292                 return true;
293         default:
294                 return false;
295         }
296 }
297
298 static const char * const nau8824_companding[] = {
299         "Off", "NC", "u-law", "A-law" };
300
301 static const struct soc_enum nau8824_companding_adc_enum =
302         SOC_ENUM_SINGLE(NAU8824_REG_PORT0_I2S_PCM_CTRL_1, 12,
303                 ARRAY_SIZE(nau8824_companding), nau8824_companding);
304
305 static const struct soc_enum nau8824_companding_dac_enum =
306         SOC_ENUM_SINGLE(NAU8824_REG_PORT0_I2S_PCM_CTRL_1, 14,
307                 ARRAY_SIZE(nau8824_companding), nau8824_companding);
308
309 static const char * const nau8824_adc_decimation[] = {
310         "32", "64", "128", "256" };
311
312 static const struct soc_enum nau8824_adc_decimation_enum =
313         SOC_ENUM_SINGLE(NAU8824_REG_ADC_FILTER_CTRL, 0,
314                 ARRAY_SIZE(nau8824_adc_decimation), nau8824_adc_decimation);
315
316 static const char * const nau8824_dac_oversampl[] = {
317         "64", "256", "128", "", "32" };
318
319 static const struct soc_enum nau8824_dac_oversampl_enum =
320         SOC_ENUM_SINGLE(NAU8824_REG_DAC_FILTER_CTRL_1, 0,
321                 ARRAY_SIZE(nau8824_dac_oversampl), nau8824_dac_oversampl);
322
323 static const char * const nau8824_input_channel[] = {
324         "Input CH0", "Input CH1", "Input CH2", "Input CH3" };
325
326 static const struct soc_enum nau8824_adc_ch0_enum =
327         SOC_ENUM_SINGLE(NAU8824_REG_ADC_CH0_DGAIN_CTRL, 9,
328                 ARRAY_SIZE(nau8824_input_channel), nau8824_input_channel);
329
330 static const struct soc_enum nau8824_adc_ch1_enum =
331         SOC_ENUM_SINGLE(NAU8824_REG_ADC_CH1_DGAIN_CTRL, 9,
332                 ARRAY_SIZE(nau8824_input_channel), nau8824_input_channel);
333
334 static const struct soc_enum nau8824_adc_ch2_enum =
335         SOC_ENUM_SINGLE(NAU8824_REG_ADC_CH2_DGAIN_CTRL, 9,
336                 ARRAY_SIZE(nau8824_input_channel), nau8824_input_channel);
337
338 static const struct soc_enum nau8824_adc_ch3_enum =
339         SOC_ENUM_SINGLE(NAU8824_REG_ADC_CH3_DGAIN_CTRL, 9,
340                 ARRAY_SIZE(nau8824_input_channel), nau8824_input_channel);
341
342 static const char * const nau8824_tdm_slot[] = {
343         "Slot 0", "Slot 1", "Slot 2", "Slot 3" };
344
345 static const struct soc_enum nau8824_dac_left_sel_enum =
346         SOC_ENUM_SINGLE(NAU8824_REG_TDM_CTRL, 6,
347                 ARRAY_SIZE(nau8824_tdm_slot), nau8824_tdm_slot);
348
349 static const struct soc_enum nau8824_dac_right_sel_enum =
350         SOC_ENUM_SINGLE(NAU8824_REG_TDM_CTRL, 4,
351                 ARRAY_SIZE(nau8824_tdm_slot), nau8824_tdm_slot);
352
353 static const DECLARE_TLV_DB_MINMAX_MUTE(spk_vol_tlv, 0, 2400);
354 static const DECLARE_TLV_DB_MINMAX(hp_vol_tlv, -3000, 0);
355 static const DECLARE_TLV_DB_SCALE(mic_vol_tlv, 0, 200, 0);
356 static const DECLARE_TLV_DB_SCALE(dmic_vol_tlv, -12800, 50, 0);
357
358 static const struct snd_kcontrol_new nau8824_snd_controls[] = {
359         SOC_ENUM("ADC Companding", nau8824_companding_adc_enum),
360         SOC_ENUM("DAC Companding", nau8824_companding_dac_enum),
361
362         SOC_ENUM("ADC Decimation Rate", nau8824_adc_decimation_enum),
363         SOC_ENUM("DAC Oversampling Rate", nau8824_dac_oversampl_enum),
364
365         SOC_SINGLE_TLV("Speaker Right DACR Volume",
366                 NAU8824_REG_CLASSD_GAIN_1, 8, 0x1f, 0, spk_vol_tlv),
367         SOC_SINGLE_TLV("Speaker Left DACL Volume",
368                 NAU8824_REG_CLASSD_GAIN_2, 0, 0x1f, 0, spk_vol_tlv),
369         SOC_SINGLE_TLV("Speaker Left DACR Volume",
370                 NAU8824_REG_CLASSD_GAIN_1, 0, 0x1f, 0, spk_vol_tlv),
371         SOC_SINGLE_TLV("Speaker Right DACL Volume",
372                 NAU8824_REG_CLASSD_GAIN_2, 8, 0x1f, 0, spk_vol_tlv),
373
374         SOC_SINGLE_TLV("Headphone Right DACR Volume",
375                 NAU8824_REG_ATT_PORT0, 8, 0x1f, 0, hp_vol_tlv),
376         SOC_SINGLE_TLV("Headphone Left DACL Volume",
377                 NAU8824_REG_ATT_PORT0, 0, 0x1f, 0, hp_vol_tlv),
378         SOC_SINGLE_TLV("Headphone Right DACL Volume",
379                 NAU8824_REG_ATT_PORT1, 8, 0x1f, 0, hp_vol_tlv),
380         SOC_SINGLE_TLV("Headphone Left DACR Volume",
381                 NAU8824_REG_ATT_PORT1, 0, 0x1f, 0, hp_vol_tlv),
382
383         SOC_SINGLE_TLV("MIC1 Volume", NAU8824_REG_FEPGA_II,
384                 NAU8824_FEPGA_GAINL_SFT, 0x12, 0, mic_vol_tlv),
385         SOC_SINGLE_TLV("MIC2 Volume", NAU8824_REG_FEPGA_II,
386                 NAU8824_FEPGA_GAINR_SFT, 0x12, 0, mic_vol_tlv),
387
388         SOC_SINGLE_TLV("DMIC1 Volume", NAU8824_REG_ADC_CH0_DGAIN_CTRL,
389                 0, 0x164, 0, dmic_vol_tlv),
390         SOC_SINGLE_TLV("DMIC2 Volume", NAU8824_REG_ADC_CH1_DGAIN_CTRL,
391                 0, 0x164, 0, dmic_vol_tlv),
392         SOC_SINGLE_TLV("DMIC3 Volume", NAU8824_REG_ADC_CH2_DGAIN_CTRL,
393                 0, 0x164, 0, dmic_vol_tlv),
394         SOC_SINGLE_TLV("DMIC4 Volume", NAU8824_REG_ADC_CH3_DGAIN_CTRL,
395                 0, 0x164, 0, dmic_vol_tlv),
396
397         SOC_ENUM("ADC CH0 Select", nau8824_adc_ch0_enum),
398         SOC_ENUM("ADC CH1 Select", nau8824_adc_ch1_enum),
399         SOC_ENUM("ADC CH2 Select", nau8824_adc_ch2_enum),
400         SOC_ENUM("ADC CH3 Select", nau8824_adc_ch3_enum),
401
402         SOC_SINGLE("ADC CH0 TX Switch", NAU8824_REG_TDM_CTRL, 0, 1, 0),
403         SOC_SINGLE("ADC CH1 TX Switch", NAU8824_REG_TDM_CTRL, 1, 1, 0),
404         SOC_SINGLE("ADC CH2 TX Switch", NAU8824_REG_TDM_CTRL, 2, 1, 0),
405         SOC_SINGLE("ADC CH3 TX Switch", NAU8824_REG_TDM_CTRL, 3, 1, 0),
406
407         SOC_ENUM("DACL Channel Source", nau8824_dac_left_sel_enum),
408         SOC_ENUM("DACR Channel Source", nau8824_dac_right_sel_enum),
409
410         SOC_SINGLE("DACL LR Mix", NAU8824_REG_DAC_MUTE_CTRL, 0, 1, 0),
411         SOC_SINGLE("DACR LR Mix", NAU8824_REG_DAC_MUTE_CTRL, 1, 1, 0),
412 };
413
414 static int nau8824_output_dac_event(struct snd_soc_dapm_widget *w,
415         struct snd_kcontrol *kcontrol, int event)
416 {
417         struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
418         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
419
420         switch (event) {
421         case SND_SOC_DAPM_PRE_PMU:
422                 /* Disables the TESTDAC to let DAC signal pass through. */
423                 regmap_update_bits(nau8824->regmap, NAU8824_REG_ENABLE_LO,
424                         NAU8824_TEST_DAC_EN, 0);
425                 break;
426         case SND_SOC_DAPM_POST_PMD:
427                 regmap_update_bits(nau8824->regmap, NAU8824_REG_ENABLE_LO,
428                         NAU8824_TEST_DAC_EN, NAU8824_TEST_DAC_EN);
429                 break;
430         default:
431                 return -EINVAL;
432         }
433
434         return 0;
435 }
436
437 static int nau8824_spk_event(struct snd_soc_dapm_widget *w,
438         struct snd_kcontrol *kcontrol, int event)
439 {
440         struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
441         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
442
443         switch (event) {
444         case SND_SOC_DAPM_PRE_PMU:
445                 regmap_update_bits(nau8824->regmap,
446                         NAU8824_REG_ANALOG_CONTROL_2,
447                         NAU8824_CLASSD_CLAMP_DIS, NAU8824_CLASSD_CLAMP_DIS);
448                 break;
449         case SND_SOC_DAPM_POST_PMD:
450                 regmap_update_bits(nau8824->regmap,
451                         NAU8824_REG_ANALOG_CONTROL_2,
452                         NAU8824_CLASSD_CLAMP_DIS, 0);
453                 break;
454         default:
455                 return -EINVAL;
456         }
457
458         return 0;
459 }
460
461 static int nau8824_pump_event(struct snd_soc_dapm_widget *w,
462         struct snd_kcontrol *kcontrol, int event)
463 {
464         struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
465         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
466
467         switch (event) {
468         case SND_SOC_DAPM_POST_PMU:
469                 /* Prevent startup click by letting charge pump to ramp up */
470                 msleep(10);
471                 regmap_update_bits(nau8824->regmap,
472                         NAU8824_REG_CHARGE_PUMP_CONTROL,
473                         NAU8824_JAMNODCLOW, NAU8824_JAMNODCLOW);
474                 break;
475         case SND_SOC_DAPM_PRE_PMD:
476                 regmap_update_bits(nau8824->regmap,
477                         NAU8824_REG_CHARGE_PUMP_CONTROL,
478                         NAU8824_JAMNODCLOW, 0);
479                 break;
480         default:
481                 return -EINVAL;
482         }
483
484         return 0;
485 }
486
487 static int system_clock_control(struct snd_soc_dapm_widget *w,
488                 struct snd_kcontrol *k, int  event)
489 {
490         struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
491         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
492
493         if (SND_SOC_DAPM_EVENT_OFF(event)) {
494                 /* Set clock source to disable or internal clock before the
495                  * playback or capture end. Codec needs clock for Jack
496                  * detection and button press if jack inserted; otherwise,
497                  * the clock should be closed.
498                  */
499                 if (nau8824_is_jack_inserted(nau8824)) {
500                         nau8824_config_sysclk(nau8824,
501                                 NAU8824_CLK_INTERNAL, 0);
502                 } else {
503                         nau8824_config_sysclk(nau8824, NAU8824_CLK_DIS, 0);
504                 }
505         }
506         return 0;
507 }
508
509 static int dmic_clock_control(struct snd_soc_dapm_widget *w,
510                 struct snd_kcontrol *k, int  event)
511 {
512         struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
513         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
514         int src;
515
516         /* The DMIC clock is gotten from system clock (256fs) divided by
517          * DMIC_SRC (1, 2, 4, 8, 16, 32). The clock has to be equal or
518          * less than 3.072 MHz.
519          */
520         for (src = 0; src < 5; src++) {
521                 if ((0x1 << (8 - src)) * nau8824->fs <= DMIC_CLK)
522                         break;
523         }
524         dev_dbg(nau8824->dev, "dmic src %d for mclk %d\n", src, nau8824->fs * 256);
525         regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
526                 NAU8824_CLK_DMIC_SRC_MASK, (src << NAU8824_CLK_DMIC_SRC_SFT));
527
528         return 0;
529 }
530
531 static const struct snd_kcontrol_new nau8824_adc_ch0_dmic =
532         SOC_DAPM_SINGLE("Switch", NAU8824_REG_ENA_CTRL,
533                 NAU8824_ADC_CH0_DMIC_SFT, 1, 0);
534
535 static const struct snd_kcontrol_new nau8824_adc_ch1_dmic =
536         SOC_DAPM_SINGLE("Switch", NAU8824_REG_ENA_CTRL,
537                 NAU8824_ADC_CH1_DMIC_SFT, 1, 0);
538
539 static const struct snd_kcontrol_new nau8824_adc_ch2_dmic =
540         SOC_DAPM_SINGLE("Switch", NAU8824_REG_ENA_CTRL,
541                 NAU8824_ADC_CH2_DMIC_SFT, 1, 0);
542
543 static const struct snd_kcontrol_new nau8824_adc_ch3_dmic =
544         SOC_DAPM_SINGLE("Switch", NAU8824_REG_ENA_CTRL,
545                 NAU8824_ADC_CH3_DMIC_SFT, 1, 0);
546
547 static const struct snd_kcontrol_new nau8824_adc_left_mixer[] = {
548         SOC_DAPM_SINGLE("MIC Switch", NAU8824_REG_FEPGA,
549                 NAU8824_FEPGA_MODEL_MIC1_SFT, 1, 0),
550         SOC_DAPM_SINGLE("HSMIC Switch", NAU8824_REG_FEPGA,
551                 NAU8824_FEPGA_MODEL_HSMIC_SFT, 1, 0),
552 };
553
554 static const struct snd_kcontrol_new nau8824_adc_right_mixer[] = {
555         SOC_DAPM_SINGLE("MIC Switch", NAU8824_REG_FEPGA,
556                 NAU8824_FEPGA_MODER_MIC2_SFT, 1, 0),
557         SOC_DAPM_SINGLE("HSMIC Switch", NAU8824_REG_FEPGA,
558                 NAU8824_FEPGA_MODER_HSMIC_SFT, 1, 0),
559 };
560
561 static const struct snd_kcontrol_new nau8824_hp_left_mixer[] = {
562         SOC_DAPM_SINGLE("DAC Right Switch", NAU8824_REG_ENABLE_LO,
563                 NAU8824_DACR_HPL_EN_SFT, 1, 0),
564         SOC_DAPM_SINGLE("DAC Left Switch", NAU8824_REG_ENABLE_LO,
565                 NAU8824_DACL_HPL_EN_SFT, 1, 0),
566 };
567
568 static const struct snd_kcontrol_new nau8824_hp_right_mixer[] = {
569         SOC_DAPM_SINGLE("DAC Left Switch", NAU8824_REG_ENABLE_LO,
570                 NAU8824_DACL_HPR_EN_SFT, 1, 0),
571         SOC_DAPM_SINGLE("DAC Right Switch", NAU8824_REG_ENABLE_LO,
572                 NAU8824_DACR_HPR_EN_SFT, 1, 0),
573 };
574
575 static const char * const nau8824_dac_src[] = { "DACL", "DACR" };
576
577 static SOC_ENUM_SINGLE_DECL(
578         nau8824_dacl_enum, NAU8824_REG_DAC_CH0_DGAIN_CTRL,
579         NAU8824_DAC_CH0_SEL_SFT, nau8824_dac_src);
580
581 static SOC_ENUM_SINGLE_DECL(
582         nau8824_dacr_enum, NAU8824_REG_DAC_CH1_DGAIN_CTRL,
583         NAU8824_DAC_CH1_SEL_SFT, nau8824_dac_src);
584
585 static const struct snd_kcontrol_new nau8824_dacl_mux =
586         SOC_DAPM_ENUM("DACL Source", nau8824_dacl_enum);
587
588 static const struct snd_kcontrol_new nau8824_dacr_mux =
589         SOC_DAPM_ENUM("DACR Source", nau8824_dacr_enum);
590
591
592 static const struct snd_soc_dapm_widget nau8824_dapm_widgets[] = {
593         SND_SOC_DAPM_SUPPLY("System Clock", SND_SOC_NOPM, 0, 0,
594                         system_clock_control, SND_SOC_DAPM_POST_PMD),
595
596         SND_SOC_DAPM_INPUT("HSMIC1"),
597         SND_SOC_DAPM_INPUT("HSMIC2"),
598         SND_SOC_DAPM_INPUT("MIC1"),
599         SND_SOC_DAPM_INPUT("MIC2"),
600         SND_SOC_DAPM_INPUT("DMIC1"),
601         SND_SOC_DAPM_INPUT("DMIC2"),
602         SND_SOC_DAPM_INPUT("DMIC3"),
603         SND_SOC_DAPM_INPUT("DMIC4"),
604
605         SND_SOC_DAPM_SUPPLY("SAR", NAU8824_REG_SAR_ADC,
606                 NAU8824_SAR_ADC_EN_SFT, 0, NULL, 0),
607         SND_SOC_DAPM_SUPPLY("MICBIAS", NAU8824_REG_MIC_BIAS,
608                 NAU8824_MICBIAS_POWERUP_SFT, 0, NULL, 0),
609         SND_SOC_DAPM_SUPPLY("DMIC12 Power", NAU8824_REG_BIAS_ADJ,
610                 NAU8824_DMIC1_EN_SFT, 0, NULL, 0),
611         SND_SOC_DAPM_SUPPLY("DMIC34 Power", NAU8824_REG_BIAS_ADJ,
612                 NAU8824_DMIC2_EN_SFT, 0, NULL, 0),
613         SND_SOC_DAPM_SUPPLY("DMIC Clock", SND_SOC_NOPM, 0, 0,
614                 dmic_clock_control, SND_SOC_DAPM_POST_PMU),
615
616         SND_SOC_DAPM_SWITCH("DMIC1 Enable", SND_SOC_NOPM,
617                 0, 0, &nau8824_adc_ch0_dmic),
618         SND_SOC_DAPM_SWITCH("DMIC2 Enable", SND_SOC_NOPM,
619                 0, 0, &nau8824_adc_ch1_dmic),
620         SND_SOC_DAPM_SWITCH("DMIC3 Enable", SND_SOC_NOPM,
621                 0, 0, &nau8824_adc_ch2_dmic),
622         SND_SOC_DAPM_SWITCH("DMIC4 Enable", SND_SOC_NOPM,
623                 0, 0, &nau8824_adc_ch3_dmic),
624
625         SND_SOC_DAPM_MIXER("Left ADC", NAU8824_REG_POWER_UP_CONTROL,
626                 12, 0, nau8824_adc_left_mixer,
627                 ARRAY_SIZE(nau8824_adc_left_mixer)),
628         SND_SOC_DAPM_MIXER("Right ADC", NAU8824_REG_POWER_UP_CONTROL,
629                 13, 0, nau8824_adc_right_mixer,
630                 ARRAY_SIZE(nau8824_adc_right_mixer)),
631
632         SND_SOC_DAPM_ADC("ADCL", NULL, NAU8824_REG_ANALOG_ADC_2,
633                 NAU8824_ADCL_EN_SFT, 0),
634         SND_SOC_DAPM_ADC("ADCR", NULL, NAU8824_REG_ANALOG_ADC_2,
635                 NAU8824_ADCR_EN_SFT, 0),
636
637         SND_SOC_DAPM_AIF_OUT("AIFTX", "Capture", 0, SND_SOC_NOPM, 0, 0),
638         SND_SOC_DAPM_AIF_IN("AIFRX", "Playback", 0, SND_SOC_NOPM, 0, 0),
639
640         SND_SOC_DAPM_DAC("DACL", NULL, NAU8824_REG_RDAC,
641                 NAU8824_DACL_EN_SFT, 0),
642         SND_SOC_DAPM_SUPPLY("DACL Clock", NAU8824_REG_RDAC,
643                 NAU8824_DACL_CLK_SFT, 0, NULL, 0),
644         SND_SOC_DAPM_DAC("DACR", NULL, NAU8824_REG_RDAC,
645                 NAU8824_DACR_EN_SFT, 0),
646         SND_SOC_DAPM_SUPPLY("DACR Clock", NAU8824_REG_RDAC,
647                 NAU8824_DACR_CLK_SFT, 0, NULL, 0),
648
649         SND_SOC_DAPM_MUX("DACL Mux", SND_SOC_NOPM, 0, 0, &nau8824_dacl_mux),
650         SND_SOC_DAPM_MUX("DACR Mux", SND_SOC_NOPM, 0, 0, &nau8824_dacr_mux),
651
652         SND_SOC_DAPM_PGA_S("Output DACL", 0, NAU8824_REG_CHARGE_PUMP_CONTROL,
653                 8, 1, nau8824_output_dac_event,
654                 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
655         SND_SOC_DAPM_PGA_S("Output DACR", 0, NAU8824_REG_CHARGE_PUMP_CONTROL,
656                 9, 1, nau8824_output_dac_event,
657                 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
658
659         SND_SOC_DAPM_PGA_S("ClassD", 0, NAU8824_REG_CLASSD_GAIN_1,
660                 NAU8824_CLASSD_EN_SFT, 0, nau8824_spk_event,
661                 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
662
663         SND_SOC_DAPM_MIXER("Left Headphone", NAU8824_REG_CLASSG,
664                 NAU8824_CLASSG_LDAC_EN_SFT, 0, nau8824_hp_left_mixer,
665                 ARRAY_SIZE(nau8824_hp_left_mixer)),
666         SND_SOC_DAPM_MIXER("Right Headphone", NAU8824_REG_CLASSG,
667                 NAU8824_CLASSG_RDAC_EN_SFT, 0, nau8824_hp_right_mixer,
668                 ARRAY_SIZE(nau8824_hp_right_mixer)),
669         SND_SOC_DAPM_PGA_S("Charge Pump", 1, NAU8824_REG_CHARGE_PUMP_CONTROL,
670                 NAU8824_CHARGE_PUMP_EN_SFT, 0, nau8824_pump_event,
671                 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
672         SND_SOC_DAPM_PGA("Output Driver L",
673                 NAU8824_REG_POWER_UP_CONTROL, 3, 0, NULL, 0),
674         SND_SOC_DAPM_PGA("Output Driver R",
675                 NAU8824_REG_POWER_UP_CONTROL, 2, 0, NULL, 0),
676         SND_SOC_DAPM_PGA("Main Driver L",
677                 NAU8824_REG_POWER_UP_CONTROL, 1, 0, NULL, 0),
678         SND_SOC_DAPM_PGA("Main Driver R",
679                 NAU8824_REG_POWER_UP_CONTROL, 0, 0, NULL, 0),
680         SND_SOC_DAPM_PGA("HP Boost Driver", NAU8824_REG_BOOST,
681                 NAU8824_HP_BOOST_DIS_SFT, 1, NULL, 0),
682         SND_SOC_DAPM_PGA("Class G", NAU8824_REG_CLASSG,
683                 NAU8824_CLASSG_EN_SFT, 0, NULL, 0),
684
685         SND_SOC_DAPM_OUTPUT("SPKOUTL"),
686         SND_SOC_DAPM_OUTPUT("SPKOUTR"),
687         SND_SOC_DAPM_OUTPUT("HPOL"),
688         SND_SOC_DAPM_OUTPUT("HPOR"),
689 };
690
691 static const struct snd_soc_dapm_route nau8824_dapm_routes[] = {
692         {"DMIC1 Enable", "Switch", "DMIC1"},
693         {"DMIC2 Enable", "Switch", "DMIC2"},
694         {"DMIC3 Enable", "Switch", "DMIC3"},
695         {"DMIC4 Enable", "Switch", "DMIC4"},
696
697         {"DMIC1", NULL, "DMIC12 Power"},
698         {"DMIC2", NULL, "DMIC12 Power"},
699         {"DMIC3", NULL, "DMIC34 Power"},
700         {"DMIC4", NULL, "DMIC34 Power"},
701         {"DMIC12 Power", NULL, "DMIC Clock"},
702         {"DMIC34 Power", NULL, "DMIC Clock"},
703
704         {"Left ADC", "MIC Switch", "MIC1"},
705         {"Left ADC", "HSMIC Switch", "HSMIC1"},
706         {"Right ADC", "MIC Switch", "MIC2"},
707         {"Right ADC", "HSMIC Switch", "HSMIC2"},
708
709         {"ADCL", NULL, "Left ADC"},
710         {"ADCR", NULL, "Right ADC"},
711
712         {"AIFTX", NULL, "MICBIAS"},
713         {"AIFTX", NULL, "ADCL"},
714         {"AIFTX", NULL, "ADCR"},
715         {"AIFTX", NULL, "DMIC1 Enable"},
716         {"AIFTX", NULL, "DMIC2 Enable"},
717         {"AIFTX", NULL, "DMIC3 Enable"},
718         {"AIFTX", NULL, "DMIC4 Enable"},
719
720         {"AIFTX", NULL, "System Clock"},
721         {"AIFRX", NULL, "System Clock"},
722
723         {"DACL", NULL, "AIFRX"},
724         {"DACL", NULL, "DACL Clock"},
725         {"DACR", NULL, "AIFRX"},
726         {"DACR", NULL, "DACR Clock"},
727
728         {"DACL Mux", "DACL", "DACL"},
729         {"DACL Mux", "DACR", "DACR"},
730         {"DACR Mux", "DACL", "DACL"},
731         {"DACR Mux", "DACR", "DACR"},
732
733         {"Output DACL", NULL, "DACL Mux"},
734         {"Output DACR", NULL, "DACR Mux"},
735
736         {"ClassD", NULL, "Output DACL"},
737         {"ClassD", NULL, "Output DACR"},
738
739         {"Left Headphone", "DAC Left Switch", "Output DACL"},
740         {"Left Headphone", "DAC Right Switch", "Output DACR"},
741         {"Right Headphone", "DAC Left Switch", "Output DACL"},
742         {"Right Headphone", "DAC Right Switch", "Output DACR"},
743
744         {"Charge Pump", NULL, "Left Headphone"},
745         {"Charge Pump", NULL, "Right Headphone"},
746         {"Output Driver L", NULL, "Charge Pump"},
747         {"Output Driver R", NULL, "Charge Pump"},
748         {"Main Driver L", NULL, "Output Driver L"},
749         {"Main Driver R", NULL, "Output Driver R"},
750         {"Class G", NULL, "Main Driver L"},
751         {"Class G", NULL, "Main Driver R"},
752         {"HP Boost Driver", NULL, "Class G"},
753
754         {"SPKOUTL", NULL, "ClassD"},
755         {"SPKOUTR", NULL, "ClassD"},
756         {"HPOL", NULL, "HP Boost Driver"},
757         {"HPOR", NULL, "HP Boost Driver"},
758 };
759
760 static bool nau8824_is_jack_inserted(struct nau8824 *nau8824)
761 {
762         struct snd_soc_jack *jack = nau8824->jack;
763         bool insert = FALSE;
764
765         if (nau8824->irq && jack)
766                 insert = jack->status & SND_JACK_HEADPHONE;
767
768         return insert;
769 }
770
771 static void nau8824_int_status_clear_all(struct regmap *regmap)
772 {
773         int active_irq, clear_irq, i;
774
775         /* Reset the intrruption status from rightmost bit if the corres-
776          * ponding irq event occurs.
777          */
778         regmap_read(regmap, NAU8824_REG_IRQ, &active_irq);
779         for (i = 0; i < NAU8824_REG_DATA_LEN; i++) {
780                 clear_irq = (0x1 << i);
781                 if (active_irq & clear_irq)
782                         regmap_write(regmap,
783                                 NAU8824_REG_CLEAR_INT_REG, clear_irq);
784         }
785 }
786
787 static void nau8824_dapm_disable_pin(struct nau8824 *nau8824, const char *pin)
788 {
789         struct snd_soc_dapm_context *dapm = nau8824->dapm;
790         const char *prefix = dapm->component->name_prefix;
791         char prefixed_pin[80];
792
793         if (prefix) {
794                 snprintf(prefixed_pin, sizeof(prefixed_pin), "%s %s",
795                          prefix, pin);
796                 snd_soc_dapm_disable_pin(dapm, prefixed_pin);
797         } else {
798                 snd_soc_dapm_disable_pin(dapm, pin);
799         }
800 }
801
802 static void nau8824_dapm_enable_pin(struct nau8824 *nau8824, const char *pin)
803 {
804         struct snd_soc_dapm_context *dapm = nau8824->dapm;
805         const char *prefix = dapm->component->name_prefix;
806         char prefixed_pin[80];
807
808         if (prefix) {
809                 snprintf(prefixed_pin, sizeof(prefixed_pin), "%s %s",
810                          prefix, pin);
811                 snd_soc_dapm_force_enable_pin(dapm, prefixed_pin);
812         } else {
813                 snd_soc_dapm_force_enable_pin(dapm, pin);
814         }
815 }
816
817 static void nau8824_eject_jack(struct nau8824 *nau8824)
818 {
819         struct snd_soc_dapm_context *dapm = nau8824->dapm;
820         struct regmap *regmap = nau8824->regmap;
821
822         /* Clear all interruption status */
823         nau8824_int_status_clear_all(regmap);
824
825         nau8824_dapm_disable_pin(nau8824, "SAR");
826         nau8824_dapm_disable_pin(nau8824, "MICBIAS");
827         snd_soc_dapm_sync(dapm);
828
829         /* Enable the insertion interruption, disable the ejection
830          * interruption, and then bypass de-bounce circuit.
831          */
832         regmap_update_bits(regmap, NAU8824_REG_INTERRUPT_SETTING,
833                 NAU8824_IRQ_KEY_RELEASE_DIS | NAU8824_IRQ_KEY_SHORT_PRESS_DIS |
834                 NAU8824_IRQ_EJECT_DIS | NAU8824_IRQ_INSERT_DIS,
835                 NAU8824_IRQ_KEY_RELEASE_DIS | NAU8824_IRQ_KEY_SHORT_PRESS_DIS |
836                 NAU8824_IRQ_EJECT_DIS);
837         regmap_update_bits(regmap, NAU8824_REG_INTERRUPT_SETTING_1,
838                 NAU8824_IRQ_INSERT_EN | NAU8824_IRQ_EJECT_EN,
839                 NAU8824_IRQ_INSERT_EN);
840         regmap_update_bits(regmap, NAU8824_REG_ENA_CTRL,
841                 NAU8824_JD_SLEEP_MODE, NAU8824_JD_SLEEP_MODE);
842
843         /* Close clock for jack type detection at manual mode */
844         nau8824_config_sysclk(nau8824, NAU8824_CLK_DIS, 0);
845 }
846
847 static void nau8824_jdet_work(struct work_struct *work)
848 {
849         struct nau8824 *nau8824 = container_of(
850                 work, struct nau8824, jdet_work);
851         struct snd_soc_dapm_context *dapm = nau8824->dapm;
852         struct regmap *regmap = nau8824->regmap;
853         int adc_value, event = 0, event_mask = 0;
854
855         nau8824_dapm_enable_pin(nau8824, "MICBIAS");
856         nau8824_dapm_enable_pin(nau8824, "SAR");
857         snd_soc_dapm_sync(dapm);
858
859         msleep(100);
860
861         regmap_read(regmap, NAU8824_REG_SAR_ADC_DATA_OUT, &adc_value);
862         adc_value = adc_value & NAU8824_SAR_ADC_DATA_MASK;
863         dev_dbg(nau8824->dev, "SAR ADC data 0x%02x\n", adc_value);
864         if (adc_value < HEADSET_SARADC_THD) {
865                 event |= SND_JACK_HEADPHONE;
866
867                 nau8824_dapm_disable_pin(nau8824, "SAR");
868                 nau8824_dapm_disable_pin(nau8824, "MICBIAS");
869                 snd_soc_dapm_sync(dapm);
870         } else {
871                 event |= SND_JACK_HEADSET;
872         }
873         event_mask |= SND_JACK_HEADSET;
874         snd_soc_jack_report(nau8824->jack, event, event_mask);
875
876         nau8824_sema_release(nau8824);
877 }
878
879 static void nau8824_setup_auto_irq(struct nau8824 *nau8824)
880 {
881         struct regmap *regmap = nau8824->regmap;
882
883         /* Enable jack ejection, short key press and release interruption. */
884         regmap_update_bits(regmap, NAU8824_REG_INTERRUPT_SETTING_1,
885                 NAU8824_IRQ_INSERT_EN | NAU8824_IRQ_EJECT_EN,
886                 NAU8824_IRQ_EJECT_EN);
887         regmap_update_bits(regmap, NAU8824_REG_INTERRUPT_SETTING,
888                 NAU8824_IRQ_EJECT_DIS | NAU8824_IRQ_KEY_RELEASE_DIS |
889                 NAU8824_IRQ_KEY_SHORT_PRESS_DIS, 0);
890         /* Enable internal VCO needed for interruptions */
891         nau8824_config_sysclk(nau8824, NAU8824_CLK_INTERNAL, 0);
892         regmap_update_bits(regmap, NAU8824_REG_ENA_CTRL,
893                 NAU8824_JD_SLEEP_MODE, 0);
894 }
895
896 static int nau8824_button_decode(int value)
897 {
898         int buttons = 0;
899
900         /* The chip supports up to 8 buttons, but ALSA defines
901          * only 6 buttons.
902          */
903         if (value & BIT(0))
904                 buttons |= SND_JACK_BTN_0;
905         if (value & BIT(1))
906                 buttons |= SND_JACK_BTN_1;
907         if (value & BIT(2))
908                 buttons |= SND_JACK_BTN_2;
909         if (value & BIT(3))
910                 buttons |= SND_JACK_BTN_3;
911         if (value & BIT(4))
912                 buttons |= SND_JACK_BTN_4;
913         if (value & BIT(5))
914                 buttons |= SND_JACK_BTN_5;
915
916         return buttons;
917 }
918
919 #define NAU8824_BUTTONS (SND_JACK_BTN_0 | SND_JACK_BTN_1 | \
920                 SND_JACK_BTN_2 | SND_JACK_BTN_3)
921
922 static irqreturn_t nau8824_interrupt(int irq, void *data)
923 {
924         struct nau8824 *nau8824 = (struct nau8824 *)data;
925         struct regmap *regmap = nau8824->regmap;
926         int active_irq, clear_irq = 0, event = 0, event_mask = 0;
927
928         if (regmap_read(regmap, NAU8824_REG_IRQ, &active_irq)) {
929                 dev_err(nau8824->dev, "failed to read irq status\n");
930                 return IRQ_NONE;
931         }
932         dev_dbg(nau8824->dev, "IRQ %x\n", active_irq);
933
934         if (active_irq & NAU8824_JACK_EJECTION_DETECTED) {
935                 nau8824_eject_jack(nau8824);
936                 event_mask |= SND_JACK_HEADSET;
937                 clear_irq = NAU8824_JACK_EJECTION_DETECTED;
938                 /* release semaphore held after resume,
939                  * and cancel jack detection
940                  */
941                 nau8824_sema_release(nau8824);
942                 cancel_work_sync(&nau8824->jdet_work);
943         } else if (active_irq & NAU8824_KEY_SHORT_PRESS_IRQ) {
944                 int key_status, button_pressed;
945
946                 regmap_read(regmap, NAU8824_REG_CLEAR_INT_REG,
947                         &key_status);
948
949                 /* lower 8 bits of the register are for pressed keys */
950                 button_pressed = nau8824_button_decode(key_status);
951
952                 event |= button_pressed;
953                 dev_dbg(nau8824->dev, "button %x pressed\n", event);
954                 event_mask |= NAU8824_BUTTONS;
955                 clear_irq = NAU8824_KEY_SHORT_PRESS_IRQ;
956         } else if (active_irq & NAU8824_KEY_RELEASE_IRQ) {
957                 event_mask = NAU8824_BUTTONS;
958                 clear_irq = NAU8824_KEY_RELEASE_IRQ;
959         } else if (active_irq & NAU8824_JACK_INSERTION_DETECTED) {
960                 /* Turn off insertion interruption at manual mode */
961                 regmap_update_bits(regmap,
962                         NAU8824_REG_INTERRUPT_SETTING,
963                         NAU8824_IRQ_INSERT_DIS,
964                         NAU8824_IRQ_INSERT_DIS);
965                 regmap_update_bits(regmap,
966                         NAU8824_REG_INTERRUPT_SETTING_1,
967                         NAU8824_IRQ_INSERT_EN, 0);
968                 /* detect microphone and jack type */
969                 cancel_work_sync(&nau8824->jdet_work);
970                 schedule_work(&nau8824->jdet_work);
971
972                 /* Enable interruption for jack type detection at audo
973                  * mode which can detect microphone and jack type.
974                  */
975                 nau8824_setup_auto_irq(nau8824);
976         }
977
978         if (!clear_irq)
979                 clear_irq = active_irq;
980         /* clears the rightmost interruption */
981         regmap_write(regmap, NAU8824_REG_CLEAR_INT_REG, clear_irq);
982
983         if (event_mask)
984                 snd_soc_jack_report(nau8824->jack, event, event_mask);
985
986         return IRQ_HANDLED;
987 }
988
989 static int nau8824_clock_check(struct nau8824 *nau8824,
990         int stream, int rate, int osr)
991 {
992         int osrate;
993
994         if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
995                 if (osr >= ARRAY_SIZE(osr_dac_sel))
996                         return -EINVAL;
997                 osrate = osr_dac_sel[osr].osr;
998         } else {
999                 if (osr >= ARRAY_SIZE(osr_adc_sel))
1000                         return -EINVAL;
1001                 osrate = osr_adc_sel[osr].osr;
1002         }
1003
1004         if (!osrate || rate * osr > CLK_DA_AD_MAX) {
1005                 dev_err(nau8824->dev, "exceed the maximum frequency of CLK_ADC or CLK_DAC\n");
1006                 return -EINVAL;
1007         }
1008
1009         return 0;
1010 }
1011
1012 static int nau8824_hw_params(struct snd_pcm_substream *substream,
1013         struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
1014 {
1015         struct snd_soc_codec *codec = dai->codec;
1016         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1017         unsigned int val_len = 0, osr, ctrl_val, bclk_fs, bclk_div;
1018
1019         nau8824_sema_acquire(nau8824, HZ);
1020
1021         /* CLK_DAC or CLK_ADC = OSR * FS
1022          * DAC or ADC clock frequency is defined as Over Sampling Rate (OSR)
1023          * multiplied by the audio sample rate (Fs). Note that the OSR and Fs
1024          * values must be selected such that the maximum frequency is less
1025          * than 6.144 MHz.
1026          */
1027         nau8824->fs = params_rate(params);
1028         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1029                 regmap_read(nau8824->regmap,
1030                         NAU8824_REG_DAC_FILTER_CTRL_1, &osr);
1031                 osr &= NAU8824_DAC_OVERSAMPLE_MASK;
1032                 if (nau8824_clock_check(nau8824, substream->stream,
1033                         nau8824->fs, osr))
1034                         return -EINVAL;
1035                 regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1036                         NAU8824_CLK_DAC_SRC_MASK,
1037                         osr_dac_sel[osr].clk_src << NAU8824_CLK_DAC_SRC_SFT);
1038         } else {
1039                 regmap_read(nau8824->regmap,
1040                         NAU8824_REG_ADC_FILTER_CTRL, &osr);
1041                 osr &= NAU8824_ADC_SYNC_DOWN_MASK;
1042                 if (nau8824_clock_check(nau8824, substream->stream,
1043                         nau8824->fs, osr))
1044                         return -EINVAL;
1045                 regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1046                         NAU8824_CLK_ADC_SRC_MASK,
1047                         osr_adc_sel[osr].clk_src << NAU8824_CLK_ADC_SRC_SFT);
1048         }
1049
1050         /* make BCLK and LRC divde configuration if the codec as master. */
1051         regmap_read(nau8824->regmap,
1052                 NAU8824_REG_PORT0_I2S_PCM_CTRL_2, &ctrl_val);
1053         if (ctrl_val & NAU8824_I2S_MS_MASTER) {
1054                 /* get the bclk and fs ratio */
1055                 bclk_fs = snd_soc_params_to_bclk(params) / nau8824->fs;
1056                 if (bclk_fs <= 32)
1057                         bclk_div = 0x3;
1058                 else if (bclk_fs <= 64)
1059                         bclk_div = 0x2;
1060                 else if (bclk_fs <= 128)
1061                         bclk_div = 0x1;
1062                 else if (bclk_fs <= 256)
1063                         bclk_div = 0;
1064                 else
1065                         return -EINVAL;
1066                 regmap_update_bits(nau8824->regmap,
1067                         NAU8824_REG_PORT0_I2S_PCM_CTRL_2,
1068                         NAU8824_I2S_LRC_DIV_MASK | NAU8824_I2S_BLK_DIV_MASK,
1069                         (bclk_div << NAU8824_I2S_LRC_DIV_SFT) | bclk_div);
1070         }
1071
1072         switch (params_width(params)) {
1073         case 16:
1074                 val_len |= NAU8824_I2S_DL_16;
1075                 break;
1076         case 20:
1077                 val_len |= NAU8824_I2S_DL_20;
1078                 break;
1079         case 24:
1080                 val_len |= NAU8824_I2S_DL_24;
1081                 break;
1082         case 32:
1083                 val_len |= NAU8824_I2S_DL_32;
1084                 break;
1085         default:
1086                 return -EINVAL;
1087         }
1088
1089         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_1,
1090                 NAU8824_I2S_DL_MASK, val_len);
1091
1092         nau8824_sema_release(nau8824);
1093
1094         return 0;
1095 }
1096
1097 static int nau8824_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
1098 {
1099         struct snd_soc_codec *codec = dai->codec;
1100         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1101         unsigned int ctrl1_val = 0, ctrl2_val = 0;
1102
1103         nau8824_sema_acquire(nau8824, HZ);
1104
1105         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1106         case SND_SOC_DAIFMT_CBM_CFM:
1107                 ctrl2_val |= NAU8824_I2S_MS_MASTER;
1108                 break;
1109         case SND_SOC_DAIFMT_CBS_CFS:
1110                 break;
1111         default:
1112                 return -EINVAL;
1113         }
1114
1115         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1116         case SND_SOC_DAIFMT_NB_NF:
1117                 break;
1118         case SND_SOC_DAIFMT_IB_NF:
1119                 ctrl1_val |= NAU8824_I2S_BP_INV;
1120                 break;
1121         default:
1122                 return -EINVAL;
1123         }
1124
1125         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1126         case SND_SOC_DAIFMT_I2S:
1127                 ctrl1_val |= NAU8824_I2S_DF_I2S;
1128                 break;
1129         case SND_SOC_DAIFMT_LEFT_J:
1130                 ctrl1_val |= NAU8824_I2S_DF_LEFT;
1131                 break;
1132         case SND_SOC_DAIFMT_RIGHT_J:
1133                 ctrl1_val |= NAU8824_I2S_DF_RIGTH;
1134                 break;
1135         case SND_SOC_DAIFMT_DSP_A:
1136                 ctrl1_val |= NAU8824_I2S_DF_PCM_AB;
1137                 break;
1138         case SND_SOC_DAIFMT_DSP_B:
1139                 ctrl1_val |= NAU8824_I2S_DF_PCM_AB;
1140                 ctrl1_val |= NAU8824_I2S_PCMB_EN;
1141                 break;
1142         default:
1143                 return -EINVAL;
1144         }
1145
1146         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_1,
1147                 NAU8824_I2S_DF_MASK | NAU8824_I2S_BP_MASK |
1148                 NAU8824_I2S_PCMB_EN, ctrl1_val);
1149         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_2,
1150                 NAU8824_I2S_MS_MASK, ctrl2_val);
1151
1152         nau8824_sema_release(nau8824);
1153
1154         return 0;
1155 }
1156
1157 /**
1158  * nau8824_set_tdm_slot - configure DAI TDM.
1159  * @dai: DAI
1160  * @tx_mask: Bitmask representing active TX slots. Ex.
1161  *                 0xf for normal 4 channel TDM.
1162  *                 0xf0 for shifted 4 channel TDM
1163  * @rx_mask: Bitmask [0:1] representing active DACR RX slots.
1164  *                 Bitmask [2:3] representing active DACL RX slots.
1165  *                 00=CH0,01=CH1,10=CH2,11=CH3. Ex.
1166  *                 0xf for DACL/R selecting TDM CH3.
1167  *                 0xf0 for DACL/R selecting shifted TDM CH3.
1168  * @slots: Number of slots in use.
1169  * @slot_width: Width in bits for each slot.
1170  *
1171  * Configures a DAI for TDM operation. Only support 4 slots TDM.
1172  */
1173 static int nau8824_set_tdm_slot(struct snd_soc_dai *dai,
1174         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
1175 {
1176         struct snd_soc_codec *codec = dai->codec;
1177         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1178         unsigned int tslot_l = 0, ctrl_val = 0;
1179
1180         if (slots > 4 || ((tx_mask & 0xf0) && (tx_mask & 0xf)) ||
1181                 ((rx_mask & 0xf0) && (rx_mask & 0xf)) ||
1182                 ((rx_mask & 0xf0) && (tx_mask & 0xf)) ||
1183                 ((rx_mask & 0xf) && (tx_mask & 0xf0)))
1184                 return -EINVAL;
1185
1186         ctrl_val |= (NAU8824_TDM_MODE | NAU8824_TDM_OFFSET_EN);
1187         if (tx_mask & 0xf0) {
1188                 tslot_l = 4 * slot_width;
1189                 ctrl_val |= (tx_mask >> 4);
1190         } else {
1191                 ctrl_val |= tx_mask;
1192         }
1193         if (rx_mask & 0xf0)
1194                 ctrl_val |= ((rx_mask >> 4) << NAU8824_TDM_DACR_RX_SFT);
1195         else
1196                 ctrl_val |= (rx_mask << NAU8824_TDM_DACR_RX_SFT);
1197
1198         regmap_update_bits(nau8824->regmap, NAU8824_REG_TDM_CTRL,
1199                 NAU8824_TDM_MODE | NAU8824_TDM_OFFSET_EN |
1200                 NAU8824_TDM_DACL_RX_MASK | NAU8824_TDM_DACR_RX_MASK |
1201                 NAU8824_TDM_TX_MASK, ctrl_val);
1202         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_LEFT_TIME_SLOT,
1203                 NAU8824_TSLOT_L_MASK, tslot_l);
1204
1205         return 0;
1206 }
1207
1208 /**
1209  * nau8824_calc_fll_param - Calculate FLL parameters.
1210  * @fll_in: external clock provided to codec.
1211  * @fs: sampling rate.
1212  * @fll_param: Pointer to structure of FLL parameters.
1213  *
1214  * Calculate FLL parameters to configure codec.
1215  *
1216  * Returns 0 for success or negative error code.
1217  */
1218 static int nau8824_calc_fll_param(unsigned int fll_in,
1219         unsigned int fs, struct nau8824_fll *fll_param)
1220 {
1221         u64 fvco, fvco_max;
1222         unsigned int fref, i, fvco_sel;
1223
1224         /* Ensure the reference clock frequency (FREF) is <= 13.5MHz by dividing
1225          * freq_in by 1, 2, 4, or 8 using FLL pre-scalar.
1226          * FREF = freq_in / NAU8824_FLL_REF_DIV_MASK
1227          */
1228         for (i = 0; i < ARRAY_SIZE(fll_pre_scalar); i++) {
1229                 fref = fll_in / fll_pre_scalar[i].param;
1230                 if (fref <= NAU_FREF_MAX)
1231                         break;
1232         }
1233         if (i == ARRAY_SIZE(fll_pre_scalar))
1234                 return -EINVAL;
1235         fll_param->clk_ref_div = fll_pre_scalar[i].val;
1236
1237         /* Choose the FLL ratio based on FREF */
1238         for (i = 0; i < ARRAY_SIZE(fll_ratio); i++) {
1239                 if (fref >= fll_ratio[i].param)
1240                         break;
1241         }
1242         if (i == ARRAY_SIZE(fll_ratio))
1243                 return -EINVAL;
1244         fll_param->ratio = fll_ratio[i].val;
1245
1246         /* Calculate the frequency of DCO (FDCO) given freq_out = 256 * Fs.
1247          * FDCO must be within the 90MHz - 124MHz or the FFL cannot be
1248          * guaranteed across the full range of operation.
1249          * FDCO = freq_out * 2 * mclk_src_scaling
1250          */
1251         fvco_max = 0;
1252         fvco_sel = ARRAY_SIZE(mclk_src_scaling);
1253         for (i = 0; i < ARRAY_SIZE(mclk_src_scaling); i++) {
1254                 fvco = 256 * fs * 2 * mclk_src_scaling[i].param;
1255                 if (fvco > NAU_FVCO_MIN && fvco < NAU_FVCO_MAX &&
1256                         fvco_max < fvco) {
1257                         fvco_max = fvco;
1258                         fvco_sel = i;
1259                 }
1260         }
1261         if (ARRAY_SIZE(mclk_src_scaling) == fvco_sel)
1262                 return -EINVAL;
1263         fll_param->mclk_src = mclk_src_scaling[fvco_sel].val;
1264
1265         /* Calculate the FLL 10-bit integer input and the FLL 16-bit fractional
1266          * input based on FDCO, FREF and FLL ratio.
1267          */
1268         fvco = div_u64(fvco_max << 16, fref * fll_param->ratio);
1269         fll_param->fll_int = (fvco >> 16) & 0x3FF;
1270         fll_param->fll_frac = fvco & 0xFFFF;
1271         return 0;
1272 }
1273
1274 static void nau8824_fll_apply(struct regmap *regmap,
1275         struct nau8824_fll *fll_param)
1276 {
1277         regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1278                 NAU8824_CLK_SRC_MASK | NAU8824_CLK_MCLK_SRC_MASK,
1279                 NAU8824_CLK_SRC_MCLK | fll_param->mclk_src);
1280         regmap_update_bits(regmap, NAU8824_REG_FLL1,
1281                 NAU8824_FLL_RATIO_MASK, fll_param->ratio);
1282         /* FLL 16-bit fractional input */
1283         regmap_write(regmap, NAU8824_REG_FLL2, fll_param->fll_frac);
1284         /* FLL 10-bit integer input */
1285         regmap_update_bits(regmap, NAU8824_REG_FLL3,
1286                 NAU8824_FLL_INTEGER_MASK, fll_param->fll_int);
1287         /* FLL pre-scaler */
1288         regmap_update_bits(regmap, NAU8824_REG_FLL4,
1289                 NAU8824_FLL_REF_DIV_MASK,
1290                 fll_param->clk_ref_div << NAU8824_FLL_REF_DIV_SFT);
1291         /* select divided VCO input */
1292         regmap_update_bits(regmap, NAU8824_REG_FLL5,
1293                 NAU8824_FLL_CLK_SW_MASK, NAU8824_FLL_CLK_SW_REF);
1294         /* Disable free-running mode */
1295         regmap_update_bits(regmap,
1296                 NAU8824_REG_FLL6, NAU8824_DCO_EN, 0);
1297         if (fll_param->fll_frac) {
1298                 regmap_update_bits(regmap, NAU8824_REG_FLL5,
1299                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1300                         NAU8824_FLL_FTR_SW_MASK,
1301                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1302                         NAU8824_FLL_FTR_SW_FILTER);
1303                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1304                         NAU8824_SDM_EN, NAU8824_SDM_EN);
1305         } else {
1306                 regmap_update_bits(regmap, NAU8824_REG_FLL5,
1307                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1308                         NAU8824_FLL_FTR_SW_MASK, NAU8824_FLL_FTR_SW_ACCU);
1309                 regmap_update_bits(regmap,
1310                         NAU8824_REG_FLL6, NAU8824_SDM_EN, 0);
1311         }
1312 }
1313
1314 /* freq_out must be 256*Fs in order to achieve the best performance */
1315 static int nau8824_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
1316                 unsigned int freq_in, unsigned int freq_out)
1317 {
1318         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1319         struct nau8824_fll fll_param;
1320         int ret, fs;
1321
1322         fs = freq_out / 256;
1323         ret = nau8824_calc_fll_param(freq_in, fs, &fll_param);
1324         if (ret < 0) {
1325                 dev_err(nau8824->dev, "Unsupported input clock %d\n", freq_in);
1326                 return ret;
1327         }
1328         dev_dbg(nau8824->dev, "mclk_src=%x ratio=%x fll_frac=%x fll_int=%x clk_ref_div=%x\n",
1329                 fll_param.mclk_src, fll_param.ratio, fll_param.fll_frac,
1330                 fll_param.fll_int, fll_param.clk_ref_div);
1331
1332         nau8824_fll_apply(nau8824->regmap, &fll_param);
1333         mdelay(2);
1334         regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1335                 NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_VCO);
1336
1337         return 0;
1338 }
1339
1340 static int nau8824_config_sysclk(struct nau8824 *nau8824,
1341         int clk_id, unsigned int freq)
1342 {
1343         struct regmap *regmap = nau8824->regmap;
1344
1345         switch (clk_id) {
1346         case NAU8824_CLK_DIS:
1347                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1348                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_MCLK);
1349                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1350                         NAU8824_DCO_EN, 0);
1351                 break;
1352
1353         case NAU8824_CLK_MCLK:
1354                 nau8824_sema_acquire(nau8824, HZ);
1355                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1356                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_MCLK);
1357                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1358                         NAU8824_DCO_EN, 0);
1359                 nau8824_sema_release(nau8824);
1360                 break;
1361
1362         case NAU8824_CLK_INTERNAL:
1363                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1364                         NAU8824_DCO_EN, NAU8824_DCO_EN);
1365                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1366                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_VCO);
1367                 break;
1368
1369         case NAU8824_CLK_FLL_MCLK:
1370                 nau8824_sema_acquire(nau8824, HZ);
1371                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1372                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_MCLK);
1373                 nau8824_sema_release(nau8824);
1374                 break;
1375
1376         case NAU8824_CLK_FLL_BLK:
1377                 nau8824_sema_acquire(nau8824, HZ);
1378                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1379                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_BLK);
1380                 nau8824_sema_release(nau8824);
1381                 break;
1382
1383         case NAU8824_CLK_FLL_FS:
1384                 nau8824_sema_acquire(nau8824, HZ);
1385                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1386                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_FS);
1387                 nau8824_sema_release(nau8824);
1388                 break;
1389
1390         default:
1391                 dev_err(nau8824->dev, "Invalid clock id (%d)\n", clk_id);
1392                 return -EINVAL;
1393         }
1394
1395         dev_dbg(nau8824->dev, "Sysclk is %dHz and clock id is %d\n", freq,
1396                 clk_id);
1397
1398         return 0;
1399 }
1400
1401 static int nau8824_set_sysclk(struct snd_soc_codec *codec,
1402         int clk_id, int source, unsigned int freq, int dir)
1403 {
1404         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1405
1406         return nau8824_config_sysclk(nau8824, clk_id, freq);
1407 }
1408
1409 static void nau8824_resume_setup(struct nau8824 *nau8824)
1410 {
1411         nau8824_config_sysclk(nau8824, NAU8824_CLK_DIS, 0);
1412         if (nau8824->irq) {
1413                 /* Clear all interruption status */
1414                 nau8824_int_status_clear_all(nau8824->regmap);
1415                 /* Enable jack detection at sleep mode, insertion detection,
1416                  * and ejection detection.
1417                  */
1418                 regmap_update_bits(nau8824->regmap, NAU8824_REG_ENA_CTRL,
1419                         NAU8824_JD_SLEEP_MODE, NAU8824_JD_SLEEP_MODE);
1420                 regmap_update_bits(nau8824->regmap,
1421                         NAU8824_REG_INTERRUPT_SETTING_1,
1422                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN,
1423                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN);
1424                 regmap_update_bits(nau8824->regmap,
1425                         NAU8824_REG_INTERRUPT_SETTING,
1426                         NAU8824_IRQ_EJECT_DIS | NAU8824_IRQ_INSERT_DIS, 0);
1427         }
1428 }
1429
1430 static int nau8824_set_bias_level(struct snd_soc_codec *codec,
1431         enum snd_soc_bias_level level)
1432 {
1433         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1434
1435         switch (level) {
1436         case SND_SOC_BIAS_ON:
1437                 break;
1438
1439         case SND_SOC_BIAS_PREPARE:
1440                 break;
1441
1442         case SND_SOC_BIAS_STANDBY:
1443                 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) {
1444                         /* Setup codec configuration after resume */
1445                         nau8824_resume_setup(nau8824);
1446                 }
1447                 break;
1448
1449         case SND_SOC_BIAS_OFF:
1450                 regmap_update_bits(nau8824->regmap,
1451                         NAU8824_REG_INTERRUPT_SETTING, 0x3ff, 0x3ff);
1452                 regmap_update_bits(nau8824->regmap,
1453                         NAU8824_REG_INTERRUPT_SETTING_1,
1454                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN, 0);
1455                 break;
1456         }
1457
1458         return 0;
1459 }
1460
1461 static int nau8824_codec_probe(struct snd_soc_codec *codec)
1462 {
1463         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1464         struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
1465
1466         nau8824->dapm = dapm;
1467
1468         return 0;
1469 }
1470
1471 static int __maybe_unused nau8824_suspend(struct snd_soc_codec *codec)
1472 {
1473         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1474
1475         if (nau8824->irq) {
1476                 disable_irq(nau8824->irq);
1477                 snd_soc_codec_force_bias_level(codec, SND_SOC_BIAS_OFF);
1478         }
1479         regcache_cache_only(nau8824->regmap, true);
1480         regcache_mark_dirty(nau8824->regmap);
1481
1482         return 0;
1483 }
1484
1485 static int __maybe_unused nau8824_resume(struct snd_soc_codec *codec)
1486 {
1487         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1488
1489         regcache_cache_only(nau8824->regmap, false);
1490         regcache_sync(nau8824->regmap);
1491         if (nau8824->irq) {
1492                 /* Hold semaphore to postpone playback happening
1493                  * until jack detection done.
1494                  */
1495                 nau8824_sema_acquire(nau8824, 0);
1496                 enable_irq(nau8824->irq);
1497         }
1498
1499         return 0;
1500 }
1501
1502 static const struct snd_soc_codec_driver nau8824_codec_driver = {
1503         .probe = nau8824_codec_probe,
1504         .set_sysclk = nau8824_set_sysclk,
1505         .set_pll = nau8824_set_pll,
1506         .set_bias_level = nau8824_set_bias_level,
1507         .suspend = nau8824_suspend,
1508         .resume = nau8824_resume,
1509         .suspend_bias_off = true,
1510
1511         .component_driver = {
1512                 .controls = nau8824_snd_controls,
1513                 .num_controls = ARRAY_SIZE(nau8824_snd_controls),
1514                 .dapm_widgets = nau8824_dapm_widgets,
1515                 .num_dapm_widgets = ARRAY_SIZE(nau8824_dapm_widgets),
1516                 .dapm_routes = nau8824_dapm_routes,
1517                 .num_dapm_routes = ARRAY_SIZE(nau8824_dapm_routes),
1518         },
1519 };
1520
1521 static const struct snd_soc_dai_ops nau8824_dai_ops = {
1522         .hw_params = nau8824_hw_params,
1523         .set_fmt = nau8824_set_fmt,
1524         .set_tdm_slot = nau8824_set_tdm_slot,
1525 };
1526
1527 #define NAU8824_RATES SNDRV_PCM_RATE_8000_192000
1528 #define NAU8824_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE \
1529          | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1530
1531 static struct snd_soc_dai_driver nau8824_dai = {
1532         .name = NAU8824_CODEC_DAI,
1533         .playback = {
1534                 .stream_name     = "Playback",
1535                 .channels_min    = 1,
1536                 .channels_max    = 2,
1537                 .rates           = NAU8824_RATES,
1538                 .formats         = NAU8824_FORMATS,
1539         },
1540         .capture = {
1541                 .stream_name     = "Capture",
1542                 .channels_min    = 1,
1543                 .channels_max    = 2,
1544                 .rates           = NAU8824_RATES,
1545                 .formats         = NAU8824_FORMATS,
1546         },
1547         .ops = &nau8824_dai_ops,
1548 };
1549
1550 static const struct regmap_config nau8824_regmap_config = {
1551         .val_bits = NAU8824_REG_ADDR_LEN,
1552         .reg_bits = NAU8824_REG_DATA_LEN,
1553
1554         .max_register = NAU8824_REG_MAX,
1555         .readable_reg = nau8824_readable_reg,
1556         .writeable_reg = nau8824_writeable_reg,
1557         .volatile_reg = nau8824_volatile_reg,
1558
1559         .cache_type = REGCACHE_RBTREE,
1560         .reg_defaults = nau8824_reg_defaults,
1561         .num_reg_defaults = ARRAY_SIZE(nau8824_reg_defaults),
1562 };
1563
1564 /**
1565  * nau8824_enable_jack_detect - Specify a jack for event reporting
1566  *
1567  * @component:  component to register the jack with
1568  * @jack: jack to use to report headset and button events on
1569  *
1570  * After this function has been called the headset insert/remove and button
1571  * events will be routed to the given jack.  Jack can be null to stop
1572  * reporting.
1573  */
1574 int nau8824_enable_jack_detect(struct snd_soc_codec *codec,
1575         struct snd_soc_jack *jack)
1576 {
1577         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1578         int ret;
1579
1580         nau8824->jack = jack;
1581         /* Initiate jack detection work queue */
1582         INIT_WORK(&nau8824->jdet_work, nau8824_jdet_work);
1583         ret = devm_request_threaded_irq(nau8824->dev, nau8824->irq, NULL,
1584                 nau8824_interrupt, IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1585                 "nau8824", nau8824);
1586         if (ret) {
1587                 dev_err(nau8824->dev, "Cannot request irq %d (%d)\n",
1588                         nau8824->irq, ret);
1589         }
1590
1591         return ret;
1592 }
1593 EXPORT_SYMBOL_GPL(nau8824_enable_jack_detect);
1594
1595 static void nau8824_reset_chip(struct regmap *regmap)
1596 {
1597         regmap_write(regmap, NAU8824_REG_RESET, 0x00);
1598         regmap_write(regmap, NAU8824_REG_RESET, 0x00);
1599 }
1600
1601 static void nau8824_setup_buttons(struct nau8824 *nau8824)
1602 {
1603         struct regmap *regmap = nau8824->regmap;
1604
1605         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1606                 NAU8824_SAR_TRACKING_GAIN_MASK,
1607                 nau8824->sar_voltage << NAU8824_SAR_TRACKING_GAIN_SFT);
1608         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1609                 NAU8824_SAR_COMPARE_TIME_MASK,
1610                 nau8824->sar_compare_time << NAU8824_SAR_COMPARE_TIME_SFT);
1611         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1612                 NAU8824_SAR_SAMPLING_TIME_MASK,
1613                 nau8824->sar_sampling_time << NAU8824_SAR_SAMPLING_TIME_SFT);
1614
1615         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1616                 NAU8824_LEVELS_NR_MASK,
1617                 (nau8824->sar_threshold_num - 1) << NAU8824_LEVELS_NR_SFT);
1618         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1619                 NAU8824_HYSTERESIS_MASK,
1620                 nau8824->sar_hysteresis << NAU8824_HYSTERESIS_SFT);
1621         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1622                 NAU8824_SHORTKEY_DEBOUNCE_MASK,
1623                 nau8824->key_debounce << NAU8824_SHORTKEY_DEBOUNCE_SFT);
1624
1625         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_1,
1626                 (nau8824->sar_threshold[0] << 8) | nau8824->sar_threshold[1]);
1627         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_2,
1628                 (nau8824->sar_threshold[2] << 8) | nau8824->sar_threshold[3]);
1629         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_3,
1630                 (nau8824->sar_threshold[4] << 8) | nau8824->sar_threshold[5]);
1631         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_4,
1632                 (nau8824->sar_threshold[6] << 8) | nau8824->sar_threshold[7]);
1633 }
1634
1635 static void nau8824_init_regs(struct nau8824 *nau8824)
1636 {
1637         struct regmap *regmap = nau8824->regmap;
1638
1639         /* Enable Bias/VMID/VMID Tieoff */
1640         regmap_update_bits(regmap, NAU8824_REG_BIAS_ADJ,
1641                 NAU8824_VMID | NAU8824_VMID_SEL_MASK, NAU8824_VMID |
1642                 (nau8824->vref_impedance << NAU8824_VMID_SEL_SFT));
1643         regmap_update_bits(regmap, NAU8824_REG_BOOST,
1644                 NAU8824_GLOBAL_BIAS_EN, NAU8824_GLOBAL_BIAS_EN);
1645         mdelay(2);
1646         regmap_update_bits(regmap, NAU8824_REG_MIC_BIAS,
1647                 NAU8824_MICBIAS_VOLTAGE_MASK, nau8824->micbias_voltage);
1648         /* Disable Boost Driver, Automatic Short circuit protection enable */
1649         regmap_update_bits(regmap, NAU8824_REG_BOOST,
1650                 NAU8824_PRECHARGE_DIS | NAU8824_HP_BOOST_DIS |
1651                 NAU8824_HP_BOOST_G_DIS | NAU8824_SHORT_SHUTDOWN_EN,
1652                 NAU8824_PRECHARGE_DIS | NAU8824_HP_BOOST_DIS |
1653                 NAU8824_HP_BOOST_G_DIS | NAU8824_SHORT_SHUTDOWN_EN);
1654         /* Scaling for ADC and DAC clock */
1655         regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1656                 NAU8824_CLK_ADC_SRC_MASK | NAU8824_CLK_DAC_SRC_MASK,
1657                 (0x1 << NAU8824_CLK_ADC_SRC_SFT) |
1658                 (0x1 << NAU8824_CLK_DAC_SRC_SFT));
1659         regmap_update_bits(regmap, NAU8824_REG_DAC_MUTE_CTRL,
1660                 NAU8824_DAC_ZC_EN, NAU8824_DAC_ZC_EN);
1661         regmap_update_bits(regmap, NAU8824_REG_ENA_CTRL,
1662                 NAU8824_DAC_CH1_EN | NAU8824_DAC_CH0_EN |
1663                 NAU8824_ADC_CH0_EN | NAU8824_ADC_CH1_EN |
1664                 NAU8824_ADC_CH2_EN | NAU8824_ADC_CH3_EN,
1665                 NAU8824_DAC_CH1_EN | NAU8824_DAC_CH0_EN |
1666                 NAU8824_ADC_CH0_EN | NAU8824_ADC_CH1_EN |
1667                 NAU8824_ADC_CH2_EN | NAU8824_ADC_CH3_EN);
1668         regmap_update_bits(regmap, NAU8824_REG_CLK_GATING_ENA,
1669                 NAU8824_CLK_ADC_CH23_EN | NAU8824_CLK_ADC_CH01_EN |
1670                 NAU8824_CLK_DAC_CH1_EN | NAU8824_CLK_DAC_CH0_EN |
1671                 NAU8824_CLK_I2S_EN | NAU8824_CLK_GAIN_EN |
1672                 NAU8824_CLK_SAR_EN | NAU8824_CLK_DMIC_CH23_EN,
1673                 NAU8824_CLK_ADC_CH23_EN | NAU8824_CLK_ADC_CH01_EN |
1674                 NAU8824_CLK_DAC_CH1_EN | NAU8824_CLK_DAC_CH0_EN |
1675                 NAU8824_CLK_I2S_EN | NAU8824_CLK_GAIN_EN |
1676                 NAU8824_CLK_SAR_EN | NAU8824_CLK_DMIC_CH23_EN);
1677         /* Class G timer 64ms */
1678         regmap_update_bits(regmap, NAU8824_REG_CLASSG,
1679                 NAU8824_CLASSG_TIMER_MASK,
1680                 0x20 << NAU8824_CLASSG_TIMER_SFT);
1681         regmap_update_bits(regmap, NAU8824_REG_TRIM_SETTINGS,
1682                 NAU8824_DRV_CURR_INC, NAU8824_DRV_CURR_INC);
1683         /* Disable DACR/L power */
1684         regmap_update_bits(regmap, NAU8824_REG_CHARGE_PUMP_CONTROL,
1685                 NAU8824_SPKR_PULL_DOWN | NAU8824_SPKL_PULL_DOWN |
1686                 NAU8824_POWER_DOWN_DACR | NAU8824_POWER_DOWN_DACL,
1687                 NAU8824_SPKR_PULL_DOWN | NAU8824_SPKL_PULL_DOWN |
1688                 NAU8824_POWER_DOWN_DACR | NAU8824_POWER_DOWN_DACL);
1689         /* Enable TESTDAC. This sets the analog DAC inputs to a '0' input
1690          * signal to avoid any glitches due to power up transients in both
1691          * the analog and digital DAC circuit.
1692          */
1693         regmap_update_bits(regmap, NAU8824_REG_ENABLE_LO,
1694                 NAU8824_TEST_DAC_EN, NAU8824_TEST_DAC_EN);
1695         /* Config L/R channel */
1696         regmap_update_bits(regmap, NAU8824_REG_DAC_CH0_DGAIN_CTRL,
1697                 NAU8824_DAC_CH0_SEL_MASK, NAU8824_DAC_CH0_SEL_I2S0);
1698         regmap_update_bits(regmap, NAU8824_REG_DAC_CH1_DGAIN_CTRL,
1699                 NAU8824_DAC_CH1_SEL_MASK, NAU8824_DAC_CH1_SEL_I2S1);
1700         regmap_update_bits(regmap, NAU8824_REG_ENABLE_LO,
1701                 NAU8824_DACR_HPR_EN | NAU8824_DACL_HPL_EN,
1702                 NAU8824_DACR_HPR_EN | NAU8824_DACL_HPL_EN);
1703         /* Default oversampling/decimations settings are unusable
1704          * (audible hiss). Set it to something better.
1705          */
1706         regmap_update_bits(regmap, NAU8824_REG_ADC_FILTER_CTRL,
1707                 NAU8824_ADC_SYNC_DOWN_MASK, NAU8824_ADC_SYNC_DOWN_64);
1708         regmap_update_bits(regmap, NAU8824_REG_DAC_FILTER_CTRL_1,
1709                 NAU8824_DAC_CICCLP_OFF | NAU8824_DAC_OVERSAMPLE_MASK,
1710                 NAU8824_DAC_CICCLP_OFF | NAU8824_DAC_OVERSAMPLE_64);
1711         /* DAC clock delay 2ns, VREF */
1712         regmap_update_bits(regmap, NAU8824_REG_RDAC,
1713                 NAU8824_RDAC_CLK_DELAY_MASK | NAU8824_RDAC_VREF_MASK,
1714                 (0x2 << NAU8824_RDAC_CLK_DELAY_SFT) |
1715                 (0x3 << NAU8824_RDAC_VREF_SFT));
1716         /* PGA input mode selection */
1717         regmap_update_bits(regmap, NAU8824_REG_FEPGA,
1718                 NAU8824_FEPGA_MODEL_SHORT_EN | NAU8824_FEPGA_MODER_SHORT_EN,
1719                 NAU8824_FEPGA_MODEL_SHORT_EN | NAU8824_FEPGA_MODER_SHORT_EN);
1720         /* Digital microphone control */
1721         regmap_update_bits(regmap, NAU8824_REG_ANALOG_CONTROL_1,
1722                 NAU8824_DMIC_CLK_DRV_STRG | NAU8824_DMIC_CLK_SLEW_FAST,
1723                 NAU8824_DMIC_CLK_DRV_STRG | NAU8824_DMIC_CLK_SLEW_FAST);
1724         regmap_update_bits(regmap, NAU8824_REG_JACK_DET_CTRL,
1725                 NAU8824_JACK_LOGIC,
1726                 /* jkdet_polarity - 1  is for active-low */
1727                 nau8824->jkdet_polarity ? 0 : NAU8824_JACK_LOGIC);
1728         regmap_update_bits(regmap,
1729                 NAU8824_REG_JACK_DET_CTRL, NAU8824_JACK_EJECT_DT_MASK,
1730                 (nau8824->jack_eject_debounce << NAU8824_JACK_EJECT_DT_SFT));
1731         if (nau8824->sar_threshold_num)
1732                 nau8824_setup_buttons(nau8824);
1733 }
1734
1735 static int nau8824_setup_irq(struct nau8824 *nau8824)
1736 {
1737         /* Disable interruption before codec initiation done */
1738         regmap_update_bits(nau8824->regmap, NAU8824_REG_ENA_CTRL,
1739                 NAU8824_JD_SLEEP_MODE, NAU8824_JD_SLEEP_MODE);
1740         regmap_update_bits(nau8824->regmap,
1741                 NAU8824_REG_INTERRUPT_SETTING, 0x3ff, 0x3ff);
1742         regmap_update_bits(nau8824->regmap, NAU8824_REG_INTERRUPT_SETTING_1,
1743                 NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN, 0);
1744
1745         return 0;
1746 }
1747
1748 static void nau8824_print_device_properties(struct nau8824 *nau8824)
1749 {
1750         struct device *dev = nau8824->dev;
1751         int i;
1752
1753         dev_dbg(dev, "jkdet-polarity:       %d\n", nau8824->jkdet_polarity);
1754         dev_dbg(dev, "micbias-voltage:      %d\n", nau8824->micbias_voltage);
1755         dev_dbg(dev, "vref-impedance:       %d\n", nau8824->vref_impedance);
1756
1757         dev_dbg(dev, "sar-threshold-num:    %d\n", nau8824->sar_threshold_num);
1758         for (i = 0; i < nau8824->sar_threshold_num; i++)
1759                 dev_dbg(dev, "sar-threshold[%d]=%x\n", i,
1760                                 nau8824->sar_threshold[i]);
1761
1762         dev_dbg(dev, "sar-hysteresis:       %d\n", nau8824->sar_hysteresis);
1763         dev_dbg(dev, "sar-voltage:          %d\n", nau8824->sar_voltage);
1764         dev_dbg(dev, "sar-compare-time:     %d\n", nau8824->sar_compare_time);
1765         dev_dbg(dev, "sar-sampling-time:    %d\n", nau8824->sar_sampling_time);
1766         dev_dbg(dev, "short-key-debounce:   %d\n", nau8824->key_debounce);
1767         dev_dbg(dev, "jack-eject-debounce:  %d\n",
1768                         nau8824->jack_eject_debounce);
1769 }
1770
1771 static int nau8824_read_device_properties(struct device *dev,
1772         struct nau8824 *nau8824) {
1773         int ret;
1774
1775         ret = device_property_read_u32(dev, "nuvoton,jkdet-polarity",
1776                 &nau8824->jkdet_polarity);
1777         if (ret)
1778                 nau8824->jkdet_polarity = 1;
1779         ret = device_property_read_u32(dev, "nuvoton,micbias-voltage",
1780                 &nau8824->micbias_voltage);
1781         if (ret)
1782                 nau8824->micbias_voltage = 6;
1783         ret = device_property_read_u32(dev, "nuvoton,vref-impedance",
1784                 &nau8824->vref_impedance);
1785         if (ret)
1786                 nau8824->vref_impedance = 2;
1787         ret = device_property_read_u32(dev, "nuvoton,sar-threshold-num",
1788                 &nau8824->sar_threshold_num);
1789         if (ret)
1790                 nau8824->sar_threshold_num = 4;
1791         ret = device_property_read_u32_array(dev, "nuvoton,sar-threshold",
1792                 nau8824->sar_threshold, nau8824->sar_threshold_num);
1793         if (ret) {
1794                 nau8824->sar_threshold[0] = 0x0a;
1795                 nau8824->sar_threshold[1] = 0x14;
1796                 nau8824->sar_threshold[2] = 0x26;
1797                 nau8824->sar_threshold[3] = 0x73;
1798         }
1799         ret = device_property_read_u32(dev, "nuvoton,sar-hysteresis",
1800                 &nau8824->sar_hysteresis);
1801         if (ret)
1802                 nau8824->sar_hysteresis = 0;
1803         ret = device_property_read_u32(dev, "nuvoton,sar-voltage",
1804                 &nau8824->sar_voltage);
1805         if (ret)
1806                 nau8824->sar_voltage = 6;
1807         ret = device_property_read_u32(dev, "nuvoton,sar-compare-time",
1808                 &nau8824->sar_compare_time);
1809         if (ret)
1810                 nau8824->sar_compare_time = 1;
1811         ret = device_property_read_u32(dev, "nuvoton,sar-sampling-time",
1812                 &nau8824->sar_sampling_time);
1813         if (ret)
1814                 nau8824->sar_sampling_time = 1;
1815         ret = device_property_read_u32(dev, "nuvoton,short-key-debounce",
1816                 &nau8824->key_debounce);
1817         if (ret)
1818                 nau8824->key_debounce = 0;
1819         ret = device_property_read_u32(dev, "nuvoton,jack-eject-debounce",
1820                 &nau8824->jack_eject_debounce);
1821         if (ret)
1822                 nau8824->jack_eject_debounce = 1;
1823
1824         return 0;
1825 }
1826
1827 static int nau8824_i2c_probe(struct i2c_client *i2c,
1828         const struct i2c_device_id *id)
1829 {
1830         struct device *dev = &i2c->dev;
1831         struct nau8824 *nau8824 = dev_get_platdata(dev);
1832         int ret, value;
1833
1834         if (!nau8824) {
1835                 nau8824 = devm_kzalloc(dev, sizeof(*nau8824), GFP_KERNEL);
1836                 if (!nau8824)
1837                         return -ENOMEM;
1838                 ret = nau8824_read_device_properties(dev, nau8824);
1839                 if (ret)
1840                         return ret;
1841         }
1842         i2c_set_clientdata(i2c, nau8824);
1843
1844         nau8824->regmap = devm_regmap_init_i2c(i2c, &nau8824_regmap_config);
1845         if (IS_ERR(nau8824->regmap))
1846                 return PTR_ERR(nau8824->regmap);
1847         nau8824->dev = dev;
1848         nau8824->irq = i2c->irq;
1849         sema_init(&nau8824->jd_sem, 1);
1850
1851         nau8824_print_device_properties(nau8824);
1852
1853         ret = regmap_read(nau8824->regmap, NAU8824_REG_I2C_DEVICE_ID, &value);
1854         if (ret < 0) {
1855                 dev_err(dev, "Failed to read device id from the NAU8824: %d\n",
1856                         ret);
1857                 return ret;
1858         }
1859         nau8824_reset_chip(nau8824->regmap);
1860         nau8824_init_regs(nau8824);
1861
1862         if (i2c->irq)
1863                 nau8824_setup_irq(nau8824);
1864
1865         return snd_soc_register_codec(dev,
1866                 &nau8824_codec_driver, &nau8824_dai, 1);
1867 }
1868
1869
1870 static int nau8824_i2c_remove(struct i2c_client *client)
1871 {
1872         snd_soc_unregister_codec(&client->dev);
1873         return 0;
1874 }
1875
1876 static const struct i2c_device_id nau8824_i2c_ids[] = {
1877         { "nau8824", 0 },
1878         { }
1879 };
1880 MODULE_DEVICE_TABLE(i2c, nau8824_i2c_ids);
1881
1882 #ifdef CONFIG_OF
1883 static const struct of_device_id nau8824_of_ids[] = {
1884         { .compatible = "nuvoton,nau8824", },
1885         {}
1886 };
1887 MODULE_DEVICE_TABLE(of, nau8824_of_ids);
1888 #endif
1889
1890 #ifdef CONFIG_ACPI
1891 static const struct acpi_device_id nau8824_acpi_match[] = {
1892         { "10508824", 0 },
1893         {},
1894 };
1895 MODULE_DEVICE_TABLE(acpi, nau8824_acpi_match);
1896 #endif
1897
1898 static struct i2c_driver nau8824_i2c_driver = {
1899         .driver = {
1900                 .name = "nau8824",
1901                 .of_match_table = of_match_ptr(nau8824_of_ids),
1902                 .acpi_match_table = ACPI_PTR(nau8824_acpi_match),
1903         },
1904         .probe = nau8824_i2c_probe,
1905         .remove = nau8824_i2c_remove,
1906         .id_table = nau8824_i2c_ids,
1907 };
1908 module_i2c_driver(nau8824_i2c_driver);
1909
1910
1911 MODULE_DESCRIPTION("ASoC NAU88L24 driver");
1912 MODULE_AUTHOR("John Hsu <KCHSU0@nuvoton.com>");
1913 MODULE_LICENSE("GPL v2");