1 | /** @file
|
---|
2 | IA-32/x64 AsmDisablePaging32()
|
---|
3 |
|
---|
4 | Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
---|
5 | 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 |
|
---|
17 |
|
---|
18 | #include "BaseLibInternals.h"
|
---|
19 |
|
---|
20 | /**
|
---|
21 | Disables the 32-bit paging mode on the CPU.
|
---|
22 |
|
---|
23 | Disables the 32-bit paging mode on the CPU and returns to 32-bit protected
|
---|
24 | mode. This function assumes the current execution mode is 32-paged protected
|
---|
25 | mode. This function is only available on IA-32. After the 32-bit paging mode
|
---|
26 | is disabled, control is transferred to the function specified by EntryPoint
|
---|
27 | using the new stack specified by NewStack and passing in the parameters
|
---|
28 | specified by Context1 and Context2. Context1 and Context2 are optional and
|
---|
29 | may be NULL. The function EntryPoint must never return.
|
---|
30 |
|
---|
31 | If the current execution mode is not 32-bit paged mode, then ASSERT().
|
---|
32 | If EntryPoint is NULL, then ASSERT().
|
---|
33 | If NewStack is NULL, then ASSERT().
|
---|
34 |
|
---|
35 | There are a number of constraints that must be followed before calling this
|
---|
36 | function:
|
---|
37 | 1) Interrupts must be disabled.
|
---|
38 | 2) The caller must be in 32-bit paged mode.
|
---|
39 | 3) CR0, CR3, and CR4 must be compatible with 32-bit paged mode.
|
---|
40 | 4) CR3 must point to valid page tables that guarantee that the pages for
|
---|
41 | this 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 disabled.
|
---|
45 | @param Context1 A pointer to the context to pass into the EntryPoint
|
---|
46 | function as the first parameter after paging is disabled.
|
---|
47 | @param Context2 A pointer to the context to pass into the EntryPoint
|
---|
48 | function as the second parameter after paging is
|
---|
49 | disabled.
|
---|
50 | @param NewStack A pointer to the new stack to use for the EntryPoint
|
---|
51 | function after paging is disabled.
|
---|
52 |
|
---|
53 | **/
|
---|
54 | VOID
|
---|
55 | EFIAPI
|
---|
56 | AsmDisablePaging32 (
|
---|
57 | IN SWITCH_STACK_ENTRY_POINT EntryPoint,
|
---|
58 | IN VOID *Context1, OPTIONAL
|
---|
59 | IN VOID *Context2, OPTIONAL
|
---|
60 | IN VOID *NewStack
|
---|
61 | )
|
---|
62 | {
|
---|
63 | ASSERT (EntryPoint != NULL);
|
---|
64 | ASSERT (NewStack != NULL);
|
---|
65 | InternalX86DisablePaging32 (EntryPoint, Context1, Context2, NewStack);
|
---|
66 | }
|
---|