Atmel Evaluation Kit AT91SAM9X25-EK AT91SAM9X25-EK Data Sheet

Product codes
AT91SAM9X25-EK
Page of 1151
78
SAM9X25 [DATASHEET]
11054E–ATARM–10-Mar-2014
Pushes the current level and the current interrupt number on to the stack. 
Returns the value written in the AIC_SVR corresponding to the current interrupt.
4.
The previous step has the effect of branching to the corresponding interrupt service routine. This should start by 
saving the link register (R14_irq) and SPSR_IRQ. 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 CPSR, allowing re-assertion of the nIRQ to be 
taken into account by the core. This can happen if an interrupt with a higher priority than the current interrupt 
occurs.
6.
The interrupt handler can then proceed as required, saving the registers that will be used and restoring them at the 
end. During this phase, an interrupt of higher priority than the current level will restart the sequence from step 1. 
Note:
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 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 cur-
rent interrupt is finished. This causes the current 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 the 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. SPSR_irq is restored. Finally, the saved value of the link reg-
ister is restored directly into the PC. This has the effect of returning from the interrupt to whatever was being 
executed before, and of loading the CPSR with the stored SPSR, masking or unmasking the interrupts depending 
on the state saved in SPSR_irq.
Note:
The “I” bit in SPSR is significant. If it is set, it indicates that the ARM core was on the verge of masking an inter-
rupt when the mask instruction was interrupted. Hence, when SPSR is restored, the mask instruction is 
completed (interrupt is masked). 
13.8.4 Fast Interrupt 
13.8.4.1  Fast Interrupt Source
The interrupt source 0 is the only source which can raise a fast interrupt request to the processor except if fast forcing is 
used. The interrupt source 0 is generally connected to a FIQ pin of the product, either directly or through a PIO 
Controller. 
13.8.4.2  Fast Interrupt Control
The fast interrupt logic of the AIC has no priority controller. The mode of interrupt source 0 is programmed with the 
AIC_SMR0 and the field PRIOR of this register is not used even if it reads what has been written. The field SRCTYPE of 
AIC_SMR0 enables programming the fast interrupt source to be positive-edge triggered or negative-edge triggered or 
high-level sensitive or low-level sensitive
Writing 0x1 in the AIC_IECR (Interrupt Enable Command Register) and AIC_IDCR (Interrupt Disable Command 
Register) respectively enables and disables the fast interrupt. The bit 0 of AIC_IMR (Interrupt Mask Register) indicates 
whether the fast interrupt is enabled or disabled.
13.8.4.3  Fast Interrupt Vectoring
The fast interrupt handler address can be stored in AIC_SVR0 (Source Vector Register 0). The value written into this 
register is returned when the processor reads AIC_FVR (Fast Vector Register). This offers a way to branch in one single 
instruction to the interrupt handler, as AIC_FVR is mapped at the absolute address 0xFFFF F104 and thus accessible 
from the ARM fast interrupt vector at address 0x0000 001C through the following instruction: 
LDR
PC,[PC,# -&F20]
When the processor executes this instruction it loads the value read in AIC_FVR in its program counter, thus branching 
the execution on the fast interrupt handler. It also automatically performs the clear of the fast interrupt source if it is 
programmed in edge-triggered mode.