Jump to content

Fast interrupt request

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Shirt58 (talk | contribs) at 07:46, 10 February 2014 (Speedy deletion declined. Criterion G11 does not apply: Not unambiguously promotional (CSDH)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

ARM architecture supports two types of interrupts: fast interrupt requests (FIQs), for fast, low latency interrupt handling and Interrupt Request (IRQs), for more general interrupts[1][2].

An FIQ takes priority over an IRQ in an ARM system. Also, only one FIQ source at a time is supported. This helps reduce interrupt latency as the interrupt service routine can be executed directly without determining the source of the interrupt. A context save is not required for servicing FIQ since it has its own set of banked registers. This reduces the overhead of context switching.

References