]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/EnablePaging32.c
remove unnecessary comments introduced by tools from MdePkg. The regular express...
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / EnablePaging32.c
1 /** @file
2 AsmEnablePaging32 function
3
4 Copyright (c) 2006 - 2007, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15
16 #include <BaseLibInternals.h>
17
18 #if _MSC_EXTENSIONS
19
20 /**
21 Enables the 32-bit paging mode on the CPU.
22
23 Enables the 32-bit paging mode on the CPU. CR0, CR3, CR4, and the page tables
24 must be properly initialized prior to calling this service. This function
25 assumes the current execution mode is 32-bit protected mode. This function is
26 only available on IA-32. After the 32-bit paging mode is enabled, control is
27 transferred to the function specified by EntryPoint using the new stack
28 specified by NewStack and passing in the parameters specified by Context1 and
29 Context2. Context1 and Context2 are optional and may be NULL. The function
30 EntryPoint must never return.
31
32 There are a number of constraints that must be followed before calling this
33 function:
34 1) Interrupts must be disabled.
35 2) The caller must be in 32-bit protected mode with flat descriptors. This
36 means all descriptors must have a base of 0 and a limit of 4GB.
37 3) CR0 and CR4 must be compatible with 32-bit protected mode with flat
38 descriptors.
39 4) CR3 must point to valid page tables that will be used once the transition
40 is complete, and those page tables must guarantee that the pages for this
41 function and the stack are identity mapped.
42
43 @param EntryPoint A pointer to function to call with the new stack after
44 paging is enabled.
45 @param Context1 A pointer to the context to pass into the EntryPoint
46 function as the first parameter after paging is enabled.
47 @param Context2 A pointer to the context to pass into the EntryPoint
48 function as the second parameter after paging is enabled.
49 @param NewStack A pointer to the new stack to use for the EntryPoint
50 function after paging is enabled.
51
52 **/
53 __declspec (naked)
54 VOID
55 EFIAPI
56 InternalX86EnablePaging32 (
57 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
58 IN VOID *Context1, OPTIONAL
59 IN VOID *Context2, OPTIONAL
60 IN VOID *NewStack
61 )
62 {
63 _asm {
64 push ebp
65 mov ebp, esp
66 mov ebx, EntryPoint
67 mov ecx, Context1
68 mov edx, Context2
69 pushfd
70 pop edi
71 cli
72 mov eax, cr0
73 bts eax, 31
74 mov esp, NewStack
75 mov cr0, eax
76 push edi
77 popfd
78 push edx
79 push ecx
80 call ebx
81 jmp $
82 }
83 }
84
85 #endif