1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

Kernel: Add a MMIO class for aarch64

It doesn't do anything yet except figure out the peripheral base
address.

Very likely belongs in Kernel, not Prekernel, eventually.
This commit is contained in:
Nico Weber 2021-09-17 11:00:46 -04:00 committed by Linus Groh
parent 3a24eb323f
commit d0b9c7a20b
4 changed files with 54 additions and 3 deletions

View file

@ -13,6 +13,7 @@ if ("${SERENITY_ARCH}" STREQUAL "aarch64")
${SOURCES}
Arch/aarch64/MainIdRegister.cpp
Arch/aarch64/MMIO.cpp
Arch/aarch64/init.cpp
)
else()