This series contains a set of fixes, cleanups, and improvements in
target/i386 PMU: legacy PEBS, Topdown metrics, and generic MSR
handling.
The patches are grouped into a single series for review convenience.
Some of them are not tightly coupled and can be reviewed and applied
individually.
For example, the PEBS-related changes could be a separate series, and
the Topdown metrics patch could be separate. However, they touch
closely related PMU and MSR code paths, and keeping them together here
makes review easier and helps avoid potential merge conflicts.
Patch series overview:
Patches 1-6: Miscellaneous PMU/MSR fixes and cleanups.
Patches 7-8, 11–12: Complete legacy PEBS support in QEMU.
Patches 9-10: Refactoring in preparation for pebs-fmt support.
Patch 13: Add Topdown metrics feature support.
The KVM patch series for Topdown metrics support:
https://lore.kernel.org/kvm/20260226230606.146532-1-zide.chen@intel.com/T/#t
Changes since v2:
- Add new patch 13/13 to support Topdown metrics.
- Separate the adjustment of maximum PMU counters to patch 4/13, in
order not to bump PMU migration version_id twice.
- Re-base on top of most recent mainline QEMU: d8a9d97317d0
- Remove MSR_AMD64_PERF_CNTR_GLOBAL_STATUS_CLR in patch 2/13.
- Do not support pebs-fmt=0.
- Fix the vmstate name of msr_ds_pebs.
- Misc fixes and cleanup.
Changes since v1:
- Add two new patches to clean up and refactor LBR format handling.
- Introduce a new pebs-fmt command-line option.
- Add a patch to avoid exposing PEBS capabilities when not enabled.
- Trivial fixes and cleanups.
v1: https://lore.kernel.org/qemu-devel/20260117011053.80723-1-zide.chen@intel.com/
v2: https://lore.kernel.org/qemu-devel/20260128231003.268981-1-zide.chen@intel.com/T/#t
Dapeng Mi (4):
target/i386: Don't save/restore PERF_GLOBAL_OVF_CTRL MSRs
target/i386: Support full-width writes for perf counters
target/i386: Add get/set/migrate support for legacy PEBS MSRs
target/i386: Add Topdown metrics feature support
Zide Chen (9):
target/i386: Disable unsupported BTS for guest
target/i386: Gate enable_pmu on kvm_enabled()
target/i386: Adjust maximum number of PMU counters
target/i386: Increase MSR_BUF_SIZE and split KVM_[GET/SET]_MSRS calls
target/i386: Make some PEBS features user-visible
target/i386: Clean up LBR format handling
target/i386: Refactor LBR format handling
target/i386: Add pebs-fmt CPU option
target/i386: Clean up Intel Debug Store feature dependencies
target/i386/cpu.c | 140 ++++++++++++++++++++---------
target/i386/cpu.h | 42 ++++++---
target/i386/kvm/kvm-cpu.c | 3 +
target/i386/kvm/kvm.c | 179 +++++++++++++++++++++++++++++++-------
target/i386/machine.c | 54 ++++++++++--
5 files changed, 328 insertions(+), 90 deletions(-)
--
2.53.0