blob: d6b7c057edbaf281ddb97963e027e17931a01211 [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/threads.h>
8#include <linux/cpumask.h>
9#include <linux/bitops.h>
10extern int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/fixmap.h>
13#include <asm/mpspec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/io_apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/apic.h>
16#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/pda.h>
21
22struct pt_regs;
23
Andi Kleena8ab26f2005-04-16 15:25:19 -070024extern cpumask_t cpu_present_mask;
25extern cpumask_t cpu_possible_map;
26extern cpumask_t cpu_online_map;
27extern cpumask_t cpu_callout_map;
Andi Kleen3c021752006-01-11 22:45:12 +010028extern cpumask_t cpu_initialized;
Andi Kleena8ab26f2005-04-16 15:25:19 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * Private routines/data
32 */
33
34extern void smp_alloc_memory(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035extern volatile unsigned long smp_invalidate_needed;
Ashok Raj884d9e42005-06-25 14:55:02 -070036extern void lock_ipi_call_lock(void);
37extern void unlock_ipi_call_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038extern int smp_num_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039extern void smp_send_reschedule(int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040void smp_stop_cpu(void);
Eric W. Biederman3d483f42005-07-29 14:03:29 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern cpumask_t cpu_sibling_map[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070043extern cpumask_t cpu_core_map[NR_CPUS];
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080044extern u8 cpu_llc_id[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define SMP_TRAMPOLINE_BASE 0x6000
47
48/*
49 * On x86 all CPUs are mapped 1:1 to the APIC space.
50 * This simplifies scheduling and IPI sending and
51 * compresses data structures.
52 */
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static inline int num_booting_cpus(void)
55{
56 return cpus_weight(cpu_callout_map);
57}
58
Ingo Molnar39c715b2005-06-21 17:14:34 -070059#define raw_smp_processor_id() read_pda(cpunumber)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020061static inline int hard_smp_processor_id(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 /* we don't want to mark this access volatile - bad code generation */
64 return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
65}
66
Ashok Raj76e4f662005-06-25 14:55:00 -070067extern int __cpu_disable(void);
68extern void __cpu_die(unsigned int cpu);
Andi Kleen421c7ce2005-10-10 22:32:45 +020069extern void prefill_possible_map(void);
Andi Kleen420f8f62005-11-05 17:25:54 +010070extern unsigned num_processors;
71extern unsigned disabled_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define NO_PROC_ID 0xFF /* No processor magic marker */
74
75#endif
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * Some lowlevel functions might want to know about
79 * the real APIC ID <-> CPU # mapping.
80 */
81extern u8 x86_cpu_to_apicid[NR_CPUS]; /* physical ID */
82extern u8 x86_cpu_to_log_apicid[NR_CPUS];
83extern u8 bios_cpu_apicid[];
84
85static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
86{
87 return cpus_addr(cpumask)[0];
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline int cpu_present_to_apicid(int mps_cpu)
91{
92 if (mps_cpu < NR_CPUS)
93 return (int)bios_cpu_apicid[mps_cpu];
94 else
95 return BAD_APICID;
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#ifndef CONFIG_SMP
99#define stack_smp_processor_id() 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define cpu_logical_map(x) (x)
101#else
102#include <asm/thread_info.h>
103#define stack_smp_processor_id() \
104({ \
105 struct thread_info *ti; \
106 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
107 ti->cpu; \
108})
109#endif
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static __inline int logical_smp_processor_id(void)
112{
113 /* we don't want to mark this access volatile - bad code generation */
114 return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
115}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Ashok Rajb4033c12005-11-08 21:42:33 -0800117#ifdef CONFIG_SMP
118#define cpu_physical_id(cpu) x86_cpu_to_apicid[cpu]
119#else
120#define cpu_physical_id(cpu) boot_cpu_id
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200121static inline int smp_call_function_single(int cpuid, void (*func) (void *info),
122 void *info, int retry, int wait)
123{
124 /* Disable interrupts here? */
125 func(info);
126 return 0;
127}
128#endif /* !CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif
130