Page MenuHomeFreeBSD

INTRNG: only shuffle interrupts for !EARLY_AP_STARTUP
ClosedPublic

Authored by mhorne on Jul 16 2020, 8:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 8, 2:54 PM
Unknown Object (File)
Fri, Mar 7, 9:30 PM
Unknown Object (File)
Tue, Mar 4, 2:06 AM
Unknown Object (File)
Mon, Mar 3, 4:24 PM
Unknown Object (File)
Feb 16 2025, 11:01 AM
Unknown Object (File)
Feb 8 2025, 10:40 PM
Unknown Object (File)
Feb 7 2025, 9:25 PM
Unknown Object (File)
Jan 18 2025, 9:22 PM
Subscribers

Details

Summary

During device attachment, all interrupt sources will bind to the BSP,
as it is the only processor online. This means interrupts must be
redistributed later, during SI_SUB_SMP.

For the EARLY_AP_STARTUP case, this is no longer true. SI_SUB_SMP will
execute much earlier, meaning APs will be online and available before
devices begin attachment, and there will therefore be nothing to
shuffle.

All PIC-conforming interrupt controllers will handle this early
distribution properly, except for RISC-V's PLIC. Make the necessary
tweak to the PLIC driver.

While here, convert irq_assign_cpu from boolean_t to a bool.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

mhorne created this revision.
This revision is now accepted and ready to land.Jul 20 2020, 5:41 PM
This revision was automatically updated to reflect the committed changes.