From 39713a3736145483dd3310c3605f940ca34f05c3 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 12 Apr 2021 10:13:21 +0200 Subject: [PATCH] Refactoring --- src/Makefile | 4 +- src/boot/multiboot.c | 1 - src/boot/multiboot.h | 5 +- src/bringelle.c | 14 ++--- src/{utils => core}/asm.h | 0 src/{utils => core}/framebuffer.c | 0 src/{utils => core}/framebuffer.h | 8 +++ src/{utils => core}/gdt.c | 0 src/{utils => core}/gdt.h | 0 src/{utils => core}/mem.c | 0 src/{utils => core}/mem.h | 3 + src/{utils => core}/paging.c | 0 src/{utils => core}/paging.h | 3 + src/{utils => core}/syscall.c | 0 src/{utils => core}/syscall.h | 3 + src/{utils => core}/types.h | 2 +- src/int/8042.c | 4 +- src/int/8042.h | 2 +- src/int/idt.c | 39 ++++++++++++ src/int/idt.h | 32 ++++++++++ src/int/int.S | 72 ++++++++++++++++++++++ src/int/pic.c | 99 ++----------------------------- src/int/pic.h | 22 ++----- src/libc/stdio.h | 2 +- 24 files changed, 187 insertions(+), 128 deletions(-) rename src/{utils => core}/asm.h (100%) rename src/{utils => core}/framebuffer.c (100%) rename src/{utils => core}/framebuffer.h (82%) rename src/{utils => core}/gdt.c (100%) rename src/{utils => core}/gdt.h (100%) rename src/{utils => core}/mem.c (100%) rename src/{utils => core}/mem.h (69%) rename src/{utils => core}/paging.c (100%) rename src/{utils => core}/paging.h (78%) rename src/{utils => core}/syscall.c (100%) rename src/{utils => core}/syscall.h (61%) rename src/{utils => core}/types.h (89%) create mode 100644 src/int/idt.c create mode 100644 src/int/idt.h diff --git a/src/Makefile b/src/Makefile index 2151883..3643f77 100644 --- a/src/Makefile +++ b/src/Makefile @@ -6,14 +6,14 @@ LD_SCRIPT := linker.ld # Indeed boot.o generated by boot.S should appear # first in the kernel binary (thus it must be linked first, cf the $(EXEC) rule) BOOT_OBJ := $(addsuffix .o,$(basename $(shell find ./boot -name "*.[c|S]" ! -name "boot.S"))) -UTILS_OBJ := $(addsuffix .o,$(basename $(shell find ./utils -name "*.[c|S]"))) +CORE_OBJ := $(addsuffix .o,$(basename $(shell find ./core -name "*.[c|S]"))) LIBC_OBJ := $(addsuffix .o,$(basename $(shell find ./libc -name "*.[c|S]"))) INT_OBJ := $(addsuffix .o,$(basename $(shell find ./int -name "*.[c|S]"))) all: $(EXEC) -$(EXEC): boot/boot.o $(BOOT_OBJ) $(UTILS_OBJ) $(LIBC_OBJ) $(INT_OBJ) bringelle.o +$(EXEC): boot/boot.o $(BOOT_OBJ) $(CORE_OBJ) $(LIBC_OBJ) $(INT_OBJ) bringelle.o ld -n -T $(LD_SCRIPT) -nostdlib -o bringelle $^ %.o: %.S diff --git a/src/boot/multiboot.c b/src/boot/multiboot.c index c41aeb7..71382d5 100644 --- a/src/boot/multiboot.c +++ b/src/boot/multiboot.c @@ -1,5 +1,4 @@ #include "multiboot.h" -#include "utils/mem.h" /// See boot.S extern u8* MB_INFO; diff --git a/src/boot/multiboot.h b/src/boot/multiboot.h index 010f60b..9eae31f 100644 --- a/src/boot/multiboot.h +++ b/src/boot/multiboot.h @@ -1,7 +1,8 @@ #ifndef MULTIBOOT_H #define MULTIBOOT_H -#include "utils/types.h" +#include "core/types.h" +#include "core/mem.h" typedef struct MBI_TAG_HEADER { u32 type; @@ -29,10 +30,12 @@ typedef struct MBI_TAG_FB { * Parse Bootloader boot information structure */ char mb_load_tag(char **data, char type); + /** * Search for Bootloader name */ char mb_load_bl_name(MBI_TAG_BL_NAME *data); + /** * Search for FrameBuffer structure (TODO: Finish) */ diff --git a/src/bringelle.c b/src/bringelle.c index 340e884..49670e8 100644 --- a/src/bringelle.c +++ b/src/bringelle.c @@ -1,14 +1,14 @@ #include "libc/stdio.h" #include "int/pic.h" #include "boot/multiboot.h" -#include "utils/mem.h" -#include "utils/gdt.h" -#include "utils/paging.h" - +#include "core/mem.h" +#include "core/gdt.h" +#include "core/paging.h" char show_tics=0; extern GDT_TSS TSS; +extern void interrupt_enable(); void utask(){ char msg[]="Message from the task :D"; @@ -20,8 +20,8 @@ void bringelle(){ clear(); printc("Booting Bringelle...\n",GREEN); - // Kernel boot sequence - pic_enable_interrupt(); + // ----- Kernel boot sequence + interrupt_enable(); print("Interrupts enabled\n"); paging_enable(); @@ -52,8 +52,6 @@ void bringelle(){ : "=m" (TSS.ss0), "=m" (TSS.esp0) ); - - while(1); } diff --git a/src/utils/asm.h b/src/core/asm.h similarity index 100% rename from src/utils/asm.h rename to src/core/asm.h diff --git a/src/utils/framebuffer.c b/src/core/framebuffer.c similarity index 100% rename from src/utils/framebuffer.c rename to src/core/framebuffer.c diff --git a/src/utils/framebuffer.h b/src/core/framebuffer.h similarity index 82% rename from src/utils/framebuffer.h rename to src/core/framebuffer.h index f4e52a0..3d862d6 100644 --- a/src/utils/framebuffer.h +++ b/src/core/framebuffer.h @@ -21,7 +21,15 @@ typedef struct VIDEO_STATE { * Print char */ void putchar(char); + +/** + * Scroll the framebuffer from one line + */ void scrollup(); + +/** + * Clear all char from the framebuffer + */ void clear(); #endif diff --git a/src/utils/gdt.c b/src/core/gdt.c similarity index 100% rename from src/utils/gdt.c rename to src/core/gdt.c diff --git a/src/utils/gdt.h b/src/core/gdt.h similarity index 100% rename from src/utils/gdt.h rename to src/core/gdt.h diff --git a/src/utils/mem.c b/src/core/mem.c similarity index 100% rename from src/utils/mem.c rename to src/core/mem.c diff --git a/src/utils/mem.h b/src/core/mem.h similarity index 69% rename from src/utils/mem.h rename to src/core/mem.h index f051219..5bef441 100644 --- a/src/utils/mem.h +++ b/src/core/mem.h @@ -3,6 +3,9 @@ #include "types.h" +/** + * Copy size byte from *src to *dst + */ void memcpy(void *src, void *dst, int size); #endif diff --git a/src/utils/paging.c b/src/core/paging.c similarity index 100% rename from src/utils/paging.c rename to src/core/paging.c diff --git a/src/utils/paging.h b/src/core/paging.h similarity index 78% rename from src/utils/paging.h rename to src/core/paging.h index 3e6b3f8..1e8f4e3 100644 --- a/src/utils/paging.h +++ b/src/core/paging.h @@ -5,6 +5,9 @@ #define PAGING_DIR_LOCATION 0x1000 #define PAGING_TABLE_LOCATION 0x5000 +/* + * Configure and enable paging + */ void paging_enable(); #endif \ No newline at end of file diff --git a/src/utils/syscall.c b/src/core/syscall.c similarity index 100% rename from src/utils/syscall.c rename to src/core/syscall.c diff --git a/src/utils/syscall.h b/src/core/syscall.h similarity index 61% rename from src/utils/syscall.h rename to src/core/syscall.h index 26f3682..1f0c584 100644 --- a/src/utils/syscall.h +++ b/src/core/syscall.h @@ -1,6 +1,9 @@ #ifndef SYSCALL_H #define SYSCALL_H +/* + * Perform a syscall + */ void syscall(); #endif \ No newline at end of file diff --git a/src/utils/types.h b/src/core/types.h similarity index 89% rename from src/utils/types.h rename to src/core/types.h index ce49701..071d8d6 100644 --- a/src/utils/types.h +++ b/src/core/types.h @@ -1,5 +1,5 @@ #ifndef TYPES_H -#define TYPES_h +#define TYPES_H typedef unsigned char u8; typedef unsigned short u16; diff --git a/src/int/8042.c b/src/int/8042.c index f0a987f..5446f11 100644 --- a/src/int/8042.c +++ b/src/int/8042.c @@ -1,6 +1,6 @@ #include "8042.h" -#include "utils/framebuffer.h" -#include "utils/asm.h" +#include "core/framebuffer.h" +#include "core/asm.h" DEFINE_AZERTY; diff --git a/src/int/8042.h b/src/int/8042.h index e35e5a0..5e61ffd 100644 --- a/src/int/8042.h +++ b/src/int/8042.h @@ -1,7 +1,7 @@ #ifndef _8042_H #define _8042_H -#include "utils/types.h" +#include "core/types.h" void _8042_keypress(); diff --git a/src/int/idt.c b/src/int/idt.c new file mode 100644 index 0000000..e3e71e8 --- /dev/null +++ b/src/int/idt.c @@ -0,0 +1,39 @@ +#include "idt.h" + +struct IDT_REGISTER IDTR={ + 8*IDT_MAX_ENTRY, + 0x0 +}; + +// Interrupt functions (cf int.S) +extern u32 +INT_DEFAULT, +INT_PAGE_FAULT, +INT_CLOCK, +INT_KEYPRESS, +INT_SYSCALL; + + +void idt_init(){ + // Map first default 32 entries + for(int i=0;i