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
;
78 struct aic32x4_setup_data
*setup
;
82 static int aic32x4_get_mfp1_gpio(struct snd_kcontrol
*kcontrol
,
83 struct snd_ctl_elem_value
*ucontrol
)
85 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
88 val
= snd_soc_read(codec
, AIC32X4_DINCTL
);
90 ucontrol
->value
.integer
.value
[0] = (val
& 0x01);
95 static int aic32x4_set_mfp2_gpio(struct snd_kcontrol
*kcontrol
,
96 struct snd_ctl_elem_value
*ucontrol
)
98 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
102 val
= snd_soc_read(codec
, AIC32X4_DOUTCTL
);
103 gpio_check
= (val
& AIC32X4_MFP_GPIO_ENABLED
);
104 if (gpio_check
!= AIC32X4_MFP_GPIO_ENABLED
) {
105 printk(KERN_ERR
"%s: MFP2 is not configure as a GPIO output\n",
110 if (ucontrol
->value
.integer
.value
[0] == (val
& AIC32X4_MFP2_GPIO_OUT_HIGH
))
113 if (ucontrol
->value
.integer
.value
[0])
114 val
|= ucontrol
->value
.integer
.value
[0];
116 val
&= ~AIC32X4_MFP2_GPIO_OUT_HIGH
;
118 snd_soc_write(codec
, AIC32X4_DOUTCTL
, val
);
123 static int aic32x4_get_mfp3_gpio(struct snd_kcontrol
*kcontrol
,
124 struct snd_ctl_elem_value
*ucontrol
)
126 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
129 val
= snd_soc_read(codec
, AIC32X4_SCLKCTL
);
131 ucontrol
->value
.integer
.value
[0] = (val
& 0x01);
136 static int aic32x4_set_mfp4_gpio(struct snd_kcontrol
*kcontrol
,
137 struct snd_ctl_elem_value
*ucontrol
)
139 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
143 val
= snd_soc_read(codec
, AIC32X4_MISOCTL
);
144 gpio_check
= (val
& AIC32X4_MFP_GPIO_ENABLED
);
145 if (gpio_check
!= AIC32X4_MFP_GPIO_ENABLED
) {
146 printk(KERN_ERR
"%s: MFP4 is not configure as a GPIO output\n",
151 if (ucontrol
->value
.integer
.value
[0] == (val
& AIC32X4_MFP5_GPIO_OUT_HIGH
))
154 if (ucontrol
->value
.integer
.value
[0])
155 val
|= ucontrol
->value
.integer
.value
[0];
157 val
&= ~AIC32X4_MFP5_GPIO_OUT_HIGH
;
159 snd_soc_write(codec
, AIC32X4_MISOCTL
, val
);
164 static int aic32x4_get_mfp5_gpio(struct snd_kcontrol
*kcontrol
,
165 struct snd_ctl_elem_value
*ucontrol
)
167 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
170 val
= snd_soc_read(codec
, AIC32X4_GPIOCTL
);
171 ucontrol
->value
.integer
.value
[0] = ((val
& 0x2) >> 1);
176 static int aic32x4_set_mfp5_gpio(struct snd_kcontrol
*kcontrol
,
177 struct snd_ctl_elem_value
*ucontrol
)
179 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
183 val
= snd_soc_read(codec
, AIC32X4_GPIOCTL
);
184 gpio_check
= (val
& AIC32X4_MFP5_GPIO_OUTPUT
);
185 if (gpio_check
!= AIC32X4_MFP5_GPIO_OUTPUT
) {
186 printk(KERN_ERR
"%s: MFP5 is not configure as a GPIO output\n",
191 if (ucontrol
->value
.integer
.value
[0] == (val
& 0x1))
194 if (ucontrol
->value
.integer
.value
[0])
195 val
|= ucontrol
->value
.integer
.value
[0];
199 snd_soc_write(codec
, AIC32X4_GPIOCTL
, val
);
204 static const struct snd_kcontrol_new aic32x4_mfp1
[] = {
205 SOC_SINGLE_BOOL_EXT("MFP1 GPIO", 0, aic32x4_get_mfp1_gpio
, NULL
),
208 static const struct snd_kcontrol_new aic32x4_mfp2
[] = {
209 SOC_SINGLE_BOOL_EXT("MFP2 GPIO", 0, NULL
, aic32x4_set_mfp2_gpio
),
212 static const struct snd_kcontrol_new aic32x4_mfp3
[] = {
213 SOC_SINGLE_BOOL_EXT("MFP3 GPIO", 0, aic32x4_get_mfp3_gpio
, NULL
),
216 static const struct snd_kcontrol_new aic32x4_mfp4
[] = {
217 SOC_SINGLE_BOOL_EXT("MFP4 GPIO", 0, NULL
, aic32x4_set_mfp4_gpio
),
220 static const struct snd_kcontrol_new aic32x4_mfp5
[] = {
221 SOC_SINGLE_BOOL_EXT("MFP5 GPIO", 0, aic32x4_get_mfp5_gpio
,
222 aic32x4_set_mfp5_gpio
),
225 /* 0dB min, 0.5dB steps */
226 static DECLARE_TLV_DB_SCALE(tlv_step_0_5
, 0, 50, 0);
227 /* -63.5dB min, 0.5dB steps */
228 static DECLARE_TLV_DB_SCALE(tlv_pcm
, -6350, 50, 0);
229 /* -6dB min, 1dB steps */
230 static DECLARE_TLV_DB_SCALE(tlv_driver_gain
, -600, 100, 0);
231 /* -12dB min, 0.5dB steps */
232 static DECLARE_TLV_DB_SCALE(tlv_adc_vol
, -1200, 50, 0);
234 static const struct snd_kcontrol_new aic32x4_snd_controls
[] = {
235 SOC_DOUBLE_R_S_TLV("PCM Playback Volume", AIC32X4_LDACVOL
,
236 AIC32X4_RDACVOL
, 0, -0x7f, 0x30, 7, 0, tlv_pcm
),
237 SOC_DOUBLE_R_S_TLV("HP Driver Gain Volume", AIC32X4_HPLGAIN
,
238 AIC32X4_HPRGAIN
, 0, -0x6, 0x1d, 5, 0,
240 SOC_DOUBLE_R_S_TLV("LO Driver Gain Volume", AIC32X4_LOLGAIN
,
241 AIC32X4_LORGAIN
, 0, -0x6, 0x1d, 5, 0,
243 SOC_DOUBLE_R("HP DAC Playback Switch", AIC32X4_HPLGAIN
,
244 AIC32X4_HPRGAIN
, 6, 0x01, 1),
245 SOC_DOUBLE_R("LO DAC Playback Switch", AIC32X4_LOLGAIN
,
246 AIC32X4_LORGAIN
, 6, 0x01, 1),
247 SOC_DOUBLE_R("Mic PGA Switch", AIC32X4_LMICPGAVOL
,
248 AIC32X4_RMICPGAVOL
, 7, 0x01, 1),
250 SOC_SINGLE("ADCFGA Left Mute Switch", AIC32X4_ADCFGA
, 7, 1, 0),
251 SOC_SINGLE("ADCFGA Right Mute Switch", AIC32X4_ADCFGA
, 3, 1, 0),
253 SOC_DOUBLE_R_S_TLV("ADC Level Volume", AIC32X4_LADCVOL
,
254 AIC32X4_RADCVOL
, 0, -0x18, 0x28, 6, 0, tlv_adc_vol
),
255 SOC_DOUBLE_R_TLV("PGA Level Volume", AIC32X4_LMICPGAVOL
,
256 AIC32X4_RMICPGAVOL
, 0, 0x5f, 0, tlv_step_0_5
),
258 SOC_SINGLE("Auto-mute Switch", AIC32X4_DACMUTE
, 4, 7, 0),
260 SOC_SINGLE("AGC Left Switch", AIC32X4_LAGC1
, 7, 1, 0),
261 SOC_SINGLE("AGC Right Switch", AIC32X4_RAGC1
, 7, 1, 0),
262 SOC_DOUBLE_R("AGC Target Level", AIC32X4_LAGC1
, AIC32X4_RAGC1
,
264 SOC_DOUBLE_R("AGC Gain Hysteresis", AIC32X4_LAGC1
, AIC32X4_RAGC1
,
266 SOC_DOUBLE_R("AGC Hysteresis", AIC32X4_LAGC2
, AIC32X4_RAGC2
,
268 SOC_DOUBLE_R("AGC Noise Threshold", AIC32X4_LAGC2
, AIC32X4_RAGC2
,
270 SOC_DOUBLE_R("AGC Max PGA", AIC32X4_LAGC3
, AIC32X4_RAGC3
,
272 SOC_DOUBLE_R("AGC Attack Time", AIC32X4_LAGC4
, AIC32X4_RAGC4
,
274 SOC_DOUBLE_R("AGC Decay Time", AIC32X4_LAGC5
, AIC32X4_RAGC5
,
276 SOC_DOUBLE_R("AGC Noise Debounce", AIC32X4_LAGC6
, AIC32X4_RAGC6
,
278 SOC_DOUBLE_R("AGC Signal Debounce", AIC32X4_LAGC7
, AIC32X4_RAGC7
,
282 static const struct aic32x4_rate_divs aic32x4_divs
[] = {
284 {12000000, 8000, 1, 7, 6800, 768, 5, 3, 128, 5, 18, 24},
285 {24000000, 8000, 2, 7, 6800, 768, 15, 1, 64, 45, 4, 24},
286 {25000000, 8000, 2, 7, 3728, 768, 15, 1, 64, 45, 4, 24},
288 {12000000, 11025, 1, 7, 5264, 512, 8, 2, 128, 8, 8, 16},
289 {24000000, 11025, 2, 7, 5264, 512, 16, 1, 64, 32, 4, 16},
291 {12000000, 16000, 1, 7, 6800, 384, 5, 3, 128, 5, 9, 12},
292 {24000000, 16000, 2, 7, 6800, 384, 15, 1, 64, 18, 5, 12},
293 {25000000, 16000, 2, 7, 3728, 384, 15, 1, 64, 18, 5, 12},
295 {12000000, 22050, 1, 7, 5264, 256, 4, 4, 128, 4, 8, 8},
296 {24000000, 22050, 2, 7, 5264, 256, 16, 1, 64, 16, 4, 8},
297 {25000000, 22050, 2, 7, 2253, 256, 16, 1, 64, 16, 4, 8},
299 {12000000, 32000, 1, 7, 1680, 192, 2, 7, 64, 2, 21, 6},
300 {24000000, 32000, 2, 7, 1680, 192, 7, 2, 64, 7, 6, 6},
302 {12000000, 44100, 1, 7, 5264, 128, 2, 8, 128, 2, 8, 4},
303 {24000000, 44100, 2, 7, 5264, 128, 8, 2, 64, 8, 4, 4},
304 {25000000, 44100, 2, 7, 2253, 128, 8, 2, 64, 8, 4, 4},
306 {12000000, 48000, 1, 8, 1920, 128, 2, 8, 128, 2, 8, 4},
307 {24000000, 48000, 2, 8, 1920, 128, 8, 2, 64, 8, 4, 4},
308 {25000000, 48000, 2, 7, 8643, 128, 8, 2, 64, 8, 4, 4},
311 {25000000, 96000, 2, 7, 8643, 64, 4, 4, 64, 4, 4, 1},
314 static const struct snd_kcontrol_new hpl_output_mixer_controls
[] = {
315 SOC_DAPM_SINGLE("L_DAC Switch", AIC32X4_HPLROUTE
, 3, 1, 0),
316 SOC_DAPM_SINGLE("IN1_L Switch", AIC32X4_HPLROUTE
, 2, 1, 0),
319 static const struct snd_kcontrol_new hpr_output_mixer_controls
[] = {
320 SOC_DAPM_SINGLE("R_DAC Switch", AIC32X4_HPRROUTE
, 3, 1, 0),
321 SOC_DAPM_SINGLE("IN1_R Switch", AIC32X4_HPRROUTE
, 2, 1, 0),
324 static const struct snd_kcontrol_new lol_output_mixer_controls
[] = {
325 SOC_DAPM_SINGLE("L_DAC Switch", AIC32X4_LOLROUTE
, 3, 1, 0),
328 static const struct snd_kcontrol_new lor_output_mixer_controls
[] = {
329 SOC_DAPM_SINGLE("R_DAC Switch", AIC32X4_LORROUTE
, 3, 1, 0),
332 static const char * const resistor_text
[] = {
333 "Off", "10 kOhm", "20 kOhm", "40 kOhm",
336 /* Left mixer pins */
337 static SOC_ENUM_SINGLE_DECL(in1l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 6, resistor_text
);
338 static SOC_ENUM_SINGLE_DECL(in2l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 4, resistor_text
);
339 static SOC_ENUM_SINGLE_DECL(in3l_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 2, resistor_text
);
340 static SOC_ENUM_SINGLE_DECL(in1r_lpga_p_enum
, AIC32X4_LMICPGAPIN
, 0, resistor_text
);
342 static SOC_ENUM_SINGLE_DECL(cml_lpga_n_enum
, AIC32X4_LMICPGANIN
, 6, resistor_text
);
343 static SOC_ENUM_SINGLE_DECL(in2r_lpga_n_enum
, AIC32X4_LMICPGANIN
, 4, resistor_text
);
344 static SOC_ENUM_SINGLE_DECL(in3r_lpga_n_enum
, AIC32X4_LMICPGANIN
, 2, resistor_text
);
346 static const struct snd_kcontrol_new in1l_to_lmixer_controls
[] = {
347 SOC_DAPM_ENUM("IN1_L L+ Switch", in1l_lpga_p_enum
),
349 static const struct snd_kcontrol_new in2l_to_lmixer_controls
[] = {
350 SOC_DAPM_ENUM("IN2_L L+ Switch", in2l_lpga_p_enum
),
352 static const struct snd_kcontrol_new in3l_to_lmixer_controls
[] = {
353 SOC_DAPM_ENUM("IN3_L L+ Switch", in3l_lpga_p_enum
),
355 static const struct snd_kcontrol_new in1r_to_lmixer_controls
[] = {
356 SOC_DAPM_ENUM("IN1_R L+ Switch", in1r_lpga_p_enum
),
358 static const struct snd_kcontrol_new cml_to_lmixer_controls
[] = {
359 SOC_DAPM_ENUM("CM_L L- Switch", cml_lpga_n_enum
),
361 static const struct snd_kcontrol_new in2r_to_lmixer_controls
[] = {
362 SOC_DAPM_ENUM("IN2_R L- Switch", in2r_lpga_n_enum
),
364 static const struct snd_kcontrol_new in3r_to_lmixer_controls
[] = {
365 SOC_DAPM_ENUM("IN3_R L- Switch", in3r_lpga_n_enum
),
368 /* Right mixer pins */
369 static SOC_ENUM_SINGLE_DECL(in1r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 6, resistor_text
);
370 static SOC_ENUM_SINGLE_DECL(in2r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 4, resistor_text
);
371 static SOC_ENUM_SINGLE_DECL(in3r_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 2, resistor_text
);
372 static SOC_ENUM_SINGLE_DECL(in2l_rpga_p_enum
, AIC32X4_RMICPGAPIN
, 0, resistor_text
);
373 static SOC_ENUM_SINGLE_DECL(cmr_rpga_n_enum
, AIC32X4_RMICPGANIN
, 6, resistor_text
);
374 static SOC_ENUM_SINGLE_DECL(in1l_rpga_n_enum
, AIC32X4_RMICPGANIN
, 4, resistor_text
);
375 static SOC_ENUM_SINGLE_DECL(in3l_rpga_n_enum
, AIC32X4_RMICPGANIN
, 2, resistor_text
);
377 static const struct snd_kcontrol_new in1r_to_rmixer_controls
[] = {
378 SOC_DAPM_ENUM("IN1_R R+ Switch", in1r_rpga_p_enum
),
380 static const struct snd_kcontrol_new in2r_to_rmixer_controls
[] = {
381 SOC_DAPM_ENUM("IN2_R R+ Switch", in2r_rpga_p_enum
),
383 static const struct snd_kcontrol_new in3r_to_rmixer_controls
[] = {
384 SOC_DAPM_ENUM("IN3_R R+ Switch", in3r_rpga_p_enum
),
386 static const struct snd_kcontrol_new in2l_to_rmixer_controls
[] = {
387 SOC_DAPM_ENUM("IN2_L R+ Switch", in2l_rpga_p_enum
),
389 static const struct snd_kcontrol_new cmr_to_rmixer_controls
[] = {
390 SOC_DAPM_ENUM("CM_R R- Switch", cmr_rpga_n_enum
),
392 static const struct snd_kcontrol_new in1l_to_rmixer_controls
[] = {
393 SOC_DAPM_ENUM("IN1_L R- Switch", in1l_rpga_n_enum
),
395 static const struct snd_kcontrol_new in3l_to_rmixer_controls
[] = {
396 SOC_DAPM_ENUM("IN3_L R- Switch", in3l_rpga_n_enum
),
399 static const struct snd_soc_dapm_widget aic32x4_dapm_widgets
[] = {
400 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", AIC32X4_DACSETUP
, 7, 0),
401 SND_SOC_DAPM_MIXER("HPL Output Mixer", SND_SOC_NOPM
, 0, 0,
402 &hpl_output_mixer_controls
[0],
403 ARRAY_SIZE(hpl_output_mixer_controls
)),
404 SND_SOC_DAPM_PGA("HPL Power", AIC32X4_OUTPWRCTL
, 5, 0, NULL
, 0),
406 SND_SOC_DAPM_MIXER("LOL Output Mixer", SND_SOC_NOPM
, 0, 0,
407 &lol_output_mixer_controls
[0],
408 ARRAY_SIZE(lol_output_mixer_controls
)),
409 SND_SOC_DAPM_PGA("LOL Power", AIC32X4_OUTPWRCTL
, 3, 0, NULL
, 0),
411 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", AIC32X4_DACSETUP
, 6, 0),
412 SND_SOC_DAPM_MIXER("HPR Output Mixer", SND_SOC_NOPM
, 0, 0,
413 &hpr_output_mixer_controls
[0],
414 ARRAY_SIZE(hpr_output_mixer_controls
)),
415 SND_SOC_DAPM_PGA("HPR Power", AIC32X4_OUTPWRCTL
, 4, 0, NULL
, 0),
416 SND_SOC_DAPM_MIXER("LOR Output Mixer", SND_SOC_NOPM
, 0, 0,
417 &lor_output_mixer_controls
[0],
418 ARRAY_SIZE(lor_output_mixer_controls
)),
419 SND_SOC_DAPM_PGA("LOR Power", AIC32X4_OUTPWRCTL
, 2, 0, NULL
, 0),
421 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", AIC32X4_ADCSETUP
, 6, 0),
422 SND_SOC_DAPM_MUX("IN1_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
423 in1r_to_rmixer_controls
),
424 SND_SOC_DAPM_MUX("IN2_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
425 in2r_to_rmixer_controls
),
426 SND_SOC_DAPM_MUX("IN3_R to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
427 in3r_to_rmixer_controls
),
428 SND_SOC_DAPM_MUX("IN2_L to Right Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
429 in2l_to_rmixer_controls
),
430 SND_SOC_DAPM_MUX("CM_R to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
431 cmr_to_rmixer_controls
),
432 SND_SOC_DAPM_MUX("IN1_L to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
433 in1l_to_rmixer_controls
),
434 SND_SOC_DAPM_MUX("IN3_L to Right Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
435 in3l_to_rmixer_controls
),
437 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", AIC32X4_ADCSETUP
, 7, 0),
438 SND_SOC_DAPM_MUX("IN1_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
439 in1l_to_lmixer_controls
),
440 SND_SOC_DAPM_MUX("IN2_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
441 in2l_to_lmixer_controls
),
442 SND_SOC_DAPM_MUX("IN3_L to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
443 in3l_to_lmixer_controls
),
444 SND_SOC_DAPM_MUX("IN1_R to Left Mixer Positive Resistor", SND_SOC_NOPM
, 0, 0,
445 in1r_to_lmixer_controls
),
446 SND_SOC_DAPM_MUX("CM_L to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
447 cml_to_lmixer_controls
),
448 SND_SOC_DAPM_MUX("IN2_R to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
449 in2r_to_lmixer_controls
),
450 SND_SOC_DAPM_MUX("IN3_R to Left Mixer Negative Resistor", SND_SOC_NOPM
, 0, 0,
451 in3r_to_lmixer_controls
),
453 SND_SOC_DAPM_MICBIAS("Mic Bias", AIC32X4_MICBIAS
, 6, 0),
455 SND_SOC_DAPM_OUTPUT("HPL"),
456 SND_SOC_DAPM_OUTPUT("HPR"),
457 SND_SOC_DAPM_OUTPUT("LOL"),
458 SND_SOC_DAPM_OUTPUT("LOR"),
459 SND_SOC_DAPM_INPUT("IN1_L"),
460 SND_SOC_DAPM_INPUT("IN1_R"),
461 SND_SOC_DAPM_INPUT("IN2_L"),
462 SND_SOC_DAPM_INPUT("IN2_R"),
463 SND_SOC_DAPM_INPUT("IN3_L"),
464 SND_SOC_DAPM_INPUT("IN3_R"),
467 static const struct snd_soc_dapm_route aic32x4_dapm_routes
[] = {
469 {"HPL Output Mixer", "L_DAC Switch", "Left DAC"},
470 {"HPL Output Mixer", "IN1_L Switch", "IN1_L"},
472 {"HPL Power", NULL
, "HPL Output Mixer"},
473 {"HPL", NULL
, "HPL Power"},
475 {"LOL Output Mixer", "L_DAC Switch", "Left DAC"},
477 {"LOL Power", NULL
, "LOL Output Mixer"},
478 {"LOL", NULL
, "LOL Power"},
481 {"HPR Output Mixer", "R_DAC Switch", "Right DAC"},
482 {"HPR Output Mixer", "IN1_R Switch", "IN1_R"},
484 {"HPR Power", NULL
, "HPR Output Mixer"},
485 {"HPR", NULL
, "HPR Power"},
487 {"LOR Output Mixer", "R_DAC Switch", "Right DAC"},
489 {"LOR Power", NULL
, "LOR Output Mixer"},
490 {"LOR", NULL
, "LOR Power"},
493 {"Right ADC", NULL
, "IN1_R to Right Mixer Positive Resistor"},
494 {"IN1_R to Right Mixer Positive Resistor", "10 kOhm", "IN1_R"},
495 {"IN1_R to Right Mixer Positive Resistor", "20 kOhm", "IN1_R"},
496 {"IN1_R to Right Mixer Positive Resistor", "40 kOhm", "IN1_R"},
498 {"Right ADC", NULL
, "IN2_R to Right Mixer Positive Resistor"},
499 {"IN2_R to Right Mixer Positive Resistor", "10 kOhm", "IN2_R"},
500 {"IN2_R to Right Mixer Positive Resistor", "20 kOhm", "IN2_R"},
501 {"IN2_R to Right Mixer Positive Resistor", "40 kOhm", "IN2_R"},
503 {"Right ADC", NULL
, "IN3_R to Right Mixer Positive Resistor"},
504 {"IN3_R to Right Mixer Positive Resistor", "10 kOhm", "IN3_R"},
505 {"IN3_R to Right Mixer Positive Resistor", "20 kOhm", "IN3_R"},
506 {"IN3_R to Right Mixer Positive Resistor", "40 kOhm", "IN3_R"},
508 {"Right ADC", NULL
, "IN2_L to Right Mixer Positive Resistor"},
509 {"IN2_L to Right Mixer Positive Resistor", "10 kOhm", "IN2_L"},
510 {"IN2_L to Right Mixer Positive Resistor", "20 kOhm", "IN2_L"},
511 {"IN2_L to Right Mixer Positive Resistor", "40 kOhm", "IN2_L"},
513 {"Right ADC", NULL
, "CM_R to Right Mixer Negative Resistor"},
514 {"CM_R to Right Mixer Negative Resistor", "10 kOhm", "CM_R"},
515 {"CM_R to Right Mixer Negative Resistor", "20 kOhm", "CM_R"},
516 {"CM_R to Right Mixer Negative Resistor", "40 kOhm", "CM_R"},
518 {"Right ADC", NULL
, "IN1_L to Right Mixer Negative Resistor"},
519 {"IN1_L to Right Mixer Negative Resistor", "10 kOhm", "IN1_L"},
520 {"IN1_L to Right Mixer Negative Resistor", "20 kOhm", "IN1_L"},
521 {"IN1_L to Right Mixer Negative Resistor", "40 kOhm", "IN1_L"},
523 {"Right ADC", NULL
, "IN3_L to Right Mixer Negative Resistor"},
524 {"IN3_L to Right Mixer Negative Resistor", "10 kOhm", "IN3_L"},
525 {"IN3_L to Right Mixer Negative Resistor", "20 kOhm", "IN3_L"},
526 {"IN3_L to Right Mixer Negative Resistor", "40 kOhm", "IN3_L"},
529 {"Left ADC", NULL
, "IN1_L to Left Mixer Positive Resistor"},
530 {"IN1_L to Left Mixer Positive Resistor", "10 kOhm", "IN1_L"},
531 {"IN1_L to Left Mixer Positive Resistor", "20 kOhm", "IN1_L"},
532 {"IN1_L to Left Mixer Positive Resistor", "40 kOhm", "IN1_L"},
534 {"Left ADC", NULL
, "IN2_L to Left Mixer Positive Resistor"},
535 {"IN2_L to Left Mixer Positive Resistor", "10 kOhm", "IN2_L"},
536 {"IN2_L to Left Mixer Positive Resistor", "20 kOhm", "IN2_L"},
537 {"IN2_L to Left Mixer Positive Resistor", "40 kOhm", "IN2_L"},
539 {"Left ADC", NULL
, "IN3_L to Left Mixer Positive Resistor"},
540 {"IN3_L to Left Mixer Positive Resistor", "10 kOhm", "IN3_L"},
541 {"IN3_L to Left Mixer Positive Resistor", "20 kOhm", "IN3_L"},
542 {"IN3_L to Left Mixer Positive Resistor", "40 kOhm", "IN3_L"},
544 {"Left ADC", NULL
, "IN1_R to Left Mixer Positive Resistor"},
545 {"IN1_R to Left Mixer Positive Resistor", "10 kOhm", "IN1_R"},
546 {"IN1_R to Left Mixer Positive Resistor", "20 kOhm", "IN1_R"},
547 {"IN1_R to Left Mixer Positive Resistor", "40 kOhm", "IN1_R"},
549 {"Left ADC", NULL
, "CM_L to Left Mixer Negative Resistor"},
550 {"CM_L to Left Mixer Negative Resistor", "10 kOhm", "CM_L"},
551 {"CM_L to Left Mixer Negative Resistor", "20 kOhm", "CM_L"},
552 {"CM_L to Left Mixer Negative Resistor", "40 kOhm", "CM_L"},
554 {"Left ADC", NULL
, "IN2_R to Left Mixer Negative Resistor"},
555 {"IN2_R to Left Mixer Negative Resistor", "10 kOhm", "IN2_R"},
556 {"IN2_R to Left Mixer Negative Resistor", "20 kOhm", "IN2_R"},
557 {"IN2_R to Left Mixer Negative Resistor", "40 kOhm", "IN2_R"},
559 {"Left ADC", NULL
, "IN3_R to Left Mixer Negative Resistor"},
560 {"IN3_R to Left Mixer Negative Resistor", "10 kOhm", "IN3_R"},
561 {"IN3_R to Left Mixer Negative Resistor", "20 kOhm", "IN3_R"},
562 {"IN3_R to Left Mixer Negative Resistor", "40 kOhm", "IN3_R"},
565 static const struct regmap_range_cfg aic32x4_regmap_pages
[] = {
568 .selector_mask
= 0xff,
572 .range_max
= AIC32X4_RMICPGAVOL
,
576 const struct regmap_config aic32x4_regmap_config
= {
577 .max_register
= AIC32X4_RMICPGAVOL
,
578 .ranges
= aic32x4_regmap_pages
,
579 .num_ranges
= ARRAY_SIZE(aic32x4_regmap_pages
),
581 EXPORT_SYMBOL(aic32x4_regmap_config
);
583 static inline int aic32x4_get_divs(int mclk
, int rate
)
587 for (i
= 0; i
< ARRAY_SIZE(aic32x4_divs
); i
++) {
588 if ((aic32x4_divs
[i
].rate
== rate
)
589 && (aic32x4_divs
[i
].mclk
== mclk
)) {
593 printk(KERN_ERR
"aic32x4: master clock and sample rate is not supported\n");
597 static int aic32x4_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
598 int clk_id
, unsigned int freq
, int dir
)
600 struct snd_soc_codec
*codec
= codec_dai
->codec
;
601 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
607 aic32x4
->sysclk
= freq
;
610 printk(KERN_ERR
"aic32x4: invalid frequency to set DAI system clock\n");
614 static int aic32x4_set_dai_fmt(struct snd_soc_dai
*codec_dai
, unsigned int fmt
)
616 struct snd_soc_codec
*codec
= codec_dai
->codec
;
621 /* set master/slave audio interface */
622 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
623 case SND_SOC_DAIFMT_CBM_CFM
:
624 iface_reg_1
|= AIC32X4_BCLKMASTER
| AIC32X4_WCLKMASTER
;
626 case SND_SOC_DAIFMT_CBS_CFS
:
629 printk(KERN_ERR
"aic32x4: invalid DAI master/slave interface\n");
633 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
634 case SND_SOC_DAIFMT_I2S
:
636 case SND_SOC_DAIFMT_DSP_A
:
637 iface_reg_1
|= (AIC32X4_DSP_MODE
<<
638 AIC32X4_IFACE1_DATATYPE_SHIFT
);
639 iface_reg_3
|= AIC32X4_BCLKINV_MASK
; /* invert bit clock */
640 iface_reg_2
= 0x01; /* add offset 1 */
642 case SND_SOC_DAIFMT_DSP_B
:
643 iface_reg_1
|= (AIC32X4_DSP_MODE
<<
644 AIC32X4_IFACE1_DATATYPE_SHIFT
);
645 iface_reg_3
|= AIC32X4_BCLKINV_MASK
; /* invert bit clock */
647 case SND_SOC_DAIFMT_RIGHT_J
:
648 iface_reg_1
|= (AIC32X4_RIGHT_JUSTIFIED_MODE
<<
649 AIC32X4_IFACE1_DATATYPE_SHIFT
);
651 case SND_SOC_DAIFMT_LEFT_J
:
652 iface_reg_1
|= (AIC32X4_LEFT_JUSTIFIED_MODE
<<
653 AIC32X4_IFACE1_DATATYPE_SHIFT
);
656 printk(KERN_ERR
"aic32x4: invalid DAI interface format\n");
660 snd_soc_update_bits(codec
, AIC32X4_IFACE1
,
661 AIC32X4_IFACE1_DATATYPE_MASK
|
662 AIC32X4_IFACE1_MASTER_MASK
, iface_reg_1
);
663 snd_soc_update_bits(codec
, AIC32X4_IFACE2
,
664 AIC32X4_DATA_OFFSET_MASK
, iface_reg_2
);
665 snd_soc_update_bits(codec
, AIC32X4_IFACE3
,
666 AIC32X4_BCLKINV_MASK
, iface_reg_3
);
671 static int aic32x4_hw_params(struct snd_pcm_substream
*substream
,
672 struct snd_pcm_hw_params
*params
,
673 struct snd_soc_dai
*dai
)
675 struct snd_soc_codec
*codec
= dai
->codec
;
676 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
681 i
= aic32x4_get_divs(aic32x4
->sysclk
, params_rate(params
));
683 printk(KERN_ERR
"aic32x4: sampling rate not supported\n");
687 /* MCLK as PLL_CLKIN */
688 snd_soc_update_bits(codec
, AIC32X4_CLKMUX
, AIC32X4_PLL_CLKIN_MASK
,
689 AIC32X4_PLL_CLKIN_MCLK
<< AIC32X4_PLL_CLKIN_SHIFT
);
690 /* PLL as CODEC_CLKIN */
691 snd_soc_update_bits(codec
, AIC32X4_CLKMUX
, AIC32X4_CODEC_CLKIN_MASK
,
692 AIC32X4_CODEC_CLKIN_PLL
<< AIC32X4_CODEC_CLKIN_SHIFT
);
693 /* DAC_MOD_CLK as BDIV_CLKIN */
694 snd_soc_update_bits(codec
, AIC32X4_IFACE3
, AIC32X4_BDIVCLK_MASK
,
695 AIC32X4_DACMOD2BCLK
<< AIC32X4_BDIVCLK_SHIFT
);
697 /* We will fix R value to 1 and will make P & J=K.D as variable */
698 snd_soc_update_bits(codec
, AIC32X4_PLLPR
, AIC32X4_PLL_R_MASK
, 0x01);
701 snd_soc_update_bits(codec
, AIC32X4_PLLPR
, AIC32X4_PLL_P_MASK
,
702 aic32x4_divs
[i
].p_val
<< AIC32X4_PLL_P_SHIFT
);
705 snd_soc_write(codec
, AIC32X4_PLLJ
, aic32x4_divs
[i
].pll_j
);
708 snd_soc_write(codec
, AIC32X4_PLLDMSB
, (aic32x4_divs
[i
].pll_d
>> 8));
709 snd_soc_write(codec
, AIC32X4_PLLDLSB
, (aic32x4_divs
[i
].pll_d
& 0xff));
711 /* NDAC divider value */
712 snd_soc_update_bits(codec
, AIC32X4_NDAC
,
713 AIC32X4_NDAC_MASK
, aic32x4_divs
[i
].ndac
);
715 /* MDAC divider value */
716 snd_soc_update_bits(codec
, AIC32X4_MDAC
,
717 AIC32X4_MDAC_MASK
, aic32x4_divs
[i
].mdac
);
719 /* DOSR MSB & LSB values */
720 snd_soc_write(codec
, AIC32X4_DOSRMSB
, aic32x4_divs
[i
].dosr
>> 8);
721 snd_soc_write(codec
, AIC32X4_DOSRLSB
, (aic32x4_divs
[i
].dosr
& 0xff));
723 /* NADC divider value */
724 snd_soc_update_bits(codec
, AIC32X4_NADC
,
725 AIC32X4_NADC_MASK
, aic32x4_divs
[i
].nadc
);
727 /* MADC divider value */
728 snd_soc_update_bits(codec
, AIC32X4_MADC
,
729 AIC32X4_MADC_MASK
, aic32x4_divs
[i
].madc
);
732 snd_soc_write(codec
, AIC32X4_AOSR
, aic32x4_divs
[i
].aosr
);
735 snd_soc_update_bits(codec
, AIC32X4_BCLKN
,
736 AIC32X4_BCLK_MASK
, aic32x4_divs
[i
].blck_N
);
738 switch (params_width(params
)) {
740 iface1_reg
|= (AIC32X4_WORD_LEN_16BITS
<<
741 AIC32X4_IFACE1_DATALEN_SHIFT
);
744 iface1_reg
|= (AIC32X4_WORD_LEN_20BITS
<<
745 AIC32X4_IFACE1_DATALEN_SHIFT
);
748 iface1_reg
|= (AIC32X4_WORD_LEN_24BITS
<<
749 AIC32X4_IFACE1_DATALEN_SHIFT
);
752 iface1_reg
|= (AIC32X4_WORD_LEN_32BITS
<<
753 AIC32X4_IFACE1_DATALEN_SHIFT
);
756 snd_soc_update_bits(codec
, AIC32X4_IFACE1
,
757 AIC32X4_IFACE1_DATALEN_MASK
, iface1_reg
);
759 if (params_channels(params
) == 1) {
760 dacsetup_reg
= AIC32X4_RDAC2LCHN
| AIC32X4_LDAC2LCHN
;
762 if (aic32x4
->swapdacs
)
763 dacsetup_reg
= AIC32X4_RDAC2LCHN
| AIC32X4_LDAC2RCHN
;
765 dacsetup_reg
= AIC32X4_LDAC2LCHN
| AIC32X4_RDAC2RCHN
;
767 snd_soc_update_bits(codec
, AIC32X4_DACSETUP
,
768 AIC32X4_DAC_CHAN_MASK
, dacsetup_reg
);
773 static int aic32x4_mute(struct snd_soc_dai
*dai
, int mute
)
775 struct snd_soc_codec
*codec
= dai
->codec
;
777 snd_soc_update_bits(codec
, AIC32X4_DACMUTE
,
778 AIC32X4_MUTEON
, mute
? AIC32X4_MUTEON
: 0);
783 static int aic32x4_set_bias_level(struct snd_soc_codec
*codec
,
784 enum snd_soc_bias_level level
)
786 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
790 case SND_SOC_BIAS_ON
:
791 /* Switch on master clock */
792 ret
= clk_prepare_enable(aic32x4
->mclk
);
794 dev_err(codec
->dev
, "Failed to enable master clock\n");
799 snd_soc_update_bits(codec
, AIC32X4_PLLPR
,
800 AIC32X4_PLLEN
, AIC32X4_PLLEN
);
802 /* Switch on NDAC Divider */
803 snd_soc_update_bits(codec
, AIC32X4_NDAC
,
804 AIC32X4_NDACEN
, AIC32X4_NDACEN
);
806 /* Switch on MDAC Divider */
807 snd_soc_update_bits(codec
, AIC32X4_MDAC
,
808 AIC32X4_MDACEN
, AIC32X4_MDACEN
);
810 /* Switch on NADC Divider */
811 snd_soc_update_bits(codec
, AIC32X4_NADC
,
812 AIC32X4_NADCEN
, AIC32X4_NADCEN
);
814 /* Switch on MADC Divider */
815 snd_soc_update_bits(codec
, AIC32X4_MADC
,
816 AIC32X4_MADCEN
, AIC32X4_MADCEN
);
818 /* Switch on BCLK_N Divider */
819 snd_soc_update_bits(codec
, AIC32X4_BCLKN
,
820 AIC32X4_BCLKEN
, AIC32X4_BCLKEN
);
822 case SND_SOC_BIAS_PREPARE
:
824 case SND_SOC_BIAS_STANDBY
:
825 /* Switch off BCLK_N Divider */
826 snd_soc_update_bits(codec
, AIC32X4_BCLKN
,
829 /* Switch off MADC Divider */
830 snd_soc_update_bits(codec
, AIC32X4_MADC
,
833 /* Switch off NADC Divider */
834 snd_soc_update_bits(codec
, AIC32X4_NADC
,
837 /* Switch off MDAC Divider */
838 snd_soc_update_bits(codec
, AIC32X4_MDAC
,
841 /* Switch off NDAC Divider */
842 snd_soc_update_bits(codec
, AIC32X4_NDAC
,
846 snd_soc_update_bits(codec
, AIC32X4_PLLPR
,
849 /* Switch off master clock */
850 clk_disable_unprepare(aic32x4
->mclk
);
852 case SND_SOC_BIAS_OFF
:
858 #define AIC32X4_RATES SNDRV_PCM_RATE_8000_96000
859 #define AIC32X4_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE \
860 | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
862 static const struct snd_soc_dai_ops aic32x4_ops
= {
863 .hw_params
= aic32x4_hw_params
,
864 .digital_mute
= aic32x4_mute
,
865 .set_fmt
= aic32x4_set_dai_fmt
,
866 .set_sysclk
= aic32x4_set_dai_sysclk
,
869 static struct snd_soc_dai_driver aic32x4_dai
= {
870 .name
= "tlv320aic32x4-hifi",
872 .stream_name
= "Playback",
875 .rates
= AIC32X4_RATES
,
876 .formats
= AIC32X4_FORMATS
,},
878 .stream_name
= "Capture",
881 .rates
= AIC32X4_RATES
,
882 .formats
= AIC32X4_FORMATS
,},
884 .symmetric_rates
= 1,
887 static void aic32x4_setup_gpios(struct snd_soc_codec
*codec
)
889 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
891 /* setup GPIO functions */
893 if (aic32x4
->setup
->gpio_func
[0] != AIC32X4_MFPX_DEFAULT_VALUE
) {
894 snd_soc_write(codec
, AIC32X4_DINCTL
,
895 aic32x4
->setup
->gpio_func
[0]);
896 snd_soc_add_codec_controls(codec
, aic32x4_mfp1
,
897 ARRAY_SIZE(aic32x4_mfp1
));
901 if (aic32x4
->setup
->gpio_func
[1] != AIC32X4_MFPX_DEFAULT_VALUE
) {
902 snd_soc_write(codec
, AIC32X4_DOUTCTL
,
903 aic32x4
->setup
->gpio_func
[1]);
904 snd_soc_add_codec_controls(codec
, aic32x4_mfp2
,
905 ARRAY_SIZE(aic32x4_mfp2
));
909 if (aic32x4
->setup
->gpio_func
[2] != AIC32X4_MFPX_DEFAULT_VALUE
) {
910 snd_soc_write(codec
, AIC32X4_SCLKCTL
,
911 aic32x4
->setup
->gpio_func
[2]);
912 snd_soc_add_codec_controls(codec
, aic32x4_mfp3
,
913 ARRAY_SIZE(aic32x4_mfp3
));
917 if (aic32x4
->setup
->gpio_func
[3] != AIC32X4_MFPX_DEFAULT_VALUE
) {
918 snd_soc_write(codec
, AIC32X4_MISOCTL
,
919 aic32x4
->setup
->gpio_func
[3]);
920 snd_soc_add_codec_controls(codec
, aic32x4_mfp4
,
921 ARRAY_SIZE(aic32x4_mfp4
));
925 if (aic32x4
->setup
->gpio_func
[4] != AIC32X4_MFPX_DEFAULT_VALUE
) {
926 snd_soc_write(codec
, AIC32X4_GPIOCTL
,
927 aic32x4
->setup
->gpio_func
[4]);
928 snd_soc_add_codec_controls(codec
, aic32x4_mfp5
,
929 ARRAY_SIZE(aic32x4_mfp5
));
933 static int aic32x4_codec_probe(struct snd_soc_codec
*codec
)
935 struct aic32x4_priv
*aic32x4
= snd_soc_codec_get_drvdata(codec
);
938 if (gpio_is_valid(aic32x4
->rstn_gpio
)) {
940 gpio_set_value(aic32x4
->rstn_gpio
, 1);
943 snd_soc_write(codec
, AIC32X4_RESET
, 0x01);
946 aic32x4_setup_gpios(codec
);
948 /* Power platform configuration */
949 if (aic32x4
->power_cfg
& AIC32X4_PWR_MICBIAS_2075_LDOIN
) {
950 snd_soc_write(codec
, AIC32X4_MICBIAS
, AIC32X4_MICBIAS_LDOIN
|
951 AIC32X4_MICBIAS_2075V
);
953 if (aic32x4
->power_cfg
& AIC32X4_PWR_AVDD_DVDD_WEAK_DISABLE
)
954 snd_soc_write(codec
, AIC32X4_PWRCFG
, AIC32X4_AVDDWEAKDISABLE
);
956 tmp_reg
= (aic32x4
->power_cfg
& AIC32X4_PWR_AIC32X4_LDO_ENABLE
) ?
957 AIC32X4_LDOCTLEN
: 0;
958 snd_soc_write(codec
, AIC32X4_LDOCTL
, tmp_reg
);
960 tmp_reg
= snd_soc_read(codec
, AIC32X4_CMMODE
);
961 if (aic32x4
->power_cfg
& AIC32X4_PWR_CMMODE_LDOIN_RANGE_18_36
)
962 tmp_reg
|= AIC32X4_LDOIN_18_36
;
963 if (aic32x4
->power_cfg
& AIC32X4_PWR_CMMODE_HP_LDOIN_POWERED
)
964 tmp_reg
|= AIC32X4_LDOIN2HP
;
965 snd_soc_write(codec
, AIC32X4_CMMODE
, tmp_reg
);
967 /* Mic PGA routing */
968 if (aic32x4
->micpga_routing
& AIC32X4_MICPGA_ROUTE_LMIC_IN2R_10K
)
969 snd_soc_write(codec
, AIC32X4_LMICPGANIN
,
970 AIC32X4_LMICPGANIN_IN2R_10K
);
972 snd_soc_write(codec
, AIC32X4_LMICPGANIN
,
973 AIC32X4_LMICPGANIN_CM1L_10K
);
974 if (aic32x4
->micpga_routing
& AIC32X4_MICPGA_ROUTE_RMIC_IN1L_10K
)
975 snd_soc_write(codec
, AIC32X4_RMICPGANIN
,
976 AIC32X4_RMICPGANIN_IN1L_10K
);
978 snd_soc_write(codec
, AIC32X4_RMICPGANIN
,
979 AIC32X4_RMICPGANIN_CM1R_10K
);
982 * Workaround: for an unknown reason, the ADC needs to be powered up
983 * and down for the first capture to work properly. It seems related to
984 * a HW BUG or some kind of behavior not documented in the datasheet.
986 tmp_reg
= snd_soc_read(codec
, AIC32X4_ADCSETUP
);
987 snd_soc_write(codec
, AIC32X4_ADCSETUP
, tmp_reg
|
988 AIC32X4_LADC_EN
| AIC32X4_RADC_EN
);
989 snd_soc_write(codec
, AIC32X4_ADCSETUP
, tmp_reg
);
994 static const struct snd_soc_codec_driver soc_codec_dev_aic32x4
= {
995 .probe
= aic32x4_codec_probe
,
996 .set_bias_level
= aic32x4_set_bias_level
,
997 .suspend_bias_off
= true,
999 .component_driver
= {
1000 .controls
= aic32x4_snd_controls
,
1001 .num_controls
= ARRAY_SIZE(aic32x4_snd_controls
),
1002 .dapm_widgets
= aic32x4_dapm_widgets
,
1003 .num_dapm_widgets
= ARRAY_SIZE(aic32x4_dapm_widgets
),
1004 .dapm_routes
= aic32x4_dapm_routes
,
1005 .num_dapm_routes
= ARRAY_SIZE(aic32x4_dapm_routes
),
1009 static int aic32x4_parse_dt(struct aic32x4_priv
*aic32x4
,
1010 struct device_node
*np
)
1012 struct aic32x4_setup_data
*aic32x4_setup
;
1014 aic32x4_setup
= devm_kzalloc(aic32x4
->dev
, sizeof(*aic32x4_setup
),
1019 aic32x4
->swapdacs
= false;
1020 aic32x4
->micpga_routing
= 0;
1021 aic32x4
->rstn_gpio
= of_get_named_gpio(np
, "reset-gpios", 0);
1023 if (of_property_read_u32_array(np
, "aic32x4-gpio-func",
1024 aic32x4_setup
->gpio_func
, 5) >= 0)
1025 aic32x4
->setup
= aic32x4_setup
;
1029 static void aic32x4_disable_regulators(struct aic32x4_priv
*aic32x4
)
1031 regulator_disable(aic32x4
->supply_iov
);
1033 if (!IS_ERR(aic32x4
->supply_ldo
))
1034 regulator_disable(aic32x4
->supply_ldo
);
1036 if (!IS_ERR(aic32x4
->supply_dv
))
1037 regulator_disable(aic32x4
->supply_dv
);
1039 if (!IS_ERR(aic32x4
->supply_av
))
1040 regulator_disable(aic32x4
->supply_av
);
1043 static int aic32x4_setup_regulators(struct device
*dev
,
1044 struct aic32x4_priv
*aic32x4
)
1048 aic32x4
->supply_ldo
= devm_regulator_get_optional(dev
, "ldoin");
1049 aic32x4
->supply_iov
= devm_regulator_get(dev
, "iov");
1050 aic32x4
->supply_dv
= devm_regulator_get_optional(dev
, "dv");
1051 aic32x4
->supply_av
= devm_regulator_get_optional(dev
, "av");
1053 /* Check if the regulator requirements are fulfilled */
1055 if (IS_ERR(aic32x4
->supply_iov
)) {
1056 dev_err(dev
, "Missing supply 'iov'\n");
1057 return PTR_ERR(aic32x4
->supply_iov
);
1060 if (IS_ERR(aic32x4
->supply_ldo
)) {
1061 if (PTR_ERR(aic32x4
->supply_ldo
) == -EPROBE_DEFER
)
1062 return -EPROBE_DEFER
;
1064 if (IS_ERR(aic32x4
->supply_dv
)) {
1065 dev_err(dev
, "Missing supply 'dv' or 'ldoin'\n");
1066 return PTR_ERR(aic32x4
->supply_dv
);
1068 if (IS_ERR(aic32x4
->supply_av
)) {
1069 dev_err(dev
, "Missing supply 'av' or 'ldoin'\n");
1070 return PTR_ERR(aic32x4
->supply_av
);
1073 if (IS_ERR(aic32x4
->supply_dv
) &&
1074 PTR_ERR(aic32x4
->supply_dv
) == -EPROBE_DEFER
)
1075 return -EPROBE_DEFER
;
1076 if (IS_ERR(aic32x4
->supply_av
) &&
1077 PTR_ERR(aic32x4
->supply_av
) == -EPROBE_DEFER
)
1078 return -EPROBE_DEFER
;
1081 ret
= regulator_enable(aic32x4
->supply_iov
);
1083 dev_err(dev
, "Failed to enable regulator iov\n");
1087 if (!IS_ERR(aic32x4
->supply_ldo
)) {
1088 ret
= regulator_enable(aic32x4
->supply_ldo
);
1090 dev_err(dev
, "Failed to enable regulator ldo\n");
1095 if (!IS_ERR(aic32x4
->supply_dv
)) {
1096 ret
= regulator_enable(aic32x4
->supply_dv
);
1098 dev_err(dev
, "Failed to enable regulator dv\n");
1103 if (!IS_ERR(aic32x4
->supply_av
)) {
1104 ret
= regulator_enable(aic32x4
->supply_av
);
1106 dev_err(dev
, "Failed to enable regulator av\n");
1111 if (!IS_ERR(aic32x4
->supply_ldo
) && IS_ERR(aic32x4
->supply_av
))
1112 aic32x4
->power_cfg
|= AIC32X4_PWR_AIC32X4_LDO_ENABLE
;
1117 if (!IS_ERR(aic32x4
->supply_dv
))
1118 regulator_disable(aic32x4
->supply_dv
);
1121 if (!IS_ERR(aic32x4
->supply_ldo
))
1122 regulator_disable(aic32x4
->supply_ldo
);
1125 regulator_disable(aic32x4
->supply_iov
);
1129 int aic32x4_probe(struct device
*dev
, struct regmap
*regmap
)
1131 struct aic32x4_priv
*aic32x4
;
1132 struct aic32x4_pdata
*pdata
= dev
->platform_data
;
1133 struct device_node
*np
= dev
->of_node
;
1137 return PTR_ERR(regmap
);
1139 aic32x4
= devm_kzalloc(dev
, sizeof(struct aic32x4_priv
),
1141 if (aic32x4
== NULL
)
1145 dev_set_drvdata(dev
, aic32x4
);
1148 aic32x4
->power_cfg
= pdata
->power_cfg
;
1149 aic32x4
->swapdacs
= pdata
->swapdacs
;
1150 aic32x4
->micpga_routing
= pdata
->micpga_routing
;
1151 aic32x4
->rstn_gpio
= pdata
->rstn_gpio
;
1153 ret
= aic32x4_parse_dt(aic32x4
, np
);
1155 dev_err(dev
, "Failed to parse DT node\n");
1159 aic32x4
->power_cfg
= 0;
1160 aic32x4
->swapdacs
= false;
1161 aic32x4
->micpga_routing
= 0;
1162 aic32x4
->rstn_gpio
= -1;
1165 aic32x4
->mclk
= devm_clk_get(dev
, "mclk");
1166 if (IS_ERR(aic32x4
->mclk
)) {
1167 dev_err(dev
, "Failed getting the mclk. The current implementation does not support the usage of this codec without mclk\n");
1168 return PTR_ERR(aic32x4
->mclk
);
1171 if (gpio_is_valid(aic32x4
->rstn_gpio
)) {
1172 ret
= devm_gpio_request_one(dev
, aic32x4
->rstn_gpio
,
1173 GPIOF_OUT_INIT_LOW
, "tlv320aic32x4 rstn");
1178 ret
= aic32x4_setup_regulators(dev
, aic32x4
);
1180 dev_err(dev
, "Failed to setup regulators\n");
1184 ret
= snd_soc_register_codec(dev
,
1185 &soc_codec_dev_aic32x4
, &aic32x4_dai
, 1);
1187 dev_err(dev
, "Failed to register codec\n");
1188 aic32x4_disable_regulators(aic32x4
);
1194 EXPORT_SYMBOL(aic32x4_probe
);
1196 int aic32x4_remove(struct device
*dev
)
1198 struct aic32x4_priv
*aic32x4
= dev_get_drvdata(dev
);
1200 aic32x4_disable_regulators(aic32x4
);
1202 snd_soc_unregister_codec(dev
);
1206 EXPORT_SYMBOL(aic32x4_remove
);
1208 MODULE_DESCRIPTION("ASoC tlv320aic32x4 codec driver");
1209 MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
1210 MODULE_LICENSE("GPL");