setup_percpu.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  19. # define DBG(x...) printk(KERN_DEBUG x)
  20. #else
  21. # define DBG(x...)
  22. #endif
  23. /*
  24. * Could be inside CONFIG_HAVE_SETUP_PER_CPU_AREA with other stuff but
  25. * voyager wants cpu_number too.
  26. */
  27. #ifdef CONFIG_SMP
  28. DEFINE_PER_CPU(int, cpu_number);
  29. EXPORT_PER_CPU_SYMBOL(cpu_number);
  30. #endif
  31. #ifdef CONFIG_X86_LOCAL_APIC
  32. unsigned int num_processors;
  33. unsigned disabled_cpus __cpuinitdata;
  34. /* Processor that is doing the boot up */
  35. unsigned int boot_cpu_physical_apicid = -1U;
  36. EXPORT_SYMBOL(boot_cpu_physical_apicid);
  37. unsigned int max_physical_apicid;
  38. /* Bitmask of physically existing CPUs */
  39. physid_mask_t phys_cpu_present_map;
  40. #endif
  41. /*
  42. * Map cpu index to physical APIC ID
  43. */
  44. DEFINE_EARLY_PER_CPU(u16, x86_cpu_to_apicid, BAD_APICID);
  45. DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID);
  46. EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
  47. EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
  48. #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
  49. #ifdef CONFIG_X86_64
  50. unsigned long __per_cpu_offset[NR_CPUS] __read_mostly = {
  51. [0] = (unsigned long)__per_cpu_load,
  52. };
  53. #else
  54. unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
  55. #endif
  56. EXPORT_SYMBOL(__per_cpu_offset);
  57. /*
  58. * Great future plan:
  59. * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
  60. * Always point %gs to its beginning
  61. */
  62. void __init setup_per_cpu_areas(void)
  63. {
  64. ssize_t size, old_size;
  65. char *ptr;
  66. int cpu;
  67. unsigned long align = 1;
  68. /* Copy section for each CPU (we discard the original) */
  69. old_size = PERCPU_ENOUGH_ROOM;
  70. align = max_t(unsigned long, PAGE_SIZE, align);
  71. size = roundup(old_size, align);
  72. pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
  73. NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
  74. pr_info("PERCPU: Allocating %zd bytes of per cpu data\n", size);
  75. for_each_possible_cpu(cpu) {
  76. #ifndef CONFIG_NEED_MULTIPLE_NODES
  77. ptr = __alloc_bootmem(size, align,
  78. __pa(MAX_DMA_ADDRESS));
  79. #else
  80. int node = early_cpu_to_node(cpu);
  81. if (!node_online(node) || !NODE_DATA(node)) {
  82. ptr = __alloc_bootmem(size, align,
  83. __pa(MAX_DMA_ADDRESS));
  84. pr_info("cpu %d has no node %d or node-local memory\n",
  85. cpu, node);
  86. pr_debug("per cpu data for cpu%d at %016lx\n",
  87. cpu, __pa(ptr));
  88. } else {
  89. ptr = __alloc_bootmem_node(NODE_DATA(node), size, align,
  90. __pa(MAX_DMA_ADDRESS));
  91. pr_debug("per cpu data for cpu%d on node%d at %016lx\n",
  92. cpu, node, __pa(ptr));
  93. }
  94. #endif
  95. memcpy(ptr, __per_cpu_load, __per_cpu_end - __per_cpu_start);
  96. per_cpu_offset(cpu) = ptr - __per_cpu_start;
  97. per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
  98. per_cpu(cpu_number, cpu) = cpu;
  99. /*
  100. * Copy data used in early init routines from the initial arrays to the
  101. * per cpu data areas. These arrays then become expendable and the
  102. * *_early_ptr's are zeroed indicating that the static arrays are gone.
  103. */
  104. per_cpu(x86_cpu_to_apicid, cpu) =
  105. early_per_cpu_map(x86_cpu_to_apicid, cpu);
  106. per_cpu(x86_bios_cpu_apicid, cpu) =
  107. early_per_cpu_map(x86_bios_cpu_apicid, cpu);
  108. #ifdef CONFIG_X86_64
  109. per_cpu(irq_stack_ptr, cpu) =
  110. per_cpu(irq_stack_union.irq_stack, cpu) + IRQ_STACK_SIZE - 64;
  111. #ifdef CONFIG_NUMA
  112. per_cpu(x86_cpu_to_node_map, cpu) =
  113. early_per_cpu_map(x86_cpu_to_node_map, cpu);
  114. #endif
  115. /*
  116. * Up to this point, CPU0 has been using .data.init
  117. * area. Reload %gs offset for CPU0.
  118. */
  119. if (cpu == 0)
  120. load_gs_base(cpu);
  121. #endif
  122. DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
  123. }
  124. /* indicate the early static arrays will soon be gone */
  125. early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
  126. early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
  127. #if defined(CONFIG_X86_64) && defined(CONFIG_NUMA)
  128. early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
  129. #endif
  130. /* Setup node to cpumask map */
  131. setup_node_to_cpumask_map();
  132. /* Setup cpu initialized, callin, callout masks */
  133. setup_cpu_local_masks();
  134. }
  135. #endif