Programmers Model
ARM DDI 0363G
Copyright © 2006-2011 ARM Limited. All rights reserved.
3-16
ID073015
Non-Confidential
3.7.2
Reset
When the
nRESET
signal is driven LOW a reset occurs, and the processor abandons the
executing instruction.
When
nRESET
and
nCPUHALT
are driven HIGH again the processor:
1.
Forces CPSR M[4:0] to b10011 (Supervisor mode) and sets the A, I, and F bits in the
CPSR. The E bit is set based on the state of the
CFGEE
pin. Other bits in the CPSR are
indeterminate.
2.
Forces the PC to fetch the next instruction from the reset vector address.
3.
Reverts to ARM state or Thumb state depending on the state of the
TEINIT
pin, and
resumes execution.
After reset, all register values except the PC and CPSR are indeterminate.
See
for more information on the reset behavior for the processor.
3.7.3
Interrupts
The processor has two interrupt inputs, for normal interrupts (
nIRQ
) and fast interrupts (
nFIQ
).
Each interrupt pin, when asserted and not masked, causes the processor to take the appropriate
type of interrupt exception. See
for more information. The CPSR.F and
CPSR.I bits control masking of fast and normal interrupts respectively.
A number of features exist to improve the interrupt latency, that is, the time taken between the
assertion of the interrupt input and the execution of the interrupt handler. By default, the
processor uses the
Low Interrupt Latency
(LIL) behaviors introduced in version 6 and later of
the ARM architecture. The processor also has a port for connection of a
Vectored Interrupt
Controller
(VIC), and supports
Non-Maskable Fast Interrupts
(NMFI).
The following subsections describe interrupts:
•
•
•
•
•
.
Interrupt request
The IRQ exception is a normal interrupt caused by a LOW level on the
nIRQ
input. An IRQ
has a lower priority than an FIQ, and is masked on entry to an FIQ sequence. You must ensure
that the
nIRQ
input is held LOW until the processor acknowledges the interrupt request, either
from the VIC interface or the software handler.
Irrespective of whether the exception is taken from ARM state or Thumb state, an IRQ handler
returns from the interrupt by executing:
SUBS PC, R14_irq, #4
You can disable IRQ exceptions within a Privileged mode by setting the CPSR.I bit to b1. See
. IRQ interrupts are automatically disabled when an IRQ
occurs, by setting the CPSR.I bit. You can use nested interrupts but it is up to you to save any
corruptible registers and to re-enable IRQs by clearing the CPSR.I bit.