2022-08-23 19:35:19 +00:00
|
|
|
.include "./source/kernel/Boot/Multiboot.S"
|
2022-08-17 23:26:49 +00:00
|
|
|
/*
|
|
|
|
* Allocate initial stack
|
|
|
|
*/
|
|
|
|
.section .bootstrap_stack, "aw", @nobits
|
2021-11-03 19:03:38 +00:00
|
|
|
stack_bottom:
|
|
|
|
.skip 16384 # 16 KiB
|
|
|
|
stack_top:
|
|
|
|
|
2022-08-17 23:26:49 +00:00
|
|
|
/*
|
|
|
|
* Preallocate a couple pages to get us bootstrapped
|
|
|
|
* Being carefull to not use any address the bootloader might
|
|
|
|
* be using for its multiboot structures
|
|
|
|
*/
|
|
|
|
.section .bss, "aw", @nobits
|
|
|
|
.align 4096
|
2022-08-19 21:44:38 +00:00
|
|
|
.globl boot_page_directory
|
2022-08-17 23:26:49 +00:00
|
|
|
boot_page_directory:
|
|
|
|
.skip 4096
|
|
|
|
boot_page_table:
|
|
|
|
.skip 4096
|
2022-08-19 21:44:38 +00:00
|
|
|
.globl multiboot_page_table
|
|
|
|
multiboot_page_table:
|
|
|
|
.skip 4096
|
2022-08-17 23:26:49 +00:00
|
|
|
# More page tables may be required
|
|
|
|
|
|
|
|
# Entry point
|
|
|
|
.section .multiboot.text, "a"
|
2021-11-03 19:03:38 +00:00
|
|
|
.global _start
|
2022-08-17 23:26:49 +00:00
|
|
|
.type _start, @function
|
2021-11-03 19:03:38 +00:00
|
|
|
_start:
|
2022-08-22 19:16:34 +00:00
|
|
|
|
|
|
|
/* push the pointer to the Multiboot information structure*/
|
|
|
|
pushl %ebx
|
|
|
|
|
|
|
|
/* push the magic value */
|
|
|
|
pushl %eax
|
|
|
|
call testLauncher
|
|
|
|
|
2022-08-17 23:26:49 +00:00
|
|
|
# Get physical address of the boot_page_table
|
|
|
|
movl $(boot_page_table - 0xC0000000), %edi
|
|
|
|
# Map address 0
|
|
|
|
movl $0, %esi
|
2022-08-21 19:15:15 +00:00
|
|
|
1:
|
2022-08-17 23:26:49 +00:00
|
|
|
cmpl $(_kernel_end - 0xC0000000), %esi
|
|
|
|
jge 3f
|
|
|
|
|
|
|
|
# Map physical address as "present and writable"
|
|
|
|
movl %esi, %edx
|
|
|
|
orl $0x003, %edx
|
|
|
|
movl %edx, (%edi)
|
|
|
|
|
|
|
|
2: # Size of page is 4096 bytes
|
|
|
|
addl $4096, %esi
|
|
|
|
# Size of entries in boot_page_table is 4 bytes
|
|
|
|
addl $4, %edi
|
|
|
|
# Loop to the next entry if we haven't finished.
|
|
|
|
loop 1b
|
|
|
|
|
|
|
|
3: # Map VGA video memory to 0xC03FF00 as "present, writable"
|
|
|
|
movl $(0x000B8000 | 0x003), boot_page_table - 0xC0000000 + 1023 * 4
|
|
|
|
|
|
|
|
|
|
|
|
# IMPORTANT NOTE FROM WIKI.OSDEV.ORG/HIGHER_HALF_X86_BARE_BONES
|
|
|
|
|
|
|
|
# The page table is used at both page directory entry 0 (virtually from 0x0
|
|
|
|
# to 0x3FFFFF) (thus identity mapping the kernel) and page directory entry
|
|
|
|
# 768 (virtually from 0xC0000000 to 0xC03FFFFF) (thus mapping it in the
|
|
|
|
# higher half). The kernel is identity mapped because enabling paging does
|
|
|
|
# not change the next instruction, which continues to be physical. The CPU
|
|
|
|
# would instead page fault if there was no identity mapping.\
|
|
|
|
|
|
|
|
# Map the page table to both virtual addresss 0x00000000 and 0xC0000000
|
|
|
|
movl $(boot_page_table - 0xC0000000 + 0x003), boot_page_directory - 0xC0000000 + 0
|
|
|
|
movl $(boot_page_table - 0xC0000000 + 0x003), boot_page_directory - 0xC0000000 + 768 * 4
|
|
|
|
|
|
|
|
# Set cr3 to the address of the boot_page_directory
|
|
|
|
movl $(boot_page_directory - 0xC0000000), %ecx
|
|
|
|
movl %ecx, %cr3
|
|
|
|
|
|
|
|
# Enable paging and the write-protect bit
|
|
|
|
movl %cr0, %ecx
|
|
|
|
orl $0x80010000, %ecx
|
|
|
|
movl %ecx, %cr0
|
|
|
|
|
|
|
|
# Jump to higher half with an absolute jump
|
|
|
|
lea 4f, %ecx
|
|
|
|
jmp *%ecx
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
4:
|
|
|
|
# At this point, paging is fully set up and enabled
|
|
|
|
isPaging:
|
2022-08-19 21:44:38 +00:00
|
|
|
# Unmap the identity mapping as it is now unnecessary
|
2022-08-17 23:26:49 +00:00
|
|
|
movl $0, boot_page_directory + 0
|
2022-08-19 21:44:38 +00:00
|
|
|
|
2022-08-17 23:26:49 +00:00
|
|
|
# Reload cr3 to force tlb flush
|
|
|
|
movl %cr3, %ecx
|
|
|
|
movl %ecx, %cr3
|
|
|
|
|
2021-11-03 19:03:38 +00:00
|
|
|
/*Setup the stack pointer to point to the beginning of our stack */
|
|
|
|
/* I believe its a high address growing down to lower adress for the stack on x86*/
|
|
|
|
mov $stack_top, %esp
|
|
|
|
|
|
|
|
/*Reset EFLAGS*/
|
|
|
|
pushl $0
|
|
|
|
popf
|
|
|
|
|
2022-08-17 23:26:49 +00:00
|
|
|
call early_main
|
2021-11-16 20:17:49 +00:00
|
|
|
|
2021-12-20 20:53:57 +00:00
|
|
|
cli
|
|
|
|
1: hlt
|
|
|
|
jmp 1b
|
2021-11-16 20:17:49 +00:00
|
|
|
|
|
|
|
|
2022-08-22 19:16:34 +00:00
|
|
|
.include "./source/kernel/Memory/GDT/gdt.s"
|
|
|
|
.include "./source/kernel/irs_table.s"
|
|
|
|
.include "./source/kernel/irq_table.s"
|
|
|
|
.include "./source/kernel/Interrupts/idt/idt.s"
|
|
|
|
.include "./source/kernel/Memory/paging.s"
|
|
|
|
.include "./source/kernel/cpu.s"
|
2021-11-16 20:17:49 +00:00
|
|
|
|
|
|
|
|