开始使用

需要先初始化日志记录器,然后才能使用它。

  1. #![no_main]
  2. #![no_std]
  3. mod exceptions;
  4. mod logger;
  5. mod pl011;
  6. use crate::pl011::Uart;
  7. use core::panic::PanicInfo;
  8. use log::{error, info, LevelFilter};
  9. use smccc::psci::system_off;
  10. use smccc::Hvc;
  11. /// Base address of the primary PL011 UART.
  12. const PL011_BASE_ADDRESS: *mut u32 = 0x900_0000 as _;
  13. #[no_mangle]
  14. extern "C" fn main(x0: u64, x1: u64, x2: u64, x3: u64) {
  15. // SAFETY: `PL011_BASE_ADDRESS` is the base address of a PL011 device, and
  16. // nothing else accesses that address range.
  17. let uart = unsafe { Uart::new(PL011_BASE_ADDRESS) };
  18. logger::init(uart, LevelFilter::Trace).unwrap();
  19. info!("main({x0:#x}, {x1:#x}, {x2:#x}, {x3:#x})");
  20. assert_eq!(x1, 42);
  21. system_off::<Hvc>().unwrap();
  22. }
  23. #[panic_handler]
  24. fn panic(info: &PanicInfo) -> ! {
  25. error!("{info}");
  26. system_off::<Hvc>().unwrap();
  27. loop {}
  28. }
  • 请注意,panic 紧急处理程序现在可以记录各类 panic 详细信息。
  • 在 QEMU 中,使用 src/bare-metal/aps/examples 目录下的 make qemu_logger 运行该示例。