mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-17 04:32:27 +00:00
Implement Maloc
This commit is contained in:
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
@@ -14,7 +14,7 @@
|
|||||||
{
|
{
|
||||||
"label": "Run QEMU",
|
"label": "Run QEMU",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "qemu-system-aarch64 -M raspi3b -cpu cortex-a53 -serial stdio -sd sd.img -display none -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/kernel8.img -S -s -m 1024",
|
"command": "llvm-objcopy -O binary target/aarch64-unknown-none/debug/nova target/aarch64-unknown-none/debug/kernel8.img && qemu-system-aarch64 -M raspi3b -cpu cortex-a53 -serial stdio -sd sd.img -display none -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/kernel8.img -S -s -m 1024",
|
||||||
"isBackground": true,
|
"isBackground": true,
|
||||||
"dependsOn": ["Build"]
|
"dependsOn": ["Build"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,5 +12,8 @@ NovaOS is a expository project where I build a kernel from scratch for a Raspber
|
|||||||
- GPIO Interrupts ✓
|
- GPIO Interrupts ✓
|
||||||
- Communicate with peripherals via mailboxes ✓
|
- Communicate with peripherals via mailboxes ✓
|
||||||
- Frame Buffer ✓
|
- Frame Buffer ✓
|
||||||
|
- Heap Memory allocation
|
||||||
|
- Dynamic clock speed
|
||||||
- MMU
|
- MMU
|
||||||
|
- Multiprocessing
|
||||||
- Basic Terminal over UART
|
- Basic Terminal over UART
|
||||||
|
|||||||
10
link.ld
10
link.ld
@@ -27,9 +27,17 @@ SECTIONS {
|
|||||||
KEEP(*(.vector_table))
|
KEEP(*(.vector_table))
|
||||||
}
|
}
|
||||||
|
|
||||||
.stack 0x8018000 : ALIGN(16)
|
.heap 0x8000000 : ALIGN(16)
|
||||||
|
{
|
||||||
|
__heap_start = .;
|
||||||
|
. += 0x10000; #10kB
|
||||||
|
__heap_end = .;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stack : ALIGN(16)
|
||||||
{
|
{
|
||||||
__stack_start = .;
|
__stack_start = .;
|
||||||
|
. += 0x10000; #10kB stack
|
||||||
__stack_end = .;
|
__stack_end = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ use crate::mailbox::{read_mailbox, write_mailbox};
|
|||||||
struct Mailbox([u32; 36]);
|
struct Mailbox([u32; 36]);
|
||||||
|
|
||||||
const ALLOCATE_BUFFER: u32 = 0x0004_0001;
|
const ALLOCATE_BUFFER: u32 = 0x0004_0001;
|
||||||
const GET_PHYSICAL_DISPLAY_WH: u32 = 0x0004_0003;
|
|
||||||
const SET_PHYSICAL_DISPLAY_WH: u32 = 0x0004_8003;
|
const SET_PHYSICAL_DISPLAY_WH: u32 = 0x0004_8003;
|
||||||
const SET_VIRTUAL_DISPLAY_WH: u32 = 0x0004_8004;
|
const SET_VIRTUAL_DISPLAY_WH: u32 = 0x0004_8004;
|
||||||
const SET_PIXEL_DEPTH: u32 = 0x0004_8005;
|
const SET_PIXEL_DEPTH: u32 = 0x0004_8005;
|
||||||
@@ -242,26 +241,3 @@ impl FrameBuffer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn print_display_resolution() {
|
|
||||||
let mut mailbox: [u32; 8] = [0; 8];
|
|
||||||
mailbox[0] = 8 * 4;
|
|
||||||
mailbox[1] = 0;
|
|
||||||
mailbox[2] = GET_PHYSICAL_DISPLAY_WH;
|
|
||||||
mailbox[3] = 8;
|
|
||||||
mailbox[4] = 0;
|
|
||||||
mailbox[5] = 0;
|
|
||||||
mailbox[6] = 0;
|
|
||||||
mailbox[7] = 0;
|
|
||||||
|
|
||||||
let addr = core::ptr::addr_of!(mailbox[0]) as u32;
|
|
||||||
|
|
||||||
write_mailbox(8, addr);
|
|
||||||
|
|
||||||
let _ = read_mailbox(8);
|
|
||||||
if mailbox[1] == 0 {
|
|
||||||
println!("Failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
println!("Width x Height: {}x{}", mailbox[5], mailbox[6]);
|
|
||||||
}
|
|
||||||
|
|||||||
114
src/heap.rs
Normal file
114
src/heap.rs
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
use core::{
|
||||||
|
alloc::GlobalAlloc,
|
||||||
|
ptr::{self, null, null_mut, read_volatile, write_volatile},
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::NovaError;
|
||||||
|
extern crate alloc;
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
static mut __heap_start: u8;
|
||||||
|
static mut __heap_end: u8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
struct Header {
|
||||||
|
next: *mut Header,
|
||||||
|
before: *mut Header,
|
||||||
|
size: usize,
|
||||||
|
free: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
pub struct Novalloc;
|
||||||
|
|
||||||
|
unsafe impl GlobalAlloc for Novalloc {
|
||||||
|
unsafe fn alloc(&self, layout: core::alloc::Layout) -> *mut u8 {
|
||||||
|
malloc(layout.size()).unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe fn dealloc(&self, ptr: *mut u8, layout: core::alloc::Layout) {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[global_allocator]
|
||||||
|
static GLOBAL_ALLOCATOR: Novalloc = Novalloc;
|
||||||
|
|
||||||
|
pub fn init_malloc() {
|
||||||
|
unsafe {
|
||||||
|
let heap_end = &raw const __heap_end as usize;
|
||||||
|
let heap_start = &raw const __heap_start as usize;
|
||||||
|
let s = size_of::<Header>();
|
||||||
|
ptr::write(
|
||||||
|
&raw const __heap_start as *mut Header,
|
||||||
|
Header {
|
||||||
|
next: null_mut(),
|
||||||
|
before: null_mut(),
|
||||||
|
size: heap_end - heap_start - size_of::<Header>(),
|
||||||
|
free: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn malloc(mut size: usize) -> Result<*mut u8, NovaError> {
|
||||||
|
let mut head = &raw const __heap_start as *mut Header;
|
||||||
|
|
||||||
|
// Align size to the next 16 bytes
|
||||||
|
size += (16 - (size % 16)) % 16;
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
// Find First-Fit memory segment
|
||||||
|
while !(*head).free || size > (*head).size {
|
||||||
|
if (*head).next.is_null() {
|
||||||
|
return Err(NovaError::HeapFull);
|
||||||
|
}
|
||||||
|
head = (*head).next;
|
||||||
|
}
|
||||||
|
|
||||||
|
let byte_offset = size_of::<Header>() + size;
|
||||||
|
let new_address = head.byte_add(byte_offset);
|
||||||
|
|
||||||
|
// Handle case where free data block is in the center
|
||||||
|
let mut next = null_mut();
|
||||||
|
if !(*head).next.is_null() {
|
||||||
|
next = (*head).next;
|
||||||
|
(*next).before = new_address;
|
||||||
|
}
|
||||||
|
|
||||||
|
ptr::write(
|
||||||
|
new_address as *mut Header,
|
||||||
|
Header {
|
||||||
|
next,
|
||||||
|
before: head,
|
||||||
|
size: (*head).size - size - size_of::<Header>(),
|
||||||
|
free: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
(*head).next = new_address;
|
||||||
|
(*head).free = false;
|
||||||
|
(*head).size = size;
|
||||||
|
|
||||||
|
let data_start_address = new_address.byte_add(size_of::<Header>());
|
||||||
|
|
||||||
|
Ok(data_start_address as *mut u8)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn traverse_heap_tree() {
|
||||||
|
let mut pointer_address = &raw const __heap_start as *const Header;
|
||||||
|
loop {
|
||||||
|
let head = unsafe { read_volatile(pointer_address) };
|
||||||
|
println!("Header {}", pointer_address as u32);
|
||||||
|
println!("free: {}", head.free);
|
||||||
|
println!("size: {}", head.size);
|
||||||
|
println!("hasNext: {}", !head.next.is_null());
|
||||||
|
if !head.next.is_null() {
|
||||||
|
pointer_address = head.next;
|
||||||
|
} else {
|
||||||
|
println!("---------------");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,9 +23,9 @@ pub mod peripherals;
|
|||||||
|
|
||||||
pub mod configuration;
|
pub mod configuration;
|
||||||
pub mod framebuffer;
|
pub mod framebuffer;
|
||||||
|
pub mod heap;
|
||||||
pub mod irq_interrupt;
|
pub mod irq_interrupt;
|
||||||
pub mod mailbox;
|
pub mod mailbox;
|
||||||
pub mod math;
|
|
||||||
pub mod timer;
|
pub mod timer;
|
||||||
|
|
||||||
pub fn mmio_read(address: u32) -> u32 {
|
pub fn mmio_read(address: u32) -> u32 {
|
||||||
@@ -39,4 +39,5 @@ pub fn mmio_write(address: u32, data: u32) {
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum NovaError {
|
pub enum NovaError {
|
||||||
Mailbox,
|
Mailbox,
|
||||||
|
HeapFull,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,10 @@ macro_rules! mailbox_command {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
mailbox_command!(mb_read_soc_temp, 0x00030006, 4, 8);
|
mailbox_command!(mb_read_soc_temp, 0x0003_0006, 4, 8);
|
||||||
|
|
||||||
|
// Framebuffer
|
||||||
|
mailbox_command!(mb_get_display_resolution, 0x0004_0003, 0, 8);
|
||||||
|
|
||||||
pub fn read_mailbox(channel: u32) -> u32 {
|
pub fn read_mailbox(channel: u32) -> u32 {
|
||||||
// Wait until mailbox is not empty
|
// Wait until mailbox is not empty
|
||||||
|
|||||||
56
src/main.rs
56
src/main.rs
@@ -8,11 +8,14 @@ use core::{
|
|||||||
ptr::write_volatile,
|
ptr::write_volatile,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern crate alloc;
|
||||||
|
use alloc::vec::Vec;
|
||||||
|
|
||||||
use nova::{
|
use nova::{
|
||||||
framebuffer::{print_display_resolution, FrameBuffer, BLUE, GREEN, ORANGE, RED, YELLOW},
|
framebuffer::{FrameBuffer, BLUE, GREEN, RED},
|
||||||
|
heap::{init_malloc, malloc, traverse_heap_tree},
|
||||||
irq_interrupt::enable_irq_source,
|
irq_interrupt::enable_irq_source,
|
||||||
mailbox::mb_read_soc_temp,
|
mailbox::mb_read_soc_temp,
|
||||||
math::polar_to_cartesian,
|
|
||||||
peripherals::{
|
peripherals::{
|
||||||
gpio::{
|
gpio::{
|
||||||
blink_gpio, gpio_pull_up, set_falling_edge_detect, set_gpio_function, GPIOFunction,
|
blink_gpio, gpio_pull_up, set_falling_edge_detect, set_gpio_function, GPIOFunction,
|
||||||
@@ -44,7 +47,7 @@ fn panic(_panic: &PanicInfo) -> ! {
|
|||||||
pub unsafe extern "C" fn _start() {
|
pub unsafe extern "C" fn _start() {
|
||||||
// Set the stack pointer
|
// Set the stack pointer
|
||||||
asm!(
|
asm!(
|
||||||
"ldr x0, =0x8008000",
|
"ldr x0, =__stack_end",
|
||||||
"mov sp, x0",
|
"mov sp, x0",
|
||||||
"b main",
|
"b main",
|
||||||
options(noreturn)
|
options(noreturn)
|
||||||
@@ -61,8 +64,6 @@ pub extern "C" fn main() -> ! {
|
|||||||
// Set ACT Led to Outout
|
// Set ACT Led to Outout
|
||||||
let _ = set_gpio_function(21, GPIOFunction::Output);
|
let _ = set_gpio_function(21, GPIOFunction::Output);
|
||||||
|
|
||||||
print_current_el_str();
|
|
||||||
|
|
||||||
// Delay so clock speed can stabilize
|
// Delay so clock speed can stabilize
|
||||||
delay_nops(50000);
|
delay_nops(50000);
|
||||||
println!("Hello World!");
|
println!("Hello World!");
|
||||||
@@ -86,7 +87,20 @@ unsafe fn zero_bss() {
|
|||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub extern "C" fn kernel_main() -> ! {
|
pub extern "C" fn kernel_main() -> ! {
|
||||||
print_current_el_str();
|
println!("EL: {}", get_current_el());
|
||||||
|
|
||||||
|
// Heap stuff
|
||||||
|
init_malloc();
|
||||||
|
malloc(32).unwrap();
|
||||||
|
malloc(32).unwrap();
|
||||||
|
|
||||||
|
let mut vector = Vec::<u32>::new();
|
||||||
|
|
||||||
|
vector.push(5);
|
||||||
|
malloc(32).unwrap();
|
||||||
|
vector.push(8);
|
||||||
|
vector.push(8);
|
||||||
|
vector.push(8);
|
||||||
|
|
||||||
sleep_us(500_000);
|
sleep_us(500_000);
|
||||||
|
|
||||||
@@ -96,20 +110,7 @@ pub extern "C" fn kernel_main() -> ! {
|
|||||||
gpio_pull_up(26);
|
gpio_pull_up(26);
|
||||||
set_falling_edge_detect(26, true);
|
set_falling_edge_detect(26, true);
|
||||||
|
|
||||||
print_display_resolution();
|
|
||||||
let fb = FrameBuffer::new();
|
let fb = FrameBuffer::new();
|
||||||
print_display_resolution();
|
|
||||||
|
|
||||||
for a in 0..360 {
|
|
||||||
let (x, y) = polar_to_cartesian(100.0, a as f32);
|
|
||||||
fb.draw_line(
|
|
||||||
150,
|
|
||||||
150,
|
|
||||||
(150.0 + x) as u32,
|
|
||||||
(150.0 + y) as u32,
|
|
||||||
a * (0x00FFFFFF / 360),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
fb.draw_square(500, 500, 600, 700, RED);
|
fb.draw_square(500, 500, 600, 700, RED);
|
||||||
fb.draw_square_fill(800, 800, 900, 900, GREEN);
|
fb.draw_square_fill(800, 800, 900, 900, GREEN);
|
||||||
@@ -118,10 +119,6 @@ pub extern "C" fn kernel_main() -> ! {
|
|||||||
fb.draw_string("Hello World! :D\nTest next Line", 500, 5, 3, BLUE);
|
fb.draw_string("Hello World! :D\nTest next Line", 500, 5, 3, BLUE);
|
||||||
|
|
||||||
fb.draw_function(cos, 100, 101, RED);
|
fb.draw_function(cos, 100, 101, RED);
|
||||||
fb.draw_function(cos, 100, 102, ORANGE);
|
|
||||||
fb.draw_function(cos, 100, 103, YELLOW);
|
|
||||||
fb.draw_function(cos, 100, 104, GREEN);
|
|
||||||
fb.draw_function(cos, 100, 105, BLUE);
|
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let temp = mb_read_soc_temp([0]).unwrap();
|
let temp = mb_read_soc_temp([0]).unwrap();
|
||||||
@@ -153,16 +150,3 @@ fn enable_uart() {
|
|||||||
let _ = set_gpio_function(14, GPIOFunction::Alternative0);
|
let _ = set_gpio_function(14, GPIOFunction::Alternative0);
|
||||||
let _ = set_gpio_function(15, GPIOFunction::Alternative0);
|
let _ = set_gpio_function(15, GPIOFunction::Alternative0);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_current_el_str() {
|
|
||||||
let el = get_current_el();
|
|
||||||
let el_str = match el {
|
|
||||||
0b11 => "Level 3",
|
|
||||||
0b10 => "Level 2",
|
|
||||||
0b01 => "Level 1",
|
|
||||||
0b00 => "Level 0",
|
|
||||||
_ => "Unknown EL",
|
|
||||||
};
|
|
||||||
|
|
||||||
println!("{}", el_str);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
pub fn polar_to_cartesian(r: f32, theta_rad: f32) -> (f32, f32) {
|
|
||||||
let x = r * libm::cosf(theta_rad);
|
|
||||||
let y = r * libm::sinf(theta_rad);
|
|
||||||
(x, y)
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user