From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web11.9746.1591792882722128063 for ; Wed, 10 Jun 2020 05:41:23 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=FYWkLzML; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1591792881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tvs8drOcx+6SnaLuoYSU1lk/SKLPKqPRFOAG8fqvxWw=; b=FYWkLzMLMv8/XhEQhYt0VqqPpOcwMq9eFMz+zPVGQCe8Ayg36K4sJ1Q6kgoTOFgZeNqRb5 M+cLuyx4y/yoKhxIO/IoAYevVPPJva0ss/xlKhEHL3pebXbas7Ha1Nm/QK7qnegsNCcQIW 7GqQSBZPVhHbaotzkiQ6TMFjX8o0Ud0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-10-1sfwn30PNJur8JtA77Cutg-1; Wed, 10 Jun 2020 08:41:18 -0400 X-MC-Unique: 1sfwn30PNJur8JtA77Cutg-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7FD09461; Wed, 10 Jun 2020 12:41:16 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-112-233.ams2.redhat.com [10.36.112.233]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9B27D5C1BD; Wed, 10 Jun 2020 12:41:14 +0000 (UTC) Subject: Re: [PATCH v9 15/46] OvmfPkg/VmgExitLib: Add support for CPUID NAE events To: Tom Lendacky , devel@edk2.groups.io Cc: Brijesh Singh , Ard Biesheuvel , Eric Dong , Jordan Justen , Liming Gao , Michael D Kinney , Ray Ni References: <2b2b229690e2a2422e35c9a4df0431085c76b1ca.1591363657.git.thomas.lendacky@amd.com> From: "Laszlo Ersek" Message-ID: <32f79eee-80e8-912f-c409-36f85ac3d918@redhat.com> Date: Wed, 10 Jun 2020 14:41:13 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <2b2b229690e2a2422e35c9a4df0431085c76b1ca.1591363657.git.thomas.lendacky@amd.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 06/05/20 15:27, Tom Lendacky wrote: > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2198 > > Under SEV-ES, a CPUID intercept generates a #VC exception. VMGEXIT must be > used to allow the hypervisor to handle this intercept. > > Add support to construct the required GHCB values to support a CPUID NAE > event. Additionally, CPUID 0x0000_000d (CPUID_EXTENDED_STATE) requires > XCR0 to be supplied in the GHCB, so add support to issue the XGETBV > instruction. > > Cc: Jordan Justen > Cc: Laszlo Ersek > Cc: Ard Biesheuvel > Acked-by: Laszlo Ersek > Signed-off-by: Tom Lendacky > --- > OvmfPkg/Library/VmgExitLib/VmgExitVcHandler.c | 60 ++++++++++++++++++++ > 1 file changed, 60 insertions(+) Looks fine, thanks