From 6ed63f6cee404c09ce6d2becf4ab60b891a767fe Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 17 Jan 2024 21:01:02 -0500 Subject: kernel: vm: Init virtual memory in pre_init() Signed-off-by: Ian Moffett --- sys/arch/amd64/amd64/machdep.c | 5 +++++ sys/kern/init_main.c | 13 ------------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index f5b6365..1194b63 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -38,6 +38,8 @@ #include #include #include +#include +#include #include __MODULE_NAME("machdep"); @@ -104,6 +106,9 @@ pre_init(void) uart8250_try_init(); interrupts_init(); gdt_load(&g_gdtr); + + vm_physseg_init(); + vm_init(); } void diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 8b8e431..99f1e87 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -34,7 +34,6 @@ #include #include #include -#include #include __MODULE_NAME("init_main"); @@ -84,18 +83,6 @@ main(void) acpi_init(); - /* - * TODO: Move these calls to machdep.c whenever - * possible. It must be documented that - * this will only be called by processor_init() - * as the pmap subsystem may rely on architecture - * specifics that haven't been set up yet... Putting - * these calls in processor_init() makes things more - * flexible. - */ - vm_physseg_init(); - vm_init(); - processor_init(); list_timers(); -- cgit v1.2.3