2 * linux/sound/soc/codecs/tlv320aic32x4.c
4 * Copyright 2011 Vista Silicon S.L.
6 * Author: Javier Martin <javier.martin@vista-silicon.com>
8 * Based on sound/soc/codecs/wm8974 and TI driver for kernel 2.6.27.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/init.h>
29 #include <linux/delay.h>
31 #include <linux/gpio.h>
32 #include <linux/of_gpio.h>
33 #include <linux/cdev.h>
34 #include <linux/slab.h>
35 #include <linux/clk.h>
36 #include <linux/regulator/consumer.h>
38 #include <sound/tlv320aic32x4.h>
39 #include <sound/core.h>
40 #include <sound/pcm.h>
41 #include <sound/pcm_params.h>
42 #include <sound/soc.h>
43 #include <sound/soc-dapm.h>
44 #include <sound/initval.h>
45 #include <sound/tlv.h>
47 #include "tlv320aic32x4.h"
49 struct aic32x4_rate_divs
{
65 struct regmap
*regmap
;
73 struct regulator
*supply_ldo
;
74 struct regulator
*supply_iov
;
75 struct regulator
*supply_dv
;
76 struct regulator
*supply_av
;
79 /* 0dB min, 0.5dB steps */
80 static DECLARE_TLV_DB_SCALE(tlv_step_0_5
, 0, 50, 0);
81 /* -63.5dB min, 0.5dB steps */
82 static DECLARE_TLV_DB_SCALE(tlv_pcm
, -6350, 50, 0);
83 /* -6dB min, 1dB steps */
84 static DECLARE_TLV_DB_SCALE(tlv_driver_gain
, -600, 100, 0);
85 /* -12dB min, 0.5dB steps */
86 static DECLARE_TLV_DB_SCALE(tlv_adc_vol
, -1200, 50, 0);
88 static const struct snd_kcontrol_new aic32x4_snd_controls
[] = {
89 SOC_DOUBLE_R_S_TLV("PCM Playback Volume", AIC32X4_LDACVOL
,
90 AIC32X4_RDACVOL
, 0, -0x7f, 0x30, 7, 0, tlv_pcm
),
91 SOC_DOUBLE_R_S_TLV("HP Driver Gain Volume", AIC32X4_HPLGAIN
,
92 AIC32X4_HPRGAIN
, 0, -0x6, 0x1d, 5, 0,
94 SOC_DOUBLE_R_S_TLV("LO Driver Gain Volume", AIC32X4_LOLGAIN
,
95 AIC32X4_LORGAIN
, 0, -0x6, 0x1d, 5, 0,
97 SOC_DOUBLE_R("HP DAC Playback Switch", AIC32X4_HPLGAIN
,
98 AIC32X4_HPRGAIN
, 6, 0x01, 1),
99 SOC_DOUBLE_R("LO DAC Playback Switch", AIC32X4_LOLGAIN
,
100 AIC32X4_LORGAIN
, 6, 0x01, 1),
101 SOC_DOUBLE_R("Mic PGA Switch", AIC32X4_LMICPGAVOL
,
102 AIC32X4_RMICPGAVOL
, 7, 0x01, 1),
104 SOC_SINGLE("ADCFGA Left Mute Switch", AIC32X4_ADCFGA
, 7, 1, 0),
105 SOC_SINGLE("ADCFGA Right Mute Switch", AIC32X4_ADCFGA
, 3, 1, 0),
107 SOC_DOUBLE_R_S_TLV("ADC Level Volume", AIC32X4_LADCVOL
,
108 AIC32X4_RADCVOL
, 0, -0x18, 0x28, 6, 0, tlv_adc_vol
),
109 SOC_DOUBLE_R_TLV("PGA Level Volume", AIC32X4_LMICPGAVOL
,
110 AIC32X4_RMICPGAVOL
, 0, 0x5f, 0, tlv_step_0_5
),
112 SOC_SINGLE("Auto-mute Switch", AIC32X4_DACMUTE
, 4, 7, 0),
114 SOC_SINGLE("AGC Left Switch", AIC32X4_LAGC1
, 7, 1, 0),
115 SOC_SINGLE("AGC Right Switch", AIC32X4_RAGC1
, 7, 1, 0),
116 SOC_DOUBLE_R("AGC Target Level", AIC32X4_LAGC1
, AIC32X4_RAGC1
,
118 SOC_DOUBLE_R("AGC Gain Hysteresis", AIC32X4_LAGC1
, AIC32X4_RAGC1
,
120 SOC_DOUBLE_R("AGC Hysteresis", AIC32X4_LAGC2
, AIC32X4_RAGC2
,
122 SOC_DOUBLE_R("AGC Noise Threshold", AIC32X4_LAGC2
, AIC32X4_RAGC2
,
124 SOC_DOUBLE_R("AGC Max PGA", AIC32X4_LAGC3
, AIC32X4_RAGC3
,
126 SOC_DOUBLE_R("AGC Attack Time", AIC32X4_LAGC4
, AIC32X4_RAGC4
,
128 SOC_DOUBLE_R("AGC Decay Time", AIC32X4_LAGC5
, AIC32X4_RAGC5
,
130 SOC_DOUBLE_R("AGC Noise Debounce", AIC32X4_LAGC6
, AIC32X4_RAGC6
,
132 SOC_DOUBLE_R("AGC Signal Debounce", AIC32X4_LAGC7
, AIC32X4_RAGC7
,
136 static const struct aic32x4_rate_divs aic32x4_divs
[] = {
138 {AIC32X4_FREQ_12000000
, 8000, 1, 7, 6800, 768, 5, 3, 128, 5, 18, 24},
139 {AIC32X4_FREQ_24000000
, 8000, 2, 7, 6800, 768, 15, 1, 64, 45, 4, 24},
140 {AIC32X4_FREQ_25000000
, 8000, 2, 7, 3728, 768, 15, 1, 64, 45, 4, 24},
142 {AIC32X4_FREQ_12000000
, 11025, 1, 7, 5264, 512, 8, 2, 128, 8, 8, 16},
143 {AIC32X4_FREQ_24000000
, 11025, 2, 7, 5264, 512, 16, 1, 64, 32, 4, 16},
145 {AIC32X4_FREQ_12000000
, 16000, 1, 7, 6800, 384, 5, 3, 128, 5, 9, 12},
146 {AIC32X4_FREQ_24000000
, 16000, 2, 7, 6800, 384, 15, 1, 64, 18, 5, 12},
147 {AIC32X4_FREQ_25000000
, 16000, 2, 7, 3728, 384, 15, 1, 64, 18, 5, 12},
149 {AIC32X4_FREQ_12000000
, 22050, 1, 7, 5264, 256, 4, 4, 128, 4, 8, 8},
150 {AIC32X4_FREQ_24000000
, 22050, 2, 7, 5264, 256, 16, 1, 64, 16, 4, 8},
151 {AIC32X4_FREQ_25000000
, 22050, 2, 7, 2253, 256, 16, 1, 64, 16, 4, 8},
153 {AIC32X4_FREQ_12000000
, 32000, 1, 7, 1680, 192, 2, 7, 64, 2, 21, 6},
154 {AIC32X4_FREQ_24000000
, 32000, 2, 7, 1680, 192, 7, 2, 64, 7, 6, 6},
156 {AIC32X4_FREQ_12000000
, 44100, 1, 7, 5264, 128, 2, 8, 128, 2, 8, 4},
157 {AIC32X4_FREQ_24000000
, 44100, 2, 7, 5264, 128, 8, 2, 64, 8, 4, 4},
158 {AIC32X4_FREQ_25000000
, 44100, 2, 7, 2253, 128, 8, 2, 64, 8, 4, 4},
160 {AIC32X4_FREQ_12000000
, 48000, 1, 8, 1920, 128, 2, 8, 128, 2, 8, 4},
161 {AIC32X4_FREQ_24000000
, 48000, 2, 8, 1920, 128, 8, 2, 64, 8, 4, 4},
162 {AIC32X4_FREQ_25000000
, 48000, 2, 7, 8643, 128, 8, 2, 64, 8, 4, 4},
165 {AIC32X4_FREQ_25000000
, 96000, 2, 7, 8643, 64, 4, 4, 64, 4, 4, 1},
168 static const struct snd_kcontrol_new hpl_output_mixer_controls
[] = {
169 SOC_DAPM_SINGLE("L_DAC Switch", AIC32X4_HPLROUTE
, 3, 1, 0),
170 SOC_DAPM_SINGLE("IN1_L Switch", AIC32X4_HPLROUTE
, 2, 1, 0),
173 static const struct snd_kcontrol_new hpr_output_mixer_controls
[] = {
174 SOC_DAPM_SINGLE("R_DAC Switch", AIC32X4_HPRROUTE
, 3, 1, 0),
175 SOC_DAPM_SINGLE("IN1_R Switch", AIC32X4_HPRROUTE
, 2, 1, 0),
178 static const struct snd_kcontrol_new lol_output_mixer_controls
[] = {
179 SOC_DAPM_SINGLE("L_DAC Switch", AIC32X4_LOLROUTE
, 3, 1, 0),
182 static const struct snd_kcontrol_new lor_output_mixer_controls
[] = {
183 SOC_DAPM_SINGLE("R_DAC Switch", AIC32X4_LORROUTE
, 3, 1, 0),
186 static const char * const resistor_text
[] = {
187 "Off", "10 kOhm", "20 kOhm", "40 kOhm",
190 /* Left mixer pins */
191 static SOC_ENUM_SINGLE_DECL(in1l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 6, resistor_text
);
192 static SOC_ENUM_SINGLE_DECL(in2l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 4, resistor_text
);
193 static SOC_ENUM_SINGLE_DECL(in3l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 2, resistor_text
);
194 static SOC_ENUM_SINGLE_DECL(in1r_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 0, resistor_text
);
196 static SOC_ENUM_SINGLE_DECL(cml_lpga_n_enum
, AIC32X4_LMICPGANIN
, 6, resistor_text
);
197 static SOC_ENUM_SINGLE_DECL(in2r_lpga_n_enum
, AIC32X4_LMICPGANIN
, 4, resistor_text
);
198 static SOC_ENUM_SINGLE_DECL(in3r_lpga_n_enum
, AIC32X4_LMICPGANIN
, 2, resistor_text
);
200 static const struct snd_kcontrol_new in1l_to_lmixer_controls
[] = {
201 SOC_DAPM_ENUM("IN1_L L+ Switch", in1l_lpga_p_enum
),
203 static const struct snd_kcontrol_new in2l_to_lmixer_controls
[] = {
204 SOC_DAPM_ENUM("IN2_L L+ Switch", in2l_lpga_p_enum
),
206 static const struct snd_kcontrol_new in3l_to_lmixer_controls
[] = {
207 SOC_DAPM_ENUM("IN3_L L+ Switch", in3l_lpga_p_enum
),
209 static const struct snd_kcontrol_new in1r_to_lmixer_controls
[] = {
210 SOC_DAPM_ENUM("IN1_R L+ Switch", in1r_lpga_p_enum
),
212 static const struct snd_kcontrol_new cml_to_lmixer_controls
[] = {
213 SOC_DAPM_ENUM("CM_L L- Switch", cml_lpga_n_enum
),
215 static const struct snd_kcontrol_new in2r_to_lmixer_controls
[] = {
216 SOC_DAPM_ENUM("IN2_R L- Switch", in2r_lpga_n_enum
),
218 static const struct snd_kcontrol_new in3r_to_lmixer_controls
[] = {
219 SOC_DAPM_ENUM("IN3_R L- Switch", in3r_lpga_n_enum
),
222 /* Right mixer pins */
223 static SOC_ENUM_SINGLE_DECL(in1r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 6, resistor_text
);
224 static SOC_ENUM_SINGLE_DECL(in2r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 4, resistor_text
);
225 static SOC_ENUM_SINGLE_DECL(in3r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 2, resistor_text
);
226 static SOC_ENUM_SINGLE_DECL(in2l_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 0, resistor_text
);
227 static SOC_ENUM_SINGLE_DECL(cmr_rpga_n_enum
, AIC32X4_RMICPGANIN
, 6, resistor_text
);
228 static SOC_ENUM_SINGLE_DECL(in1l_rpga_n_enum
, AIC32X4_RMICPGANIN
, 4, resistor_text
);
229 static SOC_ENUM_SINGLE_DECL(in3l_rpga_n_enum
, AIC32X4_RMICPGANIN
, 2, resistor_text
);
231 static const struct snd_kcontrol_new in1r_to_rmixer_controls
[] = {
232 SOC_DAPM_ENUM("IN1_R R+ Switch", in1r_rpga_p_enum
),
234 static const struct snd_kcontrol_new in2r_to_rmixer_controls
[] = {
235 SOC_DAPM_ENUM("IN2_R R+ Switch", in2r_rpga_p_enum
),
237 static const struct snd_kcontrol_new in3r_to_rmixer_controls
[] = {
238 SOC_DAPM_ENUM("IN3_R R+ Switch", in3r_rpga_p_enum
),
240 static const struct snd_kcontrol_new in2l_to_rmixer_controls
[] = {
241 SOC_DAPM_ENUM("IN2_L R+ Switch", in2l_rpga_p_enum
),
243 static const struct snd_kcontrol_new cmr_to_rmixer_controls
[] = {
244 SOC_DAPM_ENUM("CM_R R- Switch", cmr_rpga_n_enum
),
246 static const struct snd_kcontrol_new in1l_to_rmixer_controls
[] = {
247 SOC_DAPM_ENUM("IN1_L R- Switch", in1l_rpga_n_enum
),
249 static const struct snd_kcontrol_new in3l_to_rmixer_controls
[] = {
250 SOC_DAPM_ENUM("IN3_L R- Switch", in3l_rpga_n_enum
),
253 static const struct snd_soc_dapm_widget aic32x4_dapm_widgets
[] = {
254 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", AIC32X4_DACSETUP
, 7, 0),
255 SND_SOC_DAPM_MIXER("HPL Output Mixer", SND_SOC_NOPM
, 0, 0,
256 &hpl_output_mixer_controls
[0],
257 ARRAY_SIZE(hpl_output_mixer_controls
)),
258 SND_SOC_DAPM_PGA("HPL Power", AIC32X4_OUTPWRCTL
, 5, 0, NULL
, 0),
260 SND_SOC_DAPM_MIXER("LOL Output Mixer", SND_SOC_NOPM
, 0, 0,
261 &lol_output_mixer_controls
[0],
262 ARRAY_SIZE(lol_output_mixer_controls
)),
263 SND_SOC_DAPM_PGA("LOL Power", AIC32X4_OUTPWRCTL
, 3, 0, NULL
, 0),
265 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", AIC32X4_DACSETUP
, 6, 0),
266 SND_SOC_DAPM_MIXER("HPR Output Mixer", SND_SOC_NOPM
, 0, 0,
267 &hpr_output_mixer_controls
[0],
268 ARRAY_SIZE(hpr_output_mixer_controls
)),
269 SND_SOC_DAPM_PGA("HPR Power", AIC32X4_OUTPWRCTL
, 4, 0, NULL
, 0),
270 SND_SOC_DAPM_MIXER("LOR Output Mixer", SND_SOC_NOPM
, 0, 0,
271 &lor_output_mixer_controls
[0],
272 ARRAY_SIZE(lor_output_mixer_controls
)),
273 SND_SOC_DAPM_PGA("LOR Power", AIC32X4_OUTPWRCTL
, 2, 0, NULL
, 0),
275 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", AIC32X4_ADCSETUP
, 6, 0),
276 SND_SOC_DAPM_MUX("IN1_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
277 in1r_to_rmixer_controls
),
278 SND_SOC_DAPM_MUX("IN2_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
279 in2r_to_rmixer_controls
),
280 SND_SOC_DAPM_MUX("IN3_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
281 in3r_to_rmixer_controls
),
282 SND_SOC_DAPM_MUX("IN2_L to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
283 in2l_to_rmixer_controls
),
284 SND_SOC_DAPM_MUX("CM_R to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
285 cmr_to_rmixer_controls
),
286 SND_SOC_DAPM_MUX("IN1_L to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
287 in1l_to_rmixer_controls
),
288 SND_SOC_DAPM_MUX("IN3_L to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
289 in3l_to_rmixer_controls
),
291 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", AIC32X4_ADCSETUP
, 7, 0),
292 SND_SOC_DAPM_MUX("IN1_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
293 in1l_to_lmixer_controls
),
294 SND_SOC_DAPM_MUX("IN2_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
295 in2l_to_lmixer_controls
),
296 SND_SOC_DAPM_MUX("IN3_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
297 in3l_to_lmixer_controls
),
298 SND_SOC_DAPM_MUX("IN1_R to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
299 in1r_to_lmixer_controls
),
300 SND_SOC_DAPM_MUX("CM_L to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
301 cml_to_lmixer_controls
),
302 SND_SOC_DAPM_MUX("IN2_R to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
303 in2r_to_lmixer_controls
),
304 SND_SOC_DAPM_MUX("IN3_R to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
305 in3r_to_lmixer_controls
),
307 SND_SOC_DAPM_MICBIAS("Mic Bias", AIC32X4_MICBIAS
, 6, 0),
309 SND_SOC_DAPM_OUTPUT("HPL"),
310 SND_SOC_DAPM_OUTPUT("HPR"),
311 SND_SOC_DAPM_OUTPUT("LOL"),
312 SND_SOC_DAPM_OUTPUT("LOR"),
313 SND_SOC_DAPM_INPUT("IN1_L"),
314 SND_SOC_DAPM_INPUT("IN1_R"),
315 SND_SOC_DAPM_INPUT("IN2_L"),
316 SND_SOC_DAPM_INPUT("IN2_R"),
317 SND_SOC_DAPM_INPUT("IN3_L"),
318 SND_SOC_DAPM_INPUT("IN3_R"),
321 static const struct snd_soc_dapm_route aic32x4_dapm_routes
[] = {
323 {"HPL Output Mixer", "L_DAC Switch", "Left DAC"},
324 {"HPL Output Mixer", "IN1_L Switch", "IN1_L"},
326 {"HPL Power", NULL
, "HPL Output Mixer"},
327 {"HPL", NULL
, "HPL Power"},
329 {"LOL Output Mixer", "L_DAC Switch", "Left DAC"},
331 {"LOL Power", NULL
, "LOL Output Mixer"},
332 {"LOL", NULL
, "LOL Power"},
335 {"HPR Output Mixer", "R_DAC Switch", "Right DAC"},
336 {"HPR Output Mixer", "IN1_R Switch", "IN1_R"},
338 {"HPR Power", NULL
, "HPR Output Mixer"},
339 {"HPR", NULL
, "HPR Power"},
341 {"LOR Output Mixer", "R_DAC Switch", "Right DAC"},
343 {"LOR Power", NULL
, "LOR Output Mixer"},
344 {"LOR", NULL
, "LOR Power"},
347 {"Right ADC", NULL
, "IN1_R to Right Mixer Positive Resistor"},
348 {"IN1_R to Right Mixer Positive Resistor", "10 kOhm", "IN1_R"},
349 {"IN1_R to Right Mixer Positive Resistor", "20 kOhm", "IN1_R"},
350 {"IN1_R to Right Mixer Positive Resistor", "40 kOhm", "IN1_R"},
352 {"Right ADC", NULL
, "IN2_R to Right Mixer Positive Resistor"},
353 {"IN2_R to Right Mixer Positive Resistor", "10 kOhm", "IN2_R"},
354 {"IN2_R to Right Mixer Positive Resistor", "20 kOhm", "IN2_R"},
355 {"IN2_R to Right Mixer Positive Resistor", "40 kOhm", "IN2_R"},
357 {"Right ADC", NULL
, "IN3_R to Right Mixer Positive Resistor"},
358 {"IN3_R to Right Mixer Positive Resistor", "10 kOhm", "IN3_R"},
359 {"IN3_R to Right Mixer Positive Resistor", "20 kOhm", "IN3_R"},
360 {"IN3_R to Right Mixer Positive Resistor", "40 kOhm", "IN3_R"},
362 {"Right ADC", NULL
, "IN2_L to Right Mixer Positive Resistor"},
363 {"IN2_L to Right Mixer Positive Resistor", "10 kOhm", "IN2_L"},
364 {"IN2_L to Right Mixer Positive Resistor", "20 kOhm", "IN2_L"},
365 {"IN2_L to Right Mixer Positive Resistor", "40 kOhm", "IN2_L"},
367 {"Right ADC", NULL
, "CM_R to Right Mixer Negative Resistor"},
368 {"CM_R to Right Mixer Negative Resistor", "10 kOhm", "CM_R"},
369 {"CM_R to Right Mixer Negative Resistor", "20 kOhm", "CM_R"},
370 {"CM_R to Right Mixer Negative Resistor", "40 kOhm", "CM_R"},
372 {"Right ADC", NULL
, "IN1_L to Right Mixer Negative Resistor"},
373 {"IN1_L to Right Mixer Negative Resistor", "10 kOhm", "IN1_L"},
374 {"IN1_L to Right Mixer Negative Resistor", "20 kOhm", "IN1_L"},
375 {"IN1_L to Right Mixer Negative Resistor", "40 kOhm", "IN1_L"},
377 {"Right ADC", NULL
, "IN3_L to Right Mixer Negative Resistor"},
378 {"IN3_L to Right Mixer Negative Resistor", "10 kOhm", "IN3_L"},
379 {"IN3_L to Right Mixer Negative Resistor", "20 kOhm", "IN3_L"},
380 {"IN3_L to Right Mixer Negative Resistor", "40 kOhm", "IN3_L"},
383 {"Left ADC", NULL
, "IN1_L to Left Mixer Positive Resistor"},
384 {"IN1_L to Left Mixer Positive Resistor", "10 kOhm", "IN1_L"},
385 {"IN1_L to Left Mixer Positive Resistor", "20 kOhm", "IN1_L"},
386 {"IN1_L to Left Mixer Positive Resistor", "40 kOhm", "IN1_L"},
388 {"Left ADC", NULL
, "IN2_L to Left Mixer Positive Resistor"},
389 {"IN2_L to Left Mixer Positive Resistor", "10 kOhm", "IN2_L"},
390 {"IN2_L to Left Mixer Positive Resistor", "20 kOhm", "IN2_L"},
391 {"IN2_L to Left Mixer Positive Resistor", "40 kOhm", "IN2_L"},
393 {"Left ADC", NULL
, "IN3_L to Left Mixer Positive Resistor"},
394 {"IN3_L to Left Mixer Positive Resistor", "10 kOhm", "IN3_L"},
395 {"IN3_L to Left Mixer Positive Resistor", "20 kOhm", "IN3_L"},
396 {"IN3_L to Left Mixer Positive Resistor", "40 kOhm", "IN3_L"},
398 {"Left ADC", NULL
, "IN1_R to Left Mixer Positive Resistor"},
399 {"IN1_R to Left Mixer Positive Resistor", "10 kOhm", "IN1_R"},
400 {"IN1_R to Left Mixer Positive Resistor", "20 kOhm", "IN1_R"},
401 {"IN1_R to Left Mixer Positive Resistor", "40 kOhm", "IN1_R"},
403 {"Left ADC", NULL
, "CM_L to Left Mixer Negative Resistor"},
404 {"CM_L to Left Mixer Negative Resistor", "10 kOhm", "CM_L"},
405 {"CM_L to Left Mixer Negative Resistor", "20 kOhm", "CM_L"},
406 {"CM_L to Left Mixer Negative Resistor", "40 kOhm", "CM_L"},
408 {"Left ADC", NULL
, "IN2_R to Left Mixer Negative Resistor"},
409 {"IN2_R to Left Mixer Negative Resistor", "10 kOhm", "IN2_R"},
410 {"IN2_R to Left Mixer Negative Resistor", "20 kOhm", "IN2_R"},
411 {"IN2_R to Left Mixer Negative Resistor", "40 kOhm", "IN2_R"},
413 {"Left ADC", NULL
, "IN3_R to Left Mixer Negative Resistor"},
414 {"IN3_R to Left Mixer Negative Resistor", "10 kOhm", "IN3_R"},
415 {"IN3_R to Left Mixer Negative Resistor", "20 kOhm", "IN3_R"},
416 {"IN3_R to Left Mixer Negative Resistor", "40 kOhm", "IN3_R"},
419 static const struct regmap_range_cfg aic32x4_regmap_pages
[] = {
422 .selector_mask
= 0xff,
426 .range_max
= AIC32X4_RMICPGAVOL
,
430 const struct regmap_config aic32x4_regmap_config
= {
431 .max_register
= AIC32X4_RMICPGAVOL
,
432 .ranges
= aic32x4_regmap_pages
,
433 .num_ranges
= ARRAY_SIZE(aic32x4_regmap_pages
),
435 EXPORT_SYMBOL(aic32x4_regmap_config
);
437 static inline int aic32x4_get_divs(int mclk
, int rate
)
441 for (i
= 0; i
< ARRAY_SIZE(aic32x4_divs
); i
++) {
442 if ((aic32x4_divs
[i
].rate
== rate
)
443 && (aic32x4_divs
[i
].mclk
== mclk
)) {
447 printk(KERN_ERR
"aic32x4: master clock and sample rate is not supported\n");
451 static int aic32x4_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
452 int clk_id
, unsigned int freq
, int dir
)
454 struct snd_soc_codec
*codec
= codec_dai
->codec
;
455 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
458 case AIC32X4_FREQ_12000000
:
459 case AIC32X4_FREQ_24000000
:
460 case AIC32X4_FREQ_25000000
:
461 aic32x4
->sysclk
= freq
;
464 printk(KERN_ERR
"aic32x4: invalid frequency to set DAI system clock\n");
468 static int aic32x4_set_dai_fmt(struct snd_soc_dai
*codec_dai
, unsigned int fmt
)
470 struct snd_soc_codec
*codec
= codec_dai
->codec
;
475 iface_reg_1
= snd_soc_read(codec
, AIC32X4_IFACE1
);
476 iface_reg_1
= iface_reg_1
& ~(3 << 6 | 3 << 2);
477 iface_reg_2
= snd_soc_read(codec
, AIC32X4_IFACE2
);
479 iface_reg_3
= snd_soc_read(codec
, AIC32X4_IFACE3
);
480 iface_reg_3
= iface_reg_3
& ~(1 << 3);
482 /* set master/slave audio interface */
483 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
484 case SND_SOC_DAIFMT_CBM_CFM
:
485 iface_reg_1
|= AIC32X4_BCLKMASTER
| AIC32X4_WCLKMASTER
;
487 case SND_SOC_DAIFMT_CBS_CFS
:
490 printk(KERN_ERR
"aic32x4: invalid DAI master/slave interface\n");
494 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
495 case SND_SOC_DAIFMT_I2S
:
497 case SND_SOC_DAIFMT_DSP_A
:
498 iface_reg_1
|= (AIC32X4_DSP_MODE
<< AIC32X4_PLLJ_SHIFT
);
499 iface_reg_3
|= (1 << 3); /* invert bit clock */
500 iface_reg_2
= 0x01; /* add offset 1 */
502 case SND_SOC_DAIFMT_DSP_B
:
503 iface_reg_1
|= (AIC32X4_DSP_MODE
<< AIC32X4_PLLJ_SHIFT
);
504 iface_reg_3
|= (1 << 3); /* invert bit clock */
506 case SND_SOC_DAIFMT_RIGHT_J
:
508 (AIC32X4_RIGHT_JUSTIFIED_MODE
<< AIC32X4_PLLJ_SHIFT
);
510 case SND_SOC_DAIFMT_LEFT_J
:
512 (AIC32X4_LEFT_JUSTIFIED_MODE
<< AIC32X4_PLLJ_SHIFT
);
515 printk(KERN_ERR
"aic32x4: invalid DAI interface format\n");
519 snd_soc_write(codec
, AIC32X4_IFACE1
, iface_reg_1
);
520 snd_soc_write(codec
, AIC32X4_IFACE2
, iface_reg_2
);
521 snd_soc_write(codec
, AIC32X4_IFACE3
, iface_reg_3
);
525 static int aic32x4_hw_params(struct snd_pcm_substream
*substream
,
526 struct snd_pcm_hw_params
*params
,
527 struct snd_soc_dai
*dai
)
529 struct snd_soc_codec
*codec
= dai
->codec
;
530 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
534 i
= aic32x4_get_divs(aic32x4
->sysclk
, params_rate(params
));
536 printk(KERN_ERR
"aic32x4: sampling rate not supported\n");
540 /* Use PLL as CODEC_CLKIN and DAC_MOD_CLK as BDIV_CLKIN */
541 snd_soc_write(codec
, AIC32X4_CLKMUX
, AIC32X4_PLLCLKIN
);
542 snd_soc_write(codec
, AIC32X4_IFACE3
, AIC32X4_DACMOD2BCLK
);
544 /* We will fix R value to 1 and will make P & J=K.D as varialble */
545 data
= snd_soc_read(codec
, AIC32X4_PLLPR
);
547 snd_soc_write(codec
, AIC32X4_PLLPR
,
548 (data
| (aic32x4_divs
[i
].p_val
<< 4) | 0x01));
550 snd_soc_write(codec
, AIC32X4_PLLJ
, aic32x4_divs
[i
].pll_j
);
552 snd_soc_write(codec
, AIC32X4_PLLDMSB
, (aic32x4_divs
[i
].pll_d
>> 8));
553 snd_soc_write(codec
, AIC32X4_PLLDLSB
,
554 (aic32x4_divs
[i
].pll_d
& 0xff));
556 /* NDAC divider value */
557 data
= snd_soc_read(codec
, AIC32X4_NDAC
);
559 snd_soc_write(codec
, AIC32X4_NDAC
, data
| aic32x4_divs
[i
].ndac
);
561 /* MDAC divider value */
562 data
= snd_soc_read(codec
, AIC32X4_MDAC
);
564 snd_soc_write(codec
, AIC32X4_MDAC
, data
| aic32x4_divs
[i
].mdac
);
566 /* DOSR MSB & LSB values */
567 snd_soc_write(codec
, AIC32X4_DOSRMSB
, aic32x4_divs
[i
].dosr
>> 8);
568 snd_soc_write(codec
, AIC32X4_DOSRLSB
,
569 (aic32x4_divs
[i
].dosr
& 0xff));
571 /* NADC divider value */
572 data
= snd_soc_read(codec
, AIC32X4_NADC
);
574 snd_soc_write(codec
, AIC32X4_NADC
, data
| aic32x4_divs
[i
].nadc
);
576 /* MADC divider value */
577 data
= snd_soc_read(codec
, AIC32X4_MADC
);
579 snd_soc_write(codec
, AIC32X4_MADC
, data
| aic32x4_divs
[i
].madc
);
582 snd_soc_write(codec
, AIC32X4_AOSR
, aic32x4_divs
[i
].aosr
);
585 data
= snd_soc_read(codec
, AIC32X4_BCLKN
);
587 snd_soc_write(codec
, AIC32X4_BCLKN
, data
| aic32x4_divs
[i
].blck_N
);
589 data
= snd_soc_read(codec
, AIC32X4_IFACE1
);
590 data
= data
& ~(3 << 4);
591 switch (params_width(params
)) {
595 data
|= (AIC32X4_WORD_LEN_20BITS
<< AIC32X4_DOSRMSB_SHIFT
);
598 data
|= (AIC32X4_WORD_LEN_24BITS
<< AIC32X4_DOSRMSB_SHIFT
);
601 data
|= (AIC32X4_WORD_LEN_32BITS
<< AIC32X4_DOSRMSB_SHIFT
);
604 snd_soc_write(codec
, AIC32X4_IFACE1
, data
);
606 if (params_channels(params
) == 1) {
607 data
= AIC32X4_RDAC2LCHN
| AIC32X4_LDAC2LCHN
;
609 if (aic32x4
->swapdacs
)
610 data
= AIC32X4_RDAC2LCHN
| AIC32X4_LDAC2RCHN
;
612 data
= AIC32X4_LDAC2LCHN
| AIC32X4_RDAC2RCHN
;
614 snd_soc_update_bits(codec
, AIC32X4_DACSETUP
, AIC32X4_DAC_CHAN_MASK
,
620 static int aic32x4_mute(struct snd_soc_dai
*dai
, int mute
)
622 struct snd_soc_codec
*codec
= dai
->codec
;
625 dac_reg
= snd_soc_read(codec
, AIC32X4_DACMUTE
) & ~AIC32X4_MUTEON
;
627 snd_soc_write(codec
, AIC32X4_DACMUTE
, dac_reg
| AIC32X4_MUTEON
);
629 snd_soc_write(codec
, AIC32X4_DACMUTE
, dac_reg
);
633 static int aic32x4_set_bias_level(struct snd_soc_codec
*codec
,
634 enum snd_soc_bias_level level
)
636 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
640 case SND_SOC_BIAS_ON
:
641 /* Switch on master clock */
642 ret
= clk_prepare_enable(aic32x4
->mclk
);
644 dev_err(codec
->dev
, "Failed to enable master clock\n");
649 snd_soc_update_bits(codec
, AIC32X4_PLLPR
,
650 AIC32X4_PLLEN
, AIC32X4_PLLEN
);
652 /* Switch on NDAC Divider */
653 snd_soc_update_bits(codec
, AIC32X4_NDAC
,
654 AIC32X4_NDACEN
, AIC32X4_NDACEN
);
656 /* Switch on MDAC Divider */
657 snd_soc_update_bits(codec
, AIC32X4_MDAC
,
658 AIC32X4_MDACEN
, AIC32X4_MDACEN
);
660 /* Switch on NADC Divider */
661 snd_soc_update_bits(codec
, AIC32X4_NADC
,
662 AIC32X4_NADCEN
, AIC32X4_NADCEN
);
664 /* Switch on MADC Divider */
665 snd_soc_update_bits(codec
, AIC32X4_MADC
,
666 AIC32X4_MADCEN
, AIC32X4_MADCEN
);
668 /* Switch on BCLK_N Divider */
669 snd_soc_update_bits(codec
, AIC32X4_BCLKN
,
670 AIC32X4_BCLKEN
, AIC32X4_BCLKEN
);
672 case SND_SOC_BIAS_PREPARE
:
674 case SND_SOC_BIAS_STANDBY
:
675 /* Switch off BCLK_N Divider */
676 snd_soc_update_bits(codec
, AIC32X4_BCLKN
,
679 /* Switch off MADC Divider */
680 snd_soc_update_bits(codec
, AIC32X4_MADC
,
683 /* Switch off NADC Divider */
684 snd_soc_update_bits(codec
, AIC32X4_NADC
,
687 /* Switch off MDAC Divider */
688 snd_soc_update_bits(codec
, AIC32X4_MDAC
,
691 /* Switch off NDAC Divider */
692 snd_soc_update_bits(codec
, AIC32X4_NDAC
,
696 snd_soc_update_bits(codec
, AIC32X4_PLLPR
,
699 /* Switch off master clock */
700 clk_disable_unprepare(aic32x4
->mclk
);
702 case SND_SOC_BIAS_OFF
:
708 #define AIC32X4_RATES SNDRV_PCM_RATE_8000_96000
709 #define AIC32X4_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE \
710 | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
712 static const struct snd_soc_dai_ops aic32x4_ops
= {
713 .hw_params
= aic32x4_hw_params
,
714 .digital_mute
= aic32x4_mute
,
715 .set_fmt
= aic32x4_set_dai_fmt
,
716 .set_sysclk
= aic32x4_set_dai_sysclk
,
719 static struct snd_soc_dai_driver aic32x4_dai
= {
720 .name
= "tlv320aic32x4-hifi",
722 .stream_name
= "Playback",
725 .rates
= AIC32X4_RATES
,
726 .formats
= AIC32X4_FORMATS
,},
728 .stream_name
= "Capture",
731 .rates
= AIC32X4_RATES
,
732 .formats
= AIC32X4_FORMATS
,},
734 .symmetric_rates
= 1,
737 static int aic32x4_codec_probe(struct snd_soc_codec
*codec
)
739 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
742 if (gpio_is_valid(aic32x4
->rstn_gpio
)) {
744 gpio_set_value(aic32x4
->rstn_gpio
, 1);
747 snd_soc_write(codec
, AIC32X4_RESET
, 0x01);
749 /* Power platform configuration */
750 if (aic32x4
->power_cfg
& AIC32X4_PWR_MICBIAS_2075_LDOIN
) {
751 snd_soc_write(codec
, AIC32X4_MICBIAS
, AIC32X4_MICBIAS_LDOIN
|
752 AIC32X4_MICBIAS_2075V
);
754 if (aic32x4
->power_cfg
& AIC32X4_PWR_AVDD_DVDD_WEAK_DISABLE
)
755 snd_soc_write(codec
, AIC32X4_PWRCFG
, AIC32X4_AVDDWEAKDISABLE
);
757 tmp_reg
= (aic32x4
->power_cfg
& AIC32X4_PWR_AIC32X4_LDO_ENABLE
) ?
758 AIC32X4_LDOCTLEN
: 0;
759 snd_soc_write(codec
, AIC32X4_LDOCTL
, tmp_reg
);
761 tmp_reg
= snd_soc_read(codec
, AIC32X4_CMMODE
);
762 if (aic32x4
->power_cfg
& AIC32X4_PWR_CMMODE_LDOIN_RANGE_18_36
)
763 tmp_reg
|= AIC32X4_LDOIN_18_36
;
764 if (aic32x4
->power_cfg
& AIC32X4_PWR_CMMODE_HP_LDOIN_POWERED
)
765 tmp_reg
|= AIC32X4_LDOIN2HP
;
766 snd_soc_write(codec
, AIC32X4_CMMODE
, tmp_reg
);
768 /* Mic PGA routing */
769 if (aic32x4
->micpga_routing
& AIC32X4_MICPGA_ROUTE_LMIC_IN2R_10K
)
770 snd_soc_write(codec
, AIC32X4_LMICPGANIN
,
771 AIC32X4_LMICPGANIN_IN2R_10K
);
773 snd_soc_write(codec
, AIC32X4_LMICPGANIN
,
774 AIC32X4_LMICPGANIN_CM1L_10K
);
775 if (aic32x4
->micpga_routing
& AIC32X4_MICPGA_ROUTE_RMIC_IN1L_10K
)
776 snd_soc_write(codec
, AIC32X4_RMICPGANIN
,
777 AIC32X4_RMICPGANIN_IN1L_10K
);
779 snd_soc_write(codec
, AIC32X4_RMICPGANIN
,
780 AIC32X4_RMICPGANIN_CM1R_10K
);
783 * Workaround: for an unknown reason, the ADC needs to be powered up
784 * and down for the first capture to work properly. It seems related to
785 * a HW BUG or some kind of behavior not documented in the datasheet.
787 tmp_reg
= snd_soc_read(codec
, AIC32X4_ADCSETUP
);
788 snd_soc_write(codec
, AIC32X4_ADCSETUP
, tmp_reg
|
789 AIC32X4_LADC_EN
| AIC32X4_RADC_EN
);
790 snd_soc_write(codec
, AIC32X4_ADCSETUP
, tmp_reg
);
795 static struct snd_soc_codec_driver soc_codec_dev_aic32x4
= {
796 .probe
= aic32x4_codec_probe
,
797 .set_bias_level
= aic32x4_set_bias_level
,
798 .suspend_bias_off
= true,
800 .component_driver
= {
801 .controls
= aic32x4_snd_controls
,
802 .num_controls
= ARRAY_SIZE(aic32x4_snd_controls
),
803 .dapm_widgets
= aic32x4_dapm_widgets
,
804 .num_dapm_widgets
= ARRAY_SIZE(aic32x4_dapm_widgets
),
805 .dapm_routes
= aic32x4_dapm_routes
,
806 .num_dapm_routes
= ARRAY_SIZE(aic32x4_dapm_routes
),
810 static int aic32x4_parse_dt(struct aic32x4_priv
*aic32x4
,
811 struct device_node
*np
)
813 aic32x4
->swapdacs
= false;
814 aic32x4
->micpga_routing
= 0;
815 aic32x4
->rstn_gpio
= of_get_named_gpio(np
, "reset-gpios", 0);
820 static void aic32x4_disable_regulators(struct aic32x4_priv
*aic32x4
)
822 regulator_disable(aic32x4
->supply_iov
);
824 if (!IS_ERR(aic32x4
->supply_ldo
))
825 regulator_disable(aic32x4
->supply_ldo
);
827 if (!IS_ERR(aic32x4
->supply_dv
))
828 regulator_disable(aic32x4
->supply_dv
);
830 if (!IS_ERR(aic32x4
->supply_av
))
831 regulator_disable(aic32x4
->supply_av
);
834 static int aic32x4_setup_regulators(struct device
*dev
,
835 struct aic32x4_priv
*aic32x4
)
839 aic32x4
->supply_ldo
= devm_regulator_get_optional(dev
, "ldoin");
840 aic32x4
->supply_iov
= devm_regulator_get(dev
, "iov");
841 aic32x4
->supply_dv
= devm_regulator_get_optional(dev
, "dv");
842 aic32x4
->supply_av
= devm_regulator_get_optional(dev
, "av");
844 /* Check if the regulator requirements are fulfilled */
846 if (IS_ERR(aic32x4
->supply_iov
)) {
847 dev_err(dev
, "Missing supply 'iov'\n");
848 return PTR_ERR(aic32x4
->supply_iov
);
851 if (IS_ERR(aic32x4
->supply_ldo
)) {
852 if (PTR_ERR(aic32x4
->supply_ldo
) == -EPROBE_DEFER
)
853 return -EPROBE_DEFER
;
855 if (IS_ERR(aic32x4
->supply_dv
)) {
856 dev_err(dev
, "Missing supply 'dv' or 'ldoin'\n");
857 return PTR_ERR(aic32x4
->supply_dv
);
859 if (IS_ERR(aic32x4
->supply_av
)) {
860 dev_err(dev
, "Missing supply 'av' or 'ldoin'\n");
861 return PTR_ERR(aic32x4
->supply_av
);
864 if (IS_ERR(aic32x4
->supply_dv
) &&
865 PTR_ERR(aic32x4
->supply_dv
) == -EPROBE_DEFER
)
866 return -EPROBE_DEFER
;
867 if (IS_ERR(aic32x4
->supply_av
) &&
868 PTR_ERR(aic32x4
->supply_av
) == -EPROBE_DEFER
)
869 return -EPROBE_DEFER
;
872 ret
= regulator_enable(aic32x4
->supply_iov
);
874 dev_err(dev
, "Failed to enable regulator iov\n");
878 if (!IS_ERR(aic32x4
->supply_ldo
)) {
879 ret
= regulator_enable(aic32x4
->supply_ldo
);
881 dev_err(dev
, "Failed to enable regulator ldo\n");
886 if (!IS_ERR(aic32x4
->supply_dv
)) {
887 ret
= regulator_enable(aic32x4
->supply_dv
);
889 dev_err(dev
, "Failed to enable regulator dv\n");
894 if (!IS_ERR(aic32x4
->supply_av
)) {
895 ret
= regulator_enable(aic32x4
->supply_av
);
897 dev_err(dev
, "Failed to enable regulator av\n");
902 if (!IS_ERR(aic32x4
->supply_ldo
) && IS_ERR(aic32x4
->supply_av
))
903 aic32x4
->power_cfg
|= AIC32X4_PWR_AIC32X4_LDO_ENABLE
;
908 if (!IS_ERR(aic32x4
->supply_dv
))
909 regulator_disable(aic32x4
->supply_dv
);
912 if (!IS_ERR(aic32x4
->supply_ldo
))
913 regulator_disable(aic32x4
->supply_ldo
);
916 regulator_disable(aic32x4
->supply_iov
);
920 int aic32x4_probe(struct device
*dev
, struct regmap
*regmap
)
922 struct aic32x4_priv
*aic32x4
;
923 struct aic32x4_pdata
*pdata
= dev
->platform_data
;
924 struct device_node
*np
= dev
->of_node
;
928 return PTR_ERR(regmap
);
930 aic32x4
= devm_kzalloc(dev
, sizeof(struct aic32x4_priv
),
935 dev_set_drvdata(dev
, aic32x4
);
938 aic32x4
->power_cfg
= pdata
->power_cfg
;
939 aic32x4
->swapdacs
= pdata
->swapdacs
;
940 aic32x4
->micpga_routing
= pdata
->micpga_routing
;
941 aic32x4
->rstn_gpio
= pdata
->rstn_gpio
;
943 ret
= aic32x4_parse_dt(aic32x4
, np
);
945 dev_err(dev
, "Failed to parse DT node\n");
949 aic32x4
->power_cfg
= 0;
950 aic32x4
->swapdacs
= false;
951 aic32x4
->micpga_routing
= 0;
952 aic32x4
->rstn_gpio
= -1;
955 aic32x4
->mclk
= devm_clk_get(dev
, "mclk");
956 if (IS_ERR(aic32x4
->mclk
)) {
957 dev_err(dev
, "Failed getting the mclk. The current implementation does not support the usage of this codec without mclk\n");
958 return PTR_ERR(aic32x4
->mclk
);
961 if (gpio_is_valid(aic32x4
->rstn_gpio
)) {
962 ret
= devm_gpio_request_one(dev
, aic32x4
->rstn_gpio
,
963 GPIOF_OUT_INIT_LOW
, "tlv320aic32x4 rstn");
968 ret
= aic32x4_setup_regulators(dev
, aic32x4
);
970 dev_err(dev
, "Failed to setup regulators\n");
974 ret
= snd_soc_register_codec(dev
,
975 &soc_codec_dev_aic32x4
, &aic32x4_dai
, 1);
977 dev_err(dev
, "Failed to register codec\n");
978 aic32x4_disable_regulators(aic32x4
);
984 EXPORT_SYMBOL(aic32x4_probe
);
986 int aic32x4_remove(struct device
*dev
)
988 struct aic32x4_priv
*aic32x4
= dev_get_drvdata(dev
);
990 aic32x4_disable_regulators(aic32x4
);
992 snd_soc_unregister_codec(dev
);
996 EXPORT_SYMBOL(aic32x4_remove
);
998 MODULE_DESCRIPTION("ASoC tlv320aic32x4 codec driver");
999 MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
1000 MODULE_LICENSE("GPL");