blob: e0648380fddeb46b24aacdd9a93173a44633d9b5 [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. Biederman9f0a5ba2007-02-23 04:13:55 -0700264 irq_desc[irq].affinity = 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600620static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = {
621 [0] = FIRST_EXTERNAL_VECTOR + 0,
622 [1] = FIRST_EXTERNAL_VECTOR + 1,
623 [2] = FIRST_EXTERNAL_VECTOR + 2,
624 [3] = FIRST_EXTERNAL_VECTOR + 3,
625 [4] = FIRST_EXTERNAL_VECTOR + 4,
626 [5] = FIRST_EXTERNAL_VECTOR + 5,
627 [6] = FIRST_EXTERNAL_VECTOR + 6,
628 [7] = FIRST_EXTERNAL_VECTOR + 7,
629 [8] = FIRST_EXTERNAL_VECTOR + 8,
630 [9] = FIRST_EXTERNAL_VECTOR + 9,
631 [10] = FIRST_EXTERNAL_VECTOR + 10,
632 [11] = FIRST_EXTERNAL_VECTOR + 11,
633 [12] = FIRST_EXTERNAL_VECTOR + 12,
634 [13] = FIRST_EXTERNAL_VECTOR + 13,
635 [14] = FIRST_EXTERNAL_VECTOR + 14,
636 [15] = FIRST_EXTERNAL_VECTOR + 15,
637};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600639static cpumask_t irq_domain[NR_IRQ_VECTORS] __read_mostly = {
640 [0] = CPU_MASK_ALL,
641 [1] = CPU_MASK_ALL,
642 [2] = CPU_MASK_ALL,
643 [3] = CPU_MASK_ALL,
644 [4] = CPU_MASK_ALL,
645 [5] = CPU_MASK_ALL,
646 [6] = CPU_MASK_ALL,
647 [7] = CPU_MASK_ALL,
648 [8] = CPU_MASK_ALL,
649 [9] = CPU_MASK_ALL,
650 [10] = CPU_MASK_ALL,
651 [11] = CPU_MASK_ALL,
652 [12] = CPU_MASK_ALL,
653 [13] = CPU_MASK_ALL,
654 [14] = CPU_MASK_ALL,
655 [15] = CPU_MASK_ALL,
656};
657
658static int __assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Eric W. Biederman550f2292006-10-04 02:16:51 -0700660 /*
661 * NOTE! The local APIC isn't very good at handling
662 * multiple interrupts at the same interrupt level.
663 * As the interrupt level is determined by taking the
664 * vector number and shifting that right by 4, we
665 * want to spread these out a bit so that they don't
666 * all fall in the same interrupt level.
667 *
668 * Also, we've got to be careful not to trash gate
669 * 0x80, because int 0x80 is hm, kind of importantish. ;)
670 */
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200671 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700672 cpumask_t old_mask = CPU_MASK_NONE;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700673 int old_vector = -1;
674 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Eric W. Biederman04b92672006-10-04 02:16:46 -0700676 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200677
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200678 /* Only try and allocate irqs on cpus that are present */
679 cpus_and(mask, mask, cpu_online_map);
680
Eric W. Biedermanb940d222006-10-08 07:43:46 -0600681 if (irq_vector[irq] > 0)
682 old_vector = irq_vector[irq];
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600683 if (old_vector > 0) {
684 cpus_and(*result, irq_domain[irq], mask);
685 if (!cpus_empty(*result))
686 return old_vector;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700687 cpus_and(old_mask, irq_domain[irq], cpu_online_map);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200688 }
Eric W. Biederman550f2292006-10-04 02:16:51 -0700689
690 for_each_cpu_mask(cpu, mask) {
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200691 cpumask_t domain, new_mask;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700692 int new_cpu, old_cpu;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700693 int vector, offset;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600694
695 domain = vector_allocation_domain(cpu);
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200696 cpus_and(new_mask, domain, cpu_online_map);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600697
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200698 vector = current_vector;
699 offset = current_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700next:
Eric W. Biederman550f2292006-10-04 02:16:51 -0700701 vector += 8;
702 if (vector >= FIRST_SYSTEM_VECTOR) {
703 /* If we run out of vectors on large boxen, must share them. */
704 offset = (offset + 1) % 8;
705 vector = FIRST_DEVICE_VECTOR + offset;
706 }
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200707 if (unlikely(current_vector == vector))
Eric W. Biederman550f2292006-10-04 02:16:51 -0700708 continue;
709 if (vector == IA32_SYSCALL_VECTOR)
710 goto next;
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200711 for_each_cpu_mask(new_cpu, new_mask)
Yinghai Lu45edfd12006-10-21 18:37:01 +0200712 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600713 goto next;
Eric W. Biederman550f2292006-10-04 02:16:51 -0700714 /* Found one! */
Eric W. Biedermand1752aa2006-10-25 01:00:22 +0200715 current_vector = vector;
716 current_offset = offset;
Eric W. Biedermanfc5d56f2007-02-23 04:11:56 -0700717 for_each_cpu_mask(old_cpu, old_mask)
718 per_cpu(vector_irq, old_cpu)[old_vector] = -1;
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200719 for_each_cpu_mask(new_cpu, new_mask)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600720 per_cpu(vector_irq, new_cpu)[vector] = irq;
Eric W. Biedermanb940d222006-10-08 07:43:46 -0600721 irq_vector[irq] = vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600722 irq_domain[irq] = domain;
723 cpus_and(*result, domain, mask);
Eric W. Biederman550f2292006-10-04 02:16:51 -0700724 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Eric W. Biederman550f2292006-10-04 02:16:51 -0700726 return -ENOSPC;
Eric W. Biederman04b92672006-10-04 02:16:46 -0700727}
728
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600729static int assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
Eric W. Biederman04b92672006-10-04 02:16:46 -0700730{
731 int vector;
732 unsigned long flags;
733
734 spin_lock_irqsave(&vector_lock, flags);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600735 vector = __assign_irq_vector(irq, mask, result);
Ingo Molnar26a3c492006-06-26 13:57:16 +0200736 spin_unlock_irqrestore(&vector_lock, flags);
Jan Beulich0a1ad602006-06-26 13:56:43 +0200737 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Yinghai Lu5df02872006-12-07 02:14:05 +0100740static void __clear_irq_vector(int irq)
741{
742 cpumask_t mask;
743 int cpu, vector;
744
745 BUG_ON(!irq_vector[irq]);
746
747 vector = irq_vector[irq];
748 cpus_and(mask, irq_domain[irq], cpu_online_map);
749 for_each_cpu_mask(cpu, mask)
750 per_cpu(vector_irq, cpu)[vector] = -1;
751
752 irq_vector[irq] = 0;
753 irq_domain[irq] = CPU_MASK_NONE;
754}
755
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200756void __setup_vector_irq(int cpu)
757{
758 /* Initialize vector_irq on a new cpu */
759 /* This function must be called with vector_lock held */
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200760 int irq, vector;
761
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200762 /* Mark the inuse vectors */
763 for (irq = 0; irq < NR_IRQ_VECTORS; ++irq) {
764 if (!cpu_isset(cpu, irq_domain[irq]))
765 continue;
766 vector = irq_vector[irq];
767 per_cpu(vector_irq, cpu)[vector] = irq;
768 }
769 /* Mark the free vectors */
770 for (vector = 0; vector < NR_VECTORS; ++vector) {
771 irq = per_cpu(vector_irq, cpu)[vector];
772 if (irq < 0)
773 continue;
774 if (!cpu_isset(cpu, irq_domain[irq]))
775 per_cpu(vector_irq, cpu)[vector] = -1;
776 }
777}
778
779
Ingo Molnarf29bd1b2006-10-04 02:16:25 -0700780static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric W. Biedermana27bc062007-02-23 04:16:31 -0700782static void ioapic_register_intr(int irq, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700784 if (trigger)
Ingo Molnara460e742006-10-17 00:10:03 -0700785 set_irq_chip_and_handler_name(irq, &ioapic_chip,
786 handle_fasteoi_irq, "fasteoi");
Ingo Molnard7e25f32007-02-16 01:28:24 -0800787 else
Ingo Molnara460e742006-10-17 00:10:03 -0700788 set_irq_chip_and_handler_name(irq, &ioapic_chip,
789 handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700791
792static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
793 int trigger, int polarity)
Yinghai Luad892f52006-12-07 02:14:19 +0100794{
795 struct IO_APIC_route_entry entry;
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700796 cpumask_t mask;
Yinghai Luad892f52006-12-07 02:14:19 +0100797 int vector;
798 unsigned long flags;
799
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700800 if (!IO_APIC_IRQ(irq))
801 return;
802
803 vector = assign_irq_vector(irq, TARGET_CPUS, &mask);
804 if (vector < 0)
805 return;
806
807 apic_printk(APIC_VERBOSE,KERN_DEBUG
808 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
809 "IRQ %d Mode:%i Active:%i)\n",
810 apic, mp_ioapics[apic].mpc_apicid, pin, vector,
811 irq, trigger, polarity);
Yinghai Luad892f52006-12-07 02:14:19 +0100812
813 /*
814 * add it to the IO-APIC irq-routing table:
815 */
816 memset(&entry,0,sizeof(entry));
817
818 entry.delivery_mode = INT_DELIVERY_MODE;
819 entry.dest_mode = INT_DEST_MODE;
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700820 entry.dest = cpu_mask_to_apicid(mask);
Yinghai Luad892f52006-12-07 02:14:19 +0100821 entry.mask = 0; /* enable IRQ */
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700822 entry.trigger = trigger;
823 entry.polarity = polarity;
824 entry.vector = vector;
Yinghai Luad892f52006-12-07 02:14:19 +0100825
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700826 /* Mask level triggered irqs.
827 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
828 */
829 if (trigger)
Yinghai Luad892f52006-12-07 02:14:19 +0100830 entry.mask = 1;
Yinghai Luad892f52006-12-07 02:14:19 +0100831
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700832 ioapic_register_intr(irq, trigger);
833 if (irq < 16)
834 disable_8259A_irq(irq);
Yinghai Luad892f52006-12-07 02:14:19 +0100835
836 ioapic_write_entry(apic, pin, entry);
837
838 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -0700839 irq_desc[irq].affinity = TARGET_CPUS;
Yinghai Luad892f52006-12-07 02:14:19 +0100840 spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Luad892f52006-12-07 02:14:19 +0100841}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843static void __init setup_IO_APIC_irqs(void)
844{
Yinghai Luad892f52006-12-07 02:14:19 +0100845 int apic, pin, idx, irq, first_notcon = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
848
849 for (apic = 0; apic < nr_ioapics; apic++) {
850 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 idx = find_irq_entry(apic,pin,mp_INT);
853 if (idx == -1) {
854 if (first_notcon) {
855 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
856 first_notcon = 0;
857 } else
858 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
859 continue;
860 }
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 irq = pin_2_irq(idx, apic, pin);
863 add_pin_to_irq(irq, apic, pin);
864
Eric W. Biedermana8c8a362007-02-23 04:19:08 -0700865 setup_IO_APIC_irq(apic, pin, irq,
866 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868 }
869
870 if (!first_notcon)
871 apic_printk(APIC_VERBOSE," not connected.\n");
872}
873
874/*
875 * Set up the 8259A-master output pin as broadcast to all
876 * CPUs.
877 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100878static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct IO_APIC_route_entry entry;
881 unsigned long flags;
882
883 memset(&entry,0,sizeof(entry));
884
885 disable_8259A_irq(0);
886
887 /* mask LVT0 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100888 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 /*
891 * We use logical delivery to get the timer IRQ
892 * to the first CPU.
893 */
894 entry.dest_mode = INT_DEST_MODE;
895 entry.mask = 0; /* unmask IRQ now */
Benjamin Romeree4eff62007-02-13 13:26:25 +0100896 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 entry.delivery_mode = INT_DELIVERY_MODE;
898 entry.polarity = 0;
899 entry.trigger = 0;
900 entry.vector = vector;
901
902 /*
903 * The timer IRQ doesn't have to know that behind the
904 * scene we have a 8259A-master in AEOI mode ...
905 */
Ingo Molnara460e742006-10-17 00:10:03 -0700906 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 /*
909 * Add it to the IO-APIC irq-routing table:
910 */
911 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +0100912 io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
913 io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 spin_unlock_irqrestore(&ioapic_lock, flags);
915
916 enable_8259A_irq(0);
917}
918
919void __init UNEXPECTED_IO_APIC(void)
920{
921}
922
923void __apicdebuginit print_IO_APIC(void)
924{
925 int apic, i;
926 union IO_APIC_reg_00 reg_00;
927 union IO_APIC_reg_01 reg_01;
928 union IO_APIC_reg_02 reg_02;
929 unsigned long flags;
930
931 if (apic_verbosity == APIC_QUIET)
932 return;
933
934 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
935 for (i = 0; i < nr_ioapics; i++)
936 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
937 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
938
939 /*
940 * We are a bit conservative about what we expect. We have to
941 * know about every hardware change ASAP.
942 */
943 printk(KERN_INFO "testing the IO APIC.......................\n");
944
945 for (apic = 0; apic < nr_ioapics; apic++) {
946
947 spin_lock_irqsave(&ioapic_lock, flags);
948 reg_00.raw = io_apic_read(apic, 0);
949 reg_01.raw = io_apic_read(apic, 1);
950 if (reg_01.bits.version >= 0x10)
951 reg_02.raw = io_apic_read(apic, 2);
952 spin_unlock_irqrestore(&ioapic_lock, flags);
953
954 printk("\n");
955 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
956 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
957 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
958 if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
959 UNEXPECTED_IO_APIC();
960
961 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
962 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
963 if ( (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
964 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
965 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
966 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
967 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
968 (reg_01.bits.entries != 0x2E) &&
969 (reg_01.bits.entries != 0x3F) &&
970 (reg_01.bits.entries != 0x03)
971 )
972 UNEXPECTED_IO_APIC();
973
974 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
975 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
976 if ( (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
977 (reg_01.bits.version != 0x02) && /* 82801BA IO-APICs (ICH2) */
978 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
979 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
980 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
981 (reg_01.bits.version != 0x20) /* Intel P64H (82806 AA) */
982 )
983 UNEXPECTED_IO_APIC();
984 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
985 UNEXPECTED_IO_APIC();
986
987 if (reg_01.bits.version >= 0x10) {
988 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
989 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
990 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
991 UNEXPECTED_IO_APIC();
992 }
993
994 printk(KERN_DEBUG ".... IRQ redirection table:\n");
995
Benjamin Romeree4eff62007-02-13 13:26:25 +0100996 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
997 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 for (i = 0; i <= reg_01.bits.entries; i++) {
1000 struct IO_APIC_route_entry entry;
1001
Andi Kleeneea0e112006-09-26 10:52:30 +02001002 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Benjamin Romeree4eff62007-02-13 13:26:25 +01001004 printk(KERN_DEBUG " %02x %03X ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 i,
Benjamin Romeree4eff62007-02-13 13:26:25 +01001006 entry.dest
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 );
1008
1009 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1010 entry.mask,
1011 entry.trigger,
1012 entry.irr,
1013 entry.polarity,
1014 entry.delivery_status,
1015 entry.dest_mode,
1016 entry.delivery_mode,
1017 entry.vector
1018 );
1019 }
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1022 for (i = 0; i < NR_IRQS; i++) {
1023 struct irq_pin_list *entry = irq_2_pin + i;
1024 if (entry->pin < 0)
1025 continue;
Eric W. Biederman04b92672006-10-04 02:16:46 -07001026 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 for (;;) {
1028 printk("-> %d:%d", entry->apic, entry->pin);
1029 if (!entry->next)
1030 break;
1031 entry = irq_2_pin + entry->next;
1032 }
1033 printk("\n");
1034 }
1035
1036 printk(KERN_INFO ".................................... done.\n");
1037
1038 return;
1039}
1040
1041#if 0
1042
1043static __apicdebuginit void print_APIC_bitfield (int base)
1044{
1045 unsigned int v;
1046 int i, j;
1047
1048 if (apic_verbosity == APIC_QUIET)
1049 return;
1050
1051 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1052 for (i = 0; i < 8; i++) {
1053 v = apic_read(base + i*0x10);
1054 for (j = 0; j < 32; j++) {
1055 if (v & (1<<j))
1056 printk("1");
1057 else
1058 printk("0");
1059 }
1060 printk("\n");
1061 }
1062}
1063
1064void __apicdebuginit print_local_APIC(void * dummy)
1065{
1066 unsigned int v, ver, maxlvt;
1067
1068 if (apic_verbosity == APIC_QUIET)
1069 return;
1070
1071 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1072 smp_processor_id(), hard_smp_processor_id());
1073 v = apic_read(APIC_ID);
1074 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(v));
1075 v = apic_read(APIC_LVR);
1076 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1077 ver = GET_APIC_VERSION(v);
1078 maxlvt = get_maxlvt();
1079
1080 v = apic_read(APIC_TASKPRI);
1081 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1082
Andi Kleen5a40b7c2005-09-12 18:49:24 +02001083 v = apic_read(APIC_ARBPRI);
1084 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1085 v & APIC_ARBPRI_MASK);
1086 v = apic_read(APIC_PROCPRI);
1087 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 v = apic_read(APIC_EOI);
1090 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1091 v = apic_read(APIC_RRR);
1092 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1093 v = apic_read(APIC_LDR);
1094 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1095 v = apic_read(APIC_DFR);
1096 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1097 v = apic_read(APIC_SPIV);
1098 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1099
1100 printk(KERN_DEBUG "... APIC ISR field:\n");
1101 print_APIC_bitfield(APIC_ISR);
1102 printk(KERN_DEBUG "... APIC TMR field:\n");
1103 print_APIC_bitfield(APIC_TMR);
1104 printk(KERN_DEBUG "... APIC IRR field:\n");
1105 print_APIC_bitfield(APIC_IRR);
1106
Andi Kleen5a40b7c2005-09-12 18:49:24 +02001107 v = apic_read(APIC_ESR);
1108 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 v = apic_read(APIC_ICR);
1111 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1112 v = apic_read(APIC_ICR2);
1113 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1114
1115 v = apic_read(APIC_LVTT);
1116 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1117
1118 if (maxlvt > 3) { /* PC is LVT#4. */
1119 v = apic_read(APIC_LVTPC);
1120 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1121 }
1122 v = apic_read(APIC_LVT0);
1123 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1124 v = apic_read(APIC_LVT1);
1125 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1126
1127 if (maxlvt > 2) { /* ERR is LVT#3. */
1128 v = apic_read(APIC_LVTERR);
1129 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1130 }
1131
1132 v = apic_read(APIC_TMICT);
1133 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1134 v = apic_read(APIC_TMCCT);
1135 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1136 v = apic_read(APIC_TDCR);
1137 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1138 printk("\n");
1139}
1140
1141void print_all_local_APICs (void)
1142{
1143 on_each_cpu(print_local_APIC, NULL, 1, 1);
1144}
1145
1146void __apicdebuginit print_PIC(void)
1147{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 unsigned int v;
1149 unsigned long flags;
1150
1151 if (apic_verbosity == APIC_QUIET)
1152 return;
1153
1154 printk(KERN_DEBUG "\nprinting PIC contents\n");
1155
1156 spin_lock_irqsave(&i8259A_lock, flags);
1157
1158 v = inb(0xa1) << 8 | inb(0x21);
1159 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1160
1161 v = inb(0xa0) << 8 | inb(0x20);
1162 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1163
1164 outb(0x0b,0xa0);
1165 outb(0x0b,0x20);
1166 v = inb(0xa0) << 8 | inb(0x20);
1167 outb(0x0a,0xa0);
1168 outb(0x0a,0x20);
1169
1170 spin_unlock_irqrestore(&i8259A_lock, flags);
1171
1172 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1173
1174 v = inb(0x4d1) << 8 | inb(0x4d0);
1175 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1176}
1177
1178#endif /* 0 */
1179
1180static void __init enable_IO_APIC(void)
1181{
1182 union IO_APIC_reg_01 reg_01;
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001183 int i8259_apic, i8259_pin;
1184 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 unsigned long flags;
1186
1187 for (i = 0; i < PIN_MAP_SIZE; i++) {
1188 irq_2_pin[i].pin = -1;
1189 irq_2_pin[i].next = 0;
1190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /*
1193 * The number of IO-APIC IRQ registers (== #pins):
1194 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001195 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001197 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001199 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1200 }
1201 for(apic = 0; apic < nr_ioapics; apic++) {
1202 int pin;
1203 /* See if any of the pins is in ExtINT mode */
1204 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1205 struct IO_APIC_route_entry entry;
Andi Kleeneea0e112006-09-26 10:52:30 +02001206 entry = ioapic_read_entry(apic, pin);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001207
1208 /* If the interrupt line is enabled and in ExtInt mode
1209 * I have found the pin where the i8259 is connected.
1210 */
1211 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1212 ioapic_i8259.apic = apic;
1213 ioapic_i8259.pin = pin;
1214 goto found_i8259;
1215 }
1216 }
1217 }
1218 found_i8259:
1219 /* Look to see what if the MP table has reported the ExtINT */
1220 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1221 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1222 /* Trust the MP table if nothing is setup in the hardware */
1223 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1224 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1225 ioapic_i8259.pin = i8259_pin;
1226 ioapic_i8259.apic = i8259_apic;
1227 }
1228 /* Complain if the MP table and the hardware disagree */
1229 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1230 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1231 {
1232 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234
1235 /*
1236 * Do not trust the IO-APIC being empty at bootup
1237 */
1238 clear_IO_APIC();
1239}
1240
1241/*
1242 * Not an __init, needed by the reboot code
1243 */
1244void disable_IO_APIC(void)
1245{
1246 /*
1247 * Clear the IO-APIC before rebooting:
1248 */
1249 clear_IO_APIC();
1250
Eric W. Biederman208fb932005-06-25 14:57:45 -07001251 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001252 * If the i8259 is routed through an IOAPIC
Eric W. Biederman208fb932005-06-25 14:57:45 -07001253 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001254 * so legacy interrupts can be delivered.
Eric W. Biederman208fb932005-06-25 14:57:45 -07001255 */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001256 if (ioapic_i8259.pin != -1) {
Eric W. Biederman208fb932005-06-25 14:57:45 -07001257 struct IO_APIC_route_entry entry;
Eric W. Biederman208fb932005-06-25 14:57:45 -07001258
1259 memset(&entry, 0, sizeof(entry));
1260 entry.mask = 0; /* Enabled */
1261 entry.trigger = 0; /* Edge */
1262 entry.irr = 0;
1263 entry.polarity = 0; /* High */
1264 entry.delivery_status = 0;
1265 entry.dest_mode = 0; /* Physical */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001266 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman208fb932005-06-25 14:57:45 -07001267 entry.vector = 0;
Benjamin Romeree4eff62007-02-13 13:26:25 +01001268 entry.dest = GET_APIC_ID(apic_read(APIC_ID));
Eric W. Biederman208fb932005-06-25 14:57:45 -07001269
Eric W. Biederman208fb932005-06-25 14:57:45 -07001270 /*
1271 * Add it to the IO-APIC irq-routing table:
1272 */
Andi Kleeneea0e112006-09-26 10:52:30 +02001273 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman208fb932005-06-25 14:57:45 -07001274 }
1275
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001276 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * There is a nasty bug in some older SMP boards, their mptable lies
1281 * about the timer IRQ. We do the following to work around the situation:
1282 *
1283 * - timer IRQ defaults to IO-APIC IRQ
1284 * - if this function detects that timer IRQs are defunct, then we fall
1285 * back to ISA timer IRQs
1286 */
1287static int __init timer_irq_works(void)
1288{
1289 unsigned long t1 = jiffies;
1290
1291 local_irq_enable();
1292 /* Let ten ticks pass... */
1293 mdelay((10 * 1000) / HZ);
1294
1295 /*
1296 * Expect a few ticks at least, to be sure some possible
1297 * glue logic does not lock up after one or two first
1298 * ticks in a non-ExtINT mode. Also the local APIC
1299 * might have cached one ExtINT interrupt. Finally, at
1300 * least one tick may be lost due to delays.
1301 */
1302
1303 /* jiffies wrap? */
1304 if (jiffies - t1 > 4)
1305 return 1;
1306 return 0;
1307}
1308
1309/*
1310 * In the SMP+IOAPIC case it might happen that there are an unspecified
1311 * number of pending IRQ events unhandled. These cases are very rare,
1312 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1313 * better to do it this way as thus we do not have to be aware of
1314 * 'pending' interrupts in the IRQ path, except at this point.
1315 */
1316/*
1317 * Edge triggered needs to resend any interrupt
1318 * that was delayed but this is now handled in the device
1319 * independent code.
1320 */
1321
1322/*
1323 * Starting up a edge-triggered IO-APIC interrupt is
1324 * nasty - we need to make sure that we get the edge.
1325 * If it is already asserted for some reason, we need
1326 * return 1 to indicate that is was pending.
1327 *
1328 * This is not complete - we should be able to fake
1329 * an edge even if it isn't on the 8259A...
1330 */
1331
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001332static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 int was_pending = 0;
1335 unsigned long flags;
1336
1337 spin_lock_irqsave(&ioapic_lock, flags);
1338 if (irq < 16) {
1339 disable_8259A_irq(irq);
1340 if (i8259A_irq_pending(irq))
1341 was_pending = 1;
1342 }
1343 __unmask_IO_APIC_irq(irq);
1344 spin_unlock_irqrestore(&ioapic_lock, flags);
1345
1346 return was_pending;
1347}
1348
Eric W. Biederman04b92672006-10-04 02:16:46 -07001349static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Eric W. Biederman550f2292006-10-04 02:16:51 -07001351 cpumask_t mask;
1352 unsigned vector;
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001353 unsigned long flags;
Eric W. Biederman550f2292006-10-04 02:16:51 -07001354
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001355 spin_lock_irqsave(&vector_lock, flags);
Eric W. Biederman550f2292006-10-04 02:16:51 -07001356 vector = irq_vector[irq];
1357 cpus_clear(mask);
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001358 cpu_set(first_cpu(irq_domain[irq]), mask);
Eric W. Biederman550f2292006-10-04 02:16:51 -07001359
Eric W. Biederman6bf2daf2006-10-21 18:37:02 +02001360 send_IPI_mask(mask, vector);
1361 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001362
1363 return 1;
1364}
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366/*
1367 * Level and edge triggered IO-APIC interrupts need different handling,
1368 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
1369 * handled with the level-triggered descriptor, but that one has slightly
1370 * more overhead. Level-triggered interrupts cannot be handled with the
1371 * edge-triggered handler, without risking IRQ storms and other ugly
1372 * races.
1373 */
1374
Eric W. Biederman0be66522006-10-04 02:16:30 -07001375static void ack_apic_edge(unsigned int irq)
1376{
1377 move_native_irq(irq);
1378 ack_APIC_irq();
1379}
1380
1381static void ack_apic_level(unsigned int irq)
1382{
1383 int do_unmask_irq = 0;
1384
1385#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
1386 /* If we are moving the irq we need to mask it */
1387 if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
1388 do_unmask_irq = 1;
1389 mask_IO_APIC_irq(irq);
1390 }
1391#endif
1392
1393 /*
1394 * We must acknowledge the irq before we move it or the acknowledge will
1395 * not propogate properly.
1396 */
1397 ack_APIC_irq();
1398
1399 /* Now we can move and renable the irq */
1400 move_masked_irq(irq);
1401 if (unlikely(do_unmask_irq))
1402 unmask_IO_APIC_irq(irq);
1403}
1404
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001405static struct irq_chip ioapic_chip __read_mostly = {
1406 .name = "IO-APIC",
Eric W. Biederman04b92672006-10-04 02:16:46 -07001407 .startup = startup_ioapic_irq,
1408 .mask = mask_IO_APIC_irq,
1409 .unmask = unmask_IO_APIC_irq,
Eric W. Biederman0be66522006-10-04 02:16:30 -07001410 .ack = ack_apic_edge,
1411 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07001412#ifdef CONFIG_SMP
Eric W. Biederman04b92672006-10-04 02:16:46 -07001413 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001414#endif
Eric W. Biederman04b92672006-10-04 02:16:46 -07001415 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416};
1417
1418static inline void init_IO_APIC_traps(void)
1419{
1420 int irq;
1421
1422 /*
1423 * NOTE! The local APIC isn't very good at handling
1424 * multiple interrupts at the same interrupt level.
1425 * As the interrupt level is determined by taking the
1426 * vector number and shifting that right by 4, we
1427 * want to spread these out a bit so that they don't
1428 * all fall in the same interrupt level.
1429 *
1430 * Also, we've got to be careful not to trash gate
1431 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1432 */
1433 for (irq = 0; irq < NR_IRQS ; irq++) {
1434 int tmp = irq;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001435 if (IO_APIC_IRQ(tmp) && !irq_vector[tmp]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /*
1437 * Hmm.. We don't have an entry for this,
1438 * so default to an old-fashioned 8259
1439 * interrupt if we can..
1440 */
1441 if (irq < 16)
1442 make_8259A_irq(irq);
1443 else
1444 /* Strange. Oh, well.. */
Ingo Molnarf29bd1b2006-10-04 02:16:25 -07001445 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 }
1448}
1449
1450static void enable_lapic_irq (unsigned int irq)
1451{
1452 unsigned long v;
1453
1454 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001455 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
1458static void disable_lapic_irq (unsigned int irq)
1459{
1460 unsigned long v;
1461
1462 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001463 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
1466static void ack_lapic_irq (unsigned int irq)
1467{
1468 ack_APIC_irq();
1469}
1470
1471static void end_lapic_irq (unsigned int i) { /* nothing */ }
1472
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -07001473static struct hw_interrupt_type lapic_irq_type __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 .typename = "local-APIC-edge",
1475 .startup = NULL, /* startup_irq() not used for IRQ0 */
1476 .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
1477 .enable = enable_lapic_irq,
1478 .disable = disable_lapic_irq,
1479 .ack = ack_lapic_irq,
1480 .end = end_lapic_irq,
1481};
1482
1483static void setup_nmi (void)
1484{
1485 /*
1486 * Dirty trick to enable the NMI watchdog ...
1487 * We put the 8259A master into AEOI mode and
1488 * unmask on all local APICs LVT0 as NMI.
1489 *
1490 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
1491 * is from Maciej W. Rozycki - so we do not have to EOI from
1492 * the NMI handler or the timer interrupt.
1493 */
1494 printk(KERN_INFO "activating NMI Watchdog ...");
1495
1496 enable_NMI_through_LVT0(NULL);
1497
1498 printk(" done.\n");
1499}
1500
1501/*
1502 * This looks a bit hackish but it's about the only one way of sending
1503 * a few INTA cycles to 8259As and any associated glue logic. ICR does
1504 * not support the ExtINT mode, unfortunately. We need to send these
1505 * cycles as some i82489DX-based boards have glue logic that keeps the
1506 * 8259A interrupt line asserted until INTA. --macro
1507 */
1508static inline void unlock_ExtINT_logic(void)
1509{
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001510 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 struct IO_APIC_route_entry entry0, entry1;
1512 unsigned char save_control, save_freq_select;
1513 unsigned long flags;
1514
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001515 pin = find_isa_irq_pin(8, mp_INT);
1516 apic = find_isa_irq_apic(8, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (pin == -1)
1518 return;
1519
1520 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001521 *(((int *)&entry0) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
1522 *(((int *)&entry0) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001524 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 memset(&entry1, 0, sizeof(entry1));
1527
1528 entry1.dest_mode = 0; /* physical delivery */
1529 entry1.mask = 0; /* unmask IRQ now */
Benjamin Romeree4eff62007-02-13 13:26:25 +01001530 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 entry1.delivery_mode = dest_ExtINT;
1532 entry1.polarity = entry0.polarity;
1533 entry1.trigger = 0;
1534 entry1.vector = 0;
1535
1536 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001537 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
1538 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 spin_unlock_irqrestore(&ioapic_lock, flags);
1540
1541 save_control = CMOS_READ(RTC_CONTROL);
1542 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
1543 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
1544 RTC_FREQ_SELECT);
1545 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
1546
1547 i = 100;
1548 while (i-- > 0) {
1549 mdelay(10);
1550 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
1551 i -= 10;
1552 }
1553
1554 CMOS_WRITE(save_control, RTC_CONTROL);
1555 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001556 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001559 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
1560 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 spin_unlock_irqrestore(&ioapic_lock, flags);
1562}
1563
1564/*
1565 * This code may look a bit paranoid, but it's supposed to cooperate with
1566 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
1567 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
1568 * fanatically on his truly buggy board.
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001569 *
1570 * FIXME: really need to revamp this for modern platforms only.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 */
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001572static inline void check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001574 int apic1, pin1, apic2, pin2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 int vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001576 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /*
1579 * get/set the timer IRQ vector:
1580 */
1581 disable_8259A_irq(0);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001582 vector = assign_irq_vector(0, TARGET_CPUS, &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /*
1585 * Subtle, code in do_timer_interrupt() expects an AEOI
1586 * mode for the 8259A whenever interrupts are routed
1587 * through I/O APICs. Also IRQ0 has to be enabled in
1588 * the 8259A which implies the virtual wire has to be
1589 * disabled in the local APIC.
1590 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001591 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 init_8259A(1);
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001593 if (timer_over_8254 > 0)
1594 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001596 pin1 = find_isa_irq_pin(0, mp_INT);
1597 apic1 = find_isa_irq_apic(0, mp_INT);
1598 pin2 = ioapic_i8259.pin;
1599 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001601 apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
1602 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001604 if (pin1 != -1) {
1605 /*
1606 * Ok, does IRQ0 through the IOAPIC work?
1607 */
1608 unmask_IO_APIC_irq(0);
1609 if (!no_timer_check && timer_irq_works()) {
1610 nmi_watchdog_default();
1611 if (nmi_watchdog == NMI_IO_APIC) {
1612 disable_8259A_irq(0);
1613 setup_nmi();
1614 enable_8259A_irq(0);
1615 }
1616 if (disable_timer_pin_1 > 0)
1617 clear_IO_APIC_pin(0, pin1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return;
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001619 }
1620 clear_IO_APIC_pin(apic1, pin1);
1621 apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: 8254 timer not "
1622 "connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
Andi Kleenb0268722006-12-07 02:14:06 +01001624
Linus Torvaldsfea5f1e2007-01-08 15:04:46 -08001625 apic_printk(APIC_VERBOSE,KERN_INFO "...trying to set up timer (IRQ0) "
1626 "through the 8259A ... ");
1627 if (pin2 != -1) {
1628 apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
1629 apic2, pin2);
1630 /*
1631 * legacy devices should be connected to IO APIC #0
1632 */
1633 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
1634 if (timer_irq_works()) {
1635 apic_printk(APIC_VERBOSE," works.\n");
1636 nmi_watchdog_default();
1637 if (nmi_watchdog == NMI_IO_APIC) {
1638 setup_nmi();
1639 }
1640 return;
1641 }
1642 /*
1643 * Cleanup, just in case ...
1644 */
1645 clear_IO_APIC_pin(apic2, pin2);
1646 }
1647 apic_printk(APIC_VERBOSE," failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Chris McDermott1f992152006-02-26 04:18:40 +01001649 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
1651 nmi_watchdog = 0;
1652 }
1653
1654 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
1655
1656 disable_8259A_irq(0);
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001657 irq_desc[0].chip = &lapic_irq_type;
Andi Kleen11a8e772006-01-11 22:46:51 +01001658 apic_write(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 enable_8259A_irq(0);
1660
1661 if (timer_irq_works()) {
Chuck Ebbert5b922cd2006-03-25 16:30:55 +01001662 apic_printk(APIC_VERBOSE," works.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return;
1664 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001665 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 apic_printk(APIC_VERBOSE," failed.\n");
1667
1668 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
1669
1670 init_8259A(0);
1671 make_8259A_irq(0);
Andi Kleen11a8e772006-01-11 22:46:51 +01001672 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 unlock_ExtINT_logic();
1675
1676 if (timer_irq_works()) {
1677 apic_printk(APIC_VERBOSE," works.\n");
1678 return;
1679 }
1680 apic_printk(APIC_VERBOSE," failed :(.\n");
1681 panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
1682}
1683
Andi Kleen14d98ca2005-05-20 14:27:59 -07001684static int __init notimercheck(char *s)
1685{
1686 no_timer_check = 1;
1687 return 1;
1688}
1689__setup("no_timer_check", notimercheck);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691/*
1692 *
1693 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
1694 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
1695 * Linux doesn't really care, as it's not actually used
1696 * for any interrupt handling anyway.
1697 */
1698#define PIC_IRQS (1<<2)
1699
1700void __init setup_IO_APIC(void)
1701{
1702 enable_IO_APIC();
1703
1704 if (acpi_ioapic)
1705 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
1706 else
1707 io_apic_irqs = ~PIC_IRQS;
1708
1709 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 sync_Arb_IDs();
1712 setup_IO_APIC_irqs();
1713 init_IO_APIC_traps();
1714 check_timer();
1715 if (!acpi_ioapic)
1716 print_IO_APIC();
1717}
1718
1719struct sysfs_ioapic_data {
1720 struct sys_device dev;
1721 struct IO_APIC_route_entry entry[0];
1722};
1723static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1724
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001725static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 struct IO_APIC_route_entry *entry;
1728 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int i;
1730
1731 data = container_of(dev, struct sysfs_ioapic_data, dev);
1732 entry = data->entry;
Andi Kleeneea0e112006-09-26 10:52:30 +02001733 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
1734 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 return 0;
1737}
1738
1739static int ioapic_resume(struct sys_device *dev)
1740{
1741 struct IO_APIC_route_entry *entry;
1742 struct sysfs_ioapic_data *data;
1743 unsigned long flags;
1744 union IO_APIC_reg_00 reg_00;
1745 int i;
1746
1747 data = container_of(dev, struct sysfs_ioapic_data, dev);
1748 entry = data->entry;
1749
1750 spin_lock_irqsave(&ioapic_lock, flags);
1751 reg_00.raw = io_apic_read(dev->id, 0);
1752 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
1753 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
1754 io_apic_write(dev->id, 0, reg_00.raw);
1755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleeneea0e112006-09-26 10:52:30 +02001757 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
1758 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 return 0;
1761}
1762
1763static struct sysdev_class ioapic_sysdev_class = {
1764 set_kset_name("ioapic"),
1765 .suspend = ioapic_suspend,
1766 .resume = ioapic_resume,
1767};
1768
1769static int __init ioapic_init_sysfs(void)
1770{
1771 struct sys_device * dev;
1772 int i, size, error = 0;
1773
1774 error = sysdev_class_register(&ioapic_sysdev_class);
1775 if (error)
1776 return error;
1777
1778 for (i = 0; i < nr_ioapics; i++ ) {
1779 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1780 * sizeof(struct IO_APIC_route_entry);
1781 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
1782 if (!mp_ioapic_data[i]) {
1783 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1784 continue;
1785 }
1786 memset(mp_ioapic_data[i], 0, size);
1787 dev = &mp_ioapic_data[i]->dev;
1788 dev->id = i;
1789 dev->cls = &ioapic_sysdev_class;
1790 error = sysdev_register(dev);
1791 if (error) {
1792 kfree(mp_ioapic_data[i]);
1793 mp_ioapic_data[i] = NULL;
1794 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1795 continue;
1796 }
1797 }
1798
1799 return 0;
1800}
1801
1802device_initcall(ioapic_init_sysfs);
1803
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001804/*
Eric W. Biederman04b92672006-10-04 02:16:46 -07001805 * Dynamic irq allocate and deallocation
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001806 */
1807int create_irq(void)
1808{
Eric W. Biederman04b92672006-10-04 02:16:46 -07001809 /* Allocate an unused irq */
1810 int irq;
1811 int new;
1812 int vector = 0;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001813 unsigned long flags;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001814 cpumask_t mask;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001815
Eric W. Biederman04b92672006-10-04 02:16:46 -07001816 irq = -ENOSPC;
1817 spin_lock_irqsave(&vector_lock, flags);
1818 for (new = (NR_IRQS - 1); new >= 0; new--) {
1819 if (platform_legacy_irq(new))
1820 continue;
1821 if (irq_vector[new] != 0)
1822 continue;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001823 vector = __assign_irq_vector(new, TARGET_CPUS, &mask);
Eric W. Biederman04b92672006-10-04 02:16:46 -07001824 if (likely(vector > 0))
1825 irq = new;
1826 break;
1827 }
1828 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001829
Eric W. Biederman04b92672006-10-04 02:16:46 -07001830 if (irq >= 0) {
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001831 dynamic_irq_init(irq);
1832 }
1833 return irq;
1834}
1835
1836void destroy_irq(unsigned int irq)
1837{
1838 unsigned long flags;
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001839
1840 dynamic_irq_cleanup(irq);
1841
1842 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu5df02872006-12-07 02:14:05 +01001843 __clear_irq_vector(irq);
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001844 spin_unlock_irqrestore(&vector_lock, flags);
1845}
Eric W. Biedermanc4fa0bbf2006-10-04 02:16:40 -07001846
Eric W. Biederman589e3672006-10-04 02:16:42 -07001847/*
1848 * MSI mesage composition
1849 */
1850#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001851static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman589e3672006-10-04 02:16:42 -07001852{
Eric W. Biederman589e3672006-10-04 02:16:42 -07001853 int vector;
1854 unsigned dest;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001855 cpumask_t tmp;
Eric W. Biederman589e3672006-10-04 02:16:42 -07001856
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001857 vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
Eric W. Biederman589e3672006-10-04 02:16:42 -07001858 if (vector >= 0) {
Eric W. Biederman589e3672006-10-04 02:16:42 -07001859 dest = cpu_mask_to_apicid(tmp);
1860
1861 msg->address_hi = MSI_ADDR_BASE_HI;
1862 msg->address_lo =
1863 MSI_ADDR_BASE_LO |
1864 ((INT_DEST_MODE == 0) ?
1865 MSI_ADDR_DEST_MODE_PHYSICAL:
1866 MSI_ADDR_DEST_MODE_LOGICAL) |
1867 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1868 MSI_ADDR_REDIRECTION_CPU:
1869 MSI_ADDR_REDIRECTION_LOWPRI) |
1870 MSI_ADDR_DEST_ID(dest);
1871
1872 msg->data =
1873 MSI_DATA_TRIGGER_EDGE |
1874 MSI_DATA_LEVEL_ASSERT |
1875 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1876 MSI_DATA_DELIVERY_FIXED:
1877 MSI_DATA_DELIVERY_LOWPRI) |
1878 MSI_DATA_VECTOR(vector);
1879 }
1880 return vector;
1881}
1882
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001883#ifdef CONFIG_SMP
1884static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
1885{
1886 struct msi_msg msg;
1887 unsigned int dest;
1888 cpumask_t tmp;
1889 int vector;
1890
1891 cpus_and(tmp, mask, cpu_online_map);
1892 if (cpus_empty(tmp))
1893 tmp = TARGET_CPUS;
1894
1895 cpus_and(mask, tmp, CPU_MASK_ALL);
1896
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001897 vector = assign_irq_vector(irq, mask, &tmp);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001898 if (vector < 0)
1899 return;
1900
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001901 dest = cpu_mask_to_apicid(tmp);
1902
1903 read_msi_msg(irq, &msg);
1904
1905 msg.data &= ~MSI_DATA_VECTOR_MASK;
1906 msg.data |= MSI_DATA_VECTOR(vector);
1907 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
1908 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
1909
1910 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07001911 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001912}
1913#endif /* CONFIG_SMP */
1914
1915/*
1916 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
1917 * which implement the MSI or MSI-X Capability Structure.
1918 */
1919static struct irq_chip msi_chip = {
1920 .name = "PCI-MSI",
1921 .unmask = unmask_msi_irq,
1922 .mask = mask_msi_irq,
1923 .ack = ack_apic_edge,
1924#ifdef CONFIG_SMP
1925 .set_affinity = set_msi_irq_affinity,
1926#endif
1927 .retrigger = ioapic_retrigger_irq,
1928};
1929
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001930int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001931{
1932 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001933 int irq, ret;
1934 irq = create_irq();
1935 if (irq < 0)
1936 return irq;
1937
1938 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001939 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001940 if (ret < 0) {
1941 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001942 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001943 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001944
1945 write_msi_msg(irq, &msg);
1946
Ingo Molnara460e742006-10-17 00:10:03 -07001947 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001948
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001949 return irq;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001950}
1951
1952void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman589e3672006-10-04 02:16:42 -07001953{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07001954 destroy_irq(irq);
Eric W. Biederman589e3672006-10-04 02:16:42 -07001955}
1956
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07001957#endif /* CONFIG_PCI_MSI */
Eric W. Biederman589e3672006-10-04 02:16:42 -07001958
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001959/*
1960 * Hypertransport interrupt support
1961 */
1962#ifdef CONFIG_HT_IRQ
1963
1964#ifdef CONFIG_SMP
1965
1966static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
1967{
Eric W. Biedermanec683072006-11-08 17:44:57 -08001968 struct ht_irq_msg msg;
1969 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001970
Eric W. Biedermanec683072006-11-08 17:44:57 -08001971 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
1972 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001973
Eric W. Biedermanec683072006-11-08 17:44:57 -08001974 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
1975 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001976
Eric W. Biedermanec683072006-11-08 17:44:57 -08001977 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001978}
1979
1980static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
1981{
1982 unsigned int dest;
1983 cpumask_t tmp;
1984 int vector;
1985
1986 cpus_and(tmp, mask, cpu_online_map);
1987 if (cpus_empty(tmp))
1988 tmp = TARGET_CPUS;
1989
1990 cpus_and(mask, tmp, CPU_MASK_ALL);
1991
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06001992 vector = assign_irq_vector(irq, mask, &tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001993 if (vector < 0)
1994 return;
1995
Eric W. Biederman8b955b02006-10-04 02:16:55 -07001996 dest = cpu_mask_to_apicid(tmp);
1997
Eric W. Biedermanec683072006-11-08 17:44:57 -08001998 target_ht_irq(irq, dest, vector);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07001999 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002000}
2001#endif
2002
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002003static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002004 .name = "PCI-HT",
2005 .mask = mask_ht_irq,
2006 .unmask = unmask_ht_irq,
2007 .ack = ack_apic_edge,
2008#ifdef CONFIG_SMP
2009 .set_affinity = set_ht_irq_affinity,
2010#endif
2011 .retrigger = ioapic_retrigger_irq,
2012};
2013
2014int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2015{
2016 int vector;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002017 cpumask_t tmp;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002018
Eric W. Biedermanc7111c132006-10-08 07:47:55 -06002019 vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002020 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002021 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002022 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002023
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002024 dest = cpu_mask_to_apicid(tmp);
2025
Eric W. Biedermanec683072006-11-08 17:44:57 -08002026 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002027
Eric W. Biedermanec683072006-11-08 17:44:57 -08002028 msg.address_lo =
2029 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002030 HT_IRQ_LOW_DEST_ID(dest) |
2031 HT_IRQ_LOW_VECTOR(vector) |
2032 ((INT_DEST_MODE == 0) ?
2033 HT_IRQ_LOW_DM_PHYSICAL :
2034 HT_IRQ_LOW_DM_LOGICAL) |
2035 HT_IRQ_LOW_RQEOI_EDGE |
2036 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2037 HT_IRQ_LOW_MT_FIXED :
Eric W. Biedermanec683072006-11-08 17:44:57 -08002038 HT_IRQ_LOW_MT_ARBITRATED) |
2039 HT_IRQ_LOW_IRQ_MASKED;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002040
Eric W. Biedermanec683072006-11-08 17:44:57 -08002041 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002042
Ingo Molnara460e742006-10-17 00:10:03 -07002043 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2044 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002045 }
2046 return vector;
2047}
2048#endif /* CONFIG_HT_IRQ */
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050/* --------------------------------------------------------------------------
2051 ACPI-based IOAPIC Configuration
2052 -------------------------------------------------------------------------- */
2053
Len Brown888ba6c2005-08-24 12:07:20 -04002054#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056#define IO_APIC_MAX_ID 0xFE
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058int __init io_apic_get_redir_entries (int ioapic)
2059{
2060 union IO_APIC_reg_01 reg_01;
2061 unsigned long flags;
2062
2063 spin_lock_irqsave(&ioapic_lock, flags);
2064 reg_01.raw = io_apic_read(ioapic, 1);
2065 spin_unlock_irqrestore(&ioapic_lock, flags);
2066
2067 return reg_01.bits.entries;
2068}
2069
2070
Bob Moore50eca3e2005-09-30 19:03:00 -04002071int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (!IO_APIC_IRQ(irq)) {
2074 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2075 ioapic);
2076 return -EINVAL;
2077 }
2078
Eric W. Biederman550f2292006-10-04 02:16:51 -07002079 /*
2080 * IRQs < 16 are already in the irq_2_pin[] map
2081 */
2082 if (irq >= 16)
2083 add_pin_to_irq(irq, ioapic, pin);
2084
Eric W. Biedermana8c8a362007-02-23 04:19:08 -07002085 setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 return 0;
2088}
2089
Len Brown888ba6c2005-08-24 12:07:20 -04002090#endif /* CONFIG_ACPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092
2093/*
2094 * This function currently is only a helper for the i386 smp boot process where
2095 * we need to reprogram the ioredtbls to cater for the cpus which have come online
2096 * so mask in all cases should simply be TARGET_CPUS
2097 */
Ashok Raj54d5d422005-09-06 15:16:15 -07002098#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099void __init setup_ioapic_dest(void)
2100{
2101 int pin, ioapic, irq, irq_entry;
2102
2103 if (skip_ioapic_setup == 1)
2104 return;
2105
2106 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
2107 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
2108 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
2109 if (irq_entry == -1)
2110 continue;
2111 irq = pin_2_irq(irq_entry, ioapic, pin);
Yinghai Luad892f52006-12-07 02:14:19 +01002112
2113 /* setup_IO_APIC_irqs could fail to get vector for some device
2114 * when you have too many devices, because at that time only boot
2115 * cpu is online.
2116 */
2117 if(!irq_vector[irq])
Eric W. Biedermana8c8a362007-02-23 04:19:08 -07002118 setup_IO_APIC_irq(ioapic, pin, irq,
2119 irq_trigger(irq_entry),
2120 irq_polarity(irq_entry));
Yinghai Luad892f52006-12-07 02:14:19 +01002121 else
2122 set_ioapic_affinity_irq(irq, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124
2125 }
2126}
Ashok Raj54d5d422005-09-06 15:16:15 -07002127#endif