| From 99c52014387512a1383f9b08a7b41921e97dd623 Mon Sep 17 00:00:00 2001 |
| From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| Date: Wed, 15 Jul 2015 07:12:18 +0000 |
| Subject: [PATCH 289/326] ASoC: rsnd: src: make sure SRC soft reset |
| |
| Renesas SCU (Sampling Rate Convert Unit) includes SRC/CTU/MIX/DVC, |
| and these have similar register. xxxRSR (Software reset Register) is one |
| of them. These xxxRSR need be set to 1 to 0 when software reset. |
| Current rsnd driver has src.c / dvc.c, and we will have mix.c. |
| It is readable if these have same named function. |
| This patch adds rsnd_src_soft_reset() and make sure it |
| |
| Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| Tested-by: Keita Kobayashi <keita.kobayashi.ym@renesas.com> |
| Signed-off-by: Mark Brown <broonie@kernel.org> |
| (cherry picked from commit 379febfd2e30ec8db5baccd9f9403bf650c6afa1) |
| Signed-off-by: Simon Horman <horms+renesas@verge.net.au> |
| --- |
| sound/soc/sh/rcar/src.c | 12 ++++++++---- |
| 1 file changed, 8 insertions(+), 4 deletions(-) |
| |
| diff --git a/sound/soc/sh/rcar/src.c b/sound/soc/sh/rcar/src.c |
| index 0b06ac8dbeec..74ab644c688e 100644 |
| --- a/sound/soc/sh/rcar/src.c |
| +++ b/sound/soc/sh/rcar/src.c |
| @@ -118,6 +118,12 @@ struct rsnd_src { |
| /* |
| * Gen1/Gen2 common functions |
| */ |
| +static void rsnd_src_soft_reset(struct rsnd_mod *mod) |
| +{ |
| + rsnd_mod_write(mod, SRC_SWRSR, 0); |
| + rsnd_mod_write(mod, SRC_SWRSR, 1); |
| +} |
| + |
| static struct dma_chan *rsnd_src_dma_req(struct rsnd_dai_stream *io, |
| struct rsnd_mod *mod) |
| { |
| @@ -294,10 +300,6 @@ static int rsnd_src_set_convert_rate(struct rsnd_mod *mod, |
| if (convert_rate) |
| fsrate = 0x0400000 / convert_rate * runtime->rate; |
| |
| - /* set/clear soft reset */ |
| - rsnd_mod_write(mod, SRC_SWRSR, 0); |
| - rsnd_mod_write(mod, SRC_SWRSR, 1); |
| - |
| /* Set channel number and output bit length */ |
| rsnd_mod_write(mod, SRC_ADINR, rsnd_get_adinr(mod, io)); |
| |
| @@ -358,6 +360,8 @@ static int rsnd_src_init(struct rsnd_mod *mod, |
| |
| rsnd_mod_hw_start(mod); |
| |
| + rsnd_src_soft_reset(mod); |
| + |
| src->err = 0; |
| |
| /* reset sync convert_rate */ |
| -- |
| 2.6.2 |
| |