|
@@ -0,0 +1,54 @@
|
|
|
|
+/*
|
|
|
|
+ * RISC-V IOMMU - Hardware Performance Monitor (HPM) helpers
|
|
|
|
+ *
|
|
|
|
+ * Copyright (C) 2022-2023 Rivos Inc.
|
|
|
|
+ *
|
|
|
|
+ * This program is free software; you can redistribute it and/or modify it
|
|
|
|
+ * under the terms and conditions of the GNU General Public License,
|
|
|
|
+ * version 2 or later, as published by the Free Software Foundation.
|
|
|
|
+ *
|
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+ * GNU General Public License for more details.
|
|
|
|
+ *
|
|
|
|
+ * You should have received a copy of the GNU General Public License along
|
|
|
|
+ * with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+#include "qemu/osdep.h"
|
|
|
|
+#include "qemu/timer.h"
|
|
|
|
+#include "cpu_bits.h"
|
|
|
|
+#include "riscv-iommu-hpm.h"
|
|
|
|
+#include "riscv-iommu.h"
|
|
|
|
+#include "riscv-iommu-bits.h"
|
|
|
|
+#include "trace.h"
|
|
|
|
+
|
|
|
|
+/* For now we assume IOMMU HPM frequency to be 1GHz so 1-cycle is of 1-ns. */
|
|
|
|
+static inline uint64_t get_cycles(void)
|
|
|
|
+{
|
|
|
|
+ return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+uint64_t riscv_iommu_hpmcycle_read(RISCVIOMMUState *s)
|
|
|
|
+{
|
|
|
|
+ const uint64_t cycle = riscv_iommu_reg_get64(
|
|
|
|
+ s, RISCV_IOMMU_REG_IOHPMCYCLES);
|
|
|
|
+ const uint32_t inhibit = riscv_iommu_reg_get32(
|
|
|
|
+ s, RISCV_IOMMU_REG_IOCOUNTINH);
|
|
|
|
+ const uint64_t ctr_prev = s->hpmcycle_prev;
|
|
|
|
+ const uint64_t ctr_val = s->hpmcycle_val;
|
|
|
|
+
|
|
|
|
+ if (get_field(inhibit, RISCV_IOMMU_IOCOUNTINH_CY)) {
|
|
|
|
+ /*
|
|
|
|
+ * Counter should not increment if inhibit bit is set. We can't really
|
|
|
|
+ * stop the QEMU_CLOCK_VIRTUAL, so we just return the last updated
|
|
|
|
+ * counter value to indicate that counter was not incremented.
|
|
|
|
+ */
|
|
|
|
+ return (ctr_val & RISCV_IOMMU_IOHPMCYCLES_COUNTER) |
|
|
|
|
+ (cycle & RISCV_IOMMU_IOHPMCYCLES_OVF);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return (ctr_val + get_cycles() - ctr_prev) |
|
|
|
|
+ (cycle & RISCV_IOMMU_IOHPMCYCLES_OVF);
|
|
|
|
+}
|