trampoline_32.S 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. *
  3. * Trampoline.S Derived from Setup.S by Linus Torvalds
  4. *
  5. * 4 Jan 1997 Michael Chastain: changed to gnu as.
  6. *
  7. * This is only used for booting secondary CPUs in SMP machine
  8. *
  9. * Entry: CS:IP point to the start of our code, we are
  10. * in real mode with no stack, but the rest of the
  11. * trampoline page to make our stack and everything else
  12. * is a mystery.
  13. *
  14. * We jump into arch/x86/kernel/head_32.S.
  15. *
  16. * On entry to trampoline_data, the processor is in real mode
  17. * with 16-bit addressing and 16-bit data. CS has some value
  18. * and IP is zero. Thus, data addresses need to be absolute
  19. * (no relocation) and are taken with regard to r_base.
  20. *
  21. * If you work on this file, check the object module with
  22. * objdump --reloc to make sure there are no relocation
  23. * entries except for:
  24. *
  25. * TYPE VALUE
  26. * R_386_32 startup_32_smp
  27. * R_386_32 boot_gdt
  28. */
  29. #include <linux/linkage.h>
  30. #include <linux/init.h>
  31. #include <asm/segment.h>
  32. #include <asm/page_types.h>
  33. #ifdef CONFIG_SMP
  34. .section ".x86_trampoline","a"
  35. .balign PAGE_SIZE
  36. .code16
  37. ENTRY(trampoline_data)
  38. r_base = .
  39. wbinvd # Needed for NUMA-Q should be harmless for others
  40. mov %cs, %ax # Code and data in the same place
  41. mov %ax, %ds
  42. cli # We should be safe anyway
  43. movl $0xA5A5A5A5, trampoline_status - r_base
  44. # write marker for master knows we're running
  45. /* GDT tables in non default location kernel can be beyond 16MB and
  46. * lgdt will not be able to load the address as in real mode default
  47. * operand size is 16bit. Use lgdtl instead to force operand size
  48. * to 32 bit.
  49. */
  50. lidtl boot_idt_descr - r_base # load idt with 0, 0
  51. lgdtl boot_gdt_descr - r_base # load gdt with whatever is appropriate
  52. xor %ax, %ax
  53. inc %ax # protected mode (PE) bit
  54. lmsw %ax # into protected mode
  55. # flush prefetch and jump to startup_32_smp in arch/i386/kernel/head.S
  56. ljmpl $__BOOT_CS, $(startup_32_smp-__PAGE_OFFSET)
  57. # These need to be in the same 64K segment as the above;
  58. # hence we don't use the boot_gdt_descr defined in head.S
  59. boot_gdt_descr:
  60. .word __BOOT_DS + 7 # gdt limit
  61. .long boot_gdt - __PAGE_OFFSET # gdt base
  62. boot_idt_descr:
  63. .word 0 # idt limit = 0
  64. .long 0 # idt base = 0L
  65. ENTRY(trampoline_status)
  66. .long 0
  67. .globl trampoline_end
  68. trampoline_end:
  69. #endif /* CONFIG_SMP */