mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
ASoC: fsl: p1022ds: tell the WM8776 codec driver that it's the master
The WM8776 codec driver requires the machine driver to set one of the
SND_SOC_DAIFMT_CBx_xxx values. The P1022DS machine driver should be setting
SND_SOC_DAIFMT_CBM_CFM, but since that value was zero, no one noticed.
Commit 75d9ac46
("ASoC: Allow DAI formats to be specified in the
dai_link"), however, changed the value of SND_SOC_DAIFMT_CBM_CFM from zero
to a non-zero value, which means that it now needs to be specifically set
by the machine driver.
We also set SND_SOC_DAIFMT_NB_NF, for the same reason.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@vger.kernel.org
This commit is contained in:
parent
588fb705d5
commit
70ac07bb63
@ -395,7 +395,8 @@ static int p1022_ds_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
if (strcasecmp(sprop, "i2s-slave") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_I2S;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBM_CFM;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_IN;
|
||||
|
||||
@ -412,31 +413,38 @@ static int p1022_ds_probe(struct platform_device *pdev)
|
||||
}
|
||||
mdata->clk_frequency = be32_to_cpup(iprop);
|
||||
} else if (strcasecmp(sprop, "i2s-master") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_I2S;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBS_CFS;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_IN;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
} else if (strcasecmp(sprop, "lj-slave") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_LEFT_J;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_CBM_CFM;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_IN;
|
||||
} else if (strcasecmp(sprop, "lj-master") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_LEFT_J;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_CBS_CFS;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_IN;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
} else if (strcasecmp(sprop, "rj-slave") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_RIGHT_J;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_CBM_CFM;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_IN;
|
||||
} else if (strcasecmp(sprop, "rj-master") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_RIGHT_J;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_CBS_CFS;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_IN;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
} else if (strcasecmp(sprop, "ac97-slave") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_AC97;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_AC97 | SND_SOC_DAIFMT_CBM_CFM;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_IN;
|
||||
} else if (strcasecmp(sprop, "ac97-master") == 0) {
|
||||
mdata->dai_format = SND_SOC_DAIFMT_AC97;
|
||||
mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
|
||||
SND_SOC_DAIFMT_AC97 | SND_SOC_DAIFMT_CBS_CFS;
|
||||
mdata->codec_clk_direction = SND_SOC_CLOCK_IN;
|
||||
mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user