public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Laszlo Ersek" <lersek@redhat.com>
To: Tom Lendacky <thomas.lendacky@amd.com>, devel@edk2.groups.io
Cc: Eric Dong <eric.dong@intel.com>, Ray Ni <ray.ni@intel.com>,
	Rahul Kumar <rahul1.kumar@intel.com>,
	Brijesh Singh <brijesh.singh@amd.com>,
	Garrett Kirkendall <garrett.kirkendall@amd.com>
Subject: Re: [PATCH 1/1] UefiCpuPkg/MpInitLib: Reduce reset vector memory pressure
Date: Wed, 23 Sep 2020 10:28:00 +0200	[thread overview]
Message-ID: <53df4691-7cf7-66a8-da95-3f4dbe64545a@redhat.com> (raw)
In-Reply-To: <22eb2625-6ece-6f1d-43b2-4ca6aad54b9c@redhat.com>

On 09/23/20 10:14, Laszlo Ersek wrote:
> On 09/22/20 21:59, Tom Lendacky wrote:
>> From: Tom Lendacky <thomas.lendacky@amd.com>
>>
>> The AP reset vector stack allocation is only required if running as an
>> SEV-ES guest. Since the reset vector allocation is below 1MB in memory,
>> eliminate the requirement for bare-metal systems and non SEV-ES guests
>> to allocate the extra stack area, which can be large if the
>> PcdCpuMaxLogicalProcessorNumber value is large.
>>
>> Cc: Garrett Kirkendall <garrett.kirkendall@amd.com>
>> Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
>> ---
>>  UefiCpuPkg/Library/MpInitLib/MpLib.c | 10 +++++++++-
>>  1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/UefiCpuPkg/Library/MpInitLib/MpLib.c b/UefiCpuPkg/Library/MpInitLib/MpLib.c
>> index 07426274f639..39af2f9fba7d 100644
>> --- a/UefiCpuPkg/Library/MpInitLib/MpLib.c
>> +++ b/UefiCpuPkg/Library/MpInitLib/MpLib.c
>> @@ -1152,7 +1152,15 @@ GetApResetStackSize (
>>    VOID
>>    )
>>  {
>> -  return AP_RESET_STACK_SIZE * PcdGet32(PcdCpuMaxLogicalProcessorNumber);
>> +  //
>> +  // The AP reset stack is only used by SEV-ES guests. Don't add to the
>> +  // allocation if not necessary.
>> +  //
>> +  if (PcdGetBool (PcdSevEsIsEnabled) == TRUE) {
>> +    return AP_RESET_STACK_SIZE * PcdGet32(PcdCpuMaxLogicalProcessorNumber);
>> +  } else {
>> +    return 0;
>> +  }
>>  }
>>
>>  /**
>>
> 
> Looks like this is a fix for commit 7b7508ad784d ("UefiCpuPkg: Allow AP
> booting under SEV-ES", 2020-08-17).
> 
> In retrospect, that commit changed "ApResetVectorSize" -- which is
> passed to GetWakeupBuffer() -- from value [a]
> 
>   RendezvousFunnelSize + sizeof (MP_CPU_EXCHANGE_INFO)
> 
> to value [b]
> 
>   ALIGN_VALUE ((RendezvousFunnelSize +
>                 SwitchToRealSize +
>                 sizeof (MP_CPU_EXCHANGE_INFO)),
>                CPU_STACK_ALIGNMENT) +
>   AP_RESET_STACK_SIZE * PcdGet32(PcdCpuMaxLogicalProcessorNumber)
> 
> The currently proposed patch does not entirely restore
> "ApResetVectorSize" to the value it used to carry before commit
> 7b7508ad784d. Namely, while the patch eliminates the last addend, two
> other changes from commit 7b7508ad784d remain in place:
> 
> - the addition of "SwitchToRealSize",
> - the alignment up to CPU_STACK_ALIGNMENT.
> 
> As far as I understand, "SwitchToRealSize" is never zero
> (AsmGetAddressMap() populates it with a difference of build-time
> constants). I think it's not useful when SEV-ES is inactive.
> 
> Furthermore, the alignment for stack purposes is useless if we won't
> have AP stacks (i.e., again when SEV-ES is inactive).
> 
> (1) Therefore I'd propose:
> 
> - folding GetApResetStackSize() into GetApResetVectorSize(),
> 
> - modifying GetApResetVectorSize() such that it return the original sum
>   [a] if SEV-ES is inactive, and the larger sum [b] if SEV-ES is active.
> 
> Hmmm. OK, maybe "SwitchToRealSize" should remain in place. It's a small
> addition, and it reflects a code portion that is permanent. However, I
> do think the alignment is both useless and confusing. If we won't
> allocate an array of stacks, the alignment really makes no sense.
> 
> 
> (2) A style comment: PcdGetBool()'s return value should not be compared
> with TRUE or FALSE; just use PcdGetBool() as the whole controlling
> expression for the "if".
> 
> 
> (3) Even better... can you modify GetApResetVectorSize() to take
> &CpuMpData rather than &CpuMpData->AddressMap, and then check
> CpuMpData->SevEsIsEnabled?
> 
> Hmmm, wait, that's not really simple, as we call GetApResetVectorSize()
> from MpInitLibInitialize() too, way before we set
> CpuMpData->SevEsIsEnabled from the PCD.
> 
> So I guess we should pass a dedicated BOOLEAN parameter to
> GetApResetVectorSize(), called "SevEsIsEnabled". At the call site in
> MpInitLibInitialize(), we should pass in the PCD's value. At the call
> site in AllocateResetVector(), we should pass in
> CpuMpData->SevEsIsEnabled.
> 
> The reason I'm suggesting (3) is that I don't feel comfortable with
> checking dynamic PCDs outside of entry point functions / initialization
> functions.

(4) The product

  AP_RESET_STACK_SIZE * PcdGet32(PcdCpuMaxLogicalProcessorNumber)

includes the BSP. Is that intentional? Should we rather use:

  AP_RESET_STACK_SIZE * (PcdGet32(PcdCpuMaxLogicalProcessorNumber) - 1)

?

(That would be a separate patch, of course.)

Thanks
Laszlo


  reply	other threads:[~2020-09-23  8:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-22 19:59 [PATCH 1/1] UefiCpuPkg/MpInitLib: Reduce reset vector memory pressure Lendacky, Thomas
2020-09-23  3:08 ` Ni, Ray
2020-09-23  8:14 ` Laszlo Ersek
2020-09-23  8:28   ` Laszlo Ersek [this message]
2020-09-23  8:31   ` Laszlo Ersek
2020-09-23 13:58     ` Lendacky, Thomas
2020-09-23 15:50       ` Lendacky, Thomas

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=53df4691-7cf7-66a8-da95-3f4dbe64545a@redhat.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