From: "gaoliming via groups.io" <gaoliming=byosoft.com.cn@groups.io>
To: "'Gerd Hoffmann'" <kraxel@redhat.com>, <devel@edk2.groups.io>
Cc: "'Michael Roth'" <michael.roth@amd.com>,
"'Jiewen Yao'" <jiewen.yao@intel.com>,
"'Laszlo Ersek'" <lersek@redhat.com>,
"'Tom Lendacky'" <thomas.lendacky@amd.com>,
"'Paolo Bonzini'" <pbonzini@redhat.com>,
"'Ard Biesheuvel'" <ardb+tianocore@kernel.org>,
"'Min Xu'" <min.m.xu@intel.com>,
"'Erdem Aktas'" <erdemaktas@google.com>,
"'Oliver Steffen'" <osteffen@redhat.com>,
"'Ard Biesheuvel'" <ardb@kernel.org>
Subject: [edk2-devel] 回复: [PATCH v4 2/3] MdeModulePkg/DxeIplPeim: rename variable
Date: Fri, 1 Mar 2024 20:44:22 +0800 [thread overview]
Message-ID: <02d401da6bd6$2fd5e010$8f81a030$@byosoft.com.cn> (raw)
In-Reply-To: <20240222105407.75735-3-kraxel@redhat.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> -----邮件原件-----
> 发件人: Gerd Hoffmann <kraxel@redhat.com>
> 发送时间: 2024年2月22日 18:54
> 收件人: devel@edk2.groups.io
> 抄送: Michael Roth <michael.roth@amd.com>; Jiewen Yao
> <jiewen.yao@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>; Laszlo
> Ersek <lersek@redhat.com>; Tom Lendacky <thomas.lendacky@amd.com>;
> Paolo Bonzini <pbonzini@redhat.com>; Ard Biesheuvel
> <ardb+tianocore@kernel.org>; Gerd Hoffmann <kraxel@redhat.com>; Min Xu
> <min.m.xu@intel.com>; Erdem Aktas <erdemaktas@google.com>; Oliver
> Steffen <osteffen@redhat.com>; Ard Biesheuvel <ardb@kernel.org>
> 主题: [PATCH v4 2/3] MdeModulePkg/DxeIplPeim: rename variable
>
> Rename Page5LevelSupported to Page5LevelEnabled.
>
> The variable is set to true in case 5-paging level is enabled (64-bit
> PEI) or will be enabled (32-bit PEI), it does *not* tell whenever the
> 5-level paging is supported by the CPU.
>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
> Acked-by: Ard Biesheuvel <ardb@kernel.org>
> ---
> .../Core/DxeIplPeim/X64/VirtualMemory.c | 22 +++++++++----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
> b/MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
> index 1d240e95966e..df6196a41cd5 100644
> --- a/MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
> +++ b/MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
> @@ -696,7 +696,7 @@ CreateIdentityMappingPageTables (
> UINTN TotalPagesNum;
> UINTN BigPageAddress;
> VOID *Hob;
> - BOOLEAN
> Page5LevelSupport;
> + BOOLEAN
> Page5LevelEnabled;
> BOOLEAN Page1GSupport;
> PAGE_TABLE_1G_ENTRY
> *PageDirectory1GEntry;
> UINT64 AddressEncMask;
> @@ -744,15 +744,15 @@ CreateIdentityMappingPageTables (
> // If cpu has already run in 64bit long mode PEI, Page table Level in
DXE
> must align with previous level.
> //
> Cr4.UintN = AsmReadCr4 ();
> - Page5LevelSupport = (Cr4.Bits.LA57 != 0);
> - if (Page5LevelSupport) {
> + Page5LevelEnabled = (Cr4.Bits.LA57 != 0);
> + if (Page5LevelEnabled) {
> ASSERT (PcdGetBool (PcdUse5LevelPageTable));
> }
> } else {
> //
> // If cpu runs in 32bit protected mode PEI, Page table Level in DXE
is
> decided by PCD and feature capability.
> //
> - Page5LevelSupport = FALSE;
> + Page5LevelEnabled = FALSE;
> if (PcdGetBool (PcdUse5LevelPageTable)) {
> AsmCpuidEx (
> CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS,
> @@ -763,12 +763,12 @@ CreateIdentityMappingPageTables (
> NULL
> );
> if (EcxFlags.Bits.FiveLevelPage != 0) {
> - Page5LevelSupport = TRUE;
> + Page5LevelEnabled = TRUE;
> }
> }
> }
>
> - DEBUG ((DEBUG_INFO, "AddressBits=%u 5LevelPaging=%u 1GPage=%u\n",
> PhysicalAddressBits, Page5LevelSupport, Page1GSupport));
> + DEBUG ((DEBUG_INFO, "AddressBits=%u 5LevelPaging=%u
> 1GPage=%u\n", PhysicalAddressBits, Page5LevelEnabled, Page1GSupport));
>
> //
> // IA-32e paging translates 48-bit linear addresses to 52-bit physical
> addresses
> @@ -776,7 +776,7 @@ CreateIdentityMappingPageTables (
> // due to either unsupported by HW, or disabled by PCD.
> //
> ASSERT (PhysicalAddressBits <= 52);
> - if (!Page5LevelSupport && (PhysicalAddressBits > 48)) {
> + if (!Page5LevelEnabled && (PhysicalAddressBits > 48)) {
> PhysicalAddressBits = 48;
> }
>
> @@ -811,7 +811,7 @@ CreateIdentityMappingPageTables (
> //
> // Substract the one page occupied by PML5 entries if 5-Level Paging is
> disabled.
> //
> - if (!Page5LevelSupport) {
> + if (!Page5LevelEnabled) {
> TotalPagesNum--;
> }
>
> @@ -831,7 +831,7 @@ CreateIdentityMappingPageTables (
> // By architecture only one PageMapLevel4 exists - so lets allocate
> storage for it.
> //
> PageMap = (VOID *)BigPageAddress;
> - if (Page5LevelSupport) {
> + if (Page5LevelEnabled) {
> //
> // By architecture only one PageMapLevel5 exists - so lets allocate
> storage for it.
> //
> @@ -853,7 +853,7 @@ CreateIdentityMappingPageTables (
> PageMapLevel4Entry = (VOID *)BigPageAddress;
> BigPageAddress += SIZE_4KB;
>
> - if (Page5LevelSupport) {
> + if (Page5LevelEnabled) {
> //
> // Make a PML5 Entry
> //
> @@ -947,7 +947,7 @@ CreateIdentityMappingPageTables (
> ZeroMem (PageMapLevel4Entry, (512 - IndexOfPml4Entries) * sizeof
> (PAGE_MAP_AND_DIRECTORY_POINTER));
> }
>
> - if (Page5LevelSupport) {
> + if (Page5LevelEnabled) {
> Cr4.UintN = AsmReadCr4 ();
> Cr4.Bits.LA57 = 1;
> AsmWriteCr4 (Cr4.UintN);
> --
> 2.43.2
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116244): https://edk2.groups.io/g/devel/message/116244
Mute This Topic: https://groups.io/mt/104662572/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
next prev parent reply other threads:[~2024-03-01 12:44 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-22 10:54 [edk2-devel] [PATCH v4 0/3] OvmfPkg: Add support for 5-level paging Gerd Hoffmann
2024-02-22 10:54 ` [edk2-devel] [PATCH v4 1/3] MdeModulePkg/DxeIplPeim: fix PcdUse5LevelPageTable assert Gerd Hoffmann
2024-03-01 12:44 ` [edk2-devel] 回复: " gaoliming via groups.io
2024-02-22 10:54 ` [edk2-devel] [PATCH v4 2/3] MdeModulePkg/DxeIplPeim: rename variable Gerd Hoffmann
2024-03-01 12:44 ` gaoliming via groups.io [this message]
2024-02-22 10:54 ` [edk2-devel] [PATCH v4 3/3] OvmfPkg/PlatformInitLib: add 5-level paging support Gerd Hoffmann
2024-02-22 11:24 ` [edk2-devel] GuestPhysAddrSize questions (was: Re: [PATCH v4 3/3] OvmfPkg/PlatformInitLib: add 5-level paging) support Gerd Hoffmann
2024-02-22 15:44 ` [edk2-devel] GuestPhysAddrSize questions Lendacky, Thomas via groups.io
2024-02-22 16:13 ` Paolo Bonzini
2024-02-22 17:39 ` Paolo Bonzini
2024-03-04 13:09 ` Gerd Hoffmann
2024-03-04 17:23 ` Lendacky, Thomas via groups.io
2024-03-06 22:45 ` Paolo Bonzini
2024-02-27 12:54 ` [edk2-devel] [PATCH v4 0/3] OvmfPkg: Add support for 5-level paging Laszlo Ersek
2024-02-29 10:16 ` Laszlo Ersek
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='02d401da6bd6$2fd5e010$8f81a030$@byosoft.com.cn' \
--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