Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp3740415pxv; Tue, 13 Jul 2021 02:37:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxv3qUL6YYj600m96Q9+SsJm1S7lsalkSQoc9vmb1z5Ld3pzCW3RbNCP12sk10w26BxV9ch X-Received: by 2002:aa7:d3da:: with SMTP id o26mr4586011edr.304.1626169040251; Tue, 13 Jul 2021 02:37:20 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1626169040; cv=none; d=google.com; s=arc-20160816; b=HcsKS55hSm8wHlpd80P3jN/399KdRELii4SpBWaIQScjfWPVtkdq9wuZxDzyzYGDMg IQ+k8fRh/UCbVpqf69yitPiM25v82JNyxuF687ctJs7T06aAS4N1CY6HI7cWAIPf9H/N LrGNl2llxbIWahDglkDu5rjj+L+oX2rbEX6e+bFl+uoTZLly0opar0V8XNIgbZbHz7bu wDvxXuMNJBY+eblIoVGTGct5c6zvOvWUIkWhNk2KAwBhQ42uT5bilOTehLgPVAsaLQ9C cjVFGfeamdvh8J6Ob17SNZQSrUrWYwKCuUGOlUsFHRxHQofw3tQVWyYJL9vY/vssP1aY 02AA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=MngFqjU/+uIQysMm+oNUVytIijskUST5uRibC6L+kl8=; b=xSaNJ/vcU9TCuYnn22DEK8eKqpSSf06sx3G0H9fJwjcywuX1X8gkpzXT2jdsFmDw2Q WH3VHlEkoJn8qf7MqK0T51FDBEwPWsmnuF7gEp2N3m1/X4qYG+tpOo8GXHE+3Fi4Nskt 8XSpJPdX+ZColjI2HT4uxEU3JqY+YSQxUKBihVuH1O2GN8b7cfUCElLaN6q1gDieo4XP AigRFuk9i9nlCMuYtZMgGA3IDANKGdP9pBUFcxvjvnqcVITnQeEdzN0tPTf45Rn7iyGl MvPwTZSUm7e54Ac+p/Rr08oSrrdON9hFSso+WtdGrLWAosHj4B9oRTJO7f2Yas4bBPae /S7g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hp26si1571358ejc.565.2021.07.13.02.36.57; Tue, 13 Jul 2021 02:37:20 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235224AbhGMJiq (ORCPT + 99 others); Tue, 13 Jul 2021 05:38:46 -0400 Received: from 8bytes.org ([81.169.241.247]:36902 "EHLO theia.8bytes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235149AbhGMJio (ORCPT ); Tue, 13 Jul 2021 05:38:44 -0400 Received: from cap.home.8bytes.org (p4ff2b1ea.dip0.t-ipconnect.de [79.242.177.234]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by theia.8bytes.org (Postfix) with ESMTPSA id 1BB2750F; Tue, 13 Jul 2021 11:35:49 +0200 (CEST) From: Joerg Roedel To: Paolo Bonzini Cc: Sean Christopherson , Vitaly Kuznetsov , Wanpeng Li , Jim Mattson , Joerg Roedel , Brijesh Singh , Tom Lendacky , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, x86@kernel.org, Joerg Roedel Subject: [PATCH 2/3] KVM: SVM: Add support for Hypervisor Feature support MSR protocol Date: Tue, 13 Jul 2021 11:35:45 +0200 Message-Id: <20210713093546.7467-3-joro@8bytes.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210713093546.7467-1-joro@8bytes.org> References: <20210713093546.7467-1-joro@8bytes.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Brijesh Singh Version 2 of the GHCB specification introduced advertisement of features that are supported by the Hypervisor. Signed-off-by: Brijesh Singh Signed-off-by: Joerg Roedel --- arch/x86/include/asm/sev-common.h | 4 ++++ arch/x86/include/uapi/asm/svm.h | 1 + arch/x86/kvm/svm/sev.c | 12 ++++++++++++ arch/x86/kvm/svm/svm.h | 1 + 4 files changed, 18 insertions(+) diff --git a/arch/x86/include/asm/sev-common.h b/arch/x86/include/asm/sev-common.h index dda34ecac5c0..0374f5687fc0 100644 --- a/arch/x86/include/asm/sev-common.h +++ b/arch/x86/include/asm/sev-common.h @@ -60,6 +60,10 @@ #define GHCB_MSR_HV_FT_REQ 0x080 #define GHCB_MSR_HV_FT_RESP 0x081 +/* GHCB Hypervisor Feature Request/Response */ +#define GHCB_MSR_HV_FT_REQ 0x080 +#define GHCB_MSR_HV_FT_RESP 0x081 + #define GHCB_MSR_TERM_REQ 0x100 #define GHCB_MSR_TERM_REASON_SET_POS 12 #define GHCB_MSR_TERM_REASON_SET_MASK 0xf diff --git a/arch/x86/include/uapi/asm/svm.h b/arch/x86/include/uapi/asm/svm.h index efa969325ede..fbb6f8d27a80 100644 --- a/arch/x86/include/uapi/asm/svm.h +++ b/arch/x86/include/uapi/asm/svm.h @@ -108,6 +108,7 @@ #define SVM_VMGEXIT_AP_JUMP_TABLE 0x80000005 #define SVM_VMGEXIT_SET_AP_JUMP_TABLE 0 #define SVM_VMGEXIT_GET_AP_JUMP_TABLE 1 +#define SVM_VMGEXIT_HV_FT 0x8000fffd #define SVM_VMGEXIT_UNSUPPORTED_EVENT 0x8000ffff /* Exit code reserved for hypervisor/software use */ diff --git a/arch/x86/kvm/svm/sev.c b/arch/x86/kvm/svm/sev.c index 0ec88b349799..8121b335651c 100644 --- a/arch/x86/kvm/svm/sev.c +++ b/arch/x86/kvm/svm/sev.c @@ -2182,6 +2182,7 @@ static int sev_es_validate_vmgexit(struct vcpu_svm *svm) case SVM_VMGEXIT_AP_HLT_LOOP: case SVM_VMGEXIT_AP_JUMP_TABLE: case SVM_VMGEXIT_UNSUPPORTED_EVENT: + case SVM_VMGEXIT_HV_FT: break; default: goto vmgexit_err; @@ -2434,6 +2435,11 @@ static int sev_handle_vmgexit_msr_protocol(struct vcpu_svm *svm) GHCB_MSR_INFO_MASK, GHCB_MSR_INFO_POS); break; } + case GHCB_MSR_HV_FT_REQ: { + set_ghcb_msr_bits(svm, GHCB_HV_FT_SUPPORTED, GHCB_DATA_MASK, GHCB_DATA_LOW); + set_ghcb_msr_bits(svm, GHCB_MSR_HV_FT_RESP, GHCB_MSR_INFO_MASK, GHCB_MSR_INFO_POS); + break; + } case GHCB_MSR_TERM_REQ: { u64 reason_set, reason_code; @@ -2549,6 +2555,12 @@ int sev_handle_vmgexit(struct kvm_vcpu *vcpu) ret = 1; break; } + case SVM_VMGEXIT_HV_FT: { + ghcb_set_sw_exit_info_2(ghcb, GHCB_HV_FT_SUPPORTED); + + ret = 1; + break; + } case SVM_VMGEXIT_UNSUPPORTED_EVENT: vcpu_unimpl(vcpu, "vmgexit: unsupported event - exit_info_1=%#llx, exit_info_2=%#llx\n", diff --git a/arch/x86/kvm/svm/svm.h b/arch/x86/kvm/svm/svm.h index b21b9df54121..77379e1442cc 100644 --- a/arch/x86/kvm/svm/svm.h +++ b/arch/x86/kvm/svm/svm.h @@ -546,6 +546,7 @@ void svm_vcpu_unblocking(struct kvm_vcpu *vcpu); #define GHCB_VERSION_MAX 1ULL #define GHCB_VERSION_MIN 1ULL +#define GHCB_HV_FT_SUPPORTED 0 extern unsigned int max_sev_asid; -- 2.31.1