1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:37:35 +00:00

Kernel: Add driver for interrupt controller on the Raspberry Pi

This implements the simpler IRQController class and adds a
pending_interrupts() function to the class.
This commit is contained in:
Timon Kruiper 2022-05-30 09:30:11 +02:00 committed by Linus Groh
parent f085903f62
commit 5eac2b9f33
4 changed files with 111 additions and 0 deletions

View file

@ -401,6 +401,7 @@ else()
set(RPI_SOURCES
Arch/aarch64/RPi/Framebuffer.cpp
Arch/aarch64/RPi/GPIO.cpp
Arch/aarch64/RPi/InterruptController.cpp
Arch/aarch64/RPi/Mailbox.cpp
Arch/aarch64/RPi/MMIO.cpp
Arch/aarch64/RPi/Timer.cpp