You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.8 KiB
Rust

// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
// Rust embedded logo for `make doc`.
#![doc(
html_logo_url = "https://raw.githubusercontent.com/rust-embedded/wg/master/assets/logo/ewg-logo-blue-white-on-transparent.png"
)]
//! The `kernel` binary.
#![feature(format_args_nl)]
#![no_main]
#![no_std]
extern crate alloc;
use libkernel::{bsp, cpu, driver, exception, info, memory, state, time};
/// Early init code.
///
/// When this code runs, virtual memory is already enabled.
///
/// # Safety
///
/// - Only a single core must be active and running this function.
/// - Printing will not work until the respective driver's MMIO is remapped.
#[no_mangle]
unsafe fn kernel_init() -> ! {
exception::handling_init();
memory::init();
// Initialize the timer subsystem.
if let Err(x) = time::init() {
panic!("Error initializing timer subsystem: {}", x);
}
// Initialize the BSP driver subsystem.
if let Err(x) = bsp::driver::init() {
panic!("Error initializing BSP driver subsystem: {}", x);
}
// Initialize all device drivers.
driver::driver_manager().init_drivers_and_irqs();
bsp::memory::mmu::kernel_add_mapping_records_for_precomputed();
// Unmask interrupts on the boot CPU core.
exception::asynchronous::local_irq_unmask();
// Announce conclusion of the kernel_init() phase.
state::state_manager().transition_to_single_core_main();
// Transition from unsafe to safe.
kernel_main()
}
/// The main function running after the early init.
fn kernel_main() -> ! {
use alloc::boxed::Box;
use core::time::Duration;
info!("{}", libkernel::version());
info!("Booting on: {}", bsp::board_name());
info!("MMU online:");
memory::mmu::kernel_print_mappings();
let (_, privilege_level) = exception::current_privilege_level();
info!("Current privilege level: {}", privilege_level);
info!("Exception handling state:");
exception::asynchronous::print_state();
info!(
"Architectural timer resolution: {} ns",
time::time_manager().resolution().as_nanos()
);
info!("Drivers loaded:");
driver::driver_manager().enumerate();
info!("Registered IRQ handlers:");
exception::asynchronous::irq_manager().print_handler();
info!("Kernel heap:");
memory::heap_alloc::kernel_heap_allocator().print_usage();
time::time_manager().set_timeout_once(Duration::from_secs(5), Box::new(|| info!("Once 5")));
time::time_manager().set_timeout_once(Duration::from_secs(3), Box::new(|| info!("Once 2")));
time::time_manager()
.set_timeout_periodic(Duration::from_secs(1), Box::new(|| info!("Periodic 1 sec")));
info!("Echoing input now");
cpu::wait_forever();
}