board.rs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //! Board support, including peripheral and core drivers.
  2. use core::mem::MaybeUninit;
  3. use rustsbi::{RustSBI, SbiRet};
  4. use crate::clint::ClintDevice;
  5. use crate::console::ConsoleDevice;
  6. use crate::hsm::Hsm;
  7. use crate::rfence::RFence;
  8. pub(crate) static mut SBI: MaybeUninit<Board> = MaybeUninit::uninit();
  9. #[derive(RustSBI, Default)]
  10. #[rustsbi(dynamic)]
  11. pub struct Board<'a> {
  12. #[rustsbi(console)]
  13. pub uart16550: Option<ConsoleDevice<'a>>,
  14. #[rustsbi(ipi, timer)]
  15. pub clint: Option<ClintDevice<'a>>,
  16. #[rustsbi(hsm)]
  17. pub hsm: Option<Hsm>,
  18. #[rustsbi(reset)]
  19. pub sifive_test: Option<SifiveTestDevice<'a>>,
  20. #[rustsbi(fence)]
  21. pub rfence: Option<RFence>
  22. }
  23. pub struct SifiveTestDevice<'a> {
  24. pub sifive_test: &'a sifive_test_device::SifiveTestDevice,
  25. }
  26. impl<'a> rustsbi::Reset for SifiveTestDevice<'a> {
  27. #[inline]
  28. fn system_reset(&self, reset_type: u32, reset_reason: u32) -> SbiRet {
  29. use rustsbi::spec::srst::{
  30. RESET_REASON_NO_REASON, RESET_REASON_SYSTEM_FAILURE, RESET_TYPE_COLD_REBOOT,
  31. RESET_TYPE_SHUTDOWN, RESET_TYPE_WARM_REBOOT,
  32. };
  33. match reset_type {
  34. RESET_TYPE_SHUTDOWN => match reset_reason {
  35. RESET_REASON_NO_REASON => self.sifive_test.pass(),
  36. RESET_REASON_SYSTEM_FAILURE => self.sifive_test.fail(-1 as _),
  37. value => self.sifive_test.fail(value as _),
  38. },
  39. RESET_TYPE_COLD_REBOOT | RESET_TYPE_WARM_REBOOT => {
  40. self.sifive_test.reset();
  41. }
  42. _ => SbiRet::invalid_param(),
  43. }
  44. }
  45. }