i.MX31: Make DMA ISR call loop a bit more efficient.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27192 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d2ed594246
commit
90a2671833
1 changed files with 5 additions and 11 deletions
|
@ -53,19 +53,13 @@ static void __attribute__((interrupt("IRQ"))) SDMA_HANDLER(void)
|
|||
SDMA_INTR = pending; /* Ack all ints */
|
||||
pending &= sdma_enabled_ints; /* Only dispatch ints with callback */
|
||||
|
||||
while (1)
|
||||
while (pending)
|
||||
{
|
||||
unsigned int channel;
|
||||
unsigned int bit = pending & -pending; /* Isolate bottom bit */
|
||||
pending &= ~bit; /* Clear it */
|
||||
|
||||
if (pending == 0)
|
||||
break; /* No bits set */
|
||||
|
||||
channel = find_first_set_bit(pending);
|
||||
|
||||
pending &= ~(1ul << channel);
|
||||
|
||||
/* Call callback (required if using an interrupt) */
|
||||
ccb_array[channel].channel_desc->callback();
|
||||
/* Call callback (required if using an interrupt). bit number = channel */
|
||||
ccb_array[31 - __builtin_clz(bit)].channel_desc->callback();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue