]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ENGR00218958 ESAI ASRC: fix system hang cause by accessing ASRC with no clock
authorChen Liangjun <b36089@freescale.com>
Wed, 1 Aug 2012 02:42:44 +0000 (10:42 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 24 May 2013 06:35:08 +0000 (08:35 +0200)
In ESAI_ASRC, to use ASRC for p2p playback, ESAI driver would maintain
an variable to keep track of ASRC pair number allocated. So every time
ESAI driver want to use ASRC, he would first init the variable to a value
(0 in ESAI driver)stand for unvalid pair number and then request an valid
pair number. At last, open the ASRC clock for ASRC register access.

However, ASRC driver treat 0 as an valid pair number. Thus, if an ESAI ASRC
playback is failed, ESAI driver would check whether the pair number is valid.
If the pair number is valid, ESAI driver would access ASRC register to do some
clean work. Thus, the init 0 value would be treat as an valid pair number and
ASRC register would be access without ASRC clock. In the case, an system
hang happens.

In this patch, init pair number variable to -1 after its allocation.

Signed-off-by: Chen Liangjun <b36089@freescale.com>
sound/soc/imx/imx-pcm-dma-mx2.c

index 712bf7d49522b1d0aba54db9a5c28b4b072d9cc1..b36b28108049bcae5031e2175d66b194dd9948e4 100644 (file)
@@ -426,6 +426,7 @@ static int snd_imx_open(struct snd_pcm_substream *substream)
                iprtd->asrc_enable = true;
                iprtd->p2p =
                        (struct asrc_p2p_params *)snd_soc_pcm_get_drvdata(rtd);
+               iprtd->asrc_index = -1;
        }
 
        runtime->private_data = iprtd;