]> git.proxmox.com Git - mirror_edk2.git/commitdiff
UefiCpuPkg/CpuDxe: Add memory attribute setting.
authorJiewen Yao <jiewen.yao@intel.com>
Sat, 14 Jan 2017 07:40:20 +0000 (15:40 +0800)
committerJiewen Yao <jiewen.yao@intel.com>
Wed, 22 Feb 2017 06:07:01 +0000 (14:07 +0800)
Add memory attribute setting in CpuArch protocol.
Previous SetMemoryAttributes() API only supports cache attribute setting.

This patch updated SetMemoryAttributes() API to support memory attribute
setting by updating CPU page table.

Cc: Jeff Fan <jeff.fan@intel.com>
Cc: Michael Kinney <michael.d.kinney@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
UefiCpuPkg/CpuDxe/CpuDxe.c
UefiCpuPkg/CpuDxe/CpuDxe.inf
UefiCpuPkg/CpuDxe/CpuPageTable.c [new file with mode: 0644]
UefiCpuPkg/CpuDxe/CpuPageTable.h [new file with mode: 0644]

index f6d0a67dba137ced0b21cc68e2c66c596edecf27..3f3ddad8d928f1786f98fd72219f6159d0192e12 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   CPU DXE Module to produce CPU ARCH Protocol.\r
 \r
-  Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
 \r
 #include "CpuDxe.h"\r
 #include "CpuMp.h"\r
+#include "CpuPageTable.h"\r
+\r
+#define CACHE_ATTRIBUTE_MASK   (EFI_MEMORY_UC | EFI_MEMORY_WC | EFI_MEMORY_WT | EFI_MEMORY_WB | EFI_MEMORY_UCE | EFI_MEMORY_WP)\r
+#define MEMORY_ATTRIBUTE_MASK  (EFI_MEMORY_RP | EFI_MEMORY_XP | EFI_MEMORY_RO)\r
 \r
 //\r
 // Global Variables\r
