From 6a30f42d5dcd0f944262147b2806db6c14fe7ffc Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 15 May 2025 13:56:17 +0200 Subject: feat(kernel): Finalizing the first version of the user scheduler. other: - Removed DmaPool into its own Kit. - ApplicationProcessor unit has been cleaned up. - Rename functions of MemoryMgr. - Use KIB instead of MIBs of stack. - Cleanup parts of the scheduler, and hw scheduler. - Use UD handler for INT 6. Signed-off-by: Amlal El Mahrouss --- dev/boot/src/HEL/AMD64/BootAPI.S | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'dev/boot/src/HEL/AMD64/BootAPI.S') diff --git a/dev/boot/src/HEL/AMD64/BootAPI.S b/dev/boot/src/HEL/AMD64/BootAPI.S index 43775fc2..2c0005ac 100644 --- a/dev/boot/src/HEL/AMD64/BootAPI.S +++ b/dev/boot/src/HEL/AMD64/BootAPI.S @@ -5,6 +5,16 @@ .intel_syntax noprefix +.global hal_load_idt + +hal_load_idt: + ret + +.global sched_jump_to_task + +sched_jump_to_task: + ret + /** @brief this function setups a stack and then jumps to a function */ -- cgit v1.2.3 From 9978ec66ff0e5fc98892c089c47637f0d164bc46 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 19 May 2025 23:14:12 +0200 Subject: fix(chk.efi): fix link error on AHCI config. Signed-off-by: Amlal El Mahrouss --- dev/boot/src/HEL/AMD64/BootAPI.S | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'dev/boot/src/HEL/AMD64/BootAPI.S') diff --git a/dev/boot/src/HEL/AMD64/BootAPI.S b/dev/boot/src/HEL/AMD64/BootAPI.S index 2c0005ac..33c1f5d3 100644 --- a/dev/boot/src/HEL/AMD64/BootAPI.S +++ b/dev/boot/src/HEL/AMD64/BootAPI.S @@ -1,6 +1,13 @@ .global rt_jump_to_address .global rt_reset_hardware +.data + +.global kApicBaseAddress + +kApicBaseAddress: + .long 0 + .text .intel_syntax noprefix -- cgit v1.2.3