From 7db6db5ae64e7ab2626bbd898c63f58e053dc1a6 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 25 Apr 2021 12:41:24 +0200 Subject: [PATCH] Debug multiboot, enable apic and ACPI table parsing --- src/boot/boot.S | 2 +- src/boot/multiboot2.cc | 4 +-- src/boucane.cc | 5 +++- src/core/apic.cc | 54 ++++++++++++++++++++++++++++++++++ src/core/apic.hpp | 6 ++++ src/core/asm.hpp | 23 +++++++++++++++ src/core/idt.cc | 6 +++- src/core/idt.hpp | 4 +-- src/core/int.S | 10 +++++++ src/core/paging.cc | 11 +++---- src/core/paging.hpp | 1 + src/drivers/acpi.cc | 64 +++++++++++++++++++++++++++++++++++++++++ src/drivers/acpi.hpp | 43 +++++++++++++++++++++++++++ src/include/boucane.hpp | 2 ++ src/libs/stdio.cc | 4 +-- src/libs/stdio.hpp | 2 +- src/libs/string.cc | 4 ++- 17 files changed, 226 insertions(+), 19 deletions(-) create mode 100644 src/core/apic.cc create mode 100644 src/core/apic.hpp create mode 100644 src/core/asm.hpp create mode 100644 src/drivers/acpi.cc create mode 100644 src/drivers/acpi.hpp diff --git a/src/boot/boot.S b/src/boot/boot.S index 5e4d82c..029a67e 100644 --- a/src/boot/boot.S +++ b/src/boot/boot.S @@ -109,7 +109,7 @@ mov %eax, %cr0 # Now we are in Compatibility mode # Now we need to set CS.L=1 (setting up a 64 bit GDT) lgdt (gdtr) -jmp $0x08, $new_cs +ljmp $0x08, $new_cs new_cs: # Pay attention here! diff --git a/src/boot/multiboot2.cc b/src/boot/multiboot2.cc index b0e8c14..1b661b8 100644 --- a/src/boot/multiboot2.cc +++ b/src/boot/multiboot2.cc @@ -38,7 +38,7 @@ char mb2_find_new_rsdp(u32* mb2_info_addr, u64 *return_addr, u32 *return_size){ u32* addr=mb2_find_tag(mb2_info_addr,15); if(addr){ *return_size=addr[1]; - *return_addr=(u64)addr+2; + *return_addr=(u64)(addr+2); return 1; } return 0; @@ -48,7 +48,7 @@ char mb2_find_old_rsdp(u32* mb2_info_addr, u64 *return_addr, u32 *return_size){ u32* addr=mb2_find_tag(mb2_info_addr,14); if(addr){ *return_size=addr[1]; - *return_addr=(u64)addr+2; + *return_addr=(u64)(addr+2); return 1; } return 0; diff --git a/src/boucane.cc b/src/boucane.cc index aa06152..6541902 100644 --- a/src/boucane.cc +++ b/src/boucane.cc @@ -2,6 +2,8 @@ #include "core/idt.hpp" #include "boot/multiboot2.hpp" #include "core/paging.hpp" +#include "core/apic.hpp" +#include "drivers/acpi.hpp" extern u32 MB_INFO; @@ -11,11 +13,12 @@ extern "C" void boucane(){ idt_enable_interrupt(); paging_enable(); + //apic_enable(); u64 p; u32 size; if(mb2_find_old_rsdp((u32*)MB_INFO,&p,&size)){ - printk("RSDP Table found!"); + acpi_load_madt((void*)p); } while(1); } \ No newline at end of file diff --git a/src/core/apic.cc b/src/core/apic.cc new file mode 100644 index 0000000..a93e54e --- /dev/null +++ b/src/core/apic.cc @@ -0,0 +1,54 @@ +#include "apic.hpp" + +#include "paging.hpp" +#include "types.hpp" +#include "asm.hpp" +#include "libs/stdio.hpp" + +extern u64* kpml4; +char enable=0; +#define APIC_LAPIC_ADDR 0xFEE00000 +#define APIC_IOAPIC_ADDR 0xFEC00000 +#define APIC_LAPIC_REG_SPURIOUS 0xF0 + +void apic_enable(){ + // Allocate APIC registers + paging_allocate_addr(kpml4, APIC_LAPIC_ADDR, APIC_LAPIC_ADDR, + PAGING_OPT_RW|PAGING_OPT_P|PAGING_OPT_PCD); + paging_allocate_addr(kpml4, APIC_IOAPIC_ADDR, APIC_IOAPIC_ADDR, + PAGING_OPT_RW|PAGING_OPT_P|PAGING_OPT_PCD); + + // Configure APIC register location + u32 h=APIC_LAPIC_ADDR>>32; + u32 l=(APIC_LAPIC_ADDR&0xFFFFFFFF); + l|=0x800; // Enable apic + WRITE_MSR(0x1B,h,l); + + // Enable apic 2 + u8 *c_base=(u8*)APIC_LAPIC_ADDR; + c_base+=APIC_LAPIC_REG_SPURIOUS; + u32* base=(u32*)c_base; + *base=0x100|(*base); + + u8 *c_base2=(u8*)APIC_IOAPIC_ADDR; + u32* base2=(u32*)c_base2; + *base2=0x12; + base2=(u32*)(c_base2+0x10); + *base2=(0x0<<12)|0x3C; + enable=1; +} + +extern "C" void ack(){ + if(enable){ + u8 data; + do { + inb(0x64,data); + } + while((data&0x01) == 0); + inb(0x60,data); + + u8 *c_base=(u8*)(APIC_LAPIC_ADDR|0xB0); + u32* base=(u32*)c_base; + *base=*base|0; + } +} \ No newline at end of file diff --git a/src/core/apic.hpp b/src/core/apic.hpp new file mode 100644 index 0000000..edfeaa3 --- /dev/null +++ b/src/core/apic.hpp @@ -0,0 +1,6 @@ +#pragma once + + + + +void apic_enable(); \ No newline at end of file diff --git a/src/core/asm.hpp b/src/core/asm.hpp new file mode 100644 index 0000000..8a931f6 --- /dev/null +++ b/src/core/asm.hpp @@ -0,0 +1,23 @@ +#pragma once + +#define READ_MSR(reg,high,low) \ + asm volatile( \ + "mov %2, %%ecx;rdmsr \n\t" \ + "mov %%edx, %0 \n\t" \ + "mov %%eax, %1" \ + : "=m" (high), "=m" (low) :"i" (reg)) + +#define WRITE_MSR(reg,high,low) \ + asm volatile( \ + "mov %1, %%edx \n\t" \ + "mov %2, %%eax \n\t" \ + "mov %0, %%ecx;wrmsr"::"i" (reg), "m" (high), "m" (low)) + +#define outb(port,value) \ + asm volatile ("outb %%al, %%dx" :: "a"(value), "d" (port) ) + +#define outbj(port,value) \ + asm volatile ("outb %%al, %%dx;" :: "a" (value), "d"(port) ) + +#define inb(port,dst) \ + asm volatile ("inb %%dx, %%al": "=a" (dst) : "d" (port)) diff --git a/src/core/idt.cc b/src/core/idt.cc index b808625..a73d92c 100644 --- a/src/core/idt.cc +++ b/src/core/idt.cc @@ -6,7 +6,7 @@ IDT_REGISTER IDTR = { IDT_ADDR }; -extern u64 INT_DEFAULT,INT_0,INT_14; +extern u64 INT_DEFAULT,INT_0,INT_14,INT_KBD; void idt_enable_interrupt(void){ IDT_DESCRIPTOR d; @@ -25,6 +25,10 @@ void idt_enable_interrupt(void){ d.offset=(u64)&INT_14; idt_write_descriptor(d, i); } + else if(i==60){ // Page fault + d.offset=(u64)&INT_KBD; + idt_write_descriptor(d, i); + } else { d.offset=(u64)&INT_DEFAULT; idt_write_descriptor(d, i); diff --git a/src/core/idt.hpp b/src/core/idt.hpp index f2aca43..2f2050d 100644 --- a/src/core/idt.hpp +++ b/src/core/idt.hpp @@ -4,7 +4,7 @@ #include "libs/stdio.hpp" #define IDT_GATE_SIZE 16 -#define IDT_MAX_ENTRIES 50 +#define IDT_MAX_ENTRIES 200 #define IDT_ADDR 0x200000 #define IDT_OPT_P (1 << 15) @@ -14,8 +14,6 @@ #define IDT_OPT_PRVL_2 (2 << 13) #define IDT_OPT_PRVL_3 (3 << 13) - - typedef struct IDT_REGISTER { u16 limit; u64 base; diff --git a/src/core/int.S b/src/core/int.S index d5ad643..1c8d7bb 100644 --- a/src/core/int.S +++ b/src/core/int.S @@ -1,4 +1,5 @@ .extern printk +.extern ack .macro call_printk msg mov \msg, %rdi @@ -26,8 +27,17 @@ INT_14: jmp INT_14_INFINITE iretq +.globl INT_KBD +INT_KBD: + call_printk $MSG_INT_KBD + call ack + iretq MSG_INT_0: .asciz "Zero Division error!" MSG_INT_14: .asciz "Page fault!" +MSG_INT_KBD: +.asciz "Key press!" +MSG: +.asciz "Called :)\n" \ No newline at end of file diff --git a/src/core/paging.cc b/src/core/paging.cc index b9ab94e..8e58511 100644 --- a/src/core/paging.cc +++ b/src/core/paging.cc @@ -4,6 +4,7 @@ #include "libs/string.hpp" char paging_status[PAGING_MAX_PAGE / 8]; +u64* kpml4; void paging_enable() { // Init status @@ -16,16 +17,16 @@ void paging_enable() { paging_allocate_contiguous(PAGING_KERNEL_USED_PAGE); // Setting up new kernel address space - u64* pml4=paging_allocate_table(); + kpml4=paging_allocate_table(); for(int i=0;i=1) + u64 pow_value=i/pow(10,len); + while(pow_value>=1) { len++; + pow_value=i/pow(10,len); } // Build string