diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2010-05-05 07:15:20 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2010-05-05 07:15:20 +0000 |
commit | 630b4fc55537721c68462e71d0910a3734baa852 (patch) | |
tree | 16ebb91388d2629e64a9f2260d91d1509ac56123 /firmware/target/arm/imx31/dvfs_dptc-imx31.c | |
parent | 9dd81ae53d87840a4cb6e9c4b90ecd2ca456835d (diff) |
i.MX31/Gigabeat S: The nested IRQ code was just totally wrong and not actually working anyway (which is why it wasn't crashing). AVIC doesn't seem truthful about priority of current ISR either :\. Sometimes there were channel swaps during really active DVFS due to FIFO underflow from a needed long delay in the ISR (100us, and IIS TX only has 45us reserve) and DMARQ *must* be serviced low-latency. Get it doing as was intended.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25822 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/dvfs_dptc-imx31.c')
-rw-r--r-- | firmware/target/arm/imx31/dvfs_dptc-imx31.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/imx31/dvfs_dptc-imx31.c b/firmware/target/arm/imx31/dvfs_dptc-imx31.c index 5e1a598428..680b015c81 100644 --- a/firmware/target/arm/imx31/dvfs_dptc-imx31.c +++ b/firmware/target/arm/imx31/dvfs_dptc-imx31.c @@ -230,7 +230,7 @@ static void __attribute__((used)) dvfs_int(void) static __attribute__((naked, interrupt("IRQ"))) void CCM_DVFS_HANDLER(void) { /* Audio can glitch with the long udelay if nested IRQ isn't allowed. */ - AVIC_NESTED_NI_CALL_PROLOGUE(); + AVIC_NESTED_NI_CALL_PROLOGUE(INT_PRIO_DVFS); asm volatile ("bl dvfs_int"); AVIC_NESTED_NI_CALL_EPILOGUE(); } |