]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.c
Vlv2TbltDevicePkg: Sync the branch changes to trunk.
[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
378175d2
JY
69 if (PcdGetBool(PcdUse1GPageTable)) {\r
70 AsmCpuid (0x80000000, &RegEax, NULL, NULL, NULL);\r
71 if (RegEax >= 0x80000001) {\r
72 AsmCpuid (0x80000001, NULL, NULL, NULL, &RegEdx);\r
73 if ((RegEdx & BIT26) != 0) {\r
74 Page1GSupport = TRUE;\r
75 }\r
c56b6566
JY
76 }\r
77 }\r
f3b33289 78\r
79 //\r
c56b6566 80 // Get physical address bits supported.\r
f3b33289 81 //\r
f3b33289 82 Hob = GetFirstHob (EFI_HOB_TYPE_CPU);\r
83 if (Hob != NULL) {\r
48557c65 84 PhysicalAddressBits = ((EFI_HOB_CPU *) Hob)->SizeOfMemorySpace;\r
c56b6566
JY
85 } else {\r
86 AsmCpuid (0x80000000, &RegEax, NULL, NULL, NULL);\r
87 if (RegEax >= 0x80000008) {\r
88 AsmCpuid (0x80000008, &RegEax, NULL, NULL, NULL);\r
89 PhysicalAddressBits = (UINT8) RegEax;\r
90 } else {\r
91 PhysicalAddressBits = 36;\r
92 }\r
f3b33289 93 }\r
94\r
4140a663 95 //\r
96 // IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses.\r
97 //\r
98 ASSERT (PhysicalAddressBits <= 52);\r
99 if (PhysicalAddressBits > 48) {\r
100 PhysicalAddressBits = 48;\r
101 }\r
102\r
f3b33289 103 //\r
104 // Calculate the table entries needed.\r
105 //\r
106 if (PhysicalAddressBits <= 39 ) {\r
107 NumberOfPml4EntriesNeeded = 1;\r
c56b6566 108 NumberOfPdpEntriesNeeded = (UINT32)LShiftU64 (1, (PhysicalAddressBits - 30));\r
f3b33289 109 } else {\r
c56b6566 110 NumberOfPml4EntriesNeeded = (UINT32)LShiftU64 (1, (PhysicalAddressBits - 39));\r
f3b33289 111 NumberOfPdpEntriesNeeded = 512;\r
112 }\r
113\r
114 //\r
115 // Pre-allocate big pages to avoid later allocations. \r
116 //\r
c56b6566
JY
117 if (!Page1GSupport) {\r
118 TotalPagesNum = (NumberOfPdpEntriesNeeded + 1) * NumberOfPml4EntriesNeeded + 1;\r
119 } else {\r
120 TotalPagesNum = NumberOfPml4EntriesNeeded + 1;\r
121 }\r
f3b33289 122 BigPageAddress = (UINTN) AllocatePages (TotalPagesNum);\r
123 ASSERT (BigPageAddress != 0);\r
124\r
125 //\r
126 // By architecture only one PageMapLevel4 exists - so lets allocate storage for it.\r
127 //\r
128 PageMap = (VOID *) BigPageAddress;\r
c56b6566 129 BigPageAddress += SIZE_4KB;\r
f3b33289 130\r
131 PageMapLevel4Entry = PageMap;\r
132 PageAddress = 0;\r
133 for (IndexOfPml4Entries = 0; IndexOfPml4Entries < NumberOfPml4EntriesNeeded; IndexOfPml4Entries++, PageMapLevel4Entry++) {\r
134 //\r
135 // Each PML4 entry points to a page of Page Directory Pointer entires.\r
136 // So lets allocate space for them and fill them in in the IndexOfPdpEntries loop.\r
137 //\r
138 PageDirectoryPointerEntry = (VOID *) BigPageAddress;\r
c56b6566 139 BigPageAddress += SIZE_4KB;\r
f3b33289 140\r
141 //\r
142 // Make a PML4 Entry\r
143 //\r
144 PageMapLevel4Entry->Uint64 = (UINT64)(UINTN)PageDirectoryPointerEntry;\r
145 PageMapLevel4Entry->Bits.ReadWrite = 1;\r
146 PageMapLevel4Entry->Bits.Present = 1;\r
147\r
c56b6566 148 if (Page1GSupport) {\r
54d3b84e 149 PageDirectory1GEntry = (VOID *) PageDirectoryPointerEntry;\r
c56b6566
JY
150 \r
151 for (IndexOfPageDirectoryEntries = 0; IndexOfPageDirectoryEntries < 512; IndexOfPageDirectoryEntries++, PageDirectory1GEntry++, PageAddress += SIZE_1GB) {\r
f3b33289 152 //\r
153 // Fill in the Page Directory entries\r
154 //\r
c56b6566
JY
155 PageDirectory1GEntry->Uint64 = (UINT64)PageAddress;\r
156 PageDirectory1GEntry->Bits.ReadWrite = 1;\r
157 PageDirectory1GEntry->Bits.Present = 1;\r
158 PageDirectory1GEntry->Bits.MustBe1 = 1;\r
159 }\r
160 } else {\r
161 for (IndexOfPdpEntries = 0; IndexOfPdpEntries < NumberOfPdpEntriesNeeded; IndexOfPdpEntries++, PageDirectoryPointerEntry++) {\r
162 //\r
163 // Each Directory Pointer entries points to a page of Page Directory entires.\r
164 // So allocate space for them and fill them in in the IndexOfPageDirectoryEntries loop.\r
165 // \r
166 PageDirectoryEntry = (VOID *) BigPageAddress;\r
167 BigPageAddress += SIZE_4KB;\r
168\r
169 //\r
170 // Fill in a Page Directory Pointer Entries\r
171 //\r
172 PageDirectoryPointerEntry->Uint64 = (UINT64)(UINTN)PageDirectoryEntry;\r
173 PageDirectoryPointerEntry->Bits.ReadWrite = 1;\r
174 PageDirectoryPointerEntry->Bits.Present = 1;\r
175\r
176 for (IndexOfPageDirectoryEntries = 0; IndexOfPageDirectoryEntries < 512; IndexOfPageDirectoryEntries++, PageDirectoryEntry++, PageAddress += SIZE_2MB) {\r
177 //\r
178 // Fill in the Page Directory entries\r
179 //\r
180 PageDirectoryEntry->Uint64 = (UINT64)PageAddress;\r
181 PageDirectoryEntry->Bits.ReadWrite = 1;\r
182 PageDirectoryEntry->Bits.Present = 1;\r
183 PageDirectoryEntry->Bits.MustBe1 = 1;\r
184 }\r
185 }\r
f3b33289 186\r
c56b6566
JY
187 for (; IndexOfPdpEntries < 512; IndexOfPdpEntries++, PageDirectoryPointerEntry++) {\r
188 ZeroMem (\r
189 PageDirectoryPointerEntry,\r
190 sizeof(PAGE_MAP_AND_DIRECTORY_POINTER)\r
191 );\r
f3b33289 192 }\r
193 }\r
194 }\r
195\r
196 //\r
197 // For the PML4 entries we are not using fill in a null entry.\r
f3b33289 198 //\r
199 for (; IndexOfPml4Entries < 512; IndexOfPml4Entries++, PageMapLevel4Entry++) {\r
c56b6566
JY
200 ZeroMem (\r
201 PageMapLevel4Entry,\r
202 sizeof (PAGE_MAP_AND_DIRECTORY_POINTER)\r
203 );\r
f3b33289 204 }\r
205\r
206 return (UINTN)PageMap;\r
207}\r
208\r