1 // SPDX-License-Identifier: GPL-2.0-only
3 * es8316.c -- es8316 ALSA SoC audio driver
4 * Copyright Everest Semiconductor Co.,Ltd
6 * Authors: David Yang <yangxiaohua@everest-semi.com>,
7 * Daniel Drake <drake@endlessm.com>
10 #include <linux/module.h>
11 #include <linux/acpi.h>
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/i2c.h>
15 #include <linux/mod_devicetable.h>
16 #include <linux/mutex.h>
17 #include <linux/regmap.h>
18 #include <sound/pcm.h>
19 #include <sound/pcm_params.h>
20 #include <sound/soc.h>
21 #include <sound/soc-dapm.h>
22 #include <sound/tlv.h>
23 #include <sound/jack.h>
26 /* In slave mode at single speed, the codec is documented as accepting 5
27 * MCLK/LRCK ratios, but we also add ratio 400, which is commonly used on
28 * Intel Cherry Trail platforms (19.2MHz MCLK, 48kHz LRCK).
30 #define NR_SUPPORTED_MCLK_LRCK_RATIOS 6
31 static const unsigned int supported_mclk_lrck_ratios
[] = {
32 256, 384, 400, 512, 768, 1024
38 struct regmap
*regmap
;
39 struct snd_soc_component
*component
;
40 struct snd_soc_jack
*jack
;
43 unsigned int allowed_rates
[NR_SUPPORTED_MCLK_LRCK_RATIOS
];
44 struct snd_pcm_hw_constraint_list sysclk_constraints
;
51 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(dac_vol_tlv
, -9600, 50, 1);
52 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(adc_vol_tlv
, -9600, 50, 1);
53 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(alc_max_gain_tlv
, -650, 150, 0);
54 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(alc_min_gain_tlv
, -1200, 150, 0);
55 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(alc_target_tlv
, -1650, 150, 0);
56 static const SNDRV_CTL_TLVD_DECLARE_DB_RANGE(hpmixer_gain_tlv
,
57 0, 4, TLV_DB_SCALE_ITEM(-1200, 150, 0),
58 8, 11, TLV_DB_SCALE_ITEM(-450, 150, 0),
61 static const SNDRV_CTL_TLVD_DECLARE_DB_RANGE(adc_pga_gain_tlv
,
62 0, 0, TLV_DB_SCALE_ITEM(-350, 0, 0),
63 1, 1, TLV_DB_SCALE_ITEM(0, 0, 0),
64 2, 2, TLV_DB_SCALE_ITEM(250, 0, 0),
65 3, 3, TLV_DB_SCALE_ITEM(450, 0, 0),
66 4, 4, TLV_DB_SCALE_ITEM(700, 0, 0),
67 5, 5, TLV_DB_SCALE_ITEM(1000, 0, 0),
68 6, 6, TLV_DB_SCALE_ITEM(1300, 0, 0),
69 7, 7, TLV_DB_SCALE_ITEM(1600, 0, 0),
70 8, 8, TLV_DB_SCALE_ITEM(1800, 0, 0),
71 9, 9, TLV_DB_SCALE_ITEM(2100, 0, 0),
72 10, 10, TLV_DB_SCALE_ITEM(2400, 0, 0),
75 static const SNDRV_CTL_TLVD_DECLARE_DB_RANGE(hpout_vol_tlv
,
76 0, 0, TLV_DB_SCALE_ITEM(-4800, 0, 0),
77 1, 3, TLV_DB_SCALE_ITEM(-2400, 1200, 0),
80 static const char * const ng_type_txt
[] =
81 { "Constant PGA Gain", "Mute ADC Output" };
82 static const struct soc_enum ng_type
=
83 SOC_ENUM_SINGLE(ES8316_ADC_ALC_NG
, 6, 2, ng_type_txt
);
85 static const char * const adcpol_txt
[] = { "Normal", "Invert" };
86 static const struct soc_enum adcpol
=
87 SOC_ENUM_SINGLE(ES8316_ADC_MUTE
, 1, 2, adcpol_txt
);
88 static const char *const dacpol_txt
[] =
89 { "Normal", "R Invert", "L Invert", "L + R Invert" };
90 static const struct soc_enum dacpol
=
91 SOC_ENUM_SINGLE(ES8316_DAC_SET1
, 0, 4, dacpol_txt
);
93 static const struct snd_kcontrol_new es8316_snd_controls
[] = {
94 SOC_DOUBLE_TLV("Headphone Playback Volume", ES8316_CPHP_ICAL_VOL
,
95 4, 0, 3, 1, hpout_vol_tlv
),
96 SOC_DOUBLE_TLV("Headphone Mixer Volume", ES8316_HPMIX_VOL
,
97 4, 0, 11, 0, hpmixer_gain_tlv
),
99 SOC_ENUM("Playback Polarity", dacpol
),
100 SOC_DOUBLE_R_TLV("DAC Playback Volume", ES8316_DAC_VOLL
,
101 ES8316_DAC_VOLR
, 0, 0xc0, 1, dac_vol_tlv
),
102 SOC_SINGLE("DAC Soft Ramp Switch", ES8316_DAC_SET1
, 4, 1, 1),
103 SOC_SINGLE("DAC Soft Ramp Rate", ES8316_DAC_SET1
, 2, 4, 0),
104 SOC_SINGLE("DAC Notch Filter Switch", ES8316_DAC_SET2
, 6, 1, 0),
105 SOC_SINGLE("DAC Double Fs Switch", ES8316_DAC_SET2
, 7, 1, 0),
106 SOC_SINGLE("DAC Stereo Enhancement", ES8316_DAC_SET3
, 0, 7, 0),
107 SOC_SINGLE("DAC Mono Mix Switch", ES8316_DAC_SET3
, 3, 1, 0),
109 SOC_ENUM("Capture Polarity", adcpol
),
110 SOC_SINGLE("Mic Boost Switch", ES8316_ADC_D2SEPGA
, 0, 1, 0),
111 SOC_SINGLE_TLV("ADC Capture Volume", ES8316_ADC_VOLUME
,
112 0, 0xc0, 1, adc_vol_tlv
),
113 SOC_SINGLE_TLV("ADC PGA Gain Volume", ES8316_ADC_PGAGAIN
,
114 4, 10, 0, adc_pga_gain_tlv
),
115 SOC_SINGLE("ADC Soft Ramp Switch", ES8316_ADC_MUTE
, 4, 1, 0),
116 SOC_SINGLE("ADC Double Fs Switch", ES8316_ADC_DMIC
, 4, 1, 0),
118 SOC_SINGLE("ALC Capture Switch", ES8316_ADC_ALC1
, 6, 1, 0),
119 SOC_SINGLE_TLV("ALC Capture Max Volume", ES8316_ADC_ALC1
, 0, 28, 0,
121 SOC_SINGLE_TLV("ALC Capture Min Volume", ES8316_ADC_ALC2
, 0, 28, 0,
123 SOC_SINGLE_TLV("ALC Capture Target Volume", ES8316_ADC_ALC3
, 4, 10, 0,
125 SOC_SINGLE("ALC Capture Hold Time", ES8316_ADC_ALC3
, 0, 10, 0),
126 SOC_SINGLE("ALC Capture Decay Time", ES8316_ADC_ALC4
, 4, 10, 0),
127 SOC_SINGLE("ALC Capture Attack Time", ES8316_ADC_ALC4
, 0, 10, 0),
128 SOC_SINGLE("ALC Capture Noise Gate Switch", ES8316_ADC_ALC_NG
,
130 SOC_SINGLE("ALC Capture Noise Gate Threshold", ES8316_ADC_ALC_NG
,
132 SOC_ENUM("ALC Capture Noise Gate Type", ng_type
),
135 /* Analog Input Mux */
136 static const char * const es8316_analog_in_txt
[] = {
139 "lin1-rin1 with 20db Boost",
140 "lin2-rin2 with 20db Boost"
142 static const unsigned int es8316_analog_in_values
[] = { 0, 1, 2, 3 };
143 static const struct soc_enum es8316_analog_input_enum
=
144 SOC_VALUE_ENUM_SINGLE(ES8316_ADC_PDN_LINSEL
, 4, 3,
145 ARRAY_SIZE(es8316_analog_in_txt
),
146 es8316_analog_in_txt
,
147 es8316_analog_in_values
);
148 static const struct snd_kcontrol_new es8316_analog_in_mux_controls
=
149 SOC_DAPM_ENUM("Route", es8316_analog_input_enum
);
151 static const char * const es8316_dmic_txt
[] = {
153 "dmic data at high level",
154 "dmic data at low level",
156 static const unsigned int es8316_dmic_values
[] = { 0, 1, 2 };
157 static const struct soc_enum es8316_dmic_src_enum
=
158 SOC_VALUE_ENUM_SINGLE(ES8316_ADC_DMIC
, 0, 3,
159 ARRAY_SIZE(es8316_dmic_txt
),
162 static const struct snd_kcontrol_new es8316_dmic_src_controls
=
163 SOC_DAPM_ENUM("Route", es8316_dmic_src_enum
);
166 static const char * const es8316_hpmux_texts
[] = {
169 "lin-rin with Boost",
170 "lin-rin with Boost and PGA"
173 static SOC_ENUM_SINGLE_DECL(es8316_left_hpmux_enum
, ES8316_HPMIX_SEL
,
174 4, es8316_hpmux_texts
);
176 static const struct snd_kcontrol_new es8316_left_hpmux_controls
=
177 SOC_DAPM_ENUM("Route", es8316_left_hpmux_enum
);
179 static SOC_ENUM_SINGLE_DECL(es8316_right_hpmux_enum
, ES8316_HPMIX_SEL
,
180 0, es8316_hpmux_texts
);
182 static const struct snd_kcontrol_new es8316_right_hpmux_controls
=
183 SOC_DAPM_ENUM("Route", es8316_right_hpmux_enum
);
185 /* headphone Output Mixer */
186 static const struct snd_kcontrol_new es8316_out_left_mix
[] = {
187 SOC_DAPM_SINGLE("LLIN Switch", ES8316_HPMIX_SWITCH
, 6, 1, 0),
188 SOC_DAPM_SINGLE("Left DAC Switch", ES8316_HPMIX_SWITCH
, 7, 1, 0),
190 static const struct snd_kcontrol_new es8316_out_right_mix
[] = {
191 SOC_DAPM_SINGLE("RLIN Switch", ES8316_HPMIX_SWITCH
, 2, 1, 0),
192 SOC_DAPM_SINGLE("Right DAC Switch", ES8316_HPMIX_SWITCH
, 3, 1, 0),
195 /* DAC data source mux */
196 static const char * const es8316_dacsrc_texts
[] = {
197 "LDATA TO LDAC, RDATA TO RDAC",
198 "LDATA TO LDAC, LDATA TO RDAC",
199 "RDATA TO LDAC, RDATA TO RDAC",
200 "RDATA TO LDAC, LDATA TO RDAC",
203 static SOC_ENUM_SINGLE_DECL(es8316_dacsrc_mux_enum
, ES8316_DAC_SET1
,
204 6, es8316_dacsrc_texts
);
206 static const struct snd_kcontrol_new es8316_dacsrc_mux_controls
=
207 SOC_DAPM_ENUM("Route", es8316_dacsrc_mux_enum
);
209 static const struct snd_soc_dapm_widget es8316_dapm_widgets
[] = {
210 SND_SOC_DAPM_SUPPLY("Bias", ES8316_SYS_PDN
, 3, 1, NULL
, 0),
211 SND_SOC_DAPM_SUPPLY("Analog power", ES8316_SYS_PDN
, 4, 1, NULL
, 0),
212 SND_SOC_DAPM_SUPPLY("Mic Bias", ES8316_SYS_PDN
, 5, 1, NULL
, 0),
214 SND_SOC_DAPM_INPUT("DMIC"),
215 SND_SOC_DAPM_INPUT("MIC1"),
216 SND_SOC_DAPM_INPUT("MIC2"),
219 SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM
, 0, 0,
220 &es8316_analog_in_mux_controls
),
222 SND_SOC_DAPM_SUPPLY("ADC Vref", ES8316_SYS_PDN
, 1, 1, NULL
, 0),
223 SND_SOC_DAPM_SUPPLY("ADC bias", ES8316_SYS_PDN
, 2, 1, NULL
, 0),
224 SND_SOC_DAPM_SUPPLY("ADC Clock", ES8316_CLKMGR_CLKSW
, 3, 0, NULL
, 0),
225 SND_SOC_DAPM_PGA("Line input PGA", ES8316_ADC_PDN_LINSEL
,
227 SND_SOC_DAPM_ADC("Mono ADC", NULL
, ES8316_ADC_PDN_LINSEL
, 6, 1),
228 SND_SOC_DAPM_MUX("Digital Mic Mux", SND_SOC_NOPM
, 0, 0,
229 &es8316_dmic_src_controls
),
231 /* Digital Interface */
232 SND_SOC_DAPM_AIF_OUT("I2S OUT", "I2S1 Capture", 1,
233 ES8316_SERDATA_ADC
, 6, 1),
234 SND_SOC_DAPM_AIF_IN("I2S IN", "I2S1 Playback", 0,
237 SND_SOC_DAPM_MUX("DAC Source Mux", SND_SOC_NOPM
, 0, 0,
238 &es8316_dacsrc_mux_controls
),
240 SND_SOC_DAPM_SUPPLY("DAC Vref", ES8316_SYS_PDN
, 0, 1, NULL
, 0),
241 SND_SOC_DAPM_SUPPLY("DAC Clock", ES8316_CLKMGR_CLKSW
, 2, 0, NULL
, 0),
242 SND_SOC_DAPM_DAC("Right DAC", NULL
, ES8316_DAC_PDN
, 0, 1),
243 SND_SOC_DAPM_DAC("Left DAC", NULL
, ES8316_DAC_PDN
, 4, 1),
245 /* Headphone Output Side */
246 SND_SOC_DAPM_MUX("Left Headphone Mux", SND_SOC_NOPM
, 0, 0,
247 &es8316_left_hpmux_controls
),
248 SND_SOC_DAPM_MUX("Right Headphone Mux", SND_SOC_NOPM
, 0, 0,
249 &es8316_right_hpmux_controls
),
250 SND_SOC_DAPM_MIXER("Left Headphone Mixer", ES8316_HPMIX_PDN
,
251 5, 1, &es8316_out_left_mix
[0],
252 ARRAY_SIZE(es8316_out_left_mix
)),
253 SND_SOC_DAPM_MIXER("Right Headphone Mixer", ES8316_HPMIX_PDN
,
254 1, 1, &es8316_out_right_mix
[0],
255 ARRAY_SIZE(es8316_out_right_mix
)),
256 SND_SOC_DAPM_PGA("Left Headphone Mixer Out", ES8316_HPMIX_PDN
,
258 SND_SOC_DAPM_PGA("Right Headphone Mixer Out", ES8316_HPMIX_PDN
,
261 SND_SOC_DAPM_OUT_DRV("Left Headphone Charge Pump", ES8316_CPHP_OUTEN
,
263 SND_SOC_DAPM_OUT_DRV("Right Headphone Charge Pump", ES8316_CPHP_OUTEN
,
265 SND_SOC_DAPM_SUPPLY("Headphone Charge Pump", ES8316_CPHP_PDN2
,
267 SND_SOC_DAPM_SUPPLY("Headphone Charge Pump Clock", ES8316_CLKMGR_CLKSW
,
270 SND_SOC_DAPM_OUT_DRV("Left Headphone Driver", ES8316_CPHP_OUTEN
,
272 SND_SOC_DAPM_OUT_DRV("Right Headphone Driver", ES8316_CPHP_OUTEN
,
274 SND_SOC_DAPM_SUPPLY("Headphone Out", ES8316_CPHP_PDN1
, 2, 1, NULL
, 0),
276 /* pdn_Lical and pdn_Rical bits are documented as Reserved, but must
277 * be explicitly unset in order to enable HP output
279 SND_SOC_DAPM_SUPPLY("Left Headphone ical", ES8316_CPHP_ICAL_VOL
,
281 SND_SOC_DAPM_SUPPLY("Right Headphone ical", ES8316_CPHP_ICAL_VOL
,
284 SND_SOC_DAPM_OUTPUT("HPOL"),
285 SND_SOC_DAPM_OUTPUT("HPOR"),
288 static const struct snd_soc_dapm_route es8316_dapm_routes
[] = {
290 {"MIC1", NULL
, "Mic Bias"},
291 {"MIC2", NULL
, "Mic Bias"},
292 {"MIC1", NULL
, "Bias"},
293 {"MIC2", NULL
, "Bias"},
294 {"MIC1", NULL
, "Analog power"},
295 {"MIC2", NULL
, "Analog power"},
297 {"Differential Mux", "lin1-rin1", "MIC1"},
298 {"Differential Mux", "lin2-rin2", "MIC2"},
299 {"Line input PGA", NULL
, "Differential Mux"},
301 {"Mono ADC", NULL
, "ADC Clock"},
302 {"Mono ADC", NULL
, "ADC Vref"},
303 {"Mono ADC", NULL
, "ADC bias"},
304 {"Mono ADC", NULL
, "Line input PGA"},
306 /* It's not clear why, but to avoid recording only silence,
307 * the DAC clock must be running for the ADC to work.
309 {"Mono ADC", NULL
, "DAC Clock"},
311 {"Digital Mic Mux", "dmic disable", "Mono ADC"},
313 {"I2S OUT", NULL
, "Digital Mic Mux"},
316 {"DAC Source Mux", "LDATA TO LDAC, RDATA TO RDAC", "I2S IN"},
318 {"Left DAC", NULL
, "DAC Clock"},
319 {"Right DAC", NULL
, "DAC Clock"},
321 {"Left DAC", NULL
, "DAC Vref"},
322 {"Right DAC", NULL
, "DAC Vref"},
324 {"Left DAC", NULL
, "DAC Source Mux"},
325 {"Right DAC", NULL
, "DAC Source Mux"},
327 {"Left Headphone Mux", "lin-rin with Boost and PGA", "Line input PGA"},
328 {"Right Headphone Mux", "lin-rin with Boost and PGA", "Line input PGA"},
330 {"Left Headphone Mixer", "LLIN Switch", "Left Headphone Mux"},
331 {"Left Headphone Mixer", "Left DAC Switch", "Left DAC"},
333 {"Right Headphone Mixer", "RLIN Switch", "Right Headphone Mux"},
334 {"Right Headphone Mixer", "Right DAC Switch", "Right DAC"},
336 {"Left Headphone Mixer Out", NULL
, "Left Headphone Mixer"},
337 {"Right Headphone Mixer Out", NULL
, "Right Headphone Mixer"},
339 {"Left Headphone Charge Pump", NULL
, "Left Headphone Mixer Out"},
340 {"Right Headphone Charge Pump", NULL
, "Right Headphone Mixer Out"},
342 {"Left Headphone Charge Pump", NULL
, "Headphone Charge Pump"},
343 {"Right Headphone Charge Pump", NULL
, "Headphone Charge Pump"},
345 {"Left Headphone Charge Pump", NULL
, "Headphone Charge Pump Clock"},
346 {"Right Headphone Charge Pump", NULL
, "Headphone Charge Pump Clock"},
348 {"Left Headphone Driver", NULL
, "Left Headphone Charge Pump"},
349 {"Right Headphone Driver", NULL
, "Right Headphone Charge Pump"},
351 {"HPOL", NULL
, "Left Headphone Driver"},
352 {"HPOR", NULL
, "Right Headphone Driver"},
354 {"HPOL", NULL
, "Left Headphone ical"},
355 {"HPOR", NULL
, "Right Headphone ical"},
357 {"Headphone Out", NULL
, "Bias"},
358 {"Headphone Out", NULL
, "Analog power"},
359 {"HPOL", NULL
, "Headphone Out"},
360 {"HPOR", NULL
, "Headphone Out"},
363 static int es8316_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
364 int clk_id
, unsigned int freq
, int dir
)
366 struct snd_soc_component
*component
= codec_dai
->component
;
367 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
371 es8316
->sysclk
= freq
;
374 es8316
->sysclk_constraints
.list
= NULL
;
375 es8316
->sysclk_constraints
.count
= 0;
380 ret
= clk_set_rate(es8316
->mclk
, freq
);
384 /* Limit supported sample rates to ones that can be autodetected
385 * by the codec running in slave mode.
387 for (i
= 0; i
< NR_SUPPORTED_MCLK_LRCK_RATIOS
; i
++) {
388 const unsigned int ratio
= supported_mclk_lrck_ratios
[i
];
390 if (freq
% ratio
== 0)
391 es8316
->allowed_rates
[count
++] = freq
/ ratio
;
394 es8316
->sysclk_constraints
.list
= es8316
->allowed_rates
;
395 es8316
->sysclk_constraints
.count
= count
;
400 static int es8316_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
403 struct snd_soc_component
*component
= codec_dai
->component
;
409 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
) {
410 dev_err(component
->dev
, "Codec driver only supports slave mode\n");
414 if ((fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) != SND_SOC_DAIFMT_I2S
) {
415 dev_err(component
->dev
, "Codec driver only supports I2S format\n");
419 /* Clock inversion */
420 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
421 case SND_SOC_DAIFMT_NB_NF
:
423 case SND_SOC_DAIFMT_IB_IF
:
424 serdata1
|= ES8316_SERDATA1_BCLK_INV
;
425 serdata2
|= ES8316_SERDATA2_ADCLRP
;
427 case SND_SOC_DAIFMT_IB_NF
:
428 serdata1
|= ES8316_SERDATA1_BCLK_INV
;
430 case SND_SOC_DAIFMT_NB_IF
:
431 serdata2
|= ES8316_SERDATA2_ADCLRP
;
437 mask
= ES8316_SERDATA1_MASTER
| ES8316_SERDATA1_BCLK_INV
;
438 snd_soc_component_update_bits(component
, ES8316_SERDATA1
, mask
, serdata1
);
440 mask
= ES8316_SERDATA2_FMT_MASK
| ES8316_SERDATA2_ADCLRP
;
441 snd_soc_component_update_bits(component
, ES8316_SERDATA_ADC
, mask
, serdata2
);
442 snd_soc_component_update_bits(component
, ES8316_SERDATA_DAC
, mask
, serdata2
);
444 /* Enable BCLK and MCLK inputs in slave mode */
445 clksw
= ES8316_CLKMGR_CLKSW_MCLK_ON
| ES8316_CLKMGR_CLKSW_BCLK_ON
;
446 snd_soc_component_update_bits(component
, ES8316_CLKMGR_CLKSW
, clksw
, clksw
);
451 static int es8316_pcm_startup(struct snd_pcm_substream
*substream
,
452 struct snd_soc_dai
*dai
)
454 struct snd_soc_component
*component
= dai
->component
;
455 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
457 if (es8316
->sysclk_constraints
.list
)
458 snd_pcm_hw_constraint_list(substream
->runtime
, 0,
459 SNDRV_PCM_HW_PARAM_RATE
,
460 &es8316
->sysclk_constraints
);
465 static int es8316_pcm_hw_params(struct snd_pcm_substream
*substream
,
466 struct snd_pcm_hw_params
*params
,
467 struct snd_soc_dai
*dai
)
469 struct snd_soc_component
*component
= dai
->component
;
470 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
474 /* Validate supported sample rates that are autodetected from MCLK */
475 for (i
= 0; i
< NR_SUPPORTED_MCLK_LRCK_RATIOS
; i
++) {
476 const unsigned int ratio
= supported_mclk_lrck_ratios
[i
];
478 if (es8316
->sysclk
% ratio
!= 0)
480 if (es8316
->sysclk
/ ratio
== params_rate(params
))
483 if (i
== NR_SUPPORTED_MCLK_LRCK_RATIOS
)
486 switch (params_format(params
)) {
487 case SNDRV_PCM_FORMAT_S16_LE
:
488 wordlen
= ES8316_SERDATA2_LEN_16
;
490 case SNDRV_PCM_FORMAT_S20_3LE
:
491 wordlen
= ES8316_SERDATA2_LEN_20
;
493 case SNDRV_PCM_FORMAT_S24_LE
:
494 wordlen
= ES8316_SERDATA2_LEN_24
;
496 case SNDRV_PCM_FORMAT_S32_LE
:
497 wordlen
= ES8316_SERDATA2_LEN_32
;
503 snd_soc_component_update_bits(component
, ES8316_SERDATA_DAC
,
504 ES8316_SERDATA2_LEN_MASK
, wordlen
);
505 snd_soc_component_update_bits(component
, ES8316_SERDATA_ADC
,
506 ES8316_SERDATA2_LEN_MASK
, wordlen
);
510 static int es8316_mute(struct snd_soc_dai
*dai
, int mute
, int direction
)
512 snd_soc_component_update_bits(dai
->component
, ES8316_DAC_SET1
, 0x20,
517 #define ES8316_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
518 SNDRV_PCM_FMTBIT_S24_LE)
520 static const struct snd_soc_dai_ops es8316_ops
= {
521 .startup
= es8316_pcm_startup
,
522 .hw_params
= es8316_pcm_hw_params
,
523 .set_fmt
= es8316_set_dai_fmt
,
524 .set_sysclk
= es8316_set_dai_sysclk
,
525 .mute_stream
= es8316_mute
,
526 .no_capture_mute
= 1,
529 static struct snd_soc_dai_driver es8316_dai
= {
530 .name
= "ES8316 HiFi",
532 .stream_name
= "Playback",
535 .rates
= SNDRV_PCM_RATE_8000_48000
,
536 .formats
= ES8316_FORMATS
,
539 .stream_name
= "Capture",
542 .rates
= SNDRV_PCM_RATE_8000_48000
,
543 .formats
= ES8316_FORMATS
,
546 .symmetric_rates
= 1,
549 static void es8316_enable_micbias_for_mic_gnd_short_detect(
550 struct snd_soc_component
*component
)
552 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(component
);
554 snd_soc_dapm_mutex_lock(dapm
);
555 snd_soc_dapm_force_enable_pin_unlocked(dapm
, "Bias");
556 snd_soc_dapm_force_enable_pin_unlocked(dapm
, "Analog power");
557 snd_soc_dapm_force_enable_pin_unlocked(dapm
, "Mic Bias");
558 snd_soc_dapm_sync_unlocked(dapm
);
559 snd_soc_dapm_mutex_unlock(dapm
);
564 static void es8316_disable_micbias_for_mic_gnd_short_detect(
565 struct snd_soc_component
*component
)
567 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(component
);
569 snd_soc_dapm_mutex_lock(dapm
);
570 snd_soc_dapm_disable_pin_unlocked(dapm
, "Mic Bias");
571 snd_soc_dapm_disable_pin_unlocked(dapm
, "Analog power");
572 snd_soc_dapm_disable_pin_unlocked(dapm
, "Bias");
573 snd_soc_dapm_sync_unlocked(dapm
);
574 snd_soc_dapm_mutex_unlock(dapm
);
577 static irqreturn_t
es8316_irq(int irq
, void *data
)
579 struct es8316_priv
*es8316
= data
;
580 struct snd_soc_component
*comp
= es8316
->component
;
583 mutex_lock(&es8316
->lock
);
585 regmap_read(es8316
->regmap
, ES8316_GPIO_FLAG
, &flags
);
587 goto out
; /* Powered-down / reset */
589 /* Catch spurious IRQ before set_jack is called */
593 if (es8316
->jd_inverted
)
594 flags
^= ES8316_GPIO_FLAG_HP_NOT_INSERTED
;
596 dev_dbg(comp
->dev
, "gpio flags %#04x\n", flags
);
597 if (flags
& ES8316_GPIO_FLAG_HP_NOT_INSERTED
) {
598 /* Jack removed, or spurious IRQ? */
599 if (es8316
->jack
->status
& SND_JACK_MICROPHONE
)
600 es8316_disable_micbias_for_mic_gnd_short_detect(comp
);
602 if (es8316
->jack
->status
& SND_JACK_HEADPHONE
) {
603 snd_soc_jack_report(es8316
->jack
, 0,
604 SND_JACK_HEADSET
| SND_JACK_BTN_0
);
605 dev_dbg(comp
->dev
, "jack unplugged\n");
607 } else if (!(es8316
->jack
->status
& SND_JACK_HEADPHONE
)) {
608 /* Jack inserted, determine type */
609 es8316_enable_micbias_for_mic_gnd_short_detect(comp
);
610 regmap_read(es8316
->regmap
, ES8316_GPIO_FLAG
, &flags
);
611 if (es8316
->jd_inverted
)
612 flags
^= ES8316_GPIO_FLAG_HP_NOT_INSERTED
;
613 dev_dbg(comp
->dev
, "gpio flags %#04x\n", flags
);
614 if (flags
& ES8316_GPIO_FLAG_HP_NOT_INSERTED
) {
615 /* Jack unplugged underneath us */
616 es8316_disable_micbias_for_mic_gnd_short_detect(comp
);
617 } else if (flags
& ES8316_GPIO_FLAG_GM_NOT_SHORTED
) {
619 snd_soc_jack_report(es8316
->jack
,
622 /* Keep mic-gnd-short detection on for button press */
624 /* Shorted, headphones */
625 snd_soc_jack_report(es8316
->jack
,
628 /* No longer need mic-gnd-short detection */
629 es8316_disable_micbias_for_mic_gnd_short_detect(comp
);
631 } else if (es8316
->jack
->status
& SND_JACK_MICROPHONE
) {
632 /* Interrupt while jack inserted, report button state */
633 if (flags
& ES8316_GPIO_FLAG_GM_NOT_SHORTED
) {
634 /* Open, button release */
635 snd_soc_jack_report(es8316
->jack
, 0, SND_JACK_BTN_0
);
637 /* Short, button press */
638 snd_soc_jack_report(es8316
->jack
,
645 mutex_unlock(&es8316
->lock
);
649 static void es8316_enable_jack_detect(struct snd_soc_component
*component
,
650 struct snd_soc_jack
*jack
)
652 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
655 * Init es8316->jd_inverted here and not in the probe, as we cannot
656 * guarantee that the bytchr-es8316 driver, which might set this
657 * property, will probe before us.
659 es8316
->jd_inverted
= device_property_read_bool(component
->dev
,
660 "everest,jack-detect-inverted");
662 mutex_lock(&es8316
->lock
);
666 if (es8316
->jack
->status
& SND_JACK_MICROPHONE
)
667 es8316_enable_micbias_for_mic_gnd_short_detect(component
);
669 snd_soc_component_update_bits(component
, ES8316_GPIO_DEBOUNCE
,
670 ES8316_GPIO_ENABLE_INTERRUPT
,
671 ES8316_GPIO_ENABLE_INTERRUPT
);
673 mutex_unlock(&es8316
->lock
);
675 /* Enable irq and sync initial jack state */
676 enable_irq(es8316
->irq
);
677 es8316_irq(es8316
->irq
, es8316
);
680 static void es8316_disable_jack_detect(struct snd_soc_component
*component
)
682 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
684 disable_irq(es8316
->irq
);
686 mutex_lock(&es8316
->lock
);
688 snd_soc_component_update_bits(component
, ES8316_GPIO_DEBOUNCE
,
689 ES8316_GPIO_ENABLE_INTERRUPT
, 0);
691 if (es8316
->jack
->status
& SND_JACK_MICROPHONE
) {
692 es8316_disable_micbias_for_mic_gnd_short_detect(component
);
693 snd_soc_jack_report(es8316
->jack
, 0, SND_JACK_BTN_0
);
698 mutex_unlock(&es8316
->lock
);
701 static int es8316_set_jack(struct snd_soc_component
*component
,
702 struct snd_soc_jack
*jack
, void *data
)
705 es8316_enable_jack_detect(component
, jack
);
707 es8316_disable_jack_detect(component
);
712 static int es8316_probe(struct snd_soc_component
*component
)
714 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
717 es8316
->component
= component
;
719 es8316
->mclk
= devm_clk_get_optional(component
->dev
, "mclk");
720 if (IS_ERR(es8316
->mclk
)) {
721 dev_err(component
->dev
, "unable to get mclk\n");
722 return PTR_ERR(es8316
->mclk
);
725 dev_warn(component
->dev
, "assuming static mclk\n");
727 ret
= clk_prepare_enable(es8316
->mclk
);
729 dev_err(component
->dev
, "unable to enable mclk\n");
733 /* Reset codec and enable current state machine */
734 snd_soc_component_write(component
, ES8316_RESET
, 0x3f);
735 usleep_range(5000, 5500);
736 snd_soc_component_write(component
, ES8316_RESET
, ES8316_RESET_CSM_ON
);
740 * Documentation is unclear, but this value from the vendor driver is
741 * needed otherwise audio output is silent.
743 snd_soc_component_write(component
, ES8316_SYS_VMIDSEL
, 0xff);
746 * Documentation for this register is unclear and incomplete,
747 * but here is a vendor-provided value that improves volume
748 * and quality for Intel CHT platforms.
750 snd_soc_component_write(component
, ES8316_CLKMGR_ADCOSR
, 0x32);
755 static void es8316_remove(struct snd_soc_component
*component
)
757 struct es8316_priv
*es8316
= snd_soc_component_get_drvdata(component
);
759 clk_disable_unprepare(es8316
->mclk
);
762 static const struct snd_soc_component_driver soc_component_dev_es8316
= {
763 .probe
= es8316_probe
,
764 .remove
= es8316_remove
,
765 .set_jack
= es8316_set_jack
,
766 .controls
= es8316_snd_controls
,
767 .num_controls
= ARRAY_SIZE(es8316_snd_controls
),
768 .dapm_widgets
= es8316_dapm_widgets
,
769 .num_dapm_widgets
= ARRAY_SIZE(es8316_dapm_widgets
),
770 .dapm_routes
= es8316_dapm_routes
,
771 .num_dapm_routes
= ARRAY_SIZE(es8316_dapm_routes
),
772 .use_pmdown_time
= 1,
774 .non_legacy_dai_naming
= 1,
777 static const struct regmap_range es8316_volatile_ranges
[] = {
778 regmap_reg_range(ES8316_GPIO_FLAG
, ES8316_GPIO_FLAG
),
781 static const struct regmap_access_table es8316_volatile_table
= {
782 .yes_ranges
= es8316_volatile_ranges
,
783 .n_yes_ranges
= ARRAY_SIZE(es8316_volatile_ranges
),
786 static const struct regmap_config es8316_regmap
= {
789 .max_register
= 0x53,
790 .volatile_table
= &es8316_volatile_table
,
791 .cache_type
= REGCACHE_RBTREE
,
794 static int es8316_i2c_probe(struct i2c_client
*i2c_client
,
795 const struct i2c_device_id
*id
)
797 struct device
*dev
= &i2c_client
->dev
;
798 struct es8316_priv
*es8316
;
801 es8316
= devm_kzalloc(&i2c_client
->dev
, sizeof(struct es8316_priv
),
806 i2c_set_clientdata(i2c_client
, es8316
);
808 es8316
->regmap
= devm_regmap_init_i2c(i2c_client
, &es8316_regmap
);
809 if (IS_ERR(es8316
->regmap
))
810 return PTR_ERR(es8316
->regmap
);
812 es8316
->irq
= i2c_client
->irq
;
813 mutex_init(&es8316
->lock
);
815 ret
= devm_request_threaded_irq(dev
, es8316
->irq
, NULL
, es8316_irq
,
816 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
819 /* Gets re-enabled by es8316_set_jack() */
820 disable_irq(es8316
->irq
);
822 dev_warn(dev
, "Failed to get IRQ %d: %d\n", es8316
->irq
, ret
);
823 es8316
->irq
= -ENXIO
;
826 return devm_snd_soc_register_component(&i2c_client
->dev
,
827 &soc_component_dev_es8316
,
831 static const struct i2c_device_id es8316_i2c_id
[] = {
835 MODULE_DEVICE_TABLE(i2c
, es8316_i2c_id
);
838 static const struct of_device_id es8316_of_match
[] = {
839 { .compatible
= "everest,es8316", },
842 MODULE_DEVICE_TABLE(of
, es8316_of_match
);
846 static const struct acpi_device_id es8316_acpi_match
[] = {
850 MODULE_DEVICE_TABLE(acpi
, es8316_acpi_match
);
853 static struct i2c_driver es8316_i2c_driver
= {
856 .acpi_match_table
= ACPI_PTR(es8316_acpi_match
),
857 .of_match_table
= of_match_ptr(es8316_of_match
),
859 .probe
= es8316_i2c_probe
,
860 .id_table
= es8316_i2c_id
,
862 module_i2c_driver(es8316_i2c_driver
);
864 MODULE_DESCRIPTION("Everest Semi ES8316 ALSA SoC Codec Driver");
865 MODULE_AUTHOR("David Yang <yangxiaohua@everest-semi.com>");
866 MODULE_LICENSE("GPL v2");