From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2B82AC433FE for ; Mon, 7 Nov 2022 08:55:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231508AbiKGIzB (ORCPT ); Mon, 7 Nov 2022 03:55:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54152 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230502AbiKGIy7 (ORCPT ); Mon, 7 Nov 2022 03:54:59 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 72C8B5F6C for ; Mon, 7 Nov 2022 00:54:58 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0F13560F59 for ; Mon, 7 Nov 2022 08:54:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6FA50C433D7; Mon, 7 Nov 2022 08:54:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667811297; bh=pEbBpkDxJeLjYl7pvbLcBHKw0VqBlfqQ4ipHa5m0TVg=; h=From:To:Cc:Subject:Date:From; b=oX7EXUevbX5aGyekhU70GP3apNvXaF8wQyLiuZTEKkyJ4vocJn55RUUeZi/9xXlyu pKTBxrlY5xBndbFkR3fFxg3jMz8s6Ymvc8RKJbzTNMuKyVaf/rf1OjsBqE8sTbewBv CkqaHbGYD9vE4/ZHSP7VwHYib0wUVJRsP37zATrUkyYeghgBm2R2EOFF6+/LxXTRVS 8DuV09aK8TA4dVzKfgjk7K0EgP12207K2aySLmR8gvJTJvrTuTIDjr/FQuEa410Ucb nB02z2VgBx9IMUQuUXpGjyZQJVcMpbOpEJbZOnaKAfu0tPsHDXQzJPUCsmUWA6vdgD fLJPM4VJy6a0w== Received: from sofa.misterjones.org ([185.219.108.64] helo=valley-girl.lan) by disco-boy.misterjones.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1orxuB-004KxX-7h; Mon, 07 Nov 2022 08:54:55 +0000 From: Marc Zyngier To: linux-arm-kernel@lists.infradead.org, , , kvm@vger.kernel.org Cc: James Morse , Suzuki K Poulose , Alexandru Elisei , Oliver Upton , Ricardo Koller , Reiji Watanabe Subject: [PATCH v3 00/14] KVM: arm64: PMU: Fixing chained events, and PMUv3p5 support Date: Mon, 7 Nov 2022 08:54:21 +0000 Message-Id: <20221107085435.2581641-1-maz@kernel.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 185.219.108.64 X-SA-Exim-Rcpt-To: linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, kvmarm@lists.linux.dev, kvm@vger.kernel.org, james.morse@arm.com, suzuki.poulose@arm.com, alexandru.elisei@arm.com, oliver.upton@linux.dev, ricarkol@google.com, reijiw@google.com X-SA-Exim-Mail-From: maz@kernel.org X-SA-Exim-Scanned: No (on disco-boy.misterjones.org); SAEximRunCond expanded to false Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Ricardo reported[0] that our PMU emulation was busted when it comes to chained events, as we cannot expose the overflow on a 32bit boundary (which the architecture requires). This series aims at fixing this (by deleting a lot of code), and as a bonus adds support for PMUv3p5, as this requires us to fix a few more things. Tested on A53 (PMUv3) and QEMU (PMUv3p5). * From v2 [2]: - Some tightening of userspace access to ID_{AA64,}DFR0_EL1 * From v1 [1]: - Rebased on 6.1-rc2 - New patch advertising that we always support the CHAIN event - Plenty of bug fixes (idreg handling, AArch32, overflow narrowing) - Tons of cleanups - All kudos to Oliver and Reiji for spending the time to review this mess, and Ricardo for finding more bugs! [0] https://lore.kernel.org/r/20220805004139.990531-1-ricarkol@google.com [1] https://lore.kernel.org/r/20220805135813.2102034-1-maz@kernel.org [2] https://lore.kernel.org/r/20221028105402.2030192-1-maz@kernel.org Marc Zyngier (14): arm64: Add ID_DFR0_EL1.PerfMon values for PMUv3p7 and IMP_DEF KVM: arm64: PMU: Align chained counter implementation with architecture pseudocode KVM: arm64: PMU: Always advertise the CHAIN event KVM: arm64: PMU: Distinguish between 64bit counter and 64bit overflow KVM: arm64: PMU: Narrow the overflow checking when required KVM: arm64: PMU: Only narrow counters that are not 64bit wide KVM: arm64: PMU: Add counter_index_to_*reg() helpers KVM: arm64: PMU: Simplify setting a counter to a specific value KVM: arm64: PMU: Do not let AArch32 change the counters' top 32 bits KVM: arm64: PMU: Move the ID_AA64DFR0_EL1.PMUver limit to VM creation KVM: arm64: PMU: Allow ID_AA64DFR0_EL1.PMUver to be set from userspace KVM: arm64: PMU: Allow ID_DFR0_EL1.PerfMon to be set from userspace KVM: arm64: PMU: Implement PMUv3p5 long counter support KVM: arm64: PMU: Allow PMUv3p5 to be exposed to the guest arch/arm64/include/asm/kvm_host.h | 1 + arch/arm64/include/asm/sysreg.h | 2 + arch/arm64/kvm/arm.c | 6 + arch/arm64/kvm/pmu-emul.c | 408 ++++++++++++------------------ arch/arm64/kvm/sys_regs.c | 139 +++++++++- include/kvm/arm_pmu.h | 15 +- 6 files changed, 311 insertions(+), 260 deletions(-) -- 2.34.1