4
0

reset.rs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. use sbi_spec::binary::SbiRet;
  2. /// System Reset extension.
  3. ///
  4. /// Provides a function that allows the supervisor software to request system-level reboot or shutdown.
  5. ///
  6. /// The term "system" refers to the world-view of supervisor software and the underlying SBI implementation
  7. /// could be machine mode firmware or hypervisor.
  8. ///
  9. /// Ref: [Section 9, RISC-V Supervisor Binary Interface Specification](https://github.com/riscv-non-isa/riscv-sbi-doc/blob/master/riscv-sbi.adoc#9-system-reset-extension-eid-0x53525354-srst)
  10. pub trait Reset {
  11. /// Reset the system based on provided `reset_type` and `reset_reason`.
  12. ///
  13. /// This is a synchronous call and does not return if it succeeds.
  14. ///
  15. /// # Warm reboot and cold reboot
  16. ///
  17. /// When supervisor software is running natively, the SBI implementation is machine mode firmware.
  18. /// In this case, shutdown is equivalent to physical power down of the entire system, and
  19. /// cold reboot is equivalent to a physical power cycle of the entire system.
  20. /// Further, warm reboot is equivalent to a power cycle of the main processor and parts of the system
  21. /// but not the entire system.
  22. ///
  23. /// For example, on a server class system with a BMC (board management controller),
  24. /// a warm reboot will not power cycle the BMC
  25. /// whereas a cold reboot will definitely power cycle the BMC.
  26. ///
  27. /// When supervisor software is running inside a virtual machine,
  28. /// the SBI implementation is a hypervisor.
  29. /// The shutdown,
  30. /// cold reboot and warm reboot will behave functionally the same as the native case but might
  31. /// not result in any physical power changes.
  32. ///
  33. /// # Return value
  34. ///
  35. /// The possible return error codes returned in `SbiRet.error` are shown in the table below:
  36. ///
  37. /// | Error code | Description
  38. /// |:--------------------------|:---------------
  39. /// | `SbiRet::invalid_param()` | `reset_type` or `reset_reason` is not valid.
  40. /// | `SbiRet::not_supported()` | `reset_type` is valid but not implemented.
  41. /// | `SbiRet::failed()` | Reset request failed for unknown reasons.
  42. fn system_reset(&self, reset_type: u32, reset_reason: u32) -> SbiRet;
  43. /// Function internal to macros. Do not use.
  44. #[doc(hidden)]
  45. #[inline]
  46. fn _rustsbi_probe(&self) -> usize {
  47. sbi_spec::base::UNAVAILABLE_EXTENSION.wrapping_add(1)
  48. }
  49. }
  50. impl<T: Reset> Reset for &T {
  51. #[inline]
  52. fn system_reset(&self, reset_type: u32, reset_reason: u32) -> SbiRet {
  53. T::system_reset(self, reset_type, reset_reason)
  54. }
  55. }