blob: a6d0b00a544cf7bf4fdd7209d0f0f0cdd84d4b7c [file] [log] [blame]
Ingo Molnaref7471b2009-01-27 23:12:02 +01001#ifndef _ASM_X86_GENAPIC_H
2#define _ASM_X86_GENAPIC_H
3
4#include <linux/cpumask.h>
5
Ingo Molnar505deeb2009-01-27 23:23:22 +01006#include <asm/mpspec.h>
7#include <asm/atomic.h>
Yinghai Luc1eeb2d2009-02-16 23:02:14 -08008#include <asm/apic.h>
Ingo Molnar505deeb2009-01-27 23:23:22 +01009
Ingo Molnaref7471b2009-01-27 23:12:02 +010010/*
11 * Copyright 2004 James Cleverdon, IBM.
12 * Subject to the GNU Public License, v.2
13 *
14 * Generic APIC sub-arch data struct.
15 *
16 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
17 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
18 * James Cleverdon.
19 */
Ingo Molnaref7471b2009-01-27 23:12:02 +010020struct genapic {
21 char *name;
22
23 int (*probe)(void);
24 int (*acpi_madt_oem_check)(char *oem_id, char *oem_table_id);
25 int (*apic_id_registered)(void);
26
Ingo Molnarf8987a12009-01-28 04:02:31 +010027 u32 irq_delivery_mode;
28 u32 irq_dest_mode;
Ingo Molnaref7471b2009-01-27 23:12:02 +010029
30 const struct cpumask *(*target_cpus)(void);
31
Ingo Molnar08125d32009-01-28 05:08:44 +010032 int disable_esr;
Ingo Molnaref7471b2009-01-27 23:12:02 +010033
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +010034 int dest_logical;
Ingo Molnaref7471b2009-01-27 23:12:02 +010035 unsigned long (*check_apicid_used)(physid_mask_t bitmap, int apicid);
36 unsigned long (*check_apicid_present)(int apicid);
37
Ingo Molnaref7471b2009-01-27 23:12:02 +010038 void (*vector_allocation_domain)(int cpu, struct cpumask *retmask);
39 void (*init_apic_ldr)(void);
40
41 physid_mask_t (*ioapic_phys_id_map)(physid_mask_t map);
42
43 void (*setup_apic_routing)(void);
44 int (*multi_timer_check)(int apic, int irq);
45 int (*apicid_to_node)(int logical_apicid);
46 int (*cpu_to_logical_apicid)(int cpu);
47 int (*cpu_present_to_apicid)(int mps_cpu);
48 physid_mask_t (*apicid_to_cpu_present)(int phys_apicid);
49 void (*setup_portio_remap)(void);
50 int (*check_phys_apicid_present)(int boot_cpu_physical_apicid);
51 void (*enable_apic_mode)(void);
Ingo Molnard4c9a9f2009-01-28 13:31:22 +010052 int (*phys_pkg_id)(int cpuid_apic, int index_msb);
Ingo Molnaref7471b2009-01-27 23:12:02 +010053
54 /*
55 * When one of the next two hooks returns 1 the genapic
56 * is switched to this. Essentially they are additional
57 * probe functions:
58 */
Ingo Molnar5f836402009-01-28 13:47:42 +010059 int (*mps_oem_check)(struct mpc_table *mpc, char *oem, char *productid);
Ingo Molnaref7471b2009-01-27 23:12:02 +010060
61 unsigned int (*get_apic_id)(unsigned long x);
62 unsigned long (*set_apic_id)(unsigned int id);
63 unsigned long apic_id_mask;
64
65 unsigned int (*cpu_mask_to_apicid)(const struct cpumask *cpumask);
66 unsigned int (*cpu_mask_to_apicid_and)(const struct cpumask *cpumask,
67 const struct cpumask *andmask);
68
Ingo Molnaref7471b2009-01-27 23:12:02 +010069 /* ipi */
70 void (*send_IPI_mask)(const struct cpumask *mask, int vector);
71 void (*send_IPI_mask_allbutself)(const struct cpumask *mask,
72 int vector);
73 void (*send_IPI_allbutself)(int vector);
74 void (*send_IPI_all)(int vector);
75 void (*send_IPI_self)(int vector);
Ingo Molnar6781d942009-01-27 23:54:23 +010076
Ingo Molnaref7471b2009-01-27 23:12:02 +010077 /* wakeup_secondary_cpu */
78 int (*wakeup_cpu)(int apicid, unsigned long start_eip);
79
80 int trampoline_phys_low;
81 int trampoline_phys_high;
Ingo Molnar505deeb2009-01-27 23:23:22 +010082
Ingo Molnaref7471b2009-01-27 23:12:02 +010083 void (*wait_for_init_deassert)(atomic_t *deassert);
84 void (*smp_callin_clear_local_apic)(void);
85 void (*store_NMI_vector)(unsigned short *high, unsigned short *low);
Ingo Molnaref7471b2009-01-27 23:12:02 +010086 void (*inquire_remote_apic)(int apicid);
Yinghai Luc1eeb2d2009-02-16 23:02:14 -080087
88 /* apic ops */
89 u32 (*read)(u32 reg);
90 void (*write)(u32 reg, u32 v);
91 u64 (*icr_read)(void);
92 void (*icr_write)(u32 low, u32 high);
93 void (*wait_icr_idle)(void);
94 u32 (*safe_wait_icr_idle)(void);
Ingo Molnaref7471b2009-01-27 23:12:02 +010095};
96
Ingo Molnarc8d46cf2009-01-28 00:14:11 +010097extern struct genapic *apic;
Ingo Molnarced733e2009-01-27 23:15:06 +010098
Yinghai Luc1eeb2d2009-02-16 23:02:14 -080099static inline u32 apic_read(u32 reg)
100{
101 return apic->read(reg);
102}
103
104static inline void apic_write(u32 reg, u32 val)
105{
106 apic->write(reg, val);
107}
108
109static inline u64 apic_icr_read(void)
110{
111 return apic->icr_read();
112}
113
114static inline void apic_icr_write(u32 low, u32 high)
115{
116 apic->icr_write(low, high);
117}
118
119static inline void apic_wait_icr_idle(void)
120{
121 apic->wait_icr_idle();
122}
123
124static inline u32 safe_apic_wait_icr_idle(void)
125{
126 return apic->safe_wait_icr_idle();
127}
128
129
130static inline void ack_APIC_irq(void)
131{
132 /*
133 * ack_APIC_irq() actually gets compiled as a single instruction
134 * ... yummie.
135 */
136
137 /* Docs say use 0 for future compatibility */
138 apic_write(APIC_EOI, 0);
139}
140
141static inline unsigned default_get_apic_id(unsigned long x)
142{
143 unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
144
145 if (APIC_XAPIC(ver))
146 return (x >> 24) & 0xFF;
147 else
148 return (x >> 24) & 0x0F;
149}
150
Ingo Molnarabfa5842009-01-28 16:15:16 +0100151/*
152 * Warm reset vector default position:
153 */
154#define DEFAULT_TRAMPOLINE_PHYS_LOW 0x467
155#define DEFAULT_TRAMPOLINE_PHYS_HIGH 0x469
156
Ingo Molnar505deeb2009-01-27 23:23:22 +0100157#ifdef CONFIG_X86_32
Ingo Molnarced733e2009-01-27 23:15:06 +0100158extern void es7000_update_genapic_to_cluster(void);
Ingo Molnar9a6801d2009-01-28 03:18:13 +0100159#else
Ingo Molnarced733e2009-01-27 23:15:06 +0100160extern struct genapic apic_flat;
161extern struct genapic apic_physflat;
162extern struct genapic apic_x2apic_cluster;
163extern struct genapic apic_x2apic_phys;
Ingo Molnar306db032009-01-28 03:43:47 +0100164extern int default_acpi_madt_oem_check(char *, char *);
Ingo Molnarced733e2009-01-27 23:15:06 +0100165
166extern void apic_send_IPI_self(int vector);
167
168extern struct genapic apic_x2apic_uv_x;
169DECLARE_PER_CPU(int, x2apic_extra_bits);
170
Ingo Molnar72ce0162009-01-28 06:50:47 +0100171extern void default_setup_apic_routing(void);
Ingo Molnara21769a42009-01-28 06:50:47 +0100172
173extern int default_cpu_present_to_apicid(int mps_cpu);
Ingo Molnara27a6212009-01-28 12:43:18 +0100174extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid);
Ingo Molnar9a6801d2009-01-28 03:18:13 +0100175#endif
Ingo Molnarced733e2009-01-27 23:15:06 +0100176
Ingo Molnar0939e4f2009-01-28 17:16:25 +0100177static inline void default_wait_for_init_deassert(atomic_t *deassert)
178{
179 while (!atomic_read(deassert))
180 cpu_relax();
181 return;
182}
183
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +0100184extern void generic_bigsmp_probe(void);
185
186
187#ifdef CONFIG_X86_LOCAL_APIC
188
189#include <asm/smp.h>
190
191#define APIC_DFR_VALUE (APIC_DFR_FLAT)
192
193static inline const struct cpumask *default_target_cpus(void)
194{
195#ifdef CONFIG_SMP
196 return cpu_online_mask;
197#else
198 return cpumask_of(0);
199#endif
200}
201
202DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
203
204
205static inline unsigned int read_apic_id(void)
206{
207 unsigned int reg;
208
Suresh Siddha83d7aea2009-01-28 17:52:57 -0800209 reg = apic_read(APIC_ID);
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +0100210
211 return apic->get_apic_id(reg);
212}
213
214#ifdef CONFIG_X86_64
215extern void default_setup_apic_routing(void);
216#else
217
218/*
219 * Set up the logical destination ID.
220 *
221 * Intel recommends to set DFR, LDR and TPR before enabling
222 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
223 * document number 292116). So here it goes...
224 */
225extern void default_init_apic_ldr(void);
226
227static inline int default_apic_id_registered(void)
228{
229 return physid_isset(read_apic_id(), phys_cpu_present_map);
230}
231
232static inline unsigned int
233default_cpu_mask_to_apicid(const struct cpumask *cpumask)
234{
235 return cpumask_bits(cpumask)[0];
236}
237
238static inline unsigned int
239default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
240 const struct cpumask *andmask)
241{
242 unsigned long mask1 = cpumask_bits(cpumask)[0];
243 unsigned long mask2 = cpumask_bits(andmask)[0];
244 unsigned long mask3 = cpumask_bits(cpu_online_mask)[0];
245
246 return (unsigned int)(mask1 & mask2 & mask3);
247}
248
249static inline int default_phys_pkg_id(int cpuid_apic, int index_msb)
250{
251 return cpuid_apic >> index_msb;
252}
253
254static inline void default_setup_apic_routing(void)
255{
256#ifdef CONFIG_X86_IO_APIC
257 printk("Enabling APIC mode: %s. Using %d I/O APICs\n",
258 "Flat", nr_ioapics);
259#endif
260}
261
262extern int default_apicid_to_node(int logical_apicid);
263
264#endif
265
266static inline unsigned long default_check_apicid_used(physid_mask_t bitmap, int apicid)
267{
268 return physid_isset(apicid, bitmap);
269}
270
271static inline unsigned long default_check_apicid_present(int bit)
272{
273 return physid_isset(bit, phys_cpu_present_map);
274}
275
276static inline physid_mask_t default_ioapic_phys_id_map(physid_mask_t phys_map)
277{
278 return phys_map;
279}
280
281/* Mapping from cpu number to logical apicid */
282static inline int default_cpu_to_logical_apicid(int cpu)
283{
284 return 1 << cpu;
285}
286
287static inline int __default_cpu_present_to_apicid(int mps_cpu)
288{
289 if (mps_cpu < nr_cpu_ids && cpu_present(mps_cpu))
290 return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
291 else
292 return BAD_APICID;
293}
294
295static inline int
296__default_check_phys_apicid_present(int boot_cpu_physical_apicid)
297{
298 return physid_isset(boot_cpu_physical_apicid, phys_cpu_present_map);
299}
300
301#ifdef CONFIG_X86_32
302static inline int default_cpu_present_to_apicid(int mps_cpu)
303{
304 return __default_cpu_present_to_apicid(mps_cpu);
305}
306
307static inline int
308default_check_phys_apicid_present(int boot_cpu_physical_apicid)
309{
310 return __default_check_phys_apicid_present(boot_cpu_physical_apicid);
311}
312#else
313extern int default_cpu_present_to_apicid(int mps_cpu);
314extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid);
315#endif
316
317static inline physid_mask_t default_apicid_to_cpu_present(int phys_apicid)
318{
319 return physid_mask_of_physid(phys_apicid);
320}
321
322#endif /* CONFIG_X86_LOCAL_APIC */
Ingo Molnard53e2f22009-01-28 19:14:52 +0100323
Ingo Molnaref7471b2009-01-27 23:12:02 +0100324#endif /* _ASM_X86_GENAPIC_64_H */