From patchwork Fri Feb 5 13:57:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Price X-Patchwork-Id: 12070193 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7DC21C433DB for ; Fri, 5 Feb 2021 13:59:19 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A745164FC0 for ; Fri, 5 Feb 2021 13:59:18 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A745164FC0 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:50702 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l81dl-00088y-EI for qemu-devel@archiver.kernel.org; Fri, 05 Feb 2021 08:59:17 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:60718) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l81d0-0006zo-5y for qemu-devel@nongnu.org; Fri, 05 Feb 2021 08:58:30 -0500 Received: from foss.arm.com ([217.140.110.172]:53000) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l81ct-00073S-QS for qemu-devel@nongnu.org; Fri, 05 Feb 2021 08:58:29 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id CE27331B; Fri, 5 Feb 2021 05:58:21 -0800 (PST) Received: from e112269-lin.arm.com (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 076A83F719; Fri, 5 Feb 2021 05:58:18 -0800 (PST) From: Steven Price To: Catalin Marinas , Marc Zyngier , Will Deacon Subject: [PATCH v8 0/5] MTE support for KVM guest Date: Fri, 5 Feb 2021 13:57:58 +0000 Message-Id: <20210205135803.48321-1-steven.price@arm.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Received-SPF: pass client-ip=217.140.110.172; envelope-from=steven.price@arm.com; helo=foss.arm.com X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Mark Rutland , Peter Maydell , "Dr. David Alan Gilbert" , Andrew Jones , Haibo Xu , Suzuki K Poulose , qemu-devel@nongnu.org, Dave Martin , Juan Quintela , Richard Henderson , linux-kernel@vger.kernel.org, Steven Price , James Morse , Julien Thierry , Thomas Gleixner , kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Another round of updates following review comments from Marc (thanks!). This is rather late for v5.12, so I'll rebase again after -rc1 is out. This series adds support for using the Arm Memory Tagging Extensions (MTE) in a KVM guest. This version splits the change to the tag synchronisation out to it's own patch (patch 1), and also separates the introduction and exposing of KVM_ARM_CAP_MTE into two patches (2 and 4) to avoid a dependency problem with the save/restore patch (3). As before patch 5 is an RFC for adding a new ioctl for reading/writing tags (I would appreciate feedback!). Changes since v7[1]: * Split into hopefully more logic patches. * Save/restore of TFSRE0_EL1 is now done in C code. * Make save/restore of TFSR_EL1 conditional on the VM having MTE enabled. * Replaced register descriptions boilerplate in sys_regs.c with a new MTE_REG() macro. [1] https://lore.kernel.org/r/20210115152811.8398-1-steven.price%40arm.com Steven Price (5): arm64: mte: Sync tags for pages where PTE is untagged arm64: kvm: Introduce MTE VM feature arm64: kvm: Save/restore MTE registers arm64: kvm: Expose KVM_ARM_CAP_MTE KVM: arm64: ioctl to fetch/store tags in a guest arch/arm64/include/asm/kvm_emulate.h | 3 + arch/arm64/include/asm/kvm_host.h | 9 +++ arch/arm64/include/asm/kvm_mte.h | 66 ++++++++++++++++++++++ arch/arm64/include/asm/pgtable.h | 2 +- arch/arm64/include/asm/sysreg.h | 3 +- arch/arm64/include/uapi/asm/kvm.h | 13 +++++ arch/arm64/kernel/asm-offsets.c | 3 + arch/arm64/kernel/mte.c | 16 ++++-- arch/arm64/kvm/arm.c | 66 ++++++++++++++++++++++ arch/arm64/kvm/hyp/entry.S | 7 +++ arch/arm64/kvm/hyp/exception.c | 3 +- arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h | 21 +++++++ arch/arm64/kvm/mmu.c | 16 ++++++ arch/arm64/kvm/sys_regs.c | 28 +++++++-- include/uapi/linux/kvm.h | 2 + 15 files changed, 246 insertions(+), 12 deletions(-) create mode 100644 arch/arm64/include/asm/kvm_mte.h