]> git.proxmox.com Git - mirror_qemu.git/commit
target/ppc: PMU implement PERFM interrupts
authorNicholas Piggin <npiggin@gmail.com>
Tue, 30 May 2023 13:43:13 +0000 (23:43 +1000)
committerDaniel Henrique Barboza <danielhb413@gmail.com>
Sat, 10 Jun 2023 13:19:24 +0000 (10:19 -0300)
commitc29b070418c79fa8e09d17e4b52f3ffddd393764
treea60b9f82f4dc07c01b8fd98363ac82e72bbfe718
parentfd7abfab662a2bd8bbf63ad52d4b58243cd9c409
target/ppc: PMU implement PERFM interrupts

The PMU raises a performance monitor exception (causing an interrupt
when MSR[EE]=1) when MMCR0[PMAO] is set, and lowers it when clear.

Wire this up and implement the interrupt delivery for books. Linux perf
record can now collect PMI-driven samples.

fire_PMC_interrupt is renamed to perfm_alert, which matches a bit closer
to the new terminology used in the ISA and distinguishes the alert
condition (e.g., counter overflow) from the PERFM (or EBB) interrupts.

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20230530134313.387252-2-npiggin@gmail.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
target/ppc/excp_helper.c
target/ppc/power8-pmu.c