mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/Universal/Acpi/S3Resume2Pei: Add support for PCD PcdPteMemoryEncryptionAddressOrMask
This PCD holds the address mask for page table entries when memory encryption is enabled on AMD processors supporting the Secure Encrypted Virtualization (SEV) feature. The mask is applied when page tables are created (S3Resume.c). CC: Jeff Fan <jeff.fan@intel.com> Cc: Feng Tian <feng.tian@intel.com> Cc: Star Zeng <star.zeng@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Brijesh Singh <brijesh.singh@amd.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leo Duran <leo.duran@amd.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
parent
89a286ce77
commit
787a085b0f
|
@ -5,6 +5,7 @@
|
||||||
control is passed to OS waking up handler.
|
control is passed to OS waking up handler.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
|
Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
||||||
|
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions
|
are licensed and made available under the terms and conditions
|
||||||
|
@ -58,6 +59,8 @@
|
||||||
#define STACK_ALIGN_DOWN(Ptr) \
|
#define STACK_ALIGN_DOWN(Ptr) \
|
||||||
((UINTN)(Ptr) & ~(UINTN)(CPU_STACK_ALIGNMENT - 1))
|
((UINTN)(Ptr) & ~(UINTN)(CPU_STACK_ALIGNMENT - 1))
|
||||||
|
|
||||||
|
#define PAGING_1G_ADDRESS_MASK_64 0x000FFFFFC0000000ull
|
||||||
|
|
||||||
#pragma pack(1)
|
#pragma pack(1)
|
||||||
typedef union {
|
typedef union {
|
||||||
struct {
|
struct {
|
||||||
|
@ -614,6 +617,12 @@ RestoreS3PageTables (
|
||||||
VOID *Hob;
|
VOID *Hob;
|
||||||
BOOLEAN Page1GSupport;
|
BOOLEAN Page1GSupport;
|
||||||
PAGE_TABLE_1G_ENTRY *PageDirectory1GEntry;
|
PAGE_TABLE_1G_ENTRY *PageDirectory1GEntry;
|
||||||
|
UINT64 AddressEncMask;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Make sure AddressEncMask is contained to smallest supported address field
|
||||||
|
//
|
||||||
|
AddressEncMask = PcdGet64 (PcdPteMemoryEncryptionAddressOrMask) & PAGING_1G_ADDRESS_MASK_64;
|
||||||
|
|
||||||
//
|
//
|
||||||
// NOTE: We have to ASSUME the page table generation format, because we do not know whole page table information.
|
// NOTE: We have to ASSUME the page table generation format, because we do not know whole page table information.
|
||||||
|
@ -696,7 +705,7 @@ RestoreS3PageTables (
|
||||||
//
|
//
|
||||||
// Make a PML4 Entry
|
// Make a PML4 Entry
|
||||||
//
|
//
|
||||||
PageMapLevel4Entry->Uint64 = (UINT64)(UINTN)PageDirectoryPointerEntry;
|
PageMapLevel4Entry->Uint64 = (UINT64)(UINTN)PageDirectoryPointerEntry | AddressEncMask;
|
||||||
PageMapLevel4Entry->Bits.ReadWrite = 1;
|
PageMapLevel4Entry->Bits.ReadWrite = 1;
|
||||||
PageMapLevel4Entry->Bits.Present = 1;
|
PageMapLevel4Entry->Bits.Present = 1;
|
||||||
|
|
||||||
|
@ -707,7 +716,7 @@ RestoreS3PageTables (
|
||||||
//
|
//
|
||||||
// Fill in the Page Directory entries
|
// Fill in the Page Directory entries
|
||||||
//
|
//
|
||||||
PageDirectory1GEntry->Uint64 = (UINT64)PageAddress;
|
PageDirectory1GEntry->Uint64 = (UINT64)PageAddress | AddressEncMask;
|
||||||
PageDirectory1GEntry->Bits.ReadWrite = 1;
|
PageDirectory1GEntry->Bits.ReadWrite = 1;
|
||||||
PageDirectory1GEntry->Bits.Present = 1;
|
PageDirectory1GEntry->Bits.Present = 1;
|
||||||
PageDirectory1GEntry->Bits.MustBe1 = 1;
|
PageDirectory1GEntry->Bits.MustBe1 = 1;
|
||||||
|
@ -724,7 +733,7 @@ RestoreS3PageTables (
|
||||||
//
|
//
|
||||||
// Fill in a Page Directory Pointer Entries
|
// Fill in a Page Directory Pointer Entries
|
||||||
//
|
//
|
||||||
PageDirectoryPointerEntry->Uint64 = (UINT64)(UINTN)PageDirectoryEntry;
|
PageDirectoryPointerEntry->Uint64 = (UINT64)(UINTN)PageDirectoryEntry | AddressEncMask;
|
||||||
PageDirectoryPointerEntry->Bits.ReadWrite = 1;
|
PageDirectoryPointerEntry->Bits.ReadWrite = 1;
|
||||||
PageDirectoryPointerEntry->Bits.Present = 1;
|
PageDirectoryPointerEntry->Bits.Present = 1;
|
||||||
|
|
||||||
|
@ -732,7 +741,7 @@ RestoreS3PageTables (
|
||||||
//
|
//
|
||||||
// Fill in the Page Directory entries
|
// Fill in the Page Directory entries
|
||||||
//
|
//
|
||||||
PageDirectoryEntry->Uint64 = (UINT64)PageAddress;
|
PageDirectoryEntry->Uint64 = (UINT64)PageAddress | AddressEncMask;
|
||||||
PageDirectoryEntry->Bits.ReadWrite = 1;
|
PageDirectoryEntry->Bits.ReadWrite = 1;
|
||||||
PageDirectoryEntry->Bits.Present = 1;
|
PageDirectoryEntry->Bits.Present = 1;
|
||||||
PageDirectoryEntry->Bits.MustBe1 = 1;
|
PageDirectoryEntry->Bits.MustBe1 = 1;
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
# control is passed to OS waking up handler.
|
# control is passed to OS waking up handler.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||||
|
# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials are
|
# This program and the accompanying materials are
|
||||||
# licensed and made available under the terms and conditions of the BSD License
|
# licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -91,6 +92,7 @@
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## SOMETIMES_CONSUMES
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## SOMETIMES_CONSUMES
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES
|
||||||
|
|
||||||
[Depex]
|
[Depex]
|
||||||
TRUE
|
TRUE
|
||||||
|
|
Loading…
Reference in New Issue