pmu.rs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. //! Chapter 11. Performance Monitoring Unit Extension (EID #0x504D55 "PMU").
  2. /// Extension ID for Performance Monitoring Unit extension.
  3. pub const EID_PMU: usize = crate::eid_from_str("PMU") as _;
  4. pub use fid::*;
  5. /// Declared in §11.11.
  6. mod fid {
  7. /// Function ID to get the number of counters, both hardware and firmware.
  8. ///
  9. /// Declared in §11.5.
  10. pub const NUM_COUNTERS: usize = 0;
  11. /// Function ID to get details about the specified counter.
  12. ///
  13. /// Declared in §11.6.
  14. pub const COUNTER_GET_INFO: usize = 1;
  15. /// Function ID to find and configure a counter from a set of counters.
  16. ///
  17. /// Declared in §11.7.
  18. pub const COUNTER_CONFIG_MATCHING: usize = 2;
  19. /// Function ID to start or enable a set of counters on the calling hart with the specified initial value.
  20. ///
  21. /// Declared in §11.8.
  22. pub const COUNTER_START: usize = 3;
  23. /// Function ID to stop or disable a set of counters on the calling hart.
  24. ///
  25. /// Declared in §11.9.
  26. pub const COUNTER_STOP: usize = 4;
  27. /// Function ID to provide the current value of a firmware counter.
  28. ///
  29. /// Declared in §11.10.
  30. pub const COUNTER_FW_READ: usize = 5;
  31. /// Function ID to provide the upper 32 bits of the current firmware counter value.
  32. ///
  33. /// Declared in §11.11.
  34. pub const COUNTER_FW_READ_HI: usize = 6;
  35. /// Function ID to set and enable the PMU snapshot shared memory.
  36. ///
  37. /// Declared in §11.12.
  38. pub const SNAPSHOT_SET_SHMEM: usize = 7;
  39. }
  40. /// PMU Event Types.
  41. ///
  42. /// Declared in §11.
  43. pub mod event_type {
  44. /// Type for all hardware general events.
  45. ///
  46. /// Declared in §11.1.
  47. pub const HARDWARE_GENERAL: usize = 0;
  48. /// Type for all hardware cache events.
  49. ///
  50. /// Declared in §11.2.
  51. pub const HARDWARE_CACHE: usize = 1;
  52. /// Type for all hardware raw events.
  53. ///
  54. /// Declared in §11.3.
  55. pub const HARDWARE_RAW: usize = 2;
  56. /// Type for for all firmware events.
  57. ///
  58. /// Declared in §11.4.
  59. pub const FIRMWARE: usize = 15;
  60. }
  61. /// Hardware General Event Codes.
  62. ///
  63. /// Declared in §11.1.
  64. pub mod hardware_event {
  65. /// Unused event because event_idx cannot be zero
  66. pub const NO_EVENT: usize = 0;
  67. /// Event for each CPU cycle
  68. pub const CPU_CYCLES: usize = 1;
  69. /// Event for each completed instruction
  70. pub const INSTRUCTIONS: usize = 2;
  71. /// Event for cache hit
  72. pub const CACHE_REFERENCES: usize = 3;
  73. /// Event for cache miss
  74. pub const CACHE_MISSES: usize = 4;
  75. /// Event for a branch instruction
  76. pub const BRANCH_INSTRUCTIONS: usize = 5;
  77. /// Event for a branch misprediction
  78. pub const BRANCH_MISSES: usize = 6;
  79. /// Event for each BUS cycle
  80. pub const BUS_CYCLES: usize = 7;
  81. /// Event for a stalled cycle in microarchitecture frontend
  82. pub const STALLED_CYCLES_FRONTEND: usize = 8;
  83. /// Event for a stalled cycle in microarchitecture backend
  84. pub const STALLED_CYCLES_BACKEND: usize = 9;
  85. /// Event for each reference CPU cycle
  86. pub const REF_CPU_CYCLES: usize = 10;
  87. }
  88. /// Hardware Cache Event ID.
  89. ///
  90. /// Declared in §11.2.
  91. pub mod cache_event {
  92. /// Level 1 data cache event.
  93. pub const L1D: usize = 0;
  94. /// Level 1 instruction cache event.
  95. pub const L1I: usize = 1;
  96. /// Last level cache event.
  97. pub const LL: usize = 2;
  98. /// Data TLB event.
  99. pub const DTLB: usize = 3;
  100. /// Instruction TLB event.
  101. pub const ITLB: usize = 4;
  102. /// Branch predictor unit event.
  103. pub const BPU: usize = 5;
  104. /// NUMA node cache event.
  105. pub const NODE: usize = 6;
  106. }
  107. /// Hardware Cache Operation ID.
  108. ///
  109. /// Declared in §11.2.
  110. pub mod cache_operation {
  111. /// Read cache line.
  112. pub const READ: usize = 0;
  113. /// Write cache line.
  114. pub const WRITE: usize = 1;
  115. /// Prefetch cache line.
  116. pub const PREFETCH: usize = 2;
  117. }
  118. /// Hardware Cache Operation Result ID.
  119. ///
  120. /// Declared in §11.2.
  121. pub mod cache_result {
  122. /// Cache access.
  123. pub const ACCESS: usize = 0;
  124. /// Cache miss.
  125. pub const MISS: usize = 1;
  126. }
  127. /// Firmware Event Codes.
  128. ///
  129. /// Declared in §11.4.
  130. pub mod firmware_event {
  131. /// Misaligned load trap event.
  132. pub const MISALIGNED_LOAD: usize = 0;
  133. /// Misaligned store trap event.
  134. pub const MISALIGNED_STORE: usize = 1;
  135. /// Load access trap event.
  136. pub const ACCESS_LOAD: usize = 2;
  137. /// Store access trap event.
  138. pub const ACCESS_STORE: usize = 3;
  139. /// Illegal instruction trap event.
  140. pub const ILLEGAL_INSN: usize = 4;
  141. /// Set timer event.
  142. pub const SET_TIMER: usize = 5;
  143. /// Sent IPI to other HART event.
  144. pub const IPI_SENT: usize = 6;
  145. /// Received IPI from other HART event.
  146. pub const IPI_RECEIVED: usize = 7;
  147. /// Sent FENCE.I request to other HART event.
  148. pub const FENCE_I_SENT: usize = 8;
  149. /// Received FENCE.I request from other HART event.
  150. pub const FENCE_I_RECEIVED: usize = 9;
  151. /// Sent SFENCE.VMA request to other HART event.
  152. pub const SFENCE_VMA_SENT: usize = 10;
  153. /// Received SFENCE.VMA request from other HART event.
  154. pub const SFENCE_VMA_RECEIVED: usize = 11;
  155. /// Sent SFENCE.VMA with ASID request to other HART event.
  156. pub const SFENCE_VMA_ASID_SENT: usize = 12;
  157. /// Received SFENCE.VMA with ASID request from other HART event.
  158. pub const SFENCE_VMA_ASID_RECEIVED: usize = 13;
  159. /// Sent HFENCE.GVMA request to other HART event.
  160. pub const HFENCE_GVMA_SENT: usize = 14;
  161. /// Received HFENCE.GVMA request from other HART event.
  162. pub const HFENCE_GVMA_RECEIVED: usize = 15;
  163. /// Sent HFENCE.GVMA with VMID request to other HART event.
  164. pub const HFENCE_GVMA_VMID_SENT: usize = 16;
  165. /// Received HFENCE.GVMA with VMID request from other HART event.
  166. pub const HFENCE_GVMA_VMID_RECEIVED: usize = 17;
  167. /// Sent HFENCE.VVMA request to other HART event.
  168. pub const HFENCE_VVMA_SENT: usize = 18;
  169. /// Received HFENCE.VVMA request from other HART event.
  170. pub const HFENCE_VVMA_RECEIVED: usize = 19;
  171. /// Sent HFENCE.VVMA with ASID request to other HART event.
  172. pub const HFENCE_VVMA_ASID_SENT: usize = 20;
  173. /// Received HFENCE.VVMA with ASID request from other HART event.
  174. pub const HFENCE_VVMA_ASID_RECEIVED: usize = 21;
  175. /// RISC-V platform specific firmware events.
  176. ///
  177. /// The `event_data` configuration (or parameter) contains the event encoding.
  178. pub const PLATFORM: usize = 65535;
  179. }