Received: by 2002:a05:6a10:1287:0:0:0:0 with SMTP id d7csp471887pxv; Thu, 22 Jul 2021 04:53:55 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwXBhxIXwLoNxTK2xW19RY1wgHm8fDQLO1Qhg0Po4g3PiCPbmVAcvNS2sFH2U8u9qvP9g0r X-Received: by 2002:a02:cb92:: with SMTP id u18mr30058850jap.78.1626954835352; Thu, 22 Jul 2021 04:53:55 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1626954835; cv=none; d=google.com; s=arc-20160816; b=SIYq8KhKukhmpNixo1RzePWKeG7rRaR9o4dGrinHb04jpYgVZHfct0/I9vE1CgQn/+ 7HqeSMrhAMdVu63e2ouz7wQUri6tY3CwglaYoL5vhyZoP2FpHdKdLs7or1tbBOo0GMRu Zd7PtUS8UZTzDZblzAgBsZvLAUOk+2hyh01ilLIbq/sKXxdugaMzIThwAwrc1aV2X2Sy QySJkfwxe6ka9XGCdikejWi1thSld5xlCJTW3QocfPPTxDoDkRG6/YlmzhS7RLXPCiCI gW2psZlUGzVzveI830TfAgQj6tMEPplg/Uvgs12gV4o/cw36df+LQiGD8R7K+pteD9V1 b/Bw== 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 :message-id:date:subject:cc:to:from; bh=8Ss1aFHnN5IIQRhHEVDLOKMePOdCJ1AzjPEyNuOaDwg=; b=v5oMvBLiR8DaoQVx7GH+ELnQzYqXL4x3XLCFajhSN7C2Sx5PcK9AX84LFD3p3FOvG4 4uJTxV9ZZms/z+/rocnaPBMFcck+hbKjO0lGwHxohH9AIXC6dZzzZZvqKoTke120boqJ 6EOa1MLMZJyxO+qilT9NugX4yFP6uxbX4AqfQyP28uMfrWK65xGvvXRLhIZ8yQVE14aG GEDcDJ2b8wTKhw/uGmfqMCB2z78tiQL9zfQBlWA15kVEccR5WSKBHOjTHSFkDJnbgHWS 6SCpg/7EZaWwtqA7Y25UR0goxxYua69KqnlGVLyyyIwberrI6obwc4NSVospZvm6MrdC gvVg== 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 n26si18811016jam.80.2021.07.22.04.53.44; Thu, 22 Jul 2021 04:53:55 -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 S231792AbhGVLMV (ORCPT + 99 others); Thu, 22 Jul 2021 07:12:21 -0400 Received: from 8bytes.org ([81.169.241.247]:44200 "EHLO theia.8bytes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231627AbhGVLMT (ORCPT ); Thu, 22 Jul 2021 07:12:19 -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 9DE482E3; Thu, 22 Jul 2021 13:52:52 +0200 (CEST) From: Joerg Roedel To: Paolo Bonzini Cc: Sean Christopherson , Vitaly Kuznetsov , Wanpeng Li , Jim Mattson , Joerg Roedel , Brijesh Singh , Tom Lendacky , kvm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-coco@lists.linux.dev, Joerg Roedel Subject: [PATCH v2 0/4] KVM: SVM: Add initial GHCB protocol version 2 support Date: Thu, 22 Jul 2021 13:52:41 +0200 Message-Id: <20210722115245.16084-1-joro@8bytes.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Joerg Roedel Hi, here is a small set of patches which I took from the pending SEV-SNP patch-sets to enable basic support for GHCB protocol version 2. When SEV-SNP is not supported, only two new MSR protocol VMGEXIT calls need to be supported: - MSR-based AP-reset-hold - MSR-based HV-feature-request These calls are implemented by here and then the protocol is lifted to version 2. This is submitted separately because the MSR-based AP-reset-hold call is required to support kexec/kdump in SEV-ES guests. Regards, Joerg Changes v1->v2: - Rebased to v5.14-rc2 - Addressed Sean's review comments from the SNP patch-set. Brijesh Singh (2): KVM: SVM: Add support for Hypervisor Feature support MSR protocol KVM: SVM: Increase supported GHCB protocol version Joerg Roedel (1): KVM: SVM: Get rid of *ghcb_msr_bits() functions Tom Lendacky (1): KVM: SVM: Add support to handle AP reset MSR protocol arch/x86/include/asm/kvm_host.h | 10 ++- arch/x86/include/asm/sev-common.h | 14 ++++ arch/x86/include/asm/svm.h | 1 - arch/x86/include/uapi/asm/svm.h | 1 + arch/x86/kvm/svm/sev.c | 107 ++++++++++++++++++++---------- arch/x86/kvm/svm/svm.h | 3 +- arch/x86/kvm/x86.c | 5 +- 7 files changed, 103 insertions(+), 38 deletions(-) base-commit: 2734d6c1b1a089fb593ef6a23d4b70903526fe0c -- 2.31.1