lib: sbi_pmu: Replace sbi_pmu_ctr_read() with sbi_pmu_ctr_fw_read()
authorAnup Patel <apatel@ventanamicro.com>
Wed, 24 Aug 2022 06:09:02 +0000 (11:39 +0530)
committerAnup Patel <anup@brainfault.org>
Thu, 1 Sep 2022 11:23:16 +0000 (16:53 +0530)
The "read a firmware counter" SBI call should only work for firmware
counters so let us replace sbi_pmu_ctr_read() with sbi_pmu_ctr_fw_read()
which works only on firmware counters.

Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Reviewed-by: Atish Patra <atishp@rivosinc.com>
include/sbi/sbi_pmu.h
lib/sbi/sbi_ecall_pmu.c
lib/sbi/sbi_pmu.c

index f5e3dbd..34336f7 100644 (file)
@@ -53,7 +53,7 @@ int sbi_pmu_add_hw_event_counter_map(u32 eidx_start, u32 eidx_end, u32 cmap);
 
 int sbi_pmu_add_raw_event_counter_map(uint64_t select, uint64_t select_mask, u32 cmap);
 
-int sbi_pmu_ctr_read(uint32_t cidx, unsigned long *cval);
+int sbi_pmu_ctr_fw_read(uint32_t cidx, uint64_t *cval);
 
 int sbi_pmu_ctr_stop(unsigned long cidx_base, unsigned long cidx_mask,
                     unsigned long flag);
index 9ee9e81..826c8a8 100644 (file)
@@ -51,7 +51,8 @@ static int sbi_ecall_pmu_handler(unsigned long extid, unsigned long funcid,
 
                break;
        case SBI_EXT_PMU_COUNTER_FW_READ:
-               ret = sbi_pmu_ctr_read(regs->a0, out_val);
+               ret = sbi_pmu_ctr_fw_read(regs->a0, &temp);
+               *out_val = temp;
                break;
        case SBI_EXT_PMU_COUNTER_START:
 
index 535e5cc..250808e 100644 (file)
@@ -167,50 +167,19 @@ static int pmu_ctr_validate(uint32_t cidx, uint32_t *event_idx_code)
        return event_idx_type;
 }
 
-static int pmu_ctr_read_fw(uint32_t cidx, unsigned long *cval,
-                              uint32_t fw_evt_code)
-{
-       u32 hartid = current_hartid();
-       struct sbi_pmu_fw_event fevent;
-
-       fevent = fw_event_map[hartid][fw_evt_code];
-       *cval = fevent.curr_count;
-
-       return 0;
-}
-
-/* Add a hardware counter read for completeness for future purpose */
-static int pmu_ctr_read_hw(uint32_t cidx, uint64_t *cval)
-{
-       /* Check for invalid hw counter read requests */
-       if (unlikely(cidx == 1))
-               return SBI_EINVAL;
-#if __riscv_xlen == 32
-       uint32_t temp, temph = 0;
-
-       temp = csr_read_num(CSR_MCYCLE + cidx);
-       temph = csr_read_num(CSR_MCYCLEH + cidx);
-       *cval = ((uint64_t)temph << 32) | temp;
-#else
-       *cval = csr_read_num(CSR_MCYCLE + cidx);
-#endif
-
-       return 0;
-}
-
-int sbi_pmu_ctr_read(uint32_t cidx, unsigned long *cval)
+int sbi_pmu_ctr_fw_read(uint32_t cidx, uint64_t *cval)
 {
        int event_idx_type;
        uint32_t event_code;
-       uint64_t cval64;
+       u32 hartid = current_hartid();
+       struct sbi_pmu_fw_event *fevent;
 
        event_idx_type = pmu_ctr_validate(cidx, &event_code);
-       if (event_idx_type < 0)
+       if (event_idx_type != SBI_PMU_EVENT_TYPE_FW)
                return SBI_EINVAL;
-       else if (event_idx_type == SBI_PMU_EVENT_TYPE_FW)
-               pmu_ctr_read_fw(cidx, cval, event_code);
-       else
-               pmu_ctr_read_hw(cidx, &cval64);
+
+       fevent = &fw_event_map[hartid][event_code];
+       *cval = fevent->curr_count;
 
        return 0;
 }