From c3f23108b99b5eb906ccd5396a4bc66a62d2c2bd Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 30 Jul 2023 00:09:09 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20Print=20more=20boot=20info?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporarily play around with time, loop with 1 second delays. --- nucleus/src/main.rs | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/nucleus/src/main.rs b/nucleus/src/main.rs index 9093e99..5260337 100644 --- a/nucleus/src/main.rs +++ b/nucleus/src/main.rs @@ -35,7 +35,7 @@ use core::panic::PanicInfo; use machine::devices::SerialOps; use { cfg_if::cfg_if, - core::cell::UnsafeCell, + core::{cell::UnsafeCell, time::Duration}, machine::{ arch, console::console, @@ -45,7 +45,7 @@ use { mailbox::{channel, Mailbox, MailboxOps}, vc::VC, }, - println, warn, + println, time, warn, }, }; @@ -82,9 +82,31 @@ pub fn kernel_main() -> ! { #[cfg(test)] test_main(); - command_prompt(); + info!( + "{} version {}", + env!("CARGO_PKG_NAME"), + env!("CARGO_PKG_VERSION") + ); + info!("Booting on: {}", machine::platform::BcmHost::board_name()); - reboot() + info!( + "Architectural timer resolution: {} ns", + time::time_manager().resolution().as_nanos() + ); + + info!("Drivers loaded:"); + machine::drivers::driver_manager().enumerate(); + + // Test a failing timer case. + time::time_manager().spin_for(Duration::from_nanos(1)); + + loop { + info!("Spinning for 1 second"); + time::time_manager().spin_for(Duration::from_secs(1)); + } + // command_prompt(); + // + // reboot() } #[cfg(not(test))]