pmu.rs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. use sbi_spec::binary::SbiRet;
  2. /// Performance Monitoring Unit Extension
  3. ///
  4. /// The RISC-V hardware performance counters such as `mcycle`, `minstret`, and `mhpmcounterX` CSRs
  5. /// are accessible as read-only from supervisor-mode using `cycle`, `instret`, and `hpmcounterX` CSRs.
  6. /// The SBI performance monitoring unit (PMU) extension is an interface for supervisor-mode to configure
  7. /// and use the RISC-V hardware performance counters with assistance from the machine-mode (or hypervisor-mode).
  8. /// These hardware performance counters can only be started, stopped, or configured from machine-mode
  9. /// using `mcountinhibit` and `mhpmeventX` CSRs.
  10. /// Due to this, a machine-mode SBI implementation may choose to disallow SBI PMU extension
  11. /// if `mcountinhibit` CSR is not implemented by the RISC-V platform.
  12. ///
  13. /// A RISC-V platform generally supports monitoring of various hardware events using a limited number
  14. /// of hardware performance counters which are up to 64 bits wide.
  15. /// In addition, a SBI implementation can also provide firmware performance counters which can monitor firmware events
  16. /// such as number of misaligned load/store instructions, number of RFENCEs, number of IPIs, etc.
  17. /// The firmware counters are always 64 bits wide.
  18. ///
  19. /// The SBI PMU extension provides:
  20. ///
  21. /// 1. An interface for supervisor-mode software to discover and configure per-HART hardware/firmware counters
  22. /// 2. A typical perf compatible interface for hardware/firmware performance counters and events
  23. /// 3. Full access to microarchitecture’s raw event encodings
  24. ///
  25. /// To define SBI PMU extension calls, we first define important entities `counter_idx`, `event_idx`, and `event_data`.
  26. /// The `counter_idx` is a logical number assigned to each hardware/firmware counter.
  27. /// The `event_idx `represents a hardware (or firmware) event whereas
  28. /// the `event_data` is 64 bits wide and represents additional configuration (or parameters) for
  29. /// a hardware (or firmware) event.
  30. ///
  31. /// The event_idx is a 20 bits wide number encoded as follows:
  32. ///
  33. /// ```text
  34. /// event_idx[19:16] = type;
  35. /// event_idx[15:0] = code;
  36. /// ```
  37. pub trait Pmu: Send + Sync {
  38. /// Returns the number of counters (both hardware and firmware).
  39. ///
  40. /// The value is returned in `SbiRet.value`; this call always returns SBI_SUCCESS in `SbiRet.error`.
  41. fn num_counters(&self) -> usize;
  42. /// Get details about the specified counter such as underlying CSR number, width of the counter,
  43. /// type of counter hardware/firmware, etc.
  44. ///
  45. /// The `counter_info` returned by this SBI call is encoded as follows:
  46. ///
  47. /// ```text
  48. /// counter_info[11:0] = CSR; // (12bit CSR number)
  49. /// counter_info[17:12] = Width; // (One less than number of bits in CSR)
  50. /// counter_info[XLEN-2:18] = Reserved; // Reserved for future use
  51. /// counter_info[XLEN-1] = Type; // (0 = hardware and 1 = firmware)
  52. /// ```
  53. /// If `counter_info.type` == `1` then `counter_info.csr` and `counter_info.width` should be ignored.
  54. ///
  55. /// # Return value
  56. ///
  57. /// Returns the `counter_info` described above in `SbiRet.value`.
  58. ///
  59. /// The possible return error codes returned in `SbiRet.error` are shown in the table below:
  60. ///
  61. /// | Return code | Description
  62. /// |:------------------------|:----------------------------------------------
  63. /// | SBI_SUCCESS | `counter_info` read successfully.
  64. /// | SBI_ERR_INVALID_PARAM | `counter_idx` points to an invalid counter.
  65. fn counter_get_info(&self, counter_idx: usize) -> SbiRet;
  66. /// Find and configure a counter from a set of counters which is not started (or enabled)
  67. /// and can monitor the specified event.
  68. ///
  69. /// # Parameters
  70. ///
  71. /// The `counter_idx_base` and `counter_idx_mask` parameters represent the set of counters,
  72. /// whereas the `event_idx` represent the event to be monitored
  73. /// and `event_data` represents any additional event configuration.
  74. ///
  75. /// The `config_flags` parameter represent additional counter configuration and filter flags.
  76. /// The bit definitions of the `config_flags` parameter are shown in the table below:
  77. ///
  78. /// | Flag Name | Bits | Description
  79. /// |:-----------------------------|:-----------|:------------
  80. /// | SBI_PMU_CFG_FLAG_SKIP_MATCH | 0:0 | Skip the counter matching
  81. /// | SBI_PMU_CFG_FLAG_CLEAR_VALUE | 1:1 | Clear (or zero) the counter value in counter configuration
  82. /// | SBI_PMU_CFG_FLAG_AUTO_START | 2:2 | Start the counter after configuring a matching counter
  83. /// | SBI_PMU_CFG_FLAG_SET_VUINH | 3:3 | Event counting inhibited in VU-mode
  84. /// | SBI_PMU_CFG_FLAG_SET_VSINH | 4:4 | Event counting inhibited in VS-mode
  85. /// | SBI_PMU_CFG_FLAG_SET_UINH | 5:5 | Event counting inhibited in U-mode
  86. /// | SBI_PMU_CFG_FLAG_SET_SINH | 6:6 | Event counting inhibited in S-mode
  87. /// | SBI_PMU_CFG_FLAG_SET_MINH | 7:7 | Event counting inhibited in M-mode
  88. /// | _RESERVED_ | 8:(XLEN-1) | _All non-zero values are reserved for future use._
  89. ///
  90. /// *NOTE:* When *SBI_PMU_CFG_FLAG_SKIP_MATCH* is set in `config_flags`, the
  91. /// SBI implementation will unconditionally select the first counter from the
  92. /// set of counters specified by the `counter_idx_base` and `counter_idx_mask`.
  93. ///
  94. /// *NOTE:* The *SBI_PMU_CFG_FLAG_AUTO_START* flag in `config_flags` has no
  95. /// impact on the counter value.
  96. ///
  97. /// *NOTE:* The `config_flags[3:7]` bits are event filtering hints so these
  98. /// can be ignored or overridden by the SBI implementation for security concerns
  99. /// or due to lack of event filtering support in the underlying RISC-V platform.
  100. ///
  101. /// # Return value
  102. ///
  103. /// Returns the `counter_idx` in `sbiret.value` upon success.
  104. ///
  105. /// In case of failure, the possible error codes returned in `sbiret.error` are shown in the table below:
  106. ///
  107. /// | Return code | Description
  108. /// |:----------------------|:----------------------------------------------
  109. /// | SBI_SUCCESS | counter found and configured successfully.
  110. /// | SBI_ERR_INVALID_PARAM | set of counters has an invalid counter.
  111. /// | SBI_ERR_NOT_SUPPORTED | none of the counters can monitor specified event.
  112. fn counter_config_matching(
  113. &self,
  114. counter_idx_base: usize,
  115. counter_idx_mask: usize,
  116. config_flags: usize,
  117. event_idx: usize,
  118. event_data: u64,
  119. ) -> SbiRet;
  120. /// Start or enable a set of counters on the calling HART with the specified initial value.
  121. ///
  122. /// # Parameters
  123. ///
  124. /// The `counter_idx_base` and `counter_idx_mask` parameters represent the set of counters.
  125. /// whereas the `initial_value` parameter specifies the initial value of the counter.
  126. ///
  127. /// The bit definitions of the `start_flags` parameter are shown in the table below:
  128. ///
  129. /// | Flag Name | Bits | Description
  130. /// |:-----------------------------|:-----------|:------------
  131. /// | SBI_PMU_START_SET_INIT_VALUE | 0:0 | Set the value of counters based on the `initial_value` parameter.
  132. /// | _RESERVED_ | 1:(XLEN-1) | _All non-zero values are reserved for future use._
  133. ///
  134. /// *NOTE*: When `SBI_PMU_START_SET_INIT_VALUE` is not set in `start_flags`, the counter value will
  135. /// not be modified and event counting will start from current counter value.
  136. ///
  137. /// # Return value
  138. ///
  139. /// The possible return error codes returned in `SbiRet.error` are shown in the table below:
  140. ///
  141. /// | Return code | Description
  142. /// |:------------------------|:----------------------------------------------
  143. /// | SBI_SUCCESS | counter started successfully.
  144. /// | SBI_ERR_INVALID_PARAM | some of the counters specified in parameters are invalid.
  145. /// | SBI_ERR_ALREADY_STARTED | some of the counters specified in parameters are already started.
  146. fn counter_start(
  147. &self,
  148. counter_idx_base: usize,
  149. counter_idx_mask: usize,
  150. start_flags: usize,
  151. initial_value: u64,
  152. ) -> SbiRet;
  153. /// Stop or disable a set of counters on the calling HART.
  154. ///
  155. /// # Parameters
  156. ///
  157. /// The `counter_idx_base` and `counter_idx_mask` parameters represent the set of counters.
  158. /// The bit definitions of the `stop_flags` parameter are shown in the table below:
  159. ///
  160. /// | Flag Name | Bits | Description
  161. /// |:------------------------|:-----------|:------------
  162. /// | SBI_PMU_STOP_FLAG_RESET | 0:0 | Reset the counter to event mapping.
  163. /// | _RESERVED_ | 1:(XLEN-1) | *All non-zero values are reserved for future use.*
  164. ///
  165. /// # Return value
  166. ///
  167. /// The possible return error codes returned in `SbiRet.error` are shown in the table below:
  168. ///
  169. /// | Return code | Description
  170. /// |:------------------------|:----------------------------------------------
  171. /// | SBI_SUCCESS | counter stopped successfully.
  172. /// | SBI_ERR_INVALID_PARAM | some of the counters specified in parameters are invalid.
  173. /// | SBI_ERR_ALREADY_STOPPED | some of the counters specified in parameters are already stopped.
  174. fn counter_stop(
  175. &self,
  176. counter_idx_base: usize,
  177. counter_idx_mask: usize,
  178. stop_flags: usize,
  179. ) -> SbiRet;
  180. /// Provide the current value of a firmware counter in `SbiRet.value`.
  181. ///
  182. /// # Parameters
  183. ///
  184. /// This function should be only used to read a firmware counter. It will return an error
  185. /// when user provides a hardware counter in `counter_idx` parameter.
  186. ///
  187. /// # Return value
  188. ///
  189. /// The possible return error codes returned in `SbiRet.error` are shown in the table below:
  190. ///
  191. /// | Return code | Description
  192. /// |:------------------------|:----------------------------------------------
  193. /// | SBI_SUCCESS | firmware counter read successfully.
  194. /// | SBI_ERR_INVALID_PARAM | `counter_idx` points to a hardware counter or an invalid counter.
  195. fn counter_fw_read(&self, counter_idx: usize) -> SbiRet;
  196. }
  197. use crate::util::AmoOnceRef;
  198. static PMU: AmoOnceRef<dyn Pmu> = AmoOnceRef::new();
  199. /// Init PMU module
  200. pub fn init_pmu(pmu: &'static dyn Pmu) {
  201. if !PMU.try_call_once(pmu) {
  202. panic!("load sbi module when already loaded")
  203. }
  204. }
  205. #[inline]
  206. pub(crate) fn probe_pmu() -> bool {
  207. PMU.get().is_some()
  208. }
  209. #[inline]
  210. pub(crate) fn num_counters() -> SbiRet {
  211. if let Some(obj) = PMU.get() {
  212. // Returns the number of counters (both hardware and firmware) in sbiret.value
  213. // and always returns SBI_SUCCESS in sbiret.error.
  214. return SbiRet::success(obj.num_counters());
  215. }
  216. SbiRet::not_supported()
  217. }
  218. #[inline]
  219. pub(crate) fn counter_get_info(counter_idx: usize) -> SbiRet {
  220. if let Some(obj) = PMU.get() {
  221. return obj.counter_get_info(counter_idx);
  222. }
  223. SbiRet::not_supported()
  224. }
  225. #[inline]
  226. pub(crate) fn counter_config_matching(
  227. counter_idx_base: usize,
  228. counter_idx_mask: usize,
  229. config_flags: usize,
  230. event_idx: usize,
  231. event_data: u64,
  232. ) -> SbiRet {
  233. if let Some(obj) = PMU.get() {
  234. return obj.counter_config_matching(
  235. counter_idx_base,
  236. counter_idx_mask,
  237. config_flags,
  238. event_idx,
  239. event_data,
  240. );
  241. }
  242. SbiRet::not_supported()
  243. }
  244. #[inline]
  245. pub(crate) fn counter_start(
  246. counter_idx_base: usize,
  247. counter_idx_mask: usize,
  248. start_flags: usize,
  249. initial_value: u64,
  250. ) -> SbiRet {
  251. if let Some(obj) = PMU.get() {
  252. return obj.counter_start(
  253. counter_idx_base,
  254. counter_idx_mask,
  255. start_flags,
  256. initial_value,
  257. );
  258. }
  259. SbiRet::not_supported()
  260. }
  261. #[inline]
  262. pub(crate) fn counter_stop(
  263. counter_idx_base: usize,
  264. counter_idx_mask: usize,
  265. stop_flags: usize,
  266. ) -> SbiRet {
  267. if let Some(obj) = PMU.get() {
  268. return obj.counter_stop(counter_idx_base, counter_idx_mask, stop_flags);
  269. }
  270. SbiRet::not_supported()
  271. }
  272. #[inline]
  273. pub(crate) fn counter_fw_read(counter_idx: usize) -> SbiRet {
  274. if let Some(obj) = PMU.get() {
  275. return obj.counter_fw_read(counter_idx);
  276. }
  277. SbiRet::not_supported()
  278. }