End of interrupt: Difference between revisions
No edit summary |
Mboverload (talk | contribs) |
||
Line 1: | Line 1: | ||
An '''End Of Interrupt''' ('''EOI''') is a signal sent to a [[Programmable Interrupt Controller]] (PIC) to indicate the compleation of interrupt processing for a given [[interrupt]]. An EOI is used to cause a PIC to clear the corresponding bit in the In-Service Register (ISR), and thus allow more [[interrupt request]]s of equal or lower priority to be generated by the PIC. |
An '''End Of Interrupt''' ('''EOI''') is a signal sent to a [[Programmable Interrupt Controller]] (PIC) to indicate the compleation of interrupt processing for a given [[interrupt]]. An EOI is used to cause a PIC to clear the corresponding bit in the In-Service Register (ISR), and thus allow more [[interrupt request]]s of equal or lower priority to be generated by the PIC. |
||
EOIs may indicate the [[interrupt vector]] implicitly, or |
EOIs may indicate the [[interrupt vector]] implicitly, or explicitly. An explict EOI vector is indicated with the EOI, whereas an implicit EOI vector will typically use a vector as indicated by the PICs priority schema. For example, the highest vector in the ISR. Also, EOIs may be sent at the end of interrupt processing by an [[interrupt handler]], or the operation of a PIC may be set to ''auto-EOI'' at the start of the interrupt handler. |
||
== See also == |
== See also == |
||
* [[Interrupt]] |
* [[Interrupt]] |
||
* [[Programmable Interrupt Controller]] |
* [[Programmable Interrupt Controller]] |
||
⚫ | |||
{{Compu-stub}} |
{{Compu-stub}} |
||
⚫ |
Revision as of 10:42, 1 June 2006
An End Of Interrupt (EOI) is a signal sent to a Programmable Interrupt Controller (PIC) to indicate the compleation of interrupt processing for a given interrupt. An EOI is used to cause a PIC to clear the corresponding bit in the In-Service Register (ISR), and thus allow more interrupt requests of equal or lower priority to be generated by the PIC.
EOIs may indicate the interrupt vector implicitly, or explicitly. An explict EOI vector is indicated with the EOI, whereas an implicit EOI vector will typically use a vector as indicated by the PICs priority schema. For example, the highest vector in the ISR. Also, EOIs may be sent at the end of interrupt processing by an interrupt handler, or the operation of a PIC may be set to auto-EOI at the start of the interrupt handler.
See also