lib: sbi: Disable interrupt during config matching
authorAtish Patra <atishp@rivosinc.com>
Fri, 7 Jan 2022 18:54:08 +0000 (10:54 -0800)
committerAnup Patel <anup@brainfault.org>
Fri, 4 Feb 2022 04:38:57 +0000 (10:08 +0530)
PMU overflow interrupt should be disabled durinig initial configuration of
counters. They should be enabled while starting counters.

Fixes: 730f01bb41a6 ("lib: sbi: Support sscofpmf extension in OpenSBI")
Signed-off-by: Atish Patra <atishp@rivosinc.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
include/sbi/riscv_encoding.h
lib/sbi/sbi_pmu.c

index 8a29f8e..ac8590d 100644 (file)
 #define MHPMEVENT_VSINH                        (_UL(1) << 59)
 #define MHPMEVENT_VUINH                        (_UL(1) << 58)
 #else
-#define MHPMEVENTH_OF                  (_UL(1) << 31)
+#define MHPMEVENTH_OF                  (_ULL(1) << 31)
 #define MHPMEVENTH_MINH                        (_ULL(1) << 30)
 #define MHPMEVENTH_SINH                        (_ULL(1) << 29)
 #define MHPMEVENTH_UINH                        (_ULL(1) << 28)
 #define MHPMEVENTH_VSINH               (_ULL(1) << 27)
 #define MHPMEVENTH_VUINH               (_ULL(1) << 26)
 
+#define MHPMEVENT_OF                   (MHPMEVENTH_OF << 32)
 #define MHPMEVENT_MINH                 (MHPMEVENTH_MINH << 32)
 #define MHPMEVENT_SINH                 (MHPMEVENTH_SINH << 32)
 #define MHPMEVENT_UINH                 (MHPMEVENTH_UINH << 32)
index 376afec..a209c8e 100644 (file)
@@ -256,7 +256,7 @@ static int pmu_ctr_enable_irq_hw(int ctr_idx)
 
 #if __riscv_xlen == 32
        mhpmevent_csr = CSR_MHPMEVENT3H  + ctr_idx - 3;
-       of_mask = ~MHPMEVENTH_OF;
+       of_mask = (uint32_t)~MHPMEVENTH_OF;
 #else
        mhpmevent_csr = CSR_MHPMEVENT3 + ctr_idx - 3;
        of_mask = ~MHPMEVENT_OF;
@@ -470,9 +470,13 @@ static int pmu_update_hw_mhpmevent(struct sbi_pmu_hw_event *hw_evt, int ctr_idx,
        if (!mhpmevent_val || ctr_idx < 3 || ctr_idx >= SBI_PMU_HW_CTR_MAX)
                return SBI_EFAIL;
 
-       /* Always clear the OVF bit and inhibit countin of events in M-mode */
+       /**
+        * Always set the OVF bit(disable interrupts) and inhibit counting of
+        * events in M-mode. The OVF bit should be enabled during the start call.
+        */
        if (sbi_hart_has_feature(scratch, SBI_HART_HAS_SSCOFPMF))
-               mhpmevent_val = (mhpmevent_val & ~MHPMEVENT_SSCOF_MASK) | MHPMEVENT_MINH;
+               mhpmevent_val = (mhpmevent_val & ~MHPMEVENT_SSCOF_MASK) |
+                                MHPMEVENT_MINH | MHPMEVENT_OF;
 
        /* Update the inhibit flags based on inhibit flags received from supervisor */
        pmu_update_inhibit_flags(flags, &mhpmevent_val);