-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 31084 b: refs/heads/master c: f702d70 h: refs/heads/master v: v3
- Loading branch information
Eric W. Biederman
authored and
Linus Torvalds
committed
Jun 29, 2006
1 parent
b4d3bd5
commit e750b97
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 98bb244b685eb2a297aa60fa2e5c0631f95828e1 | ||
refs/heads/master: f702d7013c7470284843a6370aaa53b8b75c5a40 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
What is an IRQ? | ||
|
||
An IRQ is an interrupt request from a device. | ||
Currently they can come in over a pin, or over a packet. | ||
Several devices may be connected to the same pin thus | ||
sharing an IRQ. | ||
|
||
An IRQ number is a kernel identifier used to talk about a hardware | ||
interrupt source. Typically this is an index into the global irq_desc | ||
array, but except for what linux/interrupt.h implements the details | ||
are architecture specific. | ||
|
||
An IRQ number is an enumeration of the possible interrupt sources on a | ||
machine. Typically what is enumerated is the number of input pins on | ||
all of the interrupt controller in the system. In the case of ISA | ||
what is enumerated are the 16 input pins on the two i8259 interrupt | ||
controllers. | ||
|
||
Architectures can assign additional meaning to the IRQ numbers, and | ||
are encouraged to in the case where there is any manual configuration | ||
of the hardware involved. The ISA IRQs are a classic example of | ||
assigning this kind of additional meaning. |