source: trunk/packages/xen-3.1/xen-3.1/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/smp.h @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 3.3 KB
Line 
1#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/threads.h>
9#include <linux/cpumask.h>
10#include <linux/bitops.h>
11extern int disable_apic;
12#endif
13
14#ifdef CONFIG_X86_LOCAL_APIC
15#ifndef __ASSEMBLY__
16#include <asm/fixmap.h>
17#include <asm/mpspec.h>
18#ifdef CONFIG_X86_IO_APIC
19#include <asm/io_apic.h>
20#endif
21#include <asm/apic.h>
22#include <asm/thread_info.h>
23#endif
24#endif
25
26#ifdef CONFIG_SMP
27#ifndef ASSEMBLY
28
29#include <asm/pda.h>
30
31struct pt_regs;
32
33extern cpumask_t cpu_present_mask;
34extern cpumask_t cpu_possible_map;
35extern cpumask_t cpu_online_map;
36extern cpumask_t cpu_initialized;
37
38/*
39 * Private routines/data
40 */
41 
42extern void smp_alloc_memory(void);
43extern volatile unsigned long smp_invalidate_needed;
44extern int pic_mode;
45extern void lock_ipi_call_lock(void);
46extern void unlock_ipi_call_lock(void);
47extern int smp_num_siblings;
48extern void smp_send_reschedule(int cpu);
49void smp_stop_cpu(void);
50extern int smp_call_function_single(int cpuid, void (*func) (void *info),
51                                void *info, int retry, int wait);
52
53extern cpumask_t cpu_sibling_map[NR_CPUS];
54extern cpumask_t cpu_core_map[NR_CPUS];
55extern u8 cpu_llc_id[NR_CPUS];
56
57#define SMP_TRAMPOLINE_BASE 0x6000
58
59/*
60 * On x86 all CPUs are mapped 1:1 to the APIC space.
61 * This simplifies scheduling and IPI sending and
62 * compresses data structures.
63 */
64
65static inline int num_booting_cpus(void)
66{
67        return cpus_weight(cpu_possible_map);
68}
69
70#define raw_smp_processor_id() read_pda(cpunumber)
71
72#ifdef CONFIG_X86_LOCAL_APIC
73static 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#endif
79
80extern int safe_smp_processor_id(void);
81extern int __cpu_disable(void);
82extern void __cpu_die(unsigned int cpu);
83extern void prefill_possible_map(void);
84extern unsigned num_processors;
85extern unsigned disabled_cpus;
86
87#endif /* !ASSEMBLY */
88
89#define NO_PROC_ID              0xFF            /* No processor magic marker */
90
91#endif
92
93#ifndef ASSEMBLY
94/*
95 * Some lowlevel functions might want to know about
96 * the real APIC ID <-> CPU # mapping.
97 */
98extern u8 x86_cpu_to_apicid[NR_CPUS];   /* physical ID */
99extern u8 x86_cpu_to_log_apicid[NR_CPUS];
100extern u8 bios_cpu_apicid[];
101
102#ifdef CONFIG_X86_LOCAL_APIC
103static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
104{
105        return cpus_addr(cpumask)[0];
106}
107
108static 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#endif
116
117#endif /* !ASSEMBLY */
118
119#ifndef CONFIG_SMP
120#define stack_smp_processor_id() 0
121#define safe_smp_processor_id() 0
122#define cpu_logical_map(x) (x)
123#else
124#include <asm/thread_info.h>
125#define stack_smp_processor_id() \
126({                                                              \
127        struct thread_info *ti;                                 \
128        __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
129        ti->cpu;                                                \
130})
131#endif
132
133#ifndef __ASSEMBLY__
134#ifdef CONFIG_X86_LOCAL_APIC
135static __inline int logical_smp_processor_id(void)
136{
137        /* we don't want to mark this access volatile - bad code generation */
138        return GET_APIC_LOGICAL_ID(*(unsigned long *)(APIC_BASE+APIC_LDR));
139}
140#endif
141#endif
142
143#ifdef CONFIG_SMP
144#define cpu_physical_id(cpu)            x86_cpu_to_apicid[cpu]
145#else
146#define cpu_physical_id(cpu)            boot_cpu_id
147#endif
148
149#endif
150
Note: See TracBrowser for help on using the repository browser.