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