]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/asm-x86/smp_64.h
x86: implement missing x86_64 function smp_call_function_mask()
[mv-sheeva.git] / include / asm-x86 / smp_64.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 #include <linux/threads.h>
8 #include <linux/cpumask.h>
9 #include <linux/bitops.h>
10 #include <linux/init.h>
11 extern int disable_apic;
12
13 #include <asm/mpspec.h>
14 #include <asm/apic.h>
15 #include <asm/io_apic.h>
16 #include <asm/thread_info.h>
17
18 #ifdef CONFIG_SMP
19
20 #include <asm/pda.h>
21
22 struct pt_regs;
23
24 extern cpumask_t cpu_present_mask;
25 extern cpumask_t cpu_possible_map;
26 extern cpumask_t cpu_online_map;
27 extern cpumask_t cpu_callout_map;
28 extern cpumask_t cpu_initialized;
29
30 /*
31  * Private routines/data
32  */
33  
34 extern void smp_alloc_memory(void);
35 extern volatile unsigned long smp_invalidate_needed;
36 extern void lock_ipi_call_lock(void);
37 extern void unlock_ipi_call_lock(void);
38 extern int smp_num_siblings;
39 extern void smp_send_reschedule(int cpu);
40 extern int smp_call_function_mask(cpumask_t mask, void (*func)(void *),
41                                   void *info, int wait);
42
43 /*
44  * cpu_sibling_map and cpu_core_map now live
45  * in the per cpu area
46  *
47  * extern cpumask_t cpu_sibling_map[NR_CPUS];
48  * extern cpumask_t cpu_core_map[NR_CPUS];
49  */
50 DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
51 DECLARE_PER_CPU(cpumask_t, cpu_core_map);
52 extern u8 cpu_llc_id[NR_CPUS];
53
54 #define SMP_TRAMPOLINE_BASE 0x6000
55
56 /*
57  * On x86 all CPUs are mapped 1:1 to the APIC space.
58  * This simplifies scheduling and IPI sending and
59  * compresses data structures.
60  */
61
62 static inline int num_booting_cpus(void)
63 {
64         return cpus_weight(cpu_callout_map);
65 }
66
67 #define raw_smp_processor_id() read_pda(cpunumber)
68
69 extern int __cpu_disable(void);
70 extern void __cpu_die(unsigned int cpu);
71 extern void prefill_possible_map(void);
72 extern unsigned num_processors;
73 extern unsigned __cpuinitdata disabled_cpus;
74
75 #define NO_PROC_ID              0xFF            /* No processor magic marker */
76
77 #endif /* CONFIG_SMP */
78
79 static inline int hard_smp_processor_id(void)
80 {
81         /* we don't want to mark this access volatile - bad code generation */
82         return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
83 }
84
85 /*
86  * Some lowlevel functions might want to know about
87  * the real APIC ID <-> CPU # mapping.
88  */
89 extern u8 x86_cpu_to_apicid[NR_CPUS];   /* physical ID */
90 extern u8 bios_cpu_apicid[];
91
92 static inline int cpu_present_to_apicid(int mps_cpu)
93 {
94         if (mps_cpu < NR_CPUS)
95                 return (int)bios_cpu_apicid[mps_cpu];
96         else
97                 return BAD_APICID;
98 }
99
100 #ifndef CONFIG_SMP
101 #define stack_smp_processor_id() 0
102 #define cpu_logical_map(x) (x)
103 #else
104 #include <asm/thread_info.h>
105 #define stack_smp_processor_id() \
106 ({                                                              \
107         struct thread_info *ti;                                 \
108         __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
109         ti->cpu;                                                \
110 })
111 #endif
112
113 static __inline int logical_smp_processor_id(void)
114 {
115         /* we don't want to mark this access volatile - bad code generation */
116         return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
117 }
118
119 #ifdef CONFIG_SMP
120 #define cpu_physical_id(cpu)            x86_cpu_to_apicid[cpu]
121 #else
122 #define cpu_physical_id(cpu)            boot_cpu_id
123 #endif /* !CONFIG_SMP */
124 #endif
125