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