aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarvin Borner2020-05-28 19:40:44 +0200
committerMarvin Borner2020-05-28 19:40:44 +0200
commitf784575fdbbee6e096866c0b506fd660dc5ffe1c (patch)
treefab4d0fe05e72c8dc4dba1161f457a877eada61b /src
parent8e1e50085e9c53ddd0b7400173ba16a140b7e967 (diff)
Started higher-half kernel
Diffstat (limited to 'src')
-rw-r--r--src/kernel/boot.asm70
-rw-r--r--src/kernel/linker.ld28
2 files changed, 64 insertions, 34 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index 444b73a..6aa5c1a 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -1,4 +1,23 @@
-section .multiboot
+bits 32
+
+; Some variables
+kernel_virt_base equ 0xC0000000
+kernel_page_number equ (kernel_virt_base >> 22)
+kernel_stack equ 0x4000
+
+section .data
+ align 0x1000
+
+ boot_page_dir:
+ dd 0x00000083
+ times (kernel_page_number - 1) dd 0
+ dd 0x00000083
+ times (1024 - kernel_page_number - 1) dd 0
+
+section .text
+ align 4
+
+ multiboot:
header_start:
dd 0xe85250d6
dd 0
@@ -15,6 +34,12 @@ section .multiboot
dd 6 ; mmap
dd 13 ; smbios
+ ; Page-align tag
+ align 8
+ dw 6
+ dw 0
+ dd 8
+
; Empty tag
align 8
dw 0
@@ -22,29 +47,36 @@ section .multiboot
dd 8
header_end:
-section .start_section
- dd _start
+ global boot
+ extern kernel_main
+ boot:
+ mov ecx, (boot_page_dir - kernel_virt_base)
+ mov cr3, ecx
-; Initialize stack
-;section .bss
-; align 16
-;
-; STACK_BOTTOM:
-; resb 0x4000
-; STACK_TOP:
+ mov ecx, cr4
+ or ecx, 0x00000010
+ mov cr4, ecx
+
+ mov ecx, cr0
+ or ecx, 0x80000000
+ mov cr0, ecx
-section .text
- global _start
- extern kernel_main
- _start:
- ;mov esp, STACK_TOP
+ lea ecx, [higher_half]
+ jmp ecx
+
+ higher_half:
+ mov dword [boot_page_dir], 0
+ invlpg [0]
+
+ mov esp, stack + kernel_stack
push esp
push ebx
push eax
cli
call kernel_main
- jmp $
+ hlt
-section .end
- global KERNEL_END
- KERNEL_END: \ No newline at end of file
+section .bss
+ align 32
+ stack:
+ resb kernel_stack \ No newline at end of file
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld
index f134ccb..b7bde1d 100644
--- a/src/kernel/linker.ld
+++ b/src/kernel/linker.ld
@@ -1,34 +1,32 @@
-ENTRY(_start)
+ENTRY(boot)
+
+phys = 0x100000;
+offset = 0xC0000000;
+virt = offset + phys;
SECTIONS
{
- . = 1M;
+ . = virt;
- .text BLOCK(4K) : ALIGN(4K)
+ .text : AT (ADDR (.text) - offset)
{
- *(.multiboot)
- *(.start_section)
*(.text)
- }
-
- .rodata BLOCK(4K) : ALIGN(4K)
- {
*(.rodata)
+ . = ALIGN(0x1000);
}
- .data BLOCK(4K) : ALIGN(4K)
+ .data : AT (ADDR (.data) - offset)
{
*(.data)
+ . = ALIGN(0x1000);
}
- .bss BLOCK(4K) : ALIGN(4K)
+ .bss : AT (ADDR (.bss) - offset)
{
*(.COMMON)
*(.bss)
+ . = ALIGN(0x1000);
}
- .end BLOCK(4K) : ALIGN(4K)
- {
- *(.end)
- }
+ KERNEL_END = .;
} \ No newline at end of file