blob: 357b354921c13251d0f467b37683bedcf81fff05 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/smp_lock.h>
Eric W. Biederman589e3672006-10-04 02:16:42 -070029#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/mc146818rtc.h>
31#include <linux/acpi.h>
32#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070033#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070034#include <linux/htirq.h>
Andi Kleenab688052006-02-16 23:42:04 +010035#ifdef CONFIG_ACPI
36#include <acpi/acpi_bus.h>
37#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/io.h>
40#include <asm/smp.h>
41#include <asm/desc.h>
42#include <asm/proto.h>
43#include <asm/mach_apic.h>
Andi Kleen8d916402005-05-31 14:39:26 -070044#include <asm/acpi.h>
Andi Kleenca8642f2006-01-11 22:44:27 +010045#include <asm/dma.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020046#include <asm/nmi.h>
Eric W. Biederman589e3672006-10-04 02:16:42 -070047#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070048#include <asm/hypertransport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Eric W. Biedermanc7111c132006-10-08 07:47:55 -060050static int assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result);
Eric W. Biederman04b92672006-10-04 02:16:46 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define __apicdebuginit __init
53
54int sis_apic_bug; /* not actually supported, dummy for compile */
55
Andi Kleen14d98ca2005-05-20 14:27:59 -070056static int no_timer_check;
57
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -080058static int disable_timer_pin_1 __initdata;
59
60int timer_over_8254 __initdata = 1;
61
Eric W. Biederman1008fdd2006-01-11 22:46:06 +010062/* Where if anywhere is the i8259 connect in external int mode */
63static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static DEFINE_SPINLOCK(ioapic_lock);
Eric W. Biederman70a0a532006-10-25 01:00:23 +020066DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * # of IRQ routing registers
70 */
71int nr_ioapic_registers[MAX_IO_APICS];
72
73/*
74 * Rough estimation of how many shared IRQs there are, can
75 * be changed anytime.
76 */
James Cleverdon6004e1b2005-11-05 17:25:53 +010077#define MAX_PLUS_SHARED_IRQS NR_IRQ_VECTORS
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
79
80/*
81 * This is performance-critical, we want to do it O(1)
82 *
83 * the indexing order of this array favors 1:1 mappings
84 * between pins and IRQs.
85 */
86
87static struct irq_pin_list {
88 short apic, pin, next;
89} irq_2_pin[PIN_MAP_SIZE];
90
Linus Torvalds6c0ffb92006-11-08 10:23:03 -080091struct io_apic {
92 unsigned int index;
93 unsigned int unused[3];
94 unsigned int data;
95};
96
97static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
98{
99 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
100 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
101}
102
103static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
104{
105 struct io_apic __iomem *io_apic = io_apic_base(apic);
106 writel(reg, &io_apic->index);
107 return readl(&io_apic->data);
108}
109
110static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
111{
112 struct io_apic __iomem *io_apic = io_apic_base(apic);
113 writel(reg, &io_apic->index);
114 writel(value, &io_apic->data);
115}
116
117/*
118 * Re-write a value: to be used for read-modify-write
119 * cycles where the read already set up the index register.
120 */
121static inline void io_apic_modify(unsigned int apic, unsigned int value)
122{
123 struct io_apic __iomem *io_apic = io_apic_base(apic);
124 writel(value, &io_apic->data);
125}
126
127/*
128 * Synchronize the IO-APIC and the CPU by doing
129 * a dummy read from the IO-APIC
130 */
131static inline void io_apic_sync(unsigned int apic)
132{
133 struct io_apic __iomem *io_apic = io_apic_base(apic);
134 readl(&io_apic->data);
135}
136
Ashok Raj54d5d422005-09-06 15:16:15 -0700137#define __DO_ACTION(R, ACTION, FINAL) \
138 \
139{ \
140 int pin; \
141 struct irq_pin_list *entry = irq_2_pin + irq; \
142 \
James Cleverdon6004e1b2005-11-05 17:25:53 +0100143 BUG_ON(irq >= NR_IRQS); \
Ashok Raj54d5d422005-09-06 15:16:15 -0700144 for (;;) { \
145 unsigned int reg; \
146 pin = entry->pin; \
147 if (pin == -1) \
148 break; \
149 reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
150 reg ACTION; \
151 io_apic_modify(entry->apic, reg); \
152 if (!entry->next) \
153 break; \
154 entry = irq_2_pin + entry->next; \
155 } \
156 FINAL; \
157}
158
Andi Kleeneea0e112006-09-26 10:52:30 +0200159union entry_union {
160 struct { u32 w1, w2; };
161 struct IO_APIC_route_entry entry;
162};
163
164static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
165{
166 union entry_union eu;
167 unsigned long flags;
168 spin_lock_irqsave(&ioapic_lock, flags);
169 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
170 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
171 spin_unlock_irqrestore(&ioapic_lock, flags);
172 return eu.entry;
173}
174
Linus Torvalds48797eb2006-11-08 10:27:54 -0800175/*
176 * When we write a new IO APIC routing entry, we need to write the high
177 * word first! If the mask bit in the low word is clear, we will enable
178 * the interrupt, and we need to make sure the entry is fully populated
179 * before that happens.
180 */
Andi Kleen516d2832006-12-07 02:14:07 +0100181static void
182__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
183{
184 union entry_union eu;
185 eu.entry = e;
186 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
187 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
188}
189
Andi Kleeneea0e112006-09-26 10:52:30 +0200190static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
191{
192 unsigned long flags;
Andi Kleeneea0e112006-09-26 10:52:30 +0200193 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleen516d2832006-12-07 02:14:07 +0100194 __ioapic_write_entry(apic, pin, e);
Linus Torvalds48797eb2006-11-08 10:27:54 -0800195 spin_unlock_irqrestore(&ioapic_lock, flags);
196}
197
198/*
199 * When we mask an IO APIC routing entry, we need to write the low
200 * word first, in order to set the mask bit before we change the
201 * high bits!
202 */
203static void ioapic_mask_entry(int apic, int pin)
204{
205 unsigned long flags;
206 union entry_union eu = { .entry.mask = 1 };
207
208 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleeneea0e112006-09-26 10:52:30 +0200209 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
210 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
211 spin_unlock_irqrestore(&ioapic_lock, flags);
212}
213
Ashok Raj54d5d422005-09-06 15:16:15 -0700214#ifdef CONFIG_SMP
Eric W. Biederman550f2292006-10-04 02:16:51 -0700215static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
216{
217 int apic, pin;
218 struct irq_pin_list *entry = irq_2_pin + irq;
219
220 BUG_ON(irq >= NR_IRQS);
221 for (;;) {
222 unsigned int reg;
223 apic = entry->apic;
224 pin = entry->pin;
225 if (pin == -1)
226 break;
227 io_apic_write(apic, 0x11 + pin*2, dest);
228 reg = io_apic_read(apic, 0x10 + pin*2);
229 reg &= ~0x000000ff;
230 reg |= vector;
231 io_apic_modify(apic, reg);
232 if (!entry->next)
233 break;
234 entry = irq_2_pin + entry->next;
235 }
236}
237
Ashok Raj54d5d422005-09-06 15:16:15 -0700238static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
239{
240 unsigned long flags;
241 unsigned int dest;
242 cpumask_t tmp;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700243 int vector;
Ashok Raj54d5d422005-09-06 15:16:15 -0700244
245 cpus_and(tmp, mask, cpu_online_map);
246 if (cpus_empty(tmp))
247 tmp = TARGET_CPUS;
248
249 cpus_and(mask, tmp, CPU_MASK_ALL);
250
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600251 vector = assign_irq_vector(irq, mask, &tmp);
Eric W. Biederman550f2292006-10-04 02:16:51 -0700252 if (vector < 0)
253 return;
254
Eric W. Biederman550f2292006-10-04 02:16:51 -0700255 dest = cpu_mask_to_apicid(tmp);
Ashok Raj54d5d422005-09-06 15:16:15 -0700256
257 /*
258 * Only the high 8 bits are valid.
259 */
260 dest = SET_APIC_LOGICAL_ID(dest);
261
262 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600263 __target_IO_APIC_irq(irq, dest, vector);
Eric W. Biederman04b92672006-10-04 02:16:46 -0700264 set_native_irq_info(irq, mask);
Ashok Raj54d5d422005-09-06 15:16:15 -0700265 spin_unlock_irqrestore(&ioapic_lock, flags);
266}
267#endif
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
270 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
271 * shared ISA-space IRQs, so we have to support them. We are super
272 * fast in the common case, and fast for shared ISA-space IRQs.
273 */
274static void add_pin_to_irq(unsigned int irq, int apic, int pin)
275{
276 static int first_free_entry = NR_IRQS;
277 struct irq_pin_list *entry = irq_2_pin + irq;
278
James Cleverdon6004e1b2005-11-05 17:25:53 +0100279 BUG_ON(irq >= NR_IRQS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 while (entry->next)
281 entry = irq_2_pin + entry->next;
282
283 if (entry->pin != -1) {
284 entry->next = first_free_entry;
285 entry = irq_2_pin + entry->next;
286 if (++first_free_entry >= PIN_MAP_SIZE)
James Cleverdon6004e1b2005-11-05 17:25:53 +0100287 panic("io_apic.c: ran out of irq_2_pin entries!");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 entry->apic = apic;
290 entry->pin = pin;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294#define DO_ACTION(name,R,ACTION, FINAL) \
295 \
296 static void name##_IO_APIC_irq (unsigned int irq) \
297 __DO_ACTION(R, ACTION, FINAL)
298
299DO_ACTION( __mask, 0, |= 0x00010000, io_apic_sync(entry->apic) )
300 /* mask = 1 */
301DO_ACTION( __unmask, 0, &= 0xfffeffff, )
302 /* mask = 0 */
303
304static void mask_IO_APIC_irq (unsigned int irq)
305{
306 unsigned long flags;
307
308 spin_lock_irqsave(&ioapic_lock, flags);
309 __mask_IO_APIC_irq(irq);
310 spin_unlock_irqrestore(&ioapic_lock, flags);
311}
312
313static void unmask_IO_APIC_irq (unsigned int irq)
314{
315 unsigned long flags;
316
317 spin_lock_irqsave(&ioapic_lock, flags);
318 __unmask_IO_APIC_irq(irq);
319 spin_unlock_irqrestore(&ioapic_lock, flags);
320}
321
322static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
323{
324 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleeneea0e112006-09-26 10:52:30 +0200327 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (entry.delivery_mode == dest_SMI)
329 return;
330 /*
331 * Disable it in the IO-APIC irq-routing table:
332 */
Linus Torvalds48797eb2006-11-08 10:27:54 -0800333 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336static void clear_IO_APIC (void)
337{
338 int apic, pin;
339
340 for (apic = 0; apic < nr_ioapics; apic++)
341 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
342 clear_IO_APIC_pin(apic, pin);
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345int skip_ioapic_setup;
346int ioapic_force;
347
348/* dummy parsing: see setup.c */
349
350static int __init disable_ioapic_setup(char *str)
351{
352 skip_ioapic_setup = 1;
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200355early_param("noapic", disable_ioapic_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -0800357/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
358static int __init disable_timer_pin_setup(char *arg)
359{
360 disable_timer_pin_1 = 1;
361 return 1;
362}
363__setup("disable_timer_pin_1", disable_timer_pin_setup);
364
365static int __init setup_disable_8254_timer(char *s)
366{
367 timer_over_8254 = -1;
368 return 1;
369}
370static int __init setup_enable_8254_timer(char *s)
371{
372 timer_over_8254 = 2;
373 return 1;
374}
375
376__setup("disable_8254_timer", setup_disable_8254_timer);
377__setup("enable_8254_timer", setup_enable_8254_timer);
378
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*
381 * Find the IRQ entry number of a certain pin.
382 */
383static int find_irq_entry(int apic, int pin, int type)
384{
385 int i;
386
387 for (i = 0; i < mp_irq_entries; i++)
388 if (mp_irqs[i].mpc_irqtype == type &&
389 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
390 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
391 mp_irqs[i].mpc_dstirq == pin)
392 return i;
393
394 return -1;
395}
396
397/*
398 * Find the pin to which IRQ[irq] (ISA) is connected
399 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100400static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 int i;
403
404 for (i = 0; i < mp_irq_entries; i++) {
405 int lbus = mp_irqs[i].mpc_srcbus;
406
Andi Kleen55f05ff2006-09-26 10:52:30 +0200407 if (test_bit(lbus, mp_bus_not_pci) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 (mp_irqs[i].mpc_irqtype == type) &&
409 (mp_irqs[i].mpc_srcbusirq == irq))
410
411 return mp_irqs[i].mpc_dstirq;
412 }
413 return -1;
414}
415
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100416static int __init find_isa_irq_apic(int irq, int type)
417{
418 int i;
419
420 for (i = 0; i < mp_irq_entries; i++) {
421 int lbus = mp_irqs[i].mpc_srcbus;
422
Andi Kleen55f05ff2006-09-26 10:52:30 +0200423 if (test_bit(lbus, mp_bus_not_pci) &&
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100424 (mp_irqs[i].mpc_irqtype == type) &&
425 (mp_irqs[i].mpc_srcbusirq == irq))
426 break;
427 }
428 if (i < mp_irq_entries) {
429 int apic;
430 for(apic = 0; apic < nr_ioapics; apic++) {
431 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
432 return apic;
433 }
434 }
435
436 return -1;
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/*
440 * Find a specific PCI IRQ entry.
441 * Not an __init, possibly needed by modules
442 */
443static int pin_2_irq(int idx, int apic, int pin);
444
445int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
446{
447 int apic, i, best_guess = -1;
448
449 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
450 bus, slot, pin);
451 if (mp_bus_id_to_pci_bus[bus] == -1) {
452 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
453 return -1;
454 }
455 for (i = 0; i < mp_irq_entries; i++) {
456 int lbus = mp_irqs[i].mpc_srcbus;
457
458 for (apic = 0; apic < nr_ioapics; apic++)
459 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
460 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
461 break;
462
Andi Kleen55f05ff2006-09-26 10:52:30 +0200463 if (!test_bit(lbus, mp_bus_not_pci) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 !mp_irqs[i].mpc_irqtype &&
465 (bus == lbus) &&
466 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
467 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
468
469 if (!(apic || IO_APIC_IRQ(irq)))
470 continue;
471
472 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
473 return irq;
474 /*
475 * Use the first all-but-pin matching entry as a
476 * best-guess fuzzy result for broken mptables.
477 */
478 if (best_guess < 0)
479 best_guess = irq;
480 }
481 }
James Cleverdon6004e1b2005-11-05 17:25:53 +0100482 BUG_ON(best_guess >= NR_IRQS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return best_guess;
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/* ISA interrupts are always polarity zero edge triggered,
487 * when listed as conforming in the MP table. */
488
489#define default_ISA_trigger(idx) (0)
490#define default_ISA_polarity(idx) (0)
491
492/* PCI interrupts are always polarity one level triggered,
493 * when listed as conforming in the MP table. */
494
495#define default_PCI_trigger(idx) (1)
496#define default_PCI_polarity(idx) (1)
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static int __init MPBIOS_polarity(int idx)
499{
500 int bus = mp_irqs[idx].mpc_srcbus;
501 int polarity;
502
503 /*
504 * Determine IRQ line polarity (high active or low active):
505 */
506 switch (mp_irqs[idx].mpc_irqflag & 3)
507 {
508 case 0: /* conforms, ie. bus-type dependent polarity */
Andi Kleen55f05ff2006-09-26 10:52:30 +0200509 if (test_bit(bus, mp_bus_not_pci))
510 polarity = default_ISA_polarity(idx);
511 else
512 polarity = default_PCI_polarity(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 case 1: /* high active */
515 {
516 polarity = 0;
517 break;
518 }
519 case 2: /* reserved */
520 {
521 printk(KERN_WARNING "broken BIOS!!\n");
522 polarity = 1;
523 break;
524 }
525 case 3: /* low active */
526 {
527 polarity = 1;
528 break;
529 }
530 default: /* invalid */
531 {
532 printk(KERN_WARNING "broken BIOS!!\n");
533 polarity = 1;
534 break;
535 }
536 }
537 return polarity;
538}
539
540static int MPBIOS_trigger(int idx)
541{
542 int bus = mp_irqs[idx].mpc_srcbus;
543 int trigger;
544
545 /*
546 * Determine IRQ trigger mode (edge or level sensitive):
547 */
548 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
549 {
550 case 0: /* conforms, ie. bus-type dependent */
Andi Kleen55f05ff2006-09-26 10:52:30 +0200551 if (test_bit(bus, mp_bus_not_pci))
552 trigger = default_ISA_trigger(idx);
553 else
554 trigger = default_PCI_trigger(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case 1: /* edge */
557 {
558 trigger = 0;
559 break;
560 }
561 case 2: /* reserved */
562 {
563 printk(KERN_WARNING "broken BIOS!!\n");
564 trigger = 1;
565 break;
566 }
567 case 3: /* level */
568 {
569 trigger = 1;
570 break;
571 }
572 default: /* invalid */
573 {
574 printk(KERN_WARNING "broken BIOS!!\n");
575 trigger = 0;
576 break;
577 }
578 }
579 return trigger;
580}
581
582static inline int irq_polarity(int idx)
583{
584 return MPBIOS_polarity(idx);
585}
586
587static inline int irq_trigger(int idx)
588{
589 return MPBIOS_trigger(idx);
590}
591
592static int pin_2_irq(int idx, int apic, int pin)
593{
594 int irq, i;
595 int bus = mp_irqs[idx].mpc_srcbus;
596
597 /*
598 * Debugging check, we are in big trouble if this message pops up!
599 */
600 if (mp_irqs[idx].mpc_dstirq != pin)
601 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
602
Andi Kleen55f05ff2006-09-26 10:52:30 +0200603 if (test_bit(bus, mp_bus_not_pci)) {
604 irq = mp_irqs[idx].mpc_srcbusirq;
605 } else {
606 /*
607 * PCI IRQs are mapped in order
608 */
609 i = irq = 0;
610 while (i < apic)
611 irq += nr_ioapic_registers[i++];
612 irq += pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
James Cleverdon6004e1b2005-11-05 17:25:53 +0100614 BUG_ON(irq >= NR_IRQS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return irq;
616}
617
618static inline int IO_APIC_irq_trigger(int irq)
619{
620 int apic, idx, pin;
621
622 for (apic = 0; apic < nr_ioapics; apic++) {
623 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
624 idx = find_irq_entry(apic,pin,mp_INT);
625 if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
626 return irq_trigger(idx);
627 }
628 }
629 /*
630 * nonexistent IRQs are edge default
631 */
632 return 0;
633}
634
635/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600636static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = {
637 [0] = FIRST_EXTERNAL_VECTOR + 0,
638 [1] = FIRST_EXTERNAL_VECTOR + 1,
639 [2] = FIRST_EXTERNAL_VECTOR + 2,
640 [3] = FIRST_EXTERNAL_VECTOR + 3,
641 [4] = FIRST_EXTERNAL_VECTOR + 4,
642 [5] = FIRST_EXTERNAL_VECTOR + 5,
643 [6] = FIRST_EXTERNAL_VECTOR + 6,
644 [7] = FIRST_EXTERNAL_VECTOR + 7,
645 [8] = FIRST_EXTERNAL_VECTOR + 8,
646 [9] = FIRST_EXTERNAL_VECTOR + 9,
647 [10] = FIRST_EXTERNAL_VECTOR + 10,
648 [11] = FIRST_EXTERNAL_VECTOR + 11,
649 [12] = FIRST_EXTERNAL_VECTOR + 12,
650 [13] = FIRST_EXTERNAL_VECTOR + 13,
651 [14] = FIRST_EXTERNAL_VECTOR + 14,
652 [15] = FIRST_EXTERNAL_VECTOR + 15,
653};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600655static cpumask_t irq_domain[NR_IRQ_VECTORS] __read_mostly = {
656 [0] = CPU_MASK_ALL,
657 [1] = CPU_MASK_ALL,
658 [2] = CPU_MASK_ALL,
659 [3] = CPU_MASK_ALL,
660 [4] = CPU_MASK_ALL,
661 [5] = CPU_MASK_ALL,
662 [6] = CPU_MASK_ALL,
663 [7] = CPU_MASK_ALL,
664 [8] = CPU_MASK_ALL,
665 [9] = CPU_MASK_ALL,
666 [10] = CPU_MASK_ALL,
667 [11] = CPU_MASK_ALL,
668 [12] = CPU_MASK_ALL,
669 [13] = CPU_MASK_ALL,
670 [14] = CPU_MASK_ALL,
671 [15] = CPU_MASK_ALL,
672};
673
674static int __assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Eric W. Biederman550f2292006-10-04 02:16:51 -0700676 /*
677 * NOTE! The local APIC isn't very good at handling
678 * multiple interrupts at the same interrupt level.
679 * As the interrupt level is determined by taking the
680 * vector number and shifting that right by 4, we
681 * want to spread these out a bit so that they don't
682 * all fall in the same interrupt level.
683 *
684 * Also, we've got to be careful not to trash gate
685 * 0x80, because int 0x80 is hm, kind of importantish. ;)
686 */
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200687 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700688 cpumask_t old_mask = CPU_MASK_NONE;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700689 int old_vector = -1;
690 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Eric W. Biederman04b92672006-10-04 02:16:46 -0700692 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200693
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200694 /* Only try and allocate irqs on cpus that are present */
695 cpus_and(mask, mask, cpu_online_map);
696
Eric W. Biedermanb940d222006-10-08 07:43:46 -0600697 if (irq_vector[irq] > 0)
698 old_vector = irq_vector[irq];
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600699 if (old_vector > 0) {
700 cpus_and(*result, irq_domain[irq], mask);
701 if (!cpus_empty(*result))
702 return old_vector;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700703 cpus_and(old_mask, irq_domain[irq], cpu_online_map);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200704 }
Eric W. Biederman550f2292006-10-04 02:16:51 -0700705
706 for_each_cpu_mask(cpu, mask) {
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200707 cpumask_t domain, new_mask;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700708 int new_cpu, old_cpu;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700709 int vector, offset;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600710
711 domain = vector_allocation_domain(cpu);
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200712 cpus_and(new_mask, domain, cpu_online_map);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600713
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200714 vector = current_vector;
715 offset = current_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716next:
Eric W. Biederman550f2292006-10-04 02:16:51 -0700717 vector += 8;
718 if (vector >= FIRST_SYSTEM_VECTOR) {
719 /* If we run out of vectors on large boxen, must share them. */
720 offset = (offset + 1) % 8;
721 vector = FIRST_DEVICE_VECTOR + offset;
722 }
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200723 if (unlikely(current_vector == vector))
Eric W. Biederman550f2292006-10-04 02:16:51 -0700724 continue;
725 if (vector == IA32_SYSCALL_VECTOR)
726 goto next;
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200727 for_each_cpu_mask(new_cpu, new_mask)
Yinghai Lu45edfd12006-10-21 18:37:01 +0200728 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600729 goto next;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700730 /* Found one! */
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200731 current_vector = vector;
732 current_offset = offset;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700733 for_each_cpu_mask(old_cpu, old_mask)
734 per_cpu(vector_irq, old_cpu)[old_vector] = -1;
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200735 for_each_cpu_mask(new_cpu, new_mask)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600736 per_cpu(vector_irq, new_cpu)[vector] = irq;
Eric W. Biedermanb940d222006-10-08 07:43:46 -0600737 irq_vector[irq] = vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600738 irq_domain[irq] = domain;
739 cpus_and(*result, domain, mask);
Eric W. Biederman550f2292006-10-04 02:16:51 -0700740 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Eric W. Biederman550f2292006-10-04 02:16:51 -0700742 return -ENOSPC;
Eric W. Biederman04b92672006-10-04 02:16:46 -0700743}
744
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600745static int assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
Eric W. Biederman04b92672006-10-04 02:16:46 -0700746{
747 int vector;
748 unsigned long flags;
749
750 spin_lock_irqsave(&vector_lock, flags);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600751 vector = __assign_irq_vector(irq, mask, result);
Ingo Molnar26a3c492006-06-26 13:57:16 +0200752 spin_unlock_irqrestore(&vector_lock, flags);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200753 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Yinghai Lu5df02872006-12-07 02:14:05 +0100756static void __clear_irq_vector(int irq)
757{
758 cpumask_t mask;
759 int cpu, vector;
760
761 BUG_ON(!irq_vector[irq]);
762
763 vector = irq_vector[irq];
764 cpus_and(mask, irq_domain[irq], cpu_online_map);
765 for_each_cpu_mask(cpu, mask)
766 per_cpu(vector_irq, cpu)[vector] = -1;
767
768 irq_vector[irq] = 0;
769 irq_domain[irq] = CPU_MASK_NONE;
770}
771
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200772void __setup_vector_irq(int cpu)
773{
774 /* Initialize vector_irq on a new cpu */
775 /* This function must be called with vector_lock held */
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200776 int irq, vector;
777
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200778 /* Mark the inuse vectors */
779 for (irq = 0; irq < NR_IRQ_VECTORS; ++irq) {
780 if (!cpu_isset(cpu, irq_domain[irq]))
781 continue;
782 vector = irq_vector[irq];
783 per_cpu(vector_irq, cpu)[vector] = irq;
784 }
785 /* Mark the free vectors */
786 for (vector = 0; vector < NR_VECTORS; ++vector) {
787 irq = per_cpu(vector_irq, cpu)[vector];
788 if (irq < 0)
789 continue;
790 if (!cpu_isset(cpu, irq_domain[irq]))
791 per_cpu(vector_irq, cpu)[vector] = -1;
792 }
793}
794
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796extern void (*interrupt[NR_IRQS])(void);
Ingo Molnarf29bd1b2006-10-04 02:16:25 -0700797
798static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800#define IOAPIC_AUTO -1
801#define IOAPIC_EDGE 0
802#define IOAPIC_LEVEL 1
803
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700804static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Jan Beulich6ebcc002006-06-26 13:56:46 +0200806 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
807 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -0700808 set_irq_chip_and_handler_name(irq, &ioapic_chip,
809 handle_fasteoi_irq, "fasteoi");
Ingo Molnard7e25f32007-02-16 01:28:24 -0800810 else
Ingo Molnara460e742006-10-17 00:10:03 -0700811 set_irq_chip_and_handler_name(irq, &ioapic_chip,
812 handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
Yinghai Luad892f52006-12-07 02:14:19 +0100814static void __init setup_IO_APIC_irq(int apic, int pin, int idx, int irq)
815{
816 struct IO_APIC_route_entry entry;
817 int vector;
818 unsigned long flags;
819
820
821 /*
822 * add it to the IO-APIC irq-routing table:
823 */
824 memset(&entry,0,sizeof(entry));
825
826 entry.delivery_mode = INT_DELIVERY_MODE;
827 entry.dest_mode = INT_DEST_MODE;
828 entry.mask = 0; /* enable IRQ */
Benjamin Romeree4eff62007-02-13 13:26:25 +0100829 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Yinghai Luad892f52006-12-07 02:14:19 +0100830
831 entry.trigger = irq_trigger(idx);
832 entry.polarity = irq_polarity(idx);
833
834 if (irq_trigger(idx)) {
835 entry.trigger = 1;
836 entry.mask = 1;
Benjamin Romeree4eff62007-02-13 13:26:25 +0100837 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Yinghai Luad892f52006-12-07 02:14:19 +0100838 }
839
840 if (!apic && !IO_APIC_IRQ(irq))
841 return;
842
843 if (IO_APIC_IRQ(irq)) {
844 cpumask_t mask;
845 vector = assign_irq_vector(irq, TARGET_CPUS, &mask);
846 if (vector < 0)
847 return;
848
Benjamin Romeree4eff62007-02-13 13:26:25 +0100849 entry.dest = cpu_mask_to_apicid(mask);
Yinghai Luad892f52006-12-07 02:14:19 +0100850 entry.vector = vector;
851
852 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
853 if (!apic && (irq < 16))
854 disable_8259A_irq(irq);
855 }
856
857 ioapic_write_entry(apic, pin, entry);
858
859 spin_lock_irqsave(&ioapic_lock, flags);
860 set_native_irq_info(irq, TARGET_CPUS);
861 spin_unlock_irqrestore(&ioapic_lock, flags);
862
863}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865static void __init setup_IO_APIC_irqs(void)
866{
Yinghai Luad892f52006-12-07 02:14:19 +0100867 int apic, pin, idx, irq, first_notcon = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
870
871 for (apic = 0; apic < nr_ioapics; apic++) {
872 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 idx = find_irq_entry(apic,pin,mp_INT);
875 if (idx == -1) {
876 if (first_notcon) {
877 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
878 first_notcon = 0;
879 } else
880 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
881 continue;
882 }
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 irq = pin_2_irq(idx, apic, pin);
885 add_pin_to_irq(irq, apic, pin);
886
Yinghai Luad892f52006-12-07 02:14:19 +0100887 setup_IO_APIC_irq(apic, pin, idx, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890 }
891
892 if (!first_notcon)
893 apic_printk(APIC_VERBOSE," not connected.\n");
894}
895
896/*
897 * Set up the 8259A-master output pin as broadcast to all
898 * CPUs.
899 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100900static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct IO_APIC_route_entry entry;
903 unsigned long flags;
904
905 memset(&entry,0,sizeof(entry));
906
907 disable_8259A_irq(0);
908
909 /* mask LVT0 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100910 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * We use logical delivery to get the timer IRQ
914 * to the first CPU.
915 */
916 entry.dest_mode = INT_DEST_MODE;
917 entry.mask = 0; /* unmask IRQ now */
Benjamin Romeree4eff62007-02-13 13:26:25 +0100918 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 entry.delivery_mode = INT_DELIVERY_MODE;
920 entry.polarity = 0;
921 entry.trigger = 0;
922 entry.vector = vector;
923
924 /*
925 * The timer IRQ doesn't have to know that behind the
926 * scene we have a 8259A-master in AEOI mode ...
927 */
Ingo Molnara460e742006-10-17 00:10:03 -0700928 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /*
931 * Add it to the IO-APIC irq-routing table:
932 */
933 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100934 io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
935 io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 spin_unlock_irqrestore(&ioapic_lock, flags);
937
938 enable_8259A_irq(0);
939}
940
941void __init UNEXPECTED_IO_APIC(void)
942{
943}
944
945void __apicdebuginit print_IO_APIC(void)
946{
947 int apic, i;
948 union IO_APIC_reg_00 reg_00;
949 union IO_APIC_reg_01 reg_01;
950 union IO_APIC_reg_02 reg_02;
951 unsigned long flags;
952
953 if (apic_verbosity == APIC_QUIET)
954 return;
955
956 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
957 for (i = 0; i < nr_ioapics; i++)
958 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
959 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
960
961 /*
962 * We are a bit conservative about what we expect. We have to
963 * know about every hardware change ASAP.
964 */
965 printk(KERN_INFO "testing the IO APIC.......................\n");
966
967 for (apic = 0; apic < nr_ioapics; apic++) {
968
969 spin_lock_irqsave(&ioapic_lock, flags);
970 reg_00.raw = io_apic_read(apic, 0);
971 reg_01.raw = io_apic_read(apic, 1);
972 if (reg_01.bits.version >= 0x10)
973 reg_02.raw = io_apic_read(apic, 2);
974 spin_unlock_irqrestore(&ioapic_lock, flags);
975
976 printk("\n");
977 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
978 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
979 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
980 if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
981 UNEXPECTED_IO_APIC();
982
983 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
984 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
985 if ( (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
986 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
987 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
988 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
989 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
990 (reg_01.bits.entries != 0x2E) &&
991 (reg_01.bits.entries != 0x3F) &&
992 (reg_01.bits.entries != 0x03)
993 )
994 UNEXPECTED_IO_APIC();
995
996 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
997 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
998 if ( (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
999 (reg_01.bits.version != 0x02) && /* 82801BA IO-APICs (ICH2) */
1000 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
1001 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
1002 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
1003 (reg_01.bits.version != 0x20) /* Intel P64H (82806 AA) */
1004 )
1005 UNEXPECTED_IO_APIC();
1006 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
1007 UNEXPECTED_IO_APIC();
1008
1009 if (reg_01.bits.version >= 0x10) {
1010 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1011 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1012 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
1013 UNEXPECTED_IO_APIC();
1014 }
1015
1016 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1017
Benjamin Romeree4eff62007-02-13 13:26:25 +01001018 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1019 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 for (i = 0; i <= reg_01.bits.entries; i++) {
1022 struct IO_APIC_route_entry entry;
1023
Andi Kleeneea0e112006-09-26 10:52:30 +02001024 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Benjamin Romeree4eff62007-02-13 13:26:25 +01001026 printk(KERN_DEBUG " %02x %03X ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 i,
Benjamin Romeree4eff62007-02-13 13:26:25 +01001028 entry.dest
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 );
1030
1031 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1032 entry.mask,
1033 entry.trigger,
1034 entry.irr,
1035 entry.polarity,
1036 entry.delivery_status,
1037 entry.dest_mode,
1038 entry.delivery_mode,
1039 entry.vector
1040 );
1041 }
1042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1044 for (i = 0; i < NR_IRQS; i++) {
1045 struct irq_pin_list *entry = irq_2_pin + i;
1046 if (entry->pin < 0)
1047 continue;
Eric W. Biederman04b92672006-10-04 02:16:46 -07001048 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 for (;;) {
1050 printk("-> %d:%d", entry->apic, entry->pin);
1051 if (!entry->next)
1052 break;
1053 entry = irq_2_pin + entry->next;
1054 }
1055 printk("\n");
1056 }
1057
1058 printk(KERN_INFO ".................................... done.\n");
1059
1060 return;
1061}
1062
1063#if 0
1064
1065static __apicdebuginit void print_APIC_bitfield (int base)
1066{
1067 unsigned int v;
1068 int i, j;
1069
1070 if (apic_verbosity == APIC_QUIET)
1071 return;
1072
1073 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1074 for (i = 0; i < 8; i++) {
1075 v = apic_read(base + i*0x10);
1076 for (j = 0; j < 32; j++) {
1077 if (v & (1<<j))
1078 printk("1");
1079 else
1080 printk("0");
1081 }
1082 printk("\n");
1083 }
1084}
1085
1086void __apicdebuginit print_local_APIC(void * dummy)
1087{
1088 unsigned int v, ver, maxlvt;
1089
1090 if (apic_verbosity == APIC_QUIET)
1091 return;
1092
1093 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1094 smp_processor_id(), hard_smp_processor_id());
1095 v = apic_read(APIC_ID);
1096 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(v));
1097 v = apic_read(APIC_LVR);
1098 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1099 ver = GET_APIC_VERSION(v);
1100 maxlvt = get_maxlvt();
1101
1102 v = apic_read(APIC_TASKPRI);
1103 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1104
Andi Kleen5a40b7c2005-09-12 18:49:24 +02001105 v = apic_read(APIC_ARBPRI);
1106 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1107 v & APIC_ARBPRI_MASK);
1108 v = apic_read(APIC_PROCPRI);
1109 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 v = apic_read(APIC_EOI);
1112 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1113 v = apic_read(APIC_RRR);
1114 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1115 v = apic_read(APIC_LDR);
1116 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1117 v = apic_read(APIC_DFR);
1118 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1119 v = apic_read(APIC_SPIV);
1120 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1121
1122 printk(KERN_DEBUG "... APIC ISR field:\n");
1123 print_APIC_bitfield(APIC_ISR);
1124 printk(KERN_DEBUG "... APIC TMR field:\n");
1125 print_APIC_bitfield(APIC_TMR);
1126 printk(KERN_DEBUG "... APIC IRR field:\n");
1127 print_APIC_bitfield(APIC_IRR);
1128
Andi Kleen5a40b7c2005-09-12 18:49:24 +02001129 v = apic_read(APIC_ESR);
1130 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 v = apic_read(APIC_ICR);
1133 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1134 v = apic_read(APIC_ICR2);
1135 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1136
1137 v = apic_read(APIC_LVTT);
1138 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1139
1140 if (maxlvt > 3) { /* PC is LVT#4. */
1141 v = apic_read(APIC_LVTPC);
1142 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1143 }
1144 v = apic_read(APIC_LVT0);
1145 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1146 v = apic_read(APIC_LVT1);
1147 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1148
1149 if (maxlvt > 2) { /* ERR is LVT#3. */
1150 v = apic_read(APIC_LVTERR);
1151 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1152 }
1153
1154 v = apic_read(APIC_TMICT);
1155 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1156 v = apic_read(APIC_TMCCT);
1157 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1158 v = apic_read(APIC_TDCR);
1159 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1160 printk("\n");
1161}
1162
1163void print_all_local_APICs (void)
1164{
1165 on_each_cpu(print_local_APIC, NULL, 1, 1);
1166}
1167
1168void __apicdebuginit print_PIC(void)
1169{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 unsigned int v;
1171 unsigned long flags;
1172
1173 if (apic_verbosity == APIC_QUIET)
1174 return;
1175
1176 printk(KERN_DEBUG "\nprinting PIC contents\n");
1177
1178 spin_lock_irqsave(&i8259A_lock, flags);
1179
1180 v = inb(0xa1) << 8 | inb(0x21);
1181 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1182
1183 v = inb(0xa0) << 8 | inb(0x20);
1184 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1185
1186 outb(0x0b,0xa0);
1187 outb(0x0b,0x20);
1188 v = inb(0xa0) << 8 | inb(0x20);
1189 outb(0x0a,0xa0);
1190 outb(0x0a,0x20);
1191
1192 spin_unlock_irqrestore(&i8259A_lock, flags);
1193
1194 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1195
1196 v = inb(0x4d1) << 8 | inb(0x4d0);
1197 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1198}
1199
1200#endif /* 0 */
1201
1202static void __init enable_IO_APIC(void)
1203{
1204 union IO_APIC_reg_01 reg_01;
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001205 int i8259_apic, i8259_pin;
1206 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 unsigned long flags;
1208
1209 for (i = 0; i < PIN_MAP_SIZE; i++) {
1210 irq_2_pin[i].pin = -1;
1211 irq_2_pin[i].next = 0;
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 /*
1215 * The number of IO-APIC IRQ registers (== #pins):
1216 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001217 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001219 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001221 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1222 }
1223 for(apic = 0; apic < nr_ioapics; apic++) {
1224 int pin;
1225 /* See if any of the pins is in ExtINT mode */
1226 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1227 struct IO_APIC_route_entry entry;
Andi Kleeneea0e112006-09-26 10:52:30 +02001228 entry = ioapic_read_entry(apic, pin);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001229
1230 /* If the interrupt line is enabled and in ExtInt mode
1231 * I have found the pin where the i8259 is connected.
1232 */
1233 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1234 ioapic_i8259.apic = apic;
1235 ioapic_i8259.pin = pin;
1236 goto found_i8259;
1237 }
1238 }
1239 }
1240 found_i8259:
1241 /* Look to see what if the MP table has reported the ExtINT */
1242 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1243 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1244 /* Trust the MP table if nothing is setup in the hardware */
1245 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1246 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1247 ioapic_i8259.pin = i8259_pin;
1248 ioapic_i8259.apic = i8259_apic;
1249 }
1250 /* Complain if the MP table and the hardware disagree */
1251 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1252 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1253 {
1254 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256
1257 /*
1258 * Do not trust the IO-APIC being empty at bootup
1259 */
1260 clear_IO_APIC();
1261}
1262
1263/*
1264 * Not an __init, needed by the reboot code
1265 */
1266void disable_IO_APIC(void)
1267{
1268 /*
1269 * Clear the IO-APIC before rebooting:
1270 */
1271 clear_IO_APIC();
1272
Eric W. Biederman208fb932005-06-25 14:57:45 -07001273 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001274 * If the i8259 is routed through an IOAPIC
Eric W. Biederman208fb932005-06-25 14:57:45 -07001275 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001276 * so legacy interrupts can be delivered.
Eric W. Biederman208fb932005-06-25 14:57:45 -07001277 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001278 if (ioapic_i8259.pin != -1) {
Eric W. Biederman208fb932005-06-25 14:57:45 -07001279 struct IO_APIC_route_entry entry;
Eric W. Biederman208fb932005-06-25 14:57:45 -07001280
1281 memset(&entry, 0, sizeof(entry));
1282 entry.mask = 0; /* Enabled */
1283 entry.trigger = 0; /* Edge */
1284 entry.irr = 0;
1285 entry.polarity = 0; /* High */
1286 entry.delivery_status = 0;
1287 entry.dest_mode = 0; /* Physical */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001288 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman208fb932005-06-25 14:57:45 -07001289 entry.vector = 0;
Benjamin Romeree4eff62007-02-13 13:26:25 +01001290 entry.dest = GET_APIC_ID(apic_read(APIC_ID));
Eric W. Biederman208fb932005-06-25 14:57:45 -07001291
Eric W. Biederman208fb932005-06-25 14:57:45 -07001292 /*
1293 * Add it to the IO-APIC irq-routing table:
1294 */
Andi Kleeneea0e112006-09-26 10:52:30 +02001295 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman208fb932005-06-25 14:57:45 -07001296 }
1297
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001298 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 * There is a nasty bug in some older SMP boards, their mptable lies
1303 * about the timer IRQ. We do the following to work around the situation:
1304 *
1305 * - timer IRQ defaults to IO-APIC IRQ
1306 * - if this function detects that timer IRQs are defunct, then we fall
1307 * back to ISA timer IRQs
1308 */
1309static int __init timer_irq_works(void)
1310{
1311 unsigned long t1 = jiffies;
1312
1313 local_irq_enable();
1314 /* Let ten ticks pass... */
1315 mdelay((10 * 1000) / HZ);
1316
1317 /*
1318 * Expect a few ticks at least, to be sure some possible
1319 * glue logic does not lock up after one or two first
1320 * ticks in a non-ExtINT mode. Also the local APIC
1321 * might have cached one ExtINT interrupt. Finally, at
1322 * least one tick may be lost due to delays.
1323 */
1324
1325 /* jiffies wrap? */
1326 if (jiffies - t1 > 4)
1327 return 1;
1328 return 0;
1329}
1330
1331/*
1332 * In the SMP+IOAPIC case it might happen that there are an unspecified
1333 * number of pending IRQ events unhandled. These cases are very rare,
1334 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1335 * better to do it this way as thus we do not have to be aware of
1336 * 'pending' interrupts in the IRQ path, except at this point.
1337 */
1338/*
1339 * Edge triggered needs to resend any interrupt
1340 * that was delayed but this is now handled in the device
1341 * independent code.
1342 */
1343
1344/*
1345 * Starting up a edge-triggered IO-APIC interrupt is
1346 * nasty - we need to make sure that we get the edge.
1347 * If it is already asserted for some reason, we need
1348 * return 1 to indicate that is was pending.
1349 *
1350 * This is not complete - we should be able to fake
1351 * an edge even if it isn't on the 8259A...
1352 */
1353
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001354static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 int was_pending = 0;
1357 unsigned long flags;
1358
1359 spin_lock_irqsave(&ioapic_lock, flags);
1360 if (irq < 16) {
1361 disable_8259A_irq(irq);
1362 if (i8259A_irq_pending(irq))
1363 was_pending = 1;
1364 }
1365 __unmask_IO_APIC_irq(irq);
1366 spin_unlock_irqrestore(&ioapic_lock, flags);
1367
1368 return was_pending;
1369}
1370
Eric W. Biederman04b92672006-10-04 02:16:46 -07001371static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Eric W. Biederman550f2292006-10-04 02:16:51 -07001373 cpumask_t mask;
1374 unsigned vector;
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001375 unsigned long flags;
Eric W. Biederman550f2292006-10-04 02:16:51 -07001376
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001377 spin_lock_irqsave(&vector_lock, flags);
Eric W. Biederman550f2292006-10-04 02:16:51 -07001378 vector = irq_vector[irq];
1379 cpus_clear(mask);
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001380 cpu_set(first_cpu(irq_domain[irq]), mask);
Eric W. Biederman550f2292006-10-04 02:16:51 -07001381
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001382 send_IPI_mask(mask, vector);
1383 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001384
1385 return 1;
1386}
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388/*
1389 * Level and edge triggered IO-APIC interrupts need different handling,
1390 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
1391 * handled with the level-triggered descriptor, but that one has slightly
1392 * more overhead. Level-triggered interrupts cannot be handled with the
1393 * edge-triggered handler, without risking IRQ storms and other ugly
1394 * races.
1395 */
1396
Eric W. Biederman0be66522006-10-04 02:16:30 -07001397static void ack_apic_edge(unsigned int irq)
1398{
1399 move_native_irq(irq);
1400 ack_APIC_irq();
1401}
1402
1403static void ack_apic_level(unsigned int irq)
1404{
1405 int do_unmask_irq = 0;
1406
1407#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
1408 /* If we are moving the irq we need to mask it */
1409 if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
1410 do_unmask_irq = 1;
1411 mask_IO_APIC_irq(irq);
1412 }
1413#endif
1414
1415 /*
1416 * We must acknowledge the irq before we move it or the acknowledge will
1417 * not propogate properly.
1418 */
1419 ack_APIC_irq();
1420
1421 /* Now we can move and renable the irq */
1422 move_masked_irq(irq);
1423 if (unlikely(do_unmask_irq))
1424 unmask_IO_APIC_irq(irq);
1425}
1426
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001427static struct irq_chip ioapic_chip __read_mostly = {
1428 .name = "IO-APIC",
Eric W. Biederman04b92672006-10-04 02:16:46 -07001429 .startup = startup_ioapic_irq,
1430 .mask = mask_IO_APIC_irq,
1431 .unmask = unmask_IO_APIC_irq,
Eric W. Biederman0be66522006-10-04 02:16:30 -07001432 .ack = ack_apic_edge,
1433 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07001434#ifdef CONFIG_SMP
Eric W. Biederman04b92672006-10-04 02:16:46 -07001435 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001436#endif
Eric W. Biederman04b92672006-10-04 02:16:46 -07001437 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438};
1439
1440static inline void init_IO_APIC_traps(void)
1441{
1442 int irq;
1443
1444 /*
1445 * NOTE! The local APIC isn't very good at handling
1446 * multiple interrupts at the same interrupt level.
1447 * As the interrupt level is determined by taking the
1448 * vector number and shifting that right by 4, we
1449 * want to spread these out a bit so that they don't
1450 * all fall in the same interrupt level.
1451 *
1452 * Also, we've got to be careful not to trash gate
1453 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1454 */
1455 for (irq = 0; irq < NR_IRQS ; irq++) {
1456 int tmp = irq;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001457 if (IO_APIC_IRQ(tmp) && !irq_vector[tmp]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * Hmm.. We don't have an entry for this,
1460 * so default to an old-fashioned 8259
1461 * interrupt if we can..
1462 */
1463 if (irq < 16)
1464 make_8259A_irq(irq);
1465 else
1466 /* Strange. Oh, well.. */
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001467 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469 }
1470}
1471
1472static void enable_lapic_irq (unsigned int irq)
1473{
1474 unsigned long v;
1475
1476 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001477 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480static void disable_lapic_irq (unsigned int irq)
1481{
1482 unsigned long v;
1483
1484 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001485 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
1488static void ack_lapic_irq (unsigned int irq)
1489{
1490 ack_APIC_irq();
1491}
1492
1493static void end_lapic_irq (unsigned int i) { /* nothing */ }
1494
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -07001495static struct hw_interrupt_type lapic_irq_type __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 .typename = "local-APIC-edge",
1497 .startup = NULL, /* startup_irq() not used for IRQ0 */
1498 .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
1499 .enable = enable_lapic_irq,
1500 .disable = disable_lapic_irq,
1501 .ack = ack_lapic_irq,
1502 .end = end_lapic_irq,
1503};
1504
1505static void setup_nmi (void)
1506{
1507 /*
1508 * Dirty trick to enable the NMI watchdog ...
1509 * We put the 8259A master into AEOI mode and
1510 * unmask on all local APICs LVT0 as NMI.
1511 *
1512 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
1513 * is from Maciej W. Rozycki - so we do not have to EOI from
1514 * the NMI handler or the timer interrupt.
1515 */
1516 printk(KERN_INFO "activating NMI Watchdog ...");
1517
1518 enable_NMI_through_LVT0(NULL);
1519
1520 printk(" done.\n");
1521}
1522
1523/*
1524 * This looks a bit hackish but it's about the only one way of sending
1525 * a few INTA cycles to 8259As and any associated glue logic. ICR does
1526 * not support the ExtINT mode, unfortunately. We need to send these
1527 * cycles as some i82489DX-based boards have glue logic that keeps the
1528 * 8259A interrupt line asserted until INTA. --macro
1529 */
1530static inline void unlock_ExtINT_logic(void)
1531{
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001532 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 struct IO_APIC_route_entry entry0, entry1;
1534 unsigned char save_control, save_freq_select;
1535 unsigned long flags;
1536
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001537 pin = find_isa_irq_pin(8, mp_INT);
1538 apic = find_isa_irq_apic(8, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (pin == -1)
1540 return;
1541
1542 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001543 *(((int *)&entry0) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
1544 *(((int *)&entry0) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001546 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 memset(&entry1, 0, sizeof(entry1));
1549
1550 entry1.dest_mode = 0; /* physical delivery */
1551 entry1.mask = 0; /* unmask IRQ now */
Benjamin Romeree4eff62007-02-13 13:26:25 +01001552 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 entry1.delivery_mode = dest_ExtINT;
1554 entry1.polarity = entry0.polarity;
1555 entry1.trigger = 0;
1556 entry1.vector = 0;
1557
1558 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001559 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
1560 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 spin_unlock_irqrestore(&ioapic_lock, flags);
1562
1563 save_control = CMOS_READ(RTC_CONTROL);
1564 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
1565 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
1566 RTC_FREQ_SELECT);
1567 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
1568
1569 i = 100;
1570 while (i-- > 0) {
1571 mdelay(10);
1572 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
1573 i -= 10;
1574 }
1575
1576 CMOS_WRITE(save_control, RTC_CONTROL);
1577 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001578 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001581 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
1582 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 spin_unlock_irqrestore(&ioapic_lock, flags);
1584}
1585
1586/*
1587 * This code may look a bit paranoid, but it's supposed to cooperate with
1588 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
1589 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
1590 * fanatically on his truly buggy board.
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001591 *
1592 * FIXME: really need to revamp this for modern platforms only.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 */
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001594static inline void check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001596 int apic1, pin1, apic2, pin2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001598 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /*
1601 * get/set the timer IRQ vector:
1602 */
1603 disable_8259A_irq(0);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001604 vector = assign_irq_vector(0, TARGET_CPUS, &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /*
1607 * Subtle, code in do_timer_interrupt() expects an AEOI
1608 * mode for the 8259A whenever interrupts are routed
1609 * through I/O APICs. Also IRQ0 has to be enabled in
1610 * the 8259A which implies the virtual wire has to be
1611 * disabled in the local APIC.
1612 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001613 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 init_8259A(1);
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001615 if (timer_over_8254 > 0)
1616 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001618 pin1 = find_isa_irq_pin(0, mp_INT);
1619 apic1 = find_isa_irq_apic(0, mp_INT);
1620 pin2 = ioapic_i8259.pin;
1621 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001623 apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
1624 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001626 if (pin1 != -1) {
1627 /*
1628 * Ok, does IRQ0 through the IOAPIC work?
1629 */
1630 unmask_IO_APIC_irq(0);
1631 if (!no_timer_check && timer_irq_works()) {
1632 nmi_watchdog_default();
1633 if (nmi_watchdog == NMI_IO_APIC) {
1634 disable_8259A_irq(0);
1635 setup_nmi();
1636 enable_8259A_irq(0);
1637 }
1638 if (disable_timer_pin_1 > 0)
1639 clear_IO_APIC_pin(0, pin1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return;
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001641 }
1642 clear_IO_APIC_pin(apic1, pin1);
1643 apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: 8254 timer not "
1644 "connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Andi Kleenb0268722006-12-07 02:14:06 +01001646
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001647 apic_printk(APIC_VERBOSE,KERN_INFO "...trying to set up timer (IRQ0) "
1648 "through the 8259A ... ");
1649 if (pin2 != -1) {
1650 apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
1651 apic2, pin2);
1652 /*
1653 * legacy devices should be connected to IO APIC #0
1654 */
1655 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
1656 if (timer_irq_works()) {
1657 apic_printk(APIC_VERBOSE," works.\n");
1658 nmi_watchdog_default();
1659 if (nmi_watchdog == NMI_IO_APIC) {
1660 setup_nmi();
1661 }
1662 return;
1663 }
1664 /*
1665 * Cleanup, just in case ...
1666 */
1667 clear_IO_APIC_pin(apic2, pin2);
1668 }
1669 apic_printk(APIC_VERBOSE," failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Chris McDermott1f992152006-02-26 04:18:40 +01001671 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
1673 nmi_watchdog = 0;
1674 }
1675
1676 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
1677
1678 disable_8259A_irq(0);
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001679 irq_desc[0].chip = &lapic_irq_type;
Andi Kleen11a8e772006-01-11 22:46:51 +01001680 apic_write(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 enable_8259A_irq(0);
1682
1683 if (timer_irq_works()) {
Chuck Ebbert5b922cd2006-03-25 16:30:55 +01001684 apic_printk(APIC_VERBOSE," works.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return;
1686 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001687 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 apic_printk(APIC_VERBOSE," failed.\n");
1689
1690 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
1691
1692 init_8259A(0);
1693 make_8259A_irq(0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001694 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 unlock_ExtINT_logic();
1697
1698 if (timer_irq_works()) {
1699 apic_printk(APIC_VERBOSE," works.\n");
1700 return;
1701 }
1702 apic_printk(APIC_VERBOSE," failed :(.\n");
1703 panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
1704}
1705
Andi Kleen14d98ca2005-05-20 14:27:59 -07001706static int __init notimercheck(char *s)
1707{
1708 no_timer_check = 1;
1709 return 1;
1710}
1711__setup("no_timer_check", notimercheck);
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713/*
1714 *
1715 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
1716 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
1717 * Linux doesn't really care, as it's not actually used
1718 * for any interrupt handling anyway.
1719 */
1720#define PIC_IRQS (1<<2)
1721
1722void __init setup_IO_APIC(void)
1723{
1724 enable_IO_APIC();
1725
1726 if (acpi_ioapic)
1727 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
1728 else
1729 io_apic_irqs = ~PIC_IRQS;
1730
1731 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 sync_Arb_IDs();
1734 setup_IO_APIC_irqs();
1735 init_IO_APIC_traps();
1736 check_timer();
1737 if (!acpi_ioapic)
1738 print_IO_APIC();
1739}
1740
1741struct sysfs_ioapic_data {
1742 struct sys_device dev;
1743 struct IO_APIC_route_entry entry[0];
1744};
1745static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1746
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001747static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 struct IO_APIC_route_entry *entry;
1750 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int i;
1752
1753 data = container_of(dev, struct sysfs_ioapic_data, dev);
1754 entry = data->entry;
Andi Kleeneea0e112006-09-26 10:52:30 +02001755 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
1756 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 return 0;
1759}
1760
1761static int ioapic_resume(struct sys_device *dev)
1762{
1763 struct IO_APIC_route_entry *entry;
1764 struct sysfs_ioapic_data *data;
1765 unsigned long flags;
1766 union IO_APIC_reg_00 reg_00;
1767 int i;
1768
1769 data = container_of(dev, struct sysfs_ioapic_data, dev);
1770 entry = data->entry;
1771
1772 spin_lock_irqsave(&ioapic_lock, flags);
1773 reg_00.raw = io_apic_read(dev->id, 0);
1774 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
1775 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
1776 io_apic_write(dev->id, 0, reg_00.raw);
1777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleeneea0e112006-09-26 10:52:30 +02001779 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
1780 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 return 0;
1783}
1784
1785static struct sysdev_class ioapic_sysdev_class = {
1786 set_kset_name("ioapic"),
1787 .suspend = ioapic_suspend,
1788 .resume = ioapic_resume,
1789};
1790
1791static int __init ioapic_init_sysfs(void)
1792{
1793 struct sys_device * dev;
1794 int i, size, error = 0;
1795
1796 error = sysdev_class_register(&ioapic_sysdev_class);
1797 if (error)
1798 return error;
1799
1800 for (i = 0; i < nr_ioapics; i++ ) {
1801 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1802 * sizeof(struct IO_APIC_route_entry);
1803 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
1804 if (!mp_ioapic_data[i]) {
1805 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1806 continue;
1807 }
1808 memset(mp_ioapic_data[i], 0, size);
1809 dev = &mp_ioapic_data[i]->dev;
1810 dev->id = i;
1811 dev->cls = &ioapic_sysdev_class;
1812 error = sysdev_register(dev);
1813 if (error) {
1814 kfree(mp_ioapic_data[i]);
1815 mp_ioapic_data[i] = NULL;
1816 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1817 continue;
1818 }
1819 }
1820
1821 return 0;
1822}
1823
1824device_initcall(ioapic_init_sysfs);
1825
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001826/*
Eric W. Biederman04b92672006-10-04 02:16:46 -07001827 * Dynamic irq allocate and deallocation
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001828 */
1829int create_irq(void)
1830{
Eric W. Biederman04b92672006-10-04 02:16:46 -07001831 /* Allocate an unused irq */
1832 int irq;
1833 int new;
1834 int vector = 0;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001835 unsigned long flags;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001836 cpumask_t mask;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001837
Eric W. Biederman04b92672006-10-04 02:16:46 -07001838 irq = -ENOSPC;
1839 spin_lock_irqsave(&vector_lock, flags);
1840 for (new = (NR_IRQS - 1); new >= 0; new--) {
1841 if (platform_legacy_irq(new))
1842 continue;
1843 if (irq_vector[new] != 0)
1844 continue;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001845 vector = __assign_irq_vector(new, TARGET_CPUS, &mask);
Eric W. Biederman04b92672006-10-04 02:16:46 -07001846 if (likely(vector > 0))
1847 irq = new;
1848 break;
1849 }
1850 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001851
Eric W. Biederman04b92672006-10-04 02:16:46 -07001852 if (irq >= 0) {
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001853 dynamic_irq_init(irq);
1854 }
1855 return irq;
1856}
1857
1858void destroy_irq(unsigned int irq)
1859{
1860 unsigned long flags;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001861
1862 dynamic_irq_cleanup(irq);
1863
1864 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu5df02872006-12-07 02:14:05 +01001865 __clear_irq_vector(irq);
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001866 spin_unlock_irqrestore(&vector_lock, flags);
1867}
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001868
Eric W. Biederman589e3672006-10-04 02:16:42 -07001869/*
1870 * MSI mesage composition
1871 */
1872#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001873static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman589e3672006-10-04 02:16:42 -07001874{
Eric W. Biederman589e3672006-10-04 02:16:42 -07001875 int vector;
1876 unsigned dest;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001877 cpumask_t tmp;
Eric W. Biederman589e3672006-10-04 02:16:42 -07001878
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001879 vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
Eric W. Biederman589e3672006-10-04 02:16:42 -07001880 if (vector >= 0) {
Eric W. Biederman589e3672006-10-04 02:16:42 -07001881 dest = cpu_mask_to_apicid(tmp);
1882
1883 msg->address_hi = MSI_ADDR_BASE_HI;
1884 msg->address_lo =
1885 MSI_ADDR_BASE_LO |
1886 ((INT_DEST_MODE == 0) ?
1887 MSI_ADDR_DEST_MODE_PHYSICAL:
1888 MSI_ADDR_DEST_MODE_LOGICAL) |
1889 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1890 MSI_ADDR_REDIRECTION_CPU:
1891 MSI_ADDR_REDIRECTION_LOWPRI) |
1892 MSI_ADDR_DEST_ID(dest);
1893
1894 msg->data =
1895 MSI_DATA_TRIGGER_EDGE |
1896 MSI_DATA_LEVEL_ASSERT |
1897 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1898 MSI_DATA_DELIVERY_FIXED:
1899 MSI_DATA_DELIVERY_LOWPRI) |
1900 MSI_DATA_VECTOR(vector);
1901 }
1902 return vector;
1903}
1904
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001905#ifdef CONFIG_SMP
1906static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
1907{
1908 struct msi_msg msg;
1909 unsigned int dest;
1910 cpumask_t tmp;
1911 int vector;
1912
1913 cpus_and(tmp, mask, cpu_online_map);
1914 if (cpus_empty(tmp))
1915 tmp = TARGET_CPUS;
1916
1917 cpus_and(mask, tmp, CPU_MASK_ALL);
1918
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001919 vector = assign_irq_vector(irq, mask, &tmp);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001920 if (vector < 0)
1921 return;
1922
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001923 dest = cpu_mask_to_apicid(tmp);
1924
1925 read_msi_msg(irq, &msg);
1926
1927 msg.data &= ~MSI_DATA_VECTOR_MASK;
1928 msg.data |= MSI_DATA_VECTOR(vector);
1929 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
1930 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
1931
1932 write_msi_msg(irq, &msg);
1933 set_native_irq_info(irq, mask);
1934}
1935#endif /* CONFIG_SMP */
1936
1937/*
1938 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
1939 * which implement the MSI or MSI-X Capability Structure.
1940 */
1941static struct irq_chip msi_chip = {
1942 .name = "PCI-MSI",
1943 .unmask = unmask_msi_irq,
1944 .mask = mask_msi_irq,
1945 .ack = ack_apic_edge,
1946#ifdef CONFIG_SMP
1947 .set_affinity = set_msi_irq_affinity,
1948#endif
1949 .retrigger = ioapic_retrigger_irq,
1950};
1951
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001952int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001953{
1954 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001955 int irq, ret;
1956 irq = create_irq();
1957 if (irq < 0)
1958 return irq;
1959
1960 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001961 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001962 if (ret < 0) {
1963 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001964 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001965 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001966
1967 write_msi_msg(irq, &msg);
1968
Ingo Molnara460e742006-10-17 00:10:03 -07001969 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001970
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001971 return irq;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001972}
1973
1974void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman589e3672006-10-04 02:16:42 -07001975{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001976 destroy_irq(irq);
Eric W. Biederman589e3672006-10-04 02:16:42 -07001977}
1978
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001979#endif /* CONFIG_PCI_MSI */
Eric W. Biederman589e3672006-10-04 02:16:42 -07001980
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001981/*
1982 * Hypertransport interrupt support
1983 */
1984#ifdef CONFIG_HT_IRQ
1985
1986#ifdef CONFIG_SMP
1987
1988static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
1989{
Eric W. Biedermanec683072006-11-08 17:44:57 -08001990 struct ht_irq_msg msg;
1991 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001992
Eric W. Biedermanec683072006-11-08 17:44:57 -08001993 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
1994 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001995
Eric W. Biedermanec683072006-11-08 17:44:57 -08001996 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
1997 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001998
Eric W. Biedermanec683072006-11-08 17:44:57 -08001999 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002000}
2001
2002static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2003{
2004 unsigned int dest;
2005 cpumask_t tmp;
2006 int vector;
2007
2008 cpus_and(tmp, mask, cpu_online_map);
2009 if (cpus_empty(tmp))
2010 tmp = TARGET_CPUS;
2011
2012 cpus_and(mask, tmp, CPU_MASK_ALL);
2013
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002014 vector = assign_irq_vector(irq, mask, &tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002015 if (vector < 0)
2016 return;
2017
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002018 dest = cpu_mask_to_apicid(tmp);
2019
Eric W. Biedermanec683072006-11-08 17:44:57 -08002020 target_ht_irq(irq, dest, vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002021 set_native_irq_info(irq, mask);
2022}
2023#endif
2024
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002025static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002026 .name = "PCI-HT",
2027 .mask = mask_ht_irq,
2028 .unmask = unmask_ht_irq,
2029 .ack = ack_apic_edge,
2030#ifdef CONFIG_SMP
2031 .set_affinity = set_ht_irq_affinity,
2032#endif
2033 .retrigger = ioapic_retrigger_irq,
2034};
2035
2036int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2037{
2038 int vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002039 cpumask_t tmp;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002040
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002041 vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002042 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002043 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002044 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002045
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002046 dest = cpu_mask_to_apicid(tmp);
2047
Eric W. Biedermanec683072006-11-08 17:44:57 -08002048 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002049
Eric W. Biedermanec683072006-11-08 17:44:57 -08002050 msg.address_lo =
2051 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002052 HT_IRQ_LOW_DEST_ID(dest) |
2053 HT_IRQ_LOW_VECTOR(vector) |
2054 ((INT_DEST_MODE == 0) ?
2055 HT_IRQ_LOW_DM_PHYSICAL :
2056 HT_IRQ_LOW_DM_LOGICAL) |
2057 HT_IRQ_LOW_RQEOI_EDGE |
2058 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2059 HT_IRQ_LOW_MT_FIXED :
Eric W. Biedermanec683072006-11-08 17:44:57 -08002060 HT_IRQ_LOW_MT_ARBITRATED) |
2061 HT_IRQ_LOW_IRQ_MASKED;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002062
Eric W. Biedermanec683072006-11-08 17:44:57 -08002063 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002064
Ingo Molnara460e742006-10-17 00:10:03 -07002065 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2066 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002067 }
2068 return vector;
2069}
2070#endif /* CONFIG_HT_IRQ */
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072/* --------------------------------------------------------------------------
2073 ACPI-based IOAPIC Configuration
2074 -------------------------------------------------------------------------- */
2075
Len Brown888ba6c2005-08-24 12:07:20 -04002076#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078#define IO_APIC_MAX_ID 0xFE
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080int __init io_apic_get_redir_entries (int ioapic)
2081{
2082 union IO_APIC_reg_01 reg_01;
2083 unsigned long flags;
2084
2085 spin_lock_irqsave(&ioapic_lock, flags);
2086 reg_01.raw = io_apic_read(ioapic, 1);
2087 spin_unlock_irqrestore(&ioapic_lock, flags);
2088
2089 return reg_01.bits.entries;
2090}
2091
2092
Bob Moore50eca3e2005-09-30 19:03:00 -04002093int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 struct IO_APIC_route_entry entry;
2096 unsigned long flags;
Eric W. Biederman550f2292006-10-04 02:16:51 -07002097 int vector;
2098 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 if (!IO_APIC_IRQ(irq)) {
2101 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2102 ioapic);
2103 return -EINVAL;
2104 }
2105
Eric W. Biederman550f2292006-10-04 02:16:51 -07002106 /*
2107 * IRQs < 16 are already in the irq_2_pin[] map
2108 */
2109 if (irq >= 16)
2110 add_pin_to_irq(irq, ioapic, pin);
2111
2112
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002113 vector = assign_irq_vector(irq, TARGET_CPUS, &mask);
Eric W. Biederman550f2292006-10-04 02:16:51 -07002114 if (vector < 0)
2115 return vector;
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /*
2118 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2119 * Note that we mask (disable) IRQs now -- these get enabled when the
2120 * corresponding device driver registers for this IRQ.
2121 */
2122
2123 memset(&entry,0,sizeof(entry));
2124
2125 entry.delivery_mode = INT_DELIVERY_MODE;
2126 entry.dest_mode = INT_DEST_MODE;
Benjamin Romeree4eff62007-02-13 13:26:25 +01002127 entry.dest = cpu_mask_to_apicid(mask);
Bob Moore50eca3e2005-09-30 19:03:00 -04002128 entry.trigger = triggering;
2129 entry.polarity = polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 entry.mask = 1; /* Disabled (masked) */
Eric W. Biederman550f2292006-10-04 02:16:51 -07002131 entry.vector = vector & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 apic_printk(APIC_VERBOSE,KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry (%d-%d -> 0x%x -> "
2134 "IRQ %d Mode:%i Active:%i)\n", ioapic,
2135 mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
Bob Moore50eca3e2005-09-30 19:03:00 -04002136 triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Bob Moore50eca3e2005-09-30 19:03:00 -04002138 ioapic_register_intr(irq, entry.vector, triggering);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 if (!ioapic && (irq < 16))
2141 disable_8259A_irq(irq);
2142
Andi Kleeneea0e112006-09-26 10:52:30 +02002143 ioapic_write_entry(ioapic, pin, entry);
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman04b92672006-10-04 02:16:46 -07002146 set_native_irq_info(irq, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 spin_unlock_irqrestore(&ioapic_lock, flags);
2148
2149 return 0;
2150}
2151
Len Brown888ba6c2005-08-24 12:07:20 -04002152#endif /* CONFIG_ACPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154
2155/*
2156 * This function currently is only a helper for the i386 smp boot process where
2157 * we need to reprogram the ioredtbls to cater for the cpus which have come online
2158 * so mask in all cases should simply be TARGET_CPUS
2159 */
Ashok Raj54d5d422005-09-06 15:16:15 -07002160#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161void __init setup_ioapic_dest(void)
2162{
2163 int pin, ioapic, irq, irq_entry;
2164
2165 if (skip_ioapic_setup == 1)
2166 return;
2167
2168 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
2169 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
2170 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
2171 if (irq_entry == -1)
2172 continue;
2173 irq = pin_2_irq(irq_entry, ioapic, pin);
Yinghai Luad892f52006-12-07 02:14:19 +01002174
2175 /* setup_IO_APIC_irqs could fail to get vector for some device
2176 * when you have too many devices, because at that time only boot
2177 * cpu is online.
2178 */
2179 if(!irq_vector[irq])
2180 setup_IO_APIC_irq(ioapic, pin, irq_entry, irq);
2181 else
2182 set_ioapic_affinity_irq(irq, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
2185 }
2186}
Ashok Raj54d5d422005-09-06 15:16:15 -07002187#endif