WangRunji
|
230d5a0287
|
Move remap_the_kernel() out of `paging` mod. Add page fault handler.
|
7 years ago |
WangRunji
|
9b4d9a4a1f
|
Init IDT at beginning
|
7 years ago |
WangRunji
|
03d4adfcfe
|
Fix rsp. Use PhysicalAddress.
|
7 years ago |
WangRunji
|
21d97418d6
|
Impl lapic linking C code. Fix build.rs in macOS.
|
7 years ago |
WangRunji
|
5c80d903ad
|
Finish ACPI init
|
7 years ago |
WangRunji
|
8c7ca612e7
|
Add example of binding C
|
7 years ago |
WangRunji
|
c446d2bb5e
|
Add test for travis
|
7 years ago |
WangRunji
|
e9d89576a3
|
Port acpiinit()
|
7 years ago |
WangRunji
|
936c485ab9
|
Port MP & RSDP detecting
|
7 years ago |
WangRunji
|
5bf407de7c
|
Split vga_buffer.rs to VGA driver and VGA writer
|
7 years ago |
WangRunji
|
c436b9afbe
|
Move asm to boot dir. Continue to refactor...
|
7 years ago |
WangRunji
|
4ce1ba8f6d
|
Rewrite README. Add docker.
|
7 years ago |
Philipp Oppermann
|
f651987666
|
Add a dependency on bit_field
|
7 years ago |
Philipp Oppermann
|
00bbd6fbc6
|
Pass the memory controller to interrupts::init and use it to create a double fault stack
|
7 years ago |
Philipp Oppermann
|
3efe54169e
|
Provoke a stack overflow, which still causes a boot loop
|
7 years ago |
Philipp Oppermann
|
91ffde4728
|
Trigger a double fault by causing a page fault
|
7 years ago |
Philipp Oppermann
|
93aff8cfa8
|
Test our exception handler by invoking a breakpoint exception
|
7 years ago |
Philipp Oppermann
|
7becaf5f30
|
Add a dependency on lazy_static
|
7 years ago |
Philipp Oppermann
|
3bbc2a0bdc
|
Add a simple handler function for the breakpoint exception
|
7 years ago |
Philipp Oppermann
|
c2d22af1c7
|
Create a new interrupts module
|
7 years ago |
Philipp Oppermann
|
ad211de615
|
Use linked list allocator instead of bump allocator
|
7 years ago |
Philipp Oppermann
|
f2bbe43099
|
Use once crate to ensure that memory::init is only called once
|
7 years ago |
Philipp Oppermann
|
76550dcd95
|
Refactor: Move memory initialization to memory::init function
|
7 years ago |
Philipp Oppermann
|
c0d403abbe
|
Set a global allocator
|
7 years ago |
Philipp Oppermann
|
9dc998222a
|
Make the bump allocator lock free and impl Alloc for shared reference
|
7 years ago |
Philipp Oppermann
|
1f6633fe44
|
Add a heap_allocator module with a basic bump allocator
|
7 years ago |
Philipp Oppermann
|
5f017124dd
|
Add a dependency on the alloc crate
|
7 years ago |
Philipp Oppermann
|
2a3ce863fd
|
Enable write protect bit to improve safety
|
7 years ago |
Philipp Oppermann
|
ffaddeb84e
|
Fix boot loop by enabling the NXE bit in the EFER register
|
7 years ago |
Philipp Oppermann
|
fa3b572d68
|
Only print kernel/multiboot start/end in rust_main
|
7 years ago |
Philipp Oppermann
|
40f1732ccb
|
Call remap_the_kernel from rust_main
|
7 years ago |
Philipp Oppermann
|
1007c5157d
|
Remove paging testing code again
|
7 years ago |
Philipp Oppermann
|
eb5c9afa51
|
Add a dependency on the x86_64 crate
|
7 years ago |
Philipp Oppermann
|
b49cb6986c
|
Test the map_to function
|
7 years ago |
Philipp Oppermann
|
f957f2ecde
|
Add a dependency on the bitflags crate
|
7 years ago |
Philipp Oppermann
|
9f1a69cafa
|
Create a new AreaFrameAllocator and allocate maximum number of frames
|
7 years ago |
Philipp Oppermann
|
84c337e6f0
|
Create a memory module with a Frame struct and FrameAllocator trait
|
7 years ago |
Philipp Oppermann
|
98d97703f4
|
Calculate start and end of kernel and multiboot struct
|
7 years ago |
Philipp Oppermann
|
9a86f60835
|
Print kernel ELF sections
|
7 years ago |
Philipp Oppermann
|
cbc9e112bd
|
Print a proper message on panics
|
7 years ago |
Philipp Oppermann
|
f231f2c7f2
|
Print available memory areas
|
7 years ago |
Philipp Oppermann
|
5f65e1d31f
|
Add dependency on multiboot2 crate
|
7 years ago |
Philipp Oppermann
|
28ce5310c8
|
Pass address of multiboot info structure to rust_main
|
7 years ago |
Philipp Oppermann
|
08a4e795a4
|
Increase stack size to 16k
|
7 years ago |
Philipp Oppermann
|
59b8133396
|
Add `print!` and `println!` macros and a `clear_screen` function
|
7 years ago |
Philipp Oppermann
|
40aed4fa0f
|
Create a static WRITER protected by a spinlock
|
7 years ago |
Philipp Oppermann
|
0ed21fb943
|
Use volatile writes for printing to screen
|
7 years ago |
Philipp Oppermann
|
6aa3f67331
|
Add a print_something function to print an `H` in the lower left
|
7 years ago |
Philipp Oppermann
|
46d47f8d2e
|
Create a Writer struct with a `write_byte` function
|
7 years ago |
Philipp Oppermann
|
afc2c26a9d
|
Create a vga_buffer module
|
7 years ago |