summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-03-09 08:49:52 +0000
committerDave Chapman <dave@dchapman.com>2006-03-09 08:49:52 +0000
commit48e8e1d820e642c04a7069190baf48ee49fc65a0 (patch)
treef988debe9a0a96f9e584660145cc0f21dd0d575e /firmware
parentfcde4fc8863b199ac5b3453b70b91c9ebe53e4e9 (diff)
downloadrockbox-48e8e1d820e642c04a7069190baf48ee49fc65a0.tar.gz
rockbox-48e8e1d820e642c04a7069190baf48ee49fc65a0.zip
iPod 3G: Enable I2S interrupts for the main processor, not the COP
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8971 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/pcm_playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c
index 0ae87f4310..8bd44c7f21 100644
--- a/firmware/pcm_playback.c
+++ b/firmware/pcm_playback.c
@@ -348,8 +348,8 @@ static void dma_start(const void *addr, size_t size)
348 outl(I2S_MASK, 0x60004024); 348 outl(I2S_MASK, 0x60004024);
349#else 349#else
350 /* setup I2S interrupt for FIQ */ 350 /* setup I2S interrupt for FIQ */
351 outl(inl(0xcf00103c) | DMA_OUT_MASK, 0xcf00103c); 351 outl(inl(0xcf00102c) | DMA_OUT_MASK, 0xcf00102c);
352 outl(DMA_OUT_MASK, 0xcf001034); 352 outl(DMA_OUT_MASK, 0xcf001024);
353#endif 353#endif
354 354
355 /* Clear the FIQ disable bit in cpsr_c */ 355 /* Clear the FIQ disable bit in cpsr_c */