ASoC: max98088: replace codec to component
Now we can replace Codec to Component. Let's do it. Note: xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 0 -> .idle_bias_on = 1 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1 - -> .endianness = 1 - -> .non_legacy_dai_naming = 1 Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7928b2cbe5
commit
3f64507697
|
@ -307,7 +307,7 @@ static const struct regmap_config max98088_regmap = {
|
|||
/*
|
||||
* Load equalizer DSP coefficient configurations registers
|
||||
*/
|
||||
static void m98088_eq_band(struct snd_soc_codec *codec, unsigned int dai,
|
||||
static void m98088_eq_band(struct snd_soc_component *component, unsigned int dai,
|
||||
unsigned int band, u16 *coefs)
|
||||
{
|
||||
unsigned int eq_reg;
|
||||
|
@ -325,8 +325,8 @@ static void m98088_eq_band(struct snd_soc_codec *codec, unsigned int dai,
|
|||
|
||||
/* Step through the registers and coefs */
|
||||
for (i = 0; i < M98088_COEFS_PER_BAND; i++) {
|
||||
snd_soc_write(codec, eq_reg++, M98088_BYTE1(coefs[i]));
|
||||
snd_soc_write(codec, eq_reg++, M98088_BYTE0(coefs[i]));
|
||||
snd_soc_component_write(component, eq_reg++, M98088_BYTE1(coefs[i]));
|
||||
snd_soc_component_write(component, eq_reg++, M98088_BYTE0(coefs[i]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -380,12 +380,12 @@ static SOC_ENUM_SINGLE_DECL(max98088_dai1_adc_filter_enum,
|
|||
static int max98088_mic1pre_set(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
unsigned int sel = ucontrol->value.integer.value[0];
|
||||
|
||||
max98088->mic1pre = sel;
|
||||
snd_soc_update_bits(codec, M98088_REG_35_LVL_MIC1, M98088_MICPRE_MASK,
|
||||
snd_soc_component_update_bits(component, M98088_REG_35_LVL_MIC1, M98088_MICPRE_MASK,
|
||||
(1+sel)<<M98088_MICPRE_SHIFT);
|
||||
|
||||
return 0;
|
||||
|
@ -394,8 +394,8 @@ static int max98088_mic1pre_set(struct snd_kcontrol *kcontrol,
|
|||
static int max98088_mic1pre_get(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
ucontrol->value.integer.value[0] = max98088->mic1pre;
|
||||
return 0;
|
||||
|
@ -404,12 +404,12 @@ static int max98088_mic1pre_get(struct snd_kcontrol *kcontrol,
|
|||
static int max98088_mic2pre_set(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
unsigned int sel = ucontrol->value.integer.value[0];
|
||||
|
||||
max98088->mic2pre = sel;
|
||||
snd_soc_update_bits(codec, M98088_REG_36_LVL_MIC2, M98088_MICPRE_MASK,
|
||||
snd_soc_component_update_bits(component, M98088_REG_36_LVL_MIC2, M98088_MICPRE_MASK,
|
||||
(1+sel)<<M98088_MICPRE_SHIFT);
|
||||
|
||||
return 0;
|
||||
|
@ -418,8 +418,8 @@ static int max98088_mic2pre_set(struct snd_kcontrol *kcontrol,
|
|||
static int max98088_mic2pre_get(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
ucontrol->value.integer.value[0] = max98088->mic2pre;
|
||||
return 0;
|
||||
|
@ -617,21 +617,21 @@ static const struct snd_kcontrol_new max98088_right_ADC_mixer_controls[] = {
|
|||
static int max98088_mic_event(struct snd_soc_dapm_widget *w,
|
||||
struct snd_kcontrol *kcontrol, int event)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
switch (event) {
|
||||
case SND_SOC_DAPM_POST_PMU:
|
||||
if (w->reg == M98088_REG_35_LVL_MIC1) {
|
||||
snd_soc_update_bits(codec, w->reg, M98088_MICPRE_MASK,
|
||||
snd_soc_component_update_bits(component, w->reg, M98088_MICPRE_MASK,
|
||||
(1+max98088->mic1pre)<<M98088_MICPRE_SHIFT);
|
||||
} else {
|
||||
snd_soc_update_bits(codec, w->reg, M98088_MICPRE_MASK,
|
||||
snd_soc_component_update_bits(component, w->reg, M98088_MICPRE_MASK,
|
||||
(1+max98088->mic2pre)<<M98088_MICPRE_SHIFT);
|
||||
}
|
||||
break;
|
||||
case SND_SOC_DAPM_POST_PMD:
|
||||
snd_soc_update_bits(codec, w->reg, M98088_MICPRE_MASK, 0);
|
||||
snd_soc_component_update_bits(component, w->reg, M98088_MICPRE_MASK, 0);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
|
@ -647,8 +647,8 @@ static int max98088_mic_event(struct snd_soc_dapm_widget *w,
|
|||
static int max98088_line_pga(struct snd_soc_dapm_widget *w,
|
||||
int event, int line, u8 channel)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
u8 *state;
|
||||
|
||||
if (WARN_ON(!(channel == 1 || channel == 2)))
|
||||
|
@ -668,13 +668,13 @@ static int max98088_line_pga(struct snd_soc_dapm_widget *w,
|
|||
switch (event) {
|
||||
case SND_SOC_DAPM_POST_PMU:
|
||||
*state |= channel;
|
||||
snd_soc_update_bits(codec, w->reg,
|
||||
snd_soc_component_update_bits(component, w->reg,
|
||||
(1 << w->shift), (1 << w->shift));
|
||||
break;
|
||||
case SND_SOC_DAPM_POST_PMD:
|
||||
*state &= ~channel;
|
||||
if (*state == 0) {
|
||||
snd_soc_update_bits(codec, w->reg,
|
||||
snd_soc_component_update_bits(component, w->reg,
|
||||
(1 << w->shift), 0);
|
||||
}
|
||||
break;
|
||||
|
@ -963,8 +963,8 @@ static int max98088_dai1_hw_params(struct snd_pcm_substream *substream,
|
|||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_codec *codec = dai->codec;
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = dai->component;
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_cdata *cdata;
|
||||
unsigned long long ni;
|
||||
unsigned int rate;
|
||||
|
@ -976,51 +976,51 @@ static int max98088_dai1_hw_params(struct snd_pcm_substream *substream,
|
|||
|
||||
switch (params_width(params)) {
|
||||
case 16:
|
||||
snd_soc_update_bits(codec, M98088_REG_14_DAI1_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_14_DAI1_FORMAT,
|
||||
M98088_DAI_WS, 0);
|
||||
break;
|
||||
case 24:
|
||||
snd_soc_update_bits(codec, M98088_REG_14_DAI1_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_14_DAI1_FORMAT,
|
||||
M98088_DAI_WS, M98088_DAI_WS);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS, M98088_SHDNRUN, 0);
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS, M98088_SHDNRUN, 0);
|
||||
|
||||
if (rate_value(rate, ®val))
|
||||
return -EINVAL;
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_11_DAI1_CLKMODE,
|
||||
snd_soc_component_update_bits(component, M98088_REG_11_DAI1_CLKMODE,
|
||||
M98088_CLKMODE_MASK, regval);
|
||||
cdata->rate = rate;
|
||||
|
||||
/* Configure NI when operating as master */
|
||||
if (snd_soc_read(codec, M98088_REG_14_DAI1_FORMAT)
|
||||
if (snd_soc_component_read32(component, M98088_REG_14_DAI1_FORMAT)
|
||||
& M98088_DAI_MAS) {
|
||||
if (max98088->sysclk == 0) {
|
||||
dev_err(codec->dev, "Invalid system clock frequency\n");
|
||||
dev_err(component->dev, "Invalid system clock frequency\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
ni = 65536ULL * (rate < 50000 ? 96ULL : 48ULL)
|
||||
* (unsigned long long int)rate;
|
||||
do_div(ni, (unsigned long long int)max98088->sysclk);
|
||||
snd_soc_write(codec, M98088_REG_12_DAI1_CLKCFG_HI,
|
||||
snd_soc_component_write(component, M98088_REG_12_DAI1_CLKCFG_HI,
|
||||
(ni >> 8) & 0x7F);
|
||||
snd_soc_write(codec, M98088_REG_13_DAI1_CLKCFG_LO,
|
||||
snd_soc_component_write(component, M98088_REG_13_DAI1_CLKCFG_LO,
|
||||
ni & 0xFF);
|
||||
}
|
||||
|
||||
/* Update sample rate mode */
|
||||
if (rate < 50000)
|
||||
snd_soc_update_bits(codec, M98088_REG_18_DAI1_FILTERS,
|
||||
snd_soc_component_update_bits(component, M98088_REG_18_DAI1_FILTERS,
|
||||
M98088_DAI_DHF, 0);
|
||||
else
|
||||
snd_soc_update_bits(codec, M98088_REG_18_DAI1_FILTERS,
|
||||
snd_soc_component_update_bits(component, M98088_REG_18_DAI1_FILTERS,
|
||||
M98088_DAI_DHF, M98088_DAI_DHF);
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS, M98088_SHDNRUN,
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS, M98088_SHDNRUN,
|
||||
M98088_SHDNRUN);
|
||||
|
||||
return 0;
|
||||
|
@ -1030,8 +1030,8 @@ static int max98088_dai2_hw_params(struct snd_pcm_substream *substream,
|
|||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_codec *codec = dai->codec;
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = dai->component;
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_cdata *cdata;
|
||||
unsigned long long ni;
|
||||
unsigned int rate;
|
||||
|
@ -1043,51 +1043,51 @@ static int max98088_dai2_hw_params(struct snd_pcm_substream *substream,
|
|||
|
||||
switch (params_width(params)) {
|
||||
case 16:
|
||||
snd_soc_update_bits(codec, M98088_REG_1C_DAI2_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_1C_DAI2_FORMAT,
|
||||
M98088_DAI_WS, 0);
|
||||
break;
|
||||
case 24:
|
||||
snd_soc_update_bits(codec, M98088_REG_1C_DAI2_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_1C_DAI2_FORMAT,
|
||||
M98088_DAI_WS, M98088_DAI_WS);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS, M98088_SHDNRUN, 0);
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS, M98088_SHDNRUN, 0);
|
||||
|
||||
if (rate_value(rate, ®val))
|
||||
return -EINVAL;
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_19_DAI2_CLKMODE,
|
||||
snd_soc_component_update_bits(component, M98088_REG_19_DAI2_CLKMODE,
|
||||
M98088_CLKMODE_MASK, regval);
|
||||
cdata->rate = rate;
|
||||
|
||||
/* Configure NI when operating as master */
|
||||
if (snd_soc_read(codec, M98088_REG_1C_DAI2_FORMAT)
|
||||
if (snd_soc_component_read32(component, M98088_REG_1C_DAI2_FORMAT)
|
||||
& M98088_DAI_MAS) {
|
||||
if (max98088->sysclk == 0) {
|
||||
dev_err(codec->dev, "Invalid system clock frequency\n");
|
||||
dev_err(component->dev, "Invalid system clock frequency\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
ni = 65536ULL * (rate < 50000 ? 96ULL : 48ULL)
|
||||
* (unsigned long long int)rate;
|
||||
do_div(ni, (unsigned long long int)max98088->sysclk);
|
||||
snd_soc_write(codec, M98088_REG_1A_DAI2_CLKCFG_HI,
|
||||
snd_soc_component_write(component, M98088_REG_1A_DAI2_CLKCFG_HI,
|
||||
(ni >> 8) & 0x7F);
|
||||
snd_soc_write(codec, M98088_REG_1B_DAI2_CLKCFG_LO,
|
||||
snd_soc_component_write(component, M98088_REG_1B_DAI2_CLKCFG_LO,
|
||||
ni & 0xFF);
|
||||
}
|
||||
|
||||
/* Update sample rate mode */
|
||||
if (rate < 50000)
|
||||
snd_soc_update_bits(codec, M98088_REG_20_DAI2_FILTERS,
|
||||
snd_soc_component_update_bits(component, M98088_REG_20_DAI2_FILTERS,
|
||||
M98088_DAI_DHF, 0);
|
||||
else
|
||||
snd_soc_update_bits(codec, M98088_REG_20_DAI2_FILTERS,
|
||||
snd_soc_component_update_bits(component, M98088_REG_20_DAI2_FILTERS,
|
||||
M98088_DAI_DHF, M98088_DAI_DHF);
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS, M98088_SHDNRUN,
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS, M98088_SHDNRUN,
|
||||
M98088_SHDNRUN);
|
||||
|
||||
return 0;
|
||||
|
@ -1096,8 +1096,8 @@ static int max98088_dai2_hw_params(struct snd_pcm_substream *substream,
|
|||
static int max98088_dai_set_sysclk(struct snd_soc_dai *dai,
|
||||
int clk_id, unsigned int freq, int dir)
|
||||
{
|
||||
struct snd_soc_codec *codec = dai->codec;
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = dai->component;
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
/* Requested clock frequency is already setup */
|
||||
if (freq == max98088->sysclk)
|
||||
|
@ -1108,18 +1108,18 @@ static int max98088_dai_set_sysclk(struct snd_soc_dai *dai,
|
|||
* 0x02 (when master clk is 20MHz to 30MHz)..
|
||||
*/
|
||||
if ((freq >= 10000000) && (freq < 20000000)) {
|
||||
snd_soc_write(codec, M98088_REG_10_SYS_CLK, 0x10);
|
||||
snd_soc_component_write(component, M98088_REG_10_SYS_CLK, 0x10);
|
||||
} else if ((freq >= 20000000) && (freq < 30000000)) {
|
||||
snd_soc_write(codec, M98088_REG_10_SYS_CLK, 0x20);
|
||||
snd_soc_component_write(component, M98088_REG_10_SYS_CLK, 0x20);
|
||||
} else {
|
||||
dev_err(codec->dev, "Invalid master clock frequency\n");
|
||||
dev_err(component->dev, "Invalid master clock frequency\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (snd_soc_read(codec, M98088_REG_51_PWR_SYS) & M98088_SHDNRUN) {
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS,
|
||||
if (snd_soc_component_read32(component, M98088_REG_51_PWR_SYS) & M98088_SHDNRUN) {
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS,
|
||||
M98088_SHDNRUN, 0);
|
||||
snd_soc_update_bits(codec, M98088_REG_51_PWR_SYS,
|
||||
snd_soc_component_update_bits(component, M98088_REG_51_PWR_SYS,
|
||||
M98088_SHDNRUN, M98088_SHDNRUN);
|
||||
}
|
||||
|
||||
|
@ -1132,8 +1132,8 @@ static int max98088_dai_set_sysclk(struct snd_soc_dai *dai,
|
|||
static int max98088_dai1_set_fmt(struct snd_soc_dai *codec_dai,
|
||||
unsigned int fmt)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = codec_dai->component;
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_cdata *cdata;
|
||||
u8 reg15val;
|
||||
u8 reg14val = 0;
|
||||
|
@ -1146,9 +1146,9 @@ static int max98088_dai1_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
/* Slave mode PLL */
|
||||
snd_soc_write(codec, M98088_REG_12_DAI1_CLKCFG_HI,
|
||||
snd_soc_component_write(component, M98088_REG_12_DAI1_CLKCFG_HI,
|
||||
0x80);
|
||||
snd_soc_write(codec, M98088_REG_13_DAI1_CLKCFG_LO,
|
||||
snd_soc_component_write(component, M98088_REG_13_DAI1_CLKCFG_LO,
|
||||
0x00);
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
|
@ -1158,7 +1158,7 @@ static int max98088_dai1_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
case SND_SOC_DAIFMT_CBS_CFM:
|
||||
case SND_SOC_DAIFMT_CBM_CFS:
|
||||
default:
|
||||
dev_err(codec->dev, "Clock mode unsupported");
|
||||
dev_err(component->dev, "Clock mode unsupported");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
@ -1188,14 +1188,14 @@ static int max98088_dai1_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_14_DAI1_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_14_DAI1_FORMAT,
|
||||
M98088_DAI_MAS | M98088_DAI_DLY | M98088_DAI_BCI |
|
||||
M98088_DAI_WCI, reg14val);
|
||||
|
||||
reg15val = M98088_DAI_BSEL64;
|
||||
if (max98088->digmic)
|
||||
reg15val |= M98088_DAI_OSR64;
|
||||
snd_soc_write(codec, M98088_REG_15_DAI1_CLOCK, reg15val);
|
||||
snd_soc_component_write(component, M98088_REG_15_DAI1_CLOCK, reg15val);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -1204,8 +1204,8 @@ static int max98088_dai1_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
static int max98088_dai2_set_fmt(struct snd_soc_dai *codec_dai,
|
||||
unsigned int fmt)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = codec_dai->component;
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_cdata *cdata;
|
||||
u8 reg1Cval = 0;
|
||||
|
||||
|
@ -1217,9 +1217,9 @@ static int max98088_dai2_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
/* Slave mode PLL */
|
||||
snd_soc_write(codec, M98088_REG_1A_DAI2_CLKCFG_HI,
|
||||
snd_soc_component_write(component, M98088_REG_1A_DAI2_CLKCFG_HI,
|
||||
0x80);
|
||||
snd_soc_write(codec, M98088_REG_1B_DAI2_CLKCFG_LO,
|
||||
snd_soc_component_write(component, M98088_REG_1B_DAI2_CLKCFG_LO,
|
||||
0x00);
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
|
@ -1229,7 +1229,7 @@ static int max98088_dai2_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
case SND_SOC_DAIFMT_CBS_CFM:
|
||||
case SND_SOC_DAIFMT_CBM_CFS:
|
||||
default:
|
||||
dev_err(codec->dev, "Clock mode unsupported");
|
||||
dev_err(component->dev, "Clock mode unsupported");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
@ -1259,11 +1259,11 @@ static int max98088_dai2_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_1C_DAI2_FORMAT,
|
||||
snd_soc_component_update_bits(component, M98088_REG_1C_DAI2_FORMAT,
|
||||
M98088_DAI_MAS | M98088_DAI_DLY | M98088_DAI_BCI |
|
||||
M98088_DAI_WCI, reg1Cval);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_1D_DAI2_CLOCK,
|
||||
snd_soc_component_write(component, M98088_REG_1D_DAI2_CLOCK,
|
||||
M98088_DAI_BSEL64);
|
||||
}
|
||||
|
||||
|
@ -1272,7 +1272,7 @@ static int max98088_dai2_set_fmt(struct snd_soc_dai *codec_dai,
|
|||
|
||||
static int max98088_dai1_digital_mute(struct snd_soc_dai *codec_dai, int mute)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
struct snd_soc_component *component = codec_dai->component;
|
||||
int reg;
|
||||
|
||||
if (mute)
|
||||
|
@ -1280,14 +1280,14 @@ static int max98088_dai1_digital_mute(struct snd_soc_dai *codec_dai, int mute)
|
|||
else
|
||||
reg = 0;
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_2F_LVL_DAI1_PLAY,
|
||||
snd_soc_component_update_bits(component, M98088_REG_2F_LVL_DAI1_PLAY,
|
||||
M98088_DAI_MUTE_MASK, reg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int max98088_dai2_digital_mute(struct snd_soc_dai *codec_dai, int mute)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
struct snd_soc_component *component = codec_dai->component;
|
||||
int reg;
|
||||
|
||||
if (mute)
|
||||
|
@ -1295,15 +1295,15 @@ static int max98088_dai2_digital_mute(struct snd_soc_dai *codec_dai, int mute)
|
|||
else
|
||||
reg = 0;
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_31_LVL_DAI2_PLAY,
|
||||
snd_soc_component_update_bits(component, M98088_REG_31_LVL_DAI2_PLAY,
|
||||
M98088_DAI_MUTE_MASK, reg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int max98088_set_bias_level(struct snd_soc_codec *codec,
|
||||
static int max98088_set_bias_level(struct snd_soc_component *component,
|
||||
enum snd_soc_bias_level level)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
switch (level) {
|
||||
case SND_SOC_BIAS_ON:
|
||||
|
@ -1313,15 +1313,15 @@ static int max98088_set_bias_level(struct snd_soc_codec *codec,
|
|||
break;
|
||||
|
||||
case SND_SOC_BIAS_STANDBY:
|
||||
if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF)
|
||||
if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF)
|
||||
regcache_sync(max98088->regmap);
|
||||
|
||||
snd_soc_update_bits(codec, M98088_REG_4C_PWR_EN_IN,
|
||||
snd_soc_component_update_bits(component, M98088_REG_4C_PWR_EN_IN,
|
||||
M98088_MBEN, M98088_MBEN);
|
||||
break;
|
||||
|
||||
case SND_SOC_BIAS_OFF:
|
||||
snd_soc_update_bits(codec, M98088_REG_4C_PWR_EN_IN,
|
||||
snd_soc_component_update_bits(component, M98088_REG_4C_PWR_EN_IN,
|
||||
M98088_MBEN, 0);
|
||||
regcache_mark_dirty(max98088->regmap);
|
||||
break;
|
||||
|
@ -1380,7 +1380,7 @@ static struct snd_soc_dai_driver max98088_dai[] = {
|
|||
|
||||
static const char *eq_mode_name[] = {"EQ1 Mode", "EQ2 Mode"};
|
||||
|
||||
static int max98088_get_channel(struct snd_soc_codec *codec, const char *name)
|
||||
static int max98088_get_channel(struct snd_soc_component *component, const char *name)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -1389,13 +1389,13 @@ static int max98088_get_channel(struct snd_soc_codec *codec, const char *name)
|
|||
return i;
|
||||
|
||||
/* Shouldn't happen */
|
||||
dev_err(codec->dev, "Bad EQ channel name '%s'\n", name);
|
||||
dev_err(component->dev, "Bad EQ channel name '%s'\n", name);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
static void max98088_setup_eq1(struct snd_soc_codec *codec)
|
||||
static void max98088_setup_eq1(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
struct max98088_eq_cfg *coef_set;
|
||||
int best, best_val, save, i, sel, fs;
|
||||
|
@ -1420,29 +1420,29 @@ static void max98088_setup_eq1(struct snd_soc_codec *codec)
|
|||
}
|
||||
}
|
||||
|
||||
dev_dbg(codec->dev, "Selected %s/%dHz for %dHz sample rate\n",
|
||||
dev_dbg(component->dev, "Selected %s/%dHz for %dHz sample rate\n",
|
||||
pdata->eq_cfg[best].name,
|
||||
pdata->eq_cfg[best].rate, fs);
|
||||
|
||||
/* Disable EQ while configuring, and save current on/off state */
|
||||
save = snd_soc_read(codec, M98088_REG_49_CFG_LEVEL);
|
||||
snd_soc_update_bits(codec, M98088_REG_49_CFG_LEVEL, M98088_EQ1EN, 0);
|
||||
save = snd_soc_component_read32(component, M98088_REG_49_CFG_LEVEL);
|
||||
snd_soc_component_update_bits(component, M98088_REG_49_CFG_LEVEL, M98088_EQ1EN, 0);
|
||||
|
||||
coef_set = &pdata->eq_cfg[sel];
|
||||
|
||||
m98088_eq_band(codec, 0, 0, coef_set->band1);
|
||||
m98088_eq_band(codec, 0, 1, coef_set->band2);
|
||||
m98088_eq_band(codec, 0, 2, coef_set->band3);
|
||||
m98088_eq_band(codec, 0, 3, coef_set->band4);
|
||||
m98088_eq_band(codec, 0, 4, coef_set->band5);
|
||||
m98088_eq_band(component, 0, 0, coef_set->band1);
|
||||
m98088_eq_band(component, 0, 1, coef_set->band2);
|
||||
m98088_eq_band(component, 0, 2, coef_set->band3);
|
||||
m98088_eq_band(component, 0, 3, coef_set->band4);
|
||||
m98088_eq_band(component, 0, 4, coef_set->band5);
|
||||
|
||||
/* Restore the original on/off state */
|
||||
snd_soc_update_bits(codec, M98088_REG_49_CFG_LEVEL, M98088_EQ1EN, save);
|
||||
snd_soc_component_update_bits(component, M98088_REG_49_CFG_LEVEL, M98088_EQ1EN, save);
|
||||
}
|
||||
|
||||
static void max98088_setup_eq2(struct snd_soc_codec *codec)
|
||||
static void max98088_setup_eq2(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
struct max98088_eq_cfg *coef_set;
|
||||
int best, best_val, save, i, sel, fs;
|
||||
|
@ -1467,34 +1467,34 @@ static void max98088_setup_eq2(struct snd_soc_codec *codec)
|
|||
}
|
||||
}
|
||||
|
||||
dev_dbg(codec->dev, "Selected %s/%dHz for %dHz sample rate\n",
|
||||
dev_dbg(component->dev, "Selected %s/%dHz for %dHz sample rate\n",
|
||||
pdata->eq_cfg[best].name,
|
||||
pdata->eq_cfg[best].rate, fs);
|
||||
|
||||
/* Disable EQ while configuring, and save current on/off state */
|
||||
save = snd_soc_read(codec, M98088_REG_49_CFG_LEVEL);
|
||||
snd_soc_update_bits(codec, M98088_REG_49_CFG_LEVEL, M98088_EQ2EN, 0);
|
||||
save = snd_soc_component_read32(component, M98088_REG_49_CFG_LEVEL);
|
||||
snd_soc_component_update_bits(component, M98088_REG_49_CFG_LEVEL, M98088_EQ2EN, 0);
|
||||
|
||||
coef_set = &pdata->eq_cfg[sel];
|
||||
|
||||
m98088_eq_band(codec, 1, 0, coef_set->band1);
|
||||
m98088_eq_band(codec, 1, 1, coef_set->band2);
|
||||
m98088_eq_band(codec, 1, 2, coef_set->band3);
|
||||
m98088_eq_band(codec, 1, 3, coef_set->band4);
|
||||
m98088_eq_band(codec, 1, 4, coef_set->band5);
|
||||
m98088_eq_band(component, 1, 0, coef_set->band1);
|
||||
m98088_eq_band(component, 1, 1, coef_set->band2);
|
||||
m98088_eq_band(component, 1, 2, coef_set->band3);
|
||||
m98088_eq_band(component, 1, 3, coef_set->band4);
|
||||
m98088_eq_band(component, 1, 4, coef_set->band5);
|
||||
|
||||
/* Restore the original on/off state */
|
||||
snd_soc_update_bits(codec, M98088_REG_49_CFG_LEVEL, M98088_EQ2EN,
|
||||
snd_soc_component_update_bits(component, M98088_REG_49_CFG_LEVEL, M98088_EQ2EN,
|
||||
save);
|
||||
}
|
||||
|
||||
static int max98088_put_eq_enum(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
int channel = max98088_get_channel(codec, kcontrol->id.name);
|
||||
int channel = max98088_get_channel(component, kcontrol->id.name);
|
||||
struct max98088_cdata *cdata;
|
||||
int sel = ucontrol->value.enumerated.item[0];
|
||||
|
||||
|
@ -1510,10 +1510,10 @@ static int max98088_put_eq_enum(struct snd_kcontrol *kcontrol,
|
|||
|
||||
switch (channel) {
|
||||
case 0:
|
||||
max98088_setup_eq1(codec);
|
||||
max98088_setup_eq1(component);
|
||||
break;
|
||||
case 1:
|
||||
max98088_setup_eq2(codec);
|
||||
max98088_setup_eq2(component);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1523,9 +1523,9 @@ static int max98088_put_eq_enum(struct snd_kcontrol *kcontrol,
|
|||
static int max98088_get_eq_enum(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
int channel = max98088_get_channel(codec, kcontrol->id.name);
|
||||
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
int channel = max98088_get_channel(component, kcontrol->id.name);
|
||||
struct max98088_cdata *cdata;
|
||||
|
||||
if (channel < 0)
|
||||
|
@ -1536,9 +1536,9 @@ static int max98088_get_eq_enum(struct snd_kcontrol *kcontrol,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void max98088_handle_eq_pdata(struct snd_soc_codec *codec)
|
||||
static void max98088_handle_eq_pdata(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
struct max98088_eq_cfg *cfg;
|
||||
unsigned int cfgcnt;
|
||||
|
@ -1591,19 +1591,19 @@ static void max98088_handle_eq_pdata(struct snd_soc_codec *codec)
|
|||
max98088->eq_enum.texts = max98088->eq_texts;
|
||||
max98088->eq_enum.items = max98088->eq_textcnt;
|
||||
|
||||
ret = snd_soc_add_codec_controls(codec, controls, ARRAY_SIZE(controls));
|
||||
ret = snd_soc_add_component_controls(component, controls, ARRAY_SIZE(controls));
|
||||
if (ret != 0)
|
||||
dev_err(codec->dev, "Failed to add EQ control: %d\n", ret);
|
||||
dev_err(component->dev, "Failed to add EQ control: %d\n", ret);
|
||||
}
|
||||
|
||||
static void max98088_handle_pdata(struct snd_soc_codec *codec)
|
||||
static void max98088_handle_pdata(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
u8 regval = 0;
|
||||
|
||||
if (!pdata) {
|
||||
dev_dbg(codec->dev, "No platform data\n");
|
||||
dev_dbg(component->dev, "No platform data\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1616,21 +1616,21 @@ static void max98088_handle_pdata(struct snd_soc_codec *codec)
|
|||
|
||||
max98088->digmic = (regval ? 1 : 0);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_48_CFG_MIC, regval);
|
||||
snd_soc_component_write(component, M98088_REG_48_CFG_MIC, regval);
|
||||
|
||||
/* Configure receiver output */
|
||||
regval = ((pdata->receiver_mode) ? M98088_REC_LINEMODE : 0);
|
||||
snd_soc_update_bits(codec, M98088_REG_2A_MIC_REC_CNTL,
|
||||
snd_soc_component_update_bits(component, M98088_REG_2A_MIC_REC_CNTL,
|
||||
M98088_REC_LINEMODE_MASK, regval);
|
||||
|
||||
/* Configure equalizers */
|
||||
if (pdata->eq_cfgcnt)
|
||||
max98088_handle_eq_pdata(codec);
|
||||
max98088_handle_eq_pdata(component);
|
||||
}
|
||||
|
||||
static int max98088_probe(struct snd_soc_codec *codec)
|
||||
static int max98088_probe(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
struct max98088_cdata *cdata;
|
||||
int ret = 0;
|
||||
|
||||
|
@ -1658,60 +1658,59 @@ static int max98088_probe(struct snd_soc_codec *codec)
|
|||
max98088->mic1pre = 0;
|
||||
max98088->mic2pre = 0;
|
||||
|
||||
ret = snd_soc_read(codec, M98088_REG_FF_REV_ID);
|
||||
ret = snd_soc_component_read32(component, M98088_REG_FF_REV_ID);
|
||||
if (ret < 0) {
|
||||
dev_err(codec->dev, "Failed to read device revision: %d\n",
|
||||
dev_err(component->dev, "Failed to read device revision: %d\n",
|
||||
ret);
|
||||
goto err_access;
|
||||
}
|
||||
dev_info(codec->dev, "revision %c\n", ret - 0x40 + 'A');
|
||||
dev_info(component->dev, "revision %c\n", ret - 0x40 + 'A');
|
||||
|
||||
snd_soc_write(codec, M98088_REG_51_PWR_SYS, M98088_PWRSV);
|
||||
snd_soc_component_write(component, M98088_REG_51_PWR_SYS, M98088_PWRSV);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_0F_IRQ_ENABLE, 0x00);
|
||||
snd_soc_component_write(component, M98088_REG_0F_IRQ_ENABLE, 0x00);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_22_MIX_DAC,
|
||||
snd_soc_component_write(component, M98088_REG_22_MIX_DAC,
|
||||
M98088_DAI1L_TO_DACL|M98088_DAI2L_TO_DACL|
|
||||
M98088_DAI1R_TO_DACR|M98088_DAI2R_TO_DACR);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_4E_BIAS_CNTL, 0xF0);
|
||||
snd_soc_write(codec, M98088_REG_50_DAC_BIAS2, 0x0F);
|
||||
snd_soc_component_write(component, M98088_REG_4E_BIAS_CNTL, 0xF0);
|
||||
snd_soc_component_write(component, M98088_REG_50_DAC_BIAS2, 0x0F);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_16_DAI1_IOCFG,
|
||||
snd_soc_component_write(component, M98088_REG_16_DAI1_IOCFG,
|
||||
M98088_S1NORMAL|M98088_SDATA);
|
||||
|
||||
snd_soc_write(codec, M98088_REG_1E_DAI2_IOCFG,
|
||||
snd_soc_component_write(component, M98088_REG_1E_DAI2_IOCFG,
|
||||
M98088_S2NORMAL|M98088_SDATA);
|
||||
|
||||
max98088_handle_pdata(codec);
|
||||
max98088_handle_pdata(component);
|
||||
|
||||
err_access:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int max98088_remove(struct snd_soc_codec *codec)
|
||||
static void max98088_remove(struct snd_soc_component *component)
|
||||
{
|
||||
struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
|
||||
struct max98088_priv *max98088 = snd_soc_component_get_drvdata(component);
|
||||
|
||||
kfree(max98088->eq_texts);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct snd_soc_codec_driver soc_codec_dev_max98088 = {
|
||||
.probe = max98088_probe,
|
||||
.remove = max98088_remove,
|
||||
.set_bias_level = max98088_set_bias_level,
|
||||
.suspend_bias_off = true,
|
||||
|
||||
.component_driver = {
|
||||
.controls = max98088_snd_controls,
|
||||
.num_controls = ARRAY_SIZE(max98088_snd_controls),
|
||||
.dapm_widgets = max98088_dapm_widgets,
|
||||
.num_dapm_widgets = ARRAY_SIZE(max98088_dapm_widgets),
|
||||
.dapm_routes = max98088_audio_map,
|
||||
.num_dapm_routes = ARRAY_SIZE(max98088_audio_map),
|
||||
},
|
||||
static const struct snd_soc_component_driver soc_component_dev_max98088 = {
|
||||
.probe = max98088_probe,
|
||||
.remove = max98088_remove,
|
||||
.set_bias_level = max98088_set_bias_level,
|
||||
.controls = max98088_snd_controls,
|
||||
.num_controls = ARRAY_SIZE(max98088_snd_controls),
|
||||
.dapm_widgets = max98088_dapm_widgets,
|
||||
.num_dapm_widgets = ARRAY_SIZE(max98088_dapm_widgets),
|
||||
.dapm_routes = max98088_audio_map,
|
||||
.num_dapm_routes = ARRAY_SIZE(max98088_audio_map),
|
||||
.suspend_bias_off = 1,
|
||||
.idle_bias_on = 1,
|
||||
.use_pmdown_time = 1,
|
||||
.endianness = 1,
|
||||
.non_legacy_dai_naming = 1,
|
||||
};
|
||||
|
||||
static int max98088_i2c_probe(struct i2c_client *i2c,
|
||||
|
@ -1734,17 +1733,11 @@ static int max98088_i2c_probe(struct i2c_client *i2c,
|
|||
i2c_set_clientdata(i2c, max98088);
|
||||
max98088->pdata = i2c->dev.platform_data;
|
||||
|
||||
ret = snd_soc_register_codec(&i2c->dev,
|
||||
&soc_codec_dev_max98088, &max98088_dai[0], 2);
|
||||
ret = devm_snd_soc_register_component(&i2c->dev,
|
||||
&soc_component_dev_max98088, &max98088_dai[0], 2);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int max98088_i2c_remove(struct i2c_client *client)
|
||||
{
|
||||
snd_soc_unregister_codec(&client->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct i2c_device_id max98088_i2c_id[] = {
|
||||
{ "max98088", MAX98088 },
|
||||
{ "max98089", MAX98089 },
|
||||
|
@ -1757,7 +1750,6 @@ static struct i2c_driver max98088_i2c_driver = {
|
|||
.name = "max98088",
|
||||
},
|
||||
.probe = max98088_i2c_probe,
|
||||
.remove = max98088_i2c_remove,
|
||||
.id_table = max98088_i2c_id,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue