ASoC: tegra: Update to use set_fmt_new callback
As part of updating the core to directly tell drivers if they are clock provider or consumer update these CPU side drivers to use the new direct callback. Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20220519154318.2153729-24-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7cc3965fde
commit
d92ad6633f
@ -95,11 +95,11 @@ static int tegra20_i2s_set_fmt(struct snd_soc_dai *dai,
|
||||
}
|
||||
|
||||
mask |= TEGRA20_I2S_CTRL_MASTER_ENABLE;
|
||||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
|
||||
case SND_SOC_DAIFMT_BP_FP:
|
||||
val |= TEGRA20_I2S_CTRL_MASTER_ENABLE;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
case SND_SOC_DAIFMT_BC_FC:
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
@ -311,7 +311,7 @@ static int tegra20_i2s_startup(struct snd_pcm_substream *substream,
|
||||
}
|
||||
|
||||
static const struct snd_soc_dai_ops tegra20_i2s_dai_ops = {
|
||||
.set_fmt = tegra20_i2s_set_fmt,
|
||||
.set_fmt_new = tegra20_i2s_set_fmt,
|
||||
.hw_params = tegra20_i2s_hw_params,
|
||||
.trigger = tegra20_i2s_trigger,
|
||||
.startup = tegra20_i2s_startup,
|
||||
|
@ -214,11 +214,11 @@ static int tegra210_i2s_set_fmt(struct snd_soc_dai *dai,
|
||||
unsigned int mask, val;
|
||||
|
||||
mask = I2S_CTRL_MASTER_EN_MASK;
|
||||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
|
||||
case SND_SOC_DAIFMT_BP_FP:
|
||||
val = 0;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
case SND_SOC_DAIFMT_BC_FC:
|
||||
val = I2S_CTRL_MASTER_EN;
|
||||
break;
|
||||
default:
|
||||
@ -678,7 +678,7 @@ static int tegra210_i2s_hw_params(struct snd_pcm_substream *substream,
|
||||
}
|
||||
|
||||
static const struct snd_soc_dai_ops tegra210_i2s_dai_ops = {
|
||||
.set_fmt = tegra210_i2s_set_fmt,
|
||||
.set_fmt_new = tegra210_i2s_set_fmt,
|
||||
.hw_params = tegra210_i2s_hw_params,
|
||||
.set_bclk_ratio = tegra210_i2s_set_dai_bclk_ratio,
|
||||
.set_tdm_slot = tegra210_i2s_set_tdm_slot,
|
||||
|
@ -87,11 +87,11 @@ static int tegra30_i2s_set_fmt(struct snd_soc_dai *dai,
|
||||
}
|
||||
|
||||
mask |= TEGRA30_I2S_CTRL_MASTER_ENABLE;
|
||||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
|
||||
case SND_SOC_DAIFMT_BP_FP:
|
||||
val |= TEGRA30_I2S_CTRL_MASTER_ENABLE;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
case SND_SOC_DAIFMT_BC_FC:
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
@ -304,7 +304,7 @@ static int tegra30_i2s_probe(struct snd_soc_dai *dai)
|
||||
}
|
||||
|
||||
static const struct snd_soc_dai_ops tegra30_i2s_dai_ops = {
|
||||
.set_fmt = tegra30_i2s_set_fmt,
|
||||
.set_fmt_new = tegra30_i2s_set_fmt,
|
||||
.hw_params = tegra30_i2s_hw_params,
|
||||
.trigger = tegra30_i2s_trigger,
|
||||
.set_tdm_slot = tegra30_i2s_set_tdm,
|
||||
|
Loading…
Reference in New Issue
Block a user