1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00

Kernel: Scan ACPI memory ranges for the RSDP table

On some systems the ACPI RSDP table may be located in ACPI reserved
memory ranges rather than in the EBDA or BIOS areas.
This commit is contained in:
Tom 2022-01-02 16:27:21 -07:00 committed by Linus Groh
parent 190572b714
commit 10efbfb09e
3 changed files with 35 additions and 1 deletions

View file

@ -237,6 +237,8 @@ public:
void copy_physical_page(PhysicalPage&, u8 page_buffer[PAGE_SIZE]);
IterationDecision for_each_physical_memory_range(Function<IterationDecision(PhysicalMemoryRange const&)>);
private:
MemoryManager();
~MemoryManager();