You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge remote-tracking branches 'asoc/topic/88pm860x', 'asoc/topic/ad1836', 'asoc/topic/ad193x', 'asoc/topic/adau1977', 'asoc/topic/ak4104', 'asoc/topic/ak4641', 'asoc/topic/ak4671' and 'asoc/topic/alc5623' into asoc-next
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* ADAU1977/ADAU1978/ADAU1979 driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_PLATFORM_DATA_ADAU1977_H__
|
||||
#define __LINUX_PLATFORM_DATA_ADAU1977_H__
|
||||
|
||||
/**
|
||||
* enum adau1977_micbias - ADAU1977 MICBIAS pin voltage setting
|
||||
* @ADAU1977_MICBIAS_5V0: MICBIAS is set to 5.0 V
|
||||
* @ADAU1977_MICBIAS_5V5: MICBIAS is set to 5.5 V
|
||||
* @ADAU1977_MICBIAS_6V0: MICBIAS is set to 6.0 V
|
||||
* @ADAU1977_MICBIAS_6V5: MICBIAS is set to 6.5 V
|
||||
* @ADAU1977_MICBIAS_7V0: MICBIAS is set to 7.0 V
|
||||
* @ADAU1977_MICBIAS_7V5: MICBIAS is set to 7.5 V
|
||||
* @ADAU1977_MICBIAS_8V0: MICBIAS is set to 8.0 V
|
||||
* @ADAU1977_MICBIAS_8V5: MICBIAS is set to 8.5 V
|
||||
* @ADAU1977_MICBIAS_9V0: MICBIAS is set to 9.0 V
|
||||
*/
|
||||
enum adau1977_micbias {
|
||||
ADAU1977_MICBIAS_5V0 = 0x0,
|
||||
ADAU1977_MICBIAS_5V5 = 0x1,
|
||||
ADAU1977_MICBIAS_6V0 = 0x2,
|
||||
ADAU1977_MICBIAS_6V5 = 0x3,
|
||||
ADAU1977_MICBIAS_7V0 = 0x4,
|
||||
ADAU1977_MICBIAS_7V5 = 0x5,
|
||||
ADAU1977_MICBIAS_8V0 = 0x6,
|
||||
ADAU1977_MICBIAS_8V5 = 0x7,
|
||||
ADAU1977_MICBIAS_9V0 = 0x8,
|
||||
};
|
||||
|
||||
/**
|
||||
* struct adau1977_platform_data - Platform configuration data for the ADAU1977
|
||||
* @micbias: Specifies the voltage for the MICBIAS pin
|
||||
*/
|
||||
struct adau1977_platform_data {
|
||||
enum adau1977_micbias micbias;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -1242,6 +1242,7 @@ int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_par
|
||||
return -EINVAL;
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(snd_pcm_hw_constraint_mask64);
|
||||
|
||||
/**
|
||||
* snd_pcm_hw_constraint_integer - apply an integer constraint to an interval
|
||||
|
||||
@@ -46,7 +46,8 @@ config SND_SOC_BFIN_EVAL_ADAV80X
|
||||
tristate "Support for the EVAL-ADAV80X boards on Blackfin eval boards"
|
||||
depends on SND_BF5XX_I2S && SND_SOC_I2C_AND_SPI
|
||||
select SND_BF5XX_SOC_I2S
|
||||
select SND_SOC_ADAV80X
|
||||
select SND_SOC_ADAV801 if SPI_MASTER
|
||||
select SND_SOC_ADAV803 if I2C
|
||||
help
|
||||
Say Y if you want to add support for the Analog Devices EVAL-ADAV801 or
|
||||
EVAL-ADAV803 board connected to one of the Blackfin evaluation boards
|
||||
@@ -67,7 +68,8 @@ config SND_BF5XX_SOC_AD193X
|
||||
tristate "SoC AD193X Audio support for Blackfin"
|
||||
depends on SND_BF5XX_I2S && SND_SOC_I2C_AND_SPI
|
||||
select SND_BF5XX_SOC_I2S
|
||||
select SND_SOC_AD193X
|
||||
select SND_SOC_AD193X_I2C if I2C
|
||||
select SND_SOC_AD193X_SPI if SPI_MASTER
|
||||
help
|
||||
Say Y if you want to add support for AD193X codec on Blackfin.
|
||||
This driver supports AD1936, AD1937, AD1938 and AD1939.
|
||||
|
||||
@@ -448,38 +448,38 @@ static const char *pm860x_opamp_texts[] = {"-50%", "-25%", "0%", "75%"};
|
||||
|
||||
static const char *pm860x_pa_texts[] = {"-33%", "0%", "33%", "66%"};
|
||||
|
||||
static const struct soc_enum pm860x_hs1_opamp_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_HS1_CTRL, 5, 4, pm860x_opamp_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_hs1_opamp_enum,
|
||||
PM860X_HS1_CTRL, 5, pm860x_opamp_texts);
|
||||
|
||||
static const struct soc_enum pm860x_hs2_opamp_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_HS2_CTRL, 5, 4, pm860x_opamp_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_hs2_opamp_enum,
|
||||
PM860X_HS2_CTRL, 5, pm860x_opamp_texts);
|
||||
|
||||
static const struct soc_enum pm860x_hs1_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_HS1_CTRL, 3, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_hs1_pa_enum,
|
||||
PM860X_HS1_CTRL, 3, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_hs2_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_HS2_CTRL, 3, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_hs2_pa_enum,
|
||||
PM860X_HS2_CTRL, 3, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_lo1_opamp_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_LO1_CTRL, 5, 4, pm860x_opamp_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_lo1_opamp_enum,
|
||||
PM860X_LO1_CTRL, 5, pm860x_opamp_texts);
|
||||
|
||||
static const struct soc_enum pm860x_lo2_opamp_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_LO2_CTRL, 5, 4, pm860x_opamp_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_lo2_opamp_enum,
|
||||
PM860X_LO2_CTRL, 5, pm860x_opamp_texts);
|
||||
|
||||
static const struct soc_enum pm860x_lo1_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_LO1_CTRL, 3, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_lo1_pa_enum,
|
||||
PM860X_LO1_CTRL, 3, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_lo2_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_LO2_CTRL, 3, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_lo2_pa_enum,
|
||||
PM860X_LO2_CTRL, 3, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_spk_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_EAR_CTRL_1, 5, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_spk_pa_enum,
|
||||
PM860X_EAR_CTRL_1, 5, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_ear_pa_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_EAR_CTRL_2, 0, 4, pm860x_pa_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_ear_pa_enum,
|
||||
PM860X_EAR_CTRL_2, 0, pm860x_pa_texts);
|
||||
|
||||
static const struct soc_enum pm860x_spk_ear_opamp_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_EAR_CTRL_1, 3, 4, pm860x_opamp_texts);
|
||||
static SOC_ENUM_SINGLE_DECL(pm860x_spk_ear_opamp_enum,
|
||||
PM860X_EAR_CTRL_1, 3, pm860x_opamp_texts);
|
||||
|
||||
static const struct snd_kcontrol_new pm860x_snd_controls[] = {
|
||||
SOC_DOUBLE_R_TLV("ADC Capture Volume", PM860X_ADC_ANA_2,
|
||||
@@ -561,8 +561,8 @@ static const char *aif1_text[] = {
|
||||
"PCM L", "PCM R",
|
||||
};
|
||||
|
||||
static const struct soc_enum aif1_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_PCM_IFACE_3, 6, 2, aif1_text);
|
||||
static SOC_ENUM_SINGLE_DECL(aif1_enum,
|
||||
PM860X_PCM_IFACE_3, 6, aif1_text);
|
||||
|
||||
static const struct snd_kcontrol_new aif1_mux =
|
||||
SOC_DAPM_ENUM("PCM Mux", aif1_enum);
|
||||
@@ -572,8 +572,8 @@ static const char *i2s_din_text[] = {
|
||||
"DIN", "DIN1",
|
||||
};
|
||||
|
||||
static const struct soc_enum i2s_din_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_I2S_IFACE_3, 1, 2, i2s_din_text);
|
||||
static SOC_ENUM_SINGLE_DECL(i2s_din_enum,
|
||||
PM860X_I2S_IFACE_3, 1, i2s_din_text);
|
||||
|
||||
static const struct snd_kcontrol_new i2s_din_mux =
|
||||
SOC_DAPM_ENUM("I2S DIN Mux", i2s_din_enum);
|
||||
@@ -583,8 +583,8 @@ static const char *i2s_mic_text[] = {
|
||||
"Ex PA", "ADC",
|
||||
};
|
||||
|
||||
static const struct soc_enum i2s_mic_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_I2S_IFACE_3, 4, 2, i2s_mic_text);
|
||||
static SOC_ENUM_SINGLE_DECL(i2s_mic_enum,
|
||||
PM860X_I2S_IFACE_3, 4, i2s_mic_text);
|
||||
|
||||
static const struct snd_kcontrol_new i2s_mic_mux =
|
||||
SOC_DAPM_ENUM("I2S Mic Mux", i2s_mic_enum);
|
||||
@@ -594,8 +594,8 @@ static const char *adcl_text[] = {
|
||||
"ADCR", "ADCL",
|
||||
};
|
||||
|
||||
static const struct soc_enum adcl_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_PCM_IFACE_3, 4, 2, adcl_text);
|
||||
static SOC_ENUM_SINGLE_DECL(adcl_enum,
|
||||
PM860X_PCM_IFACE_3, 4, adcl_text);
|
||||
|
||||
static const struct snd_kcontrol_new adcl_mux =
|
||||
SOC_DAPM_ENUM("ADC Left Mux", adcl_enum);
|
||||
@@ -605,8 +605,8 @@ static const char *adcr_text[] = {
|
||||
"ADCL", "ADCR",
|
||||
};
|
||||
|
||||
static const struct soc_enum adcr_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_PCM_IFACE_3, 2, 2, adcr_text);
|
||||
static SOC_ENUM_SINGLE_DECL(adcr_enum,
|
||||
PM860X_PCM_IFACE_3, 2, adcr_text);
|
||||
|
||||
static const struct snd_kcontrol_new adcr_mux =
|
||||
SOC_DAPM_ENUM("ADC Right Mux", adcr_enum);
|
||||
@@ -616,8 +616,8 @@ static const char *adcr_ec_text[] = {
|
||||
"ADCR", "EC",
|
||||
};
|
||||
|
||||
static const struct soc_enum adcr_ec_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ADC_EN_2, 3, 2, adcr_ec_text);
|
||||
static SOC_ENUM_SINGLE_DECL(adcr_ec_enum,
|
||||
PM860X_ADC_EN_2, 3, adcr_ec_text);
|
||||
|
||||
static const struct snd_kcontrol_new adcr_ec_mux =
|
||||
SOC_DAPM_ENUM("ADCR EC Mux", adcr_ec_enum);
|
||||
@@ -627,8 +627,8 @@ static const char *ec_text[] = {
|
||||
"Left", "Right", "Left + Right",
|
||||
};
|
||||
|
||||
static const struct soc_enum ec_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_EC_PATH, 1, 3, ec_text);
|
||||
static SOC_ENUM_SINGLE_DECL(ec_enum,
|
||||
PM860X_EC_PATH, 1, ec_text);
|
||||
|
||||
static const struct snd_kcontrol_new ec_mux =
|
||||
SOC_DAPM_ENUM("EC Mux", ec_enum);
|
||||
@@ -638,36 +638,36 @@ static const char *dac_text[] = {
|
||||
};
|
||||
|
||||
/* DAC Headset 1 Mux / Mux10 */
|
||||
static const struct soc_enum dac_hs1_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_INPUT_SEL_1, 0, 4, dac_text);
|
||||
static SOC_ENUM_SINGLE_DECL(dac_hs1_enum,
|
||||
PM860X_ANA_INPUT_SEL_1, 0, dac_text);
|
||||
|
||||
static const struct snd_kcontrol_new dac_hs1_mux =
|
||||
SOC_DAPM_ENUM("DAC HS1 Mux", dac_hs1_enum);
|
||||
|
||||
/* DAC Headset 2 Mux / Mux11 */
|
||||
static const struct soc_enum dac_hs2_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_INPUT_SEL_1, 2, 4, dac_text);
|
||||
static SOC_ENUM_SINGLE_DECL(dac_hs2_enum,
|
||||
PM860X_ANA_INPUT_SEL_1, 2, dac_text);
|
||||
|
||||
static const struct snd_kcontrol_new dac_hs2_mux =
|
||||
SOC_DAPM_ENUM("DAC HS2 Mux", dac_hs2_enum);
|
||||
|
||||
/* DAC Lineout 1 Mux / Mux12 */
|
||||
static const struct soc_enum dac_lo1_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_INPUT_SEL_1, 4, 4, dac_text);
|
||||
static SOC_ENUM_SINGLE_DECL(dac_lo1_enum,
|
||||
PM860X_ANA_INPUT_SEL_1, 4, dac_text);
|
||||
|
||||
static const struct snd_kcontrol_new dac_lo1_mux =
|
||||
SOC_DAPM_ENUM("DAC LO1 Mux", dac_lo1_enum);
|
||||
|
||||
/* DAC Lineout 2 Mux / Mux13 */
|
||||
static const struct soc_enum dac_lo2_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_INPUT_SEL_1, 6, 4, dac_text);
|
||||
static SOC_ENUM_SINGLE_DECL(dac_lo2_enum,
|
||||
PM860X_ANA_INPUT_SEL_1, 6, dac_text);
|
||||
|
||||
static const struct snd_kcontrol_new dac_lo2_mux =
|
||||
SOC_DAPM_ENUM("DAC LO2 Mux", dac_lo2_enum);
|
||||
|
||||
/* DAC Spearker Earphone Mux / Mux14 */
|
||||
static const struct soc_enum dac_spk_ear_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_INPUT_SEL_2, 0, 4, dac_text);
|
||||
static SOC_ENUM_SINGLE_DECL(dac_spk_ear_enum,
|
||||
PM860X_ANA_INPUT_SEL_2, 0, dac_text);
|
||||
|
||||
static const struct snd_kcontrol_new dac_spk_ear_mux =
|
||||
SOC_DAPM_ENUM("DAC SP Mux", dac_spk_ear_enum);
|
||||
@@ -677,29 +677,29 @@ static const char *in_text[] = {
|
||||
"Digital", "Analog",
|
||||
};
|
||||
|
||||
static const struct soc_enum hs1_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_TO_ANA, 0, 2, in_text);
|
||||
static SOC_ENUM_SINGLE_DECL(hs1_enum,
|
||||
PM860X_ANA_TO_ANA, 0, in_text);
|
||||
|
||||
static const struct snd_kcontrol_new hs1_mux =
|
||||
SOC_DAPM_ENUM("Headset1 Mux", hs1_enum);
|
||||
|
||||
/* Headset 2 Mux / Mux16 */
|
||||
static const struct soc_enum hs2_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_TO_ANA, 1, 2, in_text);
|
||||
static SOC_ENUM_SINGLE_DECL(hs2_enum,
|
||||
PM860X_ANA_TO_ANA, 1, in_text);
|
||||
|
||||
static const struct snd_kcontrol_new hs2_mux =
|
||||
SOC_DAPM_ENUM("Headset2 Mux", hs2_enum);
|
||||
|
||||
/* Lineout 1 Mux / Mux17 */
|
||||
static const struct soc_enum lo1_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_TO_ANA, 2, 2, in_text);
|
||||
static SOC_ENUM_SINGLE_DECL(lo1_enum,
|
||||
PM860X_ANA_TO_ANA, 2, in_text);
|
||||
|
||||
static const struct snd_kcontrol_new lo1_mux =
|
||||
SOC_DAPM_ENUM("Lineout1 Mux", lo1_enum);
|
||||
|
||||
/* Lineout 2 Mux / Mux18 */
|
||||
static const struct soc_enum lo2_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_TO_ANA, 3, 2, in_text);
|
||||
static SOC_ENUM_SINGLE_DECL(lo2_enum,
|
||||
PM860X_ANA_TO_ANA, 3, in_text);
|
||||
|
||||
static const struct snd_kcontrol_new lo2_mux =
|
||||
SOC_DAPM_ENUM("Lineout2 Mux", lo2_enum);
|
||||
@@ -709,8 +709,8 @@ static const char *spk_text[] = {
|
||||
"Earpiece", "Speaker",
|
||||
};
|
||||
|
||||
static const struct soc_enum spk_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ANA_TO_ANA, 6, 2, spk_text);
|
||||
static SOC_ENUM_SINGLE_DECL(spk_enum,
|
||||
PM860X_ANA_TO_ANA, 6, spk_text);
|
||||
|
||||
static const struct snd_kcontrol_new spk_demux =
|
||||
SOC_DAPM_ENUM("Speaker Earpiece Demux", spk_enum);
|
||||
@@ -720,8 +720,8 @@ static const char *mic_text[] = {
|
||||
"Mic 1", "Mic 2",
|
||||
};
|
||||
|
||||
static const struct soc_enum mic_enum =
|
||||
SOC_ENUM_SINGLE(PM860X_ADC_ANA_4, 4, 2, mic_text);
|
||||
static SOC_ENUM_SINGLE_DECL(mic_enum,
|
||||
PM860X_ADC_ANA_4, 4, mic_text);
|
||||
|
||||
static const struct snd_kcontrol_new mic_mux =
|
||||
SOC_DAPM_ENUM("MIC Mux", mic_enum);
|
||||
|
||||
+103
-36
@@ -8,6 +8,8 @@ config SND_SOC_I2C_AND_SPI
|
||||
default y if I2C=y
|
||||
default y if SPI_MASTER=y
|
||||
|
||||
menu "CODEC drivers"
|
||||
|
||||
config SND_SOC_ALL_CODECS
|
||||
tristate "Build all ASoC CODEC drivers"
|
||||
depends on COMPILE_TEST
|
||||
@@ -16,15 +18,20 @@ config SND_SOC_ALL_CODECS
|
||||
select SND_SOC_AB8500_CODEC if ABX500_CORE
|
||||
select SND_SOC_AC97_CODEC if SND_SOC_AC97_BUS
|
||||
select SND_SOC_AD1836 if SPI_MASTER
|
||||
select SND_SOC_AD193X if SND_SOC_I2C_AND_SPI
|
||||
select SND_SOC_AD193X_SPI if SPI_MASTER
|
||||
select SND_SOC_AD193X_I2C if I2C
|
||||
select SND_SOC_AD1980 if SND_SOC_AC97_BUS
|
||||
select SND_SOC_AD73311
|
||||
select SND_SOC_ADAU1373 if I2C
|
||||
select SND_SOC_ADAV80X if SND_SOC_I2C_AND_SPI
|
||||
select SND_SOC_ADAV801 if SPI_MASTER
|
||||
select SND_SOC_ADAV803 if I2C
|
||||
select SND_SOC_ADAU1977_SPI if SPI_MASTER
|
||||
select SND_SOC_ADAU1977_I2C if I2C
|
||||
select SND_SOC_ADAU1701 if I2C
|
||||
select SND_SOC_ADS117X
|
||||
select SND_SOC_AK4104 if SPI_MASTER
|
||||
select SND_SOC_AK4535 if I2C
|
||||
select SND_SOC_AK4554
|
||||
select SND_SOC_AK4641 if I2C
|
||||
select SND_SOC_AK4642 if I2C
|
||||
select SND_SOC_AK4671 if I2C
|
||||
@@ -184,6 +191,14 @@ config SND_SOC_AD1836
|
||||
config SND_SOC_AD193X
|
||||
tristate
|
||||
|
||||
config SND_SOC_AD193X_SPI
|
||||
tristate
|
||||
select SND_SOC_AD193X
|
||||
|
||||
config SND_SOC_AD193X_I2C
|
||||
tristate
|
||||
select SND_SOC_AD193X
|
||||
|
||||
config SND_SOC_AD1980
|
||||
tristate
|
||||
|
||||
@@ -191,41 +206,66 @@ config SND_SOC_AD73311
|
||||
tristate
|
||||
|
||||
config SND_SOC_ADAU1701
|
||||
tristate "Analog Devices ADAU1701 CODEC"
|
||||
depends on I2C
|
||||
select SND_SOC_SIGMADSP
|
||||
tristate
|
||||
|
||||
config SND_SOC_ADAU1373
|
||||
tristate
|
||||
|
||||
config SND_SOC_ADAU1977
|
||||
tristate
|
||||
|
||||
config SND_SOC_ADAU1977_SPI
|
||||
tristate
|
||||
select SND_SOC_ADAU1977
|
||||
select REGMAP_SPI
|
||||
|
||||
config SND_SOC_ADAU1977_I2C
|
||||
tristate
|
||||
select SND_SOC_ADAU1977
|
||||
select REGMAP_I2C
|
||||
|
||||
config SND_SOC_ADAV80X
|
||||
tristate
|
||||
|
||||
config SND_SOC_ADAV801
|
||||
tristate
|
||||
select SND_SOC_ADAV80X
|
||||
|
||||
config SND_SOC_ADAV803
|
||||
tristate
|
||||
select SND_SOC_ADAV80X
|
||||
|
||||
config SND_SOC_ADS117X
|
||||
tristate
|
||||
|
||||
config SND_SOC_AK4104
|
||||
tristate
|
||||
tristate "AKM AK4104 CODEC"
|
||||
depends on SPI_MASTER
|
||||
|
||||
config SND_SOC_AK4535
|
||||
tristate
|
||||
|
||||
config SND_SOC_AK4554
|
||||
tristate
|
||||
tristate "AKM AK4554 CODEC"
|
||||
|
||||
config SND_SOC_AK4641
|
||||
tristate
|
||||
|
||||
config SND_SOC_AK4642
|
||||
tristate
|
||||
tristate "AKM AK4642 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_AK4671
|
||||
tristate
|
||||
|
||||
config SND_SOC_AK5386
|
||||
tristate
|
||||
tristate "AKM AK5638 CODEC"
|
||||
|
||||
config SND_SOC_ALC5623
|
||||
tristate
|
||||
|
||||
config SND_SOC_ALC5632
|
||||
tristate
|
||||
|
||||
@@ -236,14 +276,17 @@ config SND_SOC_CS42L51
|
||||
tristate
|
||||
|
||||
config SND_SOC_CS42L52
|
||||
tristate
|
||||
tristate "Cirrus Logic CS42L52 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_CS42L73
|
||||
tristate
|
||||
tristate "Cirrus Logic CS42L73 CODEC"
|
||||
depends on I2C
|
||||
|
||||
# Cirrus Logic CS4270 Codec
|
||||
config SND_SOC_CS4270
|
||||
tristate
|
||||
tristate "Cirrus Logic CS4270 CODEC"
|
||||
depends on I2C
|
||||
|
||||
# Cirrus Logic CS4270 Codec VD = 3.3V Errata
|
||||
# Select if you are affected by the errata where the part will not function
|
||||
@@ -254,7 +297,8 @@ config SND_SOC_CS4270_VD33_ERRATA
|
||||
depends on SND_SOC_CS4270
|
||||
|
||||
config SND_SOC_CS4271
|
||||
tristate
|
||||
tristate "Cirrus Logic CS4271 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_CX20442
|
||||
tristate
|
||||
@@ -285,6 +329,9 @@ config SND_SOC_BT_SCO
|
||||
config SND_SOC_DMIC
|
||||
tristate
|
||||
|
||||
config SND_SOC_HDMI_CODEC
|
||||
tristate "HDMI stub CODEC"
|
||||
|
||||
config SND_SOC_ISABELLE
|
||||
tristate
|
||||
|
||||
@@ -303,14 +350,13 @@ config SND_SOC_MAX98095
|
||||
config SND_SOC_MAX9850
|
||||
tristate
|
||||
|
||||
config SND_SOC_HDMI_CODEC
|
||||
tristate
|
||||
|
||||
config SND_SOC_PCM1681
|
||||
tristate
|
||||
tristate "Texas Instruments PCM1681 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_PCM1792A
|
||||
tristate
|
||||
tristate "Texas Instruments PCM1792A CODEC"
|
||||
depends on SPI_MASTER
|
||||
|
||||
config SND_SOC_PCM3008
|
||||
tristate
|
||||
@@ -338,7 +384,8 @@ config SND_SOC_RT5640
|
||||
|
||||
#Freescale sgtl5000 codec
|
||||
config SND_SOC_SGTL5000
|
||||
tristate
|
||||
tristate "Freescale SGTL5000 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_SI476X
|
||||
tristate
|
||||
@@ -351,7 +398,7 @@ config SND_SOC_SN95031
|
||||
tristate
|
||||
|
||||
config SND_SOC_SPDIF
|
||||
tristate
|
||||
tristate "S/PDIF CODEC"
|
||||
|
||||
config SND_SOC_SSM2518
|
||||
tristate
|
||||
@@ -369,7 +416,8 @@ config SND_SOC_STAC9766
|
||||
tristate
|
||||
|
||||
config SND_SOC_TAS5086
|
||||
tristate
|
||||
tristate "Texas Instruments TAS5086 speaker amplifier"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_TLV320AIC23
|
||||
tristate
|
||||
@@ -382,7 +430,8 @@ config SND_SOC_TLV320AIC32X4
|
||||
tristate
|
||||
|
||||
config SND_SOC_TLV320AIC3X
|
||||
tristate
|
||||
tristate "Texas Instruments TLV320AIC3x CODECs"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_TLV320DAC33
|
||||
tristate
|
||||
@@ -431,55 +480,69 @@ config SND_SOC_WM8400
|
||||
tristate
|
||||
|
||||
config SND_SOC_WM8510
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8510 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8523
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8523 DAC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_WM8580
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8523 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_WM8711
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8711 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8727
|
||||
tristate
|
||||
|
||||
config SND_SOC_WM8728
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8728 DAC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8731
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8731 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8737
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8737 ADC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8741
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8737 DAC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8750
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8750 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8753
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8753 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8770
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8770 CODEC"
|
||||
depends on SPI_MASTER
|
||||
|
||||
config SND_SOC_WM8776
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8776 CODEC"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8782
|
||||
tristate
|
||||
|
||||
config SND_SOC_WM8804
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8804 S/PDIF transceiver"
|
||||
depends on SND_SOC_I2C_AND_SPI
|
||||
|
||||
config SND_SOC_WM8900
|
||||
tristate
|
||||
|
||||
config SND_SOC_WM8903
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8903 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_WM8904
|
||||
tristate
|
||||
@@ -497,7 +560,8 @@ config SND_SOC_WM8961
|
||||
tristate
|
||||
|
||||
config SND_SOC_WM8962
|
||||
tristate
|
||||
tristate "Wolfson Microelectronics WM8962 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_WM8971
|
||||
tristate
|
||||
@@ -570,4 +634,7 @@ config SND_SOC_ML26124
|
||||
tristate
|
||||
|
||||
config SND_SOC_TPA6130A2
|
||||
tristate
|
||||
tristate "Texas Instruments TPA6130A2 headphone amplifier"
|
||||
depends on I2C
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -3,11 +3,18 @@ snd-soc-ab8500-codec-objs := ab8500-codec.o
|
||||
snd-soc-ac97-objs := ac97.o
|
||||
snd-soc-ad1836-objs := ad1836.o
|
||||
snd-soc-ad193x-objs := ad193x.o
|
||||
snd-soc-ad193x-spi-objs := ad193x-spi.o
|
||||
snd-soc-ad193x-i2c-objs := ad193x-i2c.o
|
||||
snd-soc-ad1980-objs := ad1980.o
|
||||
snd-soc-ad73311-objs := ad73311.o
|
||||
snd-soc-adau1701-objs := adau1701.o
|
||||
snd-soc-adau1373-objs := adau1373.o
|
||||
snd-soc-adau1977-objs := adau1977.o
|
||||
snd-soc-adau1977-spi-objs := adau1977-spi.o
|
||||
snd-soc-adau1977-i2c-objs := adau1977-i2c.o
|
||||
snd-soc-adav80x-objs := adav80x.o
|
||||
snd-soc-adav801-objs := adav801.o
|
||||
snd-soc-adav803-objs := adav803.o
|
||||
snd-soc-ads117x-objs := ads117x.o
|
||||
snd-soc-ak4104-objs := ak4104.o
|
||||
snd-soc-ak4535-objs := ak4535.o
|
||||
@@ -137,11 +144,18 @@ obj-$(CONFIG_SND_SOC_AB8500_CODEC) += snd-soc-ab8500-codec.o
|
||||
obj-$(CONFIG_SND_SOC_AC97_CODEC) += snd-soc-ac97.o
|
||||
obj-$(CONFIG_SND_SOC_AD1836) += snd-soc-ad1836.o
|
||||
obj-$(CONFIG_SND_SOC_AD193X) += snd-soc-ad193x.o
|
||||
obj-$(CONFIG_SND_SOC_AD193X_SPI) += snd-soc-ad193x-spi.o
|
||||
obj-$(CONFIG_SND_SOC_AD193X_I2C) += snd-soc-ad193x-i2c.o
|
||||
obj-$(CONFIG_SND_SOC_AD1980) += snd-soc-ad1980.o
|
||||
obj-$(CONFIG_SND_SOC_AD73311) += snd-soc-ad73311.o
|
||||
obj-$(CONFIG_SND_SOC_ADAU1373) += snd-soc-adau1373.o
|
||||
obj-$(CONFIG_SND_SOC_ADAU1977) += snd-soc-adau1977.o
|
||||
obj-$(CONFIG_SND_SOC_ADAU1977_SPI) += snd-soc-adau1977-spi.o
|
||||
obj-$(CONFIG_SND_SOC_ADAU1977_I2C) += snd-soc-adau1977-i2c.o
|
||||
obj-$(CONFIG_SND_SOC_ADAU1701) += snd-soc-adau1701.o
|
||||
obj-$(CONFIG_SND_SOC_ADAV80X) += snd-soc-adav80x.o
|
||||
obj-$(CONFIG_SND_SOC_ADAV801) += snd-soc-adav801.o
|
||||
obj-$(CONFIG_SND_SOC_ADAV803) += snd-soc-adav803.o
|
||||
obj-$(CONFIG_SND_SOC_ADS117X) += snd-soc-ads117x.o
|
||||
obj-$(CONFIG_SND_SOC_AK4104) += snd-soc-ak4104.o
|
||||
obj-$(CONFIG_SND_SOC_AK4535) += snd-soc-ak4535.o
|
||||
|
||||
@@ -40,8 +40,8 @@ struct ad1836_priv {
|
||||
*/
|
||||
static const char *ad1836_deemp[] = {"None", "44.1kHz", "32kHz", "48kHz"};
|
||||
|
||||
static const struct soc_enum ad1836_deemp_enum =
|
||||
SOC_ENUM_SINGLE(AD1836_DAC_CTRL1, 8, 4, ad1836_deemp);
|
||||
static SOC_ENUM_SINGLE_DECL(ad1836_deemp_enum,
|
||||
AD1836_DAC_CTRL1, 8, ad1836_deemp);
|
||||
|
||||
#define AD1836_DAC_VOLUME(x) \
|
||||
SOC_DOUBLE_R("DAC" #x " Playback Volume", AD1836_DAC_L_VOL(x), \
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* AD1936/AD1937 audio driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/regmap.h>
|
||||
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "ad193x.h"
|
||||
|
||||
static const struct i2c_device_id ad193x_id[] = {
|
||||
{ "ad1936", 0 },
|
||||
{ "ad1937", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ad193x_id);
|
||||
|
||||
static int ad193x_i2c_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct regmap_config config;
|
||||
|
||||
config = ad193x_regmap_config;
|
||||
config.val_bits = 8;
|
||||
config.reg_bits = 8;
|
||||
|
||||
return ad193x_probe(&client->dev, devm_regmap_init_i2c(client, &config));
|
||||
}
|
||||
|
||||
static int ad193x_i2c_remove(struct i2c_client *client)
|
||||
{
|
||||
snd_soc_unregister_codec(&client->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct i2c_driver ad193x_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "ad193x",
|
||||
},
|
||||
.probe = ad193x_i2c_probe,
|
||||
.remove = ad193x_i2c_remove,
|
||||
.id_table = ad193x_id,
|
||||
};
|
||||
module_i2c_driver(ad193x_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC AD1936/AD1937 audio CODEC driver");
|
||||
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* AD1938/AD1939 audio driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/regmap.h>
|
||||
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "ad193x.h"
|
||||
|
||||
static int ad193x_spi_probe(struct spi_device *spi)
|
||||
{
|
||||
struct regmap_config config;
|
||||
|
||||
config = ad193x_regmap_config;
|
||||
config.val_bits = 8;
|
||||
config.reg_bits = 16;
|
||||
config.read_flag_mask = 0x09;
|
||||
config.write_flag_mask = 0x08;
|
||||
|
||||
return ad193x_probe(&spi->dev, devm_regmap_init_spi(spi, &config));
|
||||
}
|
||||
|
||||
static int ad193x_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
snd_soc_unregister_codec(&spi->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct spi_driver ad193x_spi_driver = {
|
||||
.driver = {
|
||||
.name = "ad193x",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = ad193x_spi_probe,
|
||||
.remove = ad193x_spi_remove,
|
||||
};
|
||||
module_spi_driver(ad193x_spi_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC AD1938/AD1939 audio CODEC driver");
|
||||
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
+18
-128
@@ -6,12 +6,10 @@
|
||||
* Licensed under the GPL-2 or later.
|
||||
*/
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/device.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/slab.h>
|
||||
#include <sound/core.h>
|
||||
#include <sound/pcm.h>
|
||||
@@ -19,6 +17,7 @@
|
||||
#include <sound/initval.h>
|
||||
#include <sound/soc.h>
|
||||
#include <sound/tlv.h>
|
||||
|
||||
#include "ad193x.h"
|
||||
|
||||
/* codec private data */
|
||||
@@ -32,8 +31,8 @@ struct ad193x_priv {
|
||||
*/
|
||||
static const char * const ad193x_deemp[] = {"None", "48kHz", "44.1kHz", "32kHz"};
|
||||
|
||||
static const struct soc_enum ad193x_deemp_enum =
|
||||
SOC_ENUM_SINGLE(AD193X_DAC_CTRL2, 1, 4, ad193x_deemp);
|
||||
static SOC_ENUM_SINGLE_DECL(ad193x_deemp_enum, AD193X_DAC_CTRL2, 1,
|
||||
ad193x_deemp);
|
||||
|
||||
static const DECLARE_TLV_DB_MINMAX(adau193x_tlv, -9563, 0);
|
||||
|
||||
@@ -320,7 +319,7 @@ static struct snd_soc_dai_driver ad193x_dai = {
|
||||
.ops = &ad193x_dai_ops,
|
||||
};
|
||||
|
||||
static int ad193x_probe(struct snd_soc_codec *codec)
|
||||
static int ad193x_codec_probe(struct snd_soc_codec *codec)
|
||||
{
|
||||
struct ad193x_priv *ad193x = snd_soc_codec_get_drvdata(codec);
|
||||
int ret;
|
||||
@@ -352,7 +351,7 @@ static int ad193x_probe(struct snd_soc_codec *codec)
|
||||
}
|
||||
|
||||
static struct snd_soc_codec_driver soc_codec_dev_ad193x = {
|
||||
.probe = ad193x_probe,
|
||||
.probe = ad193x_codec_probe,
|
||||
.controls = ad193x_snd_controls,
|
||||
.num_controls = ARRAY_SIZE(ad193x_snd_controls),
|
||||
.dapm_widgets = ad193x_dapm_widgets,
|
||||
@@ -366,140 +365,31 @@ static bool adau193x_reg_volatile(struct device *dev, unsigned int reg)
|
||||
return false;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
|
||||
static const struct regmap_config ad193x_spi_regmap_config = {
|
||||
.val_bits = 8,
|
||||
.reg_bits = 16,
|
||||
.read_flag_mask = 0x09,
|
||||
.write_flag_mask = 0x08,
|
||||
|
||||
const struct regmap_config ad193x_regmap_config = {
|
||||
.max_register = AD193X_NUM_REGS - 1,
|
||||
.volatile_reg = adau193x_reg_volatile,
|
||||
};
|
||||
EXPORT_SYMBOL_GPL(ad193x_regmap_config);
|
||||
|
||||
static int ad193x_spi_probe(struct spi_device *spi)
|
||||
int ad193x_probe(struct device *dev, struct regmap *regmap)
|
||||
{
|
||||
struct ad193x_priv *ad193x;
|
||||
|
||||
ad193x = devm_kzalloc(&spi->dev, sizeof(struct ad193x_priv),
|
||||
GFP_KERNEL);
|
||||
if (IS_ERR(regmap))
|
||||
return PTR_ERR(regmap);
|
||||
|
||||
ad193x = devm_kzalloc(dev, sizeof(*ad193x), GFP_KERNEL);
|
||||
if (ad193x == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
ad193x->regmap = devm_regmap_init_spi(spi, &ad193x_spi_regmap_config);
|
||||
if (IS_ERR(ad193x->regmap))
|
||||
return PTR_ERR(ad193x->regmap);
|
||||
ad193x->regmap = regmap;
|
||||
|
||||
spi_set_drvdata(spi, ad193x);
|
||||
dev_set_drvdata(dev, ad193x);
|
||||
|
||||
return snd_soc_register_codec(&spi->dev, &soc_codec_dev_ad193x,
|
||||
&ad193x_dai, 1);
|
||||
return snd_soc_register_codec(dev, &soc_codec_dev_ad193x,
|
||||
&ad193x_dai, 1);
|
||||
}
|
||||
|
||||
static int ad193x_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
snd_soc_unregister_codec(&spi->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct spi_driver ad193x_spi_driver = {
|
||||
.driver = {
|
||||
.name = "ad193x",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = ad193x_spi_probe,
|
||||
.remove = ad193x_spi_remove,
|
||||
};
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
|
||||
static const struct regmap_config ad193x_i2c_regmap_config = {
|
||||
.val_bits = 8,
|
||||
.reg_bits = 8,
|
||||
|
||||
.max_register = AD193X_NUM_REGS - 1,
|
||||
.volatile_reg = adau193x_reg_volatile,
|
||||
};
|
||||
|
||||
static const struct i2c_device_id ad193x_id[] = {
|
||||
{ "ad1936", 0 },
|
||||
{ "ad1937", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ad193x_id);
|
||||
|
||||
static int ad193x_i2c_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct ad193x_priv *ad193x;
|
||||
|
||||
ad193x = devm_kzalloc(&client->dev, sizeof(struct ad193x_priv),
|
||||
GFP_KERNEL);
|
||||
if (ad193x == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
ad193x->regmap = devm_regmap_init_i2c(client, &ad193x_i2c_regmap_config);
|
||||
if (IS_ERR(ad193x->regmap))
|
||||
return PTR_ERR(ad193x->regmap);
|
||||
|
||||
i2c_set_clientdata(client, ad193x);
|
||||
|
||||
return snd_soc_register_codec(&client->dev, &soc_codec_dev_ad193x,
|
||||
&ad193x_dai, 1);
|
||||
}
|
||||
|
||||
static int ad193x_i2c_remove(struct i2c_client *client)
|
||||
{
|
||||
snd_soc_unregister_codec(&client->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct i2c_driver ad193x_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "ad193x",
|
||||
},
|
||||
.probe = ad193x_i2c_probe,
|
||||
.remove = ad193x_i2c_remove,
|
||||
.id_table = ad193x_id,
|
||||
};
|
||||
#endif
|
||||
|
||||
static int __init ad193x_modinit(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
ret = i2c_add_driver(&ad193x_i2c_driver);
|
||||
if (ret != 0) {
|
||||
printk(KERN_ERR "Failed to register AD193X I2C driver: %d\n",
|
||||
ret);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
ret = spi_register_driver(&ad193x_spi_driver);
|
||||
if (ret != 0) {
|
||||
printk(KERN_ERR "Failed to register AD193X SPI driver: %d\n",
|
||||
ret);
|
||||
}
|
||||
#endif
|
||||
return ret;
|
||||
}
|
||||
module_init(ad193x_modinit);
|
||||
|
||||
static void __exit ad193x_modexit(void)
|
||||
{
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
spi_unregister_driver(&ad193x_spi_driver);
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
i2c_del_driver(&ad193x_i2c_driver);
|
||||
#endif
|
||||
}
|
||||
module_exit(ad193x_modexit);
|
||||
EXPORT_SYMBOL_GPL(ad193x_probe);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ad193x driver");
|
||||
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
||||
|
||||
@@ -9,6 +9,13 @@
|
||||
#ifndef __AD193X_H__
|
||||
#define __AD193X_H__
|
||||
|
||||
#include <linux/regmap.h>
|
||||
|
||||
struct device;
|
||||
|
||||
extern const struct regmap_config ad193x_regmap_config;
|
||||
int ad193x_probe(struct device *dev, struct regmap *regmap);
|
||||
|
||||
#define AD193X_PLL_CLK_CTRL0 0x00
|
||||
#define AD193X_PLL_POWERDOWN 0x01
|
||||
#define AD193X_PLL_INPUT_MASK 0x6
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
* ADAU1977/ADAU1978/ADAU1979 driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/mod_devicetable.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "adau1977.h"
|
||||
|
||||
static int adau1977_i2c_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct regmap_config config;
|
||||
|
||||
config = adau1977_regmap_config;
|
||||
config.val_bits = 8;
|
||||
config.reg_bits = 8;
|
||||
|
||||
return adau1977_probe(&client->dev,
|
||||
devm_regmap_init_i2c(client, &config),
|
||||
id->driver_data, NULL);
|
||||
}
|
||||
|
||||
static int adau1977_i2c_remove(struct i2c_client *client)
|
||||
{
|
||||
snd_soc_unregister_codec(&client->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct i2c_device_id adau1977_i2c_ids[] = {
|
||||
{ "adau1977", ADAU1977 },
|
||||
{ "adau1978", ADAU1978 },
|
||||
{ "adau1979", ADAU1978 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adau1977_i2c_ids);
|
||||
|
||||
static struct i2c_driver adau1977_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "adau1977",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adau1977_i2c_probe,
|
||||
.remove = adau1977_i2c_remove,
|
||||
.id_table = adau1977_i2c_ids,
|
||||
};
|
||||
module_i2c_driver(adau1977_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ADAU1977/ADAU1978/ADAU1979 driver");
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
MODULE_LICENSE("GPL");
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* ADAU1977/ADAU1978/ADAU1979 driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/mod_devicetable.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "adau1977.h"
|
||||
|
||||
static void adau1977_spi_switch_mode(struct device *dev)
|
||||
{
|
||||
struct spi_device *spi = to_spi_device(dev);
|
||||
|
||||
/*
|
||||
* To get the device into SPI mode CLATCH has to be pulled low three
|
||||
* times. Do this by issuing three dummy reads.
|
||||
*/
|
||||
spi_w8r8(spi, 0x00);
|
||||
spi_w8r8(spi, 0x00);
|
||||
spi_w8r8(spi, 0x00);
|
||||
}
|
||||
|
||||
static int adau1977_spi_probe(struct spi_device *spi)
|
||||
{
|
||||
const struct spi_device_id *id = spi_get_device_id(spi);
|
||||
struct regmap_config config;
|
||||
|
||||
if (!id)
|
||||
return -EINVAL;
|
||||
|
||||
config = adau1977_regmap_config;
|
||||
config.val_bits = 8;
|
||||
config.reg_bits = 16;
|
||||
config.read_flag_mask = 0x1;
|
||||
|
||||
return adau1977_probe(&spi->dev,
|
||||
devm_regmap_init_spi(spi, &config),
|
||||
id->driver_data, adau1977_spi_switch_mode);
|
||||
}
|
||||
|
||||
static int adau1977_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
snd_soc_unregister_codec(&spi->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct spi_device_id adau1977_spi_ids[] = {
|
||||
{ "adau1977", ADAU1977 },
|
||||
{ "adau1978", ADAU1978 },
|
||||
{ "adau1979", ADAU1978 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(spi, adau1977_spi_ids);
|
||||
|
||||
static struct spi_driver adau1977_spi_driver = {
|
||||
.driver = {
|
||||
.name = "adau1977",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adau1977_spi_probe,
|
||||
.remove = adau1977_spi_remove,
|
||||
.id_table = adau1977_spi_ids,
|
||||
};
|
||||
module_spi_driver(adau1977_spi_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ADAU1977/ADAU1978/ADAU1979 driver");
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
MODULE_LICENSE("GPL");
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* ADAU1977/ADAU1978/ADAU1979 driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#ifndef __SOUND_SOC_CODECS_ADAU1977_H__
|
||||
#define __SOUND_SOC_CODECS_ADAU1977_H__
|
||||
|
||||
#include <linux/regmap.h>
|
||||
|
||||
struct device;
|
||||
|
||||
enum adau1977_type {
|
||||
ADAU1977,
|
||||
ADAU1978,
|
||||
ADAU1979,
|
||||
};
|
||||
|
||||
int adau1977_probe(struct device *dev, struct regmap *regmap,
|
||||
enum adau1977_type type, void (*switch_mode)(struct device *dev));
|
||||
|
||||
extern const struct regmap_config adau1977_regmap_config;
|
||||
|
||||
enum adau1977_clk_id {
|
||||
ADAU1977_SYSCLK,
|
||||
};
|
||||
|
||||
enum adau1977_sysclk_src {
|
||||
ADAU1977_SYSCLK_SRC_MCLK,
|
||||
ADAU1977_SYSCLK_SRC_LRCLK,
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* ADAV801 audio driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/regmap.h>
|
||||
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "adav80x.h"
|
||||
|
||||
static const struct spi_device_id adav80x_spi_id[] = {
|
||||
{ "adav801", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(spi, adav80x_spi_id);
|
||||
|
||||
static int adav80x_spi_probe(struct spi_device *spi)
|
||||
{
|
||||
struct regmap_config config;
|
||||
|
||||
config = adav80x_regmap_config;
|
||||
config.read_flag_mask = 0x01;
|
||||
|
||||
return adav80x_bus_probe(&spi->dev, devm_regmap_init_spi(spi, &config));
|
||||
}
|
||||
|
||||
static int adav80x_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
snd_soc_unregister_codec(&spi->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct spi_driver adav80x_spi_driver = {
|
||||
.driver = {
|
||||
.name = "adav801",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adav80x_spi_probe,
|
||||
.remove = adav80x_spi_remove,
|
||||
.id_table = adav80x_spi_id,
|
||||
};
|
||||
module_spi_driver(adav80x_spi_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ADAV801 driver");
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
MODULE_AUTHOR("Yi Li <yi.li@analog.com>>");
|
||||
MODULE_LICENSE("GPL");
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* ADAV803 audio driver
|
||||
*
|
||||
* Copyright 2014 Analog Devices Inc.
|
||||
*
|
||||
* Licensed under the GPL-2.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/regmap.h>
|
||||
|
||||
#include <sound/soc.h>
|
||||
|
||||
#include "adav80x.h"
|
||||
|
||||
static const struct i2c_device_id adav803_id[] = {
|
||||
{ "adav803", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adav803_id);
|
||||
|
||||
static int adav803_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
return adav80x_bus_probe(&client->dev,
|
||||
devm_regmap_init_i2c(client, &adav80x_regmap_config));
|
||||
}
|
||||
|
||||
static int adav803_remove(struct i2c_client *client)
|
||||
{
|
||||
snd_soc_unregister_codec(&client->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct i2c_driver adav803_driver = {
|
||||
.driver = {
|
||||
.name = "adav803",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adav803_probe,
|
||||
.remove = adav803_remove,
|
||||
.id_table = adav803_id,
|
||||
};
|
||||
module_i2c_driver(adav803_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ADAV803 driver");
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
MODULE_AUTHOR("Yi Li <yi.li@analog.com>>");
|
||||
MODULE_LICENSE("GPL");
|
||||
+9
-122
@@ -8,17 +8,15 @@
|
||||
* Licensed under the GPL-2 or later.
|
||||
*/
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/slab.h>
|
||||
#include <sound/core.h>
|
||||
|
||||
#include <sound/pcm.h>
|
||||
#include <sound/pcm_params.h>
|
||||
#include <sound/tlv.h>
|
||||
#include <sound/soc.h>
|
||||
#include <sound/tlv.h>
|
||||
|
||||
#include "adav80x.h"
|
||||
|
||||
@@ -869,39 +867,26 @@ static struct snd_soc_codec_driver adav80x_codec_driver = {
|
||||
.num_dapm_routes = ARRAY_SIZE(adav80x_dapm_routes),
|
||||
};
|
||||
|
||||
static int adav80x_bus_probe(struct device *dev, struct regmap *regmap)
|
||||
int adav80x_bus_probe(struct device *dev, struct regmap *regmap)
|
||||
{
|
||||
struct adav80x *adav80x;
|
||||
int ret;
|
||||
|
||||
if (IS_ERR(regmap))
|
||||
return PTR_ERR(regmap);
|
||||
|
||||
adav80x = kzalloc(sizeof(*adav80x), GFP_KERNEL);
|
||||
adav80x = devm_kzalloc(dev, sizeof(*adav80x), GFP_KERNEL);
|
||||
if (!adav80x)
|
||||
return -ENOMEM;
|
||||
|
||||
|
||||
dev_set_drvdata(dev, adav80x);
|
||||
adav80x->regmap = regmap;
|
||||
|
||||
ret = snd_soc_register_codec(dev, &adav80x_codec_driver,
|
||||
return snd_soc_register_codec(dev, &adav80x_codec_driver,
|
||||
adav80x_dais, ARRAY_SIZE(adav80x_dais));
|
||||
if (ret)
|
||||
kfree(adav80x);
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(adav80x_bus_probe);
|
||||
|
||||
static int adav80x_bus_remove(struct device *dev)
|
||||
{
|
||||
snd_soc_unregister_codec(dev);
|
||||
kfree(dev_get_drvdata(dev));
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
static const struct regmap_config adav80x_spi_regmap_config = {
|
||||
const struct regmap_config adav80x_regmap_config = {
|
||||
.val_bits = 8,
|
||||
.pad_bits = 1,
|
||||
.reg_bits = 7,
|
||||
@@ -913,105 +898,7 @@ static const struct regmap_config adav80x_spi_regmap_config = {
|
||||
.reg_defaults = adav80x_reg_defaults,
|
||||
.num_reg_defaults = ARRAY_SIZE(adav80x_reg_defaults),
|
||||
};
|
||||
|
||||
static const struct spi_device_id adav80x_spi_id[] = {
|
||||
{ "adav801", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(spi, adav80x_spi_id);
|
||||
|
||||
static int adav80x_spi_probe(struct spi_device *spi)
|
||||
{
|
||||
return adav80x_bus_probe(&spi->dev,
|
||||
devm_regmap_init_spi(spi, &adav80x_spi_regmap_config));
|
||||
}
|
||||
|
||||
static int adav80x_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
return adav80x_bus_remove(&spi->dev);
|
||||
}
|
||||
|
||||
static struct spi_driver adav80x_spi_driver = {
|
||||
.driver = {
|
||||
.name = "adav801",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adav80x_spi_probe,
|
||||
.remove = adav80x_spi_remove,
|
||||
.id_table = adav80x_spi_id,
|
||||
};
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
static const struct regmap_config adav80x_i2c_regmap_config = {
|
||||
.val_bits = 8,
|
||||
.pad_bits = 1,
|
||||
.reg_bits = 7,
|
||||
|
||||
.max_register = ADAV80X_PLL_OUTE,
|
||||
|
||||
.cache_type = REGCACHE_RBTREE,
|
||||
.reg_defaults = adav80x_reg_defaults,
|
||||
.num_reg_defaults = ARRAY_SIZE(adav80x_reg_defaults),
|
||||
};
|
||||
|
||||
static const struct i2c_device_id adav80x_i2c_id[] = {
|
||||
{ "adav803", 0 },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adav80x_i2c_id);
|
||||
|
||||
static int adav80x_i2c_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
return adav80x_bus_probe(&client->dev,
|
||||
devm_regmap_init_i2c(client, &adav80x_i2c_regmap_config));
|
||||
}
|
||||
|
||||
static int adav80x_i2c_remove(struct i2c_client *client)
|
||||
{
|
||||
return adav80x_bus_remove(&client->dev);
|
||||
}
|
||||
|
||||
static struct i2c_driver adav80x_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "adav803",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = adav80x_i2c_probe,
|
||||
.remove = adav80x_i2c_remove,
|
||||
.id_table = adav80x_i2c_id,
|
||||
};
|
||||
#endif
|
||||
|
||||
static int __init adav80x_init(void)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
ret = i2c_add_driver(&adav80x_i2c_driver);
|
||||
if (ret)
|
||||
return ret;
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
ret = spi_register_driver(&adav80x_spi_driver);
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
module_init(adav80x_init);
|
||||
|
||||
static void __exit adav80x_exit(void)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_I2C)
|
||||
i2c_del_driver(&adav80x_i2c_driver);
|
||||
#endif
|
||||
#if defined(CONFIG_SPI_MASTER)
|
||||
spi_unregister_driver(&adav80x_spi_driver);
|
||||
#endif
|
||||
}
|
||||
module_exit(adav80x_exit);
|
||||
EXPORT_SYMBOL_GPL(adav80x_regmap_config);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC ADAV80x driver");
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
|
||||
@@ -9,6 +9,13 @@
|
||||
#ifndef _ADAV80X_H
|
||||
#define _ADAV80X_H
|
||||
|
||||
#include <linux/regmap.h>
|
||||
|
||||
struct device;
|
||||
|
||||
extern const struct regmap_config adav80x_regmap_config;
|
||||
int adav80x_bus_probe(struct device *dev, struct regmap *regmap);
|
||||
|
||||
enum adav80x_pll_src {
|
||||
ADAV80X_PLL_SRC_XIN,
|
||||
ADAV80X_PLL_SRC_XTAL,
|
||||
|
||||
@@ -174,8 +174,6 @@ static int ak4104_probe(struct snd_soc_codec *codec)
|
||||
struct ak4104_private *ak4104 = snd_soc_codec_get_drvdata(codec);
|
||||
int ret;
|
||||
|
||||
codec->control_data = ak4104->regmap;
|
||||
|
||||
/* set power-up and non-reset bits */
|
||||
ret = regmap_update_bits(ak4104->regmap, AK4104_REG_CONTROL1,
|
||||
AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN,
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user