setup_percpu.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #include <linux/kernel.h>
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/bootmem.h>
  5. #include <linux/percpu.h>
  6. #include <linux/kexec.h>
  7. #include <linux/crash_dump.h>
  8. #include <linux/smp.h>
  9. #include <linux/topology.h>
  10. #include <asm/sections.h>
  11. #include <asm/processor.h>
  12. #include <asm/setup.h>
  13. #include <asm/mpspec.h>
  14. #include <asm/apicdef.h>
  15. #include <asm/highmem.h>
  16. #include <asm/proto.h>
  17. #include <asm/cpumask.h>
  18. #include <asm/cpu.h>
  19. #include <asm/stackprotector.h>
  20. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  21. # define DBG(x...) printk(KERN_DEBUG x)
  22. #else
  23. # define DBG(x...)
  24. #endif
  25. DEFINE_PER_CPU(int, cpu_number);
  26. EXPORT_PER_CPU_SYMBOL(cpu_number);
  27. #ifdef CONFIG_X86_64
  28. #define BOOT_PERCPU_OFFSET ((unsigned long)__per_cpu_load)
  29. #else
  30. #define BOOT_PERCPU_OFFSET 0
  31. #endif
  32. DEFINE_PER_CPU(unsigned long, this_cpu_off) = BOOT_PERCPU_OFFSET;
  33. EXPORT_PER_CPU_SYMBOL(this_cpu_off);
  34. unsigned long __per_cpu_offset[NR_CPUS] __read_mostly = {
  35. [0 ... NR_CPUS-1] = BOOT_PERCPU_OFFSET,
  36. };
  37. EXPORT_SYMBOL(__per_cpu_offset);
  38. static inline void setup_percpu_segment(int cpu)
  39. {
  40. #ifdef CONFIG_X86_32
  41. struct desc_struct gdt;
  42. pack_descriptor(&gdt, per_cpu_offset(cpu), 0xFFFFF,
  43. 0x2 | DESCTYPE_S, 0x8);
  44. gdt.s = 1;
  45. write_gdt_entry(get_cpu_gdt_table(cpu),
  46. GDT_ENTRY_PERCPU, &gdt, DESCTYPE_S);
  47. #endif
  48. }
  49. /*
  50. * Great future plan:
  51. * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
  52. * Always point %gs to its beginning
  53. */
  54. void __init setup_per_cpu_areas(void)
  55. {
  56. ssize_t size;
  57. char *ptr;
  58. int cpu;
  59. /* Copy section for each CPU (we discard the original) */
  60. size = roundup(PERCPU_ENOUGH_ROOM, PAGE_SIZE);
  61. pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
  62. NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
  63. pr_info("PERCPU: Allocating %zd bytes of per cpu data\n", size);
  64. for_each_possible_cpu(cpu) {
  65. #ifndef CONFIG_NEED_MULTIPLE_NODES
  66. ptr = alloc_bootmem_pages(size);
  67. #else
  68. int node = early_cpu_to_node(cpu);
  69. if (!node_online(node) || !NODE_DATA(node)) {
  70. ptr = alloc_bootmem_pages(size);
  71. pr_info("cpu %d has no node %d or node-local memory\n",
  72. cpu, node);
  73. pr_debug("per cpu data for cpu%d at %016lx\n",
  74. cpu, __pa(ptr));
  75. } else {
  76. ptr = alloc_bootmem_pages_node(NODE_DATA(node), size);
  77. pr_debug("per cpu data for cpu%d on node%d at %016lx\n",
  78. cpu, node, __pa(ptr));
  79. }
  80. #endif
  81. memcpy(ptr, __per_cpu_load, __per_cpu_end - __per_cpu_start);
  82. per_cpu_offset(cpu) = ptr - __per_cpu_start;
  83. per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
  84. per_cpu(cpu_number, cpu) = cpu;
  85. setup_percpu_segment(cpu);
  86. setup_stack_canary_segment(cpu);
  87. /*
  88. * Copy data used in early init routines from the
  89. * initial arrays to the per cpu data areas. These
  90. * arrays then become expendable and the *_early_ptr's
  91. * are zeroed indicating that the static arrays are
  92. * gone.
  93. */
  94. #ifdef CONFIG_X86_LOCAL_APIC
  95. per_cpu(x86_cpu_to_apicid, cpu) =
  96. early_per_cpu_map(x86_cpu_to_apicid, cpu);
  97. per_cpu(x86_bios_cpu_apicid, cpu) =
  98. early_per_cpu_map(x86_bios_cpu_apicid, cpu);
  99. #endif
  100. #ifdef CONFIG_X86_64
  101. per_cpu(irq_stack_ptr, cpu) =
  102. per_cpu(irq_stack_union.irq_stack, cpu) +
  103. IRQ_STACK_SIZE - 64;
  104. #ifdef CONFIG_NUMA
  105. per_cpu(x86_cpu_to_node_map, cpu) =
  106. early_per_cpu_map(x86_cpu_to_node_map, cpu);
  107. #endif
  108. #endif
  109. /*
  110. * Up to this point, the boot CPU has been using .data.init
  111. * area. Reload any changed state for the boot CPU.
  112. */
  113. if (cpu == boot_cpu_id)
  114. switch_to_new_gdt(cpu);
  115. DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
  116. }
  117. /* indicate the early static arrays will soon be gone */
  118. #ifdef CONFIG_X86_LOCAL_APIC
  119. early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
  120. early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
  121. #endif
  122. #if defined(CONFIG_X86_64) && defined(CONFIG_NUMA)
  123. early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
  124. #endif
  125. /* Setup node to cpumask map */
  126. setup_node_to_cpumask_map();
  127. /* Setup cpu initialized, callin, callout masks */
  128. setup_cpu_local_masks();
  129. }