Jump to content

End of interrupt: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Oops
Script-assisted style fixes and per CS1
Line 1: Line 1:
{{Use mdy dates|date=October 2021}}
{{Use mdy dates|date=May 2022}}


An '''end of interrupt''' ('''EOI''') is a signal sent to a [[programmable interrupt controller]] (PIC) to indicate the completion 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 (IRQs) of equal or lower priority to be generated by the PIC.<ref>{{cite web
An '''end of interrupt''' ('''EOI''') is a signal sent to a [[programmable interrupt controller]] (PIC) to indicate the completion 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 (IRQs) of equal or lower priority to be generated by the PIC.<ref>{{cite web
Line 6: Line 6:
| author = Mika J. Järvenpää
| author = Mika J. Järvenpää
| publisher = University of Helsinki
| publisher = University of Helsinki
| accessdate = {{date|2021-10-02|mdy}} | format = PDF
| accessdate = 2021-10-02 | format = PDF
}}</ref><ref>{{cite web
}}</ref><ref>{{cite web
| url = https://wiki.osdev.org/8259_PIC#End_of_Interrupt
| url = https://wiki.osdev.org/8259_PIC#End_of_Interrupt
| title = The 8259 Programmable Interrupt Controller (PIC)
| title = The 8259 Programmable Interrupt Controller (PIC)
| publisher = osdev.org
| publisher = osdev.org
| accessdate = {{date|2021-10-02|mdy}}
| accessdate = 2021-10-02
}}</ref>
}}</ref>


Line 18: Line 18:
| title = 8259A Programmable interrupt controller
| title = 8259A Programmable interrupt controller
| publisher = [[Intel]]
| publisher = [[Intel]]
| date = December 1988 | accessdate = {{date|2021-10-02|mdy}}
| date = December 1988 | accessdate = 2021-10-02
| format = PDF
| format = PDF
}}</ref>
}}</ref>

Revision as of 20:08, 13 May 2022

An end of interrupt (EOI) is a signal sent to a programmable interrupt controller (PIC) to indicate the completion 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 (IRQs) of equal or lower priority to be generated by the PIC.[1][2]

EOIs may indicate the interrupt vector implicitly or explicitly. An explicit 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.[3]

See also

References

  1. ^ Mika J. Järvenpää. "Linux Interrupts: The Basic Concepts" (PDF). University of Helsinki. Retrieved October 2, 2021.
  2. ^ "The 8259 Programmable Interrupt Controller (PIC)". osdev.org. Retrieved October 2, 2021.
  3. ^ "8259A Programmable interrupt controller" (PDF). Intel. December 1988. Retrieved October 2, 2021.