]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/setup_percpu.c
x86: make Voyager use x86 per-cpu setup.
[net-next-2.6.git] / arch / x86 / kernel / setup_percpu.c
CommitLineData
4fe29a85
GOC
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>
1ecd2765 6#include <linux/kexec.h>
17b4cceb 7#include <linux/crash_dump.h>
8a87dd9a
JSR
8#include <linux/smp.h>
9#include <linux/topology.h>
4fe29a85
GOC
10#include <asm/sections.h>
11#include <asm/processor.h>
12#include <asm/setup.h>
0fc0906e 13#include <asm/mpspec.h>
76eb4131 14#include <asm/apicdef.h>
1ecd2765 15#include <asm/highmem.h>
1a51e3a0 16#include <asm/proto.h>
06879033 17#include <asm/cpumask.h>
34019be1 18#include <asm/cpu.h>
76eb4131 19
c90aa894
MT
20#ifdef CONFIG_DEBUG_PER_CPU_MAPS
21# define DBG(x...) printk(KERN_DEBUG x)
22#else
23# define DBG(x...)
24#endif
25
ea927906
BG
26DEFINE_PER_CPU(int, cpu_number);
27EXPORT_PER_CPU_SYMBOL(cpu_number);
ea927906 28
1688401a
BG
29#ifdef CONFIG_X86_64
30#define BOOT_PERCPU_OFFSET ((unsigned long)__per_cpu_load)
31#else
32#define BOOT_PERCPU_OFFSET 0
33#endif
34
35DEFINE_PER_CPU(unsigned long, this_cpu_off) = BOOT_PERCPU_OFFSET;
36EXPORT_PER_CPU_SYMBOL(this_cpu_off);
37
9939ddaf 38unsigned long __per_cpu_offset[NR_CPUS] __read_mostly = {
34019be1 39 [0 ... NR_CPUS-1] = BOOT_PERCPU_OFFSET,
9939ddaf 40};
9939ddaf 41EXPORT_SYMBOL(__per_cpu_offset);
4fe29a85
GOC
42
43/*
44 * Great future plan:
45 * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
46 * Always point %gs to its beginning
47 */
48void __init setup_per_cpu_areas(void)
49{
74631a24 50 ssize_t size;
3461b0af
MT
51 char *ptr;
52 int cpu;
4fe29a85 53
4fe29a85 54 /* Copy section for each CPU (we discard the original) */
74631a24 55 size = roundup(PERCPU_ENOUGH_ROOM, PAGE_SIZE);
a1681965 56
ab14398a 57 pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
a1681965
MT
58 NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
59
ab14398a 60 pr_info("PERCPU: Allocating %zd bytes of per cpu data\n", size);
b447a468 61
3461b0af 62 for_each_possible_cpu(cpu) {
4fe29a85 63#ifndef CONFIG_NEED_MULTIPLE_NODES
74631a24 64 ptr = alloc_bootmem_pages(size);
4fe29a85 65#else
3461b0af 66 int node = early_cpu_to_node(cpu);
b447a468 67 if (!node_online(node) || !NODE_DATA(node)) {
74631a24 68 ptr = alloc_bootmem_pages(size);
ab14398a 69 pr_info("cpu %d has no node %d or node-local memory\n",
3461b0af 70 cpu, node);
ab14398a
CG
71 pr_debug("per cpu data for cpu%d at %016lx\n",
72 cpu, __pa(ptr));
73 } else {
74631a24 74 ptr = alloc_bootmem_pages_node(NODE_DATA(node), size);
ab14398a
CG
75 pr_debug("per cpu data for cpu%d on node%d at %016lx\n",
76 cpu, node, __pa(ptr));
a677f58a 77 }
4fe29a85 78#endif
1a51e3a0 79
3e5d8f97 80 memcpy(ptr, __per_cpu_load, __per_cpu_end - __per_cpu_start);
9939ddaf 81 per_cpu_offset(cpu) = ptr - __per_cpu_start;
26f80bd6 82 per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
ea927906 83 per_cpu(cpu_number, cpu) = cpu;
0d77e7f0
BG
84 /*
85 * Copy data used in early init routines from the initial arrays to the
86 * per cpu data areas. These arrays then become expendable and the
87 * *_early_ptr's are zeroed indicating that the static arrays are gone.
88 */
ec70de8b 89#ifdef CONFIG_X86_LOCAL_APIC
0d77e7f0
BG
90 per_cpu(x86_cpu_to_apicid, cpu) =
91 early_per_cpu_map(x86_cpu_to_apicid, cpu);
92 per_cpu(x86_bios_cpu_apicid, cpu) =
93 early_per_cpu_map(x86_bios_cpu_apicid, cpu);
ec70de8b 94#endif
1a51e3a0 95#ifdef CONFIG_X86_64
26f80bd6 96 per_cpu(irq_stack_ptr, cpu) =
947e76cd 97 per_cpu(irq_stack_union.irq_stack, cpu) + IRQ_STACK_SIZE - 64;
6470aff6
BG
98#ifdef CONFIG_NUMA
99 per_cpu(x86_cpu_to_node_map, cpu) =
100 early_per_cpu_map(x86_cpu_to_node_map, cpu);
101#endif
1a51e3a0 102 /*
34019be1
BG
103 * Up to this point, the boot CPU has been using .data.init
104 * area. Reload %gs offset for the boot CPU.
1a51e3a0 105 */
34019be1 106 if (cpu == boot_cpu_id)
947e76cd 107 load_gs_base(cpu);
1a51e3a0 108#endif
c90aa894
MT
109
110 DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
4fe29a85
GOC
111 }
112
0d77e7f0
BG
113 /* indicate the early static arrays will soon be gone */
114 early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
115 early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
6470aff6 116#if defined(CONFIG_X86_64) && defined(CONFIG_NUMA)
0d77e7f0
BG
117 early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
118#endif
9f0e8d04 119
9f248bde
MT
120 /* Setup node to cpumask map */
121 setup_node_to_cpumask_map();
c2d1cec1
MT
122
123 /* Setup cpu initialized, callin, callout masks */
124 setup_cpu_local_masks();
4fe29a85 125}