trampoline_64.S 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. *
  3. * Trampoline.S Derived from Setup.S by Linus Torvalds
  4. *
  5. * 4 Jan 1997 Michael Chastain: changed to gnu as.
  6. * 15 Sept 2005 Eric Biederman: 64bit PIC support
  7. *
  8. * Entry: CS:IP point to the start of our code, we are
  9. * in real mode with no stack, but the rest of the
  10. * trampoline page to make our stack and everything else
  11. * is a mystery.
  12. *
  13. * On entry to trampoline_data, the processor is in real mode
  14. * with 16-bit addressing and 16-bit data. CS has some value
  15. * and IP is zero. Thus, data addresses need to be absolute
  16. * (no relocation) and are taken with regard to r_base.
  17. *
  18. * With the addition of trampoline_level4_pgt this code can
  19. * now enter a 64bit kernel that lives at arbitrary 64bit
  20. * physical addresses.
  21. *
  22. * If you work on this file, check the object module with objdump
  23. * --full-contents --reloc to make sure there are no relocation
  24. * entries.
  25. */
  26. #include <linux/linkage.h>
  27. #include <linux/init.h>
  28. #include <asm/pgtable_types.h>
  29. #include <asm/page_types.h>
  30. #include <asm/msr.h>
  31. #include <asm/segment.h>
  32. #include <asm/processor-flags.h>
  33. #include "realmode.h"
  34. .text
  35. .balign PAGE_SIZE
  36. .code16
  37. ENTRY(trampoline_data)
  38. cli # We should be safe anyway
  39. wbinvd
  40. LJMPW_RM(1f)
  41. 1:
  42. mov %cs, %ax # Code and data in the same place
  43. mov %ax, %ds
  44. mov %ax, %es
  45. mov %ax, %ss
  46. movl $0xA5A5A5A5, trampoline_status
  47. # write marker for master knows we're running
  48. # Setup stack
  49. movw $trampoline_stack_end, %sp
  50. call verify_cpu # Verify the cpu supports long mode
  51. testl %eax, %eax # Check for return code
  52. jnz no_longmode
  53. /*
  54. * GDT tables in non default location kernel can be beyond 16MB and
  55. * lgdt will not be able to load the address as in real mode default
  56. * operand size is 16bit. Use lgdtl instead to force operand size
  57. * to 32 bit.
  58. */
  59. lidtl tidt # load idt with 0, 0
  60. lgdtl tgdt # load gdt with whatever is appropriate
  61. mov $X86_CR0_PE, %ax # protected mode (PE) bit
  62. lmsw %ax # into protected mode
  63. # flush prefetch and jump to startup_32
  64. ljmpl $__KERNEL32_CS, $pa_startup_32
  65. no_longmode:
  66. hlt
  67. jmp no_longmode
  68. #include "../kernel/verify_cpu.S"
  69. .section ".text32","ax"
  70. .code32
  71. .balign 4
  72. ENTRY(startup_32)
  73. movl $__KERNEL_DS, %eax # Initialize the %ds segment register
  74. movl %eax, %ds
  75. movl $X86_CR4_PAE, %eax
  76. movl %eax, %cr4 # Enable PAE mode
  77. movl pa_startup_64_smp, %esi
  78. movl pa_startup_64_smp_high, %edi
  79. # Setup trampoline 4 level pagetables
  80. leal pa_trampoline_level4_pgt, %eax
  81. movl %eax, %cr3
  82. movl $MSR_EFER, %ecx
  83. movl $(1 << _EFER_LME), %eax # Enable Long Mode
  84. xorl %edx, %edx
  85. wrmsr
  86. # Enable paging and in turn activate Long Mode
  87. # Enable protected mode
  88. movl $(X86_CR0_PG | X86_CR0_PE), %eax
  89. movl %eax, %cr0
  90. /*
  91. * At this point we're in long mode but in 32bit compatibility mode
  92. * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
  93. * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
  94. * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
  95. */
  96. ljmpl $__KERNEL_CS, $pa_startup_64
  97. .section ".text64","ax"
  98. .code64
  99. .balign 4
  100. ENTRY(startup_64)
  101. # Now jump into the kernel using virtual addresses
  102. movl %edi, %eax
  103. shlq $32, %rax
  104. addl %esi, %eax
  105. jmp *%rax
  106. .section ".rodata","a"
  107. .balign 16
  108. tidt:
  109. .word 0 # idt limit = 0
  110. .word 0, 0 # idt base = 0L
  111. # Duplicate the global descriptor table
  112. # so the kernel can live anywhere
  113. .balign 4
  114. .globl tgdt
  115. tgdt:
  116. .short tgdt_end - tgdt # gdt limit
  117. .long pa_tgdt
  118. .short 0
  119. .quad 0x00cf9b000000ffff # __KERNEL32_CS
  120. .quad 0x00af9b000000ffff # __KERNEL_CS
  121. .quad 0x00cf93000000ffff # __KERNEL_DS
  122. tgdt_end:
  123. .data
  124. .balign 4
  125. GLOBAL(trampoline_status)
  126. .long 0
  127. trampoline_stack:
  128. .org 0x1000
  129. trampoline_stack_end:
  130. .globl level3_ident_pgt
  131. .globl level3_kernel_pgt
  132. GLOBAL(trampoline_level4_pgt)
  133. level3_ident_pgt: .quad 0
  134. .fill 510,8,0
  135. level3_kernel_pgt: .quad 0
  136. .globl startup_64_smp
  137. .globl startup_64_smp_high
  138. startup_64_smp: .long 0
  139. startup_64_smp_high: .long 0