hal.rs 618 B

1234567891011121314151617181920212223242526
  1. // Ref: MeowSBI
  2. mod ns16550a;
  3. pub use ns16550a::Ns16550a;
  4. mod clint;
  5. pub use clint::Clint;
  6. // Ref: https://github.com/repnop/vanadinite/blob/651163fd435d97dc9de728279b64176cdd46ec28/src/arch/virt/mod.rs#L45-L71
  7. pub struct Reset;
  8. impl rustsbi::Reset for Reset {
  9. fn reset(&self) -> ! {
  10. // todo: only exit after all harts finished
  11. // loop {}
  12. const VIRT_TEST: *mut u64 = 0x10_0000 as *mut u64;
  13. // Fail = 0x3333,
  14. // Pass = 0x5555,
  15. // Reset = 0x7777,
  16. unsafe {
  17. core::ptr::write_volatile(VIRT_TEST, 0x5555);
  18. }
  19. unreachable!()
  20. }
  21. }