]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/apic/io_apic.c
x86, irq: Don't block IRQ0_VECTOR..IRQ15_VECTOR's on all cpu's
[net-next-2.6.git] / arch / x86 / kernel / apic / io_apic.c
CommitLineData
1da177e4
LT
1/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
8f47e163 4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
1da177e4
LT
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
1da177e4
LT
24#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
d4057bdb 28#include <linux/pci.h>
1da177e4
LT
29#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
129f6946 32#include <linux/module.h>
1da177e4 33#include <linux/sysdev.h>
3b7d1921 34#include <linux/msi.h>
95d77884 35#include <linux/htirq.h>
7dfb7103 36#include <linux/freezer.h>
f26d6a2b 37#include <linux/kthread.h>
54168ed7 38#include <linux/jiffies.h> /* time_after() */
d4057bdb
YL
39#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
58ac1e76 44#include <linux/hpet.h>
54d5d424 45
d4057bdb 46#include <asm/idle.h>
1da177e4
LT
47#include <asm/io.h>
48#include <asm/smp.h>
6d652ea1 49#include <asm/cpu.h>
1da177e4 50#include <asm/desc.h>
d4057bdb
YL
51#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
1da177e4 54#include <asm/timer.h>
306e440d 55#include <asm/i8259.h>
3e4ff115 56#include <asm/nmi.h>
2d3fcc1c 57#include <asm/msidef.h>
8b955b0d 58#include <asm/hypertransport.h>
a4dbc34d 59#include <asm/setup.h>
d4057bdb 60#include <asm/irq_remapping.h>
58ac1e76 61#include <asm/hpet.h>
2c1b284e 62#include <asm/hw_irq.h>
1da177e4 63
7b6aa335 64#include <asm/apic.h>
1da177e4 65
32f71aff 66#define __apicdebuginit(type) static type __init
2977fb3f
CG
67#define for_each_irq_pin(entry, head) \
68 for (entry = head; entry; entry = entry->next)
32f71aff 69
1da177e4 70/*
54168ed7
IM
71 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
1da177e4
LT
73 */
74int sis_apic_bug = -1;
75
efa2559f
YL
76static DEFINE_SPINLOCK(ioapic_lock);
77static DEFINE_SPINLOCK(vector_lock);
78
1da177e4
LT
79/*
80 * # of IRQ routing registers
81 */
82int nr_ioapic_registers[MAX_IO_APICS];
83
9f640ccb 84/* I/O APIC entries */
b5ba7e6d 85struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
9f640ccb
AS
86int nr_ioapics;
87
2a4ab640
FT
88/* IO APIC gsi routing info */
89struct mp_ioapic_gsi mp_gsi_routing[MAX_IO_APICS];
90
584f734d 91/* MP IRQ source entries */
c2c21745 92struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
584f734d
AS
93
94/* # of MP IRQ source entries */
95int mp_irq_entries;
96
bc07844a
TG
97/* GSI interrupts */
98static int nr_irqs_gsi = NR_IRQS_LEGACY;
99
8732fc4b
AS
100#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
101int mp_bus_id_to_type[MAX_MP_BUSSES];
102#endif
103
104DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
105
efa2559f
YL
106int skip_ioapic_setup;
107
65a4e574
IM
108void arch_disable_smp_support(void)
109{
110#ifdef CONFIG_PCI
111 noioapicquirk = 1;
112 noioapicreroute = -1;
113#endif
114 skip_ioapic_setup = 1;
115}
116
54168ed7 117static int __init parse_noapic(char *str)
efa2559f
YL
118{
119 /* disable IO-APIC */
65a4e574 120 arch_disable_smp_support();
efa2559f
YL
121 return 0;
122}
123early_param("noapic", parse_noapic);
66759a01 124
0b8f1efa
YL
125struct irq_pin_list {
126 int apic, pin;
127 struct irq_pin_list *next;
128};
129
85ac16d0 130static struct irq_pin_list *get_one_free_irq_2_pin(int node)
0b8f1efa
YL
131{
132 struct irq_pin_list *pin;
0b8f1efa
YL
133
134 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
0b8f1efa
YL
135
136 return pin;
137}
138
a1420f39 139/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
0b8f1efa 140#ifdef CONFIG_SPARSE_IRQ
97943390 141static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
0b8f1efa 142#else
97943390 143static struct irq_cfg irq_cfgx[NR_IRQS];
0b8f1efa 144#endif
a1420f39 145
bc07844a
TG
146void __init io_apic_disable_legacy(void)
147{
148 nr_legacy_irqs = 0;
149 nr_irqs_gsi = 0;
150}
151
13a0c3c2 152int __init arch_early_irq_init(void)
8f09cd20 153{
0b8f1efa
YL
154 struct irq_cfg *cfg;
155 struct irq_desc *desc;
156 int count;
dad213ae 157 int node;
0b8f1efa 158 int i;
d6c88a50 159
0b8f1efa
YL
160 cfg = irq_cfgx;
161 count = ARRAY_SIZE(irq_cfgx);
dad213ae 162 node= cpu_to_node(boot_cpu_id);
8f09cd20 163
0b8f1efa
YL
164 for (i = 0; i < count; i++) {
165 desc = irq_to_desc(i);
166 desc->chip_data = &cfg[i];
12274e96
YL
167 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
168 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
97943390
SS
169 /*
170 * For legacy IRQ's, start with assigning irq0 to irq15 to
171 * IRQ0_VECTOR to IRQ15_VECTOR on cpu 0.
172 */
173 if (i < nr_legacy_irqs) {
174 cfg[i].vector = IRQ0_VECTOR + i;
175 cpumask_set_cpu(0, cfg[i].domain);
176 }
0b8f1efa 177 }
13a0c3c2
YL
178
179 return 0;
0b8f1efa 180}
8f09cd20 181
0b8f1efa 182#ifdef CONFIG_SPARSE_IRQ
9338ad6f 183struct irq_cfg *irq_cfg(unsigned int irq)
8f09cd20 184{
0b8f1efa
YL
185 struct irq_cfg *cfg = NULL;
186 struct irq_desc *desc;
1da177e4 187
0b8f1efa
YL
188 desc = irq_to_desc(irq);
189 if (desc)
190 cfg = desc->chip_data;
0f978f45 191
0b8f1efa 192 return cfg;
8f09cd20 193}
d6c88a50 194
85ac16d0 195static struct irq_cfg *get_one_free_irq_cfg(int node)
8f09cd20 196{
0b8f1efa 197 struct irq_cfg *cfg;
0f978f45 198
0b8f1efa 199 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
22f65d31 200 if (cfg) {
79f55997 201 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
22f65d31
MT
202 kfree(cfg);
203 cfg = NULL;
79f55997 204 } else if (!zalloc_cpumask_var_node(&cfg->old_domain,
80855f73 205 GFP_ATOMIC, node)) {
22f65d31
MT
206 free_cpumask_var(cfg->domain);
207 kfree(cfg);
208 cfg = NULL;
22f65d31
MT
209 }
210 }
0f978f45 211
0b8f1efa 212 return cfg;
8f09cd20
YL
213}
214
85ac16d0 215int arch_init_chip_data(struct irq_desc *desc, int node)
0f978f45 216{
0b8f1efa 217 struct irq_cfg *cfg;
d6c88a50 218
0b8f1efa
YL
219 cfg = desc->chip_data;
220 if (!cfg) {
85ac16d0 221 desc->chip_data = get_one_free_irq_cfg(node);
0b8f1efa
YL
222 if (!desc->chip_data) {
223 printk(KERN_ERR "can not alloc irq_cfg\n");
224 BUG_ON(1);
225 }
226 }
1da177e4 227
13a0c3c2 228 return 0;
0b8f1efa 229}
0f978f45 230
fcef5911 231/* for move_irq_desc */
48a1b10a 232static void
85ac16d0 233init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
0f978f45 234{
48a1b10a
YL
235 struct irq_pin_list *old_entry, *head, *tail, *entry;
236
237 cfg->irq_2_pin = NULL;
238 old_entry = old_cfg->irq_2_pin;
239 if (!old_entry)
240 return;
0f978f45 241
85ac16d0 242 entry = get_one_free_irq_2_pin(node);
48a1b10a
YL
243 if (!entry)
244 return;
0f978f45 245
48a1b10a
YL
246 entry->apic = old_entry->apic;
247 entry->pin = old_entry->pin;
248 head = entry;
249 tail = entry;
250 old_entry = old_entry->next;
251 while (old_entry) {
85ac16d0 252 entry = get_one_free_irq_2_pin(node);
48a1b10a
YL
253 if (!entry) {
254 entry = head;
255 while (entry) {
256 head = entry->next;
257 kfree(entry);
258 entry = head;
259 }
260 /* still use the old one */
261 return;
262 }
263 entry->apic = old_entry->apic;
264 entry->pin = old_entry->pin;
265 tail->next = entry;
266 tail = entry;
267 old_entry = old_entry->next;
268 }
0f978f45 269
48a1b10a
YL
270 tail->next = NULL;
271 cfg->irq_2_pin = head;
0f978f45 272}
0f978f45 273
48a1b10a 274static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
0f978f45 275{
48a1b10a 276 struct irq_pin_list *entry, *next;
0f978f45 277
48a1b10a
YL
278 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
279 return;
301e6190 280
48a1b10a 281 entry = old_cfg->irq_2_pin;
0f978f45 282
48a1b10a
YL
283 while (entry) {
284 next = entry->next;
285 kfree(entry);
286 entry = next;
287 }
288 old_cfg->irq_2_pin = NULL;
0f978f45 289}
0f978f45 290
48a1b10a 291void arch_init_copy_chip_data(struct irq_desc *old_desc,
85ac16d0 292 struct irq_desc *desc, int node)
0f978f45 293{
48a1b10a
YL
294 struct irq_cfg *cfg;
295 struct irq_cfg *old_cfg;
0f978f45 296
85ac16d0 297 cfg = get_one_free_irq_cfg(node);
301e6190 298
48a1b10a
YL
299 if (!cfg)
300 return;
301
302 desc->chip_data = cfg;
303
304 old_cfg = old_desc->chip_data;
305
306 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
307
85ac16d0 308 init_copy_irq_2_pin(old_cfg, cfg, node);
0f978f45 309}
1da177e4 310
48a1b10a
YL
311static void free_irq_cfg(struct irq_cfg *old_cfg)
312{
313 kfree(old_cfg);
314}
315
316void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
317{
318 struct irq_cfg *old_cfg, *cfg;
319
320 old_cfg = old_desc->chip_data;
321 cfg = desc->chip_data;
322
323 if (old_cfg == cfg)
324 return;
325
326 if (old_cfg) {
327 free_irq_2_pin(old_cfg, cfg);
328 free_irq_cfg(old_cfg);
329 old_desc->chip_data = NULL;
330 }
331}
fcef5911 332/* end for move_irq_desc */
48a1b10a 333
0b8f1efa 334#else
9338ad6f 335struct irq_cfg *irq_cfg(unsigned int irq)
0b8f1efa
YL
336{
337 return irq < nr_irqs ? irq_cfgx + irq : NULL;
0f978f45 338}
1da177e4 339
0b8f1efa
YL
340#endif
341
130fe05d
LT
342struct io_apic {
343 unsigned int index;
344 unsigned int unused[3];
345 unsigned int data;
0280f7c4
SS
346 unsigned int unused2[11];
347 unsigned int eoi;
130fe05d
LT
348};
349
350static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
351{
352 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
b5ba7e6d 353 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
130fe05d
LT
354}
355
0280f7c4
SS
356static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
357{
358 struct io_apic __iomem *io_apic = io_apic_base(apic);
359 writel(vector, &io_apic->eoi);
360}
361
130fe05d
LT
362static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
363{
364 struct io_apic __iomem *io_apic = io_apic_base(apic);
365 writel(reg, &io_apic->index);
366 return readl(&io_apic->data);
367}
368
369static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
370{
371 struct io_apic __iomem *io_apic = io_apic_base(apic);
372 writel(reg, &io_apic->index);
373 writel(value, &io_apic->data);
374}
375
376/*
377 * Re-write a value: to be used for read-modify-write
378 * cycles where the read already set up the index register.
379 *
380 * Older SiS APIC requires we rewrite the index register
381 */
382static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
383{
54168ed7 384 struct io_apic __iomem *io_apic = io_apic_base(apic);
d6c88a50
TG
385
386 if (sis_apic_bug)
387 writel(reg, &io_apic->index);
130fe05d
LT
388 writel(value, &io_apic->data);
389}
390
3145e941 391static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
047c8fdb
YL
392{
393 struct irq_pin_list *entry;
394 unsigned long flags;
047c8fdb
YL
395
396 spin_lock_irqsave(&ioapic_lock, flags);
2977fb3f 397 for_each_irq_pin(entry, cfg->irq_2_pin) {
047c8fdb
YL
398 unsigned int reg;
399 int pin;
400
047c8fdb
YL
401 pin = entry->pin;
402 reg = io_apic_read(entry->apic, 0x10 + pin*2);
403 /* Is the remote IRR bit set? */
404 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
405 spin_unlock_irqrestore(&ioapic_lock, flags);
406 return true;
407 }
047c8fdb
YL
408 }
409 spin_unlock_irqrestore(&ioapic_lock, flags);
410
411 return false;
412}
047c8fdb 413
cf4c6a2f
AK
414union entry_union {
415 struct { u32 w1, w2; };
416 struct IO_APIC_route_entry entry;
417};
418
419static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
420{
421 union entry_union eu;
422 unsigned long flags;
423 spin_lock_irqsave(&ioapic_lock, flags);
424 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
425 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
426 spin_unlock_irqrestore(&ioapic_lock, flags);
427 return eu.entry;
428}
429
f9dadfa7
LT
430/*
431 * When we write a new IO APIC routing entry, we need to write the high
432 * word first! If the mask bit in the low word is clear, we will enable
433 * the interrupt, and we need to make sure the entry is fully populated
434 * before that happens.
435 */
d15512f4
AK
436static void
437__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
cf4c6a2f 438{
50a8d4d2
F
439 union entry_union eu = {{0, 0}};
440
cf4c6a2f 441 eu.entry = e;
f9dadfa7
LT
442 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
443 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
d15512f4
AK
444}
445
ca97ab90 446void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
d15512f4
AK
447{
448 unsigned long flags;
449 spin_lock_irqsave(&ioapic_lock, flags);
450 __ioapic_write_entry(apic, pin, e);
f9dadfa7
LT
451 spin_unlock_irqrestore(&ioapic_lock, flags);
452}
453
454/*
455 * When we mask an IO APIC routing entry, we need to write the low
456 * word first, in order to set the mask bit before we change the
457 * high bits!
458 */
459static void ioapic_mask_entry(int apic, int pin)
460{
461 unsigned long flags;
462 union entry_union eu = { .entry.mask = 1 };
463
cf4c6a2f
AK
464 spin_lock_irqsave(&ioapic_lock, flags);
465 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
466 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
467 spin_unlock_irqrestore(&ioapic_lock, flags);
468}
469
1da177e4
LT
470/*
471 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
472 * shared ISA-space IRQs, so we have to support them. We are super
473 * fast in the common case, and fast for shared ISA-space IRQs.
474 */
f3d1915a
CG
475static int
476add_pin_to_irq_node_nopanic(struct irq_cfg *cfg, int node, int apic, int pin)
1da177e4 477{
2977fb3f 478 struct irq_pin_list **last, *entry;
0f978f45 479
2977fb3f
CG
480 /* don't allow duplicates */
481 last = &cfg->irq_2_pin;
482 for_each_irq_pin(entry, cfg->irq_2_pin) {
0f978f45 483 if (entry->apic == apic && entry->pin == pin)
f3d1915a 484 return 0;
2977fb3f 485 last = &entry->next;
1da177e4 486 }
0f978f45 487
875e68ec 488 entry = get_one_free_irq_2_pin(node);
a7428cd2 489 if (!entry) {
f3d1915a
CG
490 printk(KERN_ERR "can not alloc irq_pin_list (%d,%d,%d)\n",
491 node, apic, pin);
492 return -ENOMEM;
a7428cd2 493 }
1da177e4
LT
494 entry->apic = apic;
495 entry->pin = pin;
875e68ec 496
2977fb3f 497 *last = entry;
f3d1915a
CG
498 return 0;
499}
500
501static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
502{
503 if (add_pin_to_irq_node_nopanic(cfg, node, apic, pin))
504 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
1da177e4
LT
505}
506
507/*
508 * Reroute an IRQ to a different pin.
509 */
85ac16d0 510static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
4eea6fff
JF
511 int oldapic, int oldpin,
512 int newapic, int newpin)
1da177e4 513{
535b6429 514 struct irq_pin_list *entry;
1da177e4 515
2977fb3f 516 for_each_irq_pin(entry, cfg->irq_2_pin) {
1da177e4
LT
517 if (entry->apic == oldapic && entry->pin == oldpin) {
518 entry->apic = newapic;
519 entry->pin = newpin;
0f978f45 520 /* every one is different, right? */
4eea6fff 521 return;
0f978f45 522 }
1da177e4 523 }
0f978f45 524
4eea6fff
JF
525 /* old apic/pin didn't exist, so just add new ones */
526 add_pin_to_irq_node(cfg, node, newapic, newpin);
1da177e4
LT
527}
528
c29d9db3
SS
529static void __io_apic_modify_irq(struct irq_pin_list *entry,
530 int mask_and, int mask_or,
531 void (*final)(struct irq_pin_list *entry))
532{
533 unsigned int reg, pin;
534
535 pin = entry->pin;
536 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
537 reg &= mask_and;
538 reg |= mask_or;
539 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
540 if (final)
541 final(entry);
542}
543
2f210deb
JF
544static void io_apic_modify_irq(struct irq_cfg *cfg,
545 int mask_and, int mask_or,
546 void (*final)(struct irq_pin_list *entry))
87783be4 547{
87783be4 548 struct irq_pin_list *entry;
047c8fdb 549
c29d9db3
SS
550 for_each_irq_pin(entry, cfg->irq_2_pin)
551 __io_apic_modify_irq(entry, mask_and, mask_or, final);
552}
553
554static void __mask_and_edge_IO_APIC_irq(struct irq_pin_list *entry)
555{
556 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_LEVEL_TRIGGER,
557 IO_APIC_REDIR_MASKED, NULL);
558}
559
560static void __unmask_and_level_IO_APIC_irq(struct irq_pin_list *entry)
561{
562 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_MASKED,
563 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
87783be4 564}
047c8fdb 565
3145e941 566static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 567{
3145e941 568 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
87783be4 569}
047c8fdb 570
7f3e632f 571static void io_apic_sync(struct irq_pin_list *entry)
1da177e4 572{
87783be4
CG
573 /*
574 * Synchronize the IO-APIC and the CPU by doing
575 * a dummy read from the IO-APIC
576 */
577 struct io_apic __iomem *io_apic;
578 io_apic = io_apic_base(entry->apic);
4e738e2f 579 readl(&io_apic->data);
1da177e4
LT
580}
581
3145e941 582static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 583{
3145e941 584 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
87783be4 585}
1da177e4 586
3145e941 587static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
1da177e4 588{
3145e941 589 struct irq_cfg *cfg = desc->chip_data;
1da177e4
LT
590 unsigned long flags;
591
3145e941
YL
592 BUG_ON(!cfg);
593
1da177e4 594 spin_lock_irqsave(&ioapic_lock, flags);
3145e941 595 __mask_IO_APIC_irq(cfg);
1da177e4
LT
596 spin_unlock_irqrestore(&ioapic_lock, flags);
597}
598
3145e941 599static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
1da177e4 600{
3145e941 601 struct irq_cfg *cfg = desc->chip_data;
1da177e4
LT
602 unsigned long flags;
603
604 spin_lock_irqsave(&ioapic_lock, flags);
3145e941 605 __unmask_IO_APIC_irq(cfg);
1da177e4
LT
606 spin_unlock_irqrestore(&ioapic_lock, flags);
607}
608
3145e941
YL
609static void mask_IO_APIC_irq(unsigned int irq)
610{
611 struct irq_desc *desc = irq_to_desc(irq);
612
613 mask_IO_APIC_irq_desc(desc);
614}
615static void unmask_IO_APIC_irq(unsigned int irq)
616{
617 struct irq_desc *desc = irq_to_desc(irq);
618
619 unmask_IO_APIC_irq_desc(desc);
620}
621
1da177e4
LT
622static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
623{
624 struct IO_APIC_route_entry entry;
36062448 625
1da177e4 626 /* Check delivery_mode to be sure we're not clearing an SMI pin */
cf4c6a2f 627 entry = ioapic_read_entry(apic, pin);
1da177e4
LT
628 if (entry.delivery_mode == dest_SMI)
629 return;
1da177e4
LT
630 /*
631 * Disable it in the IO-APIC irq-routing table:
632 */
f9dadfa7 633 ioapic_mask_entry(apic, pin);
1da177e4
LT
634}
635
54168ed7 636static void clear_IO_APIC (void)
1da177e4
LT
637{
638 int apic, pin;
639
640 for (apic = 0; apic < nr_ioapics; apic++)
641 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
642 clear_IO_APIC_pin(apic, pin);
643}
644
54168ed7 645#ifdef CONFIG_X86_32
1da177e4
LT
646/*
647 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
648 * specific CPU-side IRQs.
649 */
650
651#define MAX_PIRQS 8
3bd25d0f
YL
652static int pirq_entries[MAX_PIRQS] = {
653 [0 ... MAX_PIRQS - 1] = -1
654};
1da177e4 655
1da177e4
LT
656static int __init ioapic_pirq_setup(char *str)
657{
658 int i, max;
659 int ints[MAX_PIRQS+1];
660
661 get_options(str, ARRAY_SIZE(ints), ints);
662
1da177e4
LT
663 apic_printk(APIC_VERBOSE, KERN_INFO
664 "PIRQ redirection, working around broken MP-BIOS.\n");
665 max = MAX_PIRQS;
666 if (ints[0] < MAX_PIRQS)
667 max = ints[0];
668
669 for (i = 0; i < max; i++) {
670 apic_printk(APIC_VERBOSE, KERN_DEBUG
671 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
672 /*
673 * PIRQs are mapped upside down, usually.
674 */
675 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
676 }
677 return 1;
678}
679
680__setup("pirq=", ioapic_pirq_setup);
54168ed7
IM
681#endif /* CONFIG_X86_32 */
682
b24696bc
FY
683struct IO_APIC_route_entry **alloc_ioapic_entries(void)
684{
685 int apic;
686 struct IO_APIC_route_entry **ioapic_entries;
687
688 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
689 GFP_ATOMIC);
690 if (!ioapic_entries)
691 return 0;
692
693 for (apic = 0; apic < nr_ioapics; apic++) {
694 ioapic_entries[apic] =
695 kzalloc(sizeof(struct IO_APIC_route_entry) *
696 nr_ioapic_registers[apic], GFP_ATOMIC);
697 if (!ioapic_entries[apic])
698 goto nomem;
699 }
700
701 return ioapic_entries;
702
703nomem:
704 while (--apic >= 0)
705 kfree(ioapic_entries[apic]);
706 kfree(ioapic_entries);
707
708 return 0;
709}
54168ed7
IM
710
711/*
05c3dc2c 712 * Saves all the IO-APIC RTE's
54168ed7 713 */
b24696bc 714int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
54168ed7 715{
54168ed7
IM
716 int apic, pin;
717
b24696bc
FY
718 if (!ioapic_entries)
719 return -ENOMEM;
54168ed7
IM
720
721 for (apic = 0; apic < nr_ioapics; apic++) {
b24696bc
FY
722 if (!ioapic_entries[apic])
723 return -ENOMEM;
54168ed7 724
05c3dc2c 725 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
b24696bc 726 ioapic_entries[apic][pin] =
54168ed7 727 ioapic_read_entry(apic, pin);
b24696bc 728 }
5ffa4eb2 729
54168ed7
IM
730 return 0;
731}
732
b24696bc
FY
733/*
734 * Mask all IO APIC entries.
735 */
736void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
05c3dc2c
SS
737{
738 int apic, pin;
739
b24696bc
FY
740 if (!ioapic_entries)
741 return;
742
05c3dc2c 743 for (apic = 0; apic < nr_ioapics; apic++) {
b24696bc 744 if (!ioapic_entries[apic])
05c3dc2c 745 break;
b24696bc 746
05c3dc2c
SS
747 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
748 struct IO_APIC_route_entry entry;
749
b24696bc 750 entry = ioapic_entries[apic][pin];
05c3dc2c
SS
751 if (!entry.mask) {
752 entry.mask = 1;
753 ioapic_write_entry(apic, pin, entry);
754 }
755 }
756 }
757}
758
b24696bc
FY
759/*
760 * Restore IO APIC entries which was saved in ioapic_entries.
761 */
762int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
54168ed7
IM
763{
764 int apic, pin;
765
b24696bc
FY
766 if (!ioapic_entries)
767 return -ENOMEM;
768
5ffa4eb2 769 for (apic = 0; apic < nr_ioapics; apic++) {
b24696bc
FY
770 if (!ioapic_entries[apic])
771 return -ENOMEM;
772
54168ed7
IM
773 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
774 ioapic_write_entry(apic, pin,
b24696bc 775 ioapic_entries[apic][pin]);
5ffa4eb2 776 }
b24696bc 777 return 0;
54168ed7
IM
778}
779
b24696bc
FY
780void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
781{
782 int apic;
783
784 for (apic = 0; apic < nr_ioapics; apic++)
785 kfree(ioapic_entries[apic]);
786
787 kfree(ioapic_entries);
54168ed7 788}
1da177e4
LT
789
790/*
791 * Find the IRQ entry number of a certain pin.
792 */
793static int find_irq_entry(int apic, int pin, int type)
794{
795 int i;
796
797 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
798 if (mp_irqs[i].irqtype == type &&
799 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
800 mp_irqs[i].dstapic == MP_APIC_ALL) &&
801 mp_irqs[i].dstirq == pin)
1da177e4
LT
802 return i;
803
804 return -1;
805}
806
807/*
808 * Find the pin to which IRQ[irq] (ISA) is connected
809 */
fcfd636a 810static int __init find_isa_irq_pin(int irq, int type)
1da177e4
LT
811{
812 int i;
813
814 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 815 int lbus = mp_irqs[i].srcbus;
1da177e4 816
d27e2b8e 817 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
818 (mp_irqs[i].irqtype == type) &&
819 (mp_irqs[i].srcbusirq == irq))
1da177e4 820
c2c21745 821 return mp_irqs[i].dstirq;
1da177e4
LT
822 }
823 return -1;
824}
825
fcfd636a
EB
826static int __init find_isa_irq_apic(int irq, int type)
827{
828 int i;
829
830 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 831 int lbus = mp_irqs[i].srcbus;
fcfd636a 832
73b2961b 833 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
834 (mp_irqs[i].irqtype == type) &&
835 (mp_irqs[i].srcbusirq == irq))
fcfd636a
EB
836 break;
837 }
838 if (i < mp_irq_entries) {
839 int apic;
54168ed7 840 for(apic = 0; apic < nr_ioapics; apic++) {
c2c21745 841 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
fcfd636a
EB
842 return apic;
843 }
844 }
845
846 return -1;
847}
848
c0a282c2 849#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1da177e4
LT
850/*
851 * EISA Edge/Level control register, ELCR
852 */
853static int EISA_ELCR(unsigned int irq)
854{
bc07844a 855 if (irq < nr_legacy_irqs) {
1da177e4
LT
856 unsigned int port = 0x4d0 + (irq >> 3);
857 return (inb(port) >> (irq & 7)) & 1;
858 }
859 apic_printk(APIC_VERBOSE, KERN_INFO
860 "Broken MPtable reports ISA irq %d\n", irq);
861 return 0;
862}
54168ed7 863
c0a282c2 864#endif
1da177e4 865
6728801d
AS
866/* ISA interrupts are always polarity zero edge triggered,
867 * when listed as conforming in the MP table. */
868
869#define default_ISA_trigger(idx) (0)
870#define default_ISA_polarity(idx) (0)
871
1da177e4
LT
872/* EISA interrupts are always polarity zero and can be edge or level
873 * trigger depending on the ELCR value. If an interrupt is listed as
874 * EISA conforming in the MP table, that means its trigger type must
875 * be read in from the ELCR */
876
c2c21745 877#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
6728801d 878#define default_EISA_polarity(idx) default_ISA_polarity(idx)
1da177e4
LT
879
880/* PCI interrupts are always polarity one level triggered,
881 * when listed as conforming in the MP table. */
882
883#define default_PCI_trigger(idx) (1)
884#define default_PCI_polarity(idx) (1)
885
886/* MCA interrupts are always polarity zero level triggered,
887 * when listed as conforming in the MP table. */
888
889#define default_MCA_trigger(idx) (1)
6728801d 890#define default_MCA_polarity(idx) default_ISA_polarity(idx)
1da177e4 891
61fd47e0 892static int MPBIOS_polarity(int idx)
1da177e4 893{
c2c21745 894 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
895 int polarity;
896
897 /*
898 * Determine IRQ line polarity (high active or low active):
899 */
c2c21745 900 switch (mp_irqs[idx].irqflag & 3)
36062448 901 {
54168ed7
IM
902 case 0: /* conforms, ie. bus-type dependent polarity */
903 if (test_bit(bus, mp_bus_not_pci))
904 polarity = default_ISA_polarity(idx);
905 else
906 polarity = default_PCI_polarity(idx);
907 break;
908 case 1: /* high active */
909 {
910 polarity = 0;
911 break;
912 }
913 case 2: /* reserved */
914 {
915 printk(KERN_WARNING "broken BIOS!!\n");
916 polarity = 1;
917 break;
918 }
919 case 3: /* low active */
920 {
921 polarity = 1;
922 break;
923 }
924 default: /* invalid */
925 {
926 printk(KERN_WARNING "broken BIOS!!\n");
927 polarity = 1;
928 break;
929 }
1da177e4
LT
930 }
931 return polarity;
932}
933
934static int MPBIOS_trigger(int idx)
935{
c2c21745 936 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
937 int trigger;
938
939 /*
940 * Determine IRQ trigger mode (edge or level sensitive):
941 */
c2c21745 942 switch ((mp_irqs[idx].irqflag>>2) & 3)
1da177e4 943 {
54168ed7
IM
944 case 0: /* conforms, ie. bus-type dependent */
945 if (test_bit(bus, mp_bus_not_pci))
946 trigger = default_ISA_trigger(idx);
947 else
948 trigger = default_PCI_trigger(idx);
c0a282c2 949#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
54168ed7
IM
950 switch (mp_bus_id_to_type[bus]) {
951 case MP_BUS_ISA: /* ISA pin */
952 {
953 /* set before the switch */
954 break;
955 }
956 case MP_BUS_EISA: /* EISA pin */
957 {
958 trigger = default_EISA_trigger(idx);
959 break;
960 }
961 case MP_BUS_PCI: /* PCI pin */
962 {
963 /* set before the switch */
964 break;
965 }
966 case MP_BUS_MCA: /* MCA pin */
967 {
968 trigger = default_MCA_trigger(idx);
969 break;
970 }
971 default:
972 {
973 printk(KERN_WARNING "broken BIOS!!\n");
974 trigger = 1;
975 break;
976 }
977 }
978#endif
1da177e4 979 break;
54168ed7 980 case 1: /* edge */
1da177e4 981 {
54168ed7 982 trigger = 0;
1da177e4
LT
983 break;
984 }
54168ed7 985 case 2: /* reserved */
1da177e4 986 {
54168ed7
IM
987 printk(KERN_WARNING "broken BIOS!!\n");
988 trigger = 1;
1da177e4
LT
989 break;
990 }
54168ed7 991 case 3: /* level */
1da177e4 992 {
54168ed7 993 trigger = 1;
1da177e4
LT
994 break;
995 }
54168ed7 996 default: /* invalid */
1da177e4
LT
997 {
998 printk(KERN_WARNING "broken BIOS!!\n");
54168ed7 999 trigger = 0;
1da177e4
LT
1000 break;
1001 }
1002 }
1003 return trigger;
1004}
1005
1006static inline int irq_polarity(int idx)
1007{
1008 return MPBIOS_polarity(idx);
1009}
1010
1011static inline int irq_trigger(int idx)
1012{
1013 return MPBIOS_trigger(idx);
1014}
1015
efa2559f 1016int (*ioapic_renumber_irq)(int ioapic, int irq);
1da177e4
LT
1017static int pin_2_irq(int idx, int apic, int pin)
1018{
1019 int irq, i;
c2c21745 1020 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
1021
1022 /*
1023 * Debugging check, we are in big trouble if this message pops up!
1024 */
c2c21745 1025 if (mp_irqs[idx].dstirq != pin)
1da177e4
LT
1026 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1027
54168ed7 1028 if (test_bit(bus, mp_bus_not_pci)) {
c2c21745 1029 irq = mp_irqs[idx].srcbusirq;
54168ed7 1030 } else {
643befed
AS
1031 /*
1032 * PCI IRQs are mapped in order
1033 */
1034 i = irq = 0;
1035 while (i < apic)
1036 irq += nr_ioapic_registers[i++];
1037 irq += pin;
d6c88a50 1038 /*
54168ed7
IM
1039 * For MPS mode, so far only needed by ES7000 platform
1040 */
d6c88a50
TG
1041 if (ioapic_renumber_irq)
1042 irq = ioapic_renumber_irq(apic, irq);
1da177e4
LT
1043 }
1044
54168ed7 1045#ifdef CONFIG_X86_32
1da177e4
LT
1046 /*
1047 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1048 */
1049 if ((pin >= 16) && (pin <= 23)) {
1050 if (pirq_entries[pin-16] != -1) {
1051 if (!pirq_entries[pin-16]) {
1052 apic_printk(APIC_VERBOSE, KERN_DEBUG
1053 "disabling PIRQ%d\n", pin-16);
1054 } else {
1055 irq = pirq_entries[pin-16];
1056 apic_printk(APIC_VERBOSE, KERN_DEBUG
1057 "using PIRQ%d -> IRQ %d\n",
1058 pin-16, irq);
1059 }
1060 }
1061 }
54168ed7
IM
1062#endif
1063
1da177e4
LT
1064 return irq;
1065}
1066
e20c06fd
YL
1067/*
1068 * Find a specific PCI IRQ entry.
1069 * Not an __init, possibly needed by modules
1070 */
1071int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
e5198075 1072 struct io_apic_irq_attr *irq_attr)
e20c06fd
YL
1073{
1074 int apic, i, best_guess = -1;
1075
1076 apic_printk(APIC_DEBUG,
1077 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1078 bus, slot, pin);
1079 if (test_bit(bus, mp_bus_not_pci)) {
1080 apic_printk(APIC_VERBOSE,
1081 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1082 return -1;
1083 }
1084 for (i = 0; i < mp_irq_entries; i++) {
1085 int lbus = mp_irqs[i].srcbus;
1086
1087 for (apic = 0; apic < nr_ioapics; apic++)
1088 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1089 mp_irqs[i].dstapic == MP_APIC_ALL)
1090 break;
1091
1092 if (!test_bit(lbus, mp_bus_not_pci) &&
1093 !mp_irqs[i].irqtype &&
1094 (bus == lbus) &&
1095 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1096 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1097
1098 if (!(apic || IO_APIC_IRQ(irq)))
1099 continue;
1100
1101 if (pin == (mp_irqs[i].srcbusirq & 3)) {
e5198075
YL
1102 set_io_apic_irq_attr(irq_attr, apic,
1103 mp_irqs[i].dstirq,
1104 irq_trigger(i),
1105 irq_polarity(i));
e20c06fd
YL
1106 return irq;
1107 }
1108 /*
1109 * Use the first all-but-pin matching entry as a
1110 * best-guess fuzzy result for broken mptables.
1111 */
1112 if (best_guess < 0) {
e5198075
YL
1113 set_io_apic_irq_attr(irq_attr, apic,
1114 mp_irqs[i].dstirq,
1115 irq_trigger(i),
1116 irq_polarity(i));
e20c06fd
YL
1117 best_guess = irq;
1118 }
1119 }
1120 }
1121 return best_guess;
1122}
1123EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1124
497c9a19
YL
1125void lock_vector_lock(void)
1126{
1127 /* Used to the online set of cpus does not change
1128 * during assign_irq_vector.
1129 */
1130 spin_lock(&vector_lock);
1131}
1da177e4 1132
497c9a19 1133void unlock_vector_lock(void)
1da177e4 1134{
497c9a19
YL
1135 spin_unlock(&vector_lock);
1136}
1da177e4 1137
e7986739
MT
1138static int
1139__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
497c9a19 1140{
047c8fdb
YL
1141 /*
1142 * NOTE! The local APIC isn't very good at handling
1143 * multiple interrupts at the same interrupt level.
1144 * As the interrupt level is determined by taking the
1145 * vector number and shifting that right by 4, we
1146 * want to spread these out a bit so that they don't
1147 * all fall in the same interrupt level.
1148 *
1149 * Also, we've got to be careful not to trash gate
1150 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1151 */
6579b474 1152 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
ea943966 1153 static int current_offset = VECTOR_OFFSET_START % 8;
54168ed7 1154 unsigned int old_vector;
22f65d31
MT
1155 int cpu, err;
1156 cpumask_var_t tmp_mask;
ace80ab7 1157
23359a88 1158 if (cfg->move_in_progress)
54168ed7 1159 return -EBUSY;
0a1ad60d 1160
22f65d31
MT
1161 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1162 return -ENOMEM;
ace80ab7 1163
54168ed7
IM
1164 old_vector = cfg->vector;
1165 if (old_vector) {
22f65d31
MT
1166 cpumask_and(tmp_mask, mask, cpu_online_mask);
1167 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1168 if (!cpumask_empty(tmp_mask)) {
1169 free_cpumask_var(tmp_mask);
54168ed7 1170 return 0;
22f65d31 1171 }
54168ed7 1172 }
497c9a19 1173
e7986739 1174 /* Only try and allocate irqs on cpus that are present */
22f65d31
MT
1175 err = -ENOSPC;
1176 for_each_cpu_and(cpu, mask, cpu_online_mask) {
54168ed7
IM
1177 int new_cpu;
1178 int vector, offset;
497c9a19 1179
e2d40b18 1180 apic->vector_allocation_domain(cpu, tmp_mask);
497c9a19 1181
54168ed7
IM
1182 vector = current_vector;
1183 offset = current_offset;
497c9a19 1184next:
54168ed7
IM
1185 vector += 8;
1186 if (vector >= first_system_vector) {
e7986739 1187 /* If out of vectors on large boxen, must share them. */
54168ed7 1188 offset = (offset + 1) % 8;
6579b474 1189 vector = FIRST_EXTERNAL_VECTOR + offset;
54168ed7
IM
1190 }
1191 if (unlikely(current_vector == vector))
1192 continue;
b77b881f
YL
1193
1194 if (test_bit(vector, used_vectors))
54168ed7 1195 goto next;
b77b881f 1196
22f65d31 1197 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
54168ed7
IM
1198 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1199 goto next;
1200 /* Found one! */
1201 current_vector = vector;
1202 current_offset = offset;
1203 if (old_vector) {
1204 cfg->move_in_progress = 1;
22f65d31 1205 cpumask_copy(cfg->old_domain, cfg->domain);
7a959cff 1206 }
22f65d31 1207 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
54168ed7
IM
1208 per_cpu(vector_irq, new_cpu)[vector] = irq;
1209 cfg->vector = vector;
22f65d31
MT
1210 cpumask_copy(cfg->domain, tmp_mask);
1211 err = 0;
1212 break;
54168ed7 1213 }
22f65d31
MT
1214 free_cpumask_var(tmp_mask);
1215 return err;
497c9a19
YL
1216}
1217
9338ad6f 1218int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
497c9a19
YL
1219{
1220 int err;
ace80ab7 1221 unsigned long flags;
ace80ab7
EB
1222
1223 spin_lock_irqsave(&vector_lock, flags);
3145e941 1224 err = __assign_irq_vector(irq, cfg, mask);
26a3c49c 1225 spin_unlock_irqrestore(&vector_lock, flags);
497c9a19
YL
1226 return err;
1227}
1228
3145e941 1229static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
497c9a19 1230{
497c9a19
YL
1231 int cpu, vector;
1232
497c9a19
YL
1233 BUG_ON(!cfg->vector);
1234
1235 vector = cfg->vector;
22f65d31 1236 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
497c9a19
YL
1237 per_cpu(vector_irq, cpu)[vector] = -1;
1238
1239 cfg->vector = 0;
22f65d31 1240 cpumask_clear(cfg->domain);
0ca4b6b0
MW
1241
1242 if (likely(!cfg->move_in_progress))
1243 return;
22f65d31 1244 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
0ca4b6b0
MW
1245 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1246 vector++) {
1247 if (per_cpu(vector_irq, cpu)[vector] != irq)
1248 continue;
1249 per_cpu(vector_irq, cpu)[vector] = -1;
1250 break;
1251 }
1252 }
1253 cfg->move_in_progress = 0;
497c9a19
YL
1254}
1255
1256void __setup_vector_irq(int cpu)
1257{
1258 /* Initialize vector_irq on a new cpu */
1259 /* This function must be called with vector_lock held */
1260 int irq, vector;
1261 struct irq_cfg *cfg;
0b8f1efa 1262 struct irq_desc *desc;
497c9a19
YL
1263
1264 /* Mark the inuse vectors */
0b8f1efa 1265 for_each_irq_desc(irq, desc) {
0b8f1efa 1266 cfg = desc->chip_data;
22f65d31 1267 if (!cpumask_test_cpu(cpu, cfg->domain))
497c9a19
YL
1268 continue;
1269 vector = cfg->vector;
497c9a19
YL
1270 per_cpu(vector_irq, cpu)[vector] = irq;
1271 }
1272 /* Mark the free vectors */
1273 for (vector = 0; vector < NR_VECTORS; ++vector) {
1274 irq = per_cpu(vector_irq, cpu)[vector];
1275 if (irq < 0)
1276 continue;
1277
1278 cfg = irq_cfg(irq);
22f65d31 1279 if (!cpumask_test_cpu(cpu, cfg->domain))
497c9a19 1280 per_cpu(vector_irq, cpu)[vector] = -1;
54168ed7 1281 }
1da177e4 1282}
3fde6900 1283
f5b9ed7a 1284static struct irq_chip ioapic_chip;
54168ed7 1285static struct irq_chip ir_ioapic_chip;
1da177e4 1286
54168ed7
IM
1287#define IOAPIC_AUTO -1
1288#define IOAPIC_EDGE 0
1289#define IOAPIC_LEVEL 1
1da177e4 1290
047c8fdb 1291#ifdef CONFIG_X86_32
1d025192
YL
1292static inline int IO_APIC_irq_trigger(int irq)
1293{
d6c88a50 1294 int apic, idx, pin;
1d025192 1295
d6c88a50
TG
1296 for (apic = 0; apic < nr_ioapics; apic++) {
1297 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1298 idx = find_irq_entry(apic, pin, mp_INT);
1299 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1300 return irq_trigger(idx);
1301 }
1302 }
1303 /*
54168ed7
IM
1304 * nonexistent IRQs are edge default
1305 */
d6c88a50 1306 return 0;
1d025192 1307}
047c8fdb
YL
1308#else
1309static inline int IO_APIC_irq_trigger(int irq)
1310{
54168ed7 1311 return 1;
047c8fdb
YL
1312}
1313#endif
1d025192 1314
3145e941 1315static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
1da177e4 1316{
199751d7 1317
6ebcc00e 1318 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
047c8fdb 1319 trigger == IOAPIC_LEVEL)
08678b08 1320 desc->status |= IRQ_LEVEL;
047c8fdb
YL
1321 else
1322 desc->status &= ~IRQ_LEVEL;
1323
54168ed7
IM
1324 if (irq_remapped(irq)) {
1325 desc->status |= IRQ_MOVE_PCNTXT;
1326 if (trigger)
1327 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1328 handle_fasteoi_irq,
1329 "fasteoi");
1330 else
1331 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1332 handle_edge_irq, "edge");
1333 return;
1334 }
29b61be6 1335
047c8fdb
YL
1336 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1337 trigger == IOAPIC_LEVEL)
a460e745 1338 set_irq_chip_and_handler_name(irq, &ioapic_chip,
54168ed7
IM
1339 handle_fasteoi_irq,
1340 "fasteoi");
047c8fdb 1341 else
a460e745 1342 set_irq_chip_and_handler_name(irq, &ioapic_chip,
54168ed7 1343 handle_edge_irq, "edge");
1da177e4
LT
1344}
1345
ca97ab90
JF
1346int setup_ioapic_entry(int apic_id, int irq,
1347 struct IO_APIC_route_entry *entry,
1348 unsigned int destination, int trigger,
0280f7c4 1349 int polarity, int vector, int pin)
1da177e4 1350{
497c9a19
YL
1351 /*
1352 * add it to the IO-APIC irq-routing table:
1353 */
1354 memset(entry,0,sizeof(*entry));
1355
54168ed7 1356 if (intr_remapping_enabled) {
c8d46cf0 1357 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
54168ed7
IM
1358 struct irte irte;
1359 struct IR_IO_APIC_route_entry *ir_entry =
1360 (struct IR_IO_APIC_route_entry *) entry;
1361 int index;
1362
1363 if (!iommu)
c8d46cf0 1364 panic("No mapping iommu for ioapic %d\n", apic_id);
54168ed7
IM
1365
1366 index = alloc_irte(iommu, irq, 1);
1367 if (index < 0)
c8d46cf0 1368 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
54168ed7
IM
1369
1370 memset(&irte, 0, sizeof(irte));
1371
1372 irte.present = 1;
9b5bc8dc 1373 irte.dst_mode = apic->irq_dest_mode;
0280f7c4
SS
1374 /*
1375 * Trigger mode in the IRTE will always be edge, and the
1376 * actual level or edge trigger will be setup in the IO-APIC
1377 * RTE. This will help simplify level triggered irq migration.
1378 * For more details, see the comments above explainig IO-APIC
1379 * irq migration in the presence of interrupt-remapping.
1380 */
1381 irte.trigger_mode = 0;
9b5bc8dc 1382 irte.dlvry_mode = apic->irq_delivery_mode;
54168ed7
IM
1383 irte.vector = vector;
1384 irte.dest_id = IRTE_DEST(destination);
1385
f007e99c
WH
1386 /* Set source-id of interrupt request */
1387 set_ioapic_sid(&irte, apic_id);
1388
54168ed7
IM
1389 modify_irte(irq, &irte);
1390
1391 ir_entry->index2 = (index >> 15) & 0x1;
1392 ir_entry->zero = 0;
1393 ir_entry->format = 1;
1394 ir_entry->index = (index & 0x7fff);
0280f7c4
SS
1395 /*
1396 * IO-APIC RTE will be configured with virtual vector.
1397 * irq handler will do the explicit EOI to the io-apic.
1398 */
1399 ir_entry->vector = pin;
29b61be6 1400 } else {
9b5bc8dc
IM
1401 entry->delivery_mode = apic->irq_delivery_mode;
1402 entry->dest_mode = apic->irq_dest_mode;
54168ed7 1403 entry->dest = destination;
0280f7c4 1404 entry->vector = vector;
54168ed7 1405 }
497c9a19 1406
54168ed7 1407 entry->mask = 0; /* enable IRQ */
497c9a19
YL
1408 entry->trigger = trigger;
1409 entry->polarity = polarity;
497c9a19
YL
1410
1411 /* Mask level triggered irqs.
1412 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1413 */
1414 if (trigger)
1415 entry->mask = 1;
497c9a19
YL
1416 return 0;
1417}
1418
c8d46cf0 1419static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
54168ed7 1420 int trigger, int polarity)
497c9a19
YL
1421{
1422 struct irq_cfg *cfg;
1da177e4 1423 struct IO_APIC_route_entry entry;
22f65d31 1424 unsigned int dest;
497c9a19
YL
1425
1426 if (!IO_APIC_IRQ(irq))
1427 return;
1428
3145e941 1429 cfg = desc->chip_data;
497c9a19 1430
fe402e1f 1431 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
497c9a19
YL
1432 return;
1433
debccb3e 1434 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
497c9a19
YL
1435
1436 apic_printk(APIC_VERBOSE,KERN_DEBUG
1437 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1438 "IRQ %d Mode:%i Active:%i)\n",
c8d46cf0 1439 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
497c9a19
YL
1440 irq, trigger, polarity);
1441
1442
c8d46cf0 1443 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
0280f7c4 1444 dest, trigger, polarity, cfg->vector, pin)) {
497c9a19 1445 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
c8d46cf0 1446 mp_ioapics[apic_id].apicid, pin);
3145e941 1447 __clear_irq_vector(irq, cfg);
497c9a19
YL
1448 return;
1449 }
1450
3145e941 1451 ioapic_register_intr(irq, desc, trigger);
bc07844a 1452 if (irq < nr_legacy_irqs)
497c9a19
YL
1453 disable_8259A_irq(irq);
1454
c8d46cf0 1455 ioapic_write_entry(apic_id, pin, entry);
497c9a19
YL
1456}
1457
b9c61b70
YL
1458static struct {
1459 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1460} mp_ioapic_routing[MAX_IO_APICS];
1461
497c9a19
YL
1462static void __init setup_IO_APIC_irqs(void)
1463{
b9c61b70 1464 int apic_id = 0, pin, idx, irq;
3c2cbd24 1465 int notcon = 0;
0b8f1efa 1466 struct irq_desc *desc;
3145e941 1467 struct irq_cfg *cfg;
85ac16d0 1468 int node = cpu_to_node(boot_cpu_id);
1da177e4
LT
1469
1470 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1471
b9c61b70
YL
1472#ifdef CONFIG_ACPI
1473 if (!acpi_disabled && acpi_ioapic) {
1474 apic_id = mp_find_ioapic(0);
1475 if (apic_id < 0)
1476 apic_id = 0;
1477 }
1478#endif
3c2cbd24 1479
b9c61b70
YL
1480 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1481 idx = find_irq_entry(apic_id, pin, mp_INT);
1482 if (idx == -1) {
1483 if (!notcon) {
1484 notcon = 1;
1485 apic_printk(APIC_VERBOSE,
1486 KERN_DEBUG " %d-%d",
1487 mp_ioapics[apic_id].apicid, pin);
1488 } else
1489 apic_printk(APIC_VERBOSE, " %d-%d",
1490 mp_ioapics[apic_id].apicid, pin);
1491 continue;
1492 }
1493 if (notcon) {
1494 apic_printk(APIC_VERBOSE,
1495 " (apicid-pin) not connected\n");
1496 notcon = 0;
1497 }
33a201fa 1498
b9c61b70 1499 irq = pin_2_irq(idx, apic_id, pin);
33a201fa 1500
b9c61b70
YL
1501 /*
1502 * Skip the timer IRQ if there's a quirk handler
1503 * installed and if it returns 1:
1504 */
1505 if (apic->multi_timer_check &&
1506 apic->multi_timer_check(apic_id, irq))
1507 continue;
36062448 1508
b9c61b70
YL
1509 desc = irq_to_desc_alloc_node(irq, node);
1510 if (!desc) {
1511 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1512 continue;
3c2cbd24 1513 }
b9c61b70
YL
1514 cfg = desc->chip_data;
1515 add_pin_to_irq_node(cfg, node, apic_id, pin);
4c6f18fc
YL
1516 /*
1517 * don't mark it in pin_programmed, so later acpi could
1518 * set it correctly when irq < 16
1519 */
b9c61b70
YL
1520 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1521 irq_trigger(idx), irq_polarity(idx));
1da177e4
LT
1522 }
1523
3c2cbd24
CG
1524 if (notcon)
1525 apic_printk(APIC_VERBOSE,
2a554fb1 1526 " (apicid-pin) not connected\n");
1da177e4
LT
1527}
1528
1529/*
f7633ce5 1530 * Set up the timer pin, possibly with the 8259A-master behind.
1da177e4 1531 */
c8d46cf0 1532static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
f7633ce5 1533 int vector)
1da177e4
LT
1534{
1535 struct IO_APIC_route_entry entry;
1da177e4 1536
54168ed7
IM
1537 if (intr_remapping_enabled)
1538 return;
54168ed7 1539
36062448 1540 memset(&entry, 0, sizeof(entry));
1da177e4
LT
1541
1542 /*
1543 * We use logical delivery to get the timer IRQ
1544 * to the first CPU.
1545 */
9b5bc8dc 1546 entry.dest_mode = apic->irq_dest_mode;
f72dccac 1547 entry.mask = 0; /* don't mask IRQ for edge */
debccb3e 1548 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
9b5bc8dc 1549 entry.delivery_mode = apic->irq_delivery_mode;
1da177e4
LT
1550 entry.polarity = 0;
1551 entry.trigger = 0;
1552 entry.vector = vector;
1553
1554 /*
1555 * The timer IRQ doesn't have to know that behind the
f7633ce5 1556 * scene we may have a 8259A-master in AEOI mode ...
1da177e4 1557 */
54168ed7 1558 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1da177e4
LT
1559
1560 /*
1561 * Add it to the IO-APIC irq-routing table:
1562 */
c8d46cf0 1563 ioapic_write_entry(apic_id, pin, entry);
1da177e4
LT
1564}
1565
32f71aff
MR
1566
1567__apicdebuginit(void) print_IO_APIC(void)
1da177e4
LT
1568{
1569 int apic, i;
1570 union IO_APIC_reg_00 reg_00;
1571 union IO_APIC_reg_01 reg_01;
1572 union IO_APIC_reg_02 reg_02;
1573 union IO_APIC_reg_03 reg_03;
1574 unsigned long flags;
0f978f45 1575 struct irq_cfg *cfg;
0b8f1efa 1576 struct irq_desc *desc;
8f09cd20 1577 unsigned int irq;
1da177e4 1578
36062448 1579 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1da177e4
LT
1580 for (i = 0; i < nr_ioapics; i++)
1581 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
b5ba7e6d 1582 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
1da177e4
LT
1583
1584 /*
1585 * We are a bit conservative about what we expect. We have to
1586 * know about every hardware change ASAP.
1587 */
1588 printk(KERN_INFO "testing the IO APIC.......................\n");
1589
1590 for (apic = 0; apic < nr_ioapics; apic++) {
1591
1592 spin_lock_irqsave(&ioapic_lock, flags);
1593 reg_00.raw = io_apic_read(apic, 0);
1594 reg_01.raw = io_apic_read(apic, 1);
1595 if (reg_01.bits.version >= 0x10)
1596 reg_02.raw = io_apic_read(apic, 2);
d6c88a50
TG
1597 if (reg_01.bits.version >= 0x20)
1598 reg_03.raw = io_apic_read(apic, 3);
1da177e4
LT
1599 spin_unlock_irqrestore(&ioapic_lock, flags);
1600
54168ed7 1601 printk("\n");
b5ba7e6d 1602 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
1da177e4
LT
1603 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1604 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1605 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1606 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1da177e4 1607
54168ed7 1608 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
1da177e4 1609 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1da177e4
LT
1610
1611 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1612 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1da177e4
LT
1613
1614 /*
1615 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1616 * but the value of reg_02 is read as the previous read register
1617 * value, so ignore it if reg_02 == reg_01.
1618 */
1619 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1620 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1621 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1da177e4
LT
1622 }
1623
1624 /*
1625 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1626 * or reg_03, but the value of reg_0[23] is read as the previous read
1627 * register value, so ignore it if reg_03 == reg_0[12].
1628 */
1629 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1630 reg_03.raw != reg_01.raw) {
1631 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1632 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1da177e4
LT
1633 }
1634
1635 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1636
d83e94ac
YL
1637 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1638 " Stat Dmod Deli Vect: \n");
1da177e4
LT
1639
1640 for (i = 0; i <= reg_01.bits.entries; i++) {
1641 struct IO_APIC_route_entry entry;
1642
cf4c6a2f 1643 entry = ioapic_read_entry(apic, i);
1da177e4 1644
54168ed7
IM
1645 printk(KERN_DEBUG " %02x %03X ",
1646 i,
1647 entry.dest
1648 );
1da177e4
LT
1649
1650 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1651 entry.mask,
1652 entry.trigger,
1653 entry.irr,
1654 entry.polarity,
1655 entry.delivery_status,
1656 entry.dest_mode,
1657 entry.delivery_mode,
1658 entry.vector
1659 );
1660 }
1661 }
1da177e4 1662 printk(KERN_DEBUG "IRQ to pin mappings:\n");
0b8f1efa
YL
1663 for_each_irq_desc(irq, desc) {
1664 struct irq_pin_list *entry;
1665
0b8f1efa
YL
1666 cfg = desc->chip_data;
1667 entry = cfg->irq_2_pin;
0f978f45 1668 if (!entry)
1da177e4 1669 continue;
8f09cd20 1670 printk(KERN_DEBUG "IRQ%d ", irq);
2977fb3f 1671 for_each_irq_pin(entry, cfg->irq_2_pin)
1da177e4 1672 printk("-> %d:%d", entry->apic, entry->pin);
1da177e4
LT
1673 printk("\n");
1674 }
1675
1676 printk(KERN_INFO ".................................... done.\n");
1677
1678 return;
1679}
1680
251e1e44 1681__apicdebuginit(void) print_APIC_field(int base)
1da177e4 1682{
251e1e44 1683 int i;
1da177e4 1684
251e1e44
IM
1685 printk(KERN_DEBUG);
1686
1687 for (i = 0; i < 8; i++)
1688 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1689
1690 printk(KERN_CONT "\n");
1da177e4
LT
1691}
1692
32f71aff 1693__apicdebuginit(void) print_local_APIC(void *dummy)
1da177e4 1694{
97a52714 1695 unsigned int i, v, ver, maxlvt;
7ab6af7a 1696 u64 icr;
1da177e4 1697
251e1e44 1698 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1da177e4 1699 smp_processor_id(), hard_smp_processor_id());
66823114 1700 v = apic_read(APIC_ID);
54168ed7 1701 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
1da177e4
LT
1702 v = apic_read(APIC_LVR);
1703 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1704 ver = GET_APIC_VERSION(v);
e05d723f 1705 maxlvt = lapic_get_maxlvt();
1da177e4
LT
1706
1707 v = apic_read(APIC_TASKPRI);
1708 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1709
54168ed7 1710 if (APIC_INTEGRATED(ver)) { /* !82489DX */
a11b5abe
YL
1711 if (!APIC_XAPIC(ver)) {
1712 v = apic_read(APIC_ARBPRI);
1713 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1714 v & APIC_ARBPRI_MASK);
1715 }
1da177e4
LT
1716 v = apic_read(APIC_PROCPRI);
1717 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1718 }
1719
a11b5abe
YL
1720 /*
1721 * Remote read supported only in the 82489DX and local APIC for
1722 * Pentium processors.
1723 */
1724 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1725 v = apic_read(APIC_RRR);
1726 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1727 }
1728
1da177e4
LT
1729 v = apic_read(APIC_LDR);
1730 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
a11b5abe
YL
1731 if (!x2apic_enabled()) {
1732 v = apic_read(APIC_DFR);
1733 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1734 }
1da177e4
LT
1735 v = apic_read(APIC_SPIV);
1736 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1737
1738 printk(KERN_DEBUG "... APIC ISR field:\n");
251e1e44 1739 print_APIC_field(APIC_ISR);
1da177e4 1740 printk(KERN_DEBUG "... APIC TMR field:\n");
251e1e44 1741 print_APIC_field(APIC_TMR);
1da177e4 1742 printk(KERN_DEBUG "... APIC IRR field:\n");
251e1e44 1743 print_APIC_field(APIC_IRR);
1da177e4 1744
54168ed7
IM
1745 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1746 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1da177e4 1747 apic_write(APIC_ESR, 0);
54168ed7 1748
1da177e4
LT
1749 v = apic_read(APIC_ESR);
1750 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1751 }
1752
7ab6af7a 1753 icr = apic_icr_read();
0c425cec
IM
1754 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1755 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1da177e4
LT
1756
1757 v = apic_read(APIC_LVTT);
1758 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1759
1760 if (maxlvt > 3) { /* PC is LVT#4. */
1761 v = apic_read(APIC_LVTPC);
1762 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1763 }
1764 v = apic_read(APIC_LVT0);
1765 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1766 v = apic_read(APIC_LVT1);
1767 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1768
1769 if (maxlvt > 2) { /* ERR is LVT#3. */
1770 v = apic_read(APIC_LVTERR);
1771 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1772 }
1773
1774 v = apic_read(APIC_TMICT);
1775 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1776 v = apic_read(APIC_TMCCT);
1777 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1778 v = apic_read(APIC_TDCR);
1779 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
97a52714
AH
1780
1781 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1782 v = apic_read(APIC_EFEAT);
1783 maxlvt = (v >> 16) & 0xff;
1784 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1785 v = apic_read(APIC_ECTRL);
1786 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1787 for (i = 0; i < maxlvt; i++) {
1788 v = apic_read(APIC_EILVTn(i));
1789 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1790 }
1791 }
1da177e4
LT
1792 printk("\n");
1793}
1794
2626eb2b 1795__apicdebuginit(void) print_local_APICs(int maxcpu)
1da177e4 1796{
ffd5aae7
YL
1797 int cpu;
1798
2626eb2b
CG
1799 if (!maxcpu)
1800 return;
1801
ffd5aae7 1802 preempt_disable();
2626eb2b
CG
1803 for_each_online_cpu(cpu) {
1804 if (cpu >= maxcpu)
1805 break;
ffd5aae7 1806 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
2626eb2b 1807 }
ffd5aae7 1808 preempt_enable();
1da177e4
LT
1809}
1810
32f71aff 1811__apicdebuginit(void) print_PIC(void)
1da177e4 1812{
1da177e4
LT
1813 unsigned int v;
1814 unsigned long flags;
1815
2626eb2b 1816 if (!nr_legacy_irqs)
1da177e4
LT
1817 return;
1818
1819 printk(KERN_DEBUG "\nprinting PIC contents\n");
1820
1821 spin_lock_irqsave(&i8259A_lock, flags);
1822
1823 v = inb(0xa1) << 8 | inb(0x21);
1824 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1825
1826 v = inb(0xa0) << 8 | inb(0x20);
1827 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1828
54168ed7
IM
1829 outb(0x0b,0xa0);
1830 outb(0x0b,0x20);
1da177e4 1831 v = inb(0xa0) << 8 | inb(0x20);
54168ed7
IM
1832 outb(0x0a,0xa0);
1833 outb(0x0a,0x20);
1da177e4
LT
1834
1835 spin_unlock_irqrestore(&i8259A_lock, flags);
1836
1837 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1838
1839 v = inb(0x4d1) << 8 | inb(0x4d0);
1840 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1841}
1842
2626eb2b
CG
1843static int __initdata show_lapic = 1;
1844static __init int setup_show_lapic(char *arg)
1845{
1846 int num = -1;
1847
1848 if (strcmp(arg, "all") == 0) {
1849 show_lapic = CONFIG_NR_CPUS;
1850 } else {
1851 get_option(&arg, &num);
1852 if (num >= 0)
1853 show_lapic = num;
1854 }
1855
1856 return 1;
1857}
1858__setup("show_lapic=", setup_show_lapic);
1859
1860__apicdebuginit(int) print_ICs(void)
32f71aff 1861{
2626eb2b
CG
1862 if (apic_verbosity == APIC_QUIET)
1863 return 0;
1864
32f71aff 1865 print_PIC();
4797f6b0
YL
1866
1867 /* don't print out if apic is not there */
8312136f 1868 if (!cpu_has_apic && !apic_from_smp_config())
4797f6b0
YL
1869 return 0;
1870
2626eb2b 1871 print_local_APICs(show_lapic);
32f71aff
MR
1872 print_IO_APIC();
1873
1874 return 0;
1875}
1876
2626eb2b 1877fs_initcall(print_ICs);
32f71aff 1878
1da177e4 1879
efa2559f
YL
1880/* Where if anywhere is the i8259 connect in external int mode */
1881static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1882
54168ed7 1883void __init enable_IO_APIC(void)
1da177e4
LT
1884{
1885 union IO_APIC_reg_01 reg_01;
fcfd636a 1886 int i8259_apic, i8259_pin;
54168ed7 1887 int apic;
1da177e4
LT
1888 unsigned long flags;
1889
1da177e4
LT
1890 /*
1891 * The number of IO-APIC IRQ registers (== #pins):
1892 */
fcfd636a 1893 for (apic = 0; apic < nr_ioapics; apic++) {
1da177e4 1894 spin_lock_irqsave(&ioapic_lock, flags);
fcfd636a 1895 reg_01.raw = io_apic_read(apic, 1);
1da177e4 1896 spin_unlock_irqrestore(&ioapic_lock, flags);
fcfd636a
EB
1897 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1898 }
bc07844a
TG
1899
1900 if (!nr_legacy_irqs)
1901 return;
1902
54168ed7 1903 for(apic = 0; apic < nr_ioapics; apic++) {
fcfd636a
EB
1904 int pin;
1905 /* See if any of the pins is in ExtINT mode */
1008fddc 1906 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
fcfd636a 1907 struct IO_APIC_route_entry entry;
cf4c6a2f 1908 entry = ioapic_read_entry(apic, pin);
fcfd636a 1909
fcfd636a
EB
1910 /* If the interrupt line is enabled and in ExtInt mode
1911 * I have found the pin where the i8259 is connected.
1912 */
1913 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1914 ioapic_i8259.apic = apic;
1915 ioapic_i8259.pin = pin;
1916 goto found_i8259;
1917 }
1918 }
1919 }
1920 found_i8259:
1921 /* Look to see what if the MP table has reported the ExtINT */
1922 /* If we could not find the appropriate pin by looking at the ioapic
1923 * the i8259 probably is not connected the ioapic but give the
1924 * mptable a chance anyway.
1925 */
1926 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1927 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1928 /* Trust the MP table if nothing is setup in the hardware */
1929 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1930 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1931 ioapic_i8259.pin = i8259_pin;
1932 ioapic_i8259.apic = i8259_apic;
1933 }
1934 /* Complain if the MP table and the hardware disagree */
1935 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1936 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1937 {
1938 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1da177e4
LT
1939 }
1940
1941 /*
1942 * Do not trust the IO-APIC being empty at bootup
1943 */
1944 clear_IO_APIC();
1945}
1946
1947/*
1948 * Not an __init, needed by the reboot code
1949 */
1950void disable_IO_APIC(void)
1951{
1952 /*
1953 * Clear the IO-APIC before rebooting:
1954 */
1955 clear_IO_APIC();
1956
bc07844a
TG
1957 if (!nr_legacy_irqs)
1958 return;
1959
650927ef 1960 /*
0b968d23 1961 * If the i8259 is routed through an IOAPIC
650927ef 1962 * Put that IOAPIC in virtual wire mode
0b968d23 1963 * so legacy interrupts can be delivered.
7c6d9f97
SS
1964 *
1965 * With interrupt-remapping, for now we will use virtual wire A mode,
1966 * as virtual wire B is little complex (need to configure both
1967 * IOAPIC RTE aswell as interrupt-remapping table entry).
1968 * As this gets called during crash dump, keep this simple for now.
650927ef 1969 */
7c6d9f97 1970 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
650927ef 1971 struct IO_APIC_route_entry entry;
650927ef
EB
1972
1973 memset(&entry, 0, sizeof(entry));
1974 entry.mask = 0; /* Enabled */
1975 entry.trigger = 0; /* Edge */
1976 entry.irr = 0;
1977 entry.polarity = 0; /* High */
1978 entry.delivery_status = 0;
1979 entry.dest_mode = 0; /* Physical */
fcfd636a 1980 entry.delivery_mode = dest_ExtINT; /* ExtInt */
650927ef 1981 entry.vector = 0;
54168ed7 1982 entry.dest = read_apic_id();
650927ef
EB
1983
1984 /*
1985 * Add it to the IO-APIC irq-routing table:
1986 */
cf4c6a2f 1987 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
650927ef 1988 }
54168ed7 1989
7c6d9f97
SS
1990 /*
1991 * Use virtual wire A mode when interrupt remapping is enabled.
1992 */
8312136f 1993 if (cpu_has_apic || apic_from_smp_config())
3f4c3955
CG
1994 disconnect_bsp_APIC(!intr_remapping_enabled &&
1995 ioapic_i8259.pin != -1);
1da177e4
LT
1996}
1997
54168ed7 1998#ifdef CONFIG_X86_32
1da177e4
LT
1999/*
2000 * function to set the IO-APIC physical IDs based on the
2001 * values stored in the MPC table.
2002 *
2003 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2004 */
2005
de934103 2006void __init setup_ioapic_ids_from_mpc(void)
1da177e4
LT
2007{
2008 union IO_APIC_reg_00 reg_00;
2009 physid_mask_t phys_id_present_map;
c8d46cf0 2010 int apic_id;
1da177e4
LT
2011 int i;
2012 unsigned char old_id;
2013 unsigned long flags;
2014
de934103 2015 if (acpi_ioapic)
d49c4288 2016 return;
ca05fea6
NP
2017 /*
2018 * Don't check I/O APIC IDs for xAPIC systems. They have
2019 * no meaning without the serial APIC bus.
2020 */
7c5c1e42
SL
2021 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2022 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
ca05fea6 2023 return;
1da177e4
LT
2024 /*
2025 * This is broken; anything with a real cpu count has to
2026 * circumvent this idiocy regardless.
2027 */
7abc0753 2028 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
1da177e4
LT
2029
2030 /*
2031 * Set the IOAPIC ID to the value stored in the MPC table.
2032 */
c8d46cf0 2033 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1da177e4
LT
2034
2035 /* Read the register 0 value */
2036 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2037 reg_00.raw = io_apic_read(apic_id, 0);
1da177e4 2038 spin_unlock_irqrestore(&ioapic_lock, flags);
36062448 2039
c8d46cf0 2040 old_id = mp_ioapics[apic_id].apicid;
1da177e4 2041
c8d46cf0 2042 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
1da177e4 2043 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
c8d46cf0 2044 apic_id, mp_ioapics[apic_id].apicid);
1da177e4
LT
2045 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2046 reg_00.bits.ID);
c8d46cf0 2047 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
1da177e4
LT
2048 }
2049
1da177e4
LT
2050 /*
2051 * Sanity check, is the ID really free? Every APIC in a
2052 * system must have a unique ID or we get lots of nice
2053 * 'stuck on smp_invalidate_needed IPI wait' messages.
2054 */
7abc0753 2055 if (apic->check_apicid_used(&phys_id_present_map,
c8d46cf0 2056 mp_ioapics[apic_id].apicid)) {
1da177e4 2057 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
c8d46cf0 2058 apic_id, mp_ioapics[apic_id].apicid);
1da177e4
LT
2059 for (i = 0; i < get_physical_broadcast(); i++)
2060 if (!physid_isset(i, phys_id_present_map))
2061 break;
2062 if (i >= get_physical_broadcast())
2063 panic("Max APIC ID exceeded!\n");
2064 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2065 i);
2066 physid_set(i, phys_id_present_map);
c8d46cf0 2067 mp_ioapics[apic_id].apicid = i;
1da177e4
LT
2068 } else {
2069 physid_mask_t tmp;
7abc0753 2070 apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid, &tmp);
1da177e4
LT
2071 apic_printk(APIC_VERBOSE, "Setting %d in the "
2072 "phys_id_present_map\n",
c8d46cf0 2073 mp_ioapics[apic_id].apicid);
1da177e4
LT
2074 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2075 }
2076
2077
2078 /*
2079 * We need to adjust the IRQ routing table
2080 * if the ID changed.
2081 */
c8d46cf0 2082 if (old_id != mp_ioapics[apic_id].apicid)
1da177e4 2083 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
2084 if (mp_irqs[i].dstapic == old_id)
2085 mp_irqs[i].dstapic
c8d46cf0 2086 = mp_ioapics[apic_id].apicid;
1da177e4
LT
2087
2088 /*
2089 * Read the right value from the MPC table and
2090 * write it into the ID register.
36062448 2091 */
1da177e4
LT
2092 apic_printk(APIC_VERBOSE, KERN_INFO
2093 "...changing IO-APIC physical APIC ID to %d ...",
c8d46cf0 2094 mp_ioapics[apic_id].apicid);
1da177e4 2095
c8d46cf0 2096 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
1da177e4 2097 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2098 io_apic_write(apic_id, 0, reg_00.raw);
a2d332fa 2099 spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
2100
2101 /*
2102 * Sanity check
2103 */
2104 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2105 reg_00.raw = io_apic_read(apic_id, 0);
1da177e4 2106 spin_unlock_irqrestore(&ioapic_lock, flags);
c8d46cf0 2107 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
1da177e4
LT
2108 printk("could not set ID!\n");
2109 else
2110 apic_printk(APIC_VERBOSE, " ok.\n");
2111 }
2112}
54168ed7 2113#endif
1da177e4 2114
7ce0bcfd 2115int no_timer_check __initdata;
8542b200
ZA
2116
2117static int __init notimercheck(char *s)
2118{
2119 no_timer_check = 1;
2120 return 1;
2121}
2122__setup("no_timer_check", notimercheck);
2123
1da177e4
LT
2124/*
2125 * There is a nasty bug in some older SMP boards, their mptable lies
2126 * about the timer IRQ. We do the following to work around the situation:
2127 *
2128 * - timer IRQ defaults to IO-APIC IRQ
2129 * - if this function detects that timer IRQs are defunct, then we fall
2130 * back to ISA timer IRQs
2131 */
f0a7a5c9 2132static int __init timer_irq_works(void)
1da177e4
LT
2133{
2134 unsigned long t1 = jiffies;
4aae0702 2135 unsigned long flags;
1da177e4 2136
8542b200
ZA
2137 if (no_timer_check)
2138 return 1;
2139
4aae0702 2140 local_save_flags(flags);
1da177e4
LT
2141 local_irq_enable();
2142 /* Let ten ticks pass... */
2143 mdelay((10 * 1000) / HZ);
4aae0702 2144 local_irq_restore(flags);
1da177e4
LT
2145
2146 /*
2147 * Expect a few ticks at least, to be sure some possible
2148 * glue logic does not lock up after one or two first
2149 * ticks in a non-ExtINT mode. Also the local APIC
2150 * might have cached one ExtINT interrupt. Finally, at
2151 * least one tick may be lost due to delays.
2152 */
54168ed7
IM
2153
2154 /* jiffies wrap? */
1d16b53e 2155 if (time_after(jiffies, t1 + 4))
1da177e4 2156 return 1;
1da177e4
LT
2157 return 0;
2158}
2159
2160/*
2161 * In the SMP+IOAPIC case it might happen that there are an unspecified
2162 * number of pending IRQ events unhandled. These cases are very rare,
2163 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2164 * better to do it this way as thus we do not have to be aware of
2165 * 'pending' interrupts in the IRQ path, except at this point.
2166 */
2167/*
2168 * Edge triggered needs to resend any interrupt
2169 * that was delayed but this is now handled in the device
2170 * independent code.
2171 */
2172
2173/*
2174 * Starting up a edge-triggered IO-APIC interrupt is
2175 * nasty - we need to make sure that we get the edge.
2176 * If it is already asserted for some reason, we need
2177 * return 1 to indicate that is was pending.
2178 *
2179 * This is not complete - we should be able to fake
2180 * an edge even if it isn't on the 8259A...
2181 */
54168ed7 2182
f5b9ed7a 2183static unsigned int startup_ioapic_irq(unsigned int irq)
1da177e4
LT
2184{
2185 int was_pending = 0;
2186 unsigned long flags;
0b8f1efa 2187 struct irq_cfg *cfg;
1da177e4
LT
2188
2189 spin_lock_irqsave(&ioapic_lock, flags);
bc07844a 2190 if (irq < nr_legacy_irqs) {
1da177e4
LT
2191 disable_8259A_irq(irq);
2192 if (i8259A_irq_pending(irq))
2193 was_pending = 1;
2194 }
0b8f1efa 2195 cfg = irq_cfg(irq);
3145e941 2196 __unmask_IO_APIC_irq(cfg);
1da177e4
LT
2197 spin_unlock_irqrestore(&ioapic_lock, flags);
2198
2199 return was_pending;
2200}
2201
ace80ab7 2202static int ioapic_retrigger_irq(unsigned int irq)
1da177e4 2203{
54168ed7
IM
2204
2205 struct irq_cfg *cfg = irq_cfg(irq);
2206 unsigned long flags;
2207
2208 spin_lock_irqsave(&vector_lock, flags);
dac5f412 2209 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
54168ed7 2210 spin_unlock_irqrestore(&vector_lock, flags);
c0ad90a3
IM
2211
2212 return 1;
2213}
497c9a19 2214
54168ed7
IM
2215/*
2216 * Level and edge triggered IO-APIC interrupts need different handling,
2217 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2218 * handled with the level-triggered descriptor, but that one has slightly
2219 * more overhead. Level-triggered interrupts cannot be handled with the
2220 * edge-triggered handler, without risking IRQ storms and other ugly
2221 * races.
2222 */
497c9a19 2223
54168ed7 2224#ifdef CONFIG_SMP
9338ad6f 2225void send_cleanup_vector(struct irq_cfg *cfg)
e85abf8f
GH
2226{
2227 cpumask_var_t cleanup_mask;
2228
2229 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2230 unsigned int i;
e85abf8f
GH
2231 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2232 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2233 } else {
2234 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
e85abf8f
GH
2235 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2236 free_cpumask_var(cleanup_mask);
2237 }
2238 cfg->move_in_progress = 0;
2239}
2240
4420471f 2241static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
e85abf8f
GH
2242{
2243 int apic, pin;
2244 struct irq_pin_list *entry;
2245 u8 vector = cfg->vector;
2246
2977fb3f 2247 for_each_irq_pin(entry, cfg->irq_2_pin) {
e85abf8f
GH
2248 unsigned int reg;
2249
e85abf8f
GH
2250 apic = entry->apic;
2251 pin = entry->pin;
2252 /*
2253 * With interrupt-remapping, destination information comes
2254 * from interrupt-remapping table entry.
2255 */
2256 if (!irq_remapped(irq))
2257 io_apic_write(apic, 0x11 + pin*2, dest);
2258 reg = io_apic_read(apic, 0x10 + pin*2);
2259 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2260 reg |= vector;
2261 io_apic_modify(apic, 0x10 + pin*2, reg);
e85abf8f
GH
2262 }
2263}
2264
2265/*
2266 * Either sets desc->affinity to a valid value, and returns
18374d89 2267 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
e85abf8f
GH
2268 * leaves desc->affinity untouched.
2269 */
9338ad6f 2270unsigned int
18374d89
SS
2271set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask,
2272 unsigned int *dest_id)
e85abf8f
GH
2273{
2274 struct irq_cfg *cfg;
2275 unsigned int irq;
2276
2277 if (!cpumask_intersects(mask, cpu_online_mask))
18374d89 2278 return -1;
e85abf8f
GH
2279
2280 irq = desc->irq;
2281 cfg = desc->chip_data;
2282 if (assign_irq_vector(irq, cfg, mask))
18374d89 2283 return -1;
e85abf8f 2284
e85abf8f
GH
2285 cpumask_copy(desc->affinity, mask);
2286
18374d89
SS
2287 *dest_id = apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2288 return 0;
e85abf8f
GH
2289}
2290
4420471f 2291static int
e85abf8f
GH
2292set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2293{
2294 struct irq_cfg *cfg;
2295 unsigned long flags;
2296 unsigned int dest;
2297 unsigned int irq;
4420471f 2298 int ret = -1;
e85abf8f
GH
2299
2300 irq = desc->irq;
2301 cfg = desc->chip_data;
2302
2303 spin_lock_irqsave(&ioapic_lock, flags);
18374d89
SS
2304 ret = set_desc_affinity(desc, mask, &dest);
2305 if (!ret) {
e85abf8f
GH
2306 /* Only the high 8 bits are valid. */
2307 dest = SET_APIC_LOGICAL_ID(dest);
2308 __target_IO_APIC_irq(irq, dest, cfg);
2309 }
2310 spin_unlock_irqrestore(&ioapic_lock, flags);
4420471f
IM
2311
2312 return ret;
e85abf8f
GH
2313}
2314
4420471f 2315static int
e85abf8f
GH
2316set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2317{
2318 struct irq_desc *desc;
2319
2320 desc = irq_to_desc(irq);
2321
4420471f 2322 return set_ioapic_affinity_irq_desc(desc, mask);
e85abf8f 2323}
497c9a19 2324
54168ed7 2325#ifdef CONFIG_INTR_REMAP
497c9a19 2326
54168ed7
IM
2327/*
2328 * Migrate the IO-APIC irq in the presence of intr-remapping.
2329 *
0280f7c4
SS
2330 * For both level and edge triggered, irq migration is a simple atomic
2331 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
54168ed7 2332 *
0280f7c4
SS
2333 * For level triggered, we eliminate the io-apic RTE modification (with the
2334 * updated vector information), by using a virtual vector (io-apic pin number).
2335 * Real vector that is used for interrupting cpu will be coming from
2336 * the interrupt-remapping table entry.
54168ed7 2337 */
d5dedd45 2338static int
e7986739 2339migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
497c9a19 2340{
54168ed7 2341 struct irq_cfg *cfg;
54168ed7 2342 struct irte irte;
54168ed7 2343 unsigned int dest;
3145e941 2344 unsigned int irq;
d5dedd45 2345 int ret = -1;
497c9a19 2346
22f65d31 2347 if (!cpumask_intersects(mask, cpu_online_mask))
d5dedd45 2348 return ret;
497c9a19 2349
3145e941 2350 irq = desc->irq;
54168ed7 2351 if (get_irte(irq, &irte))
d5dedd45 2352 return ret;
497c9a19 2353
3145e941
YL
2354 cfg = desc->chip_data;
2355 if (assign_irq_vector(irq, cfg, mask))
d5dedd45 2356 return ret;
54168ed7 2357
debccb3e 2358 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
54168ed7 2359
54168ed7
IM
2360 irte.vector = cfg->vector;
2361 irte.dest_id = IRTE_DEST(dest);
2362
2363 /*
2364 * Modified the IRTE and flushes the Interrupt entry cache.
2365 */
2366 modify_irte(irq, &irte);
2367
22f65d31
MT
2368 if (cfg->move_in_progress)
2369 send_cleanup_vector(cfg);
54168ed7 2370
7f7ace0c 2371 cpumask_copy(desc->affinity, mask);
d5dedd45
YL
2372
2373 return 0;
54168ed7
IM
2374}
2375
54168ed7
IM
2376/*
2377 * Migrates the IRQ destination in the process context.
2378 */
d5dedd45 2379static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
968ea6d8 2380 const struct cpumask *mask)
54168ed7 2381{
d5dedd45 2382 return migrate_ioapic_irq_desc(desc, mask);
3145e941 2383}
d5dedd45 2384static int set_ir_ioapic_affinity_irq(unsigned int irq,
968ea6d8 2385 const struct cpumask *mask)
3145e941
YL
2386{
2387 struct irq_desc *desc = irq_to_desc(irq);
2388
d5dedd45 2389 return set_ir_ioapic_affinity_irq_desc(desc, mask);
54168ed7 2390}
29b61be6 2391#else
d5dedd45 2392static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
29b61be6
SS
2393 const struct cpumask *mask)
2394{
d5dedd45 2395 return 0;
29b61be6 2396}
54168ed7
IM
2397#endif
2398
2399asmlinkage void smp_irq_move_cleanup_interrupt(void)
2400{
2401 unsigned vector, me;
8f2466f4 2402
54168ed7 2403 ack_APIC_irq();
54168ed7 2404 exit_idle();
54168ed7
IM
2405 irq_enter();
2406
2407 me = smp_processor_id();
2408 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2409 unsigned int irq;
68a8ca59 2410 unsigned int irr;
54168ed7
IM
2411 struct irq_desc *desc;
2412 struct irq_cfg *cfg;
2413 irq = __get_cpu_var(vector_irq)[vector];
2414
0b8f1efa
YL
2415 if (irq == -1)
2416 continue;
2417
54168ed7
IM
2418 desc = irq_to_desc(irq);
2419 if (!desc)
2420 continue;
2421
2422 cfg = irq_cfg(irq);
239007b8 2423 raw_spin_lock(&desc->lock);
54168ed7 2424
22f65d31 2425 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
54168ed7
IM
2426 goto unlock;
2427
68a8ca59
SS
2428 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2429 /*
2430 * Check if the vector that needs to be cleanedup is
2431 * registered at the cpu's IRR. If so, then this is not
2432 * the best time to clean it up. Lets clean it up in the
2433 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2434 * to myself.
2435 */
2436 if (irr & (1 << (vector % 32))) {
2437 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2438 goto unlock;
2439 }
54168ed7 2440 __get_cpu_var(vector_irq)[vector] = -1;
54168ed7 2441unlock:
239007b8 2442 raw_spin_unlock(&desc->lock);
54168ed7
IM
2443 }
2444
2445 irq_exit();
2446}
2447
a5e74b84 2448static void __irq_complete_move(struct irq_desc **descp, unsigned vector)
54168ed7 2449{
3145e941
YL
2450 struct irq_desc *desc = *descp;
2451 struct irq_cfg *cfg = desc->chip_data;
a5e74b84 2452 unsigned me;
54168ed7 2453
fcef5911 2454 if (likely(!cfg->move_in_progress))
54168ed7
IM
2455 return;
2456
54168ed7 2457 me = smp_processor_id();
10b888d6 2458
fcef5911 2459 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
22f65d31 2460 send_cleanup_vector(cfg);
497c9a19 2461}
a5e74b84
SS
2462
2463static void irq_complete_move(struct irq_desc **descp)
2464{
2465 __irq_complete_move(descp, ~get_irq_regs()->orig_ax);
2466}
2467
2468void irq_force_complete_move(int irq)
2469{
2470 struct irq_desc *desc = irq_to_desc(irq);
2471 struct irq_cfg *cfg = desc->chip_data;
2472
2473 __irq_complete_move(&desc, cfg->vector);
2474}
497c9a19 2475#else
3145e941 2476static inline void irq_complete_move(struct irq_desc **descp) {}
497c9a19 2477#endif
3145e941 2478
1d025192
YL
2479static void ack_apic_edge(unsigned int irq)
2480{
3145e941
YL
2481 struct irq_desc *desc = irq_to_desc(irq);
2482
2483 irq_complete_move(&desc);
1d025192
YL
2484 move_native_irq(irq);
2485 ack_APIC_irq();
2486}
2487
3eb2cce8 2488atomic_t irq_mis_count;
3eb2cce8 2489
c29d9db3
SS
2490/*
2491 * IO-APIC versions below 0x20 don't support EOI register.
2492 * For the record, here is the information about various versions:
2493 * 0Xh 82489DX
2494 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
2495 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
2496 * 30h-FFh Reserved
2497 *
2498 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
2499 * version as 0x2. This is an error with documentation and these ICH chips
2500 * use io-apic's of version 0x20.
2501 *
2502 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
2503 * Otherwise, we simulate the EOI message manually by changing the trigger
2504 * mode to edge and then back to level, with RTE being masked during this.
2505*/
b3ec0a37
SS
2506static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2507{
2508 struct irq_pin_list *entry;
2509
2510 for_each_irq_pin(entry, cfg->irq_2_pin) {
c29d9db3
SS
2511 if (mp_ioapics[entry->apic].apicver >= 0x20) {
2512 /*
2513 * Intr-remapping uses pin number as the virtual vector
2514 * in the RTE. Actual vector is programmed in
2515 * intr-remapping table entry. Hence for the io-apic
2516 * EOI we use the pin number.
2517 */
2518 if (irq_remapped(irq))
2519 io_apic_eoi(entry->apic, entry->pin);
2520 else
2521 io_apic_eoi(entry->apic, cfg->vector);
2522 } else {
2523 __mask_and_edge_IO_APIC_irq(entry);
2524 __unmask_and_level_IO_APIC_irq(entry);
2525 }
b3ec0a37
SS
2526 }
2527}
2528
2529static void eoi_ioapic_irq(struct irq_desc *desc)
2530{
2531 struct irq_cfg *cfg;
2532 unsigned long flags;
2533 unsigned int irq;
2534
2535 irq = desc->irq;
2536 cfg = desc->chip_data;
2537
2538 spin_lock_irqsave(&ioapic_lock, flags);
2539 __eoi_ioapic_irq(irq, cfg);
2540 spin_unlock_irqrestore(&ioapic_lock, flags);
2541}
2542
047c8fdb
YL
2543static void ack_apic_level(unsigned int irq)
2544{
3145e941 2545 struct irq_desc *desc = irq_to_desc(irq);
3eb2cce8
YL
2546 unsigned long v;
2547 int i;
3145e941 2548 struct irq_cfg *cfg;
54168ed7 2549 int do_unmask_irq = 0;
047c8fdb 2550
3145e941 2551 irq_complete_move(&desc);
047c8fdb 2552#ifdef CONFIG_GENERIC_PENDING_IRQ
54168ed7 2553 /* If we are moving the irq we need to mask it */
3145e941 2554 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
54168ed7 2555 do_unmask_irq = 1;
3145e941 2556 mask_IO_APIC_irq_desc(desc);
54168ed7 2557 }
047c8fdb
YL
2558#endif
2559
3eb2cce8 2560 /*
916a0fe7
JF
2561 * It appears there is an erratum which affects at least version 0x11
2562 * of I/O APIC (that's the 82093AA and cores integrated into various
2563 * chipsets). Under certain conditions a level-triggered interrupt is
2564 * erroneously delivered as edge-triggered one but the respective IRR
2565 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2566 * message but it will never arrive and further interrupts are blocked
2567 * from the source. The exact reason is so far unknown, but the
2568 * phenomenon was observed when two consecutive interrupt requests
2569 * from a given source get delivered to the same CPU and the source is
2570 * temporarily disabled in between.
2571 *
2572 * A workaround is to simulate an EOI message manually. We achieve it
2573 * by setting the trigger mode to edge and then to level when the edge
2574 * trigger mode gets detected in the TMR of a local APIC for a
2575 * level-triggered interrupt. We mask the source for the time of the
2576 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2577 * The idea is from Manfred Spraul. --macro
1c83995b
SS
2578 *
2579 * Also in the case when cpu goes offline, fixup_irqs() will forward
2580 * any unhandled interrupt on the offlined cpu to the new cpu
2581 * destination that is handling the corresponding interrupt. This
2582 * interrupt forwarding is done via IPI's. Hence, in this case also
2583 * level-triggered io-apic interrupt will be seen as an edge
2584 * interrupt in the IRR. And we can't rely on the cpu's EOI
2585 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2586 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2587 * supporting EOI register, we do an explicit EOI to clear the
2588 * remote IRR and on IO-APIC's which don't have an EOI register,
2589 * we use the above logic (mask+edge followed by unmask+level) from
2590 * Manfred Spraul to clear the remote IRR.
916a0fe7 2591 */
3145e941
YL
2592 cfg = desc->chip_data;
2593 i = cfg->vector;
3eb2cce8 2594 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
3eb2cce8 2595
54168ed7
IM
2596 /*
2597 * We must acknowledge the irq before we move it or the acknowledge will
2598 * not propagate properly.
2599 */
2600 ack_APIC_irq();
2601
1c83995b
SS
2602 /*
2603 * Tail end of clearing remote IRR bit (either by delivering the EOI
2604 * message via io-apic EOI register write or simulating it using
2605 * mask+edge followed by unnask+level logic) manually when the
2606 * level triggered interrupt is seen as the edge triggered interrupt
2607 * at the cpu.
2608 */
ca64c47c
MR
2609 if (!(v & (1 << (i & 0x1f)))) {
2610 atomic_inc(&irq_mis_count);
2611
c29d9db3 2612 eoi_ioapic_irq(desc);
ca64c47c
MR
2613 }
2614
54168ed7
IM
2615 /* Now we can move and renable the irq */
2616 if (unlikely(do_unmask_irq)) {
2617 /* Only migrate the irq if the ack has been received.
2618 *
2619 * On rare occasions the broadcast level triggered ack gets
2620 * delayed going to ioapics, and if we reprogram the
2621 * vector while Remote IRR is still set the irq will never
2622 * fire again.
2623 *
2624 * To prevent this scenario we read the Remote IRR bit
2625 * of the ioapic. This has two effects.
2626 * - On any sane system the read of the ioapic will
2627 * flush writes (and acks) going to the ioapic from
2628 * this cpu.
2629 * - We get to see if the ACK has actually been delivered.
2630 *
2631 * Based on failed experiments of reprogramming the
2632 * ioapic entry from outside of irq context starting
2633 * with masking the ioapic entry and then polling until
2634 * Remote IRR was clear before reprogramming the
2635 * ioapic I don't trust the Remote IRR bit to be
2636 * completey accurate.
2637 *
2638 * However there appears to be no other way to plug
2639 * this race, so if the Remote IRR bit is not
2640 * accurate and is causing problems then it is a hardware bug
2641 * and you can go talk to the chipset vendor about it.
2642 */
3145e941
YL
2643 cfg = desc->chip_data;
2644 if (!io_apic_level_ack_pending(cfg))
54168ed7 2645 move_masked_irq(irq);
3145e941 2646 unmask_IO_APIC_irq_desc(desc);
54168ed7 2647 }
3eb2cce8 2648}
1d025192 2649
d0b03bd1
HW
2650#ifdef CONFIG_INTR_REMAP
2651static void ir_ack_apic_edge(unsigned int irq)
2652{
5d0ae2db 2653 ack_APIC_irq();
d0b03bd1
HW
2654}
2655
2656static void ir_ack_apic_level(unsigned int irq)
2657{
5d0ae2db
WH
2658 struct irq_desc *desc = irq_to_desc(irq);
2659
2660 ack_APIC_irq();
2661 eoi_ioapic_irq(desc);
d0b03bd1
HW
2662}
2663#endif /* CONFIG_INTR_REMAP */
2664
f5b9ed7a 2665static struct irq_chip ioapic_chip __read_mostly = {
d6c88a50
TG
2666 .name = "IO-APIC",
2667 .startup = startup_ioapic_irq,
2668 .mask = mask_IO_APIC_irq,
2669 .unmask = unmask_IO_APIC_irq,
2670 .ack = ack_apic_edge,
2671 .eoi = ack_apic_level,
54d5d424 2672#ifdef CONFIG_SMP
d6c88a50 2673 .set_affinity = set_ioapic_affinity_irq,
54d5d424 2674#endif
ace80ab7 2675 .retrigger = ioapic_retrigger_irq,
1da177e4
LT
2676};
2677
54168ed7 2678static struct irq_chip ir_ioapic_chip __read_mostly = {
d6c88a50
TG
2679 .name = "IR-IO-APIC",
2680 .startup = startup_ioapic_irq,
2681 .mask = mask_IO_APIC_irq,
2682 .unmask = unmask_IO_APIC_irq,
a1e38ca5 2683#ifdef CONFIG_INTR_REMAP
d0b03bd1
HW
2684 .ack = ir_ack_apic_edge,
2685 .eoi = ir_ack_apic_level,
54168ed7 2686#ifdef CONFIG_SMP
d6c88a50 2687 .set_affinity = set_ir_ioapic_affinity_irq,
a1e38ca5 2688#endif
54168ed7
IM
2689#endif
2690 .retrigger = ioapic_retrigger_irq,
2691};
1da177e4
LT
2692
2693static inline void init_IO_APIC_traps(void)
2694{
2695 int irq;
08678b08 2696 struct irq_desc *desc;
da51a821 2697 struct irq_cfg *cfg;
1da177e4
LT
2698
2699 /*
2700 * NOTE! The local APIC isn't very good at handling
2701 * multiple interrupts at the same interrupt level.
2702 * As the interrupt level is determined by taking the
2703 * vector number and shifting that right by 4, we
2704 * want to spread these out a bit so that they don't
2705 * all fall in the same interrupt level.
2706 *
2707 * Also, we've got to be careful not to trash gate
2708 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2709 */
0b8f1efa 2710 for_each_irq_desc(irq, desc) {
0b8f1efa
YL
2711 cfg = desc->chip_data;
2712 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
1da177e4
LT
2713 /*
2714 * Hmm.. We don't have an entry for this,
2715 * so default to an old-fashioned 8259
2716 * interrupt if we can..
2717 */
bc07844a 2718 if (irq < nr_legacy_irqs)
1da177e4 2719 make_8259A_irq(irq);
0b8f1efa 2720 else
1da177e4 2721 /* Strange. Oh, well.. */
08678b08 2722 desc->chip = &no_irq_chip;
1da177e4
LT
2723 }
2724 }
2725}
2726
f5b9ed7a
IM
2727/*
2728 * The local APIC irq-chip implementation:
2729 */
1da177e4 2730
36062448 2731static void mask_lapic_irq(unsigned int irq)
1da177e4
LT
2732{
2733 unsigned long v;
2734
2735 v = apic_read(APIC_LVT0);
593f4a78 2736 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1da177e4
LT
2737}
2738
36062448 2739static void unmask_lapic_irq(unsigned int irq)
1da177e4 2740{
f5b9ed7a 2741 unsigned long v;
1da177e4 2742
f5b9ed7a 2743 v = apic_read(APIC_LVT0);
593f4a78 2744 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
f5b9ed7a 2745}
1da177e4 2746
3145e941 2747static void ack_lapic_irq(unsigned int irq)
1d025192
YL
2748{
2749 ack_APIC_irq();
2750}
2751
f5b9ed7a 2752static struct irq_chip lapic_chip __read_mostly = {
9a1c6192 2753 .name = "local-APIC",
f5b9ed7a
IM
2754 .mask = mask_lapic_irq,
2755 .unmask = unmask_lapic_irq,
c88ac1df 2756 .ack = ack_lapic_irq,
1da177e4
LT
2757};
2758
3145e941 2759static void lapic_register_intr(int irq, struct irq_desc *desc)
c88ac1df 2760{
08678b08 2761 desc->status &= ~IRQ_LEVEL;
c88ac1df
MR
2762 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2763 "edge");
c88ac1df
MR
2764}
2765
e9427101 2766static void __init setup_nmi(void)
1da177e4
LT
2767{
2768 /*
36062448 2769 * Dirty trick to enable the NMI watchdog ...
1da177e4
LT
2770 * We put the 8259A master into AEOI mode and
2771 * unmask on all local APICs LVT0 as NMI.
2772 *
2773 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2774 * is from Maciej W. Rozycki - so we do not have to EOI from
2775 * the NMI handler or the timer interrupt.
36062448 2776 */
1da177e4
LT
2777 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2778
e9427101 2779 enable_NMI_through_LVT0();
1da177e4
LT
2780
2781 apic_printk(APIC_VERBOSE, " done.\n");
2782}
2783
2784/*
2785 * This looks a bit hackish but it's about the only one way of sending
2786 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2787 * not support the ExtINT mode, unfortunately. We need to send these
2788 * cycles as some i82489DX-based boards have glue logic that keeps the
2789 * 8259A interrupt line asserted until INTA. --macro
2790 */
28acf285 2791static inline void __init unlock_ExtINT_logic(void)
1da177e4 2792{
fcfd636a 2793 int apic, pin, i;
1da177e4
LT
2794 struct IO_APIC_route_entry entry0, entry1;
2795 unsigned char save_control, save_freq_select;
1da177e4 2796
fcfd636a 2797 pin = find_isa_irq_pin(8, mp_INT);
956fb531
AB
2798 if (pin == -1) {
2799 WARN_ON_ONCE(1);
2800 return;
2801 }
fcfd636a 2802 apic = find_isa_irq_apic(8, mp_INT);
956fb531
AB
2803 if (apic == -1) {
2804 WARN_ON_ONCE(1);
1da177e4 2805 return;
956fb531 2806 }
1da177e4 2807
cf4c6a2f 2808 entry0 = ioapic_read_entry(apic, pin);
fcfd636a 2809 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
2810
2811 memset(&entry1, 0, sizeof(entry1));
2812
2813 entry1.dest_mode = 0; /* physical delivery */
2814 entry1.mask = 0; /* unmask IRQ now */
d83e94ac 2815 entry1.dest = hard_smp_processor_id();
1da177e4
LT
2816 entry1.delivery_mode = dest_ExtINT;
2817 entry1.polarity = entry0.polarity;
2818 entry1.trigger = 0;
2819 entry1.vector = 0;
2820
cf4c6a2f 2821 ioapic_write_entry(apic, pin, entry1);
1da177e4
LT
2822
2823 save_control = CMOS_READ(RTC_CONTROL);
2824 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2825 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2826 RTC_FREQ_SELECT);
2827 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2828
2829 i = 100;
2830 while (i-- > 0) {
2831 mdelay(10);
2832 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2833 i -= 10;
2834 }
2835
2836 CMOS_WRITE(save_control, RTC_CONTROL);
2837 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
fcfd636a 2838 clear_IO_APIC_pin(apic, pin);
1da177e4 2839
cf4c6a2f 2840 ioapic_write_entry(apic, pin, entry0);
1da177e4
LT
2841}
2842
efa2559f 2843static int disable_timer_pin_1 __initdata;
047c8fdb 2844/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
54168ed7 2845static int __init disable_timer_pin_setup(char *arg)
efa2559f
YL
2846{
2847 disable_timer_pin_1 = 1;
2848 return 0;
2849}
54168ed7 2850early_param("disable_timer_pin_1", disable_timer_pin_setup);
efa2559f
YL
2851
2852int timer_through_8259 __initdata;
2853
1da177e4
LT
2854/*
2855 * This code may look a bit paranoid, but it's supposed to cooperate with
2856 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2857 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2858 * fanatically on his truly buggy board.
54168ed7
IM
2859 *
2860 * FIXME: really need to revamp this for all platforms.
1da177e4 2861 */
8542b200 2862static inline void __init check_timer(void)
1da177e4 2863{
3145e941
YL
2864 struct irq_desc *desc = irq_to_desc(0);
2865 struct irq_cfg *cfg = desc->chip_data;
85ac16d0 2866 int node = cpu_to_node(boot_cpu_id);
fcfd636a 2867 int apic1, pin1, apic2, pin2;
4aae0702 2868 unsigned long flags;
047c8fdb 2869 int no_pin1 = 0;
4aae0702
IM
2870
2871 local_irq_save(flags);
d4d25dec 2872
1da177e4
LT
2873 /*
2874 * get/set the timer IRQ vector:
2875 */
2876 disable_8259A_irq(0);
fe402e1f 2877 assign_irq_vector(0, cfg, apic->target_cpus());
1da177e4
LT
2878
2879 /*
d11d5794
MR
2880 * As IRQ0 is to be enabled in the 8259A, the virtual
2881 * wire has to be disabled in the local APIC. Also
2882 * timer interrupts need to be acknowledged manually in
2883 * the 8259A for the i82489DX when using the NMI
2884 * watchdog as that APIC treats NMIs as level-triggered.
2885 * The AEOI mode will finish them in the 8259A
2886 * automatically.
1da177e4 2887 */
593f4a78 2888 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1da177e4 2889 init_8259A(1);
54168ed7 2890#ifdef CONFIG_X86_32
f72dccac
YL
2891 {
2892 unsigned int ver;
2893
2894 ver = apic_read(APIC_LVR);
2895 ver = GET_APIC_VERSION(ver);
2896 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2897 }
54168ed7 2898#endif
1da177e4 2899
fcfd636a
EB
2900 pin1 = find_isa_irq_pin(0, mp_INT);
2901 apic1 = find_isa_irq_apic(0, mp_INT);
2902 pin2 = ioapic_i8259.pin;
2903 apic2 = ioapic_i8259.apic;
1da177e4 2904
49a66a0b
MR
2905 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2906 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
497c9a19 2907 cfg->vector, apic1, pin1, apic2, pin2);
1da177e4 2908
691874fa
MR
2909 /*
2910 * Some BIOS writers are clueless and report the ExtINTA
2911 * I/O APIC input from the cascaded 8259A as the timer
2912 * interrupt input. So just in case, if only one pin
2913 * was found above, try it both directly and through the
2914 * 8259A.
2915 */
2916 if (pin1 == -1) {
54168ed7
IM
2917 if (intr_remapping_enabled)
2918 panic("BIOS bug: timer not connected to IO-APIC");
691874fa
MR
2919 pin1 = pin2;
2920 apic1 = apic2;
2921 no_pin1 = 1;
2922 } else if (pin2 == -1) {
2923 pin2 = pin1;
2924 apic2 = apic1;
2925 }
2926
1da177e4
LT
2927 if (pin1 != -1) {
2928 /*
2929 * Ok, does IRQ0 through the IOAPIC work?
2930 */
691874fa 2931 if (no_pin1) {
85ac16d0 2932 add_pin_to_irq_node(cfg, node, apic1, pin1);
497c9a19 2933 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
f72dccac
YL
2934 } else {
2935 /* for edge trigger, setup_IO_APIC_irq already
2936 * leave it unmasked.
2937 * so only need to unmask if it is level-trigger
2938 * do we really have level trigger timer?
2939 */
2940 int idx;
2941 idx = find_irq_entry(apic1, pin1, mp_INT);
2942 if (idx != -1 && irq_trigger(idx))
2943 unmask_IO_APIC_irq_desc(desc);
691874fa 2944 }
1da177e4
LT
2945 if (timer_irq_works()) {
2946 if (nmi_watchdog == NMI_IO_APIC) {
1da177e4
LT
2947 setup_nmi();
2948 enable_8259A_irq(0);
1da177e4 2949 }
66759a01
CE
2950 if (disable_timer_pin_1 > 0)
2951 clear_IO_APIC_pin(0, pin1);
4aae0702 2952 goto out;
1da177e4 2953 }
54168ed7
IM
2954 if (intr_remapping_enabled)
2955 panic("timer doesn't work through Interrupt-remapped IO-APIC");
f72dccac 2956 local_irq_disable();
fcfd636a 2957 clear_IO_APIC_pin(apic1, pin1);
691874fa 2958 if (!no_pin1)
49a66a0b
MR
2959 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2960 "8254 timer not connected to IO-APIC\n");
1da177e4 2961
49a66a0b
MR
2962 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2963 "(IRQ0) through the 8259A ...\n");
2964 apic_printk(APIC_QUIET, KERN_INFO
2965 "..... (found apic %d pin %d) ...\n", apic2, pin2);
1da177e4
LT
2966 /*
2967 * legacy devices should be connected to IO APIC #0
2968 */
85ac16d0 2969 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
497c9a19 2970 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
ecd29476 2971 enable_8259A_irq(0);
1da177e4 2972 if (timer_irq_works()) {
49a66a0b 2973 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
35542c5e 2974 timer_through_8259 = 1;
1da177e4 2975 if (nmi_watchdog == NMI_IO_APIC) {
60134ebe 2976 disable_8259A_irq(0);
1da177e4 2977 setup_nmi();
60134ebe 2978 enable_8259A_irq(0);
1da177e4 2979 }
4aae0702 2980 goto out;
1da177e4
LT
2981 }
2982 /*
2983 * Cleanup, just in case ...
2984 */
f72dccac 2985 local_irq_disable();
ecd29476 2986 disable_8259A_irq(0);
fcfd636a 2987 clear_IO_APIC_pin(apic2, pin2);
49a66a0b 2988 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
1da177e4 2989 }
1da177e4
LT
2990
2991 if (nmi_watchdog == NMI_IO_APIC) {
49a66a0b
MR
2992 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2993 "through the IO-APIC - disabling NMI Watchdog!\n");
067fa0ff 2994 nmi_watchdog = NMI_NONE;
1da177e4 2995 }
54168ed7 2996#ifdef CONFIG_X86_32
d11d5794 2997 timer_ack = 0;
54168ed7 2998#endif
1da177e4 2999
49a66a0b
MR
3000 apic_printk(APIC_QUIET, KERN_INFO
3001 "...trying to set up timer as Virtual Wire IRQ...\n");
1da177e4 3002
3145e941 3003 lapic_register_intr(0, desc);
497c9a19 3004 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
1da177e4
LT
3005 enable_8259A_irq(0);
3006
3007 if (timer_irq_works()) {
49a66a0b 3008 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 3009 goto out;
1da177e4 3010 }
f72dccac 3011 local_irq_disable();
e67465f1 3012 disable_8259A_irq(0);
497c9a19 3013 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
49a66a0b 3014 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
1da177e4 3015
49a66a0b
MR
3016 apic_printk(APIC_QUIET, KERN_INFO
3017 "...trying to set up timer as ExtINT IRQ...\n");
1da177e4 3018
1da177e4
LT
3019 init_8259A(0);
3020 make_8259A_irq(0);
593f4a78 3021 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1da177e4
LT
3022
3023 unlock_ExtINT_logic();
3024
3025 if (timer_irq_works()) {
49a66a0b 3026 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 3027 goto out;
1da177e4 3028 }
f72dccac 3029 local_irq_disable();
49a66a0b 3030 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
1da177e4 3031 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
49a66a0b 3032 "report. Then try booting with the 'noapic' option.\n");
4aae0702
IM
3033out:
3034 local_irq_restore(flags);
1da177e4
LT
3035}
3036
3037/*
af174783
MR
3038 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3039 * to devices. However there may be an I/O APIC pin available for
3040 * this interrupt regardless. The pin may be left unconnected, but
3041 * typically it will be reused as an ExtINT cascade interrupt for
3042 * the master 8259A. In the MPS case such a pin will normally be
3043 * reported as an ExtINT interrupt in the MP table. With ACPI
3044 * there is no provision for ExtINT interrupts, and in the absence
3045 * of an override it would be treated as an ordinary ISA I/O APIC
3046 * interrupt, that is edge-triggered and unmasked by default. We
3047 * used to do this, but it caused problems on some systems because
3048 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3049 * the same ExtINT cascade interrupt to drive the local APIC of the
3050 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3051 * the I/O APIC in all cases now. No actual device should request
3052 * it anyway. --macro
1da177e4 3053 */
bc07844a 3054#define PIC_IRQS (1UL << PIC_CASCADE_IR)
1da177e4
LT
3055
3056void __init setup_IO_APIC(void)
3057{
54168ed7 3058
54168ed7
IM
3059 /*
3060 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3061 */
bc07844a 3062 io_apic_irqs = nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
1da177e4 3063
54168ed7 3064 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
d6c88a50 3065 /*
54168ed7
IM
3066 * Set up IO-APIC IRQ routing.
3067 */
de934103
TG
3068 x86_init.mpparse.setup_ioapic_ids();
3069
1da177e4
LT
3070 sync_Arb_IDs();
3071 setup_IO_APIC_irqs();
3072 init_IO_APIC_traps();
bc07844a
TG
3073 if (nr_legacy_irqs)
3074 check_timer();
1da177e4
LT
3075}
3076
3077/*
54168ed7
IM
3078 * Called after all the initialization is done. If we didnt find any
3079 * APIC bugs then we can allow the modify fast path
1da177e4 3080 */
36062448 3081
1da177e4
LT
3082static int __init io_apic_bug_finalize(void)
3083{
d6c88a50
TG
3084 if (sis_apic_bug == -1)
3085 sis_apic_bug = 0;
3086 return 0;
1da177e4
LT
3087}
3088
3089late_initcall(io_apic_bug_finalize);
3090
3091struct sysfs_ioapic_data {
3092 struct sys_device dev;
3093 struct IO_APIC_route_entry entry[0];
3094};
54168ed7 3095static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1da177e4 3096
438510f6 3097static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1da177e4
LT
3098{
3099 struct IO_APIC_route_entry *entry;
3100 struct sysfs_ioapic_data *data;
1da177e4 3101 int i;
36062448 3102
1da177e4
LT
3103 data = container_of(dev, struct sysfs_ioapic_data, dev);
3104 entry = data->entry;
54168ed7
IM
3105 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3106 *entry = ioapic_read_entry(dev->id, i);
1da177e4
LT
3107
3108 return 0;
3109}
3110
3111static int ioapic_resume(struct sys_device *dev)
3112{
3113 struct IO_APIC_route_entry *entry;
3114 struct sysfs_ioapic_data *data;
3115 unsigned long flags;
3116 union IO_APIC_reg_00 reg_00;
3117 int i;
36062448 3118
1da177e4
LT
3119 data = container_of(dev, struct sysfs_ioapic_data, dev);
3120 entry = data->entry;
3121
3122 spin_lock_irqsave(&ioapic_lock, flags);
3123 reg_00.raw = io_apic_read(dev->id, 0);
b5ba7e6d
JSR
3124 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3125 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
1da177e4
LT
3126 io_apic_write(dev->id, 0, reg_00.raw);
3127 }
1da177e4 3128 spin_unlock_irqrestore(&ioapic_lock, flags);
36062448 3129 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
cf4c6a2f 3130 ioapic_write_entry(dev->id, i, entry[i]);
1da177e4
LT
3131
3132 return 0;
3133}
3134
3135static struct sysdev_class ioapic_sysdev_class = {
af5ca3f4 3136 .name = "ioapic",
1da177e4
LT
3137 .suspend = ioapic_suspend,
3138 .resume = ioapic_resume,
3139};
3140
3141static int __init ioapic_init_sysfs(void)
3142{
54168ed7
IM
3143 struct sys_device * dev;
3144 int i, size, error;
1da177e4
LT
3145
3146 error = sysdev_class_register(&ioapic_sysdev_class);
3147 if (error)
3148 return error;
3149
54168ed7 3150 for (i = 0; i < nr_ioapics; i++ ) {
36062448 3151 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1da177e4 3152 * sizeof(struct IO_APIC_route_entry);
25556c16 3153 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
1da177e4
LT
3154 if (!mp_ioapic_data[i]) {
3155 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3156 continue;
3157 }
1da177e4 3158 dev = &mp_ioapic_data[i]->dev;
36062448 3159 dev->id = i;
1da177e4
LT
3160 dev->cls = &ioapic_sysdev_class;
3161 error = sysdev_register(dev);
3162 if (error) {
3163 kfree(mp_ioapic_data[i]);
3164 mp_ioapic_data[i] = NULL;
3165 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3166 continue;
3167 }
3168 }
3169
3170 return 0;
3171}
3172
3173device_initcall(ioapic_init_sysfs);
3174
3fc471ed 3175/*
95d77884 3176 * Dynamic irq allocate and deallocation
3fc471ed 3177 */
d047f53a 3178unsigned int create_irq_nr(unsigned int irq_want, int node)
3fc471ed 3179{
ace80ab7 3180 /* Allocate an unused irq */
54168ed7
IM
3181 unsigned int irq;
3182 unsigned int new;
3fc471ed 3183 unsigned long flags;
0b8f1efa 3184 struct irq_cfg *cfg_new = NULL;
0b8f1efa 3185 struct irq_desc *desc_new = NULL;
199751d7
YL
3186
3187 irq = 0;
abcaa2b8
YL
3188 if (irq_want < nr_irqs_gsi)
3189 irq_want = nr_irqs_gsi;
3190
ace80ab7 3191 spin_lock_irqsave(&vector_lock, flags);
9594949b 3192 for (new = irq_want; new < nr_irqs; new++) {
85ac16d0 3193 desc_new = irq_to_desc_alloc_node(new, node);
0b8f1efa
YL
3194 if (!desc_new) {
3195 printk(KERN_INFO "can not get irq_desc for %d\n", new);
ace80ab7 3196 continue;
0b8f1efa
YL
3197 }
3198 cfg_new = desc_new->chip_data;
3199
3200 if (cfg_new->vector != 0)
ace80ab7 3201 continue;
d047f53a 3202
15e957d0 3203 desc_new = move_irq_desc(desc_new, node);
37ef2a30 3204 cfg_new = desc_new->chip_data;
d047f53a 3205
fe402e1f 3206 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
ace80ab7
EB
3207 irq = new;
3208 break;
3209 }
3210 spin_unlock_irqrestore(&vector_lock, flags);
3fc471ed 3211
199751d7 3212 if (irq > 0) {
3fc471ed 3213 dynamic_irq_init(irq);
0b8f1efa
YL
3214 /* restore it, in case dynamic_irq_init clear it */
3215 if (desc_new)
3216 desc_new->chip_data = cfg_new;
3fc471ed
EB
3217 }
3218 return irq;
3219}
3220
199751d7
YL
3221int create_irq(void)
3222{
d047f53a 3223 int node = cpu_to_node(boot_cpu_id);
be5d5350 3224 unsigned int irq_want;
54168ed7
IM
3225 int irq;
3226
be5d5350 3227 irq_want = nr_irqs_gsi;
d047f53a 3228 irq = create_irq_nr(irq_want, node);
54168ed7
IM
3229
3230 if (irq == 0)
3231 irq = -1;
3232
3233 return irq;
199751d7
YL
3234}
3235
3fc471ed
EB
3236void destroy_irq(unsigned int irq)
3237{
3238 unsigned long flags;
0b8f1efa
YL
3239 struct irq_cfg *cfg;
3240 struct irq_desc *desc;
3fc471ed 3241
0b8f1efa
YL
3242 /* store it, in case dynamic_irq_cleanup clear it */
3243 desc = irq_to_desc(irq);
3244 cfg = desc->chip_data;
3fc471ed 3245 dynamic_irq_cleanup(irq);
0b8f1efa 3246 /* connect back irq_cfg */
25f6e89b 3247 desc->chip_data = cfg;
3fc471ed 3248
54168ed7 3249 free_irte(irq);
3fc471ed 3250 spin_lock_irqsave(&vector_lock, flags);
3145e941 3251 __clear_irq_vector(irq, cfg);
3fc471ed
EB
3252 spin_unlock_irqrestore(&vector_lock, flags);
3253}
3fc471ed 3254
2d3fcc1c 3255/*
27b46d76 3256 * MSI message composition
2d3fcc1c
EB
3257 */
3258#ifdef CONFIG_PCI_MSI
c8bc6f3c
SS
3259static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3260 struct msi_msg *msg, u8 hpet_id)
2d3fcc1c 3261{
497c9a19
YL
3262 struct irq_cfg *cfg;
3263 int err;
2d3fcc1c
EB
3264 unsigned dest;
3265
f1182638
JB
3266 if (disable_apic)
3267 return -ENXIO;
3268
3145e941 3269 cfg = irq_cfg(irq);
fe402e1f 3270 err = assign_irq_vector(irq, cfg, apic->target_cpus());
497c9a19
YL
3271 if (err)
3272 return err;
2d3fcc1c 3273
debccb3e 3274 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
497c9a19 3275
54168ed7
IM
3276 if (irq_remapped(irq)) {
3277 struct irte irte;
3278 int ir_index;
3279 u16 sub_handle;
3280
3281 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3282 BUG_ON(ir_index == -1);
3283
3284 memset (&irte, 0, sizeof(irte));
3285
3286 irte.present = 1;
9b5bc8dc 3287 irte.dst_mode = apic->irq_dest_mode;
54168ed7 3288 irte.trigger_mode = 0; /* edge */
9b5bc8dc 3289 irte.dlvry_mode = apic->irq_delivery_mode;
54168ed7
IM
3290 irte.vector = cfg->vector;
3291 irte.dest_id = IRTE_DEST(dest);
3292
f007e99c 3293 /* Set source-id of interrupt request */
c8bc6f3c
SS
3294 if (pdev)
3295 set_msi_sid(&irte, pdev);
3296 else
3297 set_hpet_sid(&irte, hpet_id);
f007e99c 3298
54168ed7
IM
3299 modify_irte(irq, &irte);
3300
3301 msg->address_hi = MSI_ADDR_BASE_HI;
3302 msg->data = sub_handle;
3303 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3304 MSI_ADDR_IR_SHV |
3305 MSI_ADDR_IR_INDEX1(ir_index) |
3306 MSI_ADDR_IR_INDEX2(ir_index);
29b61be6 3307 } else {
9d783ba0
SS
3308 if (x2apic_enabled())
3309 msg->address_hi = MSI_ADDR_BASE_HI |
3310 MSI_ADDR_EXT_DEST_ID(dest);
3311 else
3312 msg->address_hi = MSI_ADDR_BASE_HI;
3313
54168ed7
IM
3314 msg->address_lo =
3315 MSI_ADDR_BASE_LO |
9b5bc8dc 3316 ((apic->irq_dest_mode == 0) ?
54168ed7
IM
3317 MSI_ADDR_DEST_MODE_PHYSICAL:
3318 MSI_ADDR_DEST_MODE_LOGICAL) |
9b5bc8dc 3319 ((apic->irq_delivery_mode != dest_LowestPrio) ?
54168ed7
IM
3320 MSI_ADDR_REDIRECTION_CPU:
3321 MSI_ADDR_REDIRECTION_LOWPRI) |
3322 MSI_ADDR_DEST_ID(dest);
497c9a19 3323
54168ed7
IM
3324 msg->data =
3325 MSI_DATA_TRIGGER_EDGE |
3326 MSI_DATA_LEVEL_ASSERT |
9b5bc8dc 3327 ((apic->irq_delivery_mode != dest_LowestPrio) ?
54168ed7
IM
3328 MSI_DATA_DELIVERY_FIXED:
3329 MSI_DATA_DELIVERY_LOWPRI) |
3330 MSI_DATA_VECTOR(cfg->vector);
3331 }
497c9a19 3332 return err;
2d3fcc1c
EB
3333}
3334
3b7d1921 3335#ifdef CONFIG_SMP
d5dedd45 3336static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
2d3fcc1c 3337{
3145e941 3338 struct irq_desc *desc = irq_to_desc(irq);
497c9a19 3339 struct irq_cfg *cfg;
3b7d1921
EB
3340 struct msi_msg msg;
3341 unsigned int dest;
3b7d1921 3342
18374d89 3343 if (set_desc_affinity(desc, mask, &dest))
d5dedd45 3344 return -1;
2d3fcc1c 3345
3145e941 3346 cfg = desc->chip_data;
2d3fcc1c 3347
3145e941 3348 read_msi_msg_desc(desc, &msg);
3b7d1921
EB
3349
3350 msg.data &= ~MSI_DATA_VECTOR_MASK;
497c9a19 3351 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3b7d1921
EB
3352 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3353 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3354
3145e941 3355 write_msi_msg_desc(desc, &msg);
d5dedd45
YL
3356
3357 return 0;
2d3fcc1c 3358}
54168ed7
IM
3359#ifdef CONFIG_INTR_REMAP
3360/*
3361 * Migrate the MSI irq to another cpumask. This migration is
3362 * done in the process context using interrupt-remapping hardware.
3363 */
d5dedd45 3364static int
e7986739 3365ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
54168ed7 3366{
3145e941 3367 struct irq_desc *desc = irq_to_desc(irq);
a7883dec 3368 struct irq_cfg *cfg = desc->chip_data;
54168ed7 3369 unsigned int dest;
54168ed7 3370 struct irte irte;
54168ed7
IM
3371
3372 if (get_irte(irq, &irte))
d5dedd45 3373 return -1;
54168ed7 3374
18374d89 3375 if (set_desc_affinity(desc, mask, &dest))
d5dedd45 3376 return -1;
54168ed7 3377
54168ed7
IM
3378 irte.vector = cfg->vector;
3379 irte.dest_id = IRTE_DEST(dest);
3380
3381 /*
3382 * atomically update the IRTE with the new destination and vector.
3383 */
3384 modify_irte(irq, &irte);
3385
3386 /*
3387 * After this point, all the interrupts will start arriving
3388 * at the new destination. So, time to cleanup the previous
3389 * vector allocation.
3390 */
22f65d31
MT
3391 if (cfg->move_in_progress)
3392 send_cleanup_vector(cfg);
d5dedd45
YL
3393
3394 return 0;
54168ed7 3395}
3145e941 3396
54168ed7 3397#endif
3b7d1921 3398#endif /* CONFIG_SMP */
2d3fcc1c 3399
3b7d1921
EB
3400/*
3401 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3402 * which implement the MSI or MSI-X Capability Structure.
3403 */
3404static struct irq_chip msi_chip = {
3405 .name = "PCI-MSI",
3406 .unmask = unmask_msi_irq,
3407 .mask = mask_msi_irq,
1d025192 3408 .ack = ack_apic_edge,
3b7d1921
EB
3409#ifdef CONFIG_SMP
3410 .set_affinity = set_msi_irq_affinity,
3411#endif
3412 .retrigger = ioapic_retrigger_irq,
2d3fcc1c
EB
3413};
3414
54168ed7
IM
3415static struct irq_chip msi_ir_chip = {
3416 .name = "IR-PCI-MSI",
3417 .unmask = unmask_msi_irq,
3418 .mask = mask_msi_irq,
a1e38ca5 3419#ifdef CONFIG_INTR_REMAP
d0b03bd1 3420 .ack = ir_ack_apic_edge,
54168ed7
IM
3421#ifdef CONFIG_SMP
3422 .set_affinity = ir_set_msi_irq_affinity,
a1e38ca5 3423#endif
54168ed7
IM
3424#endif
3425 .retrigger = ioapic_retrigger_irq,
3426};
3427
3428/*
3429 * Map the PCI dev to the corresponding remapping hardware unit
3430 * and allocate 'nvec' consecutive interrupt-remapping table entries
3431 * in it.
3432 */
3433static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3434{
3435 struct intel_iommu *iommu;
3436 int index;
3437
3438 iommu = map_dev_to_ir(dev);
3439 if (!iommu) {
3440 printk(KERN_ERR
3441 "Unable to map PCI %s to iommu\n", pci_name(dev));
3442 return -ENOENT;
3443 }
3444
3445 index = alloc_irte(iommu, irq, nvec);
3446 if (index < 0) {
3447 printk(KERN_ERR
3448 "Unable to allocate %d IRTE for PCI %s\n", nvec,
d6c88a50 3449 pci_name(dev));
54168ed7
IM
3450 return -ENOSPC;
3451 }
3452 return index;
3453}
1d025192 3454
3145e941 3455static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
1d025192
YL
3456{
3457 int ret;
3458 struct msi_msg msg;
3459
c8bc6f3c 3460 ret = msi_compose_msg(dev, irq, &msg, -1);
1d025192
YL
3461 if (ret < 0)
3462 return ret;
3463
3145e941 3464 set_irq_msi(irq, msidesc);
1d025192
YL
3465 write_msi_msg(irq, &msg);
3466
54168ed7
IM
3467 if (irq_remapped(irq)) {
3468 struct irq_desc *desc = irq_to_desc(irq);
3469 /*
3470 * irq migration in process context
3471 */
3472 desc->status |= IRQ_MOVE_PCNTXT;
3473 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3474 } else
54168ed7 3475 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
1d025192 3476
c81bba49
YL
3477 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3478
1d025192
YL
3479 return 0;
3480}
3481
047c8fdb
YL
3482int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3483{
54168ed7
IM
3484 unsigned int irq;
3485 int ret, sub_handle;
0b8f1efa 3486 struct msi_desc *msidesc;
54168ed7 3487 unsigned int irq_want;
1cc18521 3488 struct intel_iommu *iommu = NULL;
54168ed7 3489 int index = 0;
d047f53a 3490 int node;
54168ed7 3491
1c8d7b0a
MW
3492 /* x86 doesn't support multiple MSI yet */
3493 if (type == PCI_CAP_ID_MSI && nvec > 1)
3494 return 1;
3495
d047f53a 3496 node = dev_to_node(&dev->dev);
be5d5350 3497 irq_want = nr_irqs_gsi;
54168ed7 3498 sub_handle = 0;
0b8f1efa 3499 list_for_each_entry(msidesc, &dev->msi_list, list) {
d047f53a 3500 irq = create_irq_nr(irq_want, node);
54168ed7
IM
3501 if (irq == 0)
3502 return -1;
f1ee5548 3503 irq_want = irq + 1;
54168ed7
IM
3504 if (!intr_remapping_enabled)
3505 goto no_ir;
3506
3507 if (!sub_handle) {
3508 /*
3509 * allocate the consecutive block of IRTE's
3510 * for 'nvec'
3511 */
3512 index = msi_alloc_irte(dev, irq, nvec);
3513 if (index < 0) {
3514 ret = index;
3515 goto error;
3516 }
3517 } else {
3518 iommu = map_dev_to_ir(dev);
3519 if (!iommu) {
3520 ret = -ENOENT;
3521 goto error;
3522 }
3523 /*
3524 * setup the mapping between the irq and the IRTE
3525 * base index, the sub_handle pointing to the
3526 * appropriate interrupt remap table entry.
3527 */
3528 set_irte_irq(irq, iommu, index, sub_handle);
3529 }
3530no_ir:
0b8f1efa 3531 ret = setup_msi_irq(dev, msidesc, irq);
54168ed7
IM
3532 if (ret < 0)
3533 goto error;
3534 sub_handle++;
3535 }
3536 return 0;
047c8fdb
YL
3537
3538error:
54168ed7
IM
3539 destroy_irq(irq);
3540 return ret;
047c8fdb
YL
3541}
3542
3b7d1921
EB
3543void arch_teardown_msi_irq(unsigned int irq)
3544{
f7feaca7 3545 destroy_irq(irq);
3b7d1921
EB
3546}
3547
9d783ba0 3548#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
54168ed7 3549#ifdef CONFIG_SMP
d5dedd45 3550static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
54168ed7 3551{
3145e941 3552 struct irq_desc *desc = irq_to_desc(irq);
54168ed7
IM
3553 struct irq_cfg *cfg;
3554 struct msi_msg msg;
3555 unsigned int dest;
54168ed7 3556
18374d89 3557 if (set_desc_affinity(desc, mask, &dest))
d5dedd45 3558 return -1;
54168ed7 3559
3145e941 3560 cfg = desc->chip_data;
54168ed7
IM
3561
3562 dmar_msi_read(irq, &msg);
3563
3564 msg.data &= ~MSI_DATA_VECTOR_MASK;
3565 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3566 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3567 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3568
3569 dmar_msi_write(irq, &msg);
d5dedd45
YL
3570
3571 return 0;
54168ed7 3572}
3145e941 3573
54168ed7
IM
3574#endif /* CONFIG_SMP */
3575
8f7007aa 3576static struct irq_chip dmar_msi_type = {
54168ed7
IM
3577 .name = "DMAR_MSI",
3578 .unmask = dmar_msi_unmask,
3579 .mask = dmar_msi_mask,
3580 .ack = ack_apic_edge,
3581#ifdef CONFIG_SMP
3582 .set_affinity = dmar_msi_set_affinity,
3583#endif
3584 .retrigger = ioapic_retrigger_irq,
3585};
3586
3587int arch_setup_dmar_msi(unsigned int irq)
3588{
3589 int ret;
3590 struct msi_msg msg;
2d3fcc1c 3591
c8bc6f3c 3592 ret = msi_compose_msg(NULL, irq, &msg, -1);
54168ed7
IM
3593 if (ret < 0)
3594 return ret;
3595 dmar_msi_write(irq, &msg);
3596 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3597 "edge");
3598 return 0;
3599}
3600#endif
3601
58ac1e76 3602#ifdef CONFIG_HPET_TIMER
3603
3604#ifdef CONFIG_SMP
d5dedd45 3605static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
58ac1e76 3606{
3145e941 3607 struct irq_desc *desc = irq_to_desc(irq);
58ac1e76 3608 struct irq_cfg *cfg;
58ac1e76 3609 struct msi_msg msg;
3610 unsigned int dest;
58ac1e76 3611
18374d89 3612 if (set_desc_affinity(desc, mask, &dest))
d5dedd45 3613 return -1;
58ac1e76 3614
3145e941 3615 cfg = desc->chip_data;
58ac1e76 3616
3617 hpet_msi_read(irq, &msg);
3618
3619 msg.data &= ~MSI_DATA_VECTOR_MASK;
3620 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3621 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3622 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3623
3624 hpet_msi_write(irq, &msg);
d5dedd45
YL
3625
3626 return 0;
58ac1e76 3627}
3145e941 3628
58ac1e76 3629#endif /* CONFIG_SMP */
3630
c8bc6f3c
SS
3631static struct irq_chip ir_hpet_msi_type = {
3632 .name = "IR-HPET_MSI",
3633 .unmask = hpet_msi_unmask,
3634 .mask = hpet_msi_mask,
3635#ifdef CONFIG_INTR_REMAP
3636 .ack = ir_ack_apic_edge,
3637#ifdef CONFIG_SMP
3638 .set_affinity = ir_set_msi_irq_affinity,
3639#endif
3640#endif
3641 .retrigger = ioapic_retrigger_irq,
3642};
3643
1cc18521 3644static struct irq_chip hpet_msi_type = {
58ac1e76 3645 .name = "HPET_MSI",
3646 .unmask = hpet_msi_unmask,
3647 .mask = hpet_msi_mask,
3648 .ack = ack_apic_edge,
3649#ifdef CONFIG_SMP
3650 .set_affinity = hpet_msi_set_affinity,
3651#endif
3652 .retrigger = ioapic_retrigger_irq,
3653};
3654
c8bc6f3c 3655int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
58ac1e76 3656{
3657 int ret;
3658 struct msi_msg msg;
6ec3cfec 3659 struct irq_desc *desc = irq_to_desc(irq);
58ac1e76 3660
c8bc6f3c
SS
3661 if (intr_remapping_enabled) {
3662 struct intel_iommu *iommu = map_hpet_to_ir(id);
3663 int index;
3664
3665 if (!iommu)
3666 return -1;
3667
3668 index = alloc_irte(iommu, irq, 1);
3669 if (index < 0)
3670 return -1;
3671 }
3672
3673 ret = msi_compose_msg(NULL, irq, &msg, id);
58ac1e76 3674 if (ret < 0)
3675 return ret;
3676
3677 hpet_msi_write(irq, &msg);
6ec3cfec 3678 desc->status |= IRQ_MOVE_PCNTXT;
c8bc6f3c
SS
3679 if (irq_remapped(irq))
3680 set_irq_chip_and_handler_name(irq, &ir_hpet_msi_type,
3681 handle_edge_irq, "edge");
3682 else
3683 set_irq_chip_and_handler_name(irq, &hpet_msi_type,
3684 handle_edge_irq, "edge");
c81bba49 3685
58ac1e76 3686 return 0;
3687}
3688#endif
3689
54168ed7 3690#endif /* CONFIG_PCI_MSI */
8b955b0d
EB
3691/*
3692 * Hypertransport interrupt support
3693 */
3694#ifdef CONFIG_HT_IRQ
3695
3696#ifdef CONFIG_SMP
3697
497c9a19 3698static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
8b955b0d 3699{
ec68307c
EB
3700 struct ht_irq_msg msg;
3701 fetch_ht_irq_msg(irq, &msg);
8b955b0d 3702
497c9a19 3703 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
ec68307c 3704 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
8b955b0d 3705
497c9a19 3706 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
ec68307c 3707 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 3708
ec68307c 3709 write_ht_irq_msg(irq, &msg);
8b955b0d
EB
3710}
3711
d5dedd45 3712static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
8b955b0d 3713{
3145e941 3714 struct irq_desc *desc = irq_to_desc(irq);
497c9a19 3715 struct irq_cfg *cfg;
8b955b0d 3716 unsigned int dest;
8b955b0d 3717
18374d89 3718 if (set_desc_affinity(desc, mask, &dest))
d5dedd45 3719 return -1;
8b955b0d 3720
3145e941 3721 cfg = desc->chip_data;
8b955b0d 3722
497c9a19 3723 target_ht_irq(irq, dest, cfg->vector);
d5dedd45
YL
3724
3725 return 0;
8b955b0d 3726}
3145e941 3727
8b955b0d
EB
3728#endif
3729
c37e108d 3730static struct irq_chip ht_irq_chip = {
8b955b0d
EB
3731 .name = "PCI-HT",
3732 .mask = mask_ht_irq,
3733 .unmask = unmask_ht_irq,
1d025192 3734 .ack = ack_apic_edge,
8b955b0d
EB
3735#ifdef CONFIG_SMP
3736 .set_affinity = set_ht_irq_affinity,
3737#endif
3738 .retrigger = ioapic_retrigger_irq,
3739};
3740
3741int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3742{
497c9a19
YL
3743 struct irq_cfg *cfg;
3744 int err;
8b955b0d 3745
f1182638
JB
3746 if (disable_apic)
3747 return -ENXIO;
3748
3145e941 3749 cfg = irq_cfg(irq);
fe402e1f 3750 err = assign_irq_vector(irq, cfg, apic->target_cpus());
54168ed7 3751 if (!err) {
ec68307c 3752 struct ht_irq_msg msg;
8b955b0d 3753 unsigned dest;
8b955b0d 3754
debccb3e
IM
3755 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3756 apic->target_cpus());
8b955b0d 3757
ec68307c 3758 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 3759
ec68307c
EB
3760 msg.address_lo =
3761 HT_IRQ_LOW_BASE |
8b955b0d 3762 HT_IRQ_LOW_DEST_ID(dest) |
497c9a19 3763 HT_IRQ_LOW_VECTOR(cfg->vector) |
9b5bc8dc 3764 ((apic->irq_dest_mode == 0) ?
8b955b0d
EB
3765 HT_IRQ_LOW_DM_PHYSICAL :
3766 HT_IRQ_LOW_DM_LOGICAL) |
3767 HT_IRQ_LOW_RQEOI_EDGE |
9b5bc8dc 3768 ((apic->irq_delivery_mode != dest_LowestPrio) ?
8b955b0d
EB
3769 HT_IRQ_LOW_MT_FIXED :
3770 HT_IRQ_LOW_MT_ARBITRATED) |
3771 HT_IRQ_LOW_IRQ_MASKED;
3772
ec68307c 3773 write_ht_irq_msg(irq, &msg);
8b955b0d 3774
a460e745
IM
3775 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3776 handle_edge_irq, "edge");
c81bba49
YL
3777
3778 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
8b955b0d 3779 }
497c9a19 3780 return err;
8b955b0d
EB
3781}
3782#endif /* CONFIG_HT_IRQ */
3783
9d6a4d08
YL
3784int __init io_apic_get_redir_entries (int ioapic)
3785{
3786 union IO_APIC_reg_01 reg_01;
3787 unsigned long flags;
3788
3789 spin_lock_irqsave(&ioapic_lock, flags);
3790 reg_01.raw = io_apic_read(ioapic, 1);
3791 spin_unlock_irqrestore(&ioapic_lock, flags);
3792
3793 return reg_01.bits.entries;
3794}
3795
be5d5350 3796void __init probe_nr_irqs_gsi(void)
9d6a4d08 3797{
be5d5350
YL
3798 int nr = 0;
3799
cc6c5006
YL
3800 nr = acpi_probe_gsi();
3801 if (nr > nr_irqs_gsi) {
be5d5350 3802 nr_irqs_gsi = nr;
cc6c5006
YL
3803 } else {
3804 /* for acpi=off or acpi is not compiled in */
3805 int idx;
3806
3807 nr = 0;
3808 for (idx = 0; idx < nr_ioapics; idx++)
3809 nr += io_apic_get_redir_entries(idx) + 1;
3810
3811 if (nr > nr_irqs_gsi)
3812 nr_irqs_gsi = nr;
3813 }
3814
3815 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
9d6a4d08
YL
3816}
3817
4a046d17
YL
3818#ifdef CONFIG_SPARSE_IRQ
3819int __init arch_probe_nr_irqs(void)
3820{
3821 int nr;
3822
f1ee5548
YL
3823 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3824 nr_irqs = NR_VECTORS * nr_cpu_ids;
4a046d17 3825
f1ee5548
YL
3826 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3827#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3828 /*
3829 * for MSI and HT dyn irq
3830 */
9959c888 3831 nr += nr_irqs_gsi * 64;
f1ee5548
YL
3832#endif
3833 if (nr < nr_irqs)
4a046d17
YL
3834 nr_irqs = nr;
3835
3836 return 0;
3837}
3838#endif
3839
e5198075
YL
3840static int __io_apic_set_pci_routing(struct device *dev, int irq,
3841 struct io_apic_irq_attr *irq_attr)
5ef21837
YL
3842{
3843 struct irq_desc *desc;
3844 struct irq_cfg *cfg;
3845 int node;
e5198075
YL
3846 int ioapic, pin;
3847 int trigger, polarity;
5ef21837 3848
e5198075 3849 ioapic = irq_attr->ioapic;
5ef21837
YL
3850 if (!IO_APIC_IRQ(irq)) {
3851 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3852 ioapic);
3853 return -EINVAL;
3854 }
3855
3856 if (dev)
3857 node = dev_to_node(dev);
3858 else
3859 node = cpu_to_node(boot_cpu_id);
3860
3861 desc = irq_to_desc_alloc_node(irq, node);
3862 if (!desc) {
3863 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3864 return 0;
3865 }
3866
e5198075
YL
3867 pin = irq_attr->ioapic_pin;
3868 trigger = irq_attr->trigger;
3869 polarity = irq_attr->polarity;
3870
5ef21837
YL
3871 /*
3872 * IRQs < 16 are already in the irq_2_pin[] map
3873 */
bc07844a 3874 if (irq >= nr_legacy_irqs) {
5ef21837 3875 cfg = desc->chip_data;
f3d1915a
CG
3876 if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) {
3877 printk(KERN_INFO "can not add pin %d for irq %d\n",
3878 pin, irq);
3879 return 0;
3880 }
5ef21837
YL
3881 }
3882
e5198075 3883 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
5ef21837
YL
3884
3885 return 0;
3886}
3887
e5198075
YL
3888int io_apic_set_pci_routing(struct device *dev, int irq,
3889 struct io_apic_irq_attr *irq_attr)
5ef21837 3890{
e5198075 3891 int ioapic, pin;
5ef21837
YL
3892 /*
3893 * Avoid pin reprogramming. PRTs typically include entries
3894 * with redundant pin->gsi mappings (but unique PCI devices);
3895 * we only program the IOAPIC on the first.
3896 */
e5198075
YL
3897 ioapic = irq_attr->ioapic;
3898 pin = irq_attr->ioapic_pin;
5ef21837
YL
3899 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3900 pr_debug("Pin %d-%d already programmed\n",
3901 mp_ioapics[ioapic].apicid, pin);
3902 return 0;
3903 }
3904 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3905
e5198075 3906 return __io_apic_set_pci_routing(dev, irq, irq_attr);
5ef21837
YL
3907}
3908
2a4ab640
FT
3909u8 __init io_apic_unique_id(u8 id)
3910{
3911#ifdef CONFIG_X86_32
3912 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3913 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3914 return io_apic_get_unique_id(nr_ioapics, id);
3915 else
3916 return id;
3917#else
3918 int i;
3919 DECLARE_BITMAP(used, 256);
1da177e4 3920
2a4ab640
FT
3921 bitmap_zero(used, 256);
3922 for (i = 0; i < nr_ioapics; i++) {
3923 struct mpc_ioapic *ia = &mp_ioapics[i];
3924 __set_bit(ia->apicid, used);
3925 }
3926 if (!test_bit(id, used))
3927 return id;
3928 return find_first_zero_bit(used, 256);
3929#endif
3930}
1da177e4 3931
54168ed7 3932#ifdef CONFIG_X86_32
36062448 3933int __init io_apic_get_unique_id(int ioapic, int apic_id)
1da177e4
LT
3934{
3935 union IO_APIC_reg_00 reg_00;
3936 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3937 physid_mask_t tmp;
3938 unsigned long flags;
3939 int i = 0;
3940
3941 /*
36062448
PC
3942 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3943 * buses (one for LAPICs, one for IOAPICs), where predecessors only
1da177e4 3944 * supports up to 16 on one shared APIC bus.
36062448 3945 *
1da177e4
LT
3946 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3947 * advantage of new APIC bus architecture.
3948 */
3949
3950 if (physids_empty(apic_id_map))
7abc0753 3951 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
1da177e4
LT
3952
3953 spin_lock_irqsave(&ioapic_lock, flags);
3954 reg_00.raw = io_apic_read(ioapic, 0);
3955 spin_unlock_irqrestore(&ioapic_lock, flags);
3956
3957 if (apic_id >= get_physical_broadcast()) {
3958 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3959 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3960 apic_id = reg_00.bits.ID;
3961 }
3962
3963 /*
36062448 3964 * Every APIC in a system must have a unique ID or we get lots of nice
1da177e4
LT
3965 * 'stuck on smp_invalidate_needed IPI wait' messages.
3966 */
7abc0753 3967 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
1da177e4
LT
3968
3969 for (i = 0; i < get_physical_broadcast(); i++) {
7abc0753 3970 if (!apic->check_apicid_used(&apic_id_map, i))
1da177e4
LT
3971 break;
3972 }
3973
3974 if (i == get_physical_broadcast())
3975 panic("Max apic_id exceeded!\n");
3976
3977 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3978 "trying %d\n", ioapic, apic_id, i);
3979
3980 apic_id = i;
36062448 3981 }
1da177e4 3982
7abc0753 3983 apic->apicid_to_cpu_present(apic_id, &tmp);
1da177e4
LT
3984 physids_or(apic_id_map, apic_id_map, tmp);
3985
3986 if (reg_00.bits.ID != apic_id) {
3987 reg_00.bits.ID = apic_id;
3988
3989 spin_lock_irqsave(&ioapic_lock, flags);
3990 io_apic_write(ioapic, 0, reg_00.raw);
3991 reg_00.raw = io_apic_read(ioapic, 0);
3992 spin_unlock_irqrestore(&ioapic_lock, flags);
3993
3994 /* Sanity check */
6070f9ec
AD
3995 if (reg_00.bits.ID != apic_id) {
3996 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3997 return -1;
3998 }
1da177e4
LT
3999 }
4000
4001 apic_printk(APIC_VERBOSE, KERN_INFO
4002 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
4003
4004 return apic_id;
4005}
58f892e0 4006#endif
1da177e4 4007
36062448 4008int __init io_apic_get_version(int ioapic)
1da177e4
LT
4009{
4010 union IO_APIC_reg_01 reg_01;
4011 unsigned long flags;
4012
4013 spin_lock_irqsave(&ioapic_lock, flags);
4014 reg_01.raw = io_apic_read(ioapic, 1);
4015 spin_unlock_irqrestore(&ioapic_lock, flags);
4016
4017 return reg_01.bits.version;
4018}
4019
61fd47e0
SL
4020int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4021{
4022 int i;
4023
4024 if (skip_ioapic_setup)
4025 return -1;
4026
4027 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
4028 if (mp_irqs[i].irqtype == mp_INT &&
4029 mp_irqs[i].srcbusirq == bus_irq)
61fd47e0
SL
4030 break;
4031 if (i >= mp_irq_entries)
4032 return -1;
4033
4034 *trigger = irq_trigger(i);
4035 *polarity = irq_polarity(i);
4036 return 0;
4037}
4038
497c9a19
YL
4039/*
4040 * This function currently is only a helper for the i386 smp boot process where
4041 * we need to reprogram the ioredtbls to cater for the cpus which have come online
fe402e1f 4042 * so mask in all cases should simply be apic->target_cpus()
497c9a19
YL
4043 */
4044#ifdef CONFIG_SMP
4045void __init setup_ioapic_dest(void)
4046{
b9c61b70 4047 int pin, ioapic = 0, irq, irq_entry;
6c2e9403 4048 struct irq_desc *desc;
22f65d31 4049 const struct cpumask *mask;
497c9a19
YL
4050
4051 if (skip_ioapic_setup == 1)
4052 return;
4053
b9c61b70
YL
4054#ifdef CONFIG_ACPI
4055 if (!acpi_disabled && acpi_ioapic) {
4056 ioapic = mp_find_ioapic(0);
4057 if (ioapic < 0)
4058 ioapic = 0;
4059 }
4060#endif
6c2e9403 4061
b9c61b70
YL
4062 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4063 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4064 if (irq_entry == -1)
4065 continue;
4066 irq = pin_2_irq(irq_entry, ioapic, pin);
6c2e9403 4067
b9c61b70 4068 desc = irq_to_desc(irq);
6c2e9403 4069
b9c61b70
YL
4070 /*
4071 * Honour affinities which have been set in early boot
4072 */
4073 if (desc->status &
4074 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4075 mask = desc->affinity;
4076 else
4077 mask = apic->target_cpus();
497c9a19 4078
b9c61b70
YL
4079 if (intr_remapping_enabled)
4080 set_ir_ioapic_affinity_irq_desc(desc, mask);
4081 else
4082 set_ioapic_affinity_irq_desc(desc, mask);
497c9a19 4083 }
b9c61b70 4084
497c9a19
YL
4085}
4086#endif
4087
54168ed7
IM
4088#define IOAPIC_RESOURCE_NAME_SIZE 11
4089
4090static struct resource *ioapic_resources;
4091
ffc43836 4092static struct resource * __init ioapic_setup_resources(int nr_ioapics)
54168ed7
IM
4093{
4094 unsigned long n;
4095 struct resource *res;
4096 char *mem;
4097 int i;
4098
4099 if (nr_ioapics <= 0)
4100 return NULL;
4101
4102 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4103 n *= nr_ioapics;
4104
4105 mem = alloc_bootmem(n);
4106 res = (void *)mem;
4107
ffc43836 4108 mem += sizeof(struct resource) * nr_ioapics;
54168ed7 4109
ffc43836
CG
4110 for (i = 0; i < nr_ioapics; i++) {
4111 res[i].name = mem;
4112 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4343fe10 4113 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
ffc43836 4114 mem += IOAPIC_RESOURCE_NAME_SIZE;
54168ed7
IM
4115 }
4116
4117 ioapic_resources = res;
4118
4119 return res;
4120}
54168ed7 4121
f3294a33
YL
4122void __init ioapic_init_mappings(void)
4123{
4124 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
54168ed7 4125 struct resource *ioapic_res;
d6c88a50 4126 int i;
f3294a33 4127
ffc43836 4128 ioapic_res = ioapic_setup_resources(nr_ioapics);
f3294a33
YL
4129 for (i = 0; i < nr_ioapics; i++) {
4130 if (smp_found_config) {
b5ba7e6d 4131 ioapic_phys = mp_ioapics[i].apicaddr;
54168ed7 4132#ifdef CONFIG_X86_32
d6c88a50
TG
4133 if (!ioapic_phys) {
4134 printk(KERN_ERR
4135 "WARNING: bogus zero IO-APIC "
4136 "address found in MPTABLE, "
4137 "disabling IO/APIC support!\n");
4138 smp_found_config = 0;
4139 skip_ioapic_setup = 1;
4140 goto fake_ioapic_page;
4141 }
54168ed7 4142#endif
f3294a33 4143 } else {
54168ed7 4144#ifdef CONFIG_X86_32
f3294a33 4145fake_ioapic_page:
54168ed7 4146#endif
e79c65a9 4147 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
f3294a33
YL
4148 ioapic_phys = __pa(ioapic_phys);
4149 }
4150 set_fixmap_nocache(idx, ioapic_phys);
e79c65a9
CG
4151 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
4152 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
4153 ioapic_phys);
f3294a33 4154 idx++;
54168ed7 4155
ffc43836 4156 ioapic_res->start = ioapic_phys;
e79c65a9 4157 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
ffc43836 4158 ioapic_res++;
f3294a33
YL
4159 }
4160}
4161
857fdc53 4162void __init ioapic_insert_resources(void)
54168ed7
IM
4163{
4164 int i;
4165 struct resource *r = ioapic_resources;
4166
4167 if (!r) {
857fdc53 4168 if (nr_ioapics > 0)
04c93ce4
BZ
4169 printk(KERN_ERR
4170 "IO APIC resources couldn't be allocated.\n");
857fdc53 4171 return;
54168ed7
IM
4172 }
4173
4174 for (i = 0; i < nr_ioapics; i++) {
4175 insert_resource(&iomem_resource, r);
4176 r++;
4177 }
54168ed7 4178}
2a4ab640
FT
4179
4180int mp_find_ioapic(int gsi)
4181{
4182 int i = 0;
4183
4184 /* Find the IOAPIC that manages this GSI. */
4185 for (i = 0; i < nr_ioapics; i++) {
4186 if ((gsi >= mp_gsi_routing[i].gsi_base)
4187 && (gsi <= mp_gsi_routing[i].gsi_end))
4188 return i;
4189 }
54168ed7 4190
2a4ab640
FT
4191 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
4192 return -1;
4193}
4194
4195int mp_find_ioapic_pin(int ioapic, int gsi)
4196{
4197 if (WARN_ON(ioapic == -1))
4198 return -1;
4199 if (WARN_ON(gsi > mp_gsi_routing[ioapic].gsi_end))
4200 return -1;
4201
4202 return gsi - mp_gsi_routing[ioapic].gsi_base;
4203}
4204
4205static int bad_ioapic(unsigned long address)
4206{
4207 if (nr_ioapics >= MAX_IO_APICS) {
4208 printk(KERN_WARNING "WARING: Max # of I/O APICs (%d) exceeded "
4209 "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
4210 return 1;
4211 }
4212 if (!address) {
4213 printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
4214 " found in table, skipping!\n");
4215 return 1;
4216 }
54168ed7
IM
4217 return 0;
4218}
4219
2a4ab640
FT
4220void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
4221{
4222 int idx = 0;
4223
4224 if (bad_ioapic(address))
4225 return;
4226
4227 idx = nr_ioapics;
4228
4229 mp_ioapics[idx].type = MP_IOAPIC;
4230 mp_ioapics[idx].flags = MPC_APIC_USABLE;
4231 mp_ioapics[idx].apicaddr = address;
4232
4233 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
4234 mp_ioapics[idx].apicid = io_apic_unique_id(id);
4235 mp_ioapics[idx].apicver = io_apic_get_version(idx);
4236
4237 /*
4238 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
4239 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
4240 */
4241 mp_gsi_routing[idx].gsi_base = gsi_base;
4242 mp_gsi_routing[idx].gsi_end = gsi_base +
4243 io_apic_get_redir_entries(idx);
4244
4245 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
4246 "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
4247 mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
4248 mp_gsi_routing[idx].gsi_base, mp_gsi_routing[idx].gsi_end);
4249
4250 nr_ioapics++;
4251}