Commit 9c59dd34 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: sh: fsi: use same format for IN/OUT

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 284c6f65
...@@ -211,8 +211,7 @@ struct fsi_priv { ...@@ -211,8 +211,7 @@ struct fsi_priv {
struct fsi_stream playback; struct fsi_stream playback;
struct fsi_stream capture; struct fsi_stream capture;
u32 do_fmt; u32 fmt;
u32 di_fmt;
int chan_num:16; int chan_num:16;
int clk_master:1; int clk_master:1;
...@@ -1191,8 +1190,8 @@ static int fsi_hw_startup(struct fsi_priv *fsi, ...@@ -1191,8 +1190,8 @@ static int fsi_hw_startup(struct fsi_priv *fsi,
fsi_reg_write(fsi, CKG2, data); fsi_reg_write(fsi, CKG2, data);
/* set format */ /* set format */
fsi_reg_write(fsi, DO_FMT, fsi->do_fmt); fsi_reg_write(fsi, DO_FMT, fsi->fmt);
fsi_reg_write(fsi, DI_FMT, fsi->di_fmt); fsi_reg_write(fsi, DI_FMT, fsi->fmt);
/* spdif ? */ /* spdif ? */
if (fsi_is_spdif(fsi)) { if (fsi_is_spdif(fsi)) {
...@@ -1270,42 +1269,33 @@ static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd, ...@@ -1270,42 +1269,33 @@ static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt) static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt)
{ {
u32 data = 0;
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
case SND_SOC_DAIFMT_I2S: case SND_SOC_DAIFMT_I2S:
data = CR_I2S; fsi->fmt = CR_I2S;
fsi->chan_num = 2; fsi->chan_num = 2;
break; break;
case SND_SOC_DAIFMT_LEFT_J: case SND_SOC_DAIFMT_LEFT_J:
data = CR_PCM; fsi->fmt = CR_PCM;
fsi->chan_num = 2; fsi->chan_num = 2;
break; break;
default: default:
return -EINVAL; return -EINVAL;
} }
fsi->do_fmt = data;
fsi->di_fmt = data;
return 0; return 0;
} }
static int fsi_set_fmt_spdif(struct fsi_priv *fsi) static int fsi_set_fmt_spdif(struct fsi_priv *fsi)
{ {
struct fsi_master *master = fsi_get_master(fsi); struct fsi_master *master = fsi_get_master(fsi);
u32 data = 0;
if (fsi_version(master) < 2) if (fsi_version(master) < 2)
return -EINVAL; return -EINVAL;
data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM; fsi->fmt = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
fsi->chan_num = 2; fsi->chan_num = 2;
fsi->spdif = 1; fsi->spdif = 1;
fsi->do_fmt = data;
fsi->di_fmt = data;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment