blob: 9c6242fb99dbeecb6a8a4a6a05a4f72e7e87068c [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;
46extern int smp_num_siblings;
47extern void smp_flush_tlb(void);
48extern void smp_message_irq(int cpl, void *dev_id, struct pt_regs *regs);
49extern void smp_send_reschedule(int cpu);
50extern void smp_invalidate_rcv(void); /* Process an NMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051extern void zap_low_mappings(void);
52void smp_stop_cpu(void);
53extern cpumask_t cpu_sibling_map[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070054extern cpumask_t cpu_core_map[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070055extern u8 phys_proc_id[NR_CPUS];
Andi Kleen3dd9d512005-04-16 15:25:15 -070056extern u8 cpu_core_id[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define SMP_TRAMPOLINE_BASE 0x6000
59
60/*
61 * On x86 all CPUs are mapped 1:1 to the APIC space.
62 * This simplifies scheduling and IPI sending and
63 * compresses data structures.
64 */
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static inline int num_booting_cpus(void)
67{
68 return cpus_weight(cpu_callout_map);
69}
70
Ingo Molnar39c715b2005-06-21 17:14:34 -070071#define raw_smp_processor_id() read_pda(cpunumber)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73extern __inline int hard_smp_processor_id(void)
74{
75 /* we don't want to mark this access volatile - bad code generation */
76 return GET_APIC_ID(*(unsigned int *)(APIC_BASE+APIC_ID));
77}
78
Andi Kleena8ab26f2005-04-16 15:25:19 -070079extern int safe_smp_processor_id(void);
Ashok Raj76e4f662005-06-25 14:55:00 -070080extern int __cpu_disable(void);
81extern void __cpu_die(unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#endif /* !ASSEMBLY */
84
85#define NO_PROC_ID 0xFF /* No processor magic marker */
86
87#endif
88
89#ifndef ASSEMBLY
90/*
91 * Some lowlevel functions might want to know about
92 * the real APIC ID <-> CPU # mapping.
93 */
94extern u8 x86_cpu_to_apicid[NR_CPUS]; /* physical ID */
95extern u8 x86_cpu_to_log_apicid[NR_CPUS];
96extern u8 bios_cpu_apicid[];
97
98static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
99{
100 return cpus_addr(cpumask)[0];
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static inline int cpu_present_to_apicid(int mps_cpu)
104{
105 if (mps_cpu < NR_CPUS)
106 return (int)bios_cpu_apicid[mps_cpu];
107 else
108 return BAD_APICID;
109}
110
111#endif /* !ASSEMBLY */
112
113#ifndef CONFIG_SMP
114#define stack_smp_processor_id() 0
115#define safe_smp_processor_id() 0
116#define cpu_logical_map(x) (x)
117#else
118#include <asm/thread_info.h>
119#define stack_smp_processor_id() \
120({ \
121 struct thread_info *ti; \
122 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
123 ti->cpu; \
124})
125#endif
126
127#ifndef __ASSEMBLY__
128static __inline int logical_smp_processor_id(void)
129{
130 /* we don't want to mark this access volatile - bad code generation */
131 return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
132}
133#endif
134
135#endif
136