public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Alexey Kardashevskiy via groups.io" <aik=amd.com@groups.io>
To: Tom Lendacky <thomas.lendacky@amd.com>, devel@edk2.groups.io
Cc: Liming Gao <gaoliming@byosoft.com.cn>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Zhiguang Liu <zhiguang.liu@intel.com>,
	Ard Biesheuvel <ardb+tianocore@kernel.org>,
	Erdem Aktas <erdemaktas@google.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	Jiewen Yao <jiewen.yao@intel.com>,
	Michael Roth <michael.roth@amd.com>, Min Xu <min.m.xu@intel.com>
Subject: Re: [edk2-devel] [PATCH ovmf v4 5/5] OvmfPkf: Enable AMD SEV-ES DebugVirtualization
Date: Wed, 12 Jun 2024 11:24:29 +1000	[thread overview]
Message-ID: <33edb454-112a-4dea-9833-4124d149b63d@amd.com> (raw)
In-Reply-To: <a006230a-d743-67f9-e413-d03502748626@amd.com>

Thanks Tom!

Now, I've pushed it again to my github, 
https://github.com/tianocore/edk2/pull/5594 re-ran the tasks but "Review 
required" is still there so I assume re-posting patches won't help 
getting them in as I need more reviews, right?



On 6/6/24 04:54, Tom Lendacky wrote:
> On 6/4/24 21:09, Alexey Kardashevskiy wrote:
>> Write the feature bit into PcdConfidentialComputingGuestAttr
>> and enable DebugVirtualization in PEI, SEC, DXE.
>>
>> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
>> Cc: Erdem Aktas <erdemaktas@google.com>
>> Cc: Gerd Hoffmann <kraxel@redhat.com>
>> Cc: Jiewen Yao <jiewen.yao@intel.com>
>> Cc: Michael Roth <michael.roth@amd.com>
>> Cc: Min Xu <min.m.xu@intel.com>
>> Cc: Tom Lendacky <thomas.lendacky@amd.com>
>> Signed-off-by: Alexey Kardashevskiy <aik@amd.com>
> 
> Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
> 
>> ---
>> Changes:
>> v4:
>> * s/DebugSwap/DebugVirtualization/g
>> * the feature is enabled here for all modes
>> ---
>>   OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLibInternal.c 
>> |  6 +++++-
>>   OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLibInternal.c 
>> |  6 +++++-
>>   OvmfPkg/PlatformPei/AmdSev.c                                       | 
>> 13 ++++++++++---
>>   3 files changed, 20 insertions(+), 5 deletions(-)
>>
>> diff --git 
>> a/OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLibInternal.c 
>> b/OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLibInternal.c
>> index 7d823ad639f4..f381b9255bb7 100644
>> --- a/OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLibInternal.c
>> +++ b/OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLibInternal.c
>> @@ -154,5 +154,9 @@ MemEncryptSevEsDebugVirtualizationIsEnabled (
>>     VOID
>>     )
>>   {
>> -  return FALSE;
>> +  MSR_SEV_STATUS_REGISTER  Msr;
>> +
>> +  Msr.Uint32 = InternalMemEncryptSevStatus ();
>> +
>> +  return Msr.Bits.DebugVirtualization ? TRUE : FALSE;
>>   }
>> diff --git 
>> a/OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLibInternal.c 
>> b/OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLibInternal.c
>> index 33a326ac1571..946bed2ada13 100644
>> --- a/OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLibInternal.c
>> +++ b/OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLibInternal.c
>> @@ -154,7 +154,11 @@ MemEncryptSevEsDebugVirtualizationIsEnabled (
>>     VOID
>>     )
>>   {
>> -  return FALSE;
>> +  MSR_SEV_STATUS_REGISTER  Msr;
>> +
>> +  Msr.Uint32 = InternalMemEncryptSevStatus ();
>> +
>> +  return Msr.Bits.DebugVirtualization ? TRUE : FALSE;
>>   }
>>   /**
>> diff --git a/OvmfPkg/PlatformPei/AmdSev.c b/OvmfPkg/PlatformPei/AmdSev.c
>> index 88ca14507f5e..8562787035db 100644
>> --- a/OvmfPkg/PlatformPei/AmdSev.c
>> +++ b/OvmfPkg/PlatformPei/AmdSev.c
>> @@ -434,6 +434,7 @@ AmdSevInitialize (
>>     )
>>   {
>>     UINT64         EncryptionMask;
>> +  UINT64         CCGuestAttr;
>>     RETURN_STATUS  PcdStatus;
>>     //
>> @@ -517,13 +518,19 @@ AmdSevInitialize (
>>     // technology is active.
>>     //
>>     if (MemEncryptSevSnpIsEnabled ()) {
>> -    PcdStatus = PcdSet64S (PcdConfidentialComputingGuestAttr, 
>> CCAttrAmdSevSnp);
>> +    CCGuestAttr = CCAttrAmdSevSnp;
>>     } else if (MemEncryptSevEsIsEnabled ()) {
>> -    PcdStatus = PcdSet64S (PcdConfidentialComputingGuestAttr, 
>> CCAttrAmdSevEs);
>> +    CCGuestAttr = CCAttrAmdSevEs;
>>     } else {
>> -    PcdStatus = PcdSet64S (PcdConfidentialComputingGuestAttr, 
>> CCAttrAmdSev);
>> +    CCGuestAttr = CCAttrAmdSev;
>>     }
>> +  if (MemEncryptSevEsDebugVirtualizationIsEnabled ()) {
>> +    CCGuestAttr |= CCAttrFeatureAmdSevEsDebugVirtualization;
>> +  }
>> +
>> +  PcdStatus = PcdSet64S (PcdConfidentialComputingGuestAttr, 
>> CCGuestAttr);
>> +
>>     ASSERT_RETURN_ERROR (PcdStatus);
>>   }

-- 
Alexey



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#119555): https://edk2.groups.io/g/devel/message/119555
Mute This Topic: https://groups.io/mt/106496092/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



      reply	other threads:[~2024-06-12  1:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-05  2:09 [edk2-devel] [PATCH ovmf v4 0/5] Enable AMD SEV-ES DebugVirtualization Alexey Kardashevskiy via groups.io
2024-06-05  2:09 ` [edk2-devel] [PATCH ovmf v4 1/5] MdePkg/Register/Amd: Define all bits from MSR_SEV_STATUS_REGISTER Alexey Kardashevskiy via groups.io
2024-06-05 18:33   ` Lendacky, Thomas via groups.io
2024-06-05  2:09 ` [edk2-devel] [PATCH ovmf v4 2/5] MdePkg: Add AMD SEV features to PcdConfidentialComputingGuestAttr Alexey Kardashevskiy via groups.io
2024-06-05  2:09 ` [edk2-devel] [PATCH ovmf v4 3/5] OvmfPkg: Add AMD SEV-ES DebugVirtualization feature support Alexey Kardashevskiy via groups.io
2024-06-05 18:47   ` Lendacky, Thomas via groups.io
2024-06-05  2:09 ` [edk2-devel] [PATCH ovmf v4 4/5] UefiCpuPkg: Add AMD SEV-ES features support Alexey Kardashevskiy via groups.io
2024-06-05 18:51   ` Lendacky, Thomas via groups.io
2024-06-05  2:09 ` [edk2-devel] [PATCH ovmf v4 5/5] OvmfPkf: Enable AMD SEV-ES DebugVirtualization Alexey Kardashevskiy via groups.io
2024-06-05 18:54   ` Lendacky, Thomas via groups.io
2024-06-12  1:24     ` Alexey Kardashevskiy via groups.io [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=33edb454-112a-4dea-9833-4124d149b63d@amd.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox