trampoline_64.S 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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_start, 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 <asm/pgtable_types.h>
  28. #include <asm/page_types.h>
  29. #include <asm/msr.h>
  30. #include <asm/segment.h>
  31. #include <asm/processor-flags.h>
  32. #include "realmode.h"
  33. .text
  34. .code16
  35. .balign PAGE_SIZE
  36. ENTRY(trampoline_start)
  37. cli # We should be safe anyway
  38. wbinvd
  39. LJMPW_RM(1f)
  40. 1:
  41. mov %cs, %ax # Code and data in the same place
  42. mov %ax, %ds
  43. mov %ax, %es
  44. mov %ax, %ss
  45. movl $0xA5A5A5A5, trampoline_status
  46. # write marker for master knows we're running
  47. # Setup stack
  48. movl $rm_stack_end, %esp
  49. call verify_cpu # Verify the cpu supports long mode
  50. testl %eax, %eax # Check for return code
  51. jnz no_longmode
  52. /*
  53. * GDT tables in non default location kernel can be beyond 16MB and
  54. * lgdt will not be able to load the address as in real mode default
  55. * operand size is 16bit. Use lgdtl instead to force operand size
  56. * to 32 bit.
  57. */
  58. lidtl tr_idt # load idt with 0, 0
  59. lgdtl tr_gdt # load gdt with whatever is appropriate
  60. movw $__KERNEL_DS, %dx # Data segment descriptor
  61. # Enable protected mode
  62. movl $X86_CR0_PE, %eax # protected mode (PE) bit
  63. movl %eax, %cr0 # into protected mode
  64. # flush prefetch and jump to startup_32
  65. ljmpl $__KERNEL32_CS, $pa_startup_32
  66. no_longmode:
  67. hlt
  68. jmp no_longmode
  69. #include "../kernel/verify_cpu.S"
  70. .section ".text32","ax"
  71. .code32
  72. .balign 4
  73. ENTRY(startup_32)
  74. movl %edx, %ss
  75. addl $pa_real_mode_base, %esp
  76. movl %edx, %ds
  77. movl %edx, %es
  78. movl %edx, %fs
  79. movl %edx, %gs
  80. movl pa_tr_cr4, %eax
  81. movl %eax, %cr4 # Enable PAE mode
  82. # Setup trampoline 4 level pagetables
  83. movl $pa_trampoline_pgd, %eax
  84. movl %eax, %cr3
  85. # Set up EFER
  86. movl pa_tr_efer, %eax
  87. movl pa_tr_efer + 4, %edx
  88. movl $MSR_EFER, %ecx
  89. wrmsr
  90. # Enable paging and in turn activate Long Mode
  91. movl $(X86_CR0_PG | X86_CR0_WP | X86_CR0_PE), %eax
  92. movl %eax, %cr0
  93. /*
  94. * At this point we're in long mode but in 32bit compatibility mode
  95. * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
  96. * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
  97. * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
  98. */
  99. ljmpl $__KERNEL_CS, $pa_startup_64
  100. .section ".text64","ax"
  101. .code64
  102. .balign 4
  103. ENTRY(startup_64)
  104. # Now jump into the kernel using virtual addresses
  105. jmpq *tr_start(%rip)
  106. .section ".rodata","a"
  107. # Duplicate the global descriptor table
  108. # so the kernel can live anywhere
  109. .balign 16
  110. .globl tr_gdt
  111. tr_gdt:
  112. .short tr_gdt_end - tr_gdt - 1 # gdt limit
  113. .long pa_tr_gdt
  114. .short 0
  115. .quad 0x00cf9b000000ffff # __KERNEL32_CS
  116. .quad 0x00af9b000000ffff # __KERNEL_CS
  117. .quad 0x00cf93000000ffff # __KERNEL_DS
  118. tr_gdt_end:
  119. .bss
  120. .balign PAGE_SIZE
  121. GLOBAL(trampoline_pgd) .space PAGE_SIZE
  122. .balign 8
  123. GLOBAL(trampoline_header)
  124. tr_start: .space 8
  125. GLOBAL(tr_efer) .space 8
  126. GLOBAL(tr_cr4) .space 4
  127. END(trampoline_header)
  128. #include "trampoline_common.S"