x86: remove unnecessary tmp local variable
[deliverable/linux.git] / arch / x86 / kernel / io_apic_64.c
CommitLineData
1da177e4
LT
1/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
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>
589e367f 28#include <linux/pci.h>
1da177e4
LT
29#include <linux/mc146818rtc.h>
30#include <linux/acpi.h>
31#include <linux/sysdev.h>
3b7d1921 32#include <linux/msi.h>
95d77884 33#include <linux/htirq.h>
3460a6d9 34#include <linux/dmar.h>
1d16b53e 35#include <linux/jiffies.h>
ab688059
AK
36#ifdef CONFIG_ACPI
37#include <acpi/acpi_bus.h>
38#endif
3e35a0e5 39#include <linux/bootmem.h>
1da177e4 40
61014292 41#include <asm/idle.h>
1da177e4
LT
42#include <asm/io.h>
43#include <asm/smp.h>
44#include <asm/desc.h>
45#include <asm/proto.h>
8d916406 46#include <asm/acpi.h>
ca8642f6 47#include <asm/dma.h>
3e4ff115 48#include <asm/nmi.h>
589e367f 49#include <asm/msidef.h>
8b955b0d 50#include <asm/hypertransport.h>
1da177e4 51
5af5573e 52#include <mach_ipi.h>
dd46e3ca 53#include <mach_apic.h>
5af5573e 54
13a79503
EB
55struct irq_cfg {
56 cpumask_t domain;
61014292
EB
57 cpumask_t old_domain;
58 unsigned move_cleanup_count;
13a79503 59 u8 vector;
61014292 60 u8 move_in_progress : 1;
13a79503
EB
61};
62
63/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
64struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = {
bc5e81a1
EB
65 [0] = { .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
66 [1] = { .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
67 [2] = { .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
68 [3] = { .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
69 [4] = { .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
70 [5] = { .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
71 [6] = { .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
72 [7] = { .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
73 [8] = { .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
74 [9] = { .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
75 [10] = { .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
76 [11] = { .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
77 [12] = { .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
78 [13] = { .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
79 [14] = { .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
80 [15] = { .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
13a79503
EB
81};
82
dfbffdd8 83static int assign_irq_vector(int irq, cpumask_t mask);
04b9267b 84
1da177e4
LT
85#define __apicdebuginit __init
86
87int sis_apic_bug; /* not actually supported, dummy for compile */
88
14d98cad
AK
89static int no_timer_check;
90
fea5f1e1
LT
91static int disable_timer_pin_1 __initdata;
92
93int timer_over_8254 __initdata = 1;
94
1008fddc
EB
95/* Where if anywhere is the i8259 connect in external int mode */
96static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
97
1da177e4 98static DEFINE_SPINLOCK(ioapic_lock);
70a0a535 99DEFINE_SPINLOCK(vector_lock);
1da177e4
LT
100
101/*
102 * # of IRQ routing registers
103 */
104int nr_ioapic_registers[MAX_IO_APICS];
105
9c7408f3
AS
106/* I/O APIC entries */
107struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
108int nr_ioapics;
109
350bae1d
AS
110/* MP IRQ source entries */
111struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
112
113/* # of MP IRQ source entries */
114int mp_irq_entries;
115
1da177e4
LT
116/*
117 * Rough estimation of how many shared IRQs there are, can
118 * be changed anytime.
119 */
e273d140 120#define MAX_PLUS_SHARED_IRQS NR_IRQS
1da177e4
LT
121#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
122
123/*
124 * This is performance-critical, we want to do it O(1)
125 *
126 * the indexing order of this array favors 1:1 mappings
127 * between pins and IRQs.
128 */
129
130static struct irq_pin_list {
131 short apic, pin, next;
132} irq_2_pin[PIN_MAP_SIZE];
133
6c0ffb9d
LT
134struct io_apic {
135 unsigned int index;
136 unsigned int unused[3];
137 unsigned int data;
138};
139
140static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
141{
142 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
143 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
144}
145
146static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
147{
148 struct io_apic __iomem *io_apic = io_apic_base(apic);
149 writel(reg, &io_apic->index);
150 return readl(&io_apic->data);
151}
152
153static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
154{
155 struct io_apic __iomem *io_apic = io_apic_base(apic);
156 writel(reg, &io_apic->index);
157 writel(value, &io_apic->data);
158}
159
160/*
161 * Re-write a value: to be used for read-modify-write
162 * cycles where the read already set up the index register.
163 */
164static inline void io_apic_modify(unsigned int apic, unsigned int value)
165{
166 struct io_apic __iomem *io_apic = io_apic_base(apic);
167 writel(value, &io_apic->data);
168}
169
9d25cb08 170static bool io_apic_level_ack_pending(unsigned int irq)
ef3e28c5
EB
171{
172 struct irq_pin_list *entry;
173 unsigned long flags;
ef3e28c5
EB
174
175 spin_lock_irqsave(&ioapic_lock, flags);
176 entry = irq_2_pin + irq;
177 for (;;) {
178 unsigned int reg;
179 int pin;
180
181 pin = entry->pin;
182 if (pin == -1)
183 break;
184 reg = io_apic_read(entry->apic, 0x10 + pin*2);
185 /* Is the remote IRR bit set? */
9d25cb08
AM
186 if ((reg >> 14) & 1) {
187 spin_unlock_irqrestore(&ioapic_lock, flags);
188 return true;
189 }
ef3e28c5
EB
190 if (!entry->next)
191 break;
192 entry = irq_2_pin + entry->next;
193 }
194 spin_unlock_irqrestore(&ioapic_lock, flags);
9d25cb08
AM
195
196 return false;
ef3e28c5
EB
197}
198
6c0ffb9d
LT
199/*
200 * Synchronize the IO-APIC and the CPU by doing
201 * a dummy read from the IO-APIC
202 */
203static inline void io_apic_sync(unsigned int apic)
204{
205 struct io_apic __iomem *io_apic = io_apic_base(apic);
206 readl(&io_apic->data);
207}
208
54d5d424
AR
209#define __DO_ACTION(R, ACTION, FINAL) \
210 \
211{ \
212 int pin; \
213 struct irq_pin_list *entry = irq_2_pin + irq; \
214 \
6004e1b7 215 BUG_ON(irq >= NR_IRQS); \
54d5d424
AR
216 for (;;) { \
217 unsigned int reg; \
218 pin = entry->pin; \
219 if (pin == -1) \
220 break; \
221 reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
222 reg ACTION; \
223 io_apic_modify(entry->apic, reg); \
f45bcd70 224 FINAL; \
54d5d424
AR
225 if (!entry->next) \
226 break; \
227 entry = irq_2_pin + entry->next; \
228 } \
54d5d424
AR
229}
230
eea0e11c
AK
231union entry_union {
232 struct { u32 w1, w2; };
233 struct IO_APIC_route_entry entry;
234};
235
236static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
237{
238 union entry_union eu;
239 unsigned long flags;
240 spin_lock_irqsave(&ioapic_lock, flags);
241 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
242 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
243 spin_unlock_irqrestore(&ioapic_lock, flags);
244 return eu.entry;
245}
246
48797ebd
LT
247/*
248 * When we write a new IO APIC routing entry, we need to write the high
249 * word first! If the mask bit in the low word is clear, we will enable
250 * the interrupt, and we need to make sure the entry is fully populated
251 * before that happens.
252 */
516d2836
AK
253static void
254__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
eea0e11c 255{
eea0e11c
AK
256 union entry_union eu;
257 eu.entry = e;
48797ebd
LT
258 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
259 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
516d2836
AK
260}
261
262static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
263{
264 unsigned long flags;
265 spin_lock_irqsave(&ioapic_lock, flags);
266 __ioapic_write_entry(apic, pin, e);
48797ebd
LT
267 spin_unlock_irqrestore(&ioapic_lock, flags);
268}
269
270/*
271 * When we mask an IO APIC routing entry, we need to write the low
272 * word first, in order to set the mask bit before we change the
273 * high bits!
274 */
275static void ioapic_mask_entry(int apic, int pin)
276{
277 unsigned long flags;
278 union entry_union eu = { .entry.mask = 1 };
279
eea0e11c
AK
280 spin_lock_irqsave(&ioapic_lock, flags);
281 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
282 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
283 spin_unlock_irqrestore(&ioapic_lock, flags);
284}
285
54d5d424 286#ifdef CONFIG_SMP
550f2299
EB
287static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
288{
289 int apic, pin;
290 struct irq_pin_list *entry = irq_2_pin + irq;
291
292 BUG_ON(irq >= NR_IRQS);
293 for (;;) {
294 unsigned int reg;
295 apic = entry->apic;
296 pin = entry->pin;
297 if (pin == -1)
298 break;
299 io_apic_write(apic, 0x11 + pin*2, dest);
300 reg = io_apic_read(apic, 0x10 + pin*2);
301 reg &= ~0x000000ff;
302 reg |= vector;
303 io_apic_modify(apic, reg);
304 if (!entry->next)
305 break;
306 entry = irq_2_pin + entry->next;
307 }
308}
309
54d5d424
AR
310static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
311{
dfbffdd8 312 struct irq_cfg *cfg = irq_cfg + irq;
54d5d424
AR
313 unsigned long flags;
314 unsigned int dest;
315 cpumask_t tmp;
316
317 cpus_and(tmp, mask, cpu_online_map);
318 if (cpus_empty(tmp))
5ff5115e 319 return;
54d5d424 320
dfbffdd8 321 if (assign_irq_vector(irq, mask))
550f2299
EB
322 return;
323
dfbffdd8 324 cpus_and(tmp, cfg->domain, mask);
550f2299 325 dest = cpu_mask_to_apicid(tmp);
54d5d424
AR
326
327 /*
328 * Only the high 8 bits are valid.
329 */
330 dest = SET_APIC_LOGICAL_ID(dest);
331
332 spin_lock_irqsave(&ioapic_lock, flags);
dfbffdd8 333 __target_IO_APIC_irq(irq, dest, cfg->vector);
9f0a5ba5 334 irq_desc[irq].affinity = mask;
54d5d424
AR
335 spin_unlock_irqrestore(&ioapic_lock, flags);
336}
337#endif
338
1da177e4
LT
339/*
340 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
341 * shared ISA-space IRQs, so we have to support them. We are super
342 * fast in the common case, and fast for shared ISA-space IRQs.
343 */
344static void add_pin_to_irq(unsigned int irq, int apic, int pin)
345{
346 static int first_free_entry = NR_IRQS;
347 struct irq_pin_list *entry = irq_2_pin + irq;
348
6004e1b7 349 BUG_ON(irq >= NR_IRQS);
1da177e4
LT
350 while (entry->next)
351 entry = irq_2_pin + entry->next;
352
353 if (entry->pin != -1) {
354 entry->next = first_free_entry;
355 entry = irq_2_pin + entry->next;
356 if (++first_free_entry >= PIN_MAP_SIZE)
6004e1b7 357 panic("io_apic.c: ran out of irq_2_pin entries!");
1da177e4
LT
358 }
359 entry->apic = apic;
360 entry->pin = pin;
361}
362
1da177e4
LT
363
364#define DO_ACTION(name,R,ACTION, FINAL) \
365 \
366 static void name##_IO_APIC_irq (unsigned int irq) \
367 __DO_ACTION(R, ACTION, FINAL)
368
369DO_ACTION( __mask, 0, |= 0x00010000, io_apic_sync(entry->apic) )
370 /* mask = 1 */
371DO_ACTION( __unmask, 0, &= 0xfffeffff, )
372 /* mask = 0 */
373
374static void mask_IO_APIC_irq (unsigned int irq)
375{
376 unsigned long flags;
377
378 spin_lock_irqsave(&ioapic_lock, flags);
379 __mask_IO_APIC_irq(irq);
380 spin_unlock_irqrestore(&ioapic_lock, flags);
381}
382
383static void unmask_IO_APIC_irq (unsigned int irq)
384{
385 unsigned long flags;
386
387 spin_lock_irqsave(&ioapic_lock, flags);
388 __unmask_IO_APIC_irq(irq);
389 spin_unlock_irqrestore(&ioapic_lock, flags);
390}
391
392static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
393{
394 struct IO_APIC_route_entry entry;
1da177e4
LT
395
396 /* Check delivery_mode to be sure we're not clearing an SMI pin */
eea0e11c 397 entry = ioapic_read_entry(apic, pin);
1da177e4
LT
398 if (entry.delivery_mode == dest_SMI)
399 return;
400 /*
401 * Disable it in the IO-APIC irq-routing table:
402 */
48797ebd 403 ioapic_mask_entry(apic, pin);
1da177e4
LT
404}
405
406static void clear_IO_APIC (void)
407{
408 int apic, pin;
409
410 for (apic = 0; apic < nr_ioapics; apic++)
411 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
412 clear_IO_APIC_pin(apic, pin);
413}
414
1da177e4
LT
415int skip_ioapic_setup;
416int ioapic_force;
417
61ec7567 418static int __init parse_noapic(char *str)
1da177e4 419{
61ec7567 420 disable_ioapic_setup();
2c8c0e6b 421 return 0;
1da177e4 422}
61ec7567 423early_param("noapic", parse_noapic);
1da177e4 424
fea5f1e1
LT
425/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
426static int __init disable_timer_pin_setup(char *arg)
427{
428 disable_timer_pin_1 = 1;
429 return 1;
430}
431__setup("disable_timer_pin_1", disable_timer_pin_setup);
432
433static int __init setup_disable_8254_timer(char *s)
434{
435 timer_over_8254 = -1;
436 return 1;
437}
438static int __init setup_enable_8254_timer(char *s)
439{
440 timer_over_8254 = 2;
441 return 1;
442}
443
444__setup("disable_8254_timer", setup_disable_8254_timer);
445__setup("enable_8254_timer", setup_enable_8254_timer);
446
447
1da177e4
LT
448/*
449 * Find the IRQ entry number of a certain pin.
450 */
451static int find_irq_entry(int apic, int pin, int type)
452{
453 int i;
454
455 for (i = 0; i < mp_irq_entries; i++)
456 if (mp_irqs[i].mpc_irqtype == type &&
457 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
458 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
459 mp_irqs[i].mpc_dstirq == pin)
460 return i;
461
462 return -1;
463}
464
465/*
466 * Find the pin to which IRQ[irq] (ISA) is connected
467 */
1008fddc 468static int __init find_isa_irq_pin(int irq, int type)
1da177e4
LT
469{
470 int i;
471
472 for (i = 0; i < mp_irq_entries; i++) {
473 int lbus = mp_irqs[i].mpc_srcbus;
474
55f05ffa 475 if (test_bit(lbus, mp_bus_not_pci) &&
1da177e4
LT
476 (mp_irqs[i].mpc_irqtype == type) &&
477 (mp_irqs[i].mpc_srcbusirq == irq))
478
479 return mp_irqs[i].mpc_dstirq;
480 }
481 return -1;
482}
483
1008fddc
EB
484static int __init find_isa_irq_apic(int irq, int type)
485{
486 int i;
487
488 for (i = 0; i < mp_irq_entries; i++) {
489 int lbus = mp_irqs[i].mpc_srcbus;
490
55f05ffa 491 if (test_bit(lbus, mp_bus_not_pci) &&
1008fddc
EB
492 (mp_irqs[i].mpc_irqtype == type) &&
493 (mp_irqs[i].mpc_srcbusirq == irq))
494 break;
495 }
496 if (i < mp_irq_entries) {
497 int apic;
498 for(apic = 0; apic < nr_ioapics; apic++) {
499 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
500 return apic;
501 }
502 }
503
504 return -1;
505}
506
1da177e4
LT
507/*
508 * Find a specific PCI IRQ entry.
509 * Not an __init, possibly needed by modules
510 */
511static int pin_2_irq(int idx, int apic, int pin);
512
513int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
514{
515 int apic, i, best_guess = -1;
516
517 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
518 bus, slot, pin);
519 if (mp_bus_id_to_pci_bus[bus] == -1) {
520 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
521 return -1;
522 }
523 for (i = 0; i < mp_irq_entries; i++) {
524 int lbus = mp_irqs[i].mpc_srcbus;
525
526 for (apic = 0; apic < nr_ioapics; apic++)
527 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
528 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
529 break;
530
55f05ffa 531 if (!test_bit(lbus, mp_bus_not_pci) &&
1da177e4
LT
532 !mp_irqs[i].mpc_irqtype &&
533 (bus == lbus) &&
534 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
535 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
536
537 if (!(apic || IO_APIC_IRQ(irq)))
538 continue;
539
540 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
541 return irq;
542 /*
543 * Use the first all-but-pin matching entry as a
544 * best-guess fuzzy result for broken mptables.
545 */
546 if (best_guess < 0)
547 best_guess = irq;
548 }
549 }
6004e1b7 550 BUG_ON(best_guess >= NR_IRQS);
1da177e4
LT
551 return best_guess;
552}
553
1da177e4
LT
554/* ISA interrupts are always polarity zero edge triggered,
555 * when listed as conforming in the MP table. */
556
557#define default_ISA_trigger(idx) (0)
558#define default_ISA_polarity(idx) (0)
559
560/* PCI interrupts are always polarity one level triggered,
561 * when listed as conforming in the MP table. */
562
563#define default_PCI_trigger(idx) (1)
564#define default_PCI_polarity(idx) (1)
565
61fd47e0 566static int MPBIOS_polarity(int idx)
1da177e4
LT
567{
568 int bus = mp_irqs[idx].mpc_srcbus;
569 int polarity;
570
571 /*
572 * Determine IRQ line polarity (high active or low active):
573 */
574 switch (mp_irqs[idx].mpc_irqflag & 3)
575 {
576 case 0: /* conforms, ie. bus-type dependent polarity */
55f05ffa
AK
577 if (test_bit(bus, mp_bus_not_pci))
578 polarity = default_ISA_polarity(idx);
579 else
580 polarity = default_PCI_polarity(idx);
1da177e4 581 break;
1da177e4
LT
582 case 1: /* high active */
583 {
584 polarity = 0;
585 break;
586 }
587 case 2: /* reserved */
588 {
589 printk(KERN_WARNING "broken BIOS!!\n");
590 polarity = 1;
591 break;
592 }
593 case 3: /* low active */
594 {
595 polarity = 1;
596 break;
597 }
598 default: /* invalid */
599 {
600 printk(KERN_WARNING "broken BIOS!!\n");
601 polarity = 1;
602 break;
603 }
604 }
605 return polarity;
606}
607
608static int MPBIOS_trigger(int idx)
609{
610 int bus = mp_irqs[idx].mpc_srcbus;
611 int trigger;
612
613 /*
614 * Determine IRQ trigger mode (edge or level sensitive):
615 */
616 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
617 {
618 case 0: /* conforms, ie. bus-type dependent */
55f05ffa
AK
619 if (test_bit(bus, mp_bus_not_pci))
620 trigger = default_ISA_trigger(idx);
621 else
622 trigger = default_PCI_trigger(idx);
1da177e4 623 break;
1da177e4
LT
624 case 1: /* edge */
625 {
626 trigger = 0;
627 break;
628 }
629 case 2: /* reserved */
630 {
631 printk(KERN_WARNING "broken BIOS!!\n");
632 trigger = 1;
633 break;
634 }
635 case 3: /* level */
636 {
637 trigger = 1;
638 break;
639 }
640 default: /* invalid */
641 {
642 printk(KERN_WARNING "broken BIOS!!\n");
643 trigger = 0;
644 break;
645 }
646 }
647 return trigger;
648}
649
650static inline int irq_polarity(int idx)
651{
652 return MPBIOS_polarity(idx);
653}
654
655static inline int irq_trigger(int idx)
656{
657 return MPBIOS_trigger(idx);
658}
659
660static int pin_2_irq(int idx, int apic, int pin)
661{
662 int irq, i;
663 int bus = mp_irqs[idx].mpc_srcbus;
664
665 /*
666 * Debugging check, we are in big trouble if this message pops up!
667 */
668 if (mp_irqs[idx].mpc_dstirq != pin)
669 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
670
55f05ffa
AK
671 if (test_bit(bus, mp_bus_not_pci)) {
672 irq = mp_irqs[idx].mpc_srcbusirq;
673 } else {
674 /*
675 * PCI IRQs are mapped in order
676 */
677 i = irq = 0;
678 while (i < apic)
679 irq += nr_ioapic_registers[i++];
680 irq += pin;
1da177e4 681 }
6004e1b7 682 BUG_ON(irq >= NR_IRQS);
1da177e4
LT
683 return irq;
684}
685
dfbffdd8 686static int __assign_irq_vector(int irq, cpumask_t mask)
1da177e4 687{
550f2299
EB
688 /*
689 * NOTE! The local APIC isn't very good at handling
690 * multiple interrupts at the same interrupt level.
691 * As the interrupt level is determined by taking the
692 * vector number and shifting that right by 4, we
693 * want to spread these out a bit so that they don't
694 * all fall in the same interrupt level.
695 *
696 * Also, we've got to be careful not to trash gate
697 * 0x80, because int 0x80 is hm, kind of importantish. ;)
698 */
d1752aa8 699 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
dfbffdd8 700 unsigned int old_vector;
550f2299 701 int cpu;
13a79503 702 struct irq_cfg *cfg;
1da177e4 703
e273d140 704 BUG_ON((unsigned)irq >= NR_IRQS);
13a79503 705 cfg = &irq_cfg[irq];
0a1ad60d 706
70a0a535
EB
707 /* Only try and allocate irqs on cpus that are present */
708 cpus_and(mask, mask, cpu_online_map);
709
61014292
EB
710 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
711 return -EBUSY;
712
dfbffdd8
EB
713 old_vector = cfg->vector;
714 if (old_vector) {
715 cpumask_t tmp;
716 cpus_and(tmp, cfg->domain, mask);
717 if (!cpus_empty(tmp))
718 return 0;
0a1ad60d 719 }
550f2299
EB
720
721 for_each_cpu_mask(cpu, mask) {
70a0a535 722 cpumask_t domain, new_mask;
61014292 723 int new_cpu;
550f2299 724 int vector, offset;
c7111c13
EB
725
726 domain = vector_allocation_domain(cpu);
70a0a535 727 cpus_and(new_mask, domain, cpu_online_map);
c7111c13 728
d1752aa8
EB
729 vector = current_vector;
730 offset = current_offset;
1da177e4 731next:
550f2299
EB
732 vector += 8;
733 if (vector >= FIRST_SYSTEM_VECTOR) {
734 /* If we run out of vectors on large boxen, must share them. */
735 offset = (offset + 1) % 8;
736 vector = FIRST_DEVICE_VECTOR + offset;
737 }
d1752aa8 738 if (unlikely(current_vector == vector))
550f2299
EB
739 continue;
740 if (vector == IA32_SYSCALL_VECTOR)
741 goto next;
70a0a535 742 for_each_cpu_mask(new_cpu, new_mask)
45edfd1d 743 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
c7111c13 744 goto next;
550f2299 745 /* Found one! */
d1752aa8
EB
746 current_vector = vector;
747 current_offset = offset;
61014292
EB
748 if (old_vector) {
749 cfg->move_in_progress = 1;
750 cfg->old_domain = cfg->domain;
751 }
70a0a535 752 for_each_cpu_mask(new_cpu, new_mask)
c7111c13 753 per_cpu(vector_irq, new_cpu)[vector] = irq;
13a79503
EB
754 cfg->vector = vector;
755 cfg->domain = domain;
dfbffdd8 756 return 0;
1da177e4 757 }
550f2299 758 return -ENOSPC;
04b9267b
EB
759}
760
dfbffdd8 761static int assign_irq_vector(int irq, cpumask_t mask)
04b9267b 762{
dfbffdd8 763 int err;
04b9267b 764 unsigned long flags;
0a1ad60d 765
04b9267b 766 spin_lock_irqsave(&vector_lock, flags);
dfbffdd8 767 err = __assign_irq_vector(irq, mask);
26a3c49c 768 spin_unlock_irqrestore(&vector_lock, flags);
dfbffdd8 769 return err;
1da177e4
LT
770}
771
5df0287e
YL
772static void __clear_irq_vector(int irq)
773{
13a79503 774 struct irq_cfg *cfg;
5df0287e
YL
775 cpumask_t mask;
776 int cpu, vector;
777
13a79503
EB
778 BUG_ON((unsigned)irq >= NR_IRQS);
779 cfg = &irq_cfg[irq];
780 BUG_ON(!cfg->vector);
5df0287e 781
13a79503
EB
782 vector = cfg->vector;
783 cpus_and(mask, cfg->domain, cpu_online_map);
5df0287e
YL
784 for_each_cpu_mask(cpu, mask)
785 per_cpu(vector_irq, cpu)[vector] = -1;
786
13a79503
EB
787 cfg->vector = 0;
788 cfg->domain = CPU_MASK_NONE;
5df0287e
YL
789}
790
70a0a535
EB
791void __setup_vector_irq(int cpu)
792{
793 /* Initialize vector_irq on a new cpu */
794 /* This function must be called with vector_lock held */
70a0a535
EB
795 int irq, vector;
796
70a0a535 797 /* Mark the inuse vectors */
e273d140 798 for (irq = 0; irq < NR_IRQS; ++irq) {
13a79503 799 if (!cpu_isset(cpu, irq_cfg[irq].domain))
70a0a535 800 continue;
13a79503 801 vector = irq_cfg[irq].vector;
70a0a535
EB
802 per_cpu(vector_irq, cpu)[vector] = irq;
803 }
804 /* Mark the free vectors */
805 for (vector = 0; vector < NR_VECTORS; ++vector) {
806 irq = per_cpu(vector_irq, cpu)[vector];
807 if (irq < 0)
808 continue;
13a79503 809 if (!cpu_isset(cpu, irq_cfg[irq].domain))
70a0a535
EB
810 per_cpu(vector_irq, cpu)[vector] = -1;
811 }
812}
813
814
f29bd1ba 815static struct irq_chip ioapic_chip;
1da177e4 816
a27bc06d 817static void ioapic_register_intr(int irq, unsigned long trigger)
1da177e4 818{
cc75b92d
TG
819 if (trigger) {
820 irq_desc[irq].status |= IRQ_LEVEL;
a460e745
IM
821 set_irq_chip_and_handler_name(irq, &ioapic_chip,
822 handle_fasteoi_irq, "fasteoi");
cc75b92d
TG
823 } else {
824 irq_desc[irq].status &= ~IRQ_LEVEL;
a460e745
IM
825 set_irq_chip_and_handler_name(irq, &ioapic_chip,
826 handle_edge_irq, "edge");
cc75b92d 827 }
1da177e4 828}
a8c8a367
EB
829
830static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
831 int trigger, int polarity)
1da177e4 832{
dfbffdd8 833 struct irq_cfg *cfg = irq_cfg + irq;
1da177e4 834 struct IO_APIC_route_entry entry;
a8c8a367 835 cpumask_t mask;
1da177e4 836
a8c8a367
EB
837 if (!IO_APIC_IRQ(irq))
838 return;
839
dfbffdd8
EB
840 mask = TARGET_CPUS;
841 if (assign_irq_vector(irq, mask))
a8c8a367
EB
842 return;
843
dfbffdd8
EB
844 cpus_and(mask, cfg->domain, mask);
845
a8c8a367
EB
846 apic_printk(APIC_VERBOSE,KERN_DEBUG
847 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
848 "IRQ %d Mode:%i Active:%i)\n",
dfbffdd8 849 apic, mp_ioapics[apic].mpc_apicid, pin, cfg->vector,
a8c8a367 850 irq, trigger, polarity);
1da177e4 851
ad892f5e
YL
852 /*
853 * add it to the IO-APIC irq-routing table:
854 */
855 memset(&entry,0,sizeof(entry));
1da177e4 856
ad892f5e
YL
857 entry.delivery_mode = INT_DELIVERY_MODE;
858 entry.dest_mode = INT_DEST_MODE;
a8c8a367 859 entry.dest = cpu_mask_to_apicid(mask);
ad892f5e 860 entry.mask = 0; /* enable IRQ */
a8c8a367
EB
861 entry.trigger = trigger;
862 entry.polarity = polarity;
dfbffdd8 863 entry.vector = cfg->vector;
1da177e4 864
a8c8a367
EB
865 /* Mask level triggered irqs.
866 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
867 */
868 if (trigger)
ad892f5e 869 entry.mask = 1;
ad892f5e 870
a8c8a367
EB
871 ioapic_register_intr(irq, trigger);
872 if (irq < 16)
873 disable_8259A_irq(irq);
ad892f5e
YL
874
875 ioapic_write_entry(apic, pin, entry);
ad892f5e
YL
876}
877
878static void __init setup_IO_APIC_irqs(void)
879{
880 int apic, pin, idx, irq, first_notcon = 1;
881
882 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
883
884 for (apic = 0; apic < nr_ioapics; apic++) {
885 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1da177e4
LT
886
887 idx = find_irq_entry(apic,pin,mp_INT);
888 if (idx == -1) {
889 if (first_notcon) {
890 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
891 first_notcon = 0;
892 } else
893 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
894 continue;
895 }
20d225b9
YL
896 if (!first_notcon) {
897 apic_printk(APIC_VERBOSE, " not connected.\n");
898 first_notcon = 1;
899 }
1da177e4 900
1da177e4
LT
901 irq = pin_2_irq(idx, apic, pin);
902 add_pin_to_irq(irq, apic, pin);
903
a8c8a367
EB
904 setup_IO_APIC_irq(apic, pin, irq,
905 irq_trigger(idx), irq_polarity(idx));
1da177e4
LT
906 }
907 }
908
909 if (!first_notcon)
20d225b9 910 apic_printk(APIC_VERBOSE, " not connected.\n");
1da177e4
LT
911}
912
913/*
914 * Set up the 8259A-master output pin as broadcast to all
915 * CPUs.
916 */
1008fddc 917static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
1da177e4
LT
918{
919 struct IO_APIC_route_entry entry;
1da177e4 920
a2249cba 921 memset(&entry, 0, sizeof(entry));
1da177e4
LT
922
923 disable_8259A_irq(0);
924
925 /* mask LVT0 */
11a8e778 926 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1da177e4
LT
927
928 /*
929 * We use logical delivery to get the timer IRQ
930 * to the first CPU.
931 */
932 entry.dest_mode = INT_DEST_MODE;
933 entry.mask = 0; /* unmask IRQ now */
ee4eff6f 934 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
1da177e4
LT
935 entry.delivery_mode = INT_DELIVERY_MODE;
936 entry.polarity = 0;
937 entry.trigger = 0;
938 entry.vector = vector;
939
940 /*
941 * The timer IRQ doesn't have to know that behind the
942 * scene we have a 8259A-master in AEOI mode ...
943 */
a460e745 944 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1da177e4
LT
945
946 /*
947 * Add it to the IO-APIC irq-routing table:
948 */
a2249cba 949 ioapic_write_entry(apic, pin, entry);
1da177e4
LT
950
951 enable_8259A_irq(0);
952}
953
1da177e4
LT
954void __apicdebuginit print_IO_APIC(void)
955{
956 int apic, i;
957 union IO_APIC_reg_00 reg_00;
958 union IO_APIC_reg_01 reg_01;
959 union IO_APIC_reg_02 reg_02;
960 unsigned long flags;
961
962 if (apic_verbosity == APIC_QUIET)
963 return;
964
965 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
966 for (i = 0; i < nr_ioapics; i++)
967 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
968 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
969
970 /*
971 * We are a bit conservative about what we expect. We have to
972 * know about every hardware change ASAP.
973 */
974 printk(KERN_INFO "testing the IO APIC.......................\n");
975
976 for (apic = 0; apic < nr_ioapics; apic++) {
977
978 spin_lock_irqsave(&ioapic_lock, flags);
979 reg_00.raw = io_apic_read(apic, 0);
980 reg_01.raw = io_apic_read(apic, 1);
981 if (reg_01.bits.version >= 0x10)
982 reg_02.raw = io_apic_read(apic, 2);
983 spin_unlock_irqrestore(&ioapic_lock, flags);
984
985 printk("\n");
986 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
987 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
988 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1da177e4
LT
989
990 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
991 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1da177e4
LT
992
993 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
994 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1da177e4
LT
995
996 if (reg_01.bits.version >= 0x10) {
997 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
998 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1da177e4
LT
999 }
1000
1001 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1002
ee4eff6f
BR
1003 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1004 " Stat Dmod Deli Vect: \n");
1da177e4
LT
1005
1006 for (i = 0; i <= reg_01.bits.entries; i++) {
1007 struct IO_APIC_route_entry entry;
1008
eea0e11c 1009 entry = ioapic_read_entry(apic, i);
1da177e4 1010
ee4eff6f 1011 printk(KERN_DEBUG " %02x %03X ",
1da177e4 1012 i,
ee4eff6f 1013 entry.dest
1da177e4
LT
1014 );
1015
1016 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1017 entry.mask,
1018 entry.trigger,
1019 entry.irr,
1020 entry.polarity,
1021 entry.delivery_status,
1022 entry.dest_mode,
1023 entry.delivery_mode,
1024 entry.vector
1025 );
1026 }
1027 }
1da177e4
LT
1028 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1029 for (i = 0; i < NR_IRQS; i++) {
1030 struct irq_pin_list *entry = irq_2_pin + i;
1031 if (entry->pin < 0)
1032 continue;
04b9267b 1033 printk(KERN_DEBUG "IRQ%d ", i);
1da177e4
LT
1034 for (;;) {
1035 printk("-> %d:%d", entry->apic, entry->pin);
1036 if (!entry->next)
1037 break;
1038 entry = irq_2_pin + entry->next;
1039 }
1040 printk("\n");
1041 }
1042
1043 printk(KERN_INFO ".................................... done.\n");
1044
1045 return;
1046}
1047
1048#if 0
1049
1050static __apicdebuginit void print_APIC_bitfield (int base)
1051{
1052 unsigned int v;
1053 int i, j;
1054
1055 if (apic_verbosity == APIC_QUIET)
1056 return;
1057
1058 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1059 for (i = 0; i < 8; i++) {
1060 v = apic_read(base + i*0x10);
1061 for (j = 0; j < 32; j++) {
1062 if (v & (1<<j))
1063 printk("1");
1064 else
1065 printk("0");
1066 }
1067 printk("\n");
1068 }
1069}
1070
1071void __apicdebuginit print_local_APIC(void * dummy)
1072{
1073 unsigned int v, ver, maxlvt;
1074
1075 if (apic_verbosity == APIC_QUIET)
1076 return;
1077
1078 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1079 smp_processor_id(), hard_smp_processor_id());
05f2d12c 1080 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(read_apic_id()));
1da177e4
LT
1081 v = apic_read(APIC_LVR);
1082 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1083 ver = GET_APIC_VERSION(v);
37e650c7 1084 maxlvt = lapic_get_maxlvt();
1da177e4
LT
1085
1086 v = apic_read(APIC_TASKPRI);
1087 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1088
5a40b7c2
AK
1089 v = apic_read(APIC_ARBPRI);
1090 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1091 v & APIC_ARBPRI_MASK);
1092 v = apic_read(APIC_PROCPRI);
1093 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1da177e4
LT
1094
1095 v = apic_read(APIC_EOI);
1096 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1097 v = apic_read(APIC_RRR);
1098 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1099 v = apic_read(APIC_LDR);
1100 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1101 v = apic_read(APIC_DFR);
1102 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1103 v = apic_read(APIC_SPIV);
1104 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1105
1106 printk(KERN_DEBUG "... APIC ISR field:\n");
1107 print_APIC_bitfield(APIC_ISR);
1108 printk(KERN_DEBUG "... APIC TMR field:\n");
1109 print_APIC_bitfield(APIC_TMR);
1110 printk(KERN_DEBUG "... APIC IRR field:\n");
1111 print_APIC_bitfield(APIC_IRR);
1112
5a40b7c2
AK
1113 v = apic_read(APIC_ESR);
1114 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1da177e4
LT
1115
1116 v = apic_read(APIC_ICR);
1117 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1118 v = apic_read(APIC_ICR2);
1119 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1120
1121 v = apic_read(APIC_LVTT);
1122 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1123
1124 if (maxlvt > 3) { /* PC is LVT#4. */
1125 v = apic_read(APIC_LVTPC);
1126 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1127 }
1128 v = apic_read(APIC_LVT0);
1129 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1130 v = apic_read(APIC_LVT1);
1131 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1132
1133 if (maxlvt > 2) { /* ERR is LVT#3. */
1134 v = apic_read(APIC_LVTERR);
1135 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1136 }
1137
1138 v = apic_read(APIC_TMICT);
1139 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1140 v = apic_read(APIC_TMCCT);
1141 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1142 v = apic_read(APIC_TDCR);
1143 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1144 printk("\n");
1145}
1146
1147void print_all_local_APICs (void)
1148{
1149 on_each_cpu(print_local_APIC, NULL, 1, 1);
1150}
1151
1152void __apicdebuginit print_PIC(void)
1153{
1da177e4
LT
1154 unsigned int v;
1155 unsigned long flags;
1156
1157 if (apic_verbosity == APIC_QUIET)
1158 return;
1159
1160 printk(KERN_DEBUG "\nprinting PIC contents\n");
1161
1162 spin_lock_irqsave(&i8259A_lock, flags);
1163
1164 v = inb(0xa1) << 8 | inb(0x21);
1165 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1166
1167 v = inb(0xa0) << 8 | inb(0x20);
1168 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1169
1170 outb(0x0b,0xa0);
1171 outb(0x0b,0x20);
1172 v = inb(0xa0) << 8 | inb(0x20);
1173 outb(0x0a,0xa0);
1174 outb(0x0a,0x20);
1175
1176 spin_unlock_irqrestore(&i8259A_lock, flags);
1177
1178 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1179
1180 v = inb(0x4d1) << 8 | inb(0x4d0);
1181 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1182}
1183
1184#endif /* 0 */
1185
1c69524c 1186void __init enable_IO_APIC(void)
1da177e4
LT
1187{
1188 union IO_APIC_reg_01 reg_01;
1008fddc
EB
1189 int i8259_apic, i8259_pin;
1190 int i, apic;
1da177e4
LT
1191 unsigned long flags;
1192
1193 for (i = 0; i < PIN_MAP_SIZE; i++) {
1194 irq_2_pin[i].pin = -1;
1195 irq_2_pin[i].next = 0;
1196 }
1da177e4
LT
1197
1198 /*
1199 * The number of IO-APIC IRQ registers (== #pins):
1200 */
1008fddc 1201 for (apic = 0; apic < nr_ioapics; apic++) {
1da177e4 1202 spin_lock_irqsave(&ioapic_lock, flags);
1008fddc 1203 reg_01.raw = io_apic_read(apic, 1);
1da177e4 1204 spin_unlock_irqrestore(&ioapic_lock, flags);
1008fddc
EB
1205 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1206 }
1207 for(apic = 0; apic < nr_ioapics; apic++) {
1208 int pin;
1209 /* See if any of the pins is in ExtINT mode */
1210 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1211 struct IO_APIC_route_entry entry;
eea0e11c 1212 entry = ioapic_read_entry(apic, pin);
1008fddc
EB
1213
1214 /* If the interrupt line is enabled and in ExtInt mode
1215 * I have found the pin where the i8259 is connected.
1216 */
1217 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1218 ioapic_i8259.apic = apic;
1219 ioapic_i8259.pin = pin;
1220 goto found_i8259;
1221 }
1222 }
1223 }
1224 found_i8259:
1225 /* Look to see what if the MP table has reported the ExtINT */
1226 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1227 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1228 /* Trust the MP table if nothing is setup in the hardware */
1229 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1230 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1231 ioapic_i8259.pin = i8259_pin;
1232 ioapic_i8259.apic = i8259_apic;
1233 }
1234 /* Complain if the MP table and the hardware disagree */
1235 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1236 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1237 {
1238 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1da177e4
LT
1239 }
1240
1241 /*
1242 * Do not trust the IO-APIC being empty at bootup
1243 */
1244 clear_IO_APIC();
1245}
1246
1247/*
1248 * Not an __init, needed by the reboot code
1249 */
1250void disable_IO_APIC(void)
1251{
1252 /*
1253 * Clear the IO-APIC before rebooting:
1254 */
1255 clear_IO_APIC();
1256
208fb931 1257 /*
0b968d23 1258 * If the i8259 is routed through an IOAPIC
208fb931 1259 * Put that IOAPIC in virtual wire mode
0b968d23 1260 * so legacy interrupts can be delivered.
208fb931 1261 */
1008fddc 1262 if (ioapic_i8259.pin != -1) {
208fb931 1263 struct IO_APIC_route_entry entry;
208fb931
EB
1264
1265 memset(&entry, 0, sizeof(entry));
1266 entry.mask = 0; /* Enabled */
1267 entry.trigger = 0; /* Edge */
1268 entry.irr = 0;
1269 entry.polarity = 0; /* High */
1270 entry.delivery_status = 0;
1271 entry.dest_mode = 0; /* Physical */
1008fddc 1272 entry.delivery_mode = dest_ExtINT; /* ExtInt */
208fb931 1273 entry.vector = 0;
05f2d12c 1274 entry.dest = GET_APIC_ID(read_apic_id());
208fb931 1275
208fb931
EB
1276 /*
1277 * Add it to the IO-APIC irq-routing table:
1278 */
eea0e11c 1279 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
208fb931
EB
1280 }
1281
1008fddc 1282 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1da177e4
LT
1283}
1284
1da177e4
LT
1285/*
1286 * There is a nasty bug in some older SMP boards, their mptable lies
1287 * about the timer IRQ. We do the following to work around the situation:
1288 *
1289 * - timer IRQ defaults to IO-APIC IRQ
1290 * - if this function detects that timer IRQs are defunct, then we fall
1291 * back to ISA timer IRQs
1292 */
1293static int __init timer_irq_works(void)
1294{
1295 unsigned long t1 = jiffies;
4aae0702 1296 unsigned long flags;
1da177e4 1297
4aae0702 1298 local_save_flags(flags);
1da177e4
LT
1299 local_irq_enable();
1300 /* Let ten ticks pass... */
1301 mdelay((10 * 1000) / HZ);
4aae0702 1302 local_irq_restore(flags);
1da177e4
LT
1303
1304 /*
1305 * Expect a few ticks at least, to be sure some possible
1306 * glue logic does not lock up after one or two first
1307 * ticks in a non-ExtINT mode. Also the local APIC
1308 * might have cached one ExtINT interrupt. Finally, at
1309 * least one tick may be lost due to delays.
1310 */
1311
1312 /* jiffies wrap? */
1d16b53e 1313 if (time_after(jiffies, t1 + 4))
1da177e4
LT
1314 return 1;
1315 return 0;
1316}
1317
1318/*
1319 * In the SMP+IOAPIC case it might happen that there are an unspecified
1320 * number of pending IRQ events unhandled. These cases are very rare,
1321 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1322 * better to do it this way as thus we do not have to be aware of
1323 * 'pending' interrupts in the IRQ path, except at this point.
1324 */
1325/*
1326 * Edge triggered needs to resend any interrupt
1327 * that was delayed but this is now handled in the device
1328 * independent code.
1329 */
1330
1331/*
1332 * Starting up a edge-triggered IO-APIC interrupt is
1333 * nasty - we need to make sure that we get the edge.
1334 * If it is already asserted for some reason, we need
1335 * return 1 to indicate that is was pending.
1336 *
1337 * This is not complete - we should be able to fake
1338 * an edge even if it isn't on the 8259A...
1339 */
1340
f29bd1ba 1341static unsigned int startup_ioapic_irq(unsigned int irq)
1da177e4
LT
1342{
1343 int was_pending = 0;
1344 unsigned long flags;
1345
1346 spin_lock_irqsave(&ioapic_lock, flags);
1347 if (irq < 16) {
1348 disable_8259A_irq(irq);
1349 if (i8259A_irq_pending(irq))
1350 was_pending = 1;
1351 }
1352 __unmask_IO_APIC_irq(irq);
1353 spin_unlock_irqrestore(&ioapic_lock, flags);
1354
1355 return was_pending;
1356}
1357
04b9267b 1358static int ioapic_retrigger_irq(unsigned int irq)
c0ad90a3 1359{
13a79503 1360 struct irq_cfg *cfg = &irq_cfg[irq];
550f2299 1361 cpumask_t mask;
6bf2dafa 1362 unsigned long flags;
550f2299 1363
6bf2dafa 1364 spin_lock_irqsave(&vector_lock, flags);
550f2299 1365 cpus_clear(mask);
13a79503 1366 cpu_set(first_cpu(cfg->domain), mask);
550f2299 1367
13a79503 1368 send_IPI_mask(mask, cfg->vector);
6bf2dafa 1369 spin_unlock_irqrestore(&vector_lock, flags);
c0ad90a3
IM
1370
1371 return 1;
1372}
1373
1da177e4
LT
1374/*
1375 * Level and edge triggered IO-APIC interrupts need different handling,
1376 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
1377 * handled with the level-triggered descriptor, but that one has slightly
1378 * more overhead. Level-triggered interrupts cannot be handled with the
1379 * edge-triggered handler, without risking IRQ storms and other ugly
1380 * races.
1381 */
1382
61014292
EB
1383#ifdef CONFIG_SMP
1384asmlinkage void smp_irq_move_cleanup_interrupt(void)
1385{
1386 unsigned vector, me;
1387 ack_APIC_irq();
1388 exit_idle();
1389 irq_enter();
1390
1391 me = smp_processor_id();
1392 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
1393 unsigned int irq;
1394 struct irq_desc *desc;
1395 struct irq_cfg *cfg;
1396 irq = __get_cpu_var(vector_irq)[vector];
1397 if (irq >= NR_IRQS)
1398 continue;
1399
1400 desc = irq_desc + irq;
1401 cfg = irq_cfg + irq;
1402 spin_lock(&desc->lock);
1403 if (!cfg->move_cleanup_count)
1404 goto unlock;
1405
1406 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
1407 goto unlock;
1408
1409 __get_cpu_var(vector_irq)[vector] = -1;
1410 cfg->move_cleanup_count--;
1411unlock:
1412 spin_unlock(&desc->lock);
1413 }
1414
1415 irq_exit();
1416}
1417
1418static void irq_complete_move(unsigned int irq)
1419{
1420 struct irq_cfg *cfg = irq_cfg + irq;
1421 unsigned vector, me;
1422
1423 if (likely(!cfg->move_in_progress))
1424 return;
1425
65ea5b03 1426 vector = ~get_irq_regs()->orig_ax;
61014292 1427 me = smp_processor_id();
f0e13ae7 1428 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain)) {
61014292
EB
1429 cpumask_t cleanup_mask;
1430
1431 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
1432 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
1433 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
1434 cfg->move_in_progress = 0;
1435 }
1436}
1437#else
1438static inline void irq_complete_move(unsigned int irq) {}
1439#endif
1440
0be6652f
EB
1441static void ack_apic_edge(unsigned int irq)
1442{
61014292 1443 irq_complete_move(irq);
0be6652f
EB
1444 move_native_irq(irq);
1445 ack_APIC_irq();
1446}
1447
1448static void ack_apic_level(unsigned int irq)
1449{
1450 int do_unmask_irq = 0;
1451
61014292 1452 irq_complete_move(irq);
52e3d90d 1453#ifdef CONFIG_GENERIC_PENDING_IRQ
0be6652f
EB
1454 /* If we are moving the irq we need to mask it */
1455 if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
1456 do_unmask_irq = 1;
1457 mask_IO_APIC_irq(irq);
1458 }
1459#endif
1460
1461 /*
1462 * We must acknowledge the irq before we move it or the acknowledge will
beb7dd86 1463 * not propagate properly.
0be6652f
EB
1464 */
1465 ack_APIC_irq();
1466
1467 /* Now we can move and renable the irq */
ef3e28c5
EB
1468 if (unlikely(do_unmask_irq)) {
1469 /* Only migrate the irq if the ack has been received.
1470 *
1471 * On rare occasions the broadcast level triggered ack gets
1472 * delayed going to ioapics, and if we reprogram the
1473 * vector while Remote IRR is still set the irq will never
1474 * fire again.
1475 *
1476 * To prevent this scenario we read the Remote IRR bit
1477 * of the ioapic. This has two effects.
1478 * - On any sane system the read of the ioapic will
1479 * flush writes (and acks) going to the ioapic from
1480 * this cpu.
1481 * - We get to see if the ACK has actually been delivered.
1482 *
1483 * Based on failed experiments of reprogramming the
1484 * ioapic entry from outside of irq context starting
1485 * with masking the ioapic entry and then polling until
1486 * Remote IRR was clear before reprogramming the
1487 * ioapic I don't trust the Remote IRR bit to be
1488 * completey accurate.
1489 *
1490 * However there appears to be no other way to plug
1491 * this race, so if the Remote IRR bit is not
1492 * accurate and is causing problems then it is a hardware bug
1493 * and you can go talk to the chipset vendor about it.
1494 */
1495 if (!io_apic_level_ack_pending(irq))
1496 move_masked_irq(irq);
0be6652f 1497 unmask_IO_APIC_irq(irq);
ef3e28c5 1498 }
0be6652f
EB
1499}
1500
f29bd1ba
IM
1501static struct irq_chip ioapic_chip __read_mostly = {
1502 .name = "IO-APIC",
04b9267b
EB
1503 .startup = startup_ioapic_irq,
1504 .mask = mask_IO_APIC_irq,
1505 .unmask = unmask_IO_APIC_irq,
0be6652f
EB
1506 .ack = ack_apic_edge,
1507 .eoi = ack_apic_level,
54d5d424 1508#ifdef CONFIG_SMP
04b9267b 1509 .set_affinity = set_ioapic_affinity_irq,
54d5d424 1510#endif
04b9267b 1511 .retrigger = ioapic_retrigger_irq,
1da177e4
LT
1512};
1513
1514static inline void init_IO_APIC_traps(void)
1515{
1516 int irq;
1517
1518 /*
1519 * NOTE! The local APIC isn't very good at handling
1520 * multiple interrupts at the same interrupt level.
1521 * As the interrupt level is determined by taking the
1522 * vector number and shifting that right by 4, we
1523 * want to spread these out a bit so that they don't
1524 * all fall in the same interrupt level.
1525 *
1526 * Also, we've got to be careful not to trash gate
1527 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1528 */
1529 for (irq = 0; irq < NR_IRQS ; irq++) {
addfc66b 1530 if (IO_APIC_IRQ(irq) && !irq_cfg[irq].vector) {
1da177e4
LT
1531 /*
1532 * Hmm.. We don't have an entry for this,
1533 * so default to an old-fashioned 8259
1534 * interrupt if we can..
1535 */
1536 if (irq < 16)
1537 make_8259A_irq(irq);
1538 else
1539 /* Strange. Oh, well.. */
f29bd1ba 1540 irq_desc[irq].chip = &no_irq_chip;
1da177e4
LT
1541 }
1542 }
1543}
1544
1545static void enable_lapic_irq (unsigned int irq)
1546{
1547 unsigned long v;
1548
1549 v = apic_read(APIC_LVT0);
11a8e778 1550 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
1da177e4
LT
1551}
1552
1553static void disable_lapic_irq (unsigned int irq)
1554{
1555 unsigned long v;
1556
1557 v = apic_read(APIC_LVT0);
11a8e778 1558 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1da177e4
LT
1559}
1560
1561static void ack_lapic_irq (unsigned int irq)
1562{
1563 ack_APIC_irq();
1564}
1565
1566static void end_lapic_irq (unsigned int i) { /* nothing */ }
1567
6c231b7b 1568static struct hw_interrupt_type lapic_irq_type __read_mostly = {
c47e285d 1569 .name = "local-APIC",
1da177e4
LT
1570 .typename = "local-APIC-edge",
1571 .startup = NULL, /* startup_irq() not used for IRQ0 */
1572 .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
1573 .enable = enable_lapic_irq,
1574 .disable = disable_lapic_irq,
1575 .ack = ack_lapic_irq,
1576 .end = end_lapic_irq,
1577};
1578
e9427101 1579static void __init setup_nmi(void)
1da177e4
LT
1580{
1581 /*
1582 * Dirty trick to enable the NMI watchdog ...
1583 * We put the 8259A master into AEOI mode and
1584 * unmask on all local APICs LVT0 as NMI.
1585 *
1586 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
1587 * is from Maciej W. Rozycki - so we do not have to EOI from
1588 * the NMI handler or the timer interrupt.
1589 */
1590 printk(KERN_INFO "activating NMI Watchdog ...");
1591
e9427101 1592 enable_NMI_through_LVT0();
1da177e4
LT
1593
1594 printk(" done.\n");
1595}
1596
1597/*
1598 * This looks a bit hackish but it's about the only one way of sending
1599 * a few INTA cycles to 8259As and any associated glue logic. ICR does
1600 * not support the ExtINT mode, unfortunately. We need to send these
1601 * cycles as some i82489DX-based boards have glue logic that keeps the
1602 * 8259A interrupt line asserted until INTA. --macro
1603 */
1604static inline void unlock_ExtINT_logic(void)
1605{
1008fddc 1606 int apic, pin, i;
1da177e4
LT
1607 struct IO_APIC_route_entry entry0, entry1;
1608 unsigned char save_control, save_freq_select;
1da177e4 1609
1008fddc
EB
1610 pin = find_isa_irq_pin(8, mp_INT);
1611 apic = find_isa_irq_apic(8, mp_INT);
1da177e4
LT
1612 if (pin == -1)
1613 return;
1614
a2249cba
AM
1615 entry0 = ioapic_read_entry(apic, pin);
1616
1008fddc 1617 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
1618
1619 memset(&entry1, 0, sizeof(entry1));
1620
1621 entry1.dest_mode = 0; /* physical delivery */
1622 entry1.mask = 0; /* unmask IRQ now */
ee4eff6f 1623 entry1.dest = hard_smp_processor_id();
1da177e4
LT
1624 entry1.delivery_mode = dest_ExtINT;
1625 entry1.polarity = entry0.polarity;
1626 entry1.trigger = 0;
1627 entry1.vector = 0;
1628
a2249cba 1629 ioapic_write_entry(apic, pin, entry1);
1da177e4
LT
1630
1631 save_control = CMOS_READ(RTC_CONTROL);
1632 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
1633 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
1634 RTC_FREQ_SELECT);
1635 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
1636
1637 i = 100;
1638 while (i-- > 0) {
1639 mdelay(10);
1640 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
1641 i -= 10;
1642 }
1643
1644 CMOS_WRITE(save_control, RTC_CONTROL);
1645 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
1008fddc 1646 clear_IO_APIC_pin(apic, pin);
1da177e4 1647
a2249cba 1648 ioapic_write_entry(apic, pin, entry0);
1da177e4
LT
1649}
1650
1651/*
1652 * This code may look a bit paranoid, but it's supposed to cooperate with
1653 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
1654 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
1655 * fanatically on his truly buggy board.
fea5f1e1
LT
1656 *
1657 * FIXME: really need to revamp this for modern platforms only.
1da177e4 1658 */
e9427101 1659static inline void __init check_timer(void)
1da177e4 1660{
dfbffdd8 1661 struct irq_cfg *cfg = irq_cfg + 0;
1008fddc 1662 int apic1, pin1, apic2, pin2;
4aae0702
IM
1663 unsigned long flags;
1664
1665 local_irq_save(flags);
1da177e4
LT
1666
1667 /*
1668 * get/set the timer IRQ vector:
1669 */
1670 disable_8259A_irq(0);
dfbffdd8 1671 assign_irq_vector(0, TARGET_CPUS);
1da177e4
LT
1672
1673 /*
1674 * Subtle, code in do_timer_interrupt() expects an AEOI
1675 * mode for the 8259A whenever interrupts are routed
1676 * through I/O APICs. Also IRQ0 has to be enabled in
1677 * the 8259A which implies the virtual wire has to be
1678 * disabled in the local APIC.
1679 */
11a8e778 1680 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1da177e4 1681 init_8259A(1);
fea5f1e1
LT
1682 if (timer_over_8254 > 0)
1683 enable_8259A_irq(0);
1da177e4 1684
1008fddc
EB
1685 pin1 = find_isa_irq_pin(0, mp_INT);
1686 apic1 = find_isa_irq_apic(0, mp_INT);
1687 pin2 = ioapic_i8259.pin;
1688 apic2 = ioapic_i8259.apic;
1da177e4 1689
fea5f1e1 1690 apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
dfbffdd8 1691 cfg->vector, apic1, pin1, apic2, pin2);
b0268726 1692
fea5f1e1
LT
1693 if (pin1 != -1) {
1694 /*
1695 * Ok, does IRQ0 through the IOAPIC work?
1696 */
1697 unmask_IO_APIC_irq(0);
1698 if (!no_timer_check && timer_irq_works()) {
1699 nmi_watchdog_default();
1700 if (nmi_watchdog == NMI_IO_APIC) {
1701 disable_8259A_irq(0);
1702 setup_nmi();
1703 enable_8259A_irq(0);
1704 }
1705 if (disable_timer_pin_1 > 0)
1706 clear_IO_APIC_pin(0, pin1);
4aae0702 1707 goto out;
fea5f1e1
LT
1708 }
1709 clear_IO_APIC_pin(apic1, pin1);
1710 apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: 8254 timer not "
1711 "connected to IO-APIC\n");
1712 }
1da177e4 1713
fea5f1e1
LT
1714 apic_printk(APIC_VERBOSE,KERN_INFO "...trying to set up timer (IRQ0) "
1715 "through the 8259A ... ");
1da177e4 1716 if (pin2 != -1) {
fea5f1e1
LT
1717 apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
1718 apic2, pin2);
1719 /*
1720 * legacy devices should be connected to IO APIC #0
1721 */
dfbffdd8 1722 setup_ExtINT_IRQ0_pin(apic2, pin2, cfg->vector);
fea5f1e1
LT
1723 if (timer_irq_works()) {
1724 apic_printk(APIC_VERBOSE," works.\n");
1725 nmi_watchdog_default();
1726 if (nmi_watchdog == NMI_IO_APIC) {
1727 setup_nmi();
1728 }
4aae0702 1729 goto out;
fea5f1e1
LT
1730 }
1731 /*
1732 * Cleanup, just in case ...
1733 */
1734 clear_IO_APIC_pin(apic2, pin2);
1da177e4 1735 }
fea5f1e1 1736 apic_printk(APIC_VERBOSE," failed.\n");
1da177e4 1737
1f992153 1738 if (nmi_watchdog == NMI_IO_APIC) {
1da177e4
LT
1739 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
1740 nmi_watchdog = 0;
1741 }
1742
1743 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
1744
1745 disable_8259A_irq(0);
d1bef4ed 1746 irq_desc[0].chip = &lapic_irq_type;
dfbffdd8 1747 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
1da177e4
LT
1748 enable_8259A_irq(0);
1749
1750 if (timer_irq_works()) {
5b922cd4 1751 apic_printk(APIC_VERBOSE," works.\n");
4aae0702 1752 goto out;
1da177e4 1753 }
dfbffdd8 1754 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
1da177e4
LT
1755 apic_printk(APIC_VERBOSE," failed.\n");
1756
1757 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
1758
1759 init_8259A(0);
1760 make_8259A_irq(0);
11a8e778 1761 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1da177e4
LT
1762
1763 unlock_ExtINT_logic();
1764
1765 if (timer_irq_works()) {
1766 apic_printk(APIC_VERBOSE," works.\n");
4aae0702 1767 goto out;
1da177e4
LT
1768 }
1769 apic_printk(APIC_VERBOSE," failed :(.\n");
1770 panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
4aae0702
IM
1771out:
1772 local_irq_restore(flags);
1da177e4
LT
1773}
1774
14d98cad
AK
1775static int __init notimercheck(char *s)
1776{
1777 no_timer_check = 1;
1778 return 1;
1779}
1780__setup("no_timer_check", notimercheck);
1781
1da177e4
LT
1782/*
1783 *
676b1855 1784 * IRQs that are handled by the PIC in the MPS IOAPIC case.
1da177e4
LT
1785 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
1786 * Linux doesn't really care, as it's not actually used
1787 * for any interrupt handling anyway.
1788 */
1789#define PIC_IRQS (1<<2)
1790
1791void __init setup_IO_APIC(void)
1792{
1c69524c
YL
1793
1794 /*
1795 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
1796 */
1da177e4
LT
1797
1798 if (acpi_ioapic)
1799 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
1800 else
1801 io_apic_irqs = ~PIC_IRQS;
1802
1803 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
1804
1da177e4
LT
1805 sync_Arb_IDs();
1806 setup_IO_APIC_irqs();
1807 init_IO_APIC_traps();
1808 check_timer();
1809 if (!acpi_ioapic)
1810 print_IO_APIC();
1811}
1812
1813struct sysfs_ioapic_data {
1814 struct sys_device dev;
1815 struct IO_APIC_route_entry entry[0];
1816};
1817static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1818
0b9c33a7 1819static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1da177e4
LT
1820{
1821 struct IO_APIC_route_entry *entry;
1822 struct sysfs_ioapic_data *data;
1da177e4
LT
1823 int i;
1824
1825 data = container_of(dev, struct sysfs_ioapic_data, dev);
1826 entry = data->entry;
eea0e11c
AK
1827 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
1828 *entry = ioapic_read_entry(dev->id, i);
1da177e4
LT
1829
1830 return 0;
1831}
1832
1833static int ioapic_resume(struct sys_device *dev)
1834{
1835 struct IO_APIC_route_entry *entry;
1836 struct sysfs_ioapic_data *data;
1837 unsigned long flags;
1838 union IO_APIC_reg_00 reg_00;
1839 int i;
1840
1841 data = container_of(dev, struct sysfs_ioapic_data, dev);
1842 entry = data->entry;
1843
1844 spin_lock_irqsave(&ioapic_lock, flags);
1845 reg_00.raw = io_apic_read(dev->id, 0);
1846 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
1847 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
1848 io_apic_write(dev->id, 0, reg_00.raw);
1849 }
1da177e4 1850 spin_unlock_irqrestore(&ioapic_lock, flags);
eea0e11c
AK
1851 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
1852 ioapic_write_entry(dev->id, i, entry[i]);
1da177e4
LT
1853
1854 return 0;
1855}
1856
1857static struct sysdev_class ioapic_sysdev_class = {
af5ca3f4 1858 .name = "ioapic",
1da177e4
LT
1859 .suspend = ioapic_suspend,
1860 .resume = ioapic_resume,
1861};
1862
1863static int __init ioapic_init_sysfs(void)
1864{
1865 struct sys_device * dev;
cddf7ff7 1866 int i, size, error;
1da177e4
LT
1867
1868 error = sysdev_class_register(&ioapic_sysdev_class);
1869 if (error)
1870 return error;
1871
1872 for (i = 0; i < nr_ioapics; i++ ) {
1873 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1874 * sizeof(struct IO_APIC_route_entry);
cddf7ff7 1875 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
1da177e4
LT
1876 if (!mp_ioapic_data[i]) {
1877 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1878 continue;
1879 }
1da177e4
LT
1880 dev = &mp_ioapic_data[i]->dev;
1881 dev->id = i;
1882 dev->cls = &ioapic_sysdev_class;
1883 error = sysdev_register(dev);
1884 if (error) {
1885 kfree(mp_ioapic_data[i]);
1886 mp_ioapic_data[i] = NULL;
1887 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1888 continue;
1889 }
1890 }
1891
1892 return 0;
1893}
1894
1895device_initcall(ioapic_init_sysfs);
1896
c4fa0bbf 1897/*
04b9267b 1898 * Dynamic irq allocate and deallocation
c4fa0bbf
EB
1899 */
1900int create_irq(void)
1901{
04b9267b
EB
1902 /* Allocate an unused irq */
1903 int irq;
1904 int new;
c4fa0bbf 1905 unsigned long flags;
c4fa0bbf 1906
04b9267b
EB
1907 irq = -ENOSPC;
1908 spin_lock_irqsave(&vector_lock, flags);
1909 for (new = (NR_IRQS - 1); new >= 0; new--) {
1910 if (platform_legacy_irq(new))
1911 continue;
13a79503 1912 if (irq_cfg[new].vector != 0)
04b9267b 1913 continue;
dfbffdd8 1914 if (__assign_irq_vector(new, TARGET_CPUS) == 0)
04b9267b
EB
1915 irq = new;
1916 break;
1917 }
1918 spin_unlock_irqrestore(&vector_lock, flags);
c4fa0bbf 1919
04b9267b 1920 if (irq >= 0) {
c4fa0bbf
EB
1921 dynamic_irq_init(irq);
1922 }
1923 return irq;
1924}
1925
1926void destroy_irq(unsigned int irq)
1927{
1928 unsigned long flags;
c4fa0bbf
EB
1929
1930 dynamic_irq_cleanup(irq);
1931
1932 spin_lock_irqsave(&vector_lock, flags);
5df0287e 1933 __clear_irq_vector(irq);
c4fa0bbf
EB
1934 spin_unlock_irqrestore(&vector_lock, flags);
1935}
c4fa0bbf 1936
589e367f 1937/*
676b1855 1938 * MSI message composition
589e367f
EB
1939 */
1940#ifdef CONFIG_PCI_MSI
3b7d1921 1941static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
589e367f 1942{
dfbffdd8
EB
1943 struct irq_cfg *cfg = irq_cfg + irq;
1944 int err;
589e367f 1945 unsigned dest;
c7111c13 1946 cpumask_t tmp;
589e367f 1947
dfbffdd8
EB
1948 tmp = TARGET_CPUS;
1949 err = assign_irq_vector(irq, tmp);
1950 if (!err) {
1951 cpus_and(tmp, cfg->domain, tmp);
589e367f
EB
1952 dest = cpu_mask_to_apicid(tmp);
1953
1954 msg->address_hi = MSI_ADDR_BASE_HI;
1955 msg->address_lo =
1956 MSI_ADDR_BASE_LO |
1957 ((INT_DEST_MODE == 0) ?
1958 MSI_ADDR_DEST_MODE_PHYSICAL:
1959 MSI_ADDR_DEST_MODE_LOGICAL) |
1960 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1961 MSI_ADDR_REDIRECTION_CPU:
1962 MSI_ADDR_REDIRECTION_LOWPRI) |
1963 MSI_ADDR_DEST_ID(dest);
1964
1965 msg->data =
1966 MSI_DATA_TRIGGER_EDGE |
1967 MSI_DATA_LEVEL_ASSERT |
1968 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1969 MSI_DATA_DELIVERY_FIXED:
1970 MSI_DATA_DELIVERY_LOWPRI) |
dfbffdd8 1971 MSI_DATA_VECTOR(cfg->vector);
589e367f 1972 }
dfbffdd8 1973 return err;
589e367f
EB
1974}
1975
3b7d1921
EB
1976#ifdef CONFIG_SMP
1977static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
589e367f 1978{
dfbffdd8 1979 struct irq_cfg *cfg = irq_cfg + irq;
3b7d1921
EB
1980 struct msi_msg msg;
1981 unsigned int dest;
1982 cpumask_t tmp;
3b7d1921
EB
1983
1984 cpus_and(tmp, mask, cpu_online_map);
1985 if (cpus_empty(tmp))
5ff5115e 1986 return;
589e367f 1987
dfbffdd8 1988 if (assign_irq_vector(irq, mask))
3b7d1921 1989 return;
550f2299 1990
dfbffdd8 1991 cpus_and(tmp, cfg->domain, mask);
3b7d1921 1992 dest = cpu_mask_to_apicid(tmp);
589e367f 1993
3b7d1921
EB
1994 read_msi_msg(irq, &msg);
1995
1996 msg.data &= ~MSI_DATA_VECTOR_MASK;
dfbffdd8 1997 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3b7d1921
EB
1998 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
1999 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2000
2001 write_msi_msg(irq, &msg);
9f0a5ba5 2002 irq_desc[irq].affinity = mask;
589e367f 2003}
3b7d1921 2004#endif /* CONFIG_SMP */
589e367f 2005
3b7d1921
EB
2006/*
2007 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2008 * which implement the MSI or MSI-X Capability Structure.
2009 */
2010static struct irq_chip msi_chip = {
2011 .name = "PCI-MSI",
2012 .unmask = unmask_msi_irq,
2013 .mask = mask_msi_irq,
2014 .ack = ack_apic_edge,
2015#ifdef CONFIG_SMP
2016 .set_affinity = set_msi_irq_affinity,
2017#endif
2018 .retrigger = ioapic_retrigger_irq,
589e367f
EB
2019};
2020
f7feaca7 2021int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
3b7d1921
EB
2022{
2023 struct msi_msg msg;
f7feaca7
EB
2024 int irq, ret;
2025 irq = create_irq();
2026 if (irq < 0)
2027 return irq;
2028
3b7d1921 2029 ret = msi_compose_msg(dev, irq, &msg);
f7feaca7
EB
2030 if (ret < 0) {
2031 destroy_irq(irq);
3b7d1921 2032 return ret;
f7feaca7 2033 }
3b7d1921 2034
7fe3730d 2035 set_irq_msi(irq, desc);
3b7d1921
EB
2036 write_msi_msg(irq, &msg);
2037
a460e745 2038 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
3b7d1921 2039
7fe3730d 2040 return 0;
3b7d1921
EB
2041}
2042
2043void arch_teardown_msi_irq(unsigned int irq)
2044{
f7feaca7 2045 destroy_irq(irq);
3b7d1921
EB
2046}
2047
3460a6d9
KA
2048#ifdef CONFIG_DMAR
2049#ifdef CONFIG_SMP
2050static void dmar_msi_set_affinity(unsigned int irq, cpumask_t mask)
2051{
2052 struct irq_cfg *cfg = irq_cfg + irq;
2053 struct msi_msg msg;
2054 unsigned int dest;
2055 cpumask_t tmp;
2056
2057 cpus_and(tmp, mask, cpu_online_map);
2058 if (cpus_empty(tmp))
2059 return;
2060
2061 if (assign_irq_vector(irq, mask))
2062 return;
2063
2064 cpus_and(tmp, cfg->domain, mask);
2065 dest = cpu_mask_to_apicid(tmp);
2066
2067 dmar_msi_read(irq, &msg);
2068
2069 msg.data &= ~MSI_DATA_VECTOR_MASK;
2070 msg.data |= MSI_DATA_VECTOR(cfg->vector);
2071 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2072 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2073
2074 dmar_msi_write(irq, &msg);
2075 irq_desc[irq].affinity = mask;
2076}
2077#endif /* CONFIG_SMP */
2078
2079struct irq_chip dmar_msi_type = {
2080 .name = "DMAR_MSI",
2081 .unmask = dmar_msi_unmask,
2082 .mask = dmar_msi_mask,
2083 .ack = ack_apic_edge,
2084#ifdef CONFIG_SMP
2085 .set_affinity = dmar_msi_set_affinity,
2086#endif
2087 .retrigger = ioapic_retrigger_irq,
2088};
2089
2090int arch_setup_dmar_msi(unsigned int irq)
2091{
2092 int ret;
2093 struct msi_msg msg;
2094
2095 ret = msi_compose_msg(NULL, irq, &msg);
2096 if (ret < 0)
2097 return ret;
2098 dmar_msi_write(irq, &msg);
2099 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
2100 "edge");
2101 return 0;
2102}
2103#endif
589e367f 2104
3460a6d9 2105#endif /* CONFIG_PCI_MSI */
8b955b0d
EB
2106/*
2107 * Hypertransport interrupt support
2108 */
2109#ifdef CONFIG_HT_IRQ
2110
2111#ifdef CONFIG_SMP
2112
2113static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
2114{
ec68307c
EB
2115 struct ht_irq_msg msg;
2116 fetch_ht_irq_msg(irq, &msg);
8b955b0d 2117
ec68307c
EB
2118 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
2119 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
8b955b0d 2120
ec68307c
EB
2121 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
2122 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 2123
ec68307c 2124 write_ht_irq_msg(irq, &msg);
8b955b0d
EB
2125}
2126
2127static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2128{
dfbffdd8 2129 struct irq_cfg *cfg = irq_cfg + irq;
8b955b0d
EB
2130 unsigned int dest;
2131 cpumask_t tmp;
8b955b0d
EB
2132
2133 cpus_and(tmp, mask, cpu_online_map);
2134 if (cpus_empty(tmp))
5ff5115e 2135 return;
8b955b0d 2136
dfbffdd8 2137 if (assign_irq_vector(irq, mask))
8b955b0d
EB
2138 return;
2139
dfbffdd8 2140 cpus_and(tmp, cfg->domain, mask);
8b955b0d
EB
2141 dest = cpu_mask_to_apicid(tmp);
2142
dfbffdd8 2143 target_ht_irq(irq, dest, cfg->vector);
9f0a5ba5 2144 irq_desc[irq].affinity = mask;
8b955b0d
EB
2145}
2146#endif
2147
c37e108d 2148static struct irq_chip ht_irq_chip = {
8b955b0d
EB
2149 .name = "PCI-HT",
2150 .mask = mask_ht_irq,
2151 .unmask = unmask_ht_irq,
2152 .ack = ack_apic_edge,
2153#ifdef CONFIG_SMP
2154 .set_affinity = set_ht_irq_affinity,
2155#endif
2156 .retrigger = ioapic_retrigger_irq,
2157};
2158
2159int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2160{
dfbffdd8
EB
2161 struct irq_cfg *cfg = irq_cfg + irq;
2162 int err;
c7111c13 2163 cpumask_t tmp;
8b955b0d 2164
dfbffdd8
EB
2165 tmp = TARGET_CPUS;
2166 err = assign_irq_vector(irq, tmp);
2167 if (!err) {
ec68307c 2168 struct ht_irq_msg msg;
8b955b0d 2169 unsigned dest;
8b955b0d 2170
dfbffdd8 2171 cpus_and(tmp, cfg->domain, tmp);
8b955b0d
EB
2172 dest = cpu_mask_to_apicid(tmp);
2173
ec68307c 2174 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 2175
ec68307c
EB
2176 msg.address_lo =
2177 HT_IRQ_LOW_BASE |
8b955b0d 2178 HT_IRQ_LOW_DEST_ID(dest) |
dfbffdd8 2179 HT_IRQ_LOW_VECTOR(cfg->vector) |
8b955b0d
EB
2180 ((INT_DEST_MODE == 0) ?
2181 HT_IRQ_LOW_DM_PHYSICAL :
2182 HT_IRQ_LOW_DM_LOGICAL) |
2183 HT_IRQ_LOW_RQEOI_EDGE |
2184 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2185 HT_IRQ_LOW_MT_FIXED :
ec68307c
EB
2186 HT_IRQ_LOW_MT_ARBITRATED) |
2187 HT_IRQ_LOW_IRQ_MASKED;
8b955b0d 2188
ec68307c 2189 write_ht_irq_msg(irq, &msg);
8b955b0d 2190
a460e745
IM
2191 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2192 handle_edge_irq, "edge");
8b955b0d 2193 }
dfbffdd8 2194 return err;
8b955b0d
EB
2195}
2196#endif /* CONFIG_HT_IRQ */
2197
1da177e4
LT
2198/* --------------------------------------------------------------------------
2199 ACPI-based IOAPIC Configuration
2200 -------------------------------------------------------------------------- */
2201
888ba6c6 2202#ifdef CONFIG_ACPI
1da177e4
LT
2203
2204#define IO_APIC_MAX_ID 0xFE
2205
1da177e4
LT
2206int __init io_apic_get_redir_entries (int ioapic)
2207{
2208 union IO_APIC_reg_01 reg_01;
2209 unsigned long flags;
2210
2211 spin_lock_irqsave(&ioapic_lock, flags);
2212 reg_01.raw = io_apic_read(ioapic, 1);
2213 spin_unlock_irqrestore(&ioapic_lock, flags);
2214
2215 return reg_01.bits.entries;
2216}
2217
2218
50eca3eb 2219int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
1da177e4 2220{
1da177e4
LT
2221 if (!IO_APIC_IRQ(irq)) {
2222 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2223 ioapic);
2224 return -EINVAL;
2225 }
2226
550f2299
EB
2227 /*
2228 * IRQs < 16 are already in the irq_2_pin[] map
2229 */
2230 if (irq >= 16)
2231 add_pin_to_irq(irq, ioapic, pin);
2232
a8c8a367 2233 setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
1da177e4
LT
2234
2235 return 0;
2236}
2237
1da177e4 2238
61fd47e0
SL
2239int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2240{
2241 int i;
2242
2243 if (skip_ioapic_setup)
2244 return -1;
2245
2246 for (i = 0; i < mp_irq_entries; i++)
2247 if (mp_irqs[i].mpc_irqtype == mp_INT &&
2248 mp_irqs[i].mpc_srcbusirq == bus_irq)
2249 break;
2250 if (i >= mp_irq_entries)
2251 return -1;
2252
2253 *trigger = irq_trigger(i);
2254 *polarity = irq_polarity(i);
2255 return 0;
2256}
2257
2258#endif /* CONFIG_ACPI */
1da177e4
LT
2259
2260/*
2261 * This function currently is only a helper for the i386 smp boot process where
2262 * we need to reprogram the ioredtbls to cater for the cpus which have come online
2263 * so mask in all cases should simply be TARGET_CPUS
2264 */
54d5d424 2265#ifdef CONFIG_SMP
1da177e4
LT
2266void __init setup_ioapic_dest(void)
2267{
2268 int pin, ioapic, irq, irq_entry;
2269
2270 if (skip_ioapic_setup == 1)
2271 return;
2272
2273 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
2274 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
2275 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
2276 if (irq_entry == -1)
2277 continue;
2278 irq = pin_2_irq(irq_entry, ioapic, pin);
ad892f5e
YL
2279
2280 /* setup_IO_APIC_irqs could fail to get vector for some device
2281 * when you have too many devices, because at that time only boot
2282 * cpu is online.
2283 */
13a79503 2284 if (!irq_cfg[irq].vector)
a8c8a367
EB
2285 setup_IO_APIC_irq(ioapic, pin, irq,
2286 irq_trigger(irq_entry),
2287 irq_polarity(irq_entry));
ad892f5e
YL
2288 else
2289 set_ioapic_affinity_irq(irq, TARGET_CPUS);
1da177e4
LT
2290 }
2291
2292 }
2293}
54d5d424 2294#endif
61fd47e0 2295
3e35a0e5
TG
2296#define IOAPIC_RESOURCE_NAME_SIZE 11
2297
2298static struct resource *ioapic_resources;
2299
2300static struct resource * __init ioapic_setup_resources(void)
2301{
2302 unsigned long n;
2303 struct resource *res;
2304 char *mem;
2305 int i;
2306
2307 if (nr_ioapics <= 0)
2308 return NULL;
2309
2310 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
2311 n *= nr_ioapics;
2312
2313 mem = alloc_bootmem(n);
2314 res = (void *)mem;
2315
2316 if (mem != NULL) {
3e35a0e5
TG
2317 mem += sizeof(struct resource) * nr_ioapics;
2318
2319 for (i = 0; i < nr_ioapics; i++) {
2320 res[i].name = mem;
2321 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
2322 sprintf(mem, "IOAPIC %u", i);
2323 mem += IOAPIC_RESOURCE_NAME_SIZE;
2324 }
2325 }
2326
2327 ioapic_resources = res;
2328
2329 return res;
2330}
2331
2332void __init ioapic_init_mappings(void)
2333{
2334 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
2335 struct resource *ioapic_res;
2336 int i;
2337
2338 ioapic_res = ioapic_setup_resources();
2339 for (i = 0; i < nr_ioapics; i++) {
2340 if (smp_found_config) {
2341 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
2342 } else {
2343 ioapic_phys = (unsigned long)
2344 alloc_bootmem_pages(PAGE_SIZE);
2345 ioapic_phys = __pa(ioapic_phys);
2346 }
2347 set_fixmap_nocache(idx, ioapic_phys);
2348 apic_printk(APIC_VERBOSE,
2349 "mapped IOAPIC to %016lx (%016lx)\n",
2350 __fix_to_virt(idx), ioapic_phys);
2351 idx++;
2352
2353 if (ioapic_res != NULL) {
2354 ioapic_res->start = ioapic_phys;
2355 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
2356 ioapic_res++;
2357 }
2358 }
2359}
2360
2361static int __init ioapic_insert_resources(void)
2362{
2363 int i;
2364 struct resource *r = ioapic_resources;
2365
2366 if (!r) {
2367 printk(KERN_ERR
2368 "IO APIC resources could be not be allocated.\n");
2369 return -1;
2370 }
2371
2372 for (i = 0; i < nr_ioapics; i++) {
2373 insert_resource(&iomem_resource, r);
2374 r++;
2375 }
2376
2377 return 0;
2378}
2379
2380/* Insert the IO APIC resources after PCI initialization has occured to handle
2381 * IO APICS that are mapped in on a BAR in PCI space. */
2382late_initcall(ioapic_insert_resources);
2383
This page took 0.563243 seconds and 5 git commands to generate.