]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/X64/DisablePaging64.S
1. Remove .extern from GCC assembly.
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / DisablePaging64.S
CommitLineData
b1ff428c 1#------------------------------------------------------------------------------\r
2#\r
3# Copyright (c) 2006 - 2008, Intel Corporation\r
4# All rights reserved. This program and the accompanying materials\r
5# are licensed and made available under the terms and conditions of the BSD License\r
6# which accompanies this distribution. The full text of the license may be found at\r
7# http://opensource.org/licenses/bsd-license.php\r
8#\r
9# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11#\r
12# Module Name:\r
13#\r
14# DisablePaging64.S\r
15#\r
16# Abstract:\r
17#\r
18# AsmDisablePaging64 function\r
19#\r
20# Notes:\r
21#\r
22#------------------------------------------------------------------------------\r
23\r
24 \r
25\r
26#------------------------------------------------------------------------------\r
27# VOID\r
28# EFIAPI\r
29# InternalX86DisablePaging64 (\r
30# IN UINT16 Cs,\r
31# IN UINT64 EntryPoint,\r
32# IN UINT64 Context1, OPTIONAL\r
33# IN UINT32 Context2, OPTIONAL\r
34# IN UINT64 NewStack\r
35# );\r
36#------------------------------------------------------------------------------\r
37\r
d5172f91 38ASM_GLOBAL ASM_PFX(InternalX86DisablePaging64)\r
b1ff428c 39ASM_PFX(InternalX86DisablePaging64):\r
40 cli \r
41 shl $0x20,%rcx # rcx[32..47] <- Cs\r
42 lea L1, %eax\r
c2049caa 43 mov %r8d, %esi \r
2faf4da5 44 or %rax, %rcx # rcx[0..47] <- Cs:@F\r
c2049caa 45 mov %r9d, %edi \r
2faf4da5 46 mov 0x28(%rsp), %eax # eax <- New Stack\r
c2049caa 47 push %rcx\r
2faf4da5 48 ret # switch to compatibility mode\r
b1ff428c 49L1:\r
50 mov %eax,%esp # set up new stack\r
51 mov %cr0,%rax\r
52 btr $0x1f,%eax\r
53 mov %rax,%cr0 # disable paging\r
63d7211e 54\r
55 mov %rdx,%rbx # save EntryPoint to rbx, for rdmsr will overwrite rdx\r
b1ff428c 56 mov $0xc0000080,%ecx\r
57 rdmsr \r
58 and $0xfe,%ah # clear LME\r
59 wrmsr \r
60 mov %cr4,%rax\r
61 and $0xdf,%al # clear PAE\r
62 mov %rax,%cr4\r
63 push %rdi # push Context2\r
64 push %rsi # push Context1\r
63d7211e 65 callq *%rbx # transfer control to EntryPoint\r
b1ff428c 66 jmp . # no one should get here\r
67\r