setup_percpu.c 3.8 KB

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