From patchwork Fri Jan 27 11:39:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Suzuki K Poulose X-Patchwork-Id: 13118560 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 49D6CC54EAA for ; Fri, 27 Jan 2023 12:06:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=6DAuA1Krl6O2WE5g8/a58xERWmYT+TwSCDNpcSZg8VA=; b=1vPhsYQ+4FMyQW 92ZcjZqXnrtAlhkCe8y0J8V3NOXjlure1kiZwsEJbQy13ev00HKQwb2lcRUg1rbP167+s1JtifYol Ae7ViBcThkjZEpS9CPEGwE3qD7nGZ6sYWIvOeE5eNJzs8bknOv3iSs5p216IMPRJaNsfoJLboeltB 3Kn4Jx05c6EgPuoJkVo2u6FKduQ9OmoFhPpGXx5cGL3JOuoQpnoHif+Pj/HPNzfJ5VEPQa3cvTjtR 1yHzFzbIiaeFxnTUTp5/4xG/Y7DqVaiYhTv5sfpG6rRDA805XEnjZWfGJ0dqk6P8aeBbMv5Erpp7V kHofwQ9/sWyK9vd2R+0w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pLNTn-00EOU9-Ae; Fri, 27 Jan 2023 12:05:15 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pLN5j-00ECvM-Ru for linux-arm-kernel@lists.infradead.org; Fri, 27 Jan 2023 11:40:26 +0000 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 14FA01692; Fri, 27 Jan 2023 03:41:05 -0800 (PST) Received: from ewhatever.cambridge.arm.com (ewhatever.cambridge.arm.com [10.1.197.1]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 8C0393F64C; Fri, 27 Jan 2023 03:40:20 -0800 (PST) From: Suzuki K Poulose To: kvm@vger.kernel.org, kvmarm@lists.linux.dev Cc: suzuki.poulose@arm.com, Alexandru Elisei , Andrew Jones , Christoffer Dall , Fuad Tabba , Jean-Philippe Brucker , Joey Gouly , Marc Zyngier , Mark Rutland , Oliver Upton , Paolo Bonzini , Quentin Perret , Steven Price , Thomas Huth , Will Deacon , Zenghui Yu , linux-coco@lists.linux.dev, kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [RFC kvmtool 12/31] arm64: Create Realm Descriptor Date: Fri, 27 Jan 2023 11:39:13 +0000 Message-Id: <20230127113932.166089-13-suzuki.poulose@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230127113932.166089-1-suzuki.poulose@arm.com> References: <20230127112248.136810-1-suzuki.poulose@arm.com> <20230127113932.166089-1-suzuki.poulose@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230127_034024_058185_1F860CB9 X-CRM114-Status: GOOD ( 14.63 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Alexandru Elisei Create the Realm Descriptor using the measurement algorithm set with --measurement-algo. Signed-off-by: Alexandru Elisei Signed-off-by: Suzuki K Poulose --- Makefile | 1 + arm/aarch32/include/asm/realm.h | 10 ++++++++++ arm/aarch64/include/asm/realm.h | 10 ++++++++++ arm/aarch64/realm.c | 14 ++++++++++++++ arm/kvm.c | 3 +++ 5 files changed, 38 insertions(+) create mode 100644 arm/aarch32/include/asm/realm.h create mode 100644 arm/aarch64/include/asm/realm.h create mode 100644 arm/aarch64/realm.c diff --git a/Makefile b/Makefile index ed2414bd..88cdf6d2 100644 --- a/Makefile +++ b/Makefile @@ -192,6 +192,7 @@ ifeq ($(ARCH), arm64) OBJS += arm/aarch64/kvm.o OBJS += arm/aarch64/pvtime.o OBJS += arm/aarch64/pmu.o + OBJS += arm/aarch64/realm.o ARCH_INCLUDE := $(HDRS_ARM_COMMON) ARCH_INCLUDE += -Iarm/aarch64/include diff --git a/arm/aarch32/include/asm/realm.h b/arm/aarch32/include/asm/realm.h new file mode 100644 index 00000000..5aca6cca --- /dev/null +++ b/arm/aarch32/include/asm/realm.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __ASM_REALM_H +#define __ASM_REALM_H + +#include "kvm/kvm.h" + +static inline void kvm_arm_realm_create_realm_descriptor(struct kvm *kvm) {} + +#endif /* ! __ASM_REALM_H */ diff --git a/arm/aarch64/include/asm/realm.h b/arm/aarch64/include/asm/realm.h new file mode 100644 index 00000000..e176f15f --- /dev/null +++ b/arm/aarch64/include/asm/realm.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __ASM_REALM_H +#define __ASM_REALM_H + +#include "kvm/kvm.h" + +void kvm_arm_realm_create_realm_descriptor(struct kvm *kvm); + +#endif /* ! __ASM_REALM_H */ diff --git a/arm/aarch64/realm.c b/arm/aarch64/realm.c new file mode 100644 index 00000000..3a4adb66 --- /dev/null +++ b/arm/aarch64/realm.c @@ -0,0 +1,14 @@ +#include "kvm/kvm.h" + +#include + +void kvm_arm_realm_create_realm_descriptor(struct kvm *kvm) +{ + struct kvm_enable_cap rme_create_rd = { + .cap = KVM_CAP_ARM_RME, + .args[0] = KVM_CAP_ARM_RME_CREATE_RD, + }; + + if (ioctl(kvm->vm_fd, KVM_ENABLE_CAP, &rme_create_rd) < 0) + die_perror("KVM_CAP_RME(KVM_CAP_ARM_RME_CREATE_RD)"); +} diff --git a/arm/kvm.c b/arm/kvm.c index 0e40b753..2510a322 100644 --- a/arm/kvm.c +++ b/arm/kvm.c @@ -127,6 +127,9 @@ void kvm__arch_set_cmdline(char *cmdline, bool video) void kvm__arch_init(struct kvm *kvm) { + if (kvm->cfg.arch.is_realm) + kvm_arm_realm_create_realm_descriptor(kvm); + /* Create the virtual GIC. */ if (gic__create(kvm, kvm->cfg.arch.irqchip)) die("Failed to create virtual GIC");