开始使用

使用驱动程序编写一个小程序,将数据写入串行控制台,并回显传入的字节。

  1. #![no_main]
  2. #![no_std]
  3. mod exceptions;
  4. mod pl011;
  5. use crate::pl011::Uart;
  6. use core::fmt::Write;
  7. use core::panic::PanicInfo;
  8. use log::error;
  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 mut uart = unsafe { Uart::new(PL011_BASE_ADDRESS) };
  18. writeln!(uart, "main({x0:#x}, {x1:#x}, {x2:#x}, {x3:#x})").unwrap();
  19. loop {
  20. if let Some(byte) = uart.read_byte() {
  21. uart.write_byte(byte);
  22. match byte {
  23. b'\r' => {
  24. uart.write_byte(b'\n');
  25. }
  26. b'q' => break,
  27. _ => {}
  28. }
  29. }
  30. }
  31. writeln!(uart, "Bye!").unwrap();
  32. system_off::<Hvc>().unwrap();
  33. }
  • 内嵌汇编 示例一样,从 entry.S 中的入口点代码调用此 main 函数。如需了解详情,请参阅演讲者备注。
  • 在 QEMU 中,使用 src/bare-metal/aps/examples 目录下的 make qemu 运行该示例。