Commit 096b52fd authored by Sergey Matyukevich's avatar Sergey Matyukevich Committed by Palmer Dabbelt

perf: RISC-V: throttle perf events

Call perf_sample_event_took() to report time spent in overflow
interrupts. Perf core uses these measurements to throttle
perf events properly.
Signed-off-by: default avatarSergey Matyukevich <sergey.matyukevich@syntacore.com>
Reviewed-by: default avatarAtish Patra <atishp@rivosinc.com>
Link: https://lore.kernel.org/r/20220830155306.301714-4-geomatsi@gmail.comSigned-off-by: default avatarPalmer Dabbelt <palmer@rivosinc.com>
parent 1537bf26
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/of_irq.h> #include <linux/of_irq.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/cpu_pm.h> #include <linux/cpu_pm.h>
#include <linux/sched/clock.h>
#include <asm/sbi.h> #include <asm/sbi.h>
#include <asm/hwcap.h> #include <asm/hwcap.h>
...@@ -570,6 +571,7 @@ static irqreturn_t pmu_sbi_ovf_handler(int irq, void *dev) ...@@ -570,6 +571,7 @@ static irqreturn_t pmu_sbi_ovf_handler(int irq, void *dev)
unsigned long overflow; unsigned long overflow;
unsigned long overflowed_ctrs = 0; unsigned long overflowed_ctrs = 0;
struct cpu_hw_events *cpu_hw_evt = dev; struct cpu_hw_events *cpu_hw_evt = dev;
u64 start_clock = sched_clock();
if (WARN_ON_ONCE(!cpu_hw_evt)) if (WARN_ON_ONCE(!cpu_hw_evt))
return IRQ_NONE; return IRQ_NONE;
...@@ -638,7 +640,9 @@ static irqreturn_t pmu_sbi_ovf_handler(int irq, void *dev) ...@@ -638,7 +640,9 @@ static irqreturn_t pmu_sbi_ovf_handler(int irq, void *dev)
perf_event_overflow(event, &data, regs); perf_event_overflow(event, &data, regs);
} }
} }
pmu_sbi_start_overflow_mask(pmu, overflowed_ctrs); pmu_sbi_start_overflow_mask(pmu, overflowed_ctrs);
perf_sample_event_took(sched_clock() - start_clock);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment