diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-10-26 06:29:21 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-10-26 18:46:17 +0200 |
commit | 814efe3ed72d1cad926e21b8d0869a1ea74bb9dd (patch) | |
tree | d346715748401a4ced274583ec06b8afaf9aade7 /sound/soc/sh/rcar/rsnd.h | |
parent | ASoC: rsnd: fixup SCU_SYS_STATUSx access (diff) | |
download | linux-814efe3ed72d1cad926e21b8d0869a1ea74bb9dd.tar.xz linux-814efe3ed72d1cad926e21b8d0869a1ea74bb9dd.zip |
ASoC: rsnd: clear SSI_SYS_STATUSx every time
Renesas sound SSIU has SSI_SYS_STATUS register whick will
be changed if over/under run was occurred.
Current rsnd driver is handling over/under run error on SSI/SRC,
but doesn't on SSIU.
HW guys can't guarantee correct behavior if it already had error bit
on status register when it start.
Thus, it should be cleared every start timing. This patch do it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/rcar/rsnd.h')
-rw-r--r-- | sound/soc/sh/rcar/rsnd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/soc/sh/rcar/rsnd.h b/sound/soc/sh/rcar/rsnd.h index 678a9914c96f..d6bb53009123 100644 --- a/sound/soc/sh/rcar/rsnd.h +++ b/sound/soc/sh/rcar/rsnd.h @@ -161,6 +161,14 @@ enum rsnd_reg { RSND_REG_SSI_BUSIF_ADINR, RSND_REG_SSI_BUSIF_DALIGN, RSND_REG_SSI_INT_ENABLE, + RSND_REG_SSI_SYS_STATUS0, + RSND_REG_SSI_SYS_STATUS1, + RSND_REG_SSI_SYS_STATUS2, + RSND_REG_SSI_SYS_STATUS3, + RSND_REG_SSI_SYS_STATUS4, + RSND_REG_SSI_SYS_STATUS5, + RSND_REG_SSI_SYS_STATUS6, + RSND_REG_SSI_SYS_STATUS7, /* SSI */ RSND_REG_SSICR, |