]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c
Removed CommonHeader.h from MdePkg & MdeModulePkg
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / Ia32 / DxeLoadFunc.c
CommitLineData
95276127 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13\r
14 DxeLoadFunc.c\r
15\r
16Abstract:\r
17\r
18 Ia32-specifc functionality for DxeLoad.\r
19\r
20--*/\r
21\r
95276127 22#include "DxeIpl.h"\r
23#include "VirtualMemory.h"\r
24\r
25//\r
26// Global Descriptor Table (GDT)\r
27//\r
28GLOBAL_REMOVE_IF_UNREFERENCED IA32_GDT gGdtEntries [] = {\r
29/* selector { Global Segment Descriptor } */ \r
30/* 0x00 */ {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, //null descriptor \r
31/* 0x08 */ {{0xffff, 0, 0, 0x2, 1, 0, 1, 0xf, 0, 0, 1, 1, 0}}, //linear data segment descriptor\r
32/* 0x10 */ {{0xffff, 0, 0, 0xf, 1, 0, 1, 0xf, 0, 0, 1, 1, 0}}, //linear code segment descriptor\r
33/* 0x18 */ {{0xffff, 0, 0, 0x3, 1, 0, 1, 0xf, 0, 0, 1, 1, 0}}, //system data segment descriptor\r
34/* 0x20 */ {{0xffff, 0, 0, 0xa, 1, 0, 1, 0xf, 0, 0, 1, 1, 0}}, //system code segment descriptor\r
35/* 0x28 */ {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, //spare segment descriptor\r
36/* 0x30 */ {{0xffff, 0, 0, 0x2, 1, 0, 1, 0xf, 0, 0, 1, 1, 0}}, //system data segment descriptor\r
37/* 0x38 */ {{0xffff, 0, 0, 0xa, 1, 0, 1, 0xf, 0, 1, 0, 1, 0}}, //system code segment descriptor\r
38/* 0x40 */ {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, //spare segment descriptor\r
39};\r
40\r
41//\r
42// IA32 Gdt register\r
43//\r
44GLOBAL_REMOVE_IF_UNREFERENCED CONST IA32_DESCRIPTOR gGdt = {\r
45 sizeof (gGdtEntries) - 1,\r
46 (UINTN) gGdtEntries\r
47 };\r
48\r
49VOID\r
50HandOffToDxeCore (\r
51 IN EFI_PHYSICAL_ADDRESS DxeCoreEntryPoint,\r
52 IN EFI_PEI_HOB_POINTERS HobList,\r
53 IN EFI_PEI_PPI_DESCRIPTOR *EndOfPeiSignal\r
54 )\r
55{\r
56 EFI_STATUS Status;\r
57 EFI_PHYSICAL_ADDRESS BaseOfStack;\r
58 EFI_PHYSICAL_ADDRESS TopOfStack;\r
59 UINTN PageTables;\r
60\r
61 Status = PeiServicesAllocatePages (EfiBootServicesData, EFI_SIZE_TO_PAGES (STACK_SIZE), &BaseOfStack);\r
62 ASSERT_EFI_ERROR (Status);\r
63 \r
64 if (FeaturePcdGet(PcdDxeIplSwitchToLongMode)) {\r
65 //\r
66 // Compute the top of the stack we were allocated, which is used to load X64 dxe core. \r
67 // Pre-allocate a 32 bytes which confroms to x64 calling convention.\r
68 //\r
69 // The first four parameters to a function are passed in rcx, rdx, r8 and r9. \r
70 // Any further parameters are pushed on the stack. Furthermore, space (4 * 8bytes) for the \r
71 // register parameters is reserved on the stack, in case the called function \r
72 // wants to spill them; this is important if the function is variadic. \r
73 //\r
74 TopOfStack = BaseOfStack + EFI_SIZE_TO_PAGES (STACK_SIZE) * EFI_PAGE_SIZE - 32;\r
75\r
76 //\r
77 // X64 Calling Conventions requires that the stack must be aligned to 16 bytes\r
78 //\r
79 TopOfStack = (EFI_PHYSICAL_ADDRESS) (UINTN) ALIGN_POINTER (TopOfStack, 16);\r
80\r
81 //\r
82 // Load the GDT of Go64. Since the GDT of 32-bit Tiano locates in the BS_DATA\r
83 // memory, it may be corrupted when copying FV to high-end memory \r
84 //\r
85 AsmWriteGdtr (&gGdt);\r
86 //\r
87 // Create page table and save PageMapLevel4 to CR3\r
88 //\r
89 PageTables = CreateIdentityMappingPageTables ();\r
90\r
91 //\r
92 // End of PEI phase singal\r
93 //\r
94 Status = PeiServicesInstallPpi (EndOfPeiSignal);\r
95 ASSERT_EFI_ERROR (Status);\r
96 \r
97 AsmWriteCr3 (PageTables);\r
98 //\r
99 // Go to Long Mode. Interrupts will not get turned on until the CPU AP is loaded.\r
100 // Call x64 drivers passing in single argument, a pointer to the HOBs.\r
101 // \r
102 AsmEnablePaging64 (\r
103 SYS_CODE64_SEL,\r
104 DxeCoreEntryPoint,\r
105 (EFI_PHYSICAL_ADDRESS)(UINTN)(HobList.Raw),\r
106 0,\r
107 TopOfStack\r
108 );\r
109 } else {\r
110 //\r
111 // Compute the top of the stack we were allocated. Pre-allocate a UINTN\r
112 // for safety.\r
113 //\r
114 TopOfStack = BaseOfStack + EFI_SIZE_TO_PAGES (STACK_SIZE) * EFI_PAGE_SIZE - CPU_STACK_ALIGNMENT;\r
115 TopOfStack = (EFI_PHYSICAL_ADDRESS) (UINTN) ALIGN_POINTER (TopOfStack, CPU_STACK_ALIGNMENT);\r
116\r
117 //\r
118 // End of PEI phase singal\r
119 //\r
120 Status = PeiServicesInstallPpi (EndOfPeiSignal);\r
121 ASSERT_EFI_ERROR (Status);\r
122\r
123 SwitchStack (\r
124 (SWITCH_STACK_ENTRY_POINT)(UINTN)DxeCoreEntryPoint,\r
125 HobList.Raw,\r
126 NULL,\r
127 (VOID *) (UINTN) TopOfStack\r
128 );\r
129 } \r
130}\r
131\r