hsm.rs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //! Chapter 9. Hart State Management Extension (EID #0x48534D "HSM").
  2. /// Extension ID for Hart State Management extension.
  3. #[doc(alias = "SBI_EXT_HSM")]
  4. pub const EID_HSM: usize = crate::eid_from_str("HSM") as _;
  5. pub use fid::*;
  6. /// Hart states.
  7. ///
  8. /// Declared in Table 1 at §9.
  9. pub mod hart_state {
  10. /// The hart is physically powered-up and executing normally.
  11. #[doc(alias = "SBI_HSM_STATE_STARTED")]
  12. pub const STARTED: usize = 0;
  13. /// The hart is not executing in supervisor-mode or any lower privilege mode.
  14. ///
  15. /// It is probably powered-down by the SBI implementation if the underlying platform
  16. /// has a mechanism to physically power-down harts.
  17. #[doc(alias = "SBI_HSM_STATE_STOPPED")]
  18. pub const STOPPED: usize = 1;
  19. /// The hart is pending before being started
  20. ///
  21. /// Some other hart has requested to start (or power-up) the hart from the STOPPED state,
  22. /// and the SBI implementation is still working to get the hart in the STARTED state.
  23. #[doc(alias = "SBI_HSM_STATE_START_PENDING")]
  24. pub const START_PENDING: usize = 2;
  25. /// The hart is pending before being stopped.
  26. ///
  27. /// The hart has requested to stop (or power-down) itself from the STARTED state,
  28. /// and the SBI implementation is still working to get the hart in the STOPPED state.
  29. #[doc(alias = "SBI_HSM_STATE_STOP_PENDING")]
  30. pub const STOP_PENDING: usize = 3;
  31. /// The hart is in a platform-specific suspend (or low-power) state.
  32. #[doc(alias = "SBI_HSM_STATE_SUSPENDED")]
  33. pub const SUSPENDED: usize = 4;
  34. /// The hart is pending before being suspended.
  35. ///
  36. /// The hart has requested to put itself in a platform-specific low-power state
  37. /// from the STARTED state, and the SBI implementation is still working to get
  38. /// the hart in the platform-specific SUSPENDED state.
  39. #[doc(alias = "SBI_HSM_STATE_SUSPEND_PENDING")]
  40. pub const SUSPEND_PENDING: usize = 5;
  41. /// The hart is pending before being resumed.
  42. ///
  43. /// An interrupt or platform specific hardware event has caused the hart to resume
  44. /// normal execution from the SUSPENDED state, and the SBI implementation is still
  45. /// working to get the hart in the STARTED state.
  46. #[doc(alias = "SBI_HSM_STATE_RESUME_PENDING")]
  47. pub const RESUME_PENDING: usize = 6;
  48. }
  49. /// Hart suspend types.
  50. pub mod suspend_type {
  51. /// Default retentive hart suspend type.
  52. #[doc(alias = "SBI_HSM_SUSPEND_RET_DEFAULT")]
  53. pub const RETENTIVE: u32 = 0;
  54. /// Default non-retentive hart suspend type.
  55. #[doc(alias = "SBI_HSM_SUSP_NON_RET_BIT")]
  56. pub const NON_RETENTIVE: u32 = 0x8000_0000;
  57. }
  58. /// Declared in §9.5.
  59. mod fid {
  60. /// Function ID to start executing the given hart at specified address in supervisor-mode.
  61. ///
  62. /// Declared in §9.1.
  63. #[doc(alias = "SBI_EXT_HSM_HART_START")]
  64. pub const HART_START: usize = 0;
  65. /// Function ID to stop executing the calling hart in supervisor-mode.
  66. ///
  67. /// Declared in §9.2.
  68. #[doc(alias = "SBI_EXT_HSM_HART_STOP")]
  69. pub const HART_STOP: usize = 1;
  70. /// Function ID to get the current status (or HSM state id) of the given hart.
  71. ///
  72. /// Declared in §9.3.
  73. #[doc(alias = "SBI_EXT_HSM_HART_GET_STATUS")]
  74. pub const HART_GET_STATUS: usize = 2;
  75. /// Function ID to put the calling hart into suspend or platform-specific lower power states.
  76. ///
  77. /// Declared in §9.4.
  78. #[doc(alias = "SBI_EXT_HSM_HART_SUSPEND")]
  79. pub const HART_SUSPEND: usize = 3;
  80. }