19
Advanced Interrupt Controller (AIC)
1246F–CASIC–03/02
Standard Interrupt
Sequence
For details on the registers mentioned in the steps below, refer to the ARM7TDMI
Embedded Core datasheet.
It is assumed that:
1. The advanced interrupt controller has been programmed, AIC_SVR is loaded
with corresponding interrupt service routine addresses and interrupts are
enabled.
2. The instruction at address 0x18 (IRQ exception vector address) is
LDR PC, [PC, #-&F20]
When nIRQ is asserted, if the bit “I” of CPSR is 0, the sequence is:
1. The CPSR is stored in SPSR_irq, the current value of the Program Counter is
loaded in the IRQ link register (R14_IRQ) and the Program Counter (R15) is
loaded with 0x18. In the following cycle during fetch at address 0x1C, the ARM
core adjusts R14_IRQ, decrementing it by four.
2. The ARM core enters IRQ mode, if it is not already.
3. When the instruction loaded at address 0x18 is executed, the Program Counter
is loaded with the value read in AIC_IVR. Reading the AIC_IVR has the following
effects:
Sets the current interrupt to be the pending one with the highest priority. The current
level is the priority level of the current interrupt.
De-asserts the nIRQ line on the processor. (Even if vectoring is not used, AIC_IVR
must be read in order to de-assert nIRQ.)
Automatically clears the interrupt, if it has been programmed to be edge-triggered
Pushes the current level on to the stack
ReturnsthevaluewrittenintheAIC_SVR corresponding to the current interrupt
4. The previous step has effect to branch to the corresponding interrupt service
routine. This should start by saving the Link Register(R14_IRQ) and the
SPSR(SPSR_IRQ). Note that the Link Register must be decremented by four
when it is saved if it is to be restored directly into the Program Counter at the end
of the interrupt. For example, the instruction SUB PC, LR, #4 may be used, .
5. Further interrupts can then be unmasked by clearing the “I” bit in the CPSR,
allowing re-assertion of the nIRQ to be taken into account by the core. This can
occur if an interrupt with a higher priority than the current one occurs.
6. The Interrupt Handler can then proceed as required, saving the registers which
will be used and restoring them at the end. During this phase, an interrupt of pri-
ority higher than the current level will restart the sequence from step 1. Note that
if the interrupt is programmed to be level sensitive, the source of the interrupt
must be cleared during this phase.
7. The “I” bit in the CPSR must be set in order to mask interrupts before exiting, to
ensure that the interrupt is completed in an orderly manner.
8. The End of Interrupt Command Register (AIC_EOICR) must be written in order
to indicate to the AIC that the current interrupt is finished. This causes the cur-
rent level to be popped from the stack, restoring the previous current level if one
exists on the stack. If another interrupt is pending, with lower or equal priority
than old current level but with higher priority than the new current level, the nIRQ
line is re-asserted, but the interrupt sequence does not immediately start
because the “I” bit is set in the core.
9. The SPSR (SPSR_IRQ) is restored. Finally, the saved value of the Link Register
is restored directly into the PC. This has effect of returning from the interrupt to
whatever was being executed before, and of loading the CPSR with the stored