blob: d030409a8fb5c61a2663249894834384d106f7f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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>
12extern 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
32struct pt_regs;
33
Andi Kleena8ab26f2005-04-16 15:25:19 -070034extern cpumask_t cpu_present_mask;
35extern cpumask_t cpu_possible_map;
36extern cpumask_t cpu_online_map;
37extern cpumask_t cpu_callout_map;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Private routines/data
41 */
42
43extern void smp_alloc_memory(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044extern volatile unsigned long smp_invalidate_needed;
45extern int pic_mode;
Ashok Raj884d9e42005-06-25 14:55:02 -070046extern void lock_ipi_call_lock(void);
47extern void unlock_ipi_call_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048extern int smp_num_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049extern void smp_send_reschedule(int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void smp_stop_cpu(void);
Eric W. Biederman3d483f42005-07-29 14:03:29 -070051extern int smp_call_function_single(int cpuid, void (*func) (void *info),
52 void *info, int retry, int wait);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054extern cpumask_t cpu_sibling_map[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070055extern cpumask_t cpu_core_map[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056extern u8 phys_proc_id[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070057extern u8 cpu_core_id[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define SMP_TRAMPOLINE_BASE 0x6000
60
61/*
62 * On x86 all CPUs are mapped 1:1 to the APIC space.
63 * This simplifies scheduling and IPI sending and
64 * compresses data structures.
65 */
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static inline int num_booting_cpus(void)
68{
69 return cpus_weight(cpu_callout_map);
70}
71
Ingo Molnar39c715b2005-06-21 17:14:34 -070072#define raw_smp_processor_id() read_pda(cpunumber)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020074static inline int hard_smp_processor_id(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 /* we don't want to mark this access volatile - bad code generation */
77 return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
78}
79
Andi Kleena8ab26f2005-04-16 15:25:19 -070080extern int safe_smp_processor_id(void);
Ashok Raj76e4f662005-06-25 14:55:00 -070081extern int __cpu_disable(void);
82extern void __cpu_die(unsigned int cpu);
Andi Kleen421c7ce2005-10-10 22:32:45 +020083extern void prefill_possible_map(void);
Andi Kleen420f8f62005-11-05 17:25:54 +010084extern unsigned num_processors;
85extern unsigned disabled_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#endif /* !ASSEMBLY */
88
89#define NO_PROC_ID 0xFF /* No processor magic marker */
90
91#endif
92
93#ifndef ASSEMBLY
94/*
95 * Some lowlevel functions might want to know about
96 * the real APIC ID <-> CPU # mapping.
97 */
98extern u8 x86_cpu_to_apicid[NR_CPUS]; /* physical ID */
99extern u8 x86_cpu_to_log_apicid[NR_CPUS];
100extern u8 bios_cpu_apicid[];
101
102static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
103{
104 return cpus_addr(cpumask)[0];
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static inline int cpu_present_to_apicid(int mps_cpu)
108{
109 if (mps_cpu < NR_CPUS)
110 return (int)bios_cpu_apicid[mps_cpu];
111 else
112 return BAD_APICID;
113}
114
115#endif /* !ASSEMBLY */
116
117#ifndef CONFIG_SMP
118#define stack_smp_processor_id() 0
119#define safe_smp_processor_id() 0
120#define cpu_logical_map(x) (x)
121#else
122#include <asm/thread_info.h>
123#define stack_smp_processor_id() \
124({ \
125 struct thread_info *ti; \
126 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
127 ti->cpu; \
128})
129#endif
130
131#ifndef __ASSEMBLY__
132static __inline int logical_smp_processor_id(void)
133{
134 /* we don't want to mark this access volatile - bad code generation */
135 return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
136}
137#endif
138
Ashok Rajb4033c12005-11-08 21:42:33 -0800139#ifdef CONFIG_SMP
140#define cpu_physical_id(cpu) x86_cpu_to_apicid[cpu]
141#else
142#define cpu_physical_id(cpu) boot_cpu_id
143#endif
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#endif
146