blob: e0a75519ad216e714a1d5430d183c2608dd1a3c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SMP_H
2#define __ASM_SMP_H
3
Thomas Gleixnerae9d9832008-01-30 13:30:36 +01004#include <linux/cpumask.h>
5#include <linux/init.h>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007/*
8 * We need the APIC definitions automatically as part of 'smp.h'
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/apic.h>
Jan Beulich00f1ea62007-05-02 19:27:04 +020011#include <asm/io_apic.h>
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010012#include <asm/mpspec.h>
13#include <asm/pda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Andi Kleena8ab26f2005-04-16 15:25:19 -070016extern cpumask_t cpu_callout_map;
Andi Kleen3c021752006-01-11 22:45:12 +010017extern cpumask_t cpu_initialized;
Andi Kleena8ab26f2005-04-16 15:25:19 -070018
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010019extern int smp_num_siblings;
20extern unsigned int num_processors;
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void smp_alloc_memory(void);
Ashok Raj884d9e42005-06-25 14:55:02 -070023extern void lock_ipi_call_lock(void);
24extern void unlock_ipi_call_lock(void);
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010025
Laurent Vivier66d16ed2007-10-19 20:35:03 +020026extern int smp_call_function_mask(cpumask_t mask, void (*func)(void *),
27 void *info, int wait);
Eric W. Biederman3d483f42005-07-29 14:03:29 -070028
travis@sgi.comef970012008-01-30 13:33:10 +010029extern u16 __initdata x86_cpu_to_apicid_init[];
travis@sgi.come8c10ef2008-01-30 13:33:12 +010030extern u16 __initdata x86_bios_cpu_apicid_init[];
travis@sgi.com3b419082008-01-30 13:33:11 +010031extern void *x86_cpu_to_apicid_early_ptr;
travis@sgi.come8c10ef2008-01-30 13:33:12 +010032extern void *x86_bios_cpu_apicid_early_ptr;
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010033
Mike Travisd5a74302007-10-16 01:24:05 -070034DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
Mike Travis08357612007-10-16 01:24:04 -070035DECLARE_PER_CPU(cpumask_t, cpu_core_map);
travis@sgi.comef970012008-01-30 13:33:10 +010036DECLARE_PER_CPU(u16, cpu_llc_id);
37DECLARE_PER_CPU(u16, x86_cpu_to_apicid);
travis@sgi.come8c10ef2008-01-30 13:33:12 +010038DECLARE_PER_CPU(u16, x86_bios_cpu_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static inline int cpu_present_to_apicid(int mps_cpu)
41{
travis@sgi.come8c10ef2008-01-30 13:33:12 +010042 if (cpu_present(mps_cpu))
43 return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 else
45 return BAD_APICID;
46}
47
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010048#ifdef CONFIG_SMP
49
50#define SMP_TRAMPOLINE_BASE 0x6000
51
52extern int __cpu_disable(void);
53extern void __cpu_die(unsigned int cpu);
54extern void prefill_possible_map(void);
55extern unsigned __cpuinitdata disabled_cpus;
56
57#define raw_smp_processor_id() read_pda(cpunumber)
58#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
59
60#define stack_smp_processor_id() \
61 ({ \
62 struct thread_info *ti; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010064 ti->cpu; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065})
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010066
67/*
68 * On x86 all CPUs are mapped 1:1 to the APIC space. This simplifies
69 * scheduling and IPI sending and compresses data structures.
70 */
71static inline int num_booting_cpus(void)
72{
73 return cpus_weight(cpu_callout_map);
74}
75
76extern void smp_send_reschedule(int cpu);
77
78#else /* CONFIG_SMP */
79
80extern unsigned int boot_cpu_id;
81#define cpu_physical_id(cpu) boot_cpu_id
82#define stack_smp_processor_id() 0
83
84#endif /* !CONFIG_SMP */
85
86#define safe_smp_processor_id() smp_processor_id()
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static __inline int logical_smp_processor_id(void)
89{
90 /* we don't want to mark this access volatile - bad code generation */
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010091 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010094static inline int hard_smp_processor_id(void)
95{
96 /* we don't want to mark this access volatile - bad code generation */
97 return GET_APIC_ID(*(u32 *)(APIC_BASE + APIC_ID));
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101