|
@@ -707,6 +707,12 @@ static void pmu_enable_counter(struct cci_pmu *cci_pmu, int idx)
|
|
pmu_write_register(cci_pmu, 1, idx, CCI_PMU_CNTR_CTRL);
|
|
pmu_write_register(cci_pmu, 1, idx, CCI_PMU_CNTR_CTRL);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static bool __maybe_unused
|
|
|
|
+pmu_counter_is_enabled(struct cci_pmu *cci_pmu, int idx)
|
|
|
|
+{
|
|
|
|
+ return (pmu_read_register(cci_pmu, idx, CCI_PMU_CNTR_CTRL) & 0x1) != 0;
|
|
|
|
+}
|
|
|
|
+
|
|
static void pmu_set_event(struct cci_pmu *cci_pmu, int idx, unsigned long event)
|
|
static void pmu_set_event(struct cci_pmu *cci_pmu, int idx, unsigned long event)
|
|
{
|
|
{
|
|
pmu_write_register(cci_pmu, event, idx, CCI_PMU_EVT_SEL);
|
|
pmu_write_register(cci_pmu, event, idx, CCI_PMU_EVT_SEL);
|