@@ -368,10 +372,9 @@ CpuSetMemoryAttributes (
   EFI_STATUS                MpStatus;\r
   EFI_MP_SERVICES_PROTOCOL  *MpService;\r
   MTRR_SETTINGS             MtrrSettings;\r
-\r
-  if (!IsMtrrSupported ()) {\r
-    return EFI_UNSUPPORTED;\r
-  }\r
+  UINT64                    CacheAttributes;\r
+  UINT64                    MemoryAttributes;\r
+  MTRR_MEMORY_CACHE_TYPE    CurrentCacheType;\r
 \r
   //\r
   // If this function is called because GCD SetMemorySpaceAttributes () is called\r
@@ -384,69 +387,87 @@ CpuSetMemoryAttributes (
     return EFI_SUCCESS;\r
   }\r
 \r
-  switch (Attributes) {\r
-  case EFI_MEMORY_UC:\r
-    CacheType = CacheUncacheable;\r
-    break;\r
 \r
-  case EFI_MEMORY_WC:\r
-    CacheType = CacheWriteCombining;\r
-    break;\r
+  CacheAttributes = Attributes & CACHE_ATTRIBUTE_MASK;\r
+  MemoryAttributes = Attributes & MEMORY_ATTRIBUTE_MASK;\r
 \r
-  case EFI_MEMORY_WT:\r
-    CacheType = CacheWriteThrough;\r
-    break;\r
+  if (Attributes != (CacheAttributes | MemoryAttributes)) {\r
+    return EFI_INVALID_PARAMETER;\r
+  }\r
 \r
-  case EFI_MEMORY_WP:\r
-    CacheType = CacheWriteProtected;\r
-    break;\r
+  if (CacheAttributes != 0) {\r
+    if (!IsMtrrSupported ()) {\r
+      return EFI_UNSUPPORTED;\r
+    }\r
 \r
-  case EFI_MEMORY_WB:\r
-    CacheType = CacheWriteBack;\r
-    break;\r
+    switch (CacheAttributes) {\r
+    case EFI_MEMORY_UC:\r
+      CacheType = CacheUncacheable;\r
+      break;\r
 \r
-  case EFI_MEMORY_UCE:\r
-  case EFI_MEMORY_RP:\r
-  case EFI_MEMORY_XP:\r
-  case EFI_MEMORY_RUNTIME:\r
-    return EFI_UNSUPPORTED;\r
+    case EFI_MEMORY_WC:\r
+      CacheType = CacheWriteCombining;\r
+      break;\r
 \r
-  default:\r
-    return EFI_INVALID_PARAMETER;\r
-  }\r
-  //\r
-  // call MTRR libary function\r
-  //\r
-  Status = MtrrSetMemoryAttribute (\r
-             BaseAddress,\r
-             Length,\r
-             CacheType\r
-             );\r
+    case EFI_MEMORY_WT:\r
+      CacheType = CacheWriteThrough;\r
+      break;\r
 \r
-  if (!RETURN_ERROR (Status)) {\r
-    MpStatus = gBS->LocateProtocol (\r
-                      &gEfiMpServiceProtocolGuid,\r
-                      NULL,\r
-                      (VOID **)&MpService\r
-                      );\r
-    //\r
-    // Synchronize the update with all APs\r
-    //\r
-    if (!EFI_ERROR (MpStatus)) {\r
-      MtrrGetAllMtrrs (&MtrrSettings);\r
-      MpStatus = MpService->StartupAllAPs (\r
-                              MpService,          // This\r
-                              SetMtrrsFromBuffer, // Procedure\r
-                              FALSE,              // SingleThread\r
-                              NULL,               // WaitEvent\r
-                              0,                  // TimeoutInMicrosecsond\r
-                              &MtrrSettings,      // ProcedureArgument\r
-                              NULL                // FailedCpuList\r
-                              );\r
-      ASSERT (MpStatus == EFI_SUCCESS || MpStatus == EFI_NOT_STARTED);\r
+    case EFI_MEMORY_WP:\r
+      CacheType = CacheWriteProtected;\r
+      break;\r
+\r
+    case EFI_MEMORY_WB:\r
+      CacheType = CacheWriteBack;\r
+      break;\r
+\r
+    default:\r
+      return EFI_INVALID_PARAMETER;\r
+    }\r
+    CurrentCacheType = MtrrGetMemoryAttribute(BaseAddress);\r
+    if (CurrentCacheType != CacheType) {\r
+      //\r
+      // call MTRR libary function\r
+      //\r
+      Status = MtrrSetMemoryAttribute (\r
+                 BaseAddress,\r
+                 Length,\r
+                 CacheType\r
+                 );\r
+\r
+      if (!RETURN_ERROR (Status)) {\r
+        MpStatus = gBS->LocateProtocol (\r
+                          &gEfiMpServiceProtocolGuid,\r
+                          NULL,\r
+                          (VOID **)&MpService\r
+                          );\r
+        //\r
+        // Synchronize the update with all APs\r
+        //\r
+        if (!EFI_ERROR (MpStatus)) {\r
+          MtrrGetAllMtrrs (&MtrrSettings);\r
+          MpStatus = MpService->StartupAllAPs (\r
+                                  MpService,          // This\r
+                                  SetMtrrsFromBuffer, // Procedure\r
+                                  FALSE,              // SingleThread\r
+                                  NULL,               // WaitEvent\r
+                                  0,                  // TimeoutInMicrosecsond\r
+                                  &MtrrSettings,      // ProcedureArgument\r
+                                  NULL                // FailedCpuList\r
+                                  );\r
+          ASSERT (MpStatus == EFI_SUCCESS || MpStatus == EFI_NOT_STARTED);\r
+        }\r
+      }\r
+      if (EFI_ERROR(Status)) {\r
+        return Status;\r
+      }\r
     }\r
   }\r
-  return (EFI_STATUS) Status;\r
+\r
+  //\r
+  // Set memory attribute by page table\r
+  //\r
+  return AssignMemoryPageAttributes (NULL, BaseAddress, Length, MemoryAttributes, AllocatePages);\r
 }\r
 \r
 /**\r
@@ -888,6 +909,8 @@ InitializeCpu (
 {\r
   EFI_STATUS  Status;\r
   EFI_EVENT   IdleLoopEvent;\r
+  \r
+  InitializePageTableLib();\r
 \r
   InitializeFloatingPointUnits ();\r
 \r
index bf389bbbe70b6f0b375e8b24b3a4f10a8ba1802b..f61b2c9d7ff72e8d15d9c904df0c6c4e2b4c7901 100644 (file)
@@ -1,7 +1,7 @@
 ## @file\r
 #  CPU driver installs CPU Architecture Protocol and CPU MP protocol.\r
 #\r
-#  Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>\r
+#  Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR>\r
 #  This program and the accompanying materials\r
 #  are licensed and made available under the terms and conditions of the BSD License\r
 #  which accompanies this distribution.  The full text of the license may be found at\r
@@ -19,7 +19,6 @@
   FILE_GUID                      = 1A1E4886-9517-440e-9FDE-3BE44CEE2136\r
   MODULE_TYPE                    = DXE_DRIVER\r
   VERSION_STRING                 = 1.0\r
-\r
   ENTRY_POINT                    = InitializeCpu\r
 \r
 [Packages]\r
@@ -52,6 +51,8 @@
   CpuGdt.h\r
   CpuMp.c\r
   CpuMp.h\r
+  CpuPageTable.h\r
+  CpuPageTable.c\r
 \r
 [Sources.IA32]\r
   Ia32/CpuAsm.asm\r
diff --git a/UefiCpuPkg/CpuDxe/CpuPageTable.c b/UefiCpuPkg/CpuDxe/CpuPageTable.c
new file mode 100644 (file)
index 0000000..202d1d9
--- /dev/null
@@ -0,0 +1,779 @@
+/** @file\r
+  Page table management support.\r
+\r
+  Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#include <Base.h>\r
+#include <Uefi.h>\r
+#include <Library/BaseLib.h>\r
+#include <Library/CpuLib.h>\r
+#include <Library/BaseMemoryLib.h>\r
+#include <Library/MemoryAllocationLib.h>\r
+#include <Library/DebugLib.h>\r
+#include <Library/UefiBootServicesTableLib.h>\r
+#include <Protocol/MpService.h>\r
+#include "CpuPageTable.h"\r
+\r
+///\r
+/// Page Table Entry\r
+///\r
+#define IA32_PG_P                   BIT0\r
+#define IA32_PG_RW                  BIT1\r
+#define IA32_PG_U                   BIT2\r
+#define IA32_PG_WT                  BIT3\r
+#define IA32_PG_CD                  BIT4\r
+#define IA32_PG_A                   BIT5\r
+#define IA32_PG_D                   BIT6\r
+#define IA32_PG_PS                  BIT7\r
+#define IA32_PG_PAT_2M              BIT12\r
+#define IA32_PG_PAT_4K              IA32_PG_PS\r
+#define IA32_PG_PMNT                BIT62\r
+#define IA32_PG_NX                  BIT63\r
+\r
+#define PAGE_ATTRIBUTE_BITS         (IA32_PG_D | IA32_PG_A | IA32_PG_U | IA32_PG_RW | IA32_PG_P)\r
+//\r
+// Bits 1, 2, 5, 6 are reserved in the IA32 PAE PDPTE\r
+// X64 PAE PDPTE does not have such restriction\r
+//\r
+#define IA32_PAE_PDPTE_ATTRIBUTE_BITS    (IA32_PG_P)\r
+\r
+#define PAGE_PROGATE_BITS           (IA32_PG_NX | PAGE_ATTRIBUTE_BITS)\r
+\r
+#define PAGING_4K_MASK  0xFFF\r
+#define PAGING_2M_MASK  0x1FFFFF\r
+#define PAGING_1G_MASK  0x3FFFFFFF\r
+\r
+#define PAGING_PAE_INDEX_MASK  0x1FF\r
+\r
+#define PAGING_4K_ADDRESS_MASK_64 0x000FFFFFFFFFF000ull\r
+#define PAGING_2M_ADDRESS_MASK_64 0x000FFFFFFFE00000ull\r
+#define PAGING_1G_ADDRESS_MASK_64 0x000FFFFFC0000000ull\r
+\r
+typedef enum {\r
+  PageNone,\r
+  Page4K,\r
+  Page2M,\r
+  Page1G,\r
+} PAGE_ATTRIBUTE;\r
+\r
+typedef struct {\r
+  PAGE_ATTRIBUTE   Attribute;\r
+  UINT64           Length;\r
+  UINT64           AddressMask;\r
+} PAGE_ATTRIBUTE_TABLE;\r
+\r
+typedef enum {\r
+  PageActionAssign,\r
+  PageActionSet,\r
+  PageActionClear,\r
+} PAGE_ACTION;\r
+\r
+PAGE_ATTRIBUTE_TABLE mPageAttributeTable[] = {\r
+  {Page4K,  SIZE_4KB, PAGING_4K_ADDRESS_MASK_64},\r
+  {Page2M,  SIZE_2MB, PAGING_2M_ADDRESS_MASK_64},\r
+  {Page1G,  SIZE_1GB, PAGING_1G_ADDRESS_MASK_64},\r
+};\r
+\r
+/**\r
+  Enable write protection function for AP.\r
+\r
+  @param[in,out] Buffer  The pointer to private data buffer.\r
+**/\r
+VOID\r
+EFIAPI\r
+SyncCpuEnableWriteProtection (\r
+  IN OUT VOID *Buffer\r
+  )\r
+{\r
+  AsmWriteCr0 (AsmReadCr0 () | BIT16);\r
+}\r
+\r
+/**\r
+  CpuFlushTlb function for AP.\r
+\r
+  @param[in,out] Buffer  The pointer to private data buffer.\r
+**/\r
+VOID\r
+EFIAPI\r
+SyncCpuFlushTlb (\r
+  IN OUT VOID *Buffer\r
+  )\r
+{\r
+  CpuFlushTlb();\r
+}\r
+\r
+/**\r
+  Sync memory page attributes for AP.\r
+\r
+  @param[in] Procedure            A pointer to the function to be run on enabled APs of\r
+                                  the system.\r
+**/\r
+VOID\r
+SyncMemoryPageAttributesAp (\r
+  IN EFI_AP_PROCEDURE            Procedure\r
+  )\r
+{\r
+  EFI_STATUS                Status;\r
+  EFI_MP_SERVICES_PROTOCOL  *MpService;\r
+\r
+  Status = gBS->LocateProtocol (\r
+                  &gEfiMpServiceProtocolGuid,\r
+                  NULL,\r
+                  (VOID **)&MpService\r
+                  );\r
+  //\r
+  // Synchronize the update with all APs\r
+  //\r
+  if (!EFI_ERROR (Status)) {\r
+    Status = MpService->StartupAllAPs (\r
+                          MpService,          // This\r
+                          Procedure,          // Procedure\r
+                          FALSE,              // SingleThread\r
+                          NULL,               // WaitEvent\r
+                          0,                  // TimeoutInMicrosecsond\r
+                          NULL,               // ProcedureArgument\r
+                          NULL                // FailedCpuList\r
+                          );\r
+    ASSERT (Status == EFI_SUCCESS || Status == EFI_NOT_STARTED || Status == EFI_NOT_READY);\r
+  }\r
+}\r
+\r
+/**\r
+  Return current paging context.\r
+\r
+  @param[in,out]  PagingContext     The paging context.\r
+**/\r
+VOID\r
+GetCurrentPagingContext (\r
+  IN OUT PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext\r
+  )\r
+{\r
+  UINT32                         RegEax;\r
+  UINT32                         RegEdx;\r
+\r
+  ZeroMem(PagingContext, sizeof(*PagingContext));\r
+  if (sizeof(UINTN) == sizeof(UINT64)) {\r
+    PagingContext->MachineType = IMAGE_FILE_MACHINE_X64;\r
+  } else {\r
+    PagingContext->MachineType = IMAGE_FILE_MACHINE_I386;\r
+  }\r
+  if ((AsmReadCr0 () & BIT31) != 0) {\r
+    PagingContext->ContextData.X64.PageTableBase = (AsmReadCr3 () & PAGING_4K_ADDRESS_MASK_64);\r
+    if ((AsmReadCr0 () & BIT16) == 0) {\r
+      AsmWriteCr0 (AsmReadCr0 () | BIT16);\r
+      SyncMemoryPageAttributesAp (SyncCpuEnableWriteProtection);\r
+    }\r
+  } else {\r
+    PagingContext->ContextData.X64.PageTableBase = 0;\r
+  }\r
+\r
+  if ((AsmReadCr4 () & BIT4) != 0) {\r
+    PagingContext->ContextData.Ia32.Attributes |= PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PSE;\r
+  }\r
+  if ((AsmReadCr4 () & BIT5) != 0) {\r
+    PagingContext->ContextData.Ia32.Attributes |= PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAE;\r
+  }\r
+  if ((AsmReadCr0 () & BIT16) != 0) {\r
+    PagingContext->ContextData.Ia32.Attributes |= PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_WP_ENABLE;\r
+  }\r
+\r
+  AsmCpuid (0x80000000, &RegEax, NULL, NULL, NULL);\r
+  if (RegEax > 0x80000000) {\r
+    AsmCpuid (0x80000001, NULL, NULL, NULL, &RegEdx);\r
+    if ((RegEdx & BIT20) != 0) {\r
+      // XD supported\r
+      if ((AsmReadMsr64 (0x000001A0) & BIT34) == 0) {\r
+        // XD enabled\r
+        if ((AsmReadMsr64 (0xC0000080) & BIT11) != 0) {\r
+          // XD activated\r
+          PagingContext->ContextData.Ia32.Attributes |= PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_XD_ACTIVATED;\r
+        }\r
+      }\r
+    }\r
+    if ((RegEdx & BIT26) != 0) {\r
+      PagingContext->ContextData.Ia32.Attributes |= PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAGE_1G_SUPPORT;\r
+    }\r
+  }\r
+}\r
+\r
+/**\r
+  Return length according to page attributes.\r
+\r
+  @param[in]  PageAttributes   The page attribute of the page entry.\r
+\r
+  @return The length of page entry.\r
+**/\r
+UINTN\r
+PageAttributeToLength (\r
+  IN PAGE_ATTRIBUTE  PageAttribute\r
+  )\r
+{\r
+  UINTN  Index;\r
+  for (Index = 0; Index < sizeof(mPageAttributeTable)/sizeof(mPageAttributeTable[0]); Index++) {\r
+    if (PageAttribute == mPageAttributeTable[Index].Attribute) {\r
+      return (UINTN)mPageAttributeTable[Index].Length;\r
+    }\r
+  }\r
+  return 0;\r
+}\r
+\r
+/**\r
+  Return address mask according to page attributes.\r
+\r
+  @param[in]  PageAttributes   The page attribute of the page entry.\r
+\r
+  @return The address mask of page entry.\r
+**/\r
+UINTN\r
+PageAttributeToMask (\r
+  IN PAGE_ATTRIBUTE  PageAttribute\r
+  )\r
+{\r
+  UINTN  Index;\r
+  for (Index = 0; Index < sizeof(mPageAttributeTable)/sizeof(mPageAttributeTable[0]); Index++) {\r
+    if (PageAttribute == mPageAttributeTable[Index].Attribute) {\r
+      return (UINTN)mPageAttributeTable[Index].AddressMask;\r
+    }\r
+  }\r
+  return 0;\r
+}\r
+\r
+/**\r
+  Return page table entry to match the address.\r
+\r
+  @param[in]  PagingContext     The paging context.\r
+  @param[in]  Address           The address to be checked.\r
+  @param[out] PageAttributes    The page attribute of the page entry.\r
+\r
+  @return The page entry.\r
+**/\r
+VOID *\r
+GetPageTableEntry (\r
+  IN  PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext,\r
+  IN  PHYSICAL_ADDRESS                  Address,\r
+  OUT PAGE_ATTRIBUTE                    *PageAttribute\r
+  )\r
+{\r
+  UINTN                 Index1;\r
+  UINTN                 Index2;\r
+  UINTN                 Index3;\r
+  UINTN                 Index4;\r
+  UINT64                *L1PageTable;\r
+  UINT64                *L2PageTable;\r
+  UINT64                *L3PageTable;\r
+  UINT64                *L4PageTable;\r
+\r
+  ASSERT (PagingContext != NULL);\r
+\r
+  Index4 = ((UINTN)RShiftU64 (Address, 39)) & PAGING_PAE_INDEX_MASK;\r
+  Index3 = ((UINTN)Address >> 30) & PAGING_PAE_INDEX_MASK;\r
+  Index2 = ((UINTN)Address >> 21) & PAGING_PAE_INDEX_MASK;\r
+  Index1 = ((UINTN)Address >> 12) & PAGING_PAE_INDEX_MASK;\r
+\r
+  if (PagingContext->MachineType == IMAGE_FILE_MACHINE_X64) {\r
+    L4PageTable = (UINT64 *)(UINTN)PagingContext->ContextData.X64.PageTableBase;\r
+    if (L4PageTable[Index4] == 0) {\r
+      *PageAttribute = PageNone;\r
+      return NULL;\r
+    }\r
+\r
+    L3PageTable = (UINT64 *)(UINTN)(L4PageTable[Index4] & PAGING_4K_ADDRESS_MASK_64);\r
+  } else {\r
+    ASSERT((PagingContext->ContextData.Ia32.Attributes & PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAE) != 0);\r
+    L3PageTable = (UINT64 *)(UINTN)PagingContext->ContextData.Ia32.PageTableBase;\r
+  }\r
+  if (L3PageTable[Index3] == 0) {\r
+    *PageAttribute = PageNone;\r
+    return NULL;\r
+  }\r
+  if ((L3PageTable[Index3] & IA32_PG_PS) != 0) {\r
+    // 1G\r
+    *PageAttribute = Page1G;\r
+    return &L3PageTable[Index3];\r
+  }\r
+\r
+  L2PageTable = (UINT64 *)(UINTN)(L3PageTable[Index3] & PAGING_4K_ADDRESS_MASK_64);\r
+  if (L2PageTable[Index2] == 0) {\r
+    *PageAttribute = PageNone;\r
+    return NULL;\r
+  }\r
+  if ((L2PageTable[Index2] & IA32_PG_PS) != 0) {\r
+    // 2M\r
+    *PageAttribute = Page2M;\r
+    return &L2PageTable[Index2];\r
+  }\r
+\r
+  // 4k\r
+  L1PageTable = (UINT64 *)(UINTN)(L2PageTable[Index2] & PAGING_4K_ADDRESS_MASK_64);\r
+  if ((L1PageTable[Index1] == 0) && (Address != 0)) {\r
+    *PageAttribute = PageNone;\r
+    return NULL;\r
+  }\r
+  *PageAttribute = Page4K;\r
+  return &L1PageTable[Index1];\r
+}\r
+\r
+/**\r
+  Return memory attributes of page entry.\r
+\r
+  @param[in]  PageEntry        The page entry.\r
+\r
+  @return Memory attributes of page entry.\r
+**/\r
+UINT64\r
+GetAttributesFromPageEntry (\r
+  IN  UINT64                            *PageEntry\r
+  )\r
+{\r
+  UINT64  Attributes;\r
+  Attributes = 0;\r
+  if ((*PageEntry & IA32_PG_P) == 0) {\r
+    Attributes |= EFI_MEMORY_RP;\r
+  }\r
+  if ((*PageEntry & IA32_PG_RW) == 0) {\r
+    Attributes |= EFI_MEMORY_RO;\r
+  }\r
+  if ((*PageEntry & IA32_PG_NX) != 0) {\r
+    Attributes |= EFI_MEMORY_XP;\r
+  }\r
+  return Attributes;\r
+}\r
+\r
+/**\r
+  Modify memory attributes of page entry.\r
+\r
+  @param[in]  PagingContext    The paging context.\r
+  @param[in]  PageEntry        The page entry.\r
+  @param[in]  Attributes       The bit mask of attributes to modify for the memory region.\r
+  @param[in]  PageAction       The page action.\r
+  @param[out] IsModified       TRUE means page table modified. FALSE means page table not modified.\r
+**/\r
+VOID\r
+ConvertPageEntryAttribute (\r
+  IN  PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext,\r
+  IN  UINT64                            *PageEntry,\r
+  IN  UINT64                            Attributes,\r
+  IN  PAGE_ACTION                       PageAction,\r
+  OUT BOOLEAN                           *IsModified\r
+  )\r
+{\r
+  UINT64  CurrentPageEntry;\r
+  UINT64  NewPageEntry;\r
+\r
+  CurrentPageEntry = *PageEntry;\r
+  NewPageEntry = CurrentPageEntry;\r
+  if ((Attributes & EFI_MEMORY_RP) != 0) {\r
+    switch (PageAction) {\r
+    case PageActionAssign:\r
+    case PageActionSet:\r
+      NewPageEntry &= ~(UINT64)IA32_PG_P;\r
+      break;\r
+    case PageActionClear:\r
+      NewPageEntry |= IA32_PG_P;\r
+      break;\r
+    }\r
+  } else {\r
+    switch (PageAction) {\r
+    case PageActionAssign:\r
+      NewPageEntry |= IA32_PG_P;\r
+      break;\r
+    case PageActionSet:\r
+    case PageActionClear:\r
+      break;\r
+    }\r
+  }\r
+  if ((Attributes & EFI_MEMORY_RO) != 0) {\r
+    switch (PageAction) {\r
+    case PageActionAssign:\r
+    case PageActionSet:\r
+      NewPageEntry &= ~(UINT64)IA32_PG_RW;\r
+      break;\r
+    case PageActionClear:\r
+      NewPageEntry |= IA32_PG_RW;\r
+      break;\r
+    }\r
+  } else {\r
+    switch (PageAction) {\r
+    case PageActionAssign:\r
+      NewPageEntry |= IA32_PG_RW;\r
+      break;\r
+    case PageActionSet:\r
+    case PageActionClear:\r
+      break;\r
+    }\r
+  }\r
+  if ((PagingContext->ContextData.Ia32.Attributes & PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_XD_ACTIVATED) != 0) {\r
+    if ((Attributes & EFI_MEMORY_XP) != 0) {\r
+      switch (PageAction) {\r
+      case PageActionAssign:\r
+      case PageActionSet:\r
+        NewPageEntry |= IA32_PG_NX;\r
+        break;\r
+      case PageActionClear:\r
+        NewPageEntry &= ~IA32_PG_NX;\r
+        break;\r
+      }\r
+    } else {\r
+      switch (PageAction) {\r
+      case PageActionAssign:\r
+        NewPageEntry &= ~IA32_PG_NX;\r
+        break;\r
+      case PageActionSet:\r
+      case PageActionClear:\r
+        break;\r
+      }\r
+    }\r
+  }\r
+  *PageEntry = NewPageEntry;\r
+  if (CurrentPageEntry != NewPageEntry) {\r
+    *IsModified = TRUE;\r
+    DEBUG ((DEBUG_INFO, "ConvertPageEntryAttribute 0x%lx", CurrentPageEntry));\r
+    DEBUG ((DEBUG_INFO, "->0x%lx\n", NewPageEntry));\r
+  } else {\r
+    *IsModified = FALSE;\r
+  }\r
+}\r
+\r
+/**\r
+  This function returns if there is need to split page entry.\r
+\r
+  @param[in]  BaseAddress      The base address to be checked.\r
+  @param[in]  Length           The length to be checked.\r
+  @param[in]  PageEntry        The page entry to be checked.\r
+  @param[in]  PageAttribute    The page attribute of the page entry.\r
+\r
+  @retval SplitAttributes on if there is need to split page entry.\r
+**/\r
+PAGE_ATTRIBUTE\r
+NeedSplitPage (\r
+  IN  PHYSICAL_ADDRESS                  BaseAddress,\r
+  IN  UINT64                            Length,\r
+  IN  UINT64                            *PageEntry,\r
+  IN  PAGE_ATTRIBUTE                    PageAttribute\r
+  )\r
+{\r
+  UINT64                PageEntryLength;\r
+\r
+  PageEntryLength = PageAttributeToLength (PageAttribute);\r
+\r
+  if (((BaseAddress & (PageEntryLength - 1)) == 0) && (Length >= PageEntryLength)) {\r
+    return PageNone;\r
+  }\r
+\r
+  if (((BaseAddress & PAGING_2M_MASK) != 0) || (Length < SIZE_2MB)) {\r
+    return Page4K;\r
+  }\r
+\r
+  return Page2M;\r
+}\r
+\r
+/**\r
+  This function splits one page entry to small page entries.\r
+\r
+  @param[in]  PageEntry         The page entry to be splitted.\r
+  @param[in]  PageAttribute     The page attribute of the page entry.\r
+  @param[in]  SplitAttribute    How to split the page entry.\r
+  @param[in]  AllocatePagesFunc If page split is needed, this function is used to allocate more pages.\r
+\r
+  @retval RETURN_SUCCESS            The page entry is splitted.\r
+  @retval RETURN_UNSUPPORTED        The page entry does not support to be splitted.\r
+  @retval RETURN_OUT_OF_RESOURCES   No resource to split page entry.\r
+**/\r
+RETURN_STATUS\r
+SplitPage (\r
+  IN  UINT64                            *PageEntry,\r
+  IN  PAGE_ATTRIBUTE                    PageAttribute,\r
+  IN  PAGE_ATTRIBUTE                    SplitAttribute,\r
+  IN  PAGE_TABLE_LIB_ALLOCATE_PAGES     AllocatePagesFunc\r
+  )\r
+{\r
+  UINT64   BaseAddress;\r
+  UINT64   *NewPageEntry;\r
+  UINTN    Index;\r
+\r
+  ASSERT (PageAttribute == Page2M || PageAttribute == Page1G);\r
+\r
+  ASSERT (AllocatePagesFunc != NULL);\r
+\r
+  if (PageAttribute == Page2M) {\r
+    //\r
+    // Split 2M to 4K\r
+    //\r
+    ASSERT (SplitAttribute == Page4K);\r
+    if (SplitAttribute == Page4K) {\r
+      NewPageEntry = AllocatePagesFunc (1);\r
+      DEBUG ((DEBUG_INFO, "Split - 0x%x\n", NewPageEntry));\r
+      if (NewPageEntry == NULL) {\r
+        return RETURN_OUT_OF_RESOURCES;\r
+      }\r
+      BaseAddress = *PageEntry & PAGING_2M_ADDRESS_MASK_64;\r
+      for (Index = 0; Index < SIZE_4KB / sizeof(UINT64); Index++) {\r
+        NewPageEntry[Index] = BaseAddress + SIZE_4KB * Index + ((*PageEntry) & PAGE_PROGATE_BITS);\r
+      }\r
+      (*PageEntry) = (UINT64)(UINTN)NewPageEntry + ((*PageEntry) & PAGE_PROGATE_BITS);\r
+      return RETURN_SUCCESS;\r
+    } else {\r
+      return RETURN_UNSUPPORTED;\r
+    }\r
+  } else if (PageAttribute == Page1G) {\r
+    //\r
+    // Split 1G to 2M\r
+    // No need support 1G->4K directly, we should use 1G->2M, then 2M->4K to get more compact page table.\r
+    //\r
+    ASSERT (SplitAttribute == Page2M || SplitAttribute == Page4K);\r
+    if ((SplitAttribute == Page2M || SplitAttribute == Page4K)) {\r
+      NewPageEntry = AllocatePagesFunc (1);\r
+      DEBUG ((DEBUG_INFO, "Split - 0x%x\n", NewPageEntry));\r
+      if (NewPageEntry == NULL) {\r
+        return RETURN_OUT_OF_RESOURCES;\r
+      }\r
+      BaseAddress = *PageEntry & PAGING_1G_ADDRESS_MASK_64;\r
+      for (Index = 0; Index < SIZE_4KB / sizeof(UINT64); Index++) {\r
+        NewPageEntry[Index] = BaseAddress + SIZE_2MB * Index + IA32_PG_PS + ((*PageEntry) & PAGE_PROGATE_BITS);\r
+      }\r
+      (*PageEntry) = (UINT64)(UINTN)NewPageEntry + ((*PageEntry) & PAGE_PROGATE_BITS);\r
+      return RETURN_SUCCESS;\r
+    } else {\r
+      return RETURN_UNSUPPORTED;\r
+    }\r
+  } else {\r
+    return RETURN_UNSUPPORTED;\r
+  }\r
+}\r
+\r
+/**\r
+  This function modifies the page attributes for the memory region specified by BaseAddress and\r
+  Length from their current attributes to the attributes specified by Attributes.\r
+\r
+  Caller should make sure BaseAddress and Length is at page boundary.\r
+\r
+  @param[in]  PagingContext     The paging context. NULL means get page table from current CPU context.\r
+  @param[in]  BaseAddress       The physical address that is the start address of a memory region.\r
+  @param[in]  Length            The size in bytes of the memory region.\r
+  @param[in]  Attributes        The bit mask of attributes to modify for the memory region.\r
+  @param[in]  PageAction        The page action.\r
+  @param[in]  AllocatePagesFunc If page split is needed, this function is used to allocate more pages.\r
+                                NULL mean page split is unsupported.\r
+  @param[out] IsSplitted        TRUE means page table splitted. FALSE means page table not splitted.\r
+  @param[out] IsModified        TRUE means page table modified. FALSE means page table not modified.\r
+\r
+  @retval RETURN_SUCCESS           The attributes were modified for the memory region.\r
+  @retval RETURN_ACCESS_DENIED     The attributes for the memory resource range specified by\r
+                                   BaseAddress and Length cannot be modified.\r
+  @retval RETURN_INVALID_PARAMETER Length is zero.\r
+                                   Attributes specified an illegal combination of attributes that\r
+                                   cannot be set together.\r
+  @retval RETURN_OUT_OF_RESOURCES  There are not enough system resources to modify the attributes of\r
+                                   the memory resource range.\r
+  @retval RETURN_UNSUPPORTED       The processor does not support one or more bytes of the memory\r
+                                   resource range specified by BaseAddress and Length.\r
+                                   The bit mask of attributes is not support for the memory resource\r
+                                   range specified by BaseAddress and Length.\r
+**/\r
+RETURN_STATUS\r
+ConvertMemoryPageAttributes (\r
+  IN  PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext OPTIONAL,\r
+  IN  PHYSICAL_ADDRESS                  BaseAddress,\r
+  IN  UINT64                            Length,\r
+  IN  UINT64                            Attributes,\r
+  IN  PAGE_ACTION                       PageAction,\r
+  IN  PAGE_TABLE_LIB_ALLOCATE_PAGES     AllocatePagesFunc OPTIONAL,\r
+  OUT BOOLEAN                           *IsSplitted,  OPTIONAL\r
+  OUT BOOLEAN                           *IsModified   OPTIONAL\r
+  )\r
+{\r
+  PAGE_TABLE_LIB_PAGING_CONTEXT     CurrentPagingContext;\r
+  UINT64                            *PageEntry;\r
+  PAGE_ATTRIBUTE                    PageAttribute;\r
+  UINTN                             PageEntryLength;\r
+  PAGE_ATTRIBUTE                    SplitAttribute;\r
+  RETURN_STATUS                     Status;\r
+  BOOLEAN                           IsEntryModified;\r
+\r
+  if ((BaseAddress & (SIZE_4KB - 1)) != 0) {\r
+    DEBUG ((DEBUG_ERROR, "BaseAddress(0x%lx) is not aligned!\n", BaseAddress));\r
+    return EFI_UNSUPPORTED;\r
+  }\r
+  if ((Length & (SIZE_4KB - 1)) != 0) {\r
+    DEBUG ((DEBUG_ERROR, "Length(0x%lx) is not aligned!\n", Length));\r
+    return EFI_UNSUPPORTED;\r
+  }\r
+  if (Length == 0) {\r
+    DEBUG ((DEBUG_ERROR, "Length is 0!\n"));\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  if ((Attributes & ~(EFI_MEMORY_RP | EFI_MEMORY_RO | EFI_MEMORY_XP)) != 0) {\r
+    DEBUG ((DEBUG_ERROR, "Attributes(0x%lx) has unsupported bit\n", Attributes));\r
+    return EFI_UNSUPPORTED;\r
+  }\r
+\r
+  if (PagingContext == NULL) {\r
+    GetCurrentPagingContext (&CurrentPagingContext);\r
+  } else {\r
+    CopyMem (&CurrentPagingContext, PagingContext, sizeof(CurrentPagingContext));\r
+  }\r
+  switch(CurrentPagingContext.MachineType) {\r
+  case IMAGE_FILE_MACHINE_I386:\r
+    if (CurrentPagingContext.ContextData.Ia32.PageTableBase == 0) {\r
+      DEBUG ((DEBUG_ERROR, "PageTable is 0!\n"));\r
+      if (Attributes == 0) {\r
+        return EFI_SUCCESS;\r
+      } else {\r
+        return EFI_UNSUPPORTED;\r
+      }\r
+    }\r
+    if ((CurrentPagingContext.ContextData.Ia32.Attributes & PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAE) == 0) {\r
+      DEBUG ((DEBUG_ERROR, "Non-PAE Paging!\n"));\r
+      return EFI_UNSUPPORTED;\r
+    }\r
+    break;\r
+  case IMAGE_FILE_MACHINE_X64:\r
+    ASSERT (CurrentPagingContext.ContextData.X64.PageTableBase != 0);\r
+    break;\r
+  default:\r
+    ASSERT(FALSE);\r
+    return EFI_UNSUPPORTED;\r
+    break;\r
+  }\r
+\r
+//  DEBUG ((DEBUG_ERROR, "ConvertMemoryPageAttributes(%x) - %016lx, %016lx, %02lx\n", IsSet, BaseAddress, Length, Attributes));\r
+\r
+  if (IsSplitted != NULL) {\r
+    *IsSplitted = FALSE;\r
+  }\r
+  if (IsModified != NULL) {\r
+    *IsModified = FALSE;\r
+  }\r
+\r
+  //\r
+  // Below logic is to check 2M/4K page to make sure we donot waist memory.\r
+  //\r
+  while (Length != 0) {\r
+    PageEntry = GetPageTableEntry (&CurrentPagingContext, BaseAddress, &PageAttribute);\r
+    if (PageEntry == NULL) {\r
+      return RETURN_UNSUPPORTED;\r
+    }\r
+    PageEntryLength = PageAttributeToLength (PageAttribute);\r
+    SplitAttribute = NeedSplitPage (BaseAddress, Length, PageEntry, PageAttribute);\r
+    if (SplitAttribute == PageNone) {\r
+      ConvertPageEntryAttribute (&CurrentPagingContext, PageEntry, Attributes, PageAction, &IsEntryModified);\r
+      if (IsEntryModified) {\r
+        if (IsModified != NULL) {\r
+          *IsModified = TRUE;\r
+        }\r
+      }\r
+      //\r
+      // Convert success, move to next\r
+      //\r
+      BaseAddress += PageEntryLength;\r
+      Length -= PageEntryLength;\r
+    } else {\r
+      if (AllocatePagesFunc == NULL) {\r
+        return RETURN_UNSUPPORTED;\r
+      }\r
+      Status = SplitPage (PageEntry, PageAttribute, SplitAttribute, AllocatePagesFunc);\r
+      if (RETURN_ERROR (Status)) {\r
+        return RETURN_UNSUPPORTED;\r
+      }\r
+      if (IsSplitted != NULL) {\r
+        *IsSplitted = TRUE;\r
+      }\r
+      if (IsModified != NULL) {\r
+        *IsModified = TRUE;\r
+      }\r
+      //\r
+      // Just split current page\r
+      // Convert success in next around\r
+      //\r
+    }\r
+  }\r
+\r
+  return RETURN_SUCCESS;\r
+}\r
+\r
+/**\r
+  This function assigns the page attributes for the memory region specified by BaseAddress and\r
+  Length from their current attributes to the attributes specified by Attributes.\r
+\r
+  Caller should make sure BaseAddress and Length is at page boundary.\r
+\r
+  Caller need guarentee the TPL <= TPL_NOTIFY, if there is split page request.\r
+\r
+  @param[in]  PagingContext     The paging context. NULL means get page table from current CPU context.\r
+  @param[in]  BaseAddress       The physical address that is the start address of a memory region.\r
+  @param[in]  Length            The size in bytes of the memory region.\r
+  @param[in]  Attributes        The bit mask of attributes to set for the memory region.\r
+  @param[in]  AllocatePagesFunc If page split is needed, this function is used to allocate more pages.\r
+                                NULL mean page split is unsupported.\r
+\r
+  @retval RETURN_SUCCESS           The attributes were cleared for the memory region.\r
+  @retval RETURN_ACCESS_DENIED     The attributes for the memory resource range specified by\r
+                                   BaseAddress and Length cannot be modified.\r
+  @retval RETURN_INVALID_PARAMETER Length is zero.\r
+                                   Attributes specified an illegal combination of attributes that\r
+                                   cannot be set together.\r
+  @retval RETURN_OUT_OF_RESOURCES  There are not enough system resources to modify the attributes of\r
+                                   the memory resource range.\r
+  @retval RETURN_UNSUPPORTED       The processor does not support one or more bytes of the memory\r
+                                   resource range specified by BaseAddress and Length.\r
+                                   The bit mask of attributes is not support for the memory resource\r
+                                   range specified by BaseAddress and Length.\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+AssignMemoryPageAttributes (\r
+  IN  PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext OPTIONAL,\r
+  IN  PHYSICAL_ADDRESS                  BaseAddress,\r
+  IN  UINT64                            Length,\r
+  IN  UINT64                            Attributes,\r
+  IN  PAGE_TABLE_LIB_ALLOCATE_PAGES     AllocatePagesFunc OPTIONAL\r
+  )\r
+{\r
+  RETURN_STATUS  Status;\r
+  BOOLEAN        IsModified;\r
+  BOOLEAN        IsSplitted;\r
+\r
+//  DEBUG((DEBUG_INFO, "AssignMemoryPageAttributes: 0x%lx - 0x%lx (0x%lx)\n", BaseAddress, Length, Attributes));\r
+  Status = ConvertMemoryPageAttributes (PagingContext, BaseAddress, Length, Attributes, PageActionAssign, AllocatePagesFunc, &IsSplitted, &IsModified);\r
+  if (!EFI_ERROR(Status)) {\r
+    if ((PagingContext == NULL) && IsModified) {\r
+      //\r
+      // Flush TLB as last step\r
+      //\r
+      CpuFlushTlb();\r
+      SyncMemoryPageAttributesAp (SyncCpuFlushTlb);\r
+    }\r
+  }\r
+\r
+  return Status;\r
+}\r
+\r
+/**\r
+  Initialize the Page Table lib.\r
+**/\r
+VOID\r
+InitializePageTableLib (\r
+  VOID\r
+  )\r
+{\r
+  PAGE_TABLE_LIB_PAGING_CONTEXT     CurrentPagingContext;\r
+\r
+  GetCurrentPagingContext (&CurrentPagingContext);\r
+  DEBUG ((DEBUG_INFO, "CurrentPagingContext:\n", CurrentPagingContext.MachineType));\r
+  DEBUG ((DEBUG_INFO, "  MachineType   - 0x%x\n", CurrentPagingContext.MachineType));\r
+  DEBUG ((DEBUG_INFO, "  PageTableBase - 0x%x\n", CurrentPagingContext.ContextData.X64.PageTableBase));\r
+  DEBUG ((DEBUG_INFO, "  Attributes    - 0x%x\n", CurrentPagingContext.ContextData.X64.Attributes));\r
+\r
+  return ;\r
+}\r
+\r
diff --git a/UefiCpuPkg/CpuDxe/CpuPageTable.h b/UefiCpuPkg/CpuDxe/CpuPageTable.h
new file mode 100644 (file)
index 0000000..eaff595
--- /dev/null
@@ -0,0 +1,113 @@
+/** @file\r
+  Page table management header file.\r
+\r
+  Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#ifndef _PAGE_TABLE_LIB_H_\r
+#define _PAGE_TABLE_LIB_H_\r
+\r
+#include <IndustryStandard/PeImage.h>\r
+\r
+#define PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PSE              BIT0\r
+#define PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAE              BIT1\r
+#define PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_PAGE_1G_SUPPORT  BIT2\r
+#define PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_WP_ENABLE        BIT30\r
+#define PAGE_TABLE_LIB_PAGING_CONTEXT_IA32_X64_ATTRIBUTES_XD_ACTIVATED     BIT31\r
+// Other bits are reserved for future use\r
+typedef struct {\r
+  UINT32  PageTableBase;\r
+  UINT32  Reserved;\r
+  UINT32  Attributes;\r
+} PAGE_TABLE_LIB_PAGING_CONTEXT_IA32;\r
+\r
+typedef struct {\r
+  UINT64  PageTableBase;\r
+  UINT32  Attributes;\r
+} PAGE_TABLE_LIB_PAGING_CONTEXT_X64;\r
+\r
+typedef union {\r
+  PAGE_TABLE_LIB_PAGING_CONTEXT_IA32  Ia32;\r
+  PAGE_TABLE_LIB_PAGING_CONTEXT_X64   X64;\r
+} PAGE_TABLE_LIB_PAGING_CONTEXT_DATA;\r
+\r
+typedef struct {\r
+  //\r
+  // PE32+ Machine type for EFI images\r
+  //\r
+  // #define IMAGE_FILE_MACHINE_I386            0x014c\r
+  // #define IMAGE_FILE_MACHINE_X64             0x8664\r
+  //\r
+  UINT16                                 MachineType;\r
+  PAGE_TABLE_LIB_PAGING_CONTEXT_DATA     ContextData;\r
+} PAGE_TABLE_LIB_PAGING_CONTEXT;\r
+\r
+/**\r
+  Allocates one or more 4KB pages for page table.\r
+\r
+  @param  Pages                 The number of 4 KB pages to allocate.\r
+\r
+  @return A pointer to the allocated buffer or NULL if allocation fails.\r
+\r
+**/\r
+typedef\r
+VOID *\r
+(EFIAPI *PAGE_TABLE_LIB_ALLOCATE_PAGES) (\r
+  IN UINTN  Pages\r
+  );\r
+\r
+/**\r
+  This function assigns the page attributes for the memory region specified by BaseAddress and\r
+  Length from their current attributes to the attributes specified by Attributes.\r
+\r
+  Caller should make sure BaseAddress and Length is at page boundary.\r
+\r
+  Caller need guarentee the TPL <= TPL_NOTIFY, if there is split page request.\r
+\r
+  @param  PagingContext     The paging context. NULL means get page table from current CPU context.\r
+  @param  BaseAddress       The physical address that is the start address of a memory region.\r
+  @param  Length            The size in bytes of the memory region.\r
+  @param  Attributes        The bit mask of attributes to set for the memory region.\r
+  @param  AllocatePagesFunc If page split is needed, this function is used to allocate more pages.\r
+                            NULL mean page split is unsupported.\r
+\r
+  @retval RETURN_SUCCESS           The attributes were cleared for the memory region.\r
+  @retval RETURN_ACCESS_DENIED     The attributes for the memory resource range specified by\r
+                                   BaseAddress and Length cannot be modified.\r
+  @retval RETURN_INVALID_PARAMETER Length is zero.\r
+                                   Attributes specified an illegal combination of attributes that\r
+                                   cannot be set together.\r
+  @retval RETURN_OUT_OF_RESOURCES  There are not enough system resources to modify the attributes of\r
+                                   the memory resource range.\r
+  @retval RETURN_UNSUPPORTED       The processor does not support one or more bytes of the memory\r
+                                   resource range specified by BaseAddress and Length.\r
+                                   The bit mask of attributes is not support for the memory resource\r
+                                   range specified by BaseAddress and Length.\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+AssignMemoryPageAttributes (\r
+  IN  PAGE_TABLE_LIB_PAGING_CONTEXT     *PagingContext OPTIONAL,\r
+  IN  PHYSICAL_ADDRESS                  BaseAddress,\r
+  IN  UINT64                            Length,\r
+  IN  UINT64                            Attributes,\r
+  IN  PAGE_TABLE_LIB_ALLOCATE_PAGES     AllocatePagesFunc OPTIONAL\r
+  );\r
+\r
+/**\r
+  Initialize the Page Table lib.\r
+**/\r
+VOID\r
+InitializePageTableLib (\r
+  VOID\r
+  );\r
+\r
+#endif\r