]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/Non-existing.c
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / X64 / Non-existing.c
CommitLineData
3eb9473e 1/*++\r
2 \r
2c7e5c2f
HT
3Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 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
12\r
13Module Name:\r
14\r
15 Non-existing.c\r
16 \r
17Abstract: \r
18\r
19 Non-existing BaseLib functions on x64\r
20\r
21--*/\r
22\r
c7f33ca4 23#include "BaseLibInternals.h"\r
3eb9473e 24\r
25/**\r
26 Enables the 32-bit paging mode on the CPU.\r
27\r
28 Enables the 32-bit paging mode on the CPU. CR0, CR3, CR4, and the page tables\r
29 must be properly initialized prior to calling this service. This function\r
30 assumes the current execution mode is 32-bit protected mode. This function is\r
31 only available on IA-32. After the 32-bit paging mode is enabled, control is\r
32 transferred to the function specified by EntryPoint using the new stack\r
33 specified by NewStack and passing in the parameters specified by Context1 and\r
34 Context2. Context1 and Context2 are optional and may be NULL. The function\r
35 EntryPoint must never return.\r
36\r
37 There are a number of constraints that must be followed before calling this\r
38 function:\r
39 1) Interrupts must be disabled.\r
40 2) The caller must be in 32-bit protected mode with flat descriptors. This\r
41 means all descriptors must have a base of 0 and a limit of 4GB.\r
42 3) CR0 and CR4 must be compatible with 32-bit protected mode with flat\r
43 descriptors.\r
44 4) CR3 must point to valid page tables that will be used once the transition\r
45 is complete, and those page tables must guarantee that the pages for this\r
46 function and the stack are identity mapped.\r
47\r
48 @param EntryPoint A pointer to function to call with the new stack after\r
49 paging is enabled.\r
50 @param Context1 A pointer to the context to pass into the EntryPoint\r
51 function as the first parameter after paging is enabled.\r
52 @param Context2 A pointer to the context to pass into the EntryPoint\r
53 function as the second parameter after paging is enabled.\r
54 @param NewStack A pointer to the new stack to use for the EntryPoint\r
55 function after paging is enabled.\r
56\r
57**/\r
58VOID\r
59EFIAPI\r
60InternalX86EnablePaging32 (\r
61 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
62 IN VOID *Context1, OPTIONAL\r
63 IN VOID *Context2, OPTIONAL\r
64 IN VOID *NewStack\r
65 )\r
66{\r
67 //\r
68 // This function cannot work on X64 platform\r
69 //\r
70 ASSERT (FALSE);\r
71}\r
72\r
73/**\r
74 Disables the 32-bit paging mode on the CPU.\r
75\r
76 Disables the 32-bit paging mode on the CPU and returns to 32-bit protected\r
77 mode. This function assumes the current execution mode is 32-paged protected\r
78 mode. This function is only available on IA-32. After the 32-bit paging mode\r
79 is disabled, control is transferred to the function specified by EntryPoint\r
80 using the new stack specified by NewStack and passing in the parameters\r
81 specified by Context1 and Context2. Context1 and Context2 are optional and\r
82 may be NULL. The function EntryPoint must never return.\r
83\r
84 There are a number of constraints that must be followed before calling this\r
85 function:\r
86 1) Interrupts must be disabled.\r
87 2) The caller must be in 32-bit paged mode.\r
88 3) CR0, CR3, and CR4 must be compatible with 32-bit paged mode.\r
89 4) CR3 must point to valid page tables that guarantee that the pages for\r
90 this function and the stack are identity mapped.\r
91\r
92 @param EntryPoint A pointer to function to call with the new stack after\r
93 paging is disabled.\r
94 @param Context1 A pointer to the context to pass into the EntryPoint\r
95 function as the first parameter after paging is disabled.\r
96 @param Context2 A pointer to the context to pass into the EntryPoint\r
97 function as the second parameter after paging is\r
98 disabled.\r
99 @param NewStack A pointer to the new stack to use for the EntryPoint\r
100 function after paging is disabled.\r
101\r
102**/\r
103VOID\r
104EFIAPI\r
105InternalX86DisablePaging32 (\r
106 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
107 IN VOID *Context1, OPTIONAL\r
108 IN VOID *Context2, OPTIONAL\r
109 IN VOID *NewStack\r
110 )\r
111{\r
112 //\r
113 // This function cannot work on X64 platform\r
114 //\r
115 ASSERT (FALSE);\r
116}\r