blob: 9ccbb2cfd5c093110c3a853d2fe0c1d3e11ea9e3 [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;
Andi Kleen3c021752006-01-11 22:45:12 +010038extern cpumask_t cpu_initialized;
Andi Kleena8ab26f2005-04-16 15:25:19 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Private routines/data
42 */
43
44extern void smp_alloc_memory(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045extern volatile unsigned long smp_invalidate_needed;
46extern int pic_mode;
Ashok Raj884d9e42005-06-25 14:55:02 -070047extern void lock_ipi_call_lock(void);
48extern void unlock_ipi_call_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049extern int smp_num_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern void smp_send_reschedule(int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051void smp_stop_cpu(void);
Eric W. Biederman3d483f42005-07-29 14:03:29 -070052extern int smp_call_function_single(int cpuid, void (*func) (void *info),
53 void *info, int retry, int wait);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055extern cpumask_t cpu_sibling_map[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070056extern cpumask_t cpu_core_map[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057extern u8 phys_proc_id[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070058extern u8 cpu_core_id[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define SMP_TRAMPOLINE_BASE 0x6000
61
62/*
63 * On x86 all CPUs are mapped 1:1 to the APIC space.
64 * This simplifies scheduling and IPI sending and
65 * compresses data structures.
66 */
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static inline int num_booting_cpus(void)
69{
70 return cpus_weight(cpu_callout_map);
71}
72
Ingo Molnar39c715b2005-06-21 17:14:34 -070073#define raw_smp_processor_id() read_pda(cpunumber)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020075static inline int hard_smp_processor_id(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 /* we don't want to mark this access volatile - bad code generation */
78 return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
79}
80
Andi Kleena8ab26f2005-04-16 15:25:19 -070081extern int safe_smp_processor_id(void);
Ashok Raj76e4f662005-06-25 14:55:00 -070082extern int __cpu_disable(void);
83extern void __cpu_die(unsigned int cpu);
Andi Kleen421c7ce2005-10-10 22:32:45 +020084extern void prefill_possible_map(void);
Andi Kleen420f8f62005-11-05 17:25:54 +010085extern unsigned num_processors;
86extern unsigned disabled_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#endif /* !ASSEMBLY */
89
90#define NO_PROC_ID 0xFF /* No processor magic marker */
91
92#endif
93
94#ifndef ASSEMBLY
95/*
96 * Some lowlevel functions might want to know about
97 * the real APIC ID <-> CPU # mapping.
98 */
99extern u8 x86_cpu_to_apicid[NR_CPUS]; /* physical ID */
100extern u8 x86_cpu_to_log_apicid[NR_CPUS];
101extern u8 bios_cpu_apicid[];
102
103static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
104{
105 return cpus_addr(cpumask)[0];
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static inline int cpu_present_to_apicid(int mps_cpu)
109{
110 if (mps_cpu < NR_CPUS)
111 return (int)bios_cpu_apicid[mps_cpu];
112 else
113 return BAD_APICID;
114}
115
116#endif /* !ASSEMBLY */
117
118#ifndef CONFIG_SMP
119#define stack_smp_processor_id() 0
120#define safe_smp_processor_id() 0
121#define cpu_logical_map(x) (x)
122#else
123#include <asm/thread_info.h>
124#define stack_smp_processor_id() \
125({ \
126 struct thread_info *ti; \
127 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
128 ti->cpu; \
129})
130#endif
131
132#ifndef __ASSEMBLY__
133static __inline int logical_smp_processor_id(void)
134{
135 /* we don't want to mark this access volatile - bad code generation */
136 return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
137}
138#endif
139
Ashok Rajb4033c12005-11-08 21:42:33 -0800140#ifdef CONFIG_SMP
141#define cpu_physical_id(cpu) x86_cpu_to_apicid[cpu]
142#else
143#define cpu_physical_id(cpu) boot_cpu_id
144#endif
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#endif
147