Debug trampoline and paging
This commit is contained in:
parent
f13b26eeb4
commit
152f14654b
6 changed files with 46 additions and 22 deletions
|
@ -1,8 +1,6 @@
|
||||||
.globl _start
|
.globl _start
|
||||||
.globl MB_INFO
|
|
||||||
.extern _bss_start
|
.extern _bss_start
|
||||||
.extern _bss_end
|
.extern _bss_end
|
||||||
.extern higherhalf
|
|
||||||
|
|
||||||
.section .multiboot
|
.section .multiboot
|
||||||
|
|
||||||
|
@ -35,7 +33,7 @@ mb_header_start:
|
||||||
# ----------- End tag
|
# ----------- End tag
|
||||||
# ----------- Ask framebuffer tag
|
# ----------- Ask framebuffer tag
|
||||||
.align 8
|
.align 8
|
||||||
.short 6
|
.short 5
|
||||||
.short 1
|
.short 1
|
||||||
.int 20
|
.int 20
|
||||||
.int 0
|
.int 0
|
||||||
|
@ -55,6 +53,7 @@ MB_INFO: # Will contains the Multiboot2 information data structure address
|
||||||
|
|
||||||
_start:
|
_start:
|
||||||
mov %ebx, (MB_INFO)
|
mov %ebx, (MB_INFO)
|
||||||
|
|
||||||
# ----- Setup PAE Paging (identity on the first 10MB)
|
# ----- Setup PAE Paging (identity on the first 10MB)
|
||||||
mov $8192, %ecx # 8*4096/4 (8 tables of 4096 byte each divide by 4 because of movl)
|
mov $8192, %ecx # 8*4096/4 (8 tables of 4096 byte each divide by 4 because of movl)
|
||||||
mov $0, %eax
|
mov $0, %eax
|
||||||
|
@ -122,8 +121,12 @@ mov %ax, %gs
|
||||||
mov %ax, %ss
|
mov %ax, %ss
|
||||||
mov $__stack_pma, %esp
|
mov $__stack_pma, %esp
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
|
movq (MB_INFO), %rdi
|
||||||
|
mov $0xFFFFFFFF,%rax
|
||||||
|
and %rax, %rdi
|
||||||
call trampoline
|
call trampoline
|
||||||
|
movq %rax, (MB_INFO)
|
||||||
mov $__kernel_vma, %rsp
|
mov $__kernel_vma, %rsp
|
||||||
|
|
||||||
# Zeroing the .bss section
|
# Zeroing the .bss section
|
||||||
|
@ -138,6 +141,7 @@ start_zeroing:
|
||||||
end_zeroing:
|
end_zeroing:
|
||||||
|
|
||||||
# Launch kernel
|
# Launch kernel
|
||||||
|
movq (MB_INFO), %rdi
|
||||||
call boucane
|
call boucane
|
||||||
|
|
||||||
# GDT
|
# GDT
|
||||||
|
|
|
@ -10,6 +10,10 @@
|
||||||
/// @brief Define where first PAE paging paging will be
|
/// @brief Define where first PAE paging paging will be
|
||||||
u64 trampoline_next_page;
|
u64 trampoline_next_page;
|
||||||
|
|
||||||
|
/// @brief Ensure
|
||||||
|
#define MAX_MB_INFOS 4096
|
||||||
|
u8 mb_infos[MAX_MB_INFOS];
|
||||||
|
|
||||||
u64 trampoline_paging_allocate_table(){
|
u64 trampoline_paging_allocate_table(){
|
||||||
for(u64 i=0;i<512;i++)
|
for(u64 i=0;i<512;i++)
|
||||||
((u64*)trampoline_next_page)[i]=0;
|
((u64*)trampoline_next_page)[i]=0;
|
||||||
|
@ -63,7 +67,12 @@ void trampoline_paging_allocate_addr(u64* pml4_table, u64 virt, u64 phy, u16 opt
|
||||||
/**
|
/**
|
||||||
* Setup High-Half Kernel Paging
|
* Setup High-Half Kernel Paging
|
||||||
*/
|
*/
|
||||||
extern "C" void trampoline(){
|
extern "C" u8* trampoline(u8* mb_infos_addr){
|
||||||
|
// Save mb infos before anything else
|
||||||
|
for(int i=0;i<MAX_MB_INFOS;i++){
|
||||||
|
mb_infos[i]=mb_infos_addr[i];
|
||||||
|
}
|
||||||
|
|
||||||
u64 kernel_vma,stack_pma;
|
u64 kernel_vma,stack_pma;
|
||||||
asm("movq $__kernel_vma, %0":"=r"(kernel_vma));
|
asm("movq $__kernel_vma, %0":"=r"(kernel_vma));
|
||||||
asm("movq $__userspace_pma, %0":"=r"(trampoline_next_page));
|
asm("movq $__userspace_pma, %0":"=r"(trampoline_next_page));
|
||||||
|
@ -91,4 +100,6 @@ extern "C" void trampoline(){
|
||||||
"movq %0, %%rax \n\t"
|
"movq %0, %%rax \n\t"
|
||||||
"movq %%rax, %%cr3 \n\t"
|
"movq %%rax, %%cr3 \n\t"
|
||||||
:: "r" (pml4));
|
:: "r" (pml4));
|
||||||
|
|
||||||
|
return mb_infos;
|
||||||
}
|
}
|
|
@ -9,18 +9,25 @@
|
||||||
#include "libs/stdio.hpp"
|
#include "libs/stdio.hpp"
|
||||||
#include "core/asm.hpp"
|
#include "core/asm.hpp"
|
||||||
|
|
||||||
|
u64 kernel_vma,stack_pma,userspace_pma;
|
||||||
|
|
||||||
extern u32 MB_INFO;
|
extern "C" void boucane(u64 mb_info){
|
||||||
extern u64 res_binary_res_terminus_psf_start;
|
// Init linker variables
|
||||||
|
asm volatile ("movq $__kernel_vma, %0":"=m"(kernel_vma));
|
||||||
|
asm volatile ("movq $__userspace_pma, %0":"=m"(userspace_pma));
|
||||||
|
asm volatile ("movq $__stack_pma, %0":"=m"(stack_pma));
|
||||||
|
asm volatile ("call load_gdt");
|
||||||
|
|
||||||
extern "C" void boucane(){
|
|
||||||
// Init data structures
|
// Init data structures
|
||||||
LOAD_GDT();
|
|
||||||
paging_enable();
|
paging_enable();
|
||||||
idt_enable_interrupt();
|
idt_enable_interrupt();
|
||||||
|
|
||||||
|
// Looking for framebuffer
|
||||||
|
vga_t_init();
|
||||||
|
vga_t_clear();
|
||||||
FRAMEBUFFER fb_info;
|
FRAMEBUFFER fb_info;
|
||||||
if(mb2_find_framebuffer((u32*)&MB_INFO, &fb_info)){
|
|
||||||
|
if(mb2_find_framebuffer((u32*)mb_info, &fb_info)){
|
||||||
if(fb_info.bpp>16){
|
if(fb_info.bpp>16){
|
||||||
FB_CFG conf;
|
FB_CFG conf;
|
||||||
conf.depth=fb_info.bpp;
|
conf.depth=fb_info.bpp;
|
||||||
|
@ -33,8 +40,8 @@ extern "C" void boucane(){
|
||||||
__putchar=psf_putchar;
|
__putchar=psf_putchar;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
vga_t_init();
|
|
||||||
vga_t_clear();
|
// Booting!
|
||||||
printk("Booting Boucane v%d.%d.%d\n",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH);
|
printk("Booting Boucane v%d.%d.%d\n",VERSION_MAJOR,VERSION_MINOR, VERSION_PATH);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
#include "libs/string.hpp"
|
#include "libs/string.hpp"
|
||||||
|
|
||||||
char paging_status[PAGING_MAX_PAGE / 8];
|
char paging_status[PAGING_MAX_PAGE / 8];
|
||||||
u64 kernel_vma,stack_pma,userspace_pma;
|
|
||||||
u64 kpages[MAX_TABLES][512] __attribute__((aligned(4096)));
|
u64 kpages[MAX_TABLES][512] __attribute__((aligned(4096)));
|
||||||
int kpages_next=1; // First page is for the pml4
|
int kpages_next=1; // First page is for the pml4
|
||||||
|
|
||||||
|
@ -16,10 +15,6 @@ u64* paging_allocate_table(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void paging_enable() {
|
void paging_enable() {
|
||||||
// Init linker variables
|
|
||||||
asm("movq $__kernel_vma, %0":"=r"(kernel_vma));
|
|
||||||
asm("movq $__userspace_pma, %0":"=r"(userspace_pma));
|
|
||||||
asm("movq $__stack_pma, %0":"=r"(stack_pma));
|
|
||||||
|
|
||||||
// Init status
|
// Init status
|
||||||
for (int i = 0; i < PAGING_MAX_PAGE / 8; i++) {
|
for (int i = 0; i < PAGING_MAX_PAGE / 8; i++) {
|
||||||
|
@ -28,9 +23,10 @@ void paging_enable() {
|
||||||
|
|
||||||
// Init tables
|
// Init tables
|
||||||
for(int i=0;i<MAX_TABLES;i++){
|
for(int i=0;i<MAX_TABLES;i++){
|
||||||
memset(kpages[i], 0, 512*64);
|
for(int j=0;j<512;j++)
|
||||||
|
kpages[i][j]=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allocate paging for the kernel (to not override the source
|
// Allocate paging for the kernel (to not override the source
|
||||||
// code during the next paging_allocate_table() calls)
|
// code during the next paging_allocate_table() calls)
|
||||||
paging_allocate_contiguous(userspace_pma/4096);
|
paging_allocate_contiguous(userspace_pma/4096);
|
||||||
|
@ -41,7 +37,7 @@ void paging_enable() {
|
||||||
}
|
}
|
||||||
// 4096 bytes stack
|
// 4096 bytes stack
|
||||||
paging_allocate_addr(kpages[0],kernel_vma-4096,stack_pma,0x3,0);
|
paging_allocate_addr(kpages[0],kernel_vma-4096,stack_pma,0x3,0);
|
||||||
|
|
||||||
// Load new pml4
|
// Load new pml4
|
||||||
u64 kpage_phy=((u64)kpages[0]-kernel_vma);
|
u64 kpage_phy=((u64)kpages[0]-kernel_vma);
|
||||||
asm volatile(
|
asm volatile(
|
||||||
|
|
|
@ -24,9 +24,10 @@
|
||||||
/// @brief All PAE table structures are allocated here
|
/// @brief All PAE table structures are allocated here
|
||||||
extern u64 kpages[MAX_TABLES][512];
|
extern u64 kpages[MAX_TABLES][512];
|
||||||
|
|
||||||
/// @brief Various variables from the linker
|
/// cf boucane.hpp
|
||||||
extern u64 kernel_vma,stack_pma,userspace_pma;
|
extern u64 kernel_vma,stack_pma,userspace_pma;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup and enable PAE paging
|
* Setup and enable PAE paging
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,4 +10,9 @@
|
||||||
#include "libs/stdio.hpp"
|
#include "libs/stdio.hpp"
|
||||||
#include "libs/string.hpp"
|
#include "libs/string.hpp"
|
||||||
|
|
||||||
#define LOAD_GDT() asm("call load_gdt")
|
/// @brief Various variables from the linker
|
||||||
|
extern u64 kernel_vma,stack_pma,userspace_pma;
|
||||||
|
|
||||||
|
/// @brief Binary references
|
||||||
|
extern u64 res_binary_res_terminus_psf_start;
|
||||||
|
extern u64 res_binary_res_terminus_psf_end;
|
||||||
|
|
Loading…
Add table
Reference in a new issue