trampoline_64.S 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 <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. .section .rodata, "a", @progbits
  33. .code16
  34. ENTRY(trampoline_data)
  35. r_base = .
  36. cli # We should be safe anyway
  37. wbinvd
  38. mov %cs, %ax # Code and data in the same place
  39. mov %ax, %ds
  40. mov %ax, %es
  41. mov %ax, %ss
  42. movl $0xA5A5A5A5, trampoline_data - r_base
  43. # write marker for master knows we're running
  44. # Setup stack
  45. movw $(trampoline_stack_end - r_base), %sp
  46. call verify_cpu # Verify the cpu supports long mode
  47. testl %eax, %eax # Check for return code
  48. jnz no_longmode
  49. mov %cs, %ax
  50. movzx %ax, %esi # Find the 32bit trampoline location
  51. shll $4, %esi
  52. # Fixup the vectors
  53. addl %esi, startup_32_vector - r_base
  54. addl %esi, startup_64_vector - r_base
  55. addl %esi, tgdt + 2 - r_base # Fixup the gdt pointer
  56. /*
  57. * GDT tables in non default location kernel can be beyond 16MB and
  58. * lgdt will not be able to load the address as in real mode default
  59. * operand size is 16bit. Use lgdtl instead to force operand size
  60. * to 32 bit.
  61. */
  62. lidtl tidt - r_base # load idt with 0, 0
  63. lgdtl tgdt - r_base # load gdt with whatever is appropriate
  64. mov $X86_CR0_PE, %ax # protected mode (PE) bit
  65. lmsw %ax # into protected mode
  66. # flush prefetch and jump to startup_32
  67. ljmpl *(startup_32_vector - r_base)
  68. .code32
  69. .balign 4
  70. startup_32:
  71. movl $__KERNEL_DS, %eax # Initialize the %ds segment register
  72. movl %eax, %ds
  73. movl $X86_CR4_PAE, %eax
  74. movl %eax, %cr4 # Enable PAE mode
  75. # Setup trampoline 4 level pagetables
  76. leal (trampoline_level4_pgt - r_base)(%esi), %eax
  77. movl %eax, %cr3
  78. movl $MSR_EFER, %ecx
  79. movl $(1 << _EFER_LME), %eax # Enable Long Mode
  80. xorl %edx, %edx
  81. wrmsr
  82. # Enable paging and in turn activate Long Mode
  83. # Enable protected mode
  84. movl $(X86_CR0_PG | X86_CR0_PE), %eax
  85. movl %eax, %cr0
  86. /*
  87. * At this point we're in long mode but in 32bit compatibility mode
  88. * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
  89. * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
  90. * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
  91. */
  92. ljmp *(startup_64_vector - r_base)(%esi)
  93. .code64
  94. .balign 4
  95. startup_64:
  96. # Now jump into the kernel using virtual addresses
  97. movq $secondary_startup_64, %rax
  98. jmp *%rax
  99. .code16
  100. no_longmode:
  101. hlt
  102. jmp no_longmode
  103. #include "verify_cpu_64.S"
  104. # Careful these need to be in the same 64K segment as the above;
  105. tidt:
  106. .word 0 # idt limit = 0
  107. .word 0, 0 # idt base = 0L
  108. # Duplicate the global descriptor table
  109. # so the kernel can live anywhere
  110. .balign 4
  111. tgdt:
  112. .short tgdt_end - tgdt # gdt limit
  113. .long tgdt - r_base
  114. .short 0
  115. .quad 0x00cf9b000000ffff # __KERNEL32_CS
  116. .quad 0x00af9b000000ffff # __KERNEL_CS
  117. .quad 0x00cf93000000ffff # __KERNEL_DS
  118. tgdt_end:
  119. .balign 4
  120. startup_32_vector:
  121. .long startup_32 - r_base
  122. .word __KERNEL32_CS, 0
  123. .balign 4
  124. startup_64_vector:
  125. .long startup_64 - r_base
  126. .word __KERNEL_CS, 0
  127. trampoline_stack:
  128. .org 0x1000
  129. trampoline_stack_end:
  130. ENTRY(trampoline_level4_pgt)
  131. .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
  132. .fill 510,8,0
  133. .quad level3_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
  134. ENTRY(trampoline_end)