blob: de592a408c0781cae04fbd9ddf2d63a02d897810 [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>
Sam Ravnborg43999d92007-03-16 21:07:36 +010010#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011extern int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/fixmap.h>
14#include <asm/mpspec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/io_apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/apic.h>
17#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/pda.h>
22
23struct pt_regs;
24
Andi Kleena8ab26f2005-04-16 15:25:19 -070025extern cpumask_t cpu_present_mask;
26extern cpumask_t cpu_possible_map;
27extern cpumask_t cpu_online_map;
28extern cpumask_t cpu_callout_map;
Andi Kleen3c021752006-01-11 22:45:12 +010029extern cpumask_t cpu_initialized;
Andi Kleena8ab26f2005-04-16 15:25:19 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
32 * Private routines/data
33 */
34
35extern void smp_alloc_memory(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036extern volatile unsigned long smp_invalidate_needed;
Ashok Raj884d9e42005-06-25 14:55:02 -070037extern void lock_ipi_call_lock(void);
38extern void unlock_ipi_call_lock(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039extern int smp_num_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040extern void smp_send_reschedule(int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041void smp_stop_cpu(void);
Eric W. Biederman3d483f42005-07-29 14:03:29 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern cpumask_t cpu_sibling_map[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070044extern cpumask_t cpu_core_map[NR_CPUS];
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080045extern u8 cpu_llc_id[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define SMP_TRAMPOLINE_BASE 0x6000
48
49/*
50 * On x86 all CPUs are mapped 1:1 to the APIC space.
51 * This simplifies scheduling and IPI sending and
52 * compresses data structures.
53 */
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static inline int num_booting_cpus(void)
56{
57 return cpus_weight(cpu_callout_map);
58}
59
Ingo Molnar39c715b2005-06-21 17:14:34 -070060#define raw_smp_processor_id() read_pda(cpunumber)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Adrian Bunk9c0aa0f2005-09-12 18:49:24 +020062static inline int hard_smp_processor_id(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 /* we don't want to mark this access volatile - bad code generation */
65 return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
66}
67
Ashok Raj76e4f662005-06-25 14:55:00 -070068extern int __cpu_disable(void);
69extern void __cpu_die(unsigned int cpu);
Andi Kleen421c7ce2005-10-10 22:32:45 +020070extern void prefill_possible_map(void);
Andi Kleen420f8f62005-11-05 17:25:54 +010071extern unsigned num_processors;
Sam Ravnborg43999d92007-03-16 21:07:36 +010072extern unsigned __cpuinitdata disabled_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define NO_PROC_ID 0xFF /* No processor magic marker */
75
76#endif
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/*
79 * Some lowlevel functions might want to know about
80 * the real APIC ID <-> CPU # mapping.
81 */
82extern u8 x86_cpu_to_apicid[NR_CPUS]; /* physical ID */
83extern u8 x86_cpu_to_log_apicid[NR_CPUS];
84extern u8 bios_cpu_apicid[];
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static inline int cpu_present_to_apicid(int mps_cpu)
87{
88 if (mps_cpu < NR_CPUS)
89 return (int)bios_cpu_apicid[mps_cpu];
90 else
91 return BAD_APICID;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifndef CONFIG_SMP
95#define stack_smp_processor_id() 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define cpu_logical_map(x) (x)
97#else
98#include <asm/thread_info.h>
99#define stack_smp_processor_id() \
100({ \
101 struct thread_info *ti; \
102 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
103 ti->cpu; \
104})
105#endif
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static __inline int logical_smp_processor_id(void)
108{
109 /* we don't want to mark this access volatile - bad code generation */
110 return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Ashok Rajb4033c12005-11-08 21:42:33 -0800113#ifdef CONFIG_SMP
114#define cpu_physical_id(cpu) x86_cpu_to_apicid[cpu]
115#else
116#define cpu_physical_id(cpu) boot_cpu_id
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200117#endif /* !CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#endif
119