GNU Linux-libre 4.14.332-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         int err = -EINVAL;
1019
1020         nau8824_sema_acquire(nau8824, HZ);
1021
1022         /* CLK_DAC or CLK_ADC = OSR * FS
1023          * DAC or ADC clock frequency is defined as Over Sampling Rate (OSR)
1024          * multiplied by the audio sample rate (Fs). Note that the OSR and Fs
1025          * values must be selected such that the maximum frequency is less
1026          * than 6.144 MHz.
1027          */
1028         nau8824->fs = params_rate(params);
1029         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1030                 regmap_read(nau8824->regmap,
1031                         NAU8824_REG_DAC_FILTER_CTRL_1, &osr);
1032                 osr &= NAU8824_DAC_OVERSAMPLE_MASK;
1033                 if (nau8824_clock_check(nau8824, substream->stream,
1034                         nau8824->fs, osr))
1035                         goto error;
1036                 regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1037                         NAU8824_CLK_DAC_SRC_MASK,
1038                         osr_dac_sel[osr].clk_src << NAU8824_CLK_DAC_SRC_SFT);
1039         } else {
1040                 regmap_read(nau8824->regmap,
1041                         NAU8824_REG_ADC_FILTER_CTRL, &osr);
1042                 osr &= NAU8824_ADC_SYNC_DOWN_MASK;
1043                 if (nau8824_clock_check(nau8824, substream->stream,
1044                         nau8824->fs, osr))
1045                         goto error;
1046                 regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1047                         NAU8824_CLK_ADC_SRC_MASK,
1048                         osr_adc_sel[osr].clk_src << NAU8824_CLK_ADC_SRC_SFT);
1049         }
1050
1051         /* make BCLK and LRC divde configuration if the codec as master. */
1052         regmap_read(nau8824->regmap,
1053                 NAU8824_REG_PORT0_I2S_PCM_CTRL_2, &ctrl_val);
1054         if (ctrl_val & NAU8824_I2S_MS_MASTER) {
1055                 /* get the bclk and fs ratio */
1056                 bclk_fs = snd_soc_params_to_bclk(params) / nau8824->fs;
1057                 if (bclk_fs <= 32)
1058                         bclk_div = 0x3;
1059                 else if (bclk_fs <= 64)
1060                         bclk_div = 0x2;
1061                 else if (bclk_fs <= 128)
1062                         bclk_div = 0x1;
1063                 else if (bclk_fs <= 256)
1064                         bclk_div = 0;
1065                 else
1066                         goto error;
1067                 regmap_update_bits(nau8824->regmap,
1068                         NAU8824_REG_PORT0_I2S_PCM_CTRL_2,
1069                         NAU8824_I2S_LRC_DIV_MASK | NAU8824_I2S_BLK_DIV_MASK,
1070                         (bclk_div << NAU8824_I2S_LRC_DIV_SFT) | bclk_div);
1071         }
1072
1073         switch (params_width(params)) {
1074         case 16:
1075                 val_len |= NAU8824_I2S_DL_16;
1076                 break;
1077         case 20:
1078                 val_len |= NAU8824_I2S_DL_20;
1079                 break;
1080         case 24:
1081                 val_len |= NAU8824_I2S_DL_24;
1082                 break;
1083         case 32:
1084                 val_len |= NAU8824_I2S_DL_32;
1085                 break;
1086         default:
1087                 goto error;
1088         }
1089
1090         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_1,
1091                 NAU8824_I2S_DL_MASK, val_len);
1092         err = 0;
1093
1094  error:
1095         nau8824_sema_release(nau8824);
1096
1097         return err;
1098 }
1099
1100 static int nau8824_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
1101 {
1102         struct snd_soc_codec *codec = dai->codec;
1103         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1104         unsigned int ctrl1_val = 0, ctrl2_val = 0;
1105
1106         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1107         case SND_SOC_DAIFMT_CBM_CFM:
1108                 ctrl2_val |= NAU8824_I2S_MS_MASTER;
1109                 break;
1110         case SND_SOC_DAIFMT_CBS_CFS:
1111                 break;
1112         default:
1113                 return -EINVAL;
1114         }
1115
1116         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1117         case SND_SOC_DAIFMT_NB_NF:
1118                 break;
1119         case SND_SOC_DAIFMT_IB_NF:
1120                 ctrl1_val |= NAU8824_I2S_BP_INV;
1121                 break;
1122         default:
1123                 return -EINVAL;
1124         }
1125
1126         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1127         case SND_SOC_DAIFMT_I2S:
1128                 ctrl1_val |= NAU8824_I2S_DF_I2S;
1129                 break;
1130         case SND_SOC_DAIFMT_LEFT_J:
1131                 ctrl1_val |= NAU8824_I2S_DF_LEFT;
1132                 break;
1133         case SND_SOC_DAIFMT_RIGHT_J:
1134                 ctrl1_val |= NAU8824_I2S_DF_RIGTH;
1135                 break;
1136         case SND_SOC_DAIFMT_DSP_A:
1137                 ctrl1_val |= NAU8824_I2S_DF_PCM_AB;
1138                 break;
1139         case SND_SOC_DAIFMT_DSP_B:
1140                 ctrl1_val |= NAU8824_I2S_DF_PCM_AB;
1141                 ctrl1_val |= NAU8824_I2S_PCMB_EN;
1142                 break;
1143         default:
1144                 return -EINVAL;
1145         }
1146
1147         nau8824_sema_acquire(nau8824, HZ);
1148
1149         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_1,
1150                 NAU8824_I2S_DF_MASK | NAU8824_I2S_BP_MASK |
1151                 NAU8824_I2S_PCMB_EN, ctrl1_val);
1152         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_I2S_PCM_CTRL_2,
1153                 NAU8824_I2S_MS_MASK, ctrl2_val);
1154
1155         nau8824_sema_release(nau8824);
1156
1157         return 0;
1158 }
1159
1160 /**
1161  * nau8824_set_tdm_slot - configure DAI TDM.
1162  * @dai: DAI
1163  * @tx_mask: Bitmask representing active TX slots. Ex.
1164  *                 0xf for normal 4 channel TDM.
1165  *                 0xf0 for shifted 4 channel TDM
1166  * @rx_mask: Bitmask [0:1] representing active DACR RX slots.
1167  *                 Bitmask [2:3] representing active DACL RX slots.
1168  *                 00=CH0,01=CH1,10=CH2,11=CH3. Ex.
1169  *                 0xf for DACL/R selecting TDM CH3.
1170  *                 0xf0 for DACL/R selecting shifted TDM CH3.
1171  * @slots: Number of slots in use.
1172  * @slot_width: Width in bits for each slot.
1173  *
1174  * Configures a DAI for TDM operation. Only support 4 slots TDM.
1175  */
1176 static int nau8824_set_tdm_slot(struct snd_soc_dai *dai,
1177         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
1178 {
1179         struct snd_soc_codec *codec = dai->codec;
1180         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1181         unsigned int tslot_l = 0, ctrl_val = 0;
1182
1183         if (slots > 4 || ((tx_mask & 0xf0) && (tx_mask & 0xf)) ||
1184                 ((rx_mask & 0xf0) && (rx_mask & 0xf)) ||
1185                 ((rx_mask & 0xf0) && (tx_mask & 0xf)) ||
1186                 ((rx_mask & 0xf) && (tx_mask & 0xf0)))
1187                 return -EINVAL;
1188
1189         ctrl_val |= (NAU8824_TDM_MODE | NAU8824_TDM_OFFSET_EN);
1190         if (tx_mask & 0xf0) {
1191                 tslot_l = 4 * slot_width;
1192                 ctrl_val |= (tx_mask >> 4);
1193         } else {
1194                 ctrl_val |= tx_mask;
1195         }
1196         if (rx_mask & 0xf0)
1197                 ctrl_val |= ((rx_mask >> 4) << NAU8824_TDM_DACR_RX_SFT);
1198         else
1199                 ctrl_val |= (rx_mask << NAU8824_TDM_DACR_RX_SFT);
1200
1201         regmap_update_bits(nau8824->regmap, NAU8824_REG_TDM_CTRL,
1202                 NAU8824_TDM_MODE | NAU8824_TDM_OFFSET_EN |
1203                 NAU8824_TDM_DACL_RX_MASK | NAU8824_TDM_DACR_RX_MASK |
1204                 NAU8824_TDM_TX_MASK, ctrl_val);
1205         regmap_update_bits(nau8824->regmap, NAU8824_REG_PORT0_LEFT_TIME_SLOT,
1206                 NAU8824_TSLOT_L_MASK, tslot_l);
1207
1208         return 0;
1209 }
1210
1211 /**
1212  * nau8824_calc_fll_param - Calculate FLL parameters.
1213  * @fll_in: external clock provided to codec.
1214  * @fs: sampling rate.
1215  * @fll_param: Pointer to structure of FLL parameters.
1216  *
1217  * Calculate FLL parameters to configure codec.
1218  *
1219  * Returns 0 for success or negative error code.
1220  */
1221 static int nau8824_calc_fll_param(unsigned int fll_in,
1222         unsigned int fs, struct nau8824_fll *fll_param)
1223 {
1224         u64 fvco, fvco_max;
1225         unsigned int fref, i, fvco_sel;
1226
1227         /* Ensure the reference clock frequency (FREF) is <= 13.5MHz by dividing
1228          * freq_in by 1, 2, 4, or 8 using FLL pre-scalar.
1229          * FREF = freq_in / NAU8824_FLL_REF_DIV_MASK
1230          */
1231         for (i = 0; i < ARRAY_SIZE(fll_pre_scalar); i++) {
1232                 fref = fll_in / fll_pre_scalar[i].param;
1233                 if (fref <= NAU_FREF_MAX)
1234                         break;
1235         }
1236         if (i == ARRAY_SIZE(fll_pre_scalar))
1237                 return -EINVAL;
1238         fll_param->clk_ref_div = fll_pre_scalar[i].val;
1239
1240         /* Choose the FLL ratio based on FREF */
1241         for (i = 0; i < ARRAY_SIZE(fll_ratio); i++) {
1242                 if (fref >= fll_ratio[i].param)
1243                         break;
1244         }
1245         if (i == ARRAY_SIZE(fll_ratio))
1246                 return -EINVAL;
1247         fll_param->ratio = fll_ratio[i].val;
1248
1249         /* Calculate the frequency of DCO (FDCO) given freq_out = 256 * Fs.
1250          * FDCO must be within the 90MHz - 124MHz or the FFL cannot be
1251          * guaranteed across the full range of operation.
1252          * FDCO = freq_out * 2 * mclk_src_scaling
1253          */
1254         fvco_max = 0;
1255         fvco_sel = ARRAY_SIZE(mclk_src_scaling);
1256         for (i = 0; i < ARRAY_SIZE(mclk_src_scaling); i++) {
1257                 fvco = 256 * fs * 2 * mclk_src_scaling[i].param;
1258                 if (fvco > NAU_FVCO_MIN && fvco < NAU_FVCO_MAX &&
1259                         fvco_max < fvco) {
1260                         fvco_max = fvco;
1261                         fvco_sel = i;
1262                 }
1263         }
1264         if (ARRAY_SIZE(mclk_src_scaling) == fvco_sel)
1265                 return -EINVAL;
1266         fll_param->mclk_src = mclk_src_scaling[fvco_sel].val;
1267
1268         /* Calculate the FLL 10-bit integer input and the FLL 16-bit fractional
1269          * input based on FDCO, FREF and FLL ratio.
1270          */
1271         fvco = div_u64(fvco_max << 16, fref * fll_param->ratio);
1272         fll_param->fll_int = (fvco >> 16) & 0x3FF;
1273         fll_param->fll_frac = fvco & 0xFFFF;
1274         return 0;
1275 }
1276
1277 static void nau8824_fll_apply(struct regmap *regmap,
1278         struct nau8824_fll *fll_param)
1279 {
1280         regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1281                 NAU8824_CLK_SRC_MASK | NAU8824_CLK_MCLK_SRC_MASK,
1282                 NAU8824_CLK_SRC_MCLK | fll_param->mclk_src);
1283         regmap_update_bits(regmap, NAU8824_REG_FLL1,
1284                 NAU8824_FLL_RATIO_MASK, fll_param->ratio);
1285         /* FLL 16-bit fractional input */
1286         regmap_write(regmap, NAU8824_REG_FLL2, fll_param->fll_frac);
1287         /* FLL 10-bit integer input */
1288         regmap_update_bits(regmap, NAU8824_REG_FLL3,
1289                 NAU8824_FLL_INTEGER_MASK, fll_param->fll_int);
1290         /* FLL pre-scaler */
1291         regmap_update_bits(regmap, NAU8824_REG_FLL4,
1292                 NAU8824_FLL_REF_DIV_MASK,
1293                 fll_param->clk_ref_div << NAU8824_FLL_REF_DIV_SFT);
1294         /* select divided VCO input */
1295         regmap_update_bits(regmap, NAU8824_REG_FLL5,
1296                 NAU8824_FLL_CLK_SW_MASK, NAU8824_FLL_CLK_SW_REF);
1297         /* Disable free-running mode */
1298         regmap_update_bits(regmap,
1299                 NAU8824_REG_FLL6, NAU8824_DCO_EN, 0);
1300         if (fll_param->fll_frac) {
1301                 regmap_update_bits(regmap, NAU8824_REG_FLL5,
1302                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1303                         NAU8824_FLL_FTR_SW_MASK,
1304                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1305                         NAU8824_FLL_FTR_SW_FILTER);
1306                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1307                         NAU8824_SDM_EN, NAU8824_SDM_EN);
1308         } else {
1309                 regmap_update_bits(regmap, NAU8824_REG_FLL5,
1310                         NAU8824_FLL_PDB_DAC_EN | NAU8824_FLL_LOOP_FTR_EN |
1311                         NAU8824_FLL_FTR_SW_MASK, NAU8824_FLL_FTR_SW_ACCU);
1312                 regmap_update_bits(regmap,
1313                         NAU8824_REG_FLL6, NAU8824_SDM_EN, 0);
1314         }
1315 }
1316
1317 /* freq_out must be 256*Fs in order to achieve the best performance */
1318 static int nau8824_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
1319                 unsigned int freq_in, unsigned int freq_out)
1320 {
1321         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1322         struct nau8824_fll fll_param;
1323         int ret, fs;
1324
1325         fs = freq_out / 256;
1326         ret = nau8824_calc_fll_param(freq_in, fs, &fll_param);
1327         if (ret < 0) {
1328                 dev_err(nau8824->dev, "Unsupported input clock %d\n", freq_in);
1329                 return ret;
1330         }
1331         dev_dbg(nau8824->dev, "mclk_src=%x ratio=%x fll_frac=%x fll_int=%x clk_ref_div=%x\n",
1332                 fll_param.mclk_src, fll_param.ratio, fll_param.fll_frac,
1333                 fll_param.fll_int, fll_param.clk_ref_div);
1334
1335         nau8824_fll_apply(nau8824->regmap, &fll_param);
1336         mdelay(2);
1337         regmap_update_bits(nau8824->regmap, NAU8824_REG_CLK_DIVIDER,
1338                 NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_VCO);
1339
1340         return 0;
1341 }
1342
1343 static int nau8824_config_sysclk(struct nau8824 *nau8824,
1344         int clk_id, unsigned int freq)
1345 {
1346         struct regmap *regmap = nau8824->regmap;
1347
1348         switch (clk_id) {
1349         case NAU8824_CLK_DIS:
1350                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1351                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_MCLK);
1352                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1353                         NAU8824_DCO_EN, 0);
1354                 break;
1355
1356         case NAU8824_CLK_MCLK:
1357                 nau8824_sema_acquire(nau8824, HZ);
1358                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1359                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_MCLK);
1360                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1361                         NAU8824_DCO_EN, 0);
1362                 nau8824_sema_release(nau8824);
1363                 break;
1364
1365         case NAU8824_CLK_INTERNAL:
1366                 regmap_update_bits(regmap, NAU8824_REG_FLL6,
1367                         NAU8824_DCO_EN, NAU8824_DCO_EN);
1368                 regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1369                         NAU8824_CLK_SRC_MASK, NAU8824_CLK_SRC_VCO);
1370                 break;
1371
1372         case NAU8824_CLK_FLL_MCLK:
1373                 nau8824_sema_acquire(nau8824, HZ);
1374                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1375                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_MCLK);
1376                 nau8824_sema_release(nau8824);
1377                 break;
1378
1379         case NAU8824_CLK_FLL_BLK:
1380                 nau8824_sema_acquire(nau8824, HZ);
1381                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1382                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_BLK);
1383                 nau8824_sema_release(nau8824);
1384                 break;
1385
1386         case NAU8824_CLK_FLL_FS:
1387                 nau8824_sema_acquire(nau8824, HZ);
1388                 regmap_update_bits(regmap, NAU8824_REG_FLL3,
1389                         NAU8824_FLL_CLK_SRC_MASK, NAU8824_FLL_CLK_SRC_FS);
1390                 nau8824_sema_release(nau8824);
1391                 break;
1392
1393         default:
1394                 dev_err(nau8824->dev, "Invalid clock id (%d)\n", clk_id);
1395                 return -EINVAL;
1396         }
1397
1398         dev_dbg(nau8824->dev, "Sysclk is %dHz and clock id is %d\n", freq,
1399                 clk_id);
1400
1401         return 0;
1402 }
1403
1404 static int nau8824_set_sysclk(struct snd_soc_codec *codec,
1405         int clk_id, int source, unsigned int freq, int dir)
1406 {
1407         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1408
1409         return nau8824_config_sysclk(nau8824, clk_id, freq);
1410 }
1411
1412 static void nau8824_resume_setup(struct nau8824 *nau8824)
1413 {
1414         nau8824_config_sysclk(nau8824, NAU8824_CLK_DIS, 0);
1415         if (nau8824->irq) {
1416                 /* Clear all interruption status */
1417                 nau8824_int_status_clear_all(nau8824->regmap);
1418                 /* Enable jack detection at sleep mode, insertion detection,
1419                  * and ejection detection.
1420                  */
1421                 regmap_update_bits(nau8824->regmap, NAU8824_REG_ENA_CTRL,
1422                         NAU8824_JD_SLEEP_MODE, NAU8824_JD_SLEEP_MODE);
1423                 regmap_update_bits(nau8824->regmap,
1424                         NAU8824_REG_INTERRUPT_SETTING_1,
1425                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN,
1426                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN);
1427                 regmap_update_bits(nau8824->regmap,
1428                         NAU8824_REG_INTERRUPT_SETTING,
1429                         NAU8824_IRQ_EJECT_DIS | NAU8824_IRQ_INSERT_DIS, 0);
1430         }
1431 }
1432
1433 static int nau8824_set_bias_level(struct snd_soc_codec *codec,
1434         enum snd_soc_bias_level level)
1435 {
1436         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1437
1438         switch (level) {
1439         case SND_SOC_BIAS_ON:
1440                 break;
1441
1442         case SND_SOC_BIAS_PREPARE:
1443                 break;
1444
1445         case SND_SOC_BIAS_STANDBY:
1446                 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) {
1447                         /* Setup codec configuration after resume */
1448                         nau8824_resume_setup(nau8824);
1449                 }
1450                 break;
1451
1452         case SND_SOC_BIAS_OFF:
1453                 regmap_update_bits(nau8824->regmap,
1454                         NAU8824_REG_INTERRUPT_SETTING, 0x3ff, 0x3ff);
1455                 regmap_update_bits(nau8824->regmap,
1456                         NAU8824_REG_INTERRUPT_SETTING_1,
1457                         NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN, 0);
1458                 break;
1459         }
1460
1461         return 0;
1462 }
1463
1464 static int nau8824_codec_probe(struct snd_soc_codec *codec)
1465 {
1466         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1467         struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
1468
1469         nau8824->dapm = dapm;
1470
1471         return 0;
1472 }
1473
1474 static int __maybe_unused nau8824_suspend(struct snd_soc_codec *codec)
1475 {
1476         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1477
1478         if (nau8824->irq) {
1479                 disable_irq(nau8824->irq);
1480                 snd_soc_codec_force_bias_level(codec, SND_SOC_BIAS_OFF);
1481         }
1482         regcache_cache_only(nau8824->regmap, true);
1483         regcache_mark_dirty(nau8824->regmap);
1484
1485         return 0;
1486 }
1487
1488 static int __maybe_unused nau8824_resume(struct snd_soc_codec *codec)
1489 {
1490         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1491
1492         regcache_cache_only(nau8824->regmap, false);
1493         regcache_sync(nau8824->regmap);
1494         if (nau8824->irq) {
1495                 /* Hold semaphore to postpone playback happening
1496                  * until jack detection done.
1497                  */
1498                 nau8824_sema_acquire(nau8824, 0);
1499                 enable_irq(nau8824->irq);
1500         }
1501
1502         return 0;
1503 }
1504
1505 static const struct snd_soc_codec_driver nau8824_codec_driver = {
1506         .probe = nau8824_codec_probe,
1507         .set_sysclk = nau8824_set_sysclk,
1508         .set_pll = nau8824_set_pll,
1509         .set_bias_level = nau8824_set_bias_level,
1510         .suspend = nau8824_suspend,
1511         .resume = nau8824_resume,
1512         .suspend_bias_off = true,
1513
1514         .component_driver = {
1515                 .controls = nau8824_snd_controls,
1516                 .num_controls = ARRAY_SIZE(nau8824_snd_controls),
1517                 .dapm_widgets = nau8824_dapm_widgets,
1518                 .num_dapm_widgets = ARRAY_SIZE(nau8824_dapm_widgets),
1519                 .dapm_routes = nau8824_dapm_routes,
1520                 .num_dapm_routes = ARRAY_SIZE(nau8824_dapm_routes),
1521         },
1522 };
1523
1524 static const struct snd_soc_dai_ops nau8824_dai_ops = {
1525         .hw_params = nau8824_hw_params,
1526         .set_fmt = nau8824_set_fmt,
1527         .set_tdm_slot = nau8824_set_tdm_slot,
1528 };
1529
1530 #define NAU8824_RATES SNDRV_PCM_RATE_8000_192000
1531 #define NAU8824_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE \
1532          | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1533
1534 static struct snd_soc_dai_driver nau8824_dai = {
1535         .name = NAU8824_CODEC_DAI,
1536         .playback = {
1537                 .stream_name     = "Playback",
1538                 .channels_min    = 1,
1539                 .channels_max    = 2,
1540                 .rates           = NAU8824_RATES,
1541                 .formats         = NAU8824_FORMATS,
1542         },
1543         .capture = {
1544                 .stream_name     = "Capture",
1545                 .channels_min    = 1,
1546                 .channels_max    = 2,
1547                 .rates           = NAU8824_RATES,
1548                 .formats         = NAU8824_FORMATS,
1549         },
1550         .ops = &nau8824_dai_ops,
1551 };
1552
1553 static const struct regmap_config nau8824_regmap_config = {
1554         .val_bits = NAU8824_REG_ADDR_LEN,
1555         .reg_bits = NAU8824_REG_DATA_LEN,
1556
1557         .max_register = NAU8824_REG_MAX,
1558         .readable_reg = nau8824_readable_reg,
1559         .writeable_reg = nau8824_writeable_reg,
1560         .volatile_reg = nau8824_volatile_reg,
1561
1562         .cache_type = REGCACHE_RBTREE,
1563         .reg_defaults = nau8824_reg_defaults,
1564         .num_reg_defaults = ARRAY_SIZE(nau8824_reg_defaults),
1565 };
1566
1567 /**
1568  * nau8824_enable_jack_detect - Specify a jack for event reporting
1569  *
1570  * @component:  component to register the jack with
1571  * @jack: jack to use to report headset and button events on
1572  *
1573  * After this function has been called the headset insert/remove and button
1574  * events will be routed to the given jack.  Jack can be null to stop
1575  * reporting.
1576  */
1577 int nau8824_enable_jack_detect(struct snd_soc_codec *codec,
1578         struct snd_soc_jack *jack)
1579 {
1580         struct nau8824 *nau8824 = snd_soc_codec_get_drvdata(codec);
1581         int ret;
1582
1583         nau8824->jack = jack;
1584         /* Initiate jack detection work queue */
1585         INIT_WORK(&nau8824->jdet_work, nau8824_jdet_work);
1586         ret = devm_request_threaded_irq(nau8824->dev, nau8824->irq, NULL,
1587                 nau8824_interrupt, IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1588                 "nau8824", nau8824);
1589         if (ret) {
1590                 dev_err(nau8824->dev, "Cannot request irq %d (%d)\n",
1591                         nau8824->irq, ret);
1592         }
1593
1594         return ret;
1595 }
1596 EXPORT_SYMBOL_GPL(nau8824_enable_jack_detect);
1597
1598 static void nau8824_reset_chip(struct regmap *regmap)
1599 {
1600         regmap_write(regmap, NAU8824_REG_RESET, 0x00);
1601         regmap_write(regmap, NAU8824_REG_RESET, 0x00);
1602 }
1603
1604 static void nau8824_setup_buttons(struct nau8824 *nau8824)
1605 {
1606         struct regmap *regmap = nau8824->regmap;
1607
1608         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1609                 NAU8824_SAR_TRACKING_GAIN_MASK,
1610                 nau8824->sar_voltage << NAU8824_SAR_TRACKING_GAIN_SFT);
1611         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1612                 NAU8824_SAR_COMPARE_TIME_MASK,
1613                 nau8824->sar_compare_time << NAU8824_SAR_COMPARE_TIME_SFT);
1614         regmap_update_bits(regmap, NAU8824_REG_SAR_ADC,
1615                 NAU8824_SAR_SAMPLING_TIME_MASK,
1616                 nau8824->sar_sampling_time << NAU8824_SAR_SAMPLING_TIME_SFT);
1617
1618         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1619                 NAU8824_LEVELS_NR_MASK,
1620                 (nau8824->sar_threshold_num - 1) << NAU8824_LEVELS_NR_SFT);
1621         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1622                 NAU8824_HYSTERESIS_MASK,
1623                 nau8824->sar_hysteresis << NAU8824_HYSTERESIS_SFT);
1624         regmap_update_bits(regmap, NAU8824_REG_VDET_COEFFICIENT,
1625                 NAU8824_SHORTKEY_DEBOUNCE_MASK,
1626                 nau8824->key_debounce << NAU8824_SHORTKEY_DEBOUNCE_SFT);
1627
1628         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_1,
1629                 (nau8824->sar_threshold[0] << 8) | nau8824->sar_threshold[1]);
1630         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_2,
1631                 (nau8824->sar_threshold[2] << 8) | nau8824->sar_threshold[3]);
1632         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_3,
1633                 (nau8824->sar_threshold[4] << 8) | nau8824->sar_threshold[5]);
1634         regmap_write(regmap, NAU8824_REG_VDET_THRESHOLD_4,
1635                 (nau8824->sar_threshold[6] << 8) | nau8824->sar_threshold[7]);
1636 }
1637
1638 static void nau8824_init_regs(struct nau8824 *nau8824)
1639 {
1640         struct regmap *regmap = nau8824->regmap;
1641
1642         /* Enable Bias/VMID/VMID Tieoff */
1643         regmap_update_bits(regmap, NAU8824_REG_BIAS_ADJ,
1644                 NAU8824_VMID | NAU8824_VMID_SEL_MASK, NAU8824_VMID |
1645                 (nau8824->vref_impedance << NAU8824_VMID_SEL_SFT));
1646         regmap_update_bits(regmap, NAU8824_REG_BOOST,
1647                 NAU8824_GLOBAL_BIAS_EN, NAU8824_GLOBAL_BIAS_EN);
1648         mdelay(2);
1649         regmap_update_bits(regmap, NAU8824_REG_MIC_BIAS,
1650                 NAU8824_MICBIAS_VOLTAGE_MASK, nau8824->micbias_voltage);
1651         /* Disable Boost Driver, Automatic Short circuit protection enable */
1652         regmap_update_bits(regmap, NAU8824_REG_BOOST,
1653                 NAU8824_PRECHARGE_DIS | NAU8824_HP_BOOST_DIS |
1654                 NAU8824_HP_BOOST_G_DIS | NAU8824_SHORT_SHUTDOWN_EN,
1655                 NAU8824_PRECHARGE_DIS | NAU8824_HP_BOOST_DIS |
1656                 NAU8824_HP_BOOST_G_DIS | NAU8824_SHORT_SHUTDOWN_EN);
1657         /* Scaling for ADC and DAC clock */
1658         regmap_update_bits(regmap, NAU8824_REG_CLK_DIVIDER,
1659                 NAU8824_CLK_ADC_SRC_MASK | NAU8824_CLK_DAC_SRC_MASK,
1660                 (0x1 << NAU8824_CLK_ADC_SRC_SFT) |
1661                 (0x1 << NAU8824_CLK_DAC_SRC_SFT));
1662         regmap_update_bits(regmap, NAU8824_REG_DAC_MUTE_CTRL,
1663                 NAU8824_DAC_ZC_EN, NAU8824_DAC_ZC_EN);
1664         regmap_update_bits(regmap, NAU8824_REG_ENA_CTRL,
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                 NAU8824_DAC_CH1_EN | NAU8824_DAC_CH0_EN |
1669                 NAU8824_ADC_CH0_EN | NAU8824_ADC_CH1_EN |
1670                 NAU8824_ADC_CH2_EN | NAU8824_ADC_CH3_EN);
1671         regmap_update_bits(regmap, NAU8824_REG_CLK_GATING_ENA,
1672                 NAU8824_CLK_ADC_CH23_EN | NAU8824_CLK_ADC_CH01_EN |
1673                 NAU8824_CLK_DAC_CH1_EN | NAU8824_CLK_DAC_CH0_EN |
1674                 NAU8824_CLK_I2S_EN | NAU8824_CLK_GAIN_EN |
1675                 NAU8824_CLK_SAR_EN | NAU8824_CLK_DMIC_CH23_EN,
1676                 NAU8824_CLK_ADC_CH23_EN | NAU8824_CLK_ADC_CH01_EN |
1677                 NAU8824_CLK_DAC_CH1_EN | NAU8824_CLK_DAC_CH0_EN |
1678                 NAU8824_CLK_I2S_EN | NAU8824_CLK_GAIN_EN |
1679                 NAU8824_CLK_SAR_EN | NAU8824_CLK_DMIC_CH23_EN);
1680         /* Class G timer 64ms */
1681         regmap_update_bits(regmap, NAU8824_REG_CLASSG,
1682                 NAU8824_CLASSG_TIMER_MASK,
1683                 0x20 << NAU8824_CLASSG_TIMER_SFT);
1684         regmap_update_bits(regmap, NAU8824_REG_TRIM_SETTINGS,
1685                 NAU8824_DRV_CURR_INC, NAU8824_DRV_CURR_INC);
1686         /* Disable DACR/L power */
1687         regmap_update_bits(regmap, NAU8824_REG_CHARGE_PUMP_CONTROL,
1688                 NAU8824_SPKR_PULL_DOWN | NAU8824_SPKL_PULL_DOWN |
1689                 NAU8824_POWER_DOWN_DACR | NAU8824_POWER_DOWN_DACL,
1690                 NAU8824_SPKR_PULL_DOWN | NAU8824_SPKL_PULL_DOWN |
1691                 NAU8824_POWER_DOWN_DACR | NAU8824_POWER_DOWN_DACL);
1692         /* Enable TESTDAC. This sets the analog DAC inputs to a '0' input
1693          * signal to avoid any glitches due to power up transients in both
1694          * the analog and digital DAC circuit.
1695          */
1696         regmap_update_bits(regmap, NAU8824_REG_ENABLE_LO,
1697                 NAU8824_TEST_DAC_EN, NAU8824_TEST_DAC_EN);
1698         /* Config L/R channel */
1699         regmap_update_bits(regmap, NAU8824_REG_DAC_CH0_DGAIN_CTRL,
1700                 NAU8824_DAC_CH0_SEL_MASK, NAU8824_DAC_CH0_SEL_I2S0);
1701         regmap_update_bits(regmap, NAU8824_REG_DAC_CH1_DGAIN_CTRL,
1702                 NAU8824_DAC_CH1_SEL_MASK, NAU8824_DAC_CH1_SEL_I2S1);
1703         regmap_update_bits(regmap, NAU8824_REG_ENABLE_LO,
1704                 NAU8824_DACR_HPR_EN | NAU8824_DACL_HPL_EN,
1705                 NAU8824_DACR_HPR_EN | NAU8824_DACL_HPL_EN);
1706         /* Default oversampling/decimations settings are unusable
1707          * (audible hiss). Set it to something better.
1708          */
1709         regmap_update_bits(regmap, NAU8824_REG_ADC_FILTER_CTRL,
1710                 NAU8824_ADC_SYNC_DOWN_MASK, NAU8824_ADC_SYNC_DOWN_64);
1711         regmap_update_bits(regmap, NAU8824_REG_DAC_FILTER_CTRL_1,
1712                 NAU8824_DAC_CICCLP_OFF | NAU8824_DAC_OVERSAMPLE_MASK,
1713                 NAU8824_DAC_CICCLP_OFF | NAU8824_DAC_OVERSAMPLE_64);
1714         /* DAC clock delay 2ns, VREF */
1715         regmap_update_bits(regmap, NAU8824_REG_RDAC,
1716                 NAU8824_RDAC_CLK_DELAY_MASK | NAU8824_RDAC_VREF_MASK,
1717                 (0x2 << NAU8824_RDAC_CLK_DELAY_SFT) |
1718                 (0x3 << NAU8824_RDAC_VREF_SFT));
1719         /* PGA input mode selection */
1720         regmap_update_bits(regmap, NAU8824_REG_FEPGA,
1721                 NAU8824_FEPGA_MODEL_SHORT_EN | NAU8824_FEPGA_MODER_SHORT_EN,
1722                 NAU8824_FEPGA_MODEL_SHORT_EN | NAU8824_FEPGA_MODER_SHORT_EN);
1723         /* Digital microphone control */
1724         regmap_update_bits(regmap, NAU8824_REG_ANALOG_CONTROL_1,
1725                 NAU8824_DMIC_CLK_DRV_STRG | NAU8824_DMIC_CLK_SLEW_FAST,
1726                 NAU8824_DMIC_CLK_DRV_STRG | NAU8824_DMIC_CLK_SLEW_FAST);
1727         regmap_update_bits(regmap, NAU8824_REG_JACK_DET_CTRL,
1728                 NAU8824_JACK_LOGIC,
1729                 /* jkdet_polarity - 1  is for active-low */
1730                 nau8824->jkdet_polarity ? 0 : NAU8824_JACK_LOGIC);
1731         regmap_update_bits(regmap,
1732                 NAU8824_REG_JACK_DET_CTRL, NAU8824_JACK_EJECT_DT_MASK,
1733                 (nau8824->jack_eject_debounce << NAU8824_JACK_EJECT_DT_SFT));
1734         if (nau8824->sar_threshold_num)
1735                 nau8824_setup_buttons(nau8824);
1736 }
1737
1738 static int nau8824_setup_irq(struct nau8824 *nau8824)
1739 {
1740         /* Disable interruption before codec initiation done */
1741         regmap_update_bits(nau8824->regmap, NAU8824_REG_ENA_CTRL,
1742                 NAU8824_JD_SLEEP_MODE, NAU8824_JD_SLEEP_MODE);
1743         regmap_update_bits(nau8824->regmap,
1744                 NAU8824_REG_INTERRUPT_SETTING, 0x3ff, 0x3ff);
1745         regmap_update_bits(nau8824->regmap, NAU8824_REG_INTERRUPT_SETTING_1,
1746                 NAU8824_IRQ_EJECT_EN | NAU8824_IRQ_INSERT_EN, 0);
1747
1748         return 0;
1749 }
1750
1751 static void nau8824_print_device_properties(struct nau8824 *nau8824)
1752 {
1753         struct device *dev = nau8824->dev;
1754         int i;
1755
1756         dev_dbg(dev, "jkdet-polarity:       %d\n", nau8824->jkdet_polarity);
1757         dev_dbg(dev, "micbias-voltage:      %d\n", nau8824->micbias_voltage);
1758         dev_dbg(dev, "vref-impedance:       %d\n", nau8824->vref_impedance);
1759
1760         dev_dbg(dev, "sar-threshold-num:    %d\n", nau8824->sar_threshold_num);
1761         for (i = 0; i < nau8824->sar_threshold_num; i++)
1762                 dev_dbg(dev, "sar-threshold[%d]=%x\n", i,
1763                                 nau8824->sar_threshold[i]);
1764
1765         dev_dbg(dev, "sar-hysteresis:       %d\n", nau8824->sar_hysteresis);
1766         dev_dbg(dev, "sar-voltage:          %d\n", nau8824->sar_voltage);
1767         dev_dbg(dev, "sar-compare-time:     %d\n", nau8824->sar_compare_time);
1768         dev_dbg(dev, "sar-sampling-time:    %d\n", nau8824->sar_sampling_time);
1769         dev_dbg(dev, "short-key-debounce:   %d\n", nau8824->key_debounce);
1770         dev_dbg(dev, "jack-eject-debounce:  %d\n",
1771                         nau8824->jack_eject_debounce);
1772 }
1773
1774 static int nau8824_read_device_properties(struct device *dev,
1775         struct nau8824 *nau8824) {
1776         int ret;
1777
1778         ret = device_property_read_u32(dev, "nuvoton,jkdet-polarity",
1779                 &nau8824->jkdet_polarity);
1780         if (ret)
1781                 nau8824->jkdet_polarity = 1;
1782         ret = device_property_read_u32(dev, "nuvoton,micbias-voltage",
1783                 &nau8824->micbias_voltage);
1784         if (ret)
1785                 nau8824->micbias_voltage = 6;
1786         ret = device_property_read_u32(dev, "nuvoton,vref-impedance",
1787                 &nau8824->vref_impedance);
1788         if (ret)
1789                 nau8824->vref_impedance = 2;
1790         ret = device_property_read_u32(dev, "nuvoton,sar-threshold-num",
1791                 &nau8824->sar_threshold_num);
1792         if (ret)
1793                 nau8824->sar_threshold_num = 4;
1794         ret = device_property_read_u32_array(dev, "nuvoton,sar-threshold",
1795                 nau8824->sar_threshold, nau8824->sar_threshold_num);
1796         if (ret) {
1797                 nau8824->sar_threshold[0] = 0x0a;
1798                 nau8824->sar_threshold[1] = 0x14;
1799                 nau8824->sar_threshold[2] = 0x26;
1800                 nau8824->sar_threshold[3] = 0x73;
1801         }
1802         ret = device_property_read_u32(dev, "nuvoton,sar-hysteresis",
1803                 &nau8824->sar_hysteresis);
1804         if (ret)
1805                 nau8824->sar_hysteresis = 0;
1806         ret = device_property_read_u32(dev, "nuvoton,sar-voltage",
1807                 &nau8824->sar_voltage);
1808         if (ret)
1809                 nau8824->sar_voltage = 6;
1810         ret = device_property_read_u32(dev, "nuvoton,sar-compare-time",
1811                 &nau8824->sar_compare_time);
1812         if (ret)
1813                 nau8824->sar_compare_time = 1;
1814         ret = device_property_read_u32(dev, "nuvoton,sar-sampling-time",
1815                 &nau8824->sar_sampling_time);
1816         if (ret)
1817                 nau8824->sar_sampling_time = 1;
1818         ret = device_property_read_u32(dev, "nuvoton,short-key-debounce",
1819                 &nau8824->key_debounce);
1820         if (ret)
1821                 nau8824->key_debounce = 0;
1822         ret = device_property_read_u32(dev, "nuvoton,jack-eject-debounce",
1823                 &nau8824->jack_eject_debounce);
1824         if (ret)
1825                 nau8824->jack_eject_debounce = 1;
1826
1827         return 0;
1828 }
1829
1830 static int nau8824_i2c_probe(struct i2c_client *i2c,
1831         const struct i2c_device_id *id)
1832 {
1833         struct device *dev = &i2c->dev;
1834         struct nau8824 *nau8824 = dev_get_platdata(dev);
1835         int ret, value;
1836
1837         if (!nau8824) {
1838                 nau8824 = devm_kzalloc(dev, sizeof(*nau8824), GFP_KERNEL);
1839                 if (!nau8824)
1840                         return -ENOMEM;
1841                 ret = nau8824_read_device_properties(dev, nau8824);
1842                 if (ret)
1843                         return ret;
1844         }
1845         i2c_set_clientdata(i2c, nau8824);
1846
1847         nau8824->regmap = devm_regmap_init_i2c(i2c, &nau8824_regmap_config);
1848         if (IS_ERR(nau8824->regmap))
1849                 return PTR_ERR(nau8824->regmap);
1850         nau8824->dev = dev;
1851         nau8824->irq = i2c->irq;
1852         sema_init(&nau8824->jd_sem, 1);
1853
1854         nau8824_print_device_properties(nau8824);
1855
1856         ret = regmap_read(nau8824->regmap, NAU8824_REG_I2C_DEVICE_ID, &value);
1857         if (ret < 0) {
1858                 dev_err(dev, "Failed to read device id from the NAU8824: %d\n",
1859                         ret);
1860                 return ret;
1861         }
1862         nau8824_reset_chip(nau8824->regmap);
1863         nau8824_init_regs(nau8824);
1864
1865         if (i2c->irq)
1866                 nau8824_setup_irq(nau8824);
1867
1868         return snd_soc_register_codec(dev,
1869                 &nau8824_codec_driver, &nau8824_dai, 1);
1870 }
1871
1872
1873 static int nau8824_i2c_remove(struct i2c_client *client)
1874 {
1875         snd_soc_unregister_codec(&client->dev);
1876         return 0;
1877 }
1878
1879 static const struct i2c_device_id nau8824_i2c_ids[] = {
1880         { "nau8824", 0 },
1881         { }
1882 };
1883 MODULE_DEVICE_TABLE(i2c, nau8824_i2c_ids);
1884
1885 #ifdef CONFIG_OF
1886 static const struct of_device_id nau8824_of_ids[] = {
1887         { .compatible = "nuvoton,nau8824", },
1888         {}
1889 };
1890 MODULE_DEVICE_TABLE(of, nau8824_of_ids);
1891 #endif
1892
1893 #ifdef CONFIG_ACPI
1894 static const struct acpi_device_id nau8824_acpi_match[] = {
1895         { "10508824", 0 },
1896         {},
1897 };
1898 MODULE_DEVICE_TABLE(acpi, nau8824_acpi_match);
1899 #endif
1900
1901 static struct i2c_driver nau8824_i2c_driver = {
1902         .driver = {
1903                 .name = "nau8824",
1904                 .of_match_table = of_match_ptr(nau8824_of_ids),
1905                 .acpi_match_table = ACPI_PTR(nau8824_acpi_match),
1906         },
1907         .probe = nau8824_i2c_probe,
1908         .remove = nau8824_i2c_remove,
1909         .id_table = nau8824_i2c_ids,
1910 };
1911 module_i2c_driver(nau8824_i2c_driver);
1912
1913
1914 MODULE_DESCRIPTION("ASoC NAU88L24 driver");
1915 MODULE_AUTHOR("John Hsu <KCHSU0@nuvoton.com>");
1916 MODULE_LICENSE("GPL v2");