- patches.fixes/patch-2.6.11-rc1: 2.6.11-rc1.
[linux-flexiantxendom0-3.2.10.git] / include / asm-x86_64 / smp.h
1 #ifndef __ASM_SMP_H
2 #define __ASM_SMP_H
3
4 /*
5  * We need the APIC definitions automatically as part of 'smp.h'
6  */
7 #ifndef __ASSEMBLY__
8 #include <linux/config.h>
9 #include <linux/threads.h>
10 #include <linux/cpumask.h>
11 #include <linux/bitops.h>
12 extern int disable_apic;
13 #endif
14
15 #ifdef CONFIG_X86_LOCAL_APIC
16 #ifndef __ASSEMBLY__
17 #include <asm/fixmap.h>
18 #include <asm/mpspec.h>
19 #ifdef CONFIG_X86_IO_APIC
20 #include <asm/io_apic.h>
21 #endif
22 #include <asm/apic.h>
23 #include <asm/thread_info.h>
24 #endif
25 #endif
26
27 #ifdef CONFIG_SMP
28 #ifndef ASSEMBLY
29
30 #include <asm/pda.h>
31
32 struct pt_regs;
33
34 /*
35  * Private routines/data
36  */
37  
38 extern void smp_alloc_memory(void);
39 extern cpumask_t cpu_online_map;
40 extern volatile unsigned long smp_invalidate_needed;
41 extern int pic_mode;
42 extern int smp_num_siblings;
43 extern void smp_flush_tlb(void);
44 extern void smp_message_irq(int cpl, void *dev_id, struct pt_regs *regs);
45 extern void smp_send_reschedule(int cpu);
46 extern void smp_invalidate_rcv(void);           /* Process an NMI */
47 extern void (*mtrr_hook) (void);
48 extern void zap_low_mappings(void);
49 void smp_stop_cpu(void);
50 extern cpumask_t cpu_sibling_map[NR_CPUS];
51 extern u8 phys_proc_id[NR_CPUS];
52
53 #define SMP_TRAMPOLINE_BASE 0x6000
54
55 /*
56  * On x86 all CPUs are mapped 1:1 to the APIC space.
57  * This simplifies scheduling and IPI sending and
58  * compresses data structures.
59  */
60
61 extern cpumask_t cpu_callout_map;
62 #define cpu_possible_map cpu_callout_map
63
64 static inline int num_booting_cpus(void)
65 {
66         return cpus_weight(cpu_callout_map);
67 }
68
69 #define __smp_processor_id() read_pda(cpunumber)
70
71 extern __inline int hard_smp_processor_id(void)
72 {
73         /* we don't want to mark this access volatile - bad code generation */
74         return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
75 }
76
77 #define safe_smp_processor_id() (disable_apic ? 0 : x86_apicid_to_cpu(hard_smp_processor_id()))
78
79 #endif /* !ASSEMBLY */
80
81 #define NO_PROC_ID              0xFF            /* No processor magic marker */
82
83 #endif
84
85 #ifndef ASSEMBLY
86 /*
87  * Some lowlevel functions might want to know about
88  * the real APIC ID <-> CPU # mapping.
89  */
90 extern u8 x86_cpu_to_apicid[NR_CPUS];   /* physical ID */
91 extern u8 x86_cpu_to_log_apicid[NR_CPUS];
92 extern u8 bios_cpu_apicid[];
93
94 static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
95 {
96         return cpus_addr(cpumask)[0];
97 }
98
99 static inline int x86_apicid_to_cpu(u8 apicid)
100 {
101         int i;
102
103         for (i = 0; i < NR_CPUS; ++i)
104                 if (x86_cpu_to_apicid[i] == apicid)
105                         return i;
106
107         /* No entries in x86_cpu_to_apicid?  Either no MPS|ACPI,
108          * or called too early.  Either way, we must be CPU 0. */
109         if (x86_cpu_to_apicid[0] == BAD_APICID)
110                 return 0;
111
112         return -1;
113 }
114
115 static inline int cpu_present_to_apicid(int mps_cpu)
116 {
117         if (mps_cpu < NR_CPUS)
118                 return (int)bios_cpu_apicid[mps_cpu];
119         else
120                 return BAD_APICID;
121 }
122
123 #endif /* !ASSEMBLY */
124
125 #ifndef CONFIG_SMP
126 #define stack_smp_processor_id() 0
127 #define safe_smp_processor_id() 0
128 #define cpu_logical_map(x) (x)
129 #else
130 #include <asm/thread_info.h>
131 #define stack_smp_processor_id() \
132 ({                                                              \
133         struct thread_info *ti;                                 \
134         __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
135         ti->cpu;                                                \
136 })
137 #endif
138
139 #ifndef __ASSEMBLY__
140 static __inline int logical_smp_processor_id(void)
141 {
142         /* we don't want to mark this access volatile - bad code generation */
143         return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
144 }
145 #endif
146
147 #endif
148