x86: I/O APIC: unmask the second-chance timer interrupt
[linux-2.6-block.git] / arch / x86 / kernel / io_apic_32.c
CommitLineData
1da177e4
LT
1/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
1da177e4
LT
24#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
1da177e4
LT
28#include <linux/mc146818rtc.h>
29#include <linux/compiler.h>
30#include <linux/acpi.h>
129f6946 31#include <linux/module.h>
1da177e4 32#include <linux/sysdev.h>
2d3fcc1c 33#include <linux/pci.h>
3b7d1921 34#include <linux/msi.h>
95d77884 35#include <linux/htirq.h>
7dfb7103 36#include <linux/freezer.h>
f26d6a2b 37#include <linux/kthread.h>
1d16b53e 38#include <linux/jiffies.h> /* time_after() */
54d5d424 39
1da177e4
LT
40#include <asm/io.h>
41#include <asm/smp.h>
42#include <asm/desc.h>
43#include <asm/timer.h>
306e440d 44#include <asm/i8259.h>
3e4ff115 45#include <asm/nmi.h>
2d3fcc1c 46#include <asm/msidef.h>
8b955b0d 47#include <asm/hypertransport.h>
1da177e4
LT
48
49#include <mach_apic.h>
874c4fe3 50#include <mach_apicdef.h>
1da177e4 51
1da177e4
LT
52int (*ioapic_renumber_irq)(int ioapic, int irq);
53atomic_t irq_mis_count;
54
fcfd636a
EB
55/* Where if anywhere is the i8259 connect in external int mode */
56static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
57
1da177e4 58static DEFINE_SPINLOCK(ioapic_lock);
0a1ad60d 59static DEFINE_SPINLOCK(vector_lock);
1da177e4 60
35542c5e 61int timer_through_8259 __initdata;
f9262c12 62
1da177e4
LT
63/*
64 * Is the SiS APIC rmw bug present ?
65 * -1 = don't know, 0 = no, 1 = yes
66 */
67int sis_apic_bug = -1;
68
69/*
70 * # of IRQ routing registers
71 */
72int nr_ioapic_registers[MAX_IO_APICS];
73
9f640ccb
AS
74/* I/O APIC entries */
75struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
76int nr_ioapics;
77
584f734d
AS
78/* MP IRQ source entries */
79struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
80
81/* # of MP IRQ source entries */
82int mp_irq_entries;
83
1a3f239d 84static int disable_timer_pin_1 __initdata;
66759a01 85
1da177e4
LT
86/*
87 * Rough estimation of how many shared IRQs there are, can
88 * be changed anytime.
89 */
90#define MAX_PLUS_SHARED_IRQS NR_IRQS
91#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
92
93/*
94 * This is performance-critical, we want to do it O(1)
95 *
96 * the indexing order of this array favors 1:1 mappings
97 * between pins and IRQs.
98 */
99
100static struct irq_pin_list {
101 int apic, pin, next;
102} irq_2_pin[PIN_MAP_SIZE];
103
130fe05d
LT
104struct io_apic {
105 unsigned int index;
106 unsigned int unused[3];
107 unsigned int data;
108};
109
110static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
111{
112 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
113 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
114}
115
116static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
117{
118 struct io_apic __iomem *io_apic = io_apic_base(apic);
119 writel(reg, &io_apic->index);
120 return readl(&io_apic->data);
121}
122
123static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
124{
125 struct io_apic __iomem *io_apic = io_apic_base(apic);
126 writel(reg, &io_apic->index);
127 writel(value, &io_apic->data);
128}
129
130/*
131 * Re-write a value: to be used for read-modify-write
132 * cycles where the read already set up the index register.
133 *
134 * Older SiS APIC requires we rewrite the index register
135 */
136static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
137{
cb468984 138 volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
130fe05d
LT
139 if (sis_apic_bug)
140 writel(reg, &io_apic->index);
141 writel(value, &io_apic->data);
142}
143
cf4c6a2f
AK
144union entry_union {
145 struct { u32 w1, w2; };
146 struct IO_APIC_route_entry entry;
147};
148
149static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
150{
151 union entry_union eu;
152 unsigned long flags;
153 spin_lock_irqsave(&ioapic_lock, flags);
154 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
155 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
156 spin_unlock_irqrestore(&ioapic_lock, flags);
157 return eu.entry;
158}
159
f9dadfa7
LT
160/*
161 * When we write a new IO APIC routing entry, we need to write the high
162 * word first! If the mask bit in the low word is clear, we will enable
163 * the interrupt, and we need to make sure the entry is fully populated
164 * before that happens.
165 */
d15512f4
AK
166static void
167__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
cf4c6a2f 168{
cf4c6a2f
AK
169 union entry_union eu;
170 eu.entry = e;
f9dadfa7
LT
171 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
172 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
d15512f4
AK
173}
174
175static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
176{
177 unsigned long flags;
178 spin_lock_irqsave(&ioapic_lock, flags);
179 __ioapic_write_entry(apic, pin, e);
f9dadfa7
LT
180 spin_unlock_irqrestore(&ioapic_lock, flags);
181}
182
183/*
184 * When we mask an IO APIC routing entry, we need to write the low
185 * word first, in order to set the mask bit before we change the
186 * high bits!
187 */
188static void ioapic_mask_entry(int apic, int pin)
189{
190 unsigned long flags;
191 union entry_union eu = { .entry.mask = 1 };
192
cf4c6a2f
AK
193 spin_lock_irqsave(&ioapic_lock, flags);
194 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
195 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
196 spin_unlock_irqrestore(&ioapic_lock, flags);
197}
198
1da177e4
LT
199/*
200 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
201 * shared ISA-space IRQs, so we have to support them. We are super
202 * fast in the common case, and fast for shared ISA-space IRQs.
203 */
204static void add_pin_to_irq(unsigned int irq, int apic, int pin)
205{
206 static int first_free_entry = NR_IRQS;
207 struct irq_pin_list *entry = irq_2_pin + irq;
208
209 while (entry->next)
210 entry = irq_2_pin + entry->next;
211
212 if (entry->pin != -1) {
213 entry->next = first_free_entry;
214 entry = irq_2_pin + entry->next;
215 if (++first_free_entry >= PIN_MAP_SIZE)
216 panic("io_apic.c: whoops");
217 }
218 entry->apic = apic;
219 entry->pin = pin;
220}
221
222/*
223 * Reroute an IRQ to a different pin.
224 */
225static void __init replace_pin_at_irq(unsigned int irq,
226 int oldapic, int oldpin,
227 int newapic, int newpin)
228{
229 struct irq_pin_list *entry = irq_2_pin + irq;
230
231 while (1) {
232 if (entry->apic == oldapic && entry->pin == oldpin) {
233 entry->apic = newapic;
234 entry->pin = newpin;
235 }
236 if (!entry->next)
237 break;
238 entry = irq_2_pin + entry->next;
239 }
240}
241
242static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable)
243{
244 struct irq_pin_list *entry = irq_2_pin + irq;
245 unsigned int pin, reg;
246
247 for (;;) {
248 pin = entry->pin;
249 if (pin == -1)
250 break;
251 reg = io_apic_read(entry->apic, 0x10 + pin*2);
252 reg &= ~disable;
253 reg |= enable;
254 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
255 if (!entry->next)
256 break;
257 entry = irq_2_pin + entry->next;
258 }
259}
260
261/* mask = 1 */
262static void __mask_IO_APIC_irq (unsigned int irq)
263{
264 __modify_IO_APIC_irq(irq, 0x00010000, 0);
265}
266
267/* mask = 0 */
268static void __unmask_IO_APIC_irq (unsigned int irq)
269{
270 __modify_IO_APIC_irq(irq, 0, 0x00010000);
271}
272
273/* mask = 1, trigger = 0 */
274static void __mask_and_edge_IO_APIC_irq (unsigned int irq)
275{
276 __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000);
277}
278
279/* mask = 0, trigger = 1 */
280static void __unmask_and_level_IO_APIC_irq (unsigned int irq)
281{
282 __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000);
283}
284
285static void mask_IO_APIC_irq (unsigned int irq)
286{
287 unsigned long flags;
288
289 spin_lock_irqsave(&ioapic_lock, flags);
290 __mask_IO_APIC_irq(irq);
291 spin_unlock_irqrestore(&ioapic_lock, flags);
292}
293
294static void unmask_IO_APIC_irq (unsigned int irq)
295{
296 unsigned long flags;
297
298 spin_lock_irqsave(&ioapic_lock, flags);
299 __unmask_IO_APIC_irq(irq);
300 spin_unlock_irqrestore(&ioapic_lock, flags);
301}
302
303static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
304{
305 struct IO_APIC_route_entry entry;
1da177e4
LT
306
307 /* Check delivery_mode to be sure we're not clearing an SMI pin */
cf4c6a2f 308 entry = ioapic_read_entry(apic, pin);
1da177e4
LT
309 if (entry.delivery_mode == dest_SMI)
310 return;
311
312 /*
313 * Disable it in the IO-APIC irq-routing table:
314 */
f9dadfa7 315 ioapic_mask_entry(apic, pin);
1da177e4
LT
316}
317
318static void clear_IO_APIC (void)
319{
320 int apic, pin;
321
322 for (apic = 0; apic < nr_ioapics; apic++)
323 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
324 clear_IO_APIC_pin(apic, pin);
325}
326
54d5d424 327#ifdef CONFIG_SMP
1da177e4
LT
328static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
329{
330 unsigned long flags;
331 int pin;
332 struct irq_pin_list *entry = irq_2_pin + irq;
333 unsigned int apicid_value;
54d5d424 334 cpumask_t tmp;
1da177e4 335
54d5d424
AR
336 cpus_and(tmp, cpumask, cpu_online_map);
337 if (cpus_empty(tmp))
338 tmp = TARGET_CPUS;
339
340 cpus_and(cpumask, tmp, CPU_MASK_ALL);
341
1da177e4
LT
342 apicid_value = cpu_mask_to_apicid(cpumask);
343 /* Prepare to do the io_apic_write */
344 apicid_value = apicid_value << 24;
345 spin_lock_irqsave(&ioapic_lock, flags);
346 for (;;) {
347 pin = entry->pin;
348 if (pin == -1)
349 break;
350 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
351 if (!entry->next)
352 break;
353 entry = irq_2_pin + entry->next;
354 }
9f0a5ba5 355 irq_desc[irq].affinity = cpumask;
1da177e4
LT
356 spin_unlock_irqrestore(&ioapic_lock, flags);
357}
358
359#if defined(CONFIG_IRQBALANCE)
360# include <asm/processor.h> /* kernel_thread() */
361# include <linux/kernel_stat.h> /* kstat */
362# include <linux/slab.h> /* kmalloc() */
1d16b53e 363# include <linux/timer.h>
1da177e4 364
1da177e4 365#define IRQBALANCE_CHECK_ARCH -999
1b61b910
ZY
366#define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
367#define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
368#define BALANCED_IRQ_MORE_DELTA (HZ/10)
369#define BALANCED_IRQ_LESS_DELTA (HZ)
370
371static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
372static int physical_balance __read_mostly;
373static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
1da177e4
LT
374
375static struct irq_cpu_info {
376 unsigned long * last_irq;
377 unsigned long * irq_delta;
378 unsigned long irq;
379} irq_cpu_data[NR_CPUS];
380
381#define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
382#define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq])
383#define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq])
384
385#define IDLE_ENOUGH(cpu,now) \
386 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
387
388#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
389
d5a7430d 390#define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
1da177e4 391
1b61b910
ZY
392static cpumask_t balance_irq_affinity[NR_IRQS] = {
393 [0 ... NR_IRQS-1] = CPU_MASK_ALL
394};
1da177e4 395
1b61b910
ZY
396void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
397{
398 balance_irq_affinity[irq] = mask;
399}
1da177e4
LT
400
401static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
402 unsigned long now, int direction)
403{
404 int search_idle = 1;
405 int cpu = curr_cpu;
406
407 goto inside;
408
409 do {
410 if (unlikely(cpu == curr_cpu))
411 search_idle = 0;
412inside:
413 if (direction == 1) {
414 cpu++;
415 if (cpu >= NR_CPUS)
416 cpu = 0;
417 } else {
418 cpu--;
419 if (cpu == -1)
420 cpu = NR_CPUS-1;
421 }
422 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) ||
423 (search_idle && !IDLE_ENOUGH(cpu,now)));
424
425 return cpu;
426}
427
428static inline void balance_irq(int cpu, int irq)
429{
430 unsigned long now = jiffies;
431 cpumask_t allowed_mask;
432 unsigned int new_cpu;
433
434 if (irqbalance_disabled)
435 return;
436
1b61b910 437 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
1da177e4
LT
438 new_cpu = move(cpu, allowed_mask, now, 1);
439 if (cpu != new_cpu) {
54d5d424 440 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
1da177e4
LT
441 }
442}
443
444static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
445{
446 int i, j;
edc2cbf4 447
394e3902
AM
448 for_each_online_cpu(i) {
449 for (j = 0; j < NR_IRQS; j++) {
1da177e4
LT
450 if (!irq_desc[j].action)
451 continue;
452 /* Is it a significant load ? */
453 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) <
454 useful_load_threshold)
455 continue;
456 balance_irq(i, j);
457 }
458 }
459 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
460 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
461 return;
462}
463
464static void do_irq_balance(void)
465{
466 int i, j;
467 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
468 unsigned long move_this_load = 0;
469 int max_loaded = 0, min_loaded = 0;
470 int load;
471 unsigned long useful_load_threshold = balanced_irq_interval + 10;
472 int selected_irq;
473 int tmp_loaded, first_attempt = 1;
474 unsigned long tmp_cpu_irq;
475 unsigned long imbalance = 0;
476 cpumask_t allowed_mask, target_cpu_mask, tmp;
477
c8912599 478 for_each_possible_cpu(i) {
1da177e4
LT
479 int package_index;
480 CPU_IRQ(i) = 0;
481 if (!cpu_online(i))
482 continue;
483 package_index = CPU_TO_PACKAGEINDEX(i);
484 for (j = 0; j < NR_IRQS; j++) {
485 unsigned long value_now, delta;
950f4427
TG
486 /* Is this an active IRQ or balancing disabled ? */
487 if (!irq_desc[j].action || irq_balancing_disabled(j))
1da177e4
LT
488 continue;
489 if ( package_index == i )
490 IRQ_DELTA(package_index,j) = 0;
491 /* Determine the total count per processor per IRQ */
492 value_now = (unsigned long) kstat_cpu(i).irqs[j];
493
494 /* Determine the activity per processor per IRQ */
495 delta = value_now - LAST_CPU_IRQ(i,j);
496
497 /* Update last_cpu_irq[][] for the next time */
498 LAST_CPU_IRQ(i,j) = value_now;
499
500 /* Ignore IRQs whose rate is less than the clock */
501 if (delta < useful_load_threshold)
502 continue;
503 /* update the load for the processor or package total */
504 IRQ_DELTA(package_index,j) += delta;
505
506 /* Keep track of the higher numbered sibling as well */
507 if (i != package_index)
508 CPU_IRQ(i) += delta;
509 /*
510 * We have sibling A and sibling B in the package
511 *
512 * cpu_irq[A] = load for cpu A + load for cpu B
513 * cpu_irq[B] = load for cpu B
514 */
515 CPU_IRQ(package_index) += delta;
516 }
517 }
518 /* Find the least loaded processor package */
394e3902 519 for_each_online_cpu(i) {
1da177e4
LT
520 if (i != CPU_TO_PACKAGEINDEX(i))
521 continue;
522 if (min_cpu_irq > CPU_IRQ(i)) {
523 min_cpu_irq = CPU_IRQ(i);
524 min_loaded = i;
525 }
526 }
527 max_cpu_irq = ULONG_MAX;
528
529tryanothercpu:
530 /* Look for heaviest loaded processor.
531 * We may come back to get the next heaviest loaded processor.
532 * Skip processors with trivial loads.
533 */
534 tmp_cpu_irq = 0;
535 tmp_loaded = -1;
394e3902 536 for_each_online_cpu(i) {
1da177e4
LT
537 if (i != CPU_TO_PACKAGEINDEX(i))
538 continue;
539 if (max_cpu_irq <= CPU_IRQ(i))
540 continue;
541 if (tmp_cpu_irq < CPU_IRQ(i)) {
542 tmp_cpu_irq = CPU_IRQ(i);
543 tmp_loaded = i;
544 }
545 }
546
547 if (tmp_loaded == -1) {
548 /* In the case of small number of heavy interrupt sources,
549 * loading some of the cpus too much. We use Ingo's original
550 * approach to rotate them around.
551 */
552 if (!first_attempt && imbalance >= useful_load_threshold) {
553 rotate_irqs_among_cpus(useful_load_threshold);
554 return;
555 }
556 goto not_worth_the_effort;
557 }
558
559 first_attempt = 0; /* heaviest search */
560 max_cpu_irq = tmp_cpu_irq; /* load */
561 max_loaded = tmp_loaded; /* processor */
562 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
563
1da177e4
LT
564 /* if imbalance is less than approx 10% of max load, then
565 * observe diminishing returns action. - quit
566 */
edc2cbf4 567 if (imbalance < (max_cpu_irq >> 3))
1da177e4 568 goto not_worth_the_effort;
1da177e4
LT
569
570tryanotherirq:
571 /* if we select an IRQ to move that can't go where we want, then
572 * see if there is another one to try.
573 */
574 move_this_load = 0;
575 selected_irq = -1;
576 for (j = 0; j < NR_IRQS; j++) {
577 /* Is this an active IRQ? */
578 if (!irq_desc[j].action)
579 continue;
580 if (imbalance <= IRQ_DELTA(max_loaded,j))
581 continue;
582 /* Try to find the IRQ that is closest to the imbalance
583 * without going over.
584 */
585 if (move_this_load < IRQ_DELTA(max_loaded,j)) {
586 move_this_load = IRQ_DELTA(max_loaded,j);
587 selected_irq = j;
588 }
589 }
590 if (selected_irq == -1) {
591 goto tryanothercpu;
592 }
593
594 imbalance = move_this_load;
595
27b46d76 596 /* For physical_balance case, we accumulated both load
1da177e4
LT
597 * values in the one of the siblings cpu_irq[],
598 * to use the same code for physical and logical processors
599 * as much as possible.
600 *
601 * NOTE: the cpu_irq[] array holds the sum of the load for
602 * sibling A and sibling B in the slot for the lowest numbered
603 * sibling (A), _AND_ the load for sibling B in the slot for
604 * the higher numbered sibling.
605 *
606 * We seek the least loaded sibling by making the comparison
607 * (A+B)/2 vs B
608 */
609 load = CPU_IRQ(min_loaded) >> 1;
d5a7430d 610 for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
1da177e4
LT
611 if (load > CPU_IRQ(j)) {
612 /* This won't change cpu_sibling_map[min_loaded] */
613 load = CPU_IRQ(j);
614 min_loaded = j;
615 }
616 }
617
1b61b910
ZY
618 cpus_and(allowed_mask,
619 cpu_online_map,
620 balance_irq_affinity[selected_irq]);
1da177e4
LT
621 target_cpu_mask = cpumask_of_cpu(min_loaded);
622 cpus_and(tmp, target_cpu_mask, allowed_mask);
623
624 if (!cpus_empty(tmp)) {
1da177e4 625 /* mark for change destination */
54d5d424
AR
626 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
627
1da177e4
LT
628 /* Since we made a change, come back sooner to
629 * check for more variation.
630 */
631 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
632 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
633 return;
634 }
635 goto tryanotherirq;
636
637not_worth_the_effort:
638 /*
639 * if we did not find an IRQ to move, then adjust the time interval
640 * upward
641 */
642 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
643 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
1da177e4
LT
644 return;
645}
646
647static int balanced_irq(void *unused)
648{
649 int i;
650 unsigned long prev_balance_time = jiffies;
651 long time_remaining = balanced_irq_interval;
652
1da177e4
LT
653 /* push everything to CPU 0 to give us a starting point. */
654 for (i = 0 ; i < NR_IRQS ; i++) {
cd916d31 655 irq_desc[i].pending_mask = cpumask_of_cpu(0);
54d5d424 656 set_pending_irq(i, cpumask_of_cpu(0));
1da177e4
LT
657 }
658
83144186 659 set_freezable();
1da177e4 660 for ( ; ; ) {
52e6e630 661 time_remaining = schedule_timeout_interruptible(time_remaining);
3e1d1d28 662 try_to_freeze();
1da177e4
LT
663 if (time_after(jiffies,
664 prev_balance_time+balanced_irq_interval)) {
f3705136 665 preempt_disable();
1da177e4
LT
666 do_irq_balance();
667 prev_balance_time = jiffies;
668 time_remaining = balanced_irq_interval;
f3705136 669 preempt_enable();
1da177e4
LT
670 }
671 }
672 return 0;
673}
674
675static int __init balanced_irq_init(void)
676{
677 int i;
678 struct cpuinfo_x86 *c;
679 cpumask_t tmp;
680
681 cpus_shift_right(tmp, cpu_online_map, 2);
682 c = &boot_cpu_data;
683 /* When not overwritten by the command line ask subarchitecture. */
684 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
685 irqbalance_disabled = NO_BALANCE_IRQ;
686 if (irqbalance_disabled)
687 return 0;
688
689 /* disable irqbalance completely if there is only one processor online */
690 if (num_online_cpus() < 2) {
691 irqbalance_disabled = 1;
692 return 0;
693 }
694 /*
695 * Enable physical balance only if more than 1 physical processor
696 * is present
697 */
698 if (smp_num_siblings > 1 && !cpus_empty(tmp))
699 physical_balance = 1;
700
394e3902 701 for_each_online_cpu(i) {
1da177e4
LT
702 irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
703 irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
704 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
705 printk(KERN_ERR "balanced_irq_init: out of memory");
706 goto failed;
707 }
708 memset(irq_cpu_data[i].irq_delta,0,sizeof(unsigned long) * NR_IRQS);
709 memset(irq_cpu_data[i].last_irq,0,sizeof(unsigned long) * NR_IRQS);
710 }
711
712 printk(KERN_INFO "Starting balanced_irq\n");
f26d6a2b 713 if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
1da177e4 714 return 0;
f26d6a2b 715 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
1da177e4 716failed:
c8912599 717 for_each_possible_cpu(i) {
4ae6673e 718 kfree(irq_cpu_data[i].irq_delta);
394e3902 719 irq_cpu_data[i].irq_delta = NULL;
4ae6673e 720 kfree(irq_cpu_data[i].last_irq);
394e3902 721 irq_cpu_data[i].last_irq = NULL;
1da177e4
LT
722 }
723 return 0;
724}
725
c2481cc4 726int __devinit irqbalance_disable(char *str)
1da177e4
LT
727{
728 irqbalance_disabled = 1;
9b41046c 729 return 1;
1da177e4
LT
730}
731
732__setup("noirqbalance", irqbalance_disable);
733
1da177e4 734late_initcall(balanced_irq_init);
1da177e4 735#endif /* CONFIG_IRQBALANCE */
54d5d424 736#endif /* CONFIG_SMP */
1da177e4
LT
737
738#ifndef CONFIG_SMP
75604d7f 739void send_IPI_self(int vector)
1da177e4
LT
740{
741 unsigned int cfg;
742
743 /*
744 * Wait for idle.
745 */
746 apic_wait_icr_idle();
747 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
748 /*
749 * Send the IPI. The write to APIC_ICR fires this off.
750 */
751 apic_write_around(APIC_ICR, cfg);
752}
753#endif /* !CONFIG_SMP */
754
755
756/*
757 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
758 * specific CPU-side IRQs.
759 */
760
761#define MAX_PIRQS 8
762static int pirq_entries [MAX_PIRQS];
763static int pirqs_enabled;
764int skip_ioapic_setup;
765
1da177e4
LT
766static int __init ioapic_pirq_setup(char *str)
767{
768 int i, max;
769 int ints[MAX_PIRQS+1];
770
771 get_options(str, ARRAY_SIZE(ints), ints);
772
773 for (i = 0; i < MAX_PIRQS; i++)
774 pirq_entries[i] = -1;
775
776 pirqs_enabled = 1;
777 apic_printk(APIC_VERBOSE, KERN_INFO
778 "PIRQ redirection, working around broken MP-BIOS.\n");
779 max = MAX_PIRQS;
780 if (ints[0] < MAX_PIRQS)
781 max = ints[0];
782
783 for (i = 0; i < max; i++) {
784 apic_printk(APIC_VERBOSE, KERN_DEBUG
785 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
786 /*
787 * PIRQs are mapped upside down, usually.
788 */
789 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
790 }
791 return 1;
792}
793
794__setup("pirq=", ioapic_pirq_setup);
795
796/*
797 * Find the IRQ entry number of a certain pin.
798 */
799static int find_irq_entry(int apic, int pin, int type)
800{
801 int i;
802
803 for (i = 0; i < mp_irq_entries; i++)
804 if (mp_irqs[i].mpc_irqtype == type &&
805 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
806 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
807 mp_irqs[i].mpc_dstirq == pin)
808 return i;
809
810 return -1;
811}
812
813/*
814 * Find the pin to which IRQ[irq] (ISA) is connected
815 */
fcfd636a 816static int __init find_isa_irq_pin(int irq, int type)
1da177e4
LT
817{
818 int i;
819
820 for (i = 0; i < mp_irq_entries; i++) {
821 int lbus = mp_irqs[i].mpc_srcbus;
822
d27e2b8e 823 if (test_bit(lbus, mp_bus_not_pci) &&
1da177e4
LT
824 (mp_irqs[i].mpc_irqtype == type) &&
825 (mp_irqs[i].mpc_srcbusirq == irq))
826
827 return mp_irqs[i].mpc_dstirq;
828 }
829 return -1;
830}
831
fcfd636a
EB
832static int __init find_isa_irq_apic(int irq, int type)
833{
834 int i;
835
836 for (i = 0; i < mp_irq_entries; i++) {
837 int lbus = mp_irqs[i].mpc_srcbus;
838
73b2961b 839 if (test_bit(lbus, mp_bus_not_pci) &&
fcfd636a
EB
840 (mp_irqs[i].mpc_irqtype == type) &&
841 (mp_irqs[i].mpc_srcbusirq == irq))
842 break;
843 }
844 if (i < mp_irq_entries) {
845 int apic;
846 for(apic = 0; apic < nr_ioapics; apic++) {
847 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
848 return apic;
849 }
850 }
851
852 return -1;
853}
854
1da177e4
LT
855/*
856 * Find a specific PCI IRQ entry.
857 * Not an __init, possibly needed by modules
858 */
859static int pin_2_irq(int idx, int apic, int pin);
860
861int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
862{
863 int apic, i, best_guess = -1;
864
865 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
866 "slot:%d, pin:%d.\n", bus, slot, pin);
867 if (mp_bus_id_to_pci_bus[bus] == -1) {
868 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
869 return -1;
870 }
871 for (i = 0; i < mp_irq_entries; i++) {
872 int lbus = mp_irqs[i].mpc_srcbus;
873
874 for (apic = 0; apic < nr_ioapics; apic++)
875 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
876 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
877 break;
878
47cab822 879 if (!test_bit(lbus, mp_bus_not_pci) &&
1da177e4
LT
880 !mp_irqs[i].mpc_irqtype &&
881 (bus == lbus) &&
882 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
883 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
884
885 if (!(apic || IO_APIC_IRQ(irq)))
886 continue;
887
888 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
889 return irq;
890 /*
891 * Use the first all-but-pin matching entry as a
892 * best-guess fuzzy result for broken mptables.
893 */
894 if (best_guess < 0)
895 best_guess = irq;
896 }
897 }
898 return best_guess;
899}
129f6946 900EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1da177e4
LT
901
902/*
903 * This function currently is only a helper for the i386 smp boot process where
904 * we need to reprogram the ioredtbls to cater for the cpus which have come online
905 * so mask in all cases should simply be TARGET_CPUS
906 */
54d5d424 907#ifdef CONFIG_SMP
1da177e4
LT
908void __init setup_ioapic_dest(void)
909{
910 int pin, ioapic, irq, irq_entry;
911
912 if (skip_ioapic_setup == 1)
913 return;
914
915 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
916 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
917 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
918 if (irq_entry == -1)
919 continue;
920 irq = pin_2_irq(irq_entry, ioapic, pin);
921 set_ioapic_affinity_irq(irq, TARGET_CPUS);
922 }
923
924 }
925}
54d5d424 926#endif
1da177e4 927
c0a282c2 928#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1da177e4
LT
929/*
930 * EISA Edge/Level control register, ELCR
931 */
932static int EISA_ELCR(unsigned int irq)
933{
934 if (irq < 16) {
935 unsigned int port = 0x4d0 + (irq >> 3);
936 return (inb(port) >> (irq & 7)) & 1;
937 }
938 apic_printk(APIC_VERBOSE, KERN_INFO
939 "Broken MPtable reports ISA irq %d\n", irq);
940 return 0;
941}
c0a282c2 942#endif
1da177e4 943
6728801d
AS
944/* ISA interrupts are always polarity zero edge triggered,
945 * when listed as conforming in the MP table. */
946
947#define default_ISA_trigger(idx) (0)
948#define default_ISA_polarity(idx) (0)
949
1da177e4
LT
950/* EISA interrupts are always polarity zero and can be edge or level
951 * trigger depending on the ELCR value. If an interrupt is listed as
952 * EISA conforming in the MP table, that means its trigger type must
953 * be read in from the ELCR */
954
955#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
6728801d 956#define default_EISA_polarity(idx) default_ISA_polarity(idx)
1da177e4
LT
957
958/* PCI interrupts are always polarity one level triggered,
959 * when listed as conforming in the MP table. */
960
961#define default_PCI_trigger(idx) (1)
962#define default_PCI_polarity(idx) (1)
963
964/* MCA interrupts are always polarity zero level triggered,
965 * when listed as conforming in the MP table. */
966
967#define default_MCA_trigger(idx) (1)
6728801d 968#define default_MCA_polarity(idx) default_ISA_polarity(idx)
1da177e4 969
61fd47e0 970static int MPBIOS_polarity(int idx)
1da177e4
LT
971{
972 int bus = mp_irqs[idx].mpc_srcbus;
973 int polarity;
974
975 /*
976 * Determine IRQ line polarity (high active or low active):
977 */
978 switch (mp_irqs[idx].mpc_irqflag & 3)
979 {
980 case 0: /* conforms, ie. bus-type dependent polarity */
981 {
6728801d
AS
982 polarity = test_bit(bus, mp_bus_not_pci)?
983 default_ISA_polarity(idx):
984 default_PCI_polarity(idx);
1da177e4
LT
985 break;
986 }
987 case 1: /* high active */
988 {
989 polarity = 0;
990 break;
991 }
992 case 2: /* reserved */
993 {
994 printk(KERN_WARNING "broken BIOS!!\n");
995 polarity = 1;
996 break;
997 }
998 case 3: /* low active */
999 {
1000 polarity = 1;
1001 break;
1002 }
1003 default: /* invalid */
1004 {
1005 printk(KERN_WARNING "broken BIOS!!\n");
1006 polarity = 1;
1007 break;
1008 }
1009 }
1010 return polarity;
1011}
1012
1013static int MPBIOS_trigger(int idx)
1014{
1015 int bus = mp_irqs[idx].mpc_srcbus;
1016 int trigger;
1017
1018 /*
1019 * Determine IRQ trigger mode (edge or level sensitive):
1020 */
1021 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
1022 {
1023 case 0: /* conforms, ie. bus-type dependent */
1024 {
9c0076cb
AS
1025 trigger = test_bit(bus, mp_bus_not_pci)?
1026 default_ISA_trigger(idx):
1027 default_PCI_trigger(idx);
c0a282c2 1028#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1da177e4
LT
1029 switch (mp_bus_id_to_type[bus])
1030 {
1031 case MP_BUS_ISA: /* ISA pin */
1032 {
9c0076cb 1033 /* set before the switch */
1da177e4
LT
1034 break;
1035 }
1036 case MP_BUS_EISA: /* EISA pin */
1037 {
1038 trigger = default_EISA_trigger(idx);
1039 break;
1040 }
1041 case MP_BUS_PCI: /* PCI pin */
1042 {
9c0076cb 1043 /* set before the switch */
1da177e4
LT
1044 break;
1045 }
1046 case MP_BUS_MCA: /* MCA pin */
1047 {
1048 trigger = default_MCA_trigger(idx);
1049 break;
1050 }
1da177e4
LT
1051 default:
1052 {
1053 printk(KERN_WARNING "broken BIOS!!\n");
1054 trigger = 1;
1055 break;
1056 }
1057 }
c0a282c2 1058#endif
1da177e4
LT
1059 break;
1060 }
1061 case 1: /* edge */
1062 {
1063 trigger = 0;
1064 break;
1065 }
1066 case 2: /* reserved */
1067 {
1068 printk(KERN_WARNING "broken BIOS!!\n");
1069 trigger = 1;
1070 break;
1071 }
1072 case 3: /* level */
1073 {
1074 trigger = 1;
1075 break;
1076 }
1077 default: /* invalid */
1078 {
1079 printk(KERN_WARNING "broken BIOS!!\n");
1080 trigger = 0;
1081 break;
1082 }
1083 }
1084 return trigger;
1085}
1086
1087static inline int irq_polarity(int idx)
1088{
1089 return MPBIOS_polarity(idx);
1090}
1091
1092static inline int irq_trigger(int idx)
1093{
1094 return MPBIOS_trigger(idx);
1095}
1096
1097static int pin_2_irq(int idx, int apic, int pin)
1098{
1099 int irq, i;
1100 int bus = mp_irqs[idx].mpc_srcbus;
1101
1102 /*
1103 * Debugging check, we are in big trouble if this message pops up!
1104 */
1105 if (mp_irqs[idx].mpc_dstirq != pin)
1106 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1107
643befed
AS
1108 if (test_bit(bus, mp_bus_not_pci))
1109 irq = mp_irqs[idx].mpc_srcbusirq;
1110 else {
1111 /*
1112 * PCI IRQs are mapped in order
1113 */
1114 i = irq = 0;
1115 while (i < apic)
1116 irq += nr_ioapic_registers[i++];
1117 irq += pin;
1da177e4 1118
643befed
AS
1119 /*
1120 * For MPS mode, so far only needed by ES7000 platform
1121 */
1122 if (ioapic_renumber_irq)
1123 irq = ioapic_renumber_irq(apic, irq);
1da177e4
LT
1124 }
1125
1126 /*
1127 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1128 */
1129 if ((pin >= 16) && (pin <= 23)) {
1130 if (pirq_entries[pin-16] != -1) {
1131 if (!pirq_entries[pin-16]) {
1132 apic_printk(APIC_VERBOSE, KERN_DEBUG
1133 "disabling PIRQ%d\n", pin-16);
1134 } else {
1135 irq = pirq_entries[pin-16];
1136 apic_printk(APIC_VERBOSE, KERN_DEBUG
1137 "using PIRQ%d -> IRQ %d\n",
1138 pin-16, irq);
1139 }
1140 }
1141 }
1142 return irq;
1143}
1144
1145static inline int IO_APIC_irq_trigger(int irq)
1146{
1147 int apic, idx, pin;
1148
1149 for (apic = 0; apic < nr_ioapics; apic++) {
1150 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1151 idx = find_irq_entry(apic,pin,mp_INT);
1152 if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
1153 return irq_trigger(idx);
1154 }
1155 }
1156 /*
1157 * nonexistent IRQs are edge default
1158 */
1159 return 0;
1160}
1161
1162/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
7e95b593 1163static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
1da177e4 1164
ace80ab7 1165static int __assign_irq_vector(int irq)
1da177e4 1166{
8339f000 1167 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
dbeb2be2 1168 int vector, offset;
1da177e4 1169
ace80ab7 1170 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
0a1ad60d 1171
b940d22d
EB
1172 if (irq_vector[irq] > 0)
1173 return irq_vector[irq];
ace80ab7 1174
0a1ad60d 1175 vector = current_vector;
8339f000
EB
1176 offset = current_offset;
1177next:
1178 vector += 8;
1179 if (vector >= FIRST_SYSTEM_VECTOR) {
1180 offset = (offset + 1) % 8;
1181 vector = FIRST_DEVICE_VECTOR + offset;
1182 }
1183 if (vector == current_vector)
1184 return -ENOSPC;
dbeb2be2 1185 if (test_and_set_bit(vector, used_vectors))
8339f000 1186 goto next;
8339f000
EB
1187
1188 current_vector = vector;
1189 current_offset = offset;
b940d22d 1190 irq_vector[irq] = vector;
ace80ab7
EB
1191
1192 return vector;
1193}
0a1ad60d 1194
ace80ab7
EB
1195static int assign_irq_vector(int irq)
1196{
1197 unsigned long flags;
1198 int vector;
1199
1200 spin_lock_irqsave(&vector_lock, flags);
1201 vector = __assign_irq_vector(irq);
26a3c49c 1202 spin_unlock_irqrestore(&vector_lock, flags);
1da177e4 1203
0a1ad60d 1204 return vector;
1da177e4 1205}
f5b9ed7a 1206static struct irq_chip ioapic_chip;
1da177e4
LT
1207
1208#define IOAPIC_AUTO -1
1209#define IOAPIC_EDGE 0
1210#define IOAPIC_LEVEL 1
1211
d1bef4ed 1212static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
1da177e4 1213{
6ebcc00e 1214 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
cc75b92d
TG
1215 trigger == IOAPIC_LEVEL) {
1216 irq_desc[irq].status |= IRQ_LEVEL;
a460e745
IM
1217 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1218 handle_fasteoi_irq, "fasteoi");
cc75b92d
TG
1219 } else {
1220 irq_desc[irq].status &= ~IRQ_LEVEL;
a460e745
IM
1221 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1222 handle_edge_irq, "edge");
cc75b92d 1223 }
ace80ab7 1224 set_intr_gate(vector, interrupt[irq]);
1da177e4
LT
1225}
1226
1227static void __init setup_IO_APIC_irqs(void)
1228{
1229 struct IO_APIC_route_entry entry;
1230 int apic, pin, idx, irq, first_notcon = 1, vector;
1da177e4
LT
1231
1232 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1233
1234 for (apic = 0; apic < nr_ioapics; apic++) {
1235 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1236
1237 /*
1238 * add it to the IO-APIC irq-routing table:
1239 */
1240 memset(&entry,0,sizeof(entry));
1241
1242 entry.delivery_mode = INT_DELIVERY_MODE;
1243 entry.dest_mode = INT_DEST_MODE;
1244 entry.mask = 0; /* enable IRQ */
1245 entry.dest.logical.logical_dest =
1246 cpu_mask_to_apicid(TARGET_CPUS);
1247
1248 idx = find_irq_entry(apic,pin,mp_INT);
1249 if (idx == -1) {
1250 if (first_notcon) {
1251 apic_printk(APIC_VERBOSE, KERN_DEBUG
1252 " IO-APIC (apicid-pin) %d-%d",
1253 mp_ioapics[apic].mpc_apicid,
1254 pin);
1255 first_notcon = 0;
1256 } else
1257 apic_printk(APIC_VERBOSE, ", %d-%d",
1258 mp_ioapics[apic].mpc_apicid, pin);
1259 continue;
1260 }
1261
20d225b9
YL
1262 if (!first_notcon) {
1263 apic_printk(APIC_VERBOSE, " not connected.\n");
1264 first_notcon = 1;
1265 }
1266
1da177e4
LT
1267 entry.trigger = irq_trigger(idx);
1268 entry.polarity = irq_polarity(idx);
1269
1270 if (irq_trigger(idx)) {
1271 entry.trigger = 1;
1272 entry.mask = 1;
1273 }
1274
1275 irq = pin_2_irq(idx, apic, pin);
1276 /*
1277 * skip adding the timer int on secondary nodes, which causes
1278 * a small but painful rift in the time-space continuum
1279 */
1280 if (multi_timer_check(apic, irq))
1281 continue;
1282 else
1283 add_pin_to_irq(irq, apic, pin);
1284
1285 if (!apic && !IO_APIC_IRQ(irq))
1286 continue;
1287
1288 if (IO_APIC_IRQ(irq)) {
1289 vector = assign_irq_vector(irq);
1290 entry.vector = vector;
1291 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
1292
1293 if (!apic && (irq < 16))
1294 disable_8259A_irq(irq);
1295 }
a2249cba 1296 ioapic_write_entry(apic, pin, entry);
1da177e4
LT
1297 }
1298 }
1299
1300 if (!first_notcon)
1301 apic_printk(APIC_VERBOSE, " not connected.\n");
1302}
1303
1304/*
f7633ce5 1305 * Set up the timer pin, possibly with the 8259A-master behind.
1da177e4 1306 */
f7633ce5
MR
1307static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1308 int vector)
1da177e4
LT
1309{
1310 struct IO_APIC_route_entry entry;
1da177e4
LT
1311
1312 memset(&entry,0,sizeof(entry));
1313
1da177e4
LT
1314 /*
1315 * We use logical delivery to get the timer IRQ
1316 * to the first CPU.
1317 */
1318 entry.dest_mode = INT_DEST_MODE;
1319 entry.mask = 0; /* unmask IRQ now */
1320 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1321 entry.delivery_mode = INT_DELIVERY_MODE;
1322 entry.polarity = 0;
1323 entry.trigger = 0;
1324 entry.vector = vector;
1325
1326 /*
1327 * The timer IRQ doesn't have to know that behind the
f7633ce5 1328 * scene we may have a 8259A-master in AEOI mode ...
1da177e4 1329 */
f0825262 1330 ioapic_register_intr(0, vector, IOAPIC_EDGE);
1da177e4
LT
1331
1332 /*
1333 * Add it to the IO-APIC irq-routing table:
1334 */
cf4c6a2f 1335 ioapic_write_entry(apic, pin, entry);
1da177e4
LT
1336}
1337
1da177e4
LT
1338void __init print_IO_APIC(void)
1339{
1340 int apic, i;
1341 union IO_APIC_reg_00 reg_00;
1342 union IO_APIC_reg_01 reg_01;
1343 union IO_APIC_reg_02 reg_02;
1344 union IO_APIC_reg_03 reg_03;
1345 unsigned long flags;
1346
1347 if (apic_verbosity == APIC_QUIET)
1348 return;
1349
1350 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1351 for (i = 0; i < nr_ioapics; i++)
1352 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1353 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
1354
1355 /*
1356 * We are a bit conservative about what we expect. We have to
1357 * know about every hardware change ASAP.
1358 */
1359 printk(KERN_INFO "testing the IO APIC.......................\n");
1360
1361 for (apic = 0; apic < nr_ioapics; apic++) {
1362
1363 spin_lock_irqsave(&ioapic_lock, flags);
1364 reg_00.raw = io_apic_read(apic, 0);
1365 reg_01.raw = io_apic_read(apic, 1);
1366 if (reg_01.bits.version >= 0x10)
1367 reg_02.raw = io_apic_read(apic, 2);
1368 if (reg_01.bits.version >= 0x20)
1369 reg_03.raw = io_apic_read(apic, 3);
1370 spin_unlock_irqrestore(&ioapic_lock, flags);
1371
1372 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
1373 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1374 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1375 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1376 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1da177e4
LT
1377
1378 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1379 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1da177e4
LT
1380
1381 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1382 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1da177e4
LT
1383
1384 /*
1385 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1386 * but the value of reg_02 is read as the previous read register
1387 * value, so ignore it if reg_02 == reg_01.
1388 */
1389 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1390 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1391 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1da177e4
LT
1392 }
1393
1394 /*
1395 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1396 * or reg_03, but the value of reg_0[23] is read as the previous read
1397 * register value, so ignore it if reg_03 == reg_0[12].
1398 */
1399 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1400 reg_03.raw != reg_01.raw) {
1401 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1402 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1da177e4
LT
1403 }
1404
1405 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1406
1407 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1408 " Stat Dest Deli Vect: \n");
1409
1410 for (i = 0; i <= reg_01.bits.entries; i++) {
1411 struct IO_APIC_route_entry entry;
1412
cf4c6a2f 1413 entry = ioapic_read_entry(apic, i);
1da177e4
LT
1414
1415 printk(KERN_DEBUG " %02x %03X %02X ",
1416 i,
1417 entry.dest.logical.logical_dest,
1418 entry.dest.physical.physical_dest
1419 );
1420
1421 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1422 entry.mask,
1423 entry.trigger,
1424 entry.irr,
1425 entry.polarity,
1426 entry.delivery_status,
1427 entry.dest_mode,
1428 entry.delivery_mode,
1429 entry.vector
1430 );
1431 }
1432 }
1da177e4
LT
1433 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1434 for (i = 0; i < NR_IRQS; i++) {
1435 struct irq_pin_list *entry = irq_2_pin + i;
1436 if (entry->pin < 0)
1437 continue;
ace80ab7 1438 printk(KERN_DEBUG "IRQ%d ", i);
1da177e4
LT
1439 for (;;) {
1440 printk("-> %d:%d", entry->apic, entry->pin);
1441 if (!entry->next)
1442 break;
1443 entry = irq_2_pin + entry->next;
1444 }
1445 printk("\n");
1446 }
1447
1448 printk(KERN_INFO ".................................... done.\n");
1449
1450 return;
1451}
1452
1453#if 0
1454
1455static void print_APIC_bitfield (int base)
1456{
1457 unsigned int v;
1458 int i, j;
1459
1460 if (apic_verbosity == APIC_QUIET)
1461 return;
1462
1463 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1464 for (i = 0; i < 8; i++) {
1465 v = apic_read(base + i*0x10);
1466 for (j = 0; j < 32; j++) {
1467 if (v & (1<<j))
1468 printk("1");
1469 else
1470 printk("0");
1471 }
1472 printk("\n");
1473 }
1474}
1475
1476void /*__init*/ print_local_APIC(void * dummy)
1477{
1478 unsigned int v, ver, maxlvt;
1479
1480 if (apic_verbosity == APIC_QUIET)
1481 return;
1482
1483 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1484 smp_processor_id(), hard_smp_processor_id());
05f2d12c
JS
1485 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
1486 GET_APIC_ID(read_apic_id()));
1da177e4
LT
1487 v = apic_read(APIC_LVR);
1488 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1489 ver = GET_APIC_VERSION(v);
e05d723f 1490 maxlvt = lapic_get_maxlvt();
1da177e4
LT
1491
1492 v = apic_read(APIC_TASKPRI);
1493 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1494
1495 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1496 v = apic_read(APIC_ARBPRI);
1497 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1498 v & APIC_ARBPRI_MASK);
1499 v = apic_read(APIC_PROCPRI);
1500 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1501 }
1502
1503 v = apic_read(APIC_EOI);
1504 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1505 v = apic_read(APIC_RRR);
1506 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1507 v = apic_read(APIC_LDR);
1508 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1509 v = apic_read(APIC_DFR);
1510 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1511 v = apic_read(APIC_SPIV);
1512 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1513
1514 printk(KERN_DEBUG "... APIC ISR field:\n");
1515 print_APIC_bitfield(APIC_ISR);
1516 printk(KERN_DEBUG "... APIC TMR field:\n");
1517 print_APIC_bitfield(APIC_TMR);
1518 printk(KERN_DEBUG "... APIC IRR field:\n");
1519 print_APIC_bitfield(APIC_IRR);
1520
1521 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1522 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1523 apic_write(APIC_ESR, 0);
1524 v = apic_read(APIC_ESR);
1525 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1526 }
1527
1528 v = apic_read(APIC_ICR);
1529 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1530 v = apic_read(APIC_ICR2);
1531 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1532
1533 v = apic_read(APIC_LVTT);
1534 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1535
1536 if (maxlvt > 3) { /* PC is LVT#4. */
1537 v = apic_read(APIC_LVTPC);
1538 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1539 }
1540 v = apic_read(APIC_LVT0);
1541 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1542 v = apic_read(APIC_LVT1);
1543 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1544
1545 if (maxlvt > 2) { /* ERR is LVT#3. */
1546 v = apic_read(APIC_LVTERR);
1547 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1548 }
1549
1550 v = apic_read(APIC_TMICT);
1551 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1552 v = apic_read(APIC_TMCCT);
1553 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1554 v = apic_read(APIC_TDCR);
1555 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1556 printk("\n");
1557}
1558
1559void print_all_local_APICs (void)
1560{
1561 on_each_cpu(print_local_APIC, NULL, 1, 1);
1562}
1563
1564void /*__init*/ print_PIC(void)
1565{
1da177e4
LT
1566 unsigned int v;
1567 unsigned long flags;
1568
1569 if (apic_verbosity == APIC_QUIET)
1570 return;
1571
1572 printk(KERN_DEBUG "\nprinting PIC contents\n");
1573
1574 spin_lock_irqsave(&i8259A_lock, flags);
1575
1576 v = inb(0xa1) << 8 | inb(0x21);
1577 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1578
1579 v = inb(0xa0) << 8 | inb(0x20);
1580 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1581
1582 outb(0x0b,0xa0);
1583 outb(0x0b,0x20);
1584 v = inb(0xa0) << 8 | inb(0x20);
1585 outb(0x0a,0xa0);
1586 outb(0x0a,0x20);
1587
1588 spin_unlock_irqrestore(&i8259A_lock, flags);
1589
1590 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1591
1592 v = inb(0x4d1) << 8 | inb(0x4d0);
1593 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1594}
1595
1596#endif /* 0 */
1597
1598static void __init enable_IO_APIC(void)
1599{
1600 union IO_APIC_reg_01 reg_01;
fcfd636a
EB
1601 int i8259_apic, i8259_pin;
1602 int i, apic;
1da177e4
LT
1603 unsigned long flags;
1604
1605 for (i = 0; i < PIN_MAP_SIZE; i++) {
1606 irq_2_pin[i].pin = -1;
1607 irq_2_pin[i].next = 0;
1608 }
1609 if (!pirqs_enabled)
1610 for (i = 0; i < MAX_PIRQS; i++)
1611 pirq_entries[i] = -1;
1612
1613 /*
1614 * The number of IO-APIC IRQ registers (== #pins):
1615 */
fcfd636a 1616 for (apic = 0; apic < nr_ioapics; apic++) {
1da177e4 1617 spin_lock_irqsave(&ioapic_lock, flags);
fcfd636a 1618 reg_01.raw = io_apic_read(apic, 1);
1da177e4 1619 spin_unlock_irqrestore(&ioapic_lock, flags);
fcfd636a
EB
1620 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1621 }
1622 for(apic = 0; apic < nr_ioapics; apic++) {
1623 int pin;
1624 /* See if any of the pins is in ExtINT mode */
1008fddc 1625 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
fcfd636a 1626 struct IO_APIC_route_entry entry;
cf4c6a2f 1627 entry = ioapic_read_entry(apic, pin);
fcfd636a
EB
1628
1629
1630 /* If the interrupt line is enabled and in ExtInt mode
1631 * I have found the pin where the i8259 is connected.
1632 */
1633 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1634 ioapic_i8259.apic = apic;
1635 ioapic_i8259.pin = pin;
1636 goto found_i8259;
1637 }
1638 }
1639 }
1640 found_i8259:
1641 /* Look to see what if the MP table has reported the ExtINT */
1642 /* If we could not find the appropriate pin by looking at the ioapic
1643 * the i8259 probably is not connected the ioapic but give the
1644 * mptable a chance anyway.
1645 */
1646 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1647 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1648 /* Trust the MP table if nothing is setup in the hardware */
1649 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1650 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1651 ioapic_i8259.pin = i8259_pin;
1652 ioapic_i8259.apic = i8259_apic;
1653 }
1654 /* Complain if the MP table and the hardware disagree */
1655 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1656 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1657 {
1658 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1da177e4
LT
1659 }
1660
1661 /*
1662 * Do not trust the IO-APIC being empty at bootup
1663 */
1664 clear_IO_APIC();
1665}
1666
1667/*
1668 * Not an __init, needed by the reboot code
1669 */
1670void disable_IO_APIC(void)
1671{
1672 /*
1673 * Clear the IO-APIC before rebooting:
1674 */
1675 clear_IO_APIC();
1676
650927ef 1677 /*
0b968d23 1678 * If the i8259 is routed through an IOAPIC
650927ef 1679 * Put that IOAPIC in virtual wire mode
0b968d23 1680 * so legacy interrupts can be delivered.
650927ef 1681 */
fcfd636a 1682 if (ioapic_i8259.pin != -1) {
650927ef 1683 struct IO_APIC_route_entry entry;
650927ef
EB
1684
1685 memset(&entry, 0, sizeof(entry));
1686 entry.mask = 0; /* Enabled */
1687 entry.trigger = 0; /* Edge */
1688 entry.irr = 0;
1689 entry.polarity = 0; /* High */
1690 entry.delivery_status = 0;
1691 entry.dest_mode = 0; /* Physical */
fcfd636a 1692 entry.delivery_mode = dest_ExtINT; /* ExtInt */
650927ef 1693 entry.vector = 0;
76865c3f 1694 entry.dest.physical.physical_dest =
05f2d12c 1695 GET_APIC_ID(read_apic_id());
650927ef
EB
1696
1697 /*
1698 * Add it to the IO-APIC irq-routing table:
1699 */
cf4c6a2f 1700 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
650927ef 1701 }
fcfd636a 1702 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1da177e4
LT
1703}
1704
1705/*
1706 * function to set the IO-APIC physical IDs based on the
1707 * values stored in the MPC table.
1708 *
1709 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1710 */
1711
1712#ifndef CONFIG_X86_NUMAQ
1713static void __init setup_ioapic_ids_from_mpc(void)
1714{
1715 union IO_APIC_reg_00 reg_00;
1716 physid_mask_t phys_id_present_map;
1717 int apic;
1718 int i;
1719 unsigned char old_id;
1720 unsigned long flags;
1721
ca05fea6
NP
1722 /*
1723 * Don't check I/O APIC IDs for xAPIC systems. They have
1724 * no meaning without the serial APIC bus.
1725 */
7c5c1e42
SL
1726 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1727 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
ca05fea6 1728 return;
1da177e4
LT
1729 /*
1730 * This is broken; anything with a real cpu count has to
1731 * circumvent this idiocy regardless.
1732 */
1733 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1734
1735 /*
1736 * Set the IOAPIC ID to the value stored in the MPC table.
1737 */
1738 for (apic = 0; apic < nr_ioapics; apic++) {
1739
1740 /* Read the register 0 value */
1741 spin_lock_irqsave(&ioapic_lock, flags);
1742 reg_00.raw = io_apic_read(apic, 0);
1743 spin_unlock_irqrestore(&ioapic_lock, flags);
1744
1745 old_id = mp_ioapics[apic].mpc_apicid;
1746
1747 if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) {
1748 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1749 apic, mp_ioapics[apic].mpc_apicid);
1750 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1751 reg_00.bits.ID);
1752 mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
1753 }
1754
1da177e4
LT
1755 /*
1756 * Sanity check, is the ID really free? Every APIC in a
1757 * system must have a unique ID or we get lots of nice
1758 * 'stuck on smp_invalidate_needed IPI wait' messages.
1759 */
1760 if (check_apicid_used(phys_id_present_map,
1761 mp_ioapics[apic].mpc_apicid)) {
1762 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1763 apic, mp_ioapics[apic].mpc_apicid);
1764 for (i = 0; i < get_physical_broadcast(); i++)
1765 if (!physid_isset(i, phys_id_present_map))
1766 break;
1767 if (i >= get_physical_broadcast())
1768 panic("Max APIC ID exceeded!\n");
1769 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1770 i);
1771 physid_set(i, phys_id_present_map);
1772 mp_ioapics[apic].mpc_apicid = i;
1773 } else {
1774 physid_mask_t tmp;
1775 tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid);
1776 apic_printk(APIC_VERBOSE, "Setting %d in the "
1777 "phys_id_present_map\n",
1778 mp_ioapics[apic].mpc_apicid);
1779 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1780 }
1781
1782
1783 /*
1784 * We need to adjust the IRQ routing table
1785 * if the ID changed.
1786 */
1787 if (old_id != mp_ioapics[apic].mpc_apicid)
1788 for (i = 0; i < mp_irq_entries; i++)
1789 if (mp_irqs[i].mpc_dstapic == old_id)
1790 mp_irqs[i].mpc_dstapic
1791 = mp_ioapics[apic].mpc_apicid;
1792
1793 /*
1794 * Read the right value from the MPC table and
1795 * write it into the ID register.
1796 */
1797 apic_printk(APIC_VERBOSE, KERN_INFO
1798 "...changing IO-APIC physical APIC ID to %d ...",
1799 mp_ioapics[apic].mpc_apicid);
1800
1801 reg_00.bits.ID = mp_ioapics[apic].mpc_apicid;
1802 spin_lock_irqsave(&ioapic_lock, flags);
1803 io_apic_write(apic, 0, reg_00.raw);
1804 spin_unlock_irqrestore(&ioapic_lock, flags);
1805
1806 /*
1807 * Sanity check
1808 */
1809 spin_lock_irqsave(&ioapic_lock, flags);
1810 reg_00.raw = io_apic_read(apic, 0);
1811 spin_unlock_irqrestore(&ioapic_lock, flags);
1812 if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid)
1813 printk("could not set ID!\n");
1814 else
1815 apic_printk(APIC_VERBOSE, " ok.\n");
1816 }
1817}
1818#else
1819static void __init setup_ioapic_ids_from_mpc(void) { }
1820#endif
1821
7ce0bcfd 1822int no_timer_check __initdata;
8542b200
ZA
1823
1824static int __init notimercheck(char *s)
1825{
1826 no_timer_check = 1;
1827 return 1;
1828}
1829__setup("no_timer_check", notimercheck);
1830
1da177e4
LT
1831/*
1832 * There is a nasty bug in some older SMP boards, their mptable lies
1833 * about the timer IRQ. We do the following to work around the situation:
1834 *
1835 * - timer IRQ defaults to IO-APIC IRQ
1836 * - if this function detects that timer IRQs are defunct, then we fall
1837 * back to ISA timer IRQs
1838 */
f0a7a5c9 1839static int __init timer_irq_works(void)
1da177e4
LT
1840{
1841 unsigned long t1 = jiffies;
4aae0702 1842 unsigned long flags;
1da177e4 1843
8542b200
ZA
1844 if (no_timer_check)
1845 return 1;
1846
4aae0702 1847 local_save_flags(flags);
1da177e4
LT
1848 local_irq_enable();
1849 /* Let ten ticks pass... */
1850 mdelay((10 * 1000) / HZ);
4aae0702 1851 local_irq_restore(flags);
1da177e4
LT
1852
1853 /*
1854 * Expect a few ticks at least, to be sure some possible
1855 * glue logic does not lock up after one or two first
1856 * ticks in a non-ExtINT mode. Also the local APIC
1857 * might have cached one ExtINT interrupt. Finally, at
1858 * least one tick may be lost due to delays.
1859 */
1d16b53e 1860 if (time_after(jiffies, t1 + 4))
1da177e4
LT
1861 return 1;
1862
1863 return 0;
1864}
1865
1866/*
1867 * In the SMP+IOAPIC case it might happen that there are an unspecified
1868 * number of pending IRQ events unhandled. These cases are very rare,
1869 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1870 * better to do it this way as thus we do not have to be aware of
1871 * 'pending' interrupts in the IRQ path, except at this point.
1872 */
1873/*
1874 * Edge triggered needs to resend any interrupt
1875 * that was delayed but this is now handled in the device
1876 * independent code.
1877 */
1878
1879/*
f5b9ed7a
IM
1880 * Startup quirk:
1881 *
1da177e4
LT
1882 * Starting up a edge-triggered IO-APIC interrupt is
1883 * nasty - we need to make sure that we get the edge.
1884 * If it is already asserted for some reason, we need
1885 * return 1 to indicate that is was pending.
1886 *
1887 * This is not complete - we should be able to fake
1888 * an edge even if it isn't on the 8259A...
f5b9ed7a
IM
1889 *
1890 * (We do this for level-triggered IRQs too - it cannot hurt.)
1da177e4 1891 */
f5b9ed7a 1892static unsigned int startup_ioapic_irq(unsigned int irq)
1da177e4
LT
1893{
1894 int was_pending = 0;
1895 unsigned long flags;
1896
1897 spin_lock_irqsave(&ioapic_lock, flags);
1898 if (irq < 16) {
1899 disable_8259A_irq(irq);
1900 if (i8259A_irq_pending(irq))
1901 was_pending = 1;
1902 }
1903 __unmask_IO_APIC_irq(irq);
1904 spin_unlock_irqrestore(&ioapic_lock, flags);
1905
1906 return was_pending;
1907}
1908
f5b9ed7a 1909static void ack_ioapic_irq(unsigned int irq)
1da177e4 1910{
ace80ab7 1911 move_native_irq(irq);
1da177e4
LT
1912 ack_APIC_irq();
1913}
1914
f5b9ed7a 1915static void ack_ioapic_quirk_irq(unsigned int irq)
1da177e4
LT
1916{
1917 unsigned long v;
1918 int i;
1919
ace80ab7 1920 move_native_irq(irq);
1da177e4
LT
1921/*
1922 * It appears there is an erratum which affects at least version 0x11
1923 * of I/O APIC (that's the 82093AA and cores integrated into various
1924 * chipsets). Under certain conditions a level-triggered interrupt is
1925 * erroneously delivered as edge-triggered one but the respective IRR
1926 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1927 * message but it will never arrive and further interrupts are blocked
1928 * from the source. The exact reason is so far unknown, but the
1929 * phenomenon was observed when two consecutive interrupt requests
1930 * from a given source get delivered to the same CPU and the source is
1931 * temporarily disabled in between.
1932 *
1933 * A workaround is to simulate an EOI message manually. We achieve it
1934 * by setting the trigger mode to edge and then to level when the edge
1935 * trigger mode gets detected in the TMR of a local APIC for a
1936 * level-triggered interrupt. We mask the source for the time of the
1937 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1938 * The idea is from Manfred Spraul. --macro
1939 */
b940d22d 1940 i = irq_vector[irq];
1da177e4
LT
1941
1942 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1943
1944 ack_APIC_irq();
1945
1946 if (!(v & (1 << (i & 0x1f)))) {
1947 atomic_inc(&irq_mis_count);
1948 spin_lock(&ioapic_lock);
1949 __mask_and_edge_IO_APIC_irq(irq);
1950 __unmask_and_level_IO_APIC_irq(irq);
1951 spin_unlock(&ioapic_lock);
1952 }
1953}
1954
ace80ab7 1955static int ioapic_retrigger_irq(unsigned int irq)
1da177e4 1956{
b940d22d 1957 send_IPI_self(irq_vector[irq]);
c0ad90a3
IM
1958
1959 return 1;
1960}
1961
f5b9ed7a
IM
1962static struct irq_chip ioapic_chip __read_mostly = {
1963 .name = "IO-APIC",
ace80ab7
EB
1964 .startup = startup_ioapic_irq,
1965 .mask = mask_IO_APIC_irq,
1966 .unmask = unmask_IO_APIC_irq,
1967 .ack = ack_ioapic_irq,
1968 .eoi = ack_ioapic_quirk_irq,
54d5d424 1969#ifdef CONFIG_SMP
ace80ab7 1970 .set_affinity = set_ioapic_affinity_irq,
54d5d424 1971#endif
ace80ab7 1972 .retrigger = ioapic_retrigger_irq,
1da177e4
LT
1973};
1974
1da177e4
LT
1975
1976static inline void init_IO_APIC_traps(void)
1977{
1978 int irq;
1979
1980 /*
1981 * NOTE! The local APIC isn't very good at handling
1982 * multiple interrupts at the same interrupt level.
1983 * As the interrupt level is determined by taking the
1984 * vector number and shifting that right by 4, we
1985 * want to spread these out a bit so that they don't
1986 * all fall in the same interrupt level.
1987 *
1988 * Also, we've got to be careful not to trash gate
1989 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1990 */
1991 for (irq = 0; irq < NR_IRQS ; irq++) {
addfc66b 1992 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
1da177e4
LT
1993 /*
1994 * Hmm.. We don't have an entry for this,
1995 * so default to an old-fashioned 8259
1996 * interrupt if we can..
1997 */
1998 if (irq < 16)
1999 make_8259A_irq(irq);
2000 else
2001 /* Strange. Oh, well.. */
f5b9ed7a 2002 irq_desc[irq].chip = &no_irq_chip;
1da177e4
LT
2003 }
2004 }
2005}
2006
f5b9ed7a
IM
2007/*
2008 * The local APIC irq-chip implementation:
2009 */
1da177e4 2010
f5b9ed7a
IM
2011static void ack_apic(unsigned int irq)
2012{
2013 ack_APIC_irq();
1da177e4
LT
2014}
2015
f5b9ed7a 2016static void mask_lapic_irq (unsigned int irq)
1da177e4
LT
2017{
2018 unsigned long v;
2019
2020 v = apic_read(APIC_LVT0);
2021 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2022}
2023
f5b9ed7a 2024static void unmask_lapic_irq (unsigned int irq)
1da177e4 2025{
f5b9ed7a 2026 unsigned long v;
1da177e4 2027
f5b9ed7a
IM
2028 v = apic_read(APIC_LVT0);
2029 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
2030}
1da177e4 2031
f5b9ed7a 2032static struct irq_chip lapic_chip __read_mostly = {
9a1c6192 2033 .name = "local-APIC",
f5b9ed7a
IM
2034 .mask = mask_lapic_irq,
2035 .unmask = unmask_lapic_irq,
2036 .eoi = ack_apic,
1da177e4
LT
2037};
2038
e9427101 2039static void __init setup_nmi(void)
1da177e4
LT
2040{
2041 /*
2042 * Dirty trick to enable the NMI watchdog ...
2043 * We put the 8259A master into AEOI mode and
2044 * unmask on all local APICs LVT0 as NMI.
2045 *
2046 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2047 * is from Maciej W. Rozycki - so we do not have to EOI from
2048 * the NMI handler or the timer interrupt.
2049 */
2050 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2051
e9427101 2052 enable_NMI_through_LVT0();
1da177e4
LT
2053
2054 apic_printk(APIC_VERBOSE, " done.\n");
2055}
2056
2057/*
2058 * This looks a bit hackish but it's about the only one way of sending
2059 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2060 * not support the ExtINT mode, unfortunately. We need to send these
2061 * cycles as some i82489DX-based boards have glue logic that keeps the
2062 * 8259A interrupt line asserted until INTA. --macro
2063 */
28acf285 2064static inline void __init unlock_ExtINT_logic(void)
1da177e4 2065{
fcfd636a 2066 int apic, pin, i;
1da177e4
LT
2067 struct IO_APIC_route_entry entry0, entry1;
2068 unsigned char save_control, save_freq_select;
1da177e4 2069
fcfd636a 2070 pin = find_isa_irq_pin(8, mp_INT);
956fb531
AB
2071 if (pin == -1) {
2072 WARN_ON_ONCE(1);
2073 return;
2074 }
fcfd636a 2075 apic = find_isa_irq_apic(8, mp_INT);
956fb531
AB
2076 if (apic == -1) {
2077 WARN_ON_ONCE(1);
1da177e4 2078 return;
956fb531 2079 }
1da177e4 2080
cf4c6a2f 2081 entry0 = ioapic_read_entry(apic, pin);
fcfd636a 2082 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
2083
2084 memset(&entry1, 0, sizeof(entry1));
2085
2086 entry1.dest_mode = 0; /* physical delivery */
2087 entry1.mask = 0; /* unmask IRQ now */
2088 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2089 entry1.delivery_mode = dest_ExtINT;
2090 entry1.polarity = entry0.polarity;
2091 entry1.trigger = 0;
2092 entry1.vector = 0;
2093
cf4c6a2f 2094 ioapic_write_entry(apic, pin, entry1);
1da177e4
LT
2095
2096 save_control = CMOS_READ(RTC_CONTROL);
2097 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2098 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2099 RTC_FREQ_SELECT);
2100 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2101
2102 i = 100;
2103 while (i-- > 0) {
2104 mdelay(10);
2105 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2106 i -= 10;
2107 }
2108
2109 CMOS_WRITE(save_control, RTC_CONTROL);
2110 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
fcfd636a 2111 clear_IO_APIC_pin(apic, pin);
1da177e4 2112
cf4c6a2f 2113 ioapic_write_entry(apic, pin, entry0);
1da177e4
LT
2114}
2115
2116/*
2117 * This code may look a bit paranoid, but it's supposed to cooperate with
2118 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2119 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2120 * fanatically on his truly buggy board.
2121 */
8542b200 2122static inline void __init check_timer(void)
1da177e4 2123{
fcfd636a 2124 int apic1, pin1, apic2, pin2;
1da177e4 2125 int vector;
a0176e24 2126 unsigned int ver;
4aae0702
IM
2127 unsigned long flags;
2128
2129 local_irq_save(flags);
d4d25dec 2130
a0176e24
IM
2131 ver = apic_read(APIC_LVR);
2132 ver = GET_APIC_VERSION(ver);
2133
1da177e4
LT
2134 /*
2135 * get/set the timer IRQ vector:
2136 */
2137 disable_8259A_irq(0);
2138 vector = assign_irq_vector(0);
2139 set_intr_gate(vector, interrupt[0]);
2140
2141 /*
d11d5794
MR
2142 * As IRQ0 is to be enabled in the 8259A, the virtual
2143 * wire has to be disabled in the local APIC. Also
2144 * timer interrupts need to be acknowledged manually in
2145 * the 8259A for the i82489DX when using the NMI
2146 * watchdog as that APIC treats NMIs as level-triggered.
2147 * The AEOI mode will finish them in the 8259A
2148 * automatically.
1da177e4
LT
2149 */
2150 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2151 init_8259A(1);
d11d5794 2152 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
1da177e4 2153
fcfd636a
EB
2154 pin1 = find_isa_irq_pin(0, mp_INT);
2155 apic1 = find_isa_irq_apic(0, mp_INT);
2156 pin2 = ioapic_i8259.pin;
2157 apic2 = ioapic_i8259.apic;
1da177e4 2158
fcfd636a
EB
2159 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2160 vector, apic1, pin1, apic2, pin2);
1da177e4
LT
2161
2162 if (pin1 != -1) {
2163 /*
2164 * Ok, does IRQ0 through the IOAPIC work?
2165 */
2166 unmask_IO_APIC_irq(0);
2167 if (timer_irq_works()) {
2168 if (nmi_watchdog == NMI_IO_APIC) {
1da177e4
LT
2169 setup_nmi();
2170 enable_8259A_irq(0);
1da177e4 2171 }
66759a01
CE
2172 if (disable_timer_pin_1 > 0)
2173 clear_IO_APIC_pin(0, pin1);
4aae0702 2174 goto out;
1da177e4 2175 }
fcfd636a
EB
2176 clear_IO_APIC_pin(apic1, pin1);
2177 printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to "
2178 "IO-APIC\n");
1da177e4
LT
2179 }
2180
2181 printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
2182 if (pin2 != -1) {
2183 printk("\n..... (found pin %d) ...", pin2);
2184 /*
2185 * legacy devices should be connected to IO APIC #0
2186 */
f7633ce5 2187 setup_timer_IRQ0_pin(apic2, pin2, vector);
24742ece 2188 unmask_IO_APIC_irq(0);
ecd29476 2189 enable_8259A_irq(0);
1da177e4
LT
2190 if (timer_irq_works()) {
2191 printk("works.\n");
35542c5e 2192 timer_through_8259 = 1;
1da177e4 2193 if (pin1 != -1)
fcfd636a 2194 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
1da177e4 2195 else
fcfd636a 2196 add_pin_to_irq(0, apic2, pin2);
1da177e4 2197 if (nmi_watchdog == NMI_IO_APIC) {
60134ebe 2198 disable_8259A_irq(0);
1da177e4 2199 setup_nmi();
60134ebe 2200 enable_8259A_irq(0);
1da177e4 2201 }
4aae0702 2202 goto out;
1da177e4
LT
2203 }
2204 /*
2205 * Cleanup, just in case ...
2206 */
ecd29476 2207 disable_8259A_irq(0);
fcfd636a 2208 clear_IO_APIC_pin(apic2, pin2);
1da177e4
LT
2209 }
2210 printk(" failed.\n");
2211
2212 if (nmi_watchdog == NMI_IO_APIC) {
2213 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
2214 nmi_watchdog = 0;
2215 }
d11d5794 2216 timer_ack = 0;
1da177e4
LT
2217
2218 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2219
a460e745 2220 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
2e188938 2221 "fasteoi");
1da177e4
LT
2222 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2223 enable_8259A_irq(0);
2224
2225 if (timer_irq_works()) {
2226 printk(" works.\n");
4aae0702 2227 goto out;
1da177e4 2228 }
e67465f1 2229 disable_8259A_irq(0);
1da177e4
LT
2230 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2231 printk(" failed.\n");
2232
2233 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2234
1da177e4
LT
2235 init_8259A(0);
2236 make_8259A_irq(0);
2237 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2238
2239 unlock_ExtINT_logic();
2240
2241 if (timer_irq_works()) {
2242 printk(" works.\n");
4aae0702 2243 goto out;
1da177e4
LT
2244 }
2245 printk(" failed :(.\n");
2246 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2247 "report. Then try booting with the 'noapic' option");
4aae0702
IM
2248out:
2249 local_irq_restore(flags);
1da177e4
LT
2250}
2251
2252/*
2253 *
2254 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2255 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2256 * Linux doesn't really care, as it's not actually used
2257 * for any interrupt handling anyway.
2258 */
2259#define PIC_IRQS (1 << PIC_CASCADE_IR)
2260
2261void __init setup_IO_APIC(void)
2262{
dbeb2be2
RR
2263 int i;
2264
2265 /* Reserve all the system vectors. */
2266 for (i = FIRST_SYSTEM_VECTOR; i < NR_VECTORS; i++)
2267 set_bit(i, used_vectors);
2268
1da177e4
LT
2269 enable_IO_APIC();
2270
2271 if (acpi_ioapic)
2272 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2273 else
2274 io_apic_irqs = ~PIC_IRQS;
2275
2276 printk("ENABLING IO-APIC IRQs\n");
2277
2278 /*
2279 * Set up IO-APIC IRQ routing.
2280 */
2281 if (!acpi_ioapic)
2282 setup_ioapic_ids_from_mpc();
2283 sync_Arb_IDs();
2284 setup_IO_APIC_irqs();
2285 init_IO_APIC_traps();
1e4c85f9 2286 check_timer();
1da177e4
LT
2287 if (!acpi_ioapic)
2288 print_IO_APIC();
2289}
2290
2291/*
2292 * Called after all the initialization is done. If we didnt find any
2293 * APIC bugs then we can allow the modify fast path
2294 */
2295
2296static int __init io_apic_bug_finalize(void)
2297{
2298 if(sis_apic_bug == -1)
2299 sis_apic_bug = 0;
2300 return 0;
2301}
2302
2303late_initcall(io_apic_bug_finalize);
2304
2305struct sysfs_ioapic_data {
2306 struct sys_device dev;
2307 struct IO_APIC_route_entry entry[0];
2308};
2309static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2310
438510f6 2311static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1da177e4
LT
2312{
2313 struct IO_APIC_route_entry *entry;
2314 struct sysfs_ioapic_data *data;
1da177e4
LT
2315 int i;
2316
2317 data = container_of(dev, struct sysfs_ioapic_data, dev);
2318 entry = data->entry;
cf4c6a2f
AK
2319 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2320 entry[i] = ioapic_read_entry(dev->id, i);
1da177e4
LT
2321
2322 return 0;
2323}
2324
2325static int ioapic_resume(struct sys_device *dev)
2326{
2327 struct IO_APIC_route_entry *entry;
2328 struct sysfs_ioapic_data *data;
2329 unsigned long flags;
2330 union IO_APIC_reg_00 reg_00;
2331 int i;
2332
2333 data = container_of(dev, struct sysfs_ioapic_data, dev);
2334 entry = data->entry;
2335
2336 spin_lock_irqsave(&ioapic_lock, flags);
2337 reg_00.raw = io_apic_read(dev->id, 0);
2338 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
2339 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
2340 io_apic_write(dev->id, 0, reg_00.raw);
2341 }
1da177e4 2342 spin_unlock_irqrestore(&ioapic_lock, flags);
cf4c6a2f
AK
2343 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2344 ioapic_write_entry(dev->id, i, entry[i]);
1da177e4
LT
2345
2346 return 0;
2347}
2348
2349static struct sysdev_class ioapic_sysdev_class = {
af5ca3f4 2350 .name = "ioapic",
1da177e4
LT
2351 .suspend = ioapic_suspend,
2352 .resume = ioapic_resume,
2353};
2354
2355static int __init ioapic_init_sysfs(void)
2356{
2357 struct sys_device * dev;
2358 int i, size, error = 0;
2359
2360 error = sysdev_class_register(&ioapic_sysdev_class);
2361 if (error)
2362 return error;
2363
2364 for (i = 0; i < nr_ioapics; i++ ) {
2365 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
2366 * sizeof(struct IO_APIC_route_entry);
2367 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
2368 if (!mp_ioapic_data[i]) {
2369 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2370 continue;
2371 }
2372 memset(mp_ioapic_data[i], 0, size);
2373 dev = &mp_ioapic_data[i]->dev;
2374 dev->id = i;
2375 dev->cls = &ioapic_sysdev_class;
2376 error = sysdev_register(dev);
2377 if (error) {
2378 kfree(mp_ioapic_data[i]);
2379 mp_ioapic_data[i] = NULL;
2380 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2381 continue;
2382 }
2383 }
2384
2385 return 0;
2386}
2387
2388device_initcall(ioapic_init_sysfs);
2389
3fc471ed 2390/*
95d77884 2391 * Dynamic irq allocate and deallocation
3fc471ed
EB
2392 */
2393int create_irq(void)
2394{
ace80ab7 2395 /* Allocate an unused irq */
306a22c2 2396 int irq, new, vector = 0;
3fc471ed 2397 unsigned long flags;
3fc471ed 2398
ace80ab7
EB
2399 irq = -ENOSPC;
2400 spin_lock_irqsave(&vector_lock, flags);
2401 for (new = (NR_IRQS - 1); new >= 0; new--) {
2402 if (platform_legacy_irq(new))
2403 continue;
2404 if (irq_vector[new] != 0)
2405 continue;
2406 vector = __assign_irq_vector(new);
2407 if (likely(vector > 0))
2408 irq = new;
2409 break;
2410 }
2411 spin_unlock_irqrestore(&vector_lock, flags);
3fc471ed 2412
ace80ab7 2413 if (irq >= 0) {
3fc471ed 2414 set_intr_gate(vector, interrupt[irq]);
3fc471ed
EB
2415 dynamic_irq_init(irq);
2416 }
2417 return irq;
2418}
2419
2420void destroy_irq(unsigned int irq)
2421{
2422 unsigned long flags;
3fc471ed
EB
2423
2424 dynamic_irq_cleanup(irq);
2425
2426 spin_lock_irqsave(&vector_lock, flags);
9d9ad4b5 2427 clear_bit(irq_vector[irq], used_vectors);
3fc471ed
EB
2428 irq_vector[irq] = 0;
2429 spin_unlock_irqrestore(&vector_lock, flags);
2430}
3fc471ed 2431
2d3fcc1c 2432/*
27b46d76 2433 * MSI message composition
2d3fcc1c
EB
2434 */
2435#ifdef CONFIG_PCI_MSI
3b7d1921 2436static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
2d3fcc1c 2437{
2d3fcc1c
EB
2438 int vector;
2439 unsigned dest;
2440
2441 vector = assign_irq_vector(irq);
2442 if (vector >= 0) {
2443 dest = cpu_mask_to_apicid(TARGET_CPUS);
2444
2445 msg->address_hi = MSI_ADDR_BASE_HI;
2446 msg->address_lo =
2447 MSI_ADDR_BASE_LO |
2448 ((INT_DEST_MODE == 0) ?
2449 MSI_ADDR_DEST_MODE_PHYSICAL:
2450 MSI_ADDR_DEST_MODE_LOGICAL) |
2451 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2452 MSI_ADDR_REDIRECTION_CPU:
2453 MSI_ADDR_REDIRECTION_LOWPRI) |
2454 MSI_ADDR_DEST_ID(dest);
2455
2456 msg->data =
2457 MSI_DATA_TRIGGER_EDGE |
2458 MSI_DATA_LEVEL_ASSERT |
2459 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2460 MSI_DATA_DELIVERY_FIXED:
2461 MSI_DATA_DELIVERY_LOWPRI) |
2462 MSI_DATA_VECTOR(vector);
2463 }
2464 return vector;
2465}
2466
3b7d1921
EB
2467#ifdef CONFIG_SMP
2468static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2d3fcc1c 2469{
3b7d1921
EB
2470 struct msi_msg msg;
2471 unsigned int dest;
2472 cpumask_t tmp;
2d3fcc1c 2473 int vector;
3b7d1921
EB
2474
2475 cpus_and(tmp, mask, cpu_online_map);
2476 if (cpus_empty(tmp))
2477 tmp = TARGET_CPUS;
2d3fcc1c
EB
2478
2479 vector = assign_irq_vector(irq);
3b7d1921
EB
2480 if (vector < 0)
2481 return;
2d3fcc1c 2482
3b7d1921
EB
2483 dest = cpu_mask_to_apicid(mask);
2484
2485 read_msi_msg(irq, &msg);
2486
2487 msg.data &= ~MSI_DATA_VECTOR_MASK;
2488 msg.data |= MSI_DATA_VECTOR(vector);
2489 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2490 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2491
2492 write_msi_msg(irq, &msg);
9f0a5ba5 2493 irq_desc[irq].affinity = mask;
2d3fcc1c 2494}
3b7d1921 2495#endif /* CONFIG_SMP */
2d3fcc1c 2496
3b7d1921
EB
2497/*
2498 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2499 * which implement the MSI or MSI-X Capability Structure.
2500 */
2501static struct irq_chip msi_chip = {
2502 .name = "PCI-MSI",
2503 .unmask = unmask_msi_irq,
2504 .mask = mask_msi_irq,
2505 .ack = ack_ioapic_irq,
2506#ifdef CONFIG_SMP
2507 .set_affinity = set_msi_irq_affinity,
2508#endif
2509 .retrigger = ioapic_retrigger_irq,
2d3fcc1c
EB
2510};
2511
f7feaca7 2512int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
3b7d1921
EB
2513{
2514 struct msi_msg msg;
f7feaca7
EB
2515 int irq, ret;
2516 irq = create_irq();
2517 if (irq < 0)
2518 return irq;
2519
3b7d1921 2520 ret = msi_compose_msg(dev, irq, &msg);
f7feaca7
EB
2521 if (ret < 0) {
2522 destroy_irq(irq);
3b7d1921 2523 return ret;
f7feaca7 2524 }
3b7d1921 2525
7fe3730d 2526 set_irq_msi(irq, desc);
3b7d1921
EB
2527 write_msi_msg(irq, &msg);
2528
a460e745
IM
2529 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2530 "edge");
3b7d1921 2531
7fe3730d 2532 return 0;
3b7d1921
EB
2533}
2534
2535void arch_teardown_msi_irq(unsigned int irq)
2536{
f7feaca7 2537 destroy_irq(irq);
3b7d1921
EB
2538}
2539
2d3fcc1c
EB
2540#endif /* CONFIG_PCI_MSI */
2541
8b955b0d
EB
2542/*
2543 * Hypertransport interrupt support
2544 */
2545#ifdef CONFIG_HT_IRQ
2546
2547#ifdef CONFIG_SMP
2548
2549static void target_ht_irq(unsigned int irq, unsigned int dest)
2550{
ec68307c
EB
2551 struct ht_irq_msg msg;
2552 fetch_ht_irq_msg(irq, &msg);
8b955b0d 2553
ec68307c
EB
2554 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2555 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
8b955b0d 2556
ec68307c
EB
2557 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2558 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 2559
ec68307c 2560 write_ht_irq_msg(irq, &msg);
8b955b0d
EB
2561}
2562
2563static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2564{
2565 unsigned int dest;
2566 cpumask_t tmp;
2567
2568 cpus_and(tmp, mask, cpu_online_map);
2569 if (cpus_empty(tmp))
2570 tmp = TARGET_CPUS;
2571
2572 cpus_and(mask, tmp, CPU_MASK_ALL);
2573
2574 dest = cpu_mask_to_apicid(mask);
2575
2576 target_ht_irq(irq, dest);
9f0a5ba5 2577 irq_desc[irq].affinity = mask;
8b955b0d
EB
2578}
2579#endif
2580
c37e108d 2581static struct irq_chip ht_irq_chip = {
8b955b0d
EB
2582 .name = "PCI-HT",
2583 .mask = mask_ht_irq,
2584 .unmask = unmask_ht_irq,
2585 .ack = ack_ioapic_irq,
2586#ifdef CONFIG_SMP
2587 .set_affinity = set_ht_irq_affinity,
2588#endif
2589 .retrigger = ioapic_retrigger_irq,
2590};
2591
2592int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2593{
2594 int vector;
2595
2596 vector = assign_irq_vector(irq);
2597 if (vector >= 0) {
ec68307c 2598 struct ht_irq_msg msg;
8b955b0d
EB
2599 unsigned dest;
2600 cpumask_t tmp;
2601
2602 cpus_clear(tmp);
2603 cpu_set(vector >> 8, tmp);
2604 dest = cpu_mask_to_apicid(tmp);
2605
ec68307c 2606 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 2607
ec68307c
EB
2608 msg.address_lo =
2609 HT_IRQ_LOW_BASE |
8b955b0d
EB
2610 HT_IRQ_LOW_DEST_ID(dest) |
2611 HT_IRQ_LOW_VECTOR(vector) |
2612 ((INT_DEST_MODE == 0) ?
2613 HT_IRQ_LOW_DM_PHYSICAL :
2614 HT_IRQ_LOW_DM_LOGICAL) |
2615 HT_IRQ_LOW_RQEOI_EDGE |
2616 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2617 HT_IRQ_LOW_MT_FIXED :
2618 HT_IRQ_LOW_MT_ARBITRATED) |
2619 HT_IRQ_LOW_IRQ_MASKED;
2620
ec68307c 2621 write_ht_irq_msg(irq, &msg);
8b955b0d 2622
a460e745
IM
2623 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2624 handle_edge_irq, "edge");
8b955b0d
EB
2625 }
2626 return vector;
2627}
2628#endif /* CONFIG_HT_IRQ */
2629
1da177e4
LT
2630/* --------------------------------------------------------------------------
2631 ACPI-based IOAPIC Configuration
2632 -------------------------------------------------------------------------- */
2633
888ba6c6 2634#ifdef CONFIG_ACPI
1da177e4
LT
2635
2636int __init io_apic_get_unique_id (int ioapic, int apic_id)
2637{
2638 union IO_APIC_reg_00 reg_00;
2639 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2640 physid_mask_t tmp;
2641 unsigned long flags;
2642 int i = 0;
2643
2644 /*
2645 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2646 * buses (one for LAPICs, one for IOAPICs), where predecessors only
2647 * supports up to 16 on one shared APIC bus.
2648 *
2649 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2650 * advantage of new APIC bus architecture.
2651 */
2652
2653 if (physids_empty(apic_id_map))
2654 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2655
2656 spin_lock_irqsave(&ioapic_lock, flags);
2657 reg_00.raw = io_apic_read(ioapic, 0);
2658 spin_unlock_irqrestore(&ioapic_lock, flags);
2659
2660 if (apic_id >= get_physical_broadcast()) {
2661 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2662 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2663 apic_id = reg_00.bits.ID;
2664 }
2665
2666 /*
2667 * Every APIC in a system must have a unique ID or we get lots of nice
2668 * 'stuck on smp_invalidate_needed IPI wait' messages.
2669 */
2670 if (check_apicid_used(apic_id_map, apic_id)) {
2671
2672 for (i = 0; i < get_physical_broadcast(); i++) {
2673 if (!check_apicid_used(apic_id_map, i))
2674 break;
2675 }
2676
2677 if (i == get_physical_broadcast())
2678 panic("Max apic_id exceeded!\n");
2679
2680 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2681 "trying %d\n", ioapic, apic_id, i);
2682
2683 apic_id = i;
2684 }
2685
2686 tmp = apicid_to_cpu_present(apic_id);
2687 physids_or(apic_id_map, apic_id_map, tmp);
2688
2689 if (reg_00.bits.ID != apic_id) {
2690 reg_00.bits.ID = apic_id;
2691
2692 spin_lock_irqsave(&ioapic_lock, flags);
2693 io_apic_write(ioapic, 0, reg_00.raw);
2694 reg_00.raw = io_apic_read(ioapic, 0);
2695 spin_unlock_irqrestore(&ioapic_lock, flags);
2696
2697 /* Sanity check */
6070f9ec
AD
2698 if (reg_00.bits.ID != apic_id) {
2699 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2700 return -1;
2701 }
1da177e4
LT
2702 }
2703
2704 apic_printk(APIC_VERBOSE, KERN_INFO
2705 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2706
2707 return apic_id;
2708}
2709
2710
2711int __init io_apic_get_version (int ioapic)
2712{
2713 union IO_APIC_reg_01 reg_01;
2714 unsigned long flags;
2715
2716 spin_lock_irqsave(&ioapic_lock, flags);
2717 reg_01.raw = io_apic_read(ioapic, 1);
2718 spin_unlock_irqrestore(&ioapic_lock, flags);
2719
2720 return reg_01.bits.version;
2721}
2722
2723
2724int __init io_apic_get_redir_entries (int ioapic)
2725{
2726 union IO_APIC_reg_01 reg_01;
2727 unsigned long flags;
2728
2729 spin_lock_irqsave(&ioapic_lock, flags);
2730 reg_01.raw = io_apic_read(ioapic, 1);
2731 spin_unlock_irqrestore(&ioapic_lock, flags);
2732
2733 return reg_01.bits.entries;
2734}
2735
2736
2737int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low)
2738{
2739 struct IO_APIC_route_entry entry;
1da177e4
LT
2740
2741 if (!IO_APIC_IRQ(irq)) {
2742 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2743 ioapic);
2744 return -EINVAL;
2745 }
2746
2747 /*
2748 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2749 * Note that we mask (disable) IRQs now -- these get enabled when the
2750 * corresponding device driver registers for this IRQ.
2751 */
2752
2753 memset(&entry,0,sizeof(entry));
2754
2755 entry.delivery_mode = INT_DELIVERY_MODE;
2756 entry.dest_mode = INT_DEST_MODE;
2757 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2758 entry.trigger = edge_level;
2759 entry.polarity = active_high_low;
2760 entry.mask = 1;
2761
2762 /*
2763 * IRQs < 16 are already in the irq_2_pin[] map
2764 */
2765 if (irq >= 16)
2766 add_pin_to_irq(irq, ioapic, pin);
2767
2768 entry.vector = assign_irq_vector(irq);
2769
2770 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2771 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
2772 mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
2773 edge_level, active_high_low);
2774
2775 ioapic_register_intr(irq, entry.vector, edge_level);
2776
2777 if (!ioapic && (irq < 16))
2778 disable_8259A_irq(irq);
2779
a2249cba 2780 ioapic_write_entry(ioapic, pin, entry);
1da177e4
LT
2781
2782 return 0;
2783}
2784
61fd47e0
SL
2785int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2786{
2787 int i;
2788
2789 if (skip_ioapic_setup)
2790 return -1;
2791
2792 for (i = 0; i < mp_irq_entries; i++)
2793 if (mp_irqs[i].mpc_irqtype == mp_INT &&
2794 mp_irqs[i].mpc_srcbusirq == bus_irq)
2795 break;
2796 if (i >= mp_irq_entries)
2797 return -1;
2798
2799 *trigger = irq_trigger(i);
2800 *polarity = irq_polarity(i);
2801 return 0;
2802}
2803
888ba6c6 2804#endif /* CONFIG_ACPI */
1a3f239d
RR
2805
2806static int __init parse_disable_timer_pin_1(char *arg)
2807{
2808 disable_timer_pin_1 = 1;
2809 return 0;
2810}
2811early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2812
2813static int __init parse_enable_timer_pin_1(char *arg)
2814{
2815 disable_timer_pin_1 = -1;
2816 return 0;
2817}
2818early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2819
2820static int __init parse_noapic(char *arg)
2821{
2822 /* disable IO-APIC */
2823 disable_ioapic_setup();
2824 return 0;
2825}
2826early_param("noapic", parse_noapic);