setup_percpu.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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 = __per_cpu_end - __per_cpu_start;
  57. unsigned int nr_cpu_pages = DIV_ROUND_UP(size, PAGE_SIZE);
  58. static struct page **pages;
  59. size_t pages_size;
  60. unsigned int cpu, i, j;
  61. unsigned long delta;
  62. size_t pcpu_unit_size;
  63. pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
  64. NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
  65. pr_info("PERCPU: Allocating %zd bytes for static per cpu data\n", size);
  66. pages_size = nr_cpu_pages * num_possible_cpus() * sizeof(pages[0]);
  67. pages = alloc_bootmem(pages_size);
  68. j = 0;
  69. for_each_possible_cpu(cpu) {
  70. void *ptr;
  71. for (i = 0; i < nr_cpu_pages; i++) {
  72. #ifndef CONFIG_NEED_MULTIPLE_NODES
  73. ptr = alloc_bootmem_pages(PAGE_SIZE);
  74. #else
  75. int node = early_cpu_to_node(cpu);
  76. if (!node_online(node) || !NODE_DATA(node)) {
  77. ptr = alloc_bootmem_pages(PAGE_SIZE);
  78. pr_info("cpu %d has no node %d or node-local "
  79. "memory\n", cpu, node);
  80. pr_debug("per cpu data for cpu%d at %016lx\n",
  81. cpu, __pa(ptr));
  82. } else {
  83. ptr = alloc_bootmem_pages_node(NODE_DATA(node),
  84. PAGE_SIZE);
  85. pr_debug("per cpu data for cpu%d on node%d "
  86. "at %016lx\n", cpu, node, __pa(ptr));
  87. }
  88. #endif
  89. memcpy(ptr, __per_cpu_load + i * PAGE_SIZE, PAGE_SIZE);
  90. pages[j++] = virt_to_page(ptr);
  91. }
  92. }
  93. pcpu_unit_size = pcpu_setup_static(populate_extra_pte, pages, size);
  94. free_bootmem(__pa(pages), pages_size);
  95. delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
  96. for_each_possible_cpu(cpu) {
  97. per_cpu_offset(cpu) = delta + cpu * pcpu_unit_size;
  98. per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
  99. per_cpu(cpu_number, cpu) = cpu;
  100. setup_percpu_segment(cpu);
  101. setup_stack_canary_segment(cpu);
  102. /*
  103. * Copy data used in early init routines from the
  104. * initial arrays to the per cpu data areas. These
  105. * arrays then become expendable and the *_early_ptr's
  106. * are zeroed indicating that the static arrays are
  107. * gone.
  108. */
  109. #ifdef CONFIG_X86_LOCAL_APIC
  110. per_cpu(x86_cpu_to_apicid, cpu) =
  111. early_per_cpu_map(x86_cpu_to_apicid, cpu);
  112. per_cpu(x86_bios_cpu_apicid, cpu) =
  113. early_per_cpu_map(x86_bios_cpu_apicid, cpu);
  114. #endif
  115. #ifdef CONFIG_X86_64
  116. per_cpu(irq_stack_ptr, cpu) =
  117. per_cpu(irq_stack_union.irq_stack, cpu) +
  118. IRQ_STACK_SIZE - 64;
  119. #ifdef CONFIG_NUMA
  120. per_cpu(x86_cpu_to_node_map, cpu) =
  121. early_per_cpu_map(x86_cpu_to_node_map, cpu);
  122. #endif
  123. #endif
  124. /*
  125. * Up to this point, the boot CPU has been using .data.init
  126. * area. Reload any changed state for the boot CPU.
  127. */
  128. if (cpu == boot_cpu_id)
  129. switch_to_new_gdt(cpu);
  130. DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
  131. }
  132. /* indicate the early static arrays will soon be gone */
  133. #ifdef CONFIG_X86_LOCAL_APIC
  134. early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
  135. early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
  136. #endif
  137. #if defined(CONFIG_X86_64) && defined(CONFIG_NUMA)
  138. early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
  139. #endif
  140. /* Setup node to cpumask map */
  141. setup_node_to_cpumask_map();
  142. /* Setup cpu initialized, callin, callout masks */
  143. setup_cpu_local_masks();
  144. }