]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c
Remove autogen.h from all dxs files, because autogen.h file has been included by...
[mirror_edk2.git] / EdkModulePkg / Core / DxeIplPeim / Ia32 / DxeLoadFunc.c
CommitLineData
878ddf1f 1/*++\r
2\r
eeb1cd5a 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
878ddf1f 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
abb26634 22#include "DxeIpl.h"\r
f40793be 23#include "VirtualMemory.h"\r
24\r
3d109491 25//\r
f40793be 26// Global Descriptor Table (GDT)
27//
28GLOBAL_REMOVE_IF_UNREFERENCED IA32_GDT gGdtEntries [] = {\r
29/* selector { Global Segment Descriptor } */ \r
19ca33cb 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
f40793be 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
878ddf1f 48\r
eeb1cd5a 49VOID\r
657d3918 50HandOffToDxeCore (\r
51 IN EFI_PHYSICAL_ADDRESS DxeCoreEntryPoint,\r
3d109491 52 IN EFI_PEI_HOB_POINTERS HobList,\r
53 IN EFI_PEI_PPI_DESCRIPTOR *EndOfPeiSignal\r
eeb1cd5a 54 )\r
55{\r
657d3918 56 EFI_STATUS Status;\r
57 EFI_PHYSICAL_ADDRESS BaseOfStack;\r
58 EFI_PHYSICAL_ADDRESS TopOfStack;\r
f40793be 59 UINTN PageTables;\r
657d3918 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
f40793be 80\r
657d3918 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
f40793be 85 AsmWriteGdtr (&gGdt);\r
657d3918 86 //\r
f40793be 87 // Create page table and save PageMapLevel4 to CR3\r
657d3918 88 //\r
f40793be 89 PageTables = CreateIdentityMappingPageTables ();\r
3d109491 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
f40793be 97 AsmWriteCr3 (PageTables);\r
98 //\r
657d3918 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
f40793be 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
657d3918 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
3d109491 117 //\r
118 // End of PEI phase singal\r
119 //\r
120 Status = PeiServicesInstallPpi (EndOfPeiSignal);\r
121 ASSERT_EFI_ERROR (Status);\r
122\r
657d3918 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
eeb1cd5a 130}\r
f40793be 131\r