25 lines · plain
1===============2What is an IRQ?3===============4 5An IRQ is an interrupt request from a device.6Currently they can come in over a pin, or over a packet.7Several devices may be connected to the same pin thus8sharing an IRQ.9 10An IRQ number is a kernel identifier used to talk about a hardware11interrupt source. Typically this is an index into the global irq_desc12array, but except for what linux/interrupt.h implements the details13are architecture specific.14 15An IRQ number is an enumeration of the possible interrupt sources on a16machine. Typically what is enumerated is the number of input pins on17all of the interrupt controller in the system. In the case of ISA18what is enumerated are the 16 input pins on the two i8259 interrupt19controllers.20 21Architectures can assign additional meaning to the IRQ numbers, and22are encouraged to in the case where there is any manual configuration23of the hardware involved. The ISA IRQs are a classic example of24assigning this kind of additional meaning.25