浏览代码

feat: add some config flags with bitflags in chapter 11

GrassedgeT 7 月之前
父节点
当前提交
8a8af02d16
共有 3 个文件被更改,包括 69 次插入0 次删除
  1. 3 0
      sbi-spec/Cargo.toml
  2. 12 0
      sbi-spec/src/lib.rs
  3. 54 0
      sbi-spec/src/pmu.rs

+ 3 - 0
sbi-spec/Cargo.toml

@@ -18,3 +18,6 @@ static_assertions = "1.1.0"
 default = []
 # Support for the legacy extension; this feature is not included by default.
 legacy = []
+
+[dependencies]
+bitflags = "2.6.0"

+ 12 - 0
sbi-spec/src/lib.rs

@@ -249,6 +249,18 @@ mod tests {
         const_assert_eq!(20, firmware_event::HFENCE_VVMA_ASID_SENT);
         const_assert_eq!(21, firmware_event::HFENCE_VVMA_ASID_RECEIVED);
         const_assert_eq!(65535, firmware_event::PLATFORM);
+        const_assert_eq!(1, counter_related::CounterCfgFlags::SKIP_MATCH.bits());
+        const_assert_eq!(2, counter_related::CounterCfgFlags::CLEAR_VALUE.bits());
+        const_assert_eq!(4, counter_related::CounterCfgFlags::AUTO_START.bits());
+        const_assert_eq!(8, counter_related::CounterCfgFlags::SET_VUINH.bits());
+        const_assert_eq!(16, counter_related::CounterCfgFlags::SET_VSINH.bits());
+        const_assert_eq!(32, counter_related::CounterCfgFlags::SET_UINH.bits());
+        const_assert_eq!(64, counter_related::CounterCfgFlags::SET_SINH.bits());
+        const_assert_eq!(128, counter_related::CounterCfgFlags::SET_MINH.bits());
+        const_assert_eq!(1, counter_related::CounterStartFlags::INIT_VALUE.bits());
+        const_assert_eq!(2, counter_related::CounterStartFlags::INIT_SNAPSHOT.bits());
+        const_assert_eq!(1, counter_related::CounterStopFlags::RESET.bits());
+        const_assert_eq!(2, counter_related::CounterStopFlags::TAKE_SNAPSHOT.bits());
     }
     // §12
     #[test]

+ 54 - 0
sbi-spec/src/pmu.rs

@@ -185,3 +185,57 @@ pub mod firmware_event {
     /// The `event_data` configuration (or parameter) contains the event encoding.
     pub const PLATFORM: usize = 65535;
 }
+
+/// Find and configure a matching counter.
+/// Start a set of counters.
+/// Stop a set of counters.
+///  
+/// Declared in §11.7 §11.8 §11.9.
+pub mod counter_related {
+    use bitflags::bitflags;
+
+    bitflags! {
+        #[derive(Clone, Copy, PartialEq, Eq)]
+        /// Declared in Table 36.
+        pub struct CounterCfgFlags: usize{
+            /// Skip the counter matching.
+            const SKIP_MATCH = 1 << 0;
+            /// Clear (or zero) the counter value in counter configuration.
+            const CLEAR_VALUE = 1 << 1;
+            /// Start the counter after configuring a matching counter.
+            const AUTO_START = 1 << 2;
+            /// Event counting inhibited in VU-mode.
+            const SET_VUINH = 1 << 3;
+            /// Event counting inhibited in VS-mode.
+            const SET_VSINH = 1 << 4;
+            /// Event counting inhibited in U-mode.
+            const SET_UINH = 1 << 5;
+            /// Event counting inhibited in S-mode.
+            const SET_SINH = 1 << 6;
+            /// Event counting inhibited in M-mode.
+            const SET_MINH = 1 << 7;
+        }
+    }
+
+    bitflags! {
+        #[derive(Clone, Copy, PartialEq, Eq)]
+        /// Declared in Table 38
+        pub struct CounterStartFlags: usize{
+            /// Set the value of counters based on the initial_value parameter.
+            const INIT_VALUE = 1 << 0;
+            /// Initialize the given counters from shared memory if available.
+            const INIT_SNAPSHOT = 1 << 1;
+        }
+    }
+
+    bitflags! {
+        #[derive(Clone, Copy, PartialEq, Eq)]
+        /// Declared in Table 40.
+        pub struct CounterStopFlags: usize{
+            /// Reset the counter to event mapping.
+            const RESET = 1 << 0;
+            /// Save a snapshot of the given counter’s values in the shared memory if available.
+            const TAKE_SNAPSHOT = 1 << 1;
+        }
+    }
+}