]> git.proxmox.com Git - mirror_edk2.git/blame - OldMdePkg/Library/BaseLib/Ia32/EnablePaging64.S
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / OldMdePkg / Library / BaseLib / Ia32 / EnablePaging64.S
CommitLineData
878ddf1f 1#------------------------------------------------------------------------------\r
2#\r
3# Copyright (c) 2006, 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# EnablePaging64.Asm\r
15#\r
16# Abstract:\r
17#\r
bd0cd44b 18# InternalX86EnablePaging64 function\r
878ddf1f 19#\r
20# Notes:\r
21#\r
22#------------------------------------------------------------------------------\r
23\r
a2b1bf96 24.globl ASM_PFX(InternalX86EnablePaging64)\r
878ddf1f 25\r
26#------------------------------------------------------------------------------\r
27# VOID\r
28# EFIAPI\r
bd0cd44b 29# InternalX86EnablePaging64 (\r
878ddf1f 30# IN UINT16 CodeSelector,\r
31# IN UINT64 EntryPoint,\r
32# IN UINT64 Context1, OPTIONAL\r
33# IN UINT64 Context2, OPTIONAL\r
34# IN UINT64 NewStack\r
35# );\r
36#------------------------------------------------------------------------------\r
a2b1bf96 37ASM_PFX(InternalX86EnablePaging64):\r
878ddf1f 38 cli\r
bd0cd44b 39 movl $LongStart, (%esp)\r
878ddf1f 40 movl %cr4, %eax\r
41 orb $0x20, %al\r
42 movl %eax, %cr4 # enable PAE\r
43 movl $0xc0000080, %ecx\r
44 rdmsr\r
45 orb $1, %ah # set LME\r
46 wrmsr\r
47 movl %cr0, %eax\r
48 btsl $31, %eax\r
49 movl %eax, %cr0 # enable paging\r
50 lret\r
51LongStart: # long mode starts here\r
3f566587 52 .byte 0x67, 0x48\r
878ddf1f 53 movl (%esp), %ebx # mov rbx, [esp]\r
3f566587 54 .byte 0x67, 0x48\r
878ddf1f 55 movl 8(%esp), %ecx # mov rcx, [esp + 8]\r
3f566587 56 .byte 0x67, 0x48\r
878ddf1f 57 movl 0x10(%esp), %edx # mov rdx, [esp + 10h]\r
3f566587 58 .byte 0x67, 0x48\r
878ddf1f 59 movl 0x18(%esp), %esp # mov rsp, [esp + 18h]\r
60 .byte 0x48\r
61 addl $0x-20, %esp # add rsp, -20h\r
62 call *%ebx # call rbx\r
63 jmp .\r