]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
Correct 1G page table generation.
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / X64 / VirtualMemory.c
CommitLineData
f3b33289 1/** @file\r
2 x64 Virtual Memory Management Services in the form of an IA-32 driver. \r
3 Used to establish a 1:1 Virtual to Physical Mapping that is required to\r
4 enter Long Mode (x64 64-bit mode).\r
5\r
6 While we make a 1:1 mapping (identity mapping) for all physical pages \r
4140a663 7 we still need to use the MTRR's to ensure that the cachability attributes\r
f3b33289 8 for all memory regions is correct.\r
9\r
10 The basic idea is to use 2MB page table entries where ever possible. If\r
11 more granularity of cachability is required then 4K page tables are used.\r
12\r
13 References:\r
4140a663 14 1) IA-32 Intel(R) Architecture Software Developer's Manual Volume 1:Basic Architecture, Intel\r
15 2) IA-32 Intel(R) Architecture Software Developer's Manual Volume 2:Instruction Set Reference, Intel\r
16 3) IA-32 Intel(R) Architecture Software Developer's Manual Volume 3:System Programmer's Guide, Intel\r
f3b33289 17\r
c56b6566 18Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
cd5ebaa0 19This program and the accompanying materials\r
f3b33289 20are licensed and made available under the terms and conditions of the BSD License\r
21which accompanies this distribution. The full text of the license may be found at\r
22http://opensource.org/licenses/bsd-license.php\r
23\r
24THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
25WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
26\r
27**/ \r
28\r
29#include "DxeIpl.h"\r
30#include "VirtualMemory.h"\r
31\r
f3b33289 32/**\r
33 Allocates and fills in the Page Directory and Page Table Entries to\r
34 establish a 1:1 Virtual to Physical mapping.\r
35\r
36 @param NumberOfProcessorPhysicalAddressBits Number of processor address bits \r
37 to use. Limits the number of page \r
38 table entries to the physical \r
39 address space. \r
40\r
48557c65 41 @return The address of 4 level page map.\r
f3b33289 42\r
43**/\r
44UINTN\r
45CreateIdentityMappingPageTables (\r
46 VOID\r
47 )\r
48{ \r
c56b6566
JY
49 UINT32 RegEax;\r
50 UINT32 RegEdx;\r
f3b33289 51 UINT8 PhysicalAddressBits;\r
52 EFI_PHYSICAL_ADDRESS PageAddress;\r
53 UINTN IndexOfPml4Entries;\r
54 UINTN IndexOfPdpEntries;\r
55 UINTN IndexOfPageDirectoryEntries;\r
4140a663 56 UINT32 NumberOfPml4EntriesNeeded;\r
57 UINT32 NumberOfPdpEntriesNeeded;\r
f3b33289 58 PAGE_MAP_AND_DIRECTORY_POINTER *PageMapLevel4Entry;\r
59 PAGE_MAP_AND_DIRECTORY_POINTER *PageMap;\r
60 PAGE_MAP_AND_DIRECTORY_POINTER *PageDirectoryPointerEntry;\r
61 PAGE_TABLE_ENTRY *PageDirectoryEntry;\r
62 UINTN TotalPagesNum;\r
63 UINTN BigPageAddress;\r
64 VOID *Hob;\r
c56b6566
JY
65 BOOLEAN Page1GSupport;\r
66 PAGE_TABLE_1G_ENTRY *PageDirectory1GEntry;\r
67\r
68 Page1GSupport = FALSE;\r
69 AsmCpuid (0x80000000, &RegEax, NULL, NULL, NULL);\r
70 if (RegEax >= 0x80000001) {\r
71 AsmCpuid (0x80000001, NULL, NULL, NULL, &RegEdx);\r
72 if ((RegEdx & BIT26) != 0) {\r
73 Page1GSupport = TRUE;\r
74 }\r
75 }\r
f3b33289 76\r
77 //\r
c56b6566 78 // Get physical address bits supported.\r
f3b33289 79 //\r
f3b33289 80 Hob = GetFirstHob (EFI_HOB_TYPE_CPU);\r
81 if (Hob != NULL) {\r
48557c65 82 PhysicalAddressBits = ((EFI_HOB_CPU *) Hob)->SizeOfMemorySpace;\r
c56b6566
JY
83 } else {\r
84 AsmCpuid (0x80000000, &RegEax, NULL, NULL, NULL);\r
85 if (RegEax >= 0x80000008) {\r
86 AsmCpuid (0x80000008, &RegEax, NULL, NULL, NULL);\r
87 PhysicalAddressBits = (UINT8) RegEax;\r
88 } else {\r
89 PhysicalAddressBits = 36;\r
90 }\r
f3b33289 91 }\r
92\r
4140a663 93 //\r
94 // IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses.\r
95 //\r
96 ASSERT (PhysicalAddressBits <= 52);\r
97 if (PhysicalAddressBits > 48) {\r
98 PhysicalAddressBits = 48;\r
99 }\r
100\r
f3b33289 101 //\r
102 // Calculate the table entries needed.\r
103 //\r
104 if (PhysicalAddressBits <= 39 ) {\r
105 NumberOfPml4EntriesNeeded = 1;\r
c56b6566 106 NumberOfPdpEntriesNeeded = (UINT32)LShiftU64 (1, (PhysicalAddressBits - 30));\r
f3b33289 107 } else {\r
c56b6566 108 NumberOfPml4EntriesNeeded = (UINT32)LShiftU64 (1, (PhysicalAddressBits - 39));\r
f3b33289 109 NumberOfPdpEntriesNeeded = 512;\r
110 }\r
111\r
112 //\r
113 // Pre-allocate big pages to avoid later allocations. \r
114 //\r
c56b6566
JY
115 if (!Page1GSupport) {\r
116 TotalPagesNum = (NumberOfPdpEntriesNeeded + 1) * NumberOfPml4EntriesNeeded + 1;\r
117 } else {\r
118 TotalPagesNum = NumberOfPml4EntriesNeeded + 1;\r
119 }\r
f3b33289 120 BigPageAddress = (UINTN) AllocatePages (TotalPagesNum);\r
121 ASSERT (BigPageAddress != 0);\r
122\r
123 //\r
124 // By architecture only one PageMapLevel4 exists - so lets allocate storage for it.\r
125 //\r
126 PageMap = (VOID *) BigPageAddress;\r
c56b6566 127 BigPageAddress += SIZE_4KB;\r
f3b33289 128\r
129 PageMapLevel4Entry = PageMap;\r
130 PageAddress = 0;\r
131 for (IndexOfPml4Entries = 0; IndexOfPml4Entries < NumberOfPml4EntriesNeeded; IndexOfPml4Entries++, PageMapLevel4Entry++) {\r
132 //\r
133 // Each PML4 entry points to a page of Page Directory Pointer entires.\r
134 // So lets allocate space for them and fill them in in the IndexOfPdpEntries loop.\r
135 //\r
136 PageDirectoryPointerEntry = (VOID *) BigPageAddress;\r
c56b6566 137 BigPageAddress += SIZE_4KB;\r
f3b33289 138\r
139 //\r
140 // Make a PML4 Entry\r
141 //\r
142 PageMapLevel4Entry->Uint64 = (UINT64)(UINTN)PageDirectoryPointerEntry;\r
143 PageMapLevel4Entry->Bits.ReadWrite = 1;\r
144 PageMapLevel4Entry->Bits.Present = 1;\r
145\r
c56b6566 146 if (Page1GSupport) {\r
54d3b84e 147 PageDirectory1GEntry = (VOID *) PageDirectoryPointerEntry;\r
c56b6566
JY
148 \r
149 for (IndexOfPageDirectoryEntries = 0; IndexOfPageDirectoryEntries < 512; IndexOfPageDirectoryEntries++, PageDirectory1GEntry++, PageAddress += SIZE_1GB) {\r
f3b33289 150 //\r
151 // Fill in the Page Directory entries\r
152 //\r
c56b6566
JY
153 PageDirectory1GEntry->Uint64 = (UINT64)PageAddress;\r
154 PageDirectory1GEntry->Bits.ReadWrite = 1;\r
155 PageDirectory1GEntry->Bits.Present = 1;\r
156 PageDirectory1GEntry->Bits.MustBe1 = 1;\r
157 }\r
158 } else {\r
159 for (IndexOfPdpEntries = 0; IndexOfPdpEntries < NumberOfPdpEntriesNeeded; IndexOfPdpEntries++, PageDirectoryPointerEntry++) {\r
160 //\r
161 // Each Directory Pointer entries points to a page of Page Directory entires.\r
162 // So allocate space for them and fill them in in the IndexOfPageDirectoryEntries loop.\r
163 // \r
164 PageDirectoryEntry = (VOID *) BigPageAddress;\r
165 BigPageAddress += SIZE_4KB;\r
166\r
167 //\r
168 // Fill in a Page Directory Pointer Entries\r
169 //\r
170 PageDirectoryPointerEntry->Uint64 = (UINT64)(UINTN)PageDirectoryEntry;\r
171 PageDirectoryPointerEntry->Bits.ReadWrite = 1;\r
172 PageDirectoryPointerEntry->Bits.Present = 1;\r
173\r
174 for (IndexOfPageDirectoryEntries = 0; IndexOfPageDirectoryEntries < 512; IndexOfPageDirectoryEntries++, PageDirectoryEntry++, PageAddress += SIZE_2MB) {\r
175 //\r
176 // Fill in the Page Directory entries\r
177 //\r
178 PageDirectoryEntry->Uint64 = (UINT64)PageAddress;\r
179 PageDirectoryEntry->Bits.ReadWrite = 1;\r
180 PageDirectoryEntry->Bits.Present = 1;\r
181 PageDirectoryEntry->Bits.MustBe1 = 1;\r
182 }\r
183 }\r
f3b33289 184\r
c56b6566
JY
185 for (; IndexOfPdpEntries < 512; IndexOfPdpEntries++, PageDirectoryPointerEntry++) {\r
186 ZeroMem (\r
187 PageDirectoryPointerEntry,\r
188 sizeof(PAGE_MAP_AND_DIRECTORY_POINTER)\r
189 );\r
f3b33289 190 }\r
191 }\r
192 }\r
193\r
194 //\r
195 // For the PML4 entries we are not using fill in a null entry.\r
f3b33289 196 //\r
197 for (; IndexOfPml4Entries < 512; IndexOfPml4Entries++, PageMapLevel4Entry++) {\r
c56b6566
JY
198 ZeroMem (\r
199 PageMapLevel4Entry,\r
200 sizeof (PAGE_MAP_AND_DIRECTORY_POINTER)\r
201 );\r
f3b33289 202 }\r
203\r
204 return (UINTN)PageMap;\r
205}\r
206\r