ableos/kernel/src/kmain.rs

82 lines
2.1 KiB
Rust
Raw Normal View History

2023-03-30 21:43:04 +00:00
//! AbleOS Kernel Entrypoint
2023-05-06 11:50:24 +00:00
use {
2023-05-25 12:04:19 +00:00
crate::{alloc::string::ToString, arch::logging::SERIAL_CONSOLE, device_tree::DeviceTree},
hbvm::engine::Engine,
log::{debug, trace},
2023-05-06 11:50:24 +00:00
spin::{Lazy, Mutex},
};
2023-04-05 17:29:20 +00:00
2023-03-30 21:43:04 +00:00
pub fn kmain(cmdline: &str, bootstrap: Option<&'static [u8]>) -> ! {
2023-05-25 12:04:19 +00:00
debug!("Entered kmain");
2023-03-30 21:43:04 +00:00
2023-04-05 17:29:20 +00:00
let mut cmdline = cmdline.to_string();
cmdline.pop();
cmdline.remove(0);
let kcmd = clparse::Arguments::parse(cmdline.to_string()).unwrap();
trace!("Cmdline: {kcmd:?}");
2023-03-30 21:43:04 +00:00
2023-05-25 12:04:19 +00:00
let mut kcl = xml::XMLElement::new("Kernel Command Line");
for (key, value) in kcmd.arguments {
kcl.set_attribute(key, value);
2023-05-06 11:50:24 +00:00
}
debug!("kernel command line object: {:?}", kcl);
2023-04-07 21:44:33 +00:00
2023-04-05 17:29:20 +00:00
let bootstrap = bootstrap/*.expect("no bootstrap found")*/;
match bootstrap {
Some(bootstrap_mod) => {
debug!("Bootstrap Module: {:?}", bootstrap_mod);
}
2023-04-05 17:29:20 +00:00
None => {
debug!("No bootstrap module loaded.")
2023-04-05 17:29:20 +00:00
}
}
2023-05-23 10:16:14 +00:00
let dt = DEVICE_TREE.lock();
2023-04-05 17:29:20 +00:00
trace!("Device Tree{}", dt);
2023-05-15 07:19:34 +00:00
let bytes = alloc::vec![0];
let mut prog = Engine::new(bytes);
// prog.enviroment_call_table[0] = read_device_tree;
2023-05-23 10:16:14 +00:00
let _ = prog.run();
2023-05-15 07:19:34 +00:00
prog.dump();
// TODO: change this to a driver
{
2023-05-23 10:16:14 +00:00
let _buf = [8; 128 * 4];
2023-05-15 07:19:34 +00:00
let mut sc = SERIAL_CONSOLE.lock();
loop {
// TODO: Implement an API for sending and recieving serial stuff
{
fn read_ipc_buff() {}
fn write_ipc_buff() {}
// TODO: read from the IPC buffer and push to serial stream
let _msg = read_ipc_buff();
for byte in 0..0 {
sc.send(byte);
}
}
2023-05-15 07:19:34 +00:00
let byte = sc.receive();
if byte == b'\r' {
sc.send(b'\n');
}
sc.send(byte);
}
}
2023-03-30 21:43:04 +00:00
}
2023-04-10 06:16:30 +00:00
2023-05-06 11:50:24 +00:00
pub static DEVICE_TREE: Lazy<Mutex<DeviceTree>> = Lazy::new(|| {
2023-05-23 10:16:14 +00:00
let dt = DeviceTree::new();
2023-05-06 11:50:24 +00:00
Mutex::new(dt)
});
2023-05-15 07:19:34 +00:00
#[test_case]
fn trivial_assertion() {
trace!("trivial assertion... ");
assert_eq!(1, 1);
info!("[ok]");
}