1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47: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

@ -22,6 +22,8 @@ public:
virtual void eoi(GenericInterruptHandler const&) const = 0;
virtual u64 pending_interrupts() const = 0;
virtual StringView model() const = 0;
protected: