[PATCH] x86_64: serialize assign_irq_vector() use of static variables
[linux-2.6/cjktty.git] / arch / i386 / kernel / io_apic.c
blob43ffdd012d269c98a47cada3ba9596303856e83b
1 /*
2 * Intel IO-APIC support for multi-Pentium hosts.
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
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>
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
23 #include <linux/mm.h>
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/config.h>
29 #include <linux/smp_lock.h>
30 #include <linux/mc146818rtc.h>
31 #include <linux/compiler.h>
32 #include <linux/acpi.h>
33 #include <linux/module.h>
34 #include <linux/sysdev.h>
36 #include <asm/io.h>
37 #include <asm/smp.h>
38 #include <asm/desc.h>
39 #include <asm/timer.h>
40 #include <asm/i8259.h>
42 #include <mach_apic.h>
44 #include "io_ports.h"
46 int (*ioapic_renumber_irq)(int ioapic, int irq);
47 atomic_t irq_mis_count;
49 /* Where if anywhere is the i8259 connect in external int mode */
50 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
52 static DEFINE_SPINLOCK(ioapic_lock);
53 static DEFINE_SPINLOCK(vector_lock);
55 int timer_over_8254 __initdata = 1;
58 * Is the SiS APIC rmw bug present ?
59 * -1 = don't know, 0 = no, 1 = yes
61 int sis_apic_bug = -1;
64 * # of IRQ routing registers
66 int nr_ioapic_registers[MAX_IO_APICS];
68 int disable_timer_pin_1 __initdata;
71 * Rough estimation of how many shared IRQs there are, can
72 * be changed anytime.
74 #define MAX_PLUS_SHARED_IRQS NR_IRQS
75 #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
78 * This is performance-critical, we want to do it O(1)
80 * the indexing order of this array favors 1:1 mappings
81 * between pins and IRQs.
84 static struct irq_pin_list {
85 int apic, pin, next;
86 } irq_2_pin[PIN_MAP_SIZE];
88 int vector_irq[NR_VECTORS] __read_mostly = { [0 ... NR_VECTORS - 1] = -1};
89 #ifdef CONFIG_PCI_MSI
90 #define vector_to_irq(vector) \
91 (platform_legacy_irq(vector) ? vector : vector_irq[vector])
92 #else
93 #define vector_to_irq(vector) (vector)
94 #endif
97 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
98 * shared ISA-space IRQs, so we have to support them. We are super
99 * fast in the common case, and fast for shared ISA-space IRQs.
101 static void add_pin_to_irq(unsigned int irq, int apic, int pin)
103 static int first_free_entry = NR_IRQS;
104 struct irq_pin_list *entry = irq_2_pin + irq;
106 while (entry->next)
107 entry = irq_2_pin + entry->next;
109 if (entry->pin != -1) {
110 entry->next = first_free_entry;
111 entry = irq_2_pin + entry->next;
112 if (++first_free_entry >= PIN_MAP_SIZE)
113 panic("io_apic.c: whoops");
115 entry->apic = apic;
116 entry->pin = pin;
120 * Reroute an IRQ to a different pin.
122 static void __init replace_pin_at_irq(unsigned int irq,
123 int oldapic, int oldpin,
124 int newapic, int newpin)
126 struct irq_pin_list *entry = irq_2_pin + irq;
128 while (1) {
129 if (entry->apic == oldapic && entry->pin == oldpin) {
130 entry->apic = newapic;
131 entry->pin = newpin;
133 if (!entry->next)
134 break;
135 entry = irq_2_pin + entry->next;
139 static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable)
141 struct irq_pin_list *entry = irq_2_pin + irq;
142 unsigned int pin, reg;
144 for (;;) {
145 pin = entry->pin;
146 if (pin == -1)
147 break;
148 reg = io_apic_read(entry->apic, 0x10 + pin*2);
149 reg &= ~disable;
150 reg |= enable;
151 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
152 if (!entry->next)
153 break;
154 entry = irq_2_pin + entry->next;
158 /* mask = 1 */
159 static void __mask_IO_APIC_irq (unsigned int irq)
161 __modify_IO_APIC_irq(irq, 0x00010000, 0);
164 /* mask = 0 */
165 static void __unmask_IO_APIC_irq (unsigned int irq)
167 __modify_IO_APIC_irq(irq, 0, 0x00010000);
170 /* mask = 1, trigger = 0 */
171 static void __mask_and_edge_IO_APIC_irq (unsigned int irq)
173 __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000);
176 /* mask = 0, trigger = 1 */
177 static void __unmask_and_level_IO_APIC_irq (unsigned int irq)
179 __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000);
182 static void mask_IO_APIC_irq (unsigned int irq)
184 unsigned long flags;
186 spin_lock_irqsave(&ioapic_lock, flags);
187 __mask_IO_APIC_irq(irq);
188 spin_unlock_irqrestore(&ioapic_lock, flags);
191 static void unmask_IO_APIC_irq (unsigned int irq)
193 unsigned long flags;
195 spin_lock_irqsave(&ioapic_lock, flags);
196 __unmask_IO_APIC_irq(irq);
197 spin_unlock_irqrestore(&ioapic_lock, flags);
200 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
202 struct IO_APIC_route_entry entry;
203 unsigned long flags;
205 /* Check delivery_mode to be sure we're not clearing an SMI pin */
206 spin_lock_irqsave(&ioapic_lock, flags);
207 *(((int*)&entry) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
208 *(((int*)&entry) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
209 spin_unlock_irqrestore(&ioapic_lock, flags);
210 if (entry.delivery_mode == dest_SMI)
211 return;
214 * Disable it in the IO-APIC irq-routing table:
216 memset(&entry, 0, sizeof(entry));
217 entry.mask = 1;
218 spin_lock_irqsave(&ioapic_lock, flags);
219 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry) + 0));
220 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry) + 1));
221 spin_unlock_irqrestore(&ioapic_lock, flags);
224 static void clear_IO_APIC (void)
226 int apic, pin;
228 for (apic = 0; apic < nr_ioapics; apic++)
229 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
230 clear_IO_APIC_pin(apic, pin);
233 #ifdef CONFIG_SMP
234 static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
236 unsigned long flags;
237 int pin;
238 struct irq_pin_list *entry = irq_2_pin + irq;
239 unsigned int apicid_value;
240 cpumask_t tmp;
242 cpus_and(tmp, cpumask, cpu_online_map);
243 if (cpus_empty(tmp))
244 tmp = TARGET_CPUS;
246 cpus_and(cpumask, tmp, CPU_MASK_ALL);
248 apicid_value = cpu_mask_to_apicid(cpumask);
249 /* Prepare to do the io_apic_write */
250 apicid_value = apicid_value << 24;
251 spin_lock_irqsave(&ioapic_lock, flags);
252 for (;;) {
253 pin = entry->pin;
254 if (pin == -1)
255 break;
256 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
257 if (!entry->next)
258 break;
259 entry = irq_2_pin + entry->next;
261 set_irq_info(irq, cpumask);
262 spin_unlock_irqrestore(&ioapic_lock, flags);
265 #if defined(CONFIG_IRQBALANCE)
266 # include <asm/processor.h> /* kernel_thread() */
267 # include <linux/kernel_stat.h> /* kstat */
268 # include <linux/slab.h> /* kmalloc() */
269 # include <linux/timer.h> /* time_after() */
271 #ifdef CONFIG_BALANCED_IRQ_DEBUG
272 # define TDprintk(x...) do { printk("<%ld:%s:%d>: ", jiffies, __FILE__, __LINE__); printk(x); } while (0)
273 # define Dprintk(x...) do { TDprintk(x); } while (0)
274 # else
275 # define TDprintk(x...)
276 # define Dprintk(x...)
277 # endif
279 #define IRQBALANCE_CHECK_ARCH -999
280 #define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
281 #define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
282 #define BALANCED_IRQ_MORE_DELTA (HZ/10)
283 #define BALANCED_IRQ_LESS_DELTA (HZ)
285 static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
286 static int physical_balance __read_mostly;
287 static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
289 static struct irq_cpu_info {
290 unsigned long * last_irq;
291 unsigned long * irq_delta;
292 unsigned long irq;
293 } irq_cpu_data[NR_CPUS];
295 #define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
296 #define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq])
297 #define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq])
299 #define IDLE_ENOUGH(cpu,now) \
300 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
302 #define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
304 #define CPU_TO_PACKAGEINDEX(i) (first_cpu(cpu_sibling_map[i]))
306 static cpumask_t balance_irq_affinity[NR_IRQS] = {
307 [0 ... NR_IRQS-1] = CPU_MASK_ALL
310 void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
312 balance_irq_affinity[irq] = mask;
315 static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
316 unsigned long now, int direction)
318 int search_idle = 1;
319 int cpu = curr_cpu;
321 goto inside;
323 do {
324 if (unlikely(cpu == curr_cpu))
325 search_idle = 0;
326 inside:
327 if (direction == 1) {
328 cpu++;
329 if (cpu >= NR_CPUS)
330 cpu = 0;
331 } else {
332 cpu--;
333 if (cpu == -1)
334 cpu = NR_CPUS-1;
336 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) ||
337 (search_idle && !IDLE_ENOUGH(cpu,now)));
339 return cpu;
342 static inline void balance_irq(int cpu, int irq)
344 unsigned long now = jiffies;
345 cpumask_t allowed_mask;
346 unsigned int new_cpu;
348 if (irqbalance_disabled)
349 return;
351 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
352 new_cpu = move(cpu, allowed_mask, now, 1);
353 if (cpu != new_cpu) {
354 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
358 static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
360 int i, j;
361 Dprintk("Rotating IRQs among CPUs.\n");
362 for_each_online_cpu(i) {
363 for (j = 0; j < NR_IRQS; j++) {
364 if (!irq_desc[j].action)
365 continue;
366 /* Is it a significant load ? */
367 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) <
368 useful_load_threshold)
369 continue;
370 balance_irq(i, j);
373 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
374 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
375 return;
378 static void do_irq_balance(void)
380 int i, j;
381 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
382 unsigned long move_this_load = 0;
383 int max_loaded = 0, min_loaded = 0;
384 int load;
385 unsigned long useful_load_threshold = balanced_irq_interval + 10;
386 int selected_irq;
387 int tmp_loaded, first_attempt = 1;
388 unsigned long tmp_cpu_irq;
389 unsigned long imbalance = 0;
390 cpumask_t allowed_mask, target_cpu_mask, tmp;
392 for_each_possible_cpu(i) {
393 int package_index;
394 CPU_IRQ(i) = 0;
395 if (!cpu_online(i))
396 continue;
397 package_index = CPU_TO_PACKAGEINDEX(i);
398 for (j = 0; j < NR_IRQS; j++) {
399 unsigned long value_now, delta;
400 /* Is this an active IRQ? */
401 if (!irq_desc[j].action)
402 continue;
403 if ( package_index == i )
404 IRQ_DELTA(package_index,j) = 0;
405 /* Determine the total count per processor per IRQ */
406 value_now = (unsigned long) kstat_cpu(i).irqs[j];
408 /* Determine the activity per processor per IRQ */
409 delta = value_now - LAST_CPU_IRQ(i,j);
411 /* Update last_cpu_irq[][] for the next time */
412 LAST_CPU_IRQ(i,j) = value_now;
414 /* Ignore IRQs whose rate is less than the clock */
415 if (delta < useful_load_threshold)
416 continue;
417 /* update the load for the processor or package total */
418 IRQ_DELTA(package_index,j) += delta;
420 /* Keep track of the higher numbered sibling as well */
421 if (i != package_index)
422 CPU_IRQ(i) += delta;
424 * We have sibling A and sibling B in the package
426 * cpu_irq[A] = load for cpu A + load for cpu B
427 * cpu_irq[B] = load for cpu B
429 CPU_IRQ(package_index) += delta;
432 /* Find the least loaded processor package */
433 for_each_online_cpu(i) {
434 if (i != CPU_TO_PACKAGEINDEX(i))
435 continue;
436 if (min_cpu_irq > CPU_IRQ(i)) {
437 min_cpu_irq = CPU_IRQ(i);
438 min_loaded = i;
441 max_cpu_irq = ULONG_MAX;
443 tryanothercpu:
444 /* Look for heaviest loaded processor.
445 * We may come back to get the next heaviest loaded processor.
446 * Skip processors with trivial loads.
448 tmp_cpu_irq = 0;
449 tmp_loaded = -1;
450 for_each_online_cpu(i) {
451 if (i != CPU_TO_PACKAGEINDEX(i))
452 continue;
453 if (max_cpu_irq <= CPU_IRQ(i))
454 continue;
455 if (tmp_cpu_irq < CPU_IRQ(i)) {
456 tmp_cpu_irq = CPU_IRQ(i);
457 tmp_loaded = i;
461 if (tmp_loaded == -1) {
462 /* In the case of small number of heavy interrupt sources,
463 * loading some of the cpus too much. We use Ingo's original
464 * approach to rotate them around.
466 if (!first_attempt && imbalance >= useful_load_threshold) {
467 rotate_irqs_among_cpus(useful_load_threshold);
468 return;
470 goto not_worth_the_effort;
473 first_attempt = 0; /* heaviest search */
474 max_cpu_irq = tmp_cpu_irq; /* load */
475 max_loaded = tmp_loaded; /* processor */
476 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
478 Dprintk("max_loaded cpu = %d\n", max_loaded);
479 Dprintk("min_loaded cpu = %d\n", min_loaded);
480 Dprintk("max_cpu_irq load = %ld\n", max_cpu_irq);
481 Dprintk("min_cpu_irq load = %ld\n", min_cpu_irq);
482 Dprintk("load imbalance = %lu\n", imbalance);
484 /* if imbalance is less than approx 10% of max load, then
485 * observe diminishing returns action. - quit
487 if (imbalance < (max_cpu_irq >> 3)) {
488 Dprintk("Imbalance too trivial\n");
489 goto not_worth_the_effort;
492 tryanotherirq:
493 /* if we select an IRQ to move that can't go where we want, then
494 * see if there is another one to try.
496 move_this_load = 0;
497 selected_irq = -1;
498 for (j = 0; j < NR_IRQS; j++) {
499 /* Is this an active IRQ? */
500 if (!irq_desc[j].action)
501 continue;
502 if (imbalance <= IRQ_DELTA(max_loaded,j))
503 continue;
504 /* Try to find the IRQ that is closest to the imbalance
505 * without going over.
507 if (move_this_load < IRQ_DELTA(max_loaded,j)) {
508 move_this_load = IRQ_DELTA(max_loaded,j);
509 selected_irq = j;
512 if (selected_irq == -1) {
513 goto tryanothercpu;
516 imbalance = move_this_load;
518 /* For physical_balance case, we accumlated both load
519 * values in the one of the siblings cpu_irq[],
520 * to use the same code for physical and logical processors
521 * as much as possible.
523 * NOTE: the cpu_irq[] array holds the sum of the load for
524 * sibling A and sibling B in the slot for the lowest numbered
525 * sibling (A), _AND_ the load for sibling B in the slot for
526 * the higher numbered sibling.
528 * We seek the least loaded sibling by making the comparison
529 * (A+B)/2 vs B
531 load = CPU_IRQ(min_loaded) >> 1;
532 for_each_cpu_mask(j, cpu_sibling_map[min_loaded]) {
533 if (load > CPU_IRQ(j)) {
534 /* This won't change cpu_sibling_map[min_loaded] */
535 load = CPU_IRQ(j);
536 min_loaded = j;
540 cpus_and(allowed_mask,
541 cpu_online_map,
542 balance_irq_affinity[selected_irq]);
543 target_cpu_mask = cpumask_of_cpu(min_loaded);
544 cpus_and(tmp, target_cpu_mask, allowed_mask);
546 if (!cpus_empty(tmp)) {
548 Dprintk("irq = %d moved to cpu = %d\n",
549 selected_irq, min_loaded);
550 /* mark for change destination */
551 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
553 /* Since we made a change, come back sooner to
554 * check for more variation.
556 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
557 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
558 return;
560 goto tryanotherirq;
562 not_worth_the_effort:
564 * if we did not find an IRQ to move, then adjust the time interval
565 * upward
567 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
568 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
569 Dprintk("IRQ worth rotating not found\n");
570 return;
573 static int balanced_irq(void *unused)
575 int i;
576 unsigned long prev_balance_time = jiffies;
577 long time_remaining = balanced_irq_interval;
579 daemonize("kirqd");
581 /* push everything to CPU 0 to give us a starting point. */
582 for (i = 0 ; i < NR_IRQS ; i++) {
583 pending_irq_cpumask[i] = cpumask_of_cpu(0);
584 set_pending_irq(i, cpumask_of_cpu(0));
587 for ( ; ; ) {
588 time_remaining = schedule_timeout_interruptible(time_remaining);
589 try_to_freeze();
590 if (time_after(jiffies,
591 prev_balance_time+balanced_irq_interval)) {
592 preempt_disable();
593 do_irq_balance();
594 prev_balance_time = jiffies;
595 time_remaining = balanced_irq_interval;
596 preempt_enable();
599 return 0;
602 static int __init balanced_irq_init(void)
604 int i;
605 struct cpuinfo_x86 *c;
606 cpumask_t tmp;
608 cpus_shift_right(tmp, cpu_online_map, 2);
609 c = &boot_cpu_data;
610 /* When not overwritten by the command line ask subarchitecture. */
611 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
612 irqbalance_disabled = NO_BALANCE_IRQ;
613 if (irqbalance_disabled)
614 return 0;
616 /* disable irqbalance completely if there is only one processor online */
617 if (num_online_cpus() < 2) {
618 irqbalance_disabled = 1;
619 return 0;
622 * Enable physical balance only if more than 1 physical processor
623 * is present
625 if (smp_num_siblings > 1 && !cpus_empty(tmp))
626 physical_balance = 1;
628 for_each_online_cpu(i) {
629 irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
630 irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
631 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
632 printk(KERN_ERR "balanced_irq_init: out of memory");
633 goto failed;
635 memset(irq_cpu_data[i].irq_delta,0,sizeof(unsigned long) * NR_IRQS);
636 memset(irq_cpu_data[i].last_irq,0,sizeof(unsigned long) * NR_IRQS);
639 printk(KERN_INFO "Starting balanced_irq\n");
640 if (kernel_thread(balanced_irq, NULL, CLONE_KERNEL) >= 0)
641 return 0;
642 else
643 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
644 failed:
645 for_each_possible_cpu(i) {
646 kfree(irq_cpu_data[i].irq_delta);
647 irq_cpu_data[i].irq_delta = NULL;
648 kfree(irq_cpu_data[i].last_irq);
649 irq_cpu_data[i].last_irq = NULL;
651 return 0;
654 int __init irqbalance_disable(char *str)
656 irqbalance_disabled = 1;
657 return 1;
660 __setup("noirqbalance", irqbalance_disable);
662 late_initcall(balanced_irq_init);
663 #endif /* CONFIG_IRQBALANCE */
664 #endif /* CONFIG_SMP */
666 #ifndef CONFIG_SMP
667 void fastcall send_IPI_self(int vector)
669 unsigned int cfg;
672 * Wait for idle.
674 apic_wait_icr_idle();
675 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
677 * Send the IPI. The write to APIC_ICR fires this off.
679 apic_write_around(APIC_ICR, cfg);
681 #endif /* !CONFIG_SMP */
685 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
686 * specific CPU-side IRQs.
689 #define MAX_PIRQS 8
690 static int pirq_entries [MAX_PIRQS];
691 static int pirqs_enabled;
692 int skip_ioapic_setup;
694 static int __init ioapic_setup(char *str)
696 skip_ioapic_setup = 1;
697 return 1;
700 __setup("noapic", ioapic_setup);
702 static int __init ioapic_pirq_setup(char *str)
704 int i, max;
705 int ints[MAX_PIRQS+1];
707 get_options(str, ARRAY_SIZE(ints), ints);
709 for (i = 0; i < MAX_PIRQS; i++)
710 pirq_entries[i] = -1;
712 pirqs_enabled = 1;
713 apic_printk(APIC_VERBOSE, KERN_INFO
714 "PIRQ redirection, working around broken MP-BIOS.\n");
715 max = MAX_PIRQS;
716 if (ints[0] < MAX_PIRQS)
717 max = ints[0];
719 for (i = 0; i < max; i++) {
720 apic_printk(APIC_VERBOSE, KERN_DEBUG
721 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
723 * PIRQs are mapped upside down, usually.
725 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
727 return 1;
730 __setup("pirq=", ioapic_pirq_setup);
733 * Find the IRQ entry number of a certain pin.
735 static int find_irq_entry(int apic, int pin, int type)
737 int i;
739 for (i = 0; i < mp_irq_entries; i++)
740 if (mp_irqs[i].mpc_irqtype == type &&
741 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
742 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
743 mp_irqs[i].mpc_dstirq == pin)
744 return i;
746 return -1;
750 * Find the pin to which IRQ[irq] (ISA) is connected
752 static int __init find_isa_irq_pin(int irq, int type)
754 int i;
756 for (i = 0; i < mp_irq_entries; i++) {
757 int lbus = mp_irqs[i].mpc_srcbus;
759 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
760 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
761 mp_bus_id_to_type[lbus] == MP_BUS_MCA ||
762 mp_bus_id_to_type[lbus] == MP_BUS_NEC98
763 ) &&
764 (mp_irqs[i].mpc_irqtype == type) &&
765 (mp_irqs[i].mpc_srcbusirq == irq))
767 return mp_irqs[i].mpc_dstirq;
769 return -1;
772 static int __init find_isa_irq_apic(int irq, int type)
774 int i;
776 for (i = 0; i < mp_irq_entries; i++) {
777 int lbus = mp_irqs[i].mpc_srcbus;
779 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
780 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
781 mp_bus_id_to_type[lbus] == MP_BUS_MCA ||
782 mp_bus_id_to_type[lbus] == MP_BUS_NEC98
783 ) &&
784 (mp_irqs[i].mpc_irqtype == type) &&
785 (mp_irqs[i].mpc_srcbusirq == irq))
786 break;
788 if (i < mp_irq_entries) {
789 int apic;
790 for(apic = 0; apic < nr_ioapics; apic++) {
791 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
792 return apic;
796 return -1;
800 * Find a specific PCI IRQ entry.
801 * Not an __init, possibly needed by modules
803 static int pin_2_irq(int idx, int apic, int pin);
805 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
807 int apic, i, best_guess = -1;
809 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
810 "slot:%d, pin:%d.\n", bus, slot, pin);
811 if (mp_bus_id_to_pci_bus[bus] == -1) {
812 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
813 return -1;
815 for (i = 0; i < mp_irq_entries; i++) {
816 int lbus = mp_irqs[i].mpc_srcbus;
818 for (apic = 0; apic < nr_ioapics; apic++)
819 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
820 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
821 break;
823 if ((mp_bus_id_to_type[lbus] == MP_BUS_PCI) &&
824 !mp_irqs[i].mpc_irqtype &&
825 (bus == lbus) &&
826 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
827 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
829 if (!(apic || IO_APIC_IRQ(irq)))
830 continue;
832 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
833 return irq;
835 * Use the first all-but-pin matching entry as a
836 * best-guess fuzzy result for broken mptables.
838 if (best_guess < 0)
839 best_guess = irq;
842 return best_guess;
844 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
847 * This function currently is only a helper for the i386 smp boot process where
848 * we need to reprogram the ioredtbls to cater for the cpus which have come online
849 * so mask in all cases should simply be TARGET_CPUS
851 #ifdef CONFIG_SMP
852 void __init setup_ioapic_dest(void)
854 int pin, ioapic, irq, irq_entry;
856 if (skip_ioapic_setup == 1)
857 return;
859 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
860 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
861 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
862 if (irq_entry == -1)
863 continue;
864 irq = pin_2_irq(irq_entry, ioapic, pin);
865 set_ioapic_affinity_irq(irq, TARGET_CPUS);
870 #endif
873 * EISA Edge/Level control register, ELCR
875 static int EISA_ELCR(unsigned int irq)
877 if (irq < 16) {
878 unsigned int port = 0x4d0 + (irq >> 3);
879 return (inb(port) >> (irq & 7)) & 1;
881 apic_printk(APIC_VERBOSE, KERN_INFO
882 "Broken MPtable reports ISA irq %d\n", irq);
883 return 0;
886 /* EISA interrupts are always polarity zero and can be edge or level
887 * trigger depending on the ELCR value. If an interrupt is listed as
888 * EISA conforming in the MP table, that means its trigger type must
889 * be read in from the ELCR */
891 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
892 #define default_EISA_polarity(idx) (0)
894 /* ISA interrupts are always polarity zero edge triggered,
895 * when listed as conforming in the MP table. */
897 #define default_ISA_trigger(idx) (0)
898 #define default_ISA_polarity(idx) (0)
900 /* PCI interrupts are always polarity one level triggered,
901 * when listed as conforming in the MP table. */
903 #define default_PCI_trigger(idx) (1)
904 #define default_PCI_polarity(idx) (1)
906 /* MCA interrupts are always polarity zero level triggered,
907 * when listed as conforming in the MP table. */
909 #define default_MCA_trigger(idx) (1)
910 #define default_MCA_polarity(idx) (0)
912 /* NEC98 interrupts are always polarity zero edge triggered,
913 * when listed as conforming in the MP table. */
915 #define default_NEC98_trigger(idx) (0)
916 #define default_NEC98_polarity(idx) (0)
918 static int __init MPBIOS_polarity(int idx)
920 int bus = mp_irqs[idx].mpc_srcbus;
921 int polarity;
924 * Determine IRQ line polarity (high active or low active):
926 switch (mp_irqs[idx].mpc_irqflag & 3)
928 case 0: /* conforms, ie. bus-type dependent polarity */
930 switch (mp_bus_id_to_type[bus])
932 case MP_BUS_ISA: /* ISA pin */
934 polarity = default_ISA_polarity(idx);
935 break;
937 case MP_BUS_EISA: /* EISA pin */
939 polarity = default_EISA_polarity(idx);
940 break;
942 case MP_BUS_PCI: /* PCI pin */
944 polarity = default_PCI_polarity(idx);
945 break;
947 case MP_BUS_MCA: /* MCA pin */
949 polarity = default_MCA_polarity(idx);
950 break;
952 case MP_BUS_NEC98: /* NEC 98 pin */
954 polarity = default_NEC98_polarity(idx);
955 break;
957 default:
959 printk(KERN_WARNING "broken BIOS!!\n");
960 polarity = 1;
961 break;
964 break;
966 case 1: /* high active */
968 polarity = 0;
969 break;
971 case 2: /* reserved */
973 printk(KERN_WARNING "broken BIOS!!\n");
974 polarity = 1;
975 break;
977 case 3: /* low active */
979 polarity = 1;
980 break;
982 default: /* invalid */
984 printk(KERN_WARNING "broken BIOS!!\n");
985 polarity = 1;
986 break;
989 return polarity;
992 static int MPBIOS_trigger(int idx)
994 int bus = mp_irqs[idx].mpc_srcbus;
995 int trigger;
998 * Determine IRQ trigger mode (edge or level sensitive):
1000 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
1002 case 0: /* conforms, ie. bus-type dependent */
1004 switch (mp_bus_id_to_type[bus])
1006 case MP_BUS_ISA: /* ISA pin */
1008 trigger = default_ISA_trigger(idx);
1009 break;
1011 case MP_BUS_EISA: /* EISA pin */
1013 trigger = default_EISA_trigger(idx);
1014 break;
1016 case MP_BUS_PCI: /* PCI pin */
1018 trigger = default_PCI_trigger(idx);
1019 break;
1021 case MP_BUS_MCA: /* MCA pin */
1023 trigger = default_MCA_trigger(idx);
1024 break;
1026 case MP_BUS_NEC98: /* NEC 98 pin */
1028 trigger = default_NEC98_trigger(idx);
1029 break;
1031 default:
1033 printk(KERN_WARNING "broken BIOS!!\n");
1034 trigger = 1;
1035 break;
1038 break;
1040 case 1: /* edge */
1042 trigger = 0;
1043 break;
1045 case 2: /* reserved */
1047 printk(KERN_WARNING "broken BIOS!!\n");
1048 trigger = 1;
1049 break;
1051 case 3: /* level */
1053 trigger = 1;
1054 break;
1056 default: /* invalid */
1058 printk(KERN_WARNING "broken BIOS!!\n");
1059 trigger = 0;
1060 break;
1063 return trigger;
1066 static inline int irq_polarity(int idx)
1068 return MPBIOS_polarity(idx);
1071 static inline int irq_trigger(int idx)
1073 return MPBIOS_trigger(idx);
1076 static int pin_2_irq(int idx, int apic, int pin)
1078 int irq, i;
1079 int bus = mp_irqs[idx].mpc_srcbus;
1082 * Debugging check, we are in big trouble if this message pops up!
1084 if (mp_irqs[idx].mpc_dstirq != pin)
1085 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1087 switch (mp_bus_id_to_type[bus])
1089 case MP_BUS_ISA: /* ISA pin */
1090 case MP_BUS_EISA:
1091 case MP_BUS_MCA:
1092 case MP_BUS_NEC98:
1094 irq = mp_irqs[idx].mpc_srcbusirq;
1095 break;
1097 case MP_BUS_PCI: /* PCI pin */
1100 * PCI IRQs are mapped in order
1102 i = irq = 0;
1103 while (i < apic)
1104 irq += nr_ioapic_registers[i++];
1105 irq += pin;
1108 * For MPS mode, so far only needed by ES7000 platform
1110 if (ioapic_renumber_irq)
1111 irq = ioapic_renumber_irq(apic, irq);
1113 break;
1115 default:
1117 printk(KERN_ERR "unknown bus type %d.\n",bus);
1118 irq = 0;
1119 break;
1124 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1126 if ((pin >= 16) && (pin <= 23)) {
1127 if (pirq_entries[pin-16] != -1) {
1128 if (!pirq_entries[pin-16]) {
1129 apic_printk(APIC_VERBOSE, KERN_DEBUG
1130 "disabling PIRQ%d\n", pin-16);
1131 } else {
1132 irq = pirq_entries[pin-16];
1133 apic_printk(APIC_VERBOSE, KERN_DEBUG
1134 "using PIRQ%d -> IRQ %d\n",
1135 pin-16, irq);
1139 return irq;
1142 static inline int IO_APIC_irq_trigger(int irq)
1144 int apic, idx, pin;
1146 for (apic = 0; apic < nr_ioapics; apic++) {
1147 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1148 idx = find_irq_entry(apic,pin,mp_INT);
1149 if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
1150 return irq_trigger(idx);
1154 * nonexistent IRQs are edge default
1156 return 0;
1159 /* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
1160 u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
1162 int assign_irq_vector(int irq)
1164 static int current_vector = FIRST_DEVICE_VECTOR, offset = 0;
1165 int vector;
1167 BUG_ON(irq != AUTO_ASSIGN && (unsigned)irq >= NR_IRQ_VECTORS);
1169 spin_lock(&vector_lock);
1171 if (irq != AUTO_ASSIGN && IO_APIC_VECTOR(irq) > 0) {
1172 spin_unlock(&vector_lock);
1173 return IO_APIC_VECTOR(irq);
1175 next:
1176 current_vector += 8;
1177 if (current_vector == SYSCALL_VECTOR)
1178 goto next;
1180 if (current_vector >= FIRST_SYSTEM_VECTOR) {
1181 offset++;
1182 if (!(offset%8)) {
1183 spin_unlock(&vector_lock);
1184 return -ENOSPC;
1186 current_vector = FIRST_DEVICE_VECTOR + offset;
1189 vector = current_vector;
1190 vector_irq[vector] = irq;
1191 if (irq != AUTO_ASSIGN)
1192 IO_APIC_VECTOR(irq) = vector;
1194 spin_unlock(&vector_lock);
1196 return vector;
1199 static struct hw_interrupt_type ioapic_level_type;
1200 static struct hw_interrupt_type ioapic_edge_type;
1202 #define IOAPIC_AUTO -1
1203 #define IOAPIC_EDGE 0
1204 #define IOAPIC_LEVEL 1
1206 static inline void ioapic_register_intr(int irq, int vector, unsigned long trigger)
1208 if (use_pci_vector() && !platform_legacy_irq(irq)) {
1209 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1210 trigger == IOAPIC_LEVEL)
1211 irq_desc[vector].handler = &ioapic_level_type;
1212 else
1213 irq_desc[vector].handler = &ioapic_edge_type;
1214 set_intr_gate(vector, interrupt[vector]);
1215 } else {
1216 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1217 trigger == IOAPIC_LEVEL)
1218 irq_desc[irq].handler = &ioapic_level_type;
1219 else
1220 irq_desc[irq].handler = &ioapic_edge_type;
1221 set_intr_gate(vector, interrupt[irq]);
1225 static void __init setup_IO_APIC_irqs(void)
1227 struct IO_APIC_route_entry entry;
1228 int apic, pin, idx, irq, first_notcon = 1, vector;
1229 unsigned long flags;
1231 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1233 for (apic = 0; apic < nr_ioapics; apic++) {
1234 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1237 * add it to the IO-APIC irq-routing table:
1239 memset(&entry,0,sizeof(entry));
1241 entry.delivery_mode = INT_DELIVERY_MODE;
1242 entry.dest_mode = INT_DEST_MODE;
1243 entry.mask = 0; /* enable IRQ */
1244 entry.dest.logical.logical_dest =
1245 cpu_mask_to_apicid(TARGET_CPUS);
1247 idx = find_irq_entry(apic,pin,mp_INT);
1248 if (idx == -1) {
1249 if (first_notcon) {
1250 apic_printk(APIC_VERBOSE, KERN_DEBUG
1251 " IO-APIC (apicid-pin) %d-%d",
1252 mp_ioapics[apic].mpc_apicid,
1253 pin);
1254 first_notcon = 0;
1255 } else
1256 apic_printk(APIC_VERBOSE, ", %d-%d",
1257 mp_ioapics[apic].mpc_apicid, pin);
1258 continue;
1261 entry.trigger = irq_trigger(idx);
1262 entry.polarity = irq_polarity(idx);
1264 if (irq_trigger(idx)) {
1265 entry.trigger = 1;
1266 entry.mask = 1;
1269 irq = pin_2_irq(idx, apic, pin);
1271 * skip adding the timer int on secondary nodes, which causes
1272 * a small but painful rift in the time-space continuum
1274 if (multi_timer_check(apic, irq))
1275 continue;
1276 else
1277 add_pin_to_irq(irq, apic, pin);
1279 if (!apic && !IO_APIC_IRQ(irq))
1280 continue;
1282 if (IO_APIC_IRQ(irq)) {
1283 vector = assign_irq_vector(irq);
1284 entry.vector = vector;
1285 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
1287 if (!apic && (irq < 16))
1288 disable_8259A_irq(irq);
1290 spin_lock_irqsave(&ioapic_lock, flags);
1291 io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
1292 io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
1293 set_native_irq_info(irq, TARGET_CPUS);
1294 spin_unlock_irqrestore(&ioapic_lock, flags);
1298 if (!first_notcon)
1299 apic_printk(APIC_VERBOSE, " not connected.\n");
1303 * Set up the 8259A-master output pin:
1305 static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
1307 struct IO_APIC_route_entry entry;
1308 unsigned long flags;
1310 memset(&entry,0,sizeof(entry));
1312 disable_8259A_irq(0);
1314 /* mask LVT0 */
1315 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1318 * We use logical delivery to get the timer IRQ
1319 * to the first CPU.
1321 entry.dest_mode = INT_DEST_MODE;
1322 entry.mask = 0; /* unmask IRQ now */
1323 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1324 entry.delivery_mode = INT_DELIVERY_MODE;
1325 entry.polarity = 0;
1326 entry.trigger = 0;
1327 entry.vector = vector;
1330 * The timer IRQ doesn't have to know that behind the
1331 * scene we have a 8259A-master in AEOI mode ...
1333 irq_desc[0].handler = &ioapic_edge_type;
1336 * Add it to the IO-APIC irq-routing table:
1338 spin_lock_irqsave(&ioapic_lock, flags);
1339 io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
1340 io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
1341 spin_unlock_irqrestore(&ioapic_lock, flags);
1343 enable_8259A_irq(0);
1346 static inline void UNEXPECTED_IO_APIC(void)
1350 void __init print_IO_APIC(void)
1352 int apic, i;
1353 union IO_APIC_reg_00 reg_00;
1354 union IO_APIC_reg_01 reg_01;
1355 union IO_APIC_reg_02 reg_02;
1356 union IO_APIC_reg_03 reg_03;
1357 unsigned long flags;
1359 if (apic_verbosity == APIC_QUIET)
1360 return;
1362 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1363 for (i = 0; i < nr_ioapics; i++)
1364 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1365 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
1368 * We are a bit conservative about what we expect. We have to
1369 * know about every hardware change ASAP.
1371 printk(KERN_INFO "testing the IO APIC.......................\n");
1373 for (apic = 0; apic < nr_ioapics; apic++) {
1375 spin_lock_irqsave(&ioapic_lock, flags);
1376 reg_00.raw = io_apic_read(apic, 0);
1377 reg_01.raw = io_apic_read(apic, 1);
1378 if (reg_01.bits.version >= 0x10)
1379 reg_02.raw = io_apic_read(apic, 2);
1380 if (reg_01.bits.version >= 0x20)
1381 reg_03.raw = io_apic_read(apic, 3);
1382 spin_unlock_irqrestore(&ioapic_lock, flags);
1384 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
1385 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1386 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1387 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1388 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1389 if (reg_00.bits.ID >= get_physical_broadcast())
1390 UNEXPECTED_IO_APIC();
1391 if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
1392 UNEXPECTED_IO_APIC();
1394 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1395 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1396 if ( (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
1397 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
1398 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
1399 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
1400 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
1401 (reg_01.bits.entries != 0x2E) &&
1402 (reg_01.bits.entries != 0x3F)
1404 UNEXPECTED_IO_APIC();
1406 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1407 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1408 if ( (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
1409 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
1410 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
1411 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
1412 (reg_01.bits.version != 0x20) /* Intel P64H (82806 AA) */
1414 UNEXPECTED_IO_APIC();
1415 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
1416 UNEXPECTED_IO_APIC();
1419 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1420 * but the value of reg_02 is read as the previous read register
1421 * value, so ignore it if reg_02 == reg_01.
1423 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1424 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1425 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1426 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
1427 UNEXPECTED_IO_APIC();
1431 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1432 * or reg_03, but the value of reg_0[23] is read as the previous read
1433 * register value, so ignore it if reg_03 == reg_0[12].
1435 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1436 reg_03.raw != reg_01.raw) {
1437 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1438 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1439 if (reg_03.bits.__reserved_1)
1440 UNEXPECTED_IO_APIC();
1443 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1445 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1446 " Stat Dest Deli Vect: \n");
1448 for (i = 0; i <= reg_01.bits.entries; i++) {
1449 struct IO_APIC_route_entry entry;
1451 spin_lock_irqsave(&ioapic_lock, flags);
1452 *(((int *)&entry)+0) = io_apic_read(apic, 0x10+i*2);
1453 *(((int *)&entry)+1) = io_apic_read(apic, 0x11+i*2);
1454 spin_unlock_irqrestore(&ioapic_lock, flags);
1456 printk(KERN_DEBUG " %02x %03X %02X ",
1458 entry.dest.logical.logical_dest,
1459 entry.dest.physical.physical_dest
1462 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1463 entry.mask,
1464 entry.trigger,
1465 entry.irr,
1466 entry.polarity,
1467 entry.delivery_status,
1468 entry.dest_mode,
1469 entry.delivery_mode,
1470 entry.vector
1474 if (use_pci_vector())
1475 printk(KERN_INFO "Using vector-based indexing\n");
1476 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1477 for (i = 0; i < NR_IRQS; i++) {
1478 struct irq_pin_list *entry = irq_2_pin + i;
1479 if (entry->pin < 0)
1480 continue;
1481 if (use_pci_vector() && !platform_legacy_irq(i))
1482 printk(KERN_DEBUG "IRQ%d ", IO_APIC_VECTOR(i));
1483 else
1484 printk(KERN_DEBUG "IRQ%d ", i);
1485 for (;;) {
1486 printk("-> %d:%d", entry->apic, entry->pin);
1487 if (!entry->next)
1488 break;
1489 entry = irq_2_pin + entry->next;
1491 printk("\n");
1494 printk(KERN_INFO ".................................... done.\n");
1496 return;
1499 #if 0
1501 static void print_APIC_bitfield (int base)
1503 unsigned int v;
1504 int i, j;
1506 if (apic_verbosity == APIC_QUIET)
1507 return;
1509 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1510 for (i = 0; i < 8; i++) {
1511 v = apic_read(base + i*0x10);
1512 for (j = 0; j < 32; j++) {
1513 if (v & (1<<j))
1514 printk("1");
1515 else
1516 printk("0");
1518 printk("\n");
1522 void /*__init*/ print_local_APIC(void * dummy)
1524 unsigned int v, ver, maxlvt;
1526 if (apic_verbosity == APIC_QUIET)
1527 return;
1529 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1530 smp_processor_id(), hard_smp_processor_id());
1531 v = apic_read(APIC_ID);
1532 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(v));
1533 v = apic_read(APIC_LVR);
1534 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1535 ver = GET_APIC_VERSION(v);
1536 maxlvt = get_maxlvt();
1538 v = apic_read(APIC_TASKPRI);
1539 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1541 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1542 v = apic_read(APIC_ARBPRI);
1543 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1544 v & APIC_ARBPRI_MASK);
1545 v = apic_read(APIC_PROCPRI);
1546 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1549 v = apic_read(APIC_EOI);
1550 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1551 v = apic_read(APIC_RRR);
1552 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1553 v = apic_read(APIC_LDR);
1554 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1555 v = apic_read(APIC_DFR);
1556 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1557 v = apic_read(APIC_SPIV);
1558 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1560 printk(KERN_DEBUG "... APIC ISR field:\n");
1561 print_APIC_bitfield(APIC_ISR);
1562 printk(KERN_DEBUG "... APIC TMR field:\n");
1563 print_APIC_bitfield(APIC_TMR);
1564 printk(KERN_DEBUG "... APIC IRR field:\n");
1565 print_APIC_bitfield(APIC_IRR);
1567 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1568 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1569 apic_write(APIC_ESR, 0);
1570 v = apic_read(APIC_ESR);
1571 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1574 v = apic_read(APIC_ICR);
1575 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1576 v = apic_read(APIC_ICR2);
1577 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1579 v = apic_read(APIC_LVTT);
1580 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1582 if (maxlvt > 3) { /* PC is LVT#4. */
1583 v = apic_read(APIC_LVTPC);
1584 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1586 v = apic_read(APIC_LVT0);
1587 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1588 v = apic_read(APIC_LVT1);
1589 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1591 if (maxlvt > 2) { /* ERR is LVT#3. */
1592 v = apic_read(APIC_LVTERR);
1593 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1596 v = apic_read(APIC_TMICT);
1597 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1598 v = apic_read(APIC_TMCCT);
1599 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1600 v = apic_read(APIC_TDCR);
1601 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1602 printk("\n");
1605 void print_all_local_APICs (void)
1607 on_each_cpu(print_local_APIC, NULL, 1, 1);
1610 void /*__init*/ print_PIC(void)
1612 unsigned int v;
1613 unsigned long flags;
1615 if (apic_verbosity == APIC_QUIET)
1616 return;
1618 printk(KERN_DEBUG "\nprinting PIC contents\n");
1620 spin_lock_irqsave(&i8259A_lock, flags);
1622 v = inb(0xa1) << 8 | inb(0x21);
1623 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1625 v = inb(0xa0) << 8 | inb(0x20);
1626 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1628 outb(0x0b,0xa0);
1629 outb(0x0b,0x20);
1630 v = inb(0xa0) << 8 | inb(0x20);
1631 outb(0x0a,0xa0);
1632 outb(0x0a,0x20);
1634 spin_unlock_irqrestore(&i8259A_lock, flags);
1636 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1638 v = inb(0x4d1) << 8 | inb(0x4d0);
1639 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1642 #endif /* 0 */
1644 static void __init enable_IO_APIC(void)
1646 union IO_APIC_reg_01 reg_01;
1647 int i8259_apic, i8259_pin;
1648 int i, apic;
1649 unsigned long flags;
1651 for (i = 0; i < PIN_MAP_SIZE; i++) {
1652 irq_2_pin[i].pin = -1;
1653 irq_2_pin[i].next = 0;
1655 if (!pirqs_enabled)
1656 for (i = 0; i < MAX_PIRQS; i++)
1657 pirq_entries[i] = -1;
1660 * The number of IO-APIC IRQ registers (== #pins):
1662 for (apic = 0; apic < nr_ioapics; apic++) {
1663 spin_lock_irqsave(&ioapic_lock, flags);
1664 reg_01.raw = io_apic_read(apic, 1);
1665 spin_unlock_irqrestore(&ioapic_lock, flags);
1666 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1668 for(apic = 0; apic < nr_ioapics; apic++) {
1669 int pin;
1670 /* See if any of the pins is in ExtINT mode */
1671 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1672 struct IO_APIC_route_entry entry;
1673 spin_lock_irqsave(&ioapic_lock, flags);
1674 *(((int *)&entry) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
1675 *(((int *)&entry) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
1676 spin_unlock_irqrestore(&ioapic_lock, flags);
1679 /* If the interrupt line is enabled and in ExtInt mode
1680 * I have found the pin where the i8259 is connected.
1682 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1683 ioapic_i8259.apic = apic;
1684 ioapic_i8259.pin = pin;
1685 goto found_i8259;
1689 found_i8259:
1690 /* Look to see what if the MP table has reported the ExtINT */
1691 /* If we could not find the appropriate pin by looking at the ioapic
1692 * the i8259 probably is not connected the ioapic but give the
1693 * mptable a chance anyway.
1695 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1696 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1697 /* Trust the MP table if nothing is setup in the hardware */
1698 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1699 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1700 ioapic_i8259.pin = i8259_pin;
1701 ioapic_i8259.apic = i8259_apic;
1703 /* Complain if the MP table and the hardware disagree */
1704 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1705 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1707 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1711 * Do not trust the IO-APIC being empty at bootup
1713 clear_IO_APIC();
1717 * Not an __init, needed by the reboot code
1719 void disable_IO_APIC(void)
1722 * Clear the IO-APIC before rebooting:
1724 clear_IO_APIC();
1727 * If the i8259 is routed through an IOAPIC
1728 * Put that IOAPIC in virtual wire mode
1729 * so legacy interrupts can be delivered.
1731 if (ioapic_i8259.pin != -1) {
1732 struct IO_APIC_route_entry entry;
1733 unsigned long flags;
1735 memset(&entry, 0, sizeof(entry));
1736 entry.mask = 0; /* Enabled */
1737 entry.trigger = 0; /* Edge */
1738 entry.irr = 0;
1739 entry.polarity = 0; /* High */
1740 entry.delivery_status = 0;
1741 entry.dest_mode = 0; /* Physical */
1742 entry.delivery_mode = dest_ExtINT; /* ExtInt */
1743 entry.vector = 0;
1744 entry.dest.physical.physical_dest =
1745 GET_APIC_ID(apic_read(APIC_ID));
1748 * Add it to the IO-APIC irq-routing table:
1750 spin_lock_irqsave(&ioapic_lock, flags);
1751 io_apic_write(ioapic_i8259.apic, 0x11+2*ioapic_i8259.pin,
1752 *(((int *)&entry)+1));
1753 io_apic_write(ioapic_i8259.apic, 0x10+2*ioapic_i8259.pin,
1754 *(((int *)&entry)+0));
1755 spin_unlock_irqrestore(&ioapic_lock, flags);
1757 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1761 * function to set the IO-APIC physical IDs based on the
1762 * values stored in the MPC table.
1764 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1767 #ifndef CONFIG_X86_NUMAQ
1768 static void __init setup_ioapic_ids_from_mpc(void)
1770 union IO_APIC_reg_00 reg_00;
1771 physid_mask_t phys_id_present_map;
1772 int apic;
1773 int i;
1774 unsigned char old_id;
1775 unsigned long flags;
1778 * Don't check I/O APIC IDs for xAPIC systems. They have
1779 * no meaning without the serial APIC bus.
1781 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1782 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
1783 return;
1785 * This is broken; anything with a real cpu count has to
1786 * circumvent this idiocy regardless.
1788 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1791 * Set the IOAPIC ID to the value stored in the MPC table.
1793 for (apic = 0; apic < nr_ioapics; apic++) {
1795 /* Read the register 0 value */
1796 spin_lock_irqsave(&ioapic_lock, flags);
1797 reg_00.raw = io_apic_read(apic, 0);
1798 spin_unlock_irqrestore(&ioapic_lock, flags);
1800 old_id = mp_ioapics[apic].mpc_apicid;
1802 if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) {
1803 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1804 apic, mp_ioapics[apic].mpc_apicid);
1805 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1806 reg_00.bits.ID);
1807 mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
1811 * Sanity check, is the ID really free? Every APIC in a
1812 * system must have a unique ID or we get lots of nice
1813 * 'stuck on smp_invalidate_needed IPI wait' messages.
1815 if (check_apicid_used(phys_id_present_map,
1816 mp_ioapics[apic].mpc_apicid)) {
1817 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1818 apic, mp_ioapics[apic].mpc_apicid);
1819 for (i = 0; i < get_physical_broadcast(); i++)
1820 if (!physid_isset(i, phys_id_present_map))
1821 break;
1822 if (i >= get_physical_broadcast())
1823 panic("Max APIC ID exceeded!\n");
1824 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1826 physid_set(i, phys_id_present_map);
1827 mp_ioapics[apic].mpc_apicid = i;
1828 } else {
1829 physid_mask_t tmp;
1830 tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid);
1831 apic_printk(APIC_VERBOSE, "Setting %d in the "
1832 "phys_id_present_map\n",
1833 mp_ioapics[apic].mpc_apicid);
1834 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1839 * We need to adjust the IRQ routing table
1840 * if the ID changed.
1842 if (old_id != mp_ioapics[apic].mpc_apicid)
1843 for (i = 0; i < mp_irq_entries; i++)
1844 if (mp_irqs[i].mpc_dstapic == old_id)
1845 mp_irqs[i].mpc_dstapic
1846 = mp_ioapics[apic].mpc_apicid;
1849 * Read the right value from the MPC table and
1850 * write it into the ID register.
1852 apic_printk(APIC_VERBOSE, KERN_INFO
1853 "...changing IO-APIC physical APIC ID to %d ...",
1854 mp_ioapics[apic].mpc_apicid);
1856 reg_00.bits.ID = mp_ioapics[apic].mpc_apicid;
1857 spin_lock_irqsave(&ioapic_lock, flags);
1858 io_apic_write(apic, 0, reg_00.raw);
1859 spin_unlock_irqrestore(&ioapic_lock, flags);
1862 * Sanity check
1864 spin_lock_irqsave(&ioapic_lock, flags);
1865 reg_00.raw = io_apic_read(apic, 0);
1866 spin_unlock_irqrestore(&ioapic_lock, flags);
1867 if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid)
1868 printk("could not set ID!\n");
1869 else
1870 apic_printk(APIC_VERBOSE, " ok.\n");
1873 #else
1874 static void __init setup_ioapic_ids_from_mpc(void) { }
1875 #endif
1878 * There is a nasty bug in some older SMP boards, their mptable lies
1879 * about the timer IRQ. We do the following to work around the situation:
1881 * - timer IRQ defaults to IO-APIC IRQ
1882 * - if this function detects that timer IRQs are defunct, then we fall
1883 * back to ISA timer IRQs
1885 static int __init timer_irq_works(void)
1887 unsigned long t1 = jiffies;
1889 local_irq_enable();
1890 /* Let ten ticks pass... */
1891 mdelay((10 * 1000) / HZ);
1894 * Expect a few ticks at least, to be sure some possible
1895 * glue logic does not lock up after one or two first
1896 * ticks in a non-ExtINT mode. Also the local APIC
1897 * might have cached one ExtINT interrupt. Finally, at
1898 * least one tick may be lost due to delays.
1900 if (jiffies - t1 > 4)
1901 return 1;
1903 return 0;
1907 * In the SMP+IOAPIC case it might happen that there are an unspecified
1908 * number of pending IRQ events unhandled. These cases are very rare,
1909 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1910 * better to do it this way as thus we do not have to be aware of
1911 * 'pending' interrupts in the IRQ path, except at this point.
1914 * Edge triggered needs to resend any interrupt
1915 * that was delayed but this is now handled in the device
1916 * independent code.
1920 * Starting up a edge-triggered IO-APIC interrupt is
1921 * nasty - we need to make sure that we get the edge.
1922 * If it is already asserted for some reason, we need
1923 * return 1 to indicate that is was pending.
1925 * This is not complete - we should be able to fake
1926 * an edge even if it isn't on the 8259A...
1928 static unsigned int startup_edge_ioapic_irq(unsigned int irq)
1930 int was_pending = 0;
1931 unsigned long flags;
1933 spin_lock_irqsave(&ioapic_lock, flags);
1934 if (irq < 16) {
1935 disable_8259A_irq(irq);
1936 if (i8259A_irq_pending(irq))
1937 was_pending = 1;
1939 __unmask_IO_APIC_irq(irq);
1940 spin_unlock_irqrestore(&ioapic_lock, flags);
1942 return was_pending;
1946 * Once we have recorded IRQ_PENDING already, we can mask the
1947 * interrupt for real. This prevents IRQ storms from unhandled
1948 * devices.
1950 static void ack_edge_ioapic_irq(unsigned int irq)
1952 move_irq(irq);
1953 if ((irq_desc[irq].status & (IRQ_PENDING | IRQ_DISABLED))
1954 == (IRQ_PENDING | IRQ_DISABLED))
1955 mask_IO_APIC_irq(irq);
1956 ack_APIC_irq();
1960 * Level triggered interrupts can just be masked,
1961 * and shutting down and starting up the interrupt
1962 * is the same as enabling and disabling them -- except
1963 * with a startup need to return a "was pending" value.
1965 * Level triggered interrupts are special because we
1966 * do not touch any IO-APIC register while handling
1967 * them. We ack the APIC in the end-IRQ handler, not
1968 * in the start-IRQ-handler. Protection against reentrance
1969 * from the same interrupt is still provided, both by the
1970 * generic IRQ layer and by the fact that an unacked local
1971 * APIC does not accept IRQs.
1973 static unsigned int startup_level_ioapic_irq (unsigned int irq)
1975 unmask_IO_APIC_irq(irq);
1977 return 0; /* don't check for pending */
1980 static void end_level_ioapic_irq (unsigned int irq)
1982 unsigned long v;
1983 int i;
1985 move_irq(irq);
1987 * It appears there is an erratum which affects at least version 0x11
1988 * of I/O APIC (that's the 82093AA and cores integrated into various
1989 * chipsets). Under certain conditions a level-triggered interrupt is
1990 * erroneously delivered as edge-triggered one but the respective IRR
1991 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1992 * message but it will never arrive and further interrupts are blocked
1993 * from the source. The exact reason is so far unknown, but the
1994 * phenomenon was observed when two consecutive interrupt requests
1995 * from a given source get delivered to the same CPU and the source is
1996 * temporarily disabled in between.
1998 * A workaround is to simulate an EOI message manually. We achieve it
1999 * by setting the trigger mode to edge and then to level when the edge
2000 * trigger mode gets detected in the TMR of a local APIC for a
2001 * level-triggered interrupt. We mask the source for the time of the
2002 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2003 * The idea is from Manfred Spraul. --macro
2005 i = IO_APIC_VECTOR(irq);
2007 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2009 ack_APIC_irq();
2011 if (!(v & (1 << (i & 0x1f)))) {
2012 atomic_inc(&irq_mis_count);
2013 spin_lock(&ioapic_lock);
2014 __mask_and_edge_IO_APIC_irq(irq);
2015 __unmask_and_level_IO_APIC_irq(irq);
2016 spin_unlock(&ioapic_lock);
2020 #ifdef CONFIG_PCI_MSI
2021 static unsigned int startup_edge_ioapic_vector(unsigned int vector)
2023 int irq = vector_to_irq(vector);
2025 return startup_edge_ioapic_irq(irq);
2028 static void ack_edge_ioapic_vector(unsigned int vector)
2030 int irq = vector_to_irq(vector);
2032 move_native_irq(vector);
2033 ack_edge_ioapic_irq(irq);
2036 static unsigned int startup_level_ioapic_vector (unsigned int vector)
2038 int irq = vector_to_irq(vector);
2040 return startup_level_ioapic_irq (irq);
2043 static void end_level_ioapic_vector (unsigned int vector)
2045 int irq = vector_to_irq(vector);
2047 move_native_irq(vector);
2048 end_level_ioapic_irq(irq);
2051 static void mask_IO_APIC_vector (unsigned int vector)
2053 int irq = vector_to_irq(vector);
2055 mask_IO_APIC_irq(irq);
2058 static void unmask_IO_APIC_vector (unsigned int vector)
2060 int irq = vector_to_irq(vector);
2062 unmask_IO_APIC_irq(irq);
2065 #ifdef CONFIG_SMP
2066 static void set_ioapic_affinity_vector (unsigned int vector,
2067 cpumask_t cpu_mask)
2069 int irq = vector_to_irq(vector);
2071 set_native_irq_info(vector, cpu_mask);
2072 set_ioapic_affinity_irq(irq, cpu_mask);
2074 #endif
2075 #endif
2078 * Level and edge triggered IO-APIC interrupts need different handling,
2079 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2080 * handled with the level-triggered descriptor, but that one has slightly
2081 * more overhead. Level-triggered interrupts cannot be handled with the
2082 * edge-triggered handler, without risking IRQ storms and other ugly
2083 * races.
2085 static struct hw_interrupt_type ioapic_edge_type __read_mostly = {
2086 .typename = "IO-APIC-edge",
2087 .startup = startup_edge_ioapic,
2088 .shutdown = shutdown_edge_ioapic,
2089 .enable = enable_edge_ioapic,
2090 .disable = disable_edge_ioapic,
2091 .ack = ack_edge_ioapic,
2092 .end = end_edge_ioapic,
2093 #ifdef CONFIG_SMP
2094 .set_affinity = set_ioapic_affinity,
2095 #endif
2098 static struct hw_interrupt_type ioapic_level_type __read_mostly = {
2099 .typename = "IO-APIC-level",
2100 .startup = startup_level_ioapic,
2101 .shutdown = shutdown_level_ioapic,
2102 .enable = enable_level_ioapic,
2103 .disable = disable_level_ioapic,
2104 .ack = mask_and_ack_level_ioapic,
2105 .end = end_level_ioapic,
2106 #ifdef CONFIG_SMP
2107 .set_affinity = set_ioapic_affinity,
2108 #endif
2111 static inline void init_IO_APIC_traps(void)
2113 int irq;
2116 * NOTE! The local APIC isn't very good at handling
2117 * multiple interrupts at the same interrupt level.
2118 * As the interrupt level is determined by taking the
2119 * vector number and shifting that right by 4, we
2120 * want to spread these out a bit so that they don't
2121 * all fall in the same interrupt level.
2123 * Also, we've got to be careful not to trash gate
2124 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2126 for (irq = 0; irq < NR_IRQS ; irq++) {
2127 int tmp = irq;
2128 if (use_pci_vector()) {
2129 if (!platform_legacy_irq(tmp))
2130 if ((tmp = vector_to_irq(tmp)) == -1)
2131 continue;
2133 if (IO_APIC_IRQ(tmp) && !IO_APIC_VECTOR(tmp)) {
2135 * Hmm.. We don't have an entry for this,
2136 * so default to an old-fashioned 8259
2137 * interrupt if we can..
2139 if (irq < 16)
2140 make_8259A_irq(irq);
2141 else
2142 /* Strange. Oh, well.. */
2143 irq_desc[irq].handler = &no_irq_type;
2148 static void enable_lapic_irq (unsigned int irq)
2150 unsigned long v;
2152 v = apic_read(APIC_LVT0);
2153 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
2156 static void disable_lapic_irq (unsigned int irq)
2158 unsigned long v;
2160 v = apic_read(APIC_LVT0);
2161 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2164 static void ack_lapic_irq (unsigned int irq)
2166 ack_APIC_irq();
2169 static void end_lapic_irq (unsigned int i) { /* nothing */ }
2171 static struct hw_interrupt_type lapic_irq_type __read_mostly = {
2172 .typename = "local-APIC-edge",
2173 .startup = NULL, /* startup_irq() not used for IRQ0 */
2174 .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
2175 .enable = enable_lapic_irq,
2176 .disable = disable_lapic_irq,
2177 .ack = ack_lapic_irq,
2178 .end = end_lapic_irq
2181 static void setup_nmi (void)
2184 * Dirty trick to enable the NMI watchdog ...
2185 * We put the 8259A master into AEOI mode and
2186 * unmask on all local APICs LVT0 as NMI.
2188 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2189 * is from Maciej W. Rozycki - so we do not have to EOI from
2190 * the NMI handler or the timer interrupt.
2192 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2194 on_each_cpu(enable_NMI_through_LVT0, NULL, 1, 1);
2196 apic_printk(APIC_VERBOSE, " done.\n");
2200 * This looks a bit hackish but it's about the only one way of sending
2201 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2202 * not support the ExtINT mode, unfortunately. We need to send these
2203 * cycles as some i82489DX-based boards have glue logic that keeps the
2204 * 8259A interrupt line asserted until INTA. --macro
2206 static inline void unlock_ExtINT_logic(void)
2208 int apic, pin, i;
2209 struct IO_APIC_route_entry entry0, entry1;
2210 unsigned char save_control, save_freq_select;
2211 unsigned long flags;
2213 pin = find_isa_irq_pin(8, mp_INT);
2214 apic = find_isa_irq_apic(8, mp_INT);
2215 if (pin == -1)
2216 return;
2218 spin_lock_irqsave(&ioapic_lock, flags);
2219 *(((int *)&entry0) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
2220 *(((int *)&entry0) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
2221 spin_unlock_irqrestore(&ioapic_lock, flags);
2222 clear_IO_APIC_pin(apic, pin);
2224 memset(&entry1, 0, sizeof(entry1));
2226 entry1.dest_mode = 0; /* physical delivery */
2227 entry1.mask = 0; /* unmask IRQ now */
2228 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2229 entry1.delivery_mode = dest_ExtINT;
2230 entry1.polarity = entry0.polarity;
2231 entry1.trigger = 0;
2232 entry1.vector = 0;
2234 spin_lock_irqsave(&ioapic_lock, flags);
2235 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
2236 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
2237 spin_unlock_irqrestore(&ioapic_lock, flags);
2239 save_control = CMOS_READ(RTC_CONTROL);
2240 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2241 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2242 RTC_FREQ_SELECT);
2243 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2245 i = 100;
2246 while (i-- > 0) {
2247 mdelay(10);
2248 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2249 i -= 10;
2252 CMOS_WRITE(save_control, RTC_CONTROL);
2253 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2254 clear_IO_APIC_pin(apic, pin);
2256 spin_lock_irqsave(&ioapic_lock, flags);
2257 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
2258 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
2259 spin_unlock_irqrestore(&ioapic_lock, flags);
2262 int timer_uses_ioapic_pin_0;
2265 * This code may look a bit paranoid, but it's supposed to cooperate with
2266 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2267 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2268 * fanatically on his truly buggy board.
2270 static inline void check_timer(void)
2272 int apic1, pin1, apic2, pin2;
2273 int vector;
2276 * get/set the timer IRQ vector:
2278 disable_8259A_irq(0);
2279 vector = assign_irq_vector(0);
2280 set_intr_gate(vector, interrupt[0]);
2283 * Subtle, code in do_timer_interrupt() expects an AEOI
2284 * mode for the 8259A whenever interrupts are routed
2285 * through I/O APICs. Also IRQ0 has to be enabled in
2286 * the 8259A which implies the virtual wire has to be
2287 * disabled in the local APIC.
2289 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2290 init_8259A(1);
2291 timer_ack = 1;
2292 if (timer_over_8254 > 0)
2293 enable_8259A_irq(0);
2295 pin1 = find_isa_irq_pin(0, mp_INT);
2296 apic1 = find_isa_irq_apic(0, mp_INT);
2297 pin2 = ioapic_i8259.pin;
2298 apic2 = ioapic_i8259.apic;
2300 if (pin1 == 0)
2301 timer_uses_ioapic_pin_0 = 1;
2303 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2304 vector, apic1, pin1, apic2, pin2);
2306 if (pin1 != -1) {
2308 * Ok, does IRQ0 through the IOAPIC work?
2310 unmask_IO_APIC_irq(0);
2311 if (timer_irq_works()) {
2312 if (nmi_watchdog == NMI_IO_APIC) {
2313 disable_8259A_irq(0);
2314 setup_nmi();
2315 enable_8259A_irq(0);
2317 if (disable_timer_pin_1 > 0)
2318 clear_IO_APIC_pin(0, pin1);
2319 return;
2321 clear_IO_APIC_pin(apic1, pin1);
2322 printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to "
2323 "IO-APIC\n");
2326 printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
2327 if (pin2 != -1) {
2328 printk("\n..... (found pin %d) ...", pin2);
2330 * legacy devices should be connected to IO APIC #0
2332 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
2333 if (timer_irq_works()) {
2334 printk("works.\n");
2335 if (pin1 != -1)
2336 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
2337 else
2338 add_pin_to_irq(0, apic2, pin2);
2339 if (nmi_watchdog == NMI_IO_APIC) {
2340 setup_nmi();
2342 return;
2345 * Cleanup, just in case ...
2347 clear_IO_APIC_pin(apic2, pin2);
2349 printk(" failed.\n");
2351 if (nmi_watchdog == NMI_IO_APIC) {
2352 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
2353 nmi_watchdog = 0;
2356 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2358 disable_8259A_irq(0);
2359 irq_desc[0].handler = &lapic_irq_type;
2360 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2361 enable_8259A_irq(0);
2363 if (timer_irq_works()) {
2364 printk(" works.\n");
2365 return;
2367 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2368 printk(" failed.\n");
2370 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2372 timer_ack = 0;
2373 init_8259A(0);
2374 make_8259A_irq(0);
2375 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2377 unlock_ExtINT_logic();
2379 if (timer_irq_works()) {
2380 printk(" works.\n");
2381 return;
2383 printk(" failed :(.\n");
2384 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2385 "report. Then try booting with the 'noapic' option");
2390 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2391 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2392 * Linux doesn't really care, as it's not actually used
2393 * for any interrupt handling anyway.
2395 #define PIC_IRQS (1 << PIC_CASCADE_IR)
2397 void __init setup_IO_APIC(void)
2399 enable_IO_APIC();
2401 if (acpi_ioapic)
2402 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2403 else
2404 io_apic_irqs = ~PIC_IRQS;
2406 printk("ENABLING IO-APIC IRQs\n");
2409 * Set up IO-APIC IRQ routing.
2411 if (!acpi_ioapic)
2412 setup_ioapic_ids_from_mpc();
2413 sync_Arb_IDs();
2414 setup_IO_APIC_irqs();
2415 init_IO_APIC_traps();
2416 check_timer();
2417 if (!acpi_ioapic)
2418 print_IO_APIC();
2421 static int __init setup_disable_8254_timer(char *s)
2423 timer_over_8254 = -1;
2424 return 1;
2426 static int __init setup_enable_8254_timer(char *s)
2428 timer_over_8254 = 2;
2429 return 1;
2432 __setup("disable_8254_timer", setup_disable_8254_timer);
2433 __setup("enable_8254_timer", setup_enable_8254_timer);
2436 * Called after all the initialization is done. If we didnt find any
2437 * APIC bugs then we can allow the modify fast path
2440 static int __init io_apic_bug_finalize(void)
2442 if(sis_apic_bug == -1)
2443 sis_apic_bug = 0;
2444 return 0;
2447 late_initcall(io_apic_bug_finalize);
2449 struct sysfs_ioapic_data {
2450 struct sys_device dev;
2451 struct IO_APIC_route_entry entry[0];
2453 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2455 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
2457 struct IO_APIC_route_entry *entry;
2458 struct sysfs_ioapic_data *data;
2459 unsigned long flags;
2460 int i;
2462 data = container_of(dev, struct sysfs_ioapic_data, dev);
2463 entry = data->entry;
2464 spin_lock_irqsave(&ioapic_lock, flags);
2465 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ ) {
2466 *(((int *)entry) + 1) = io_apic_read(dev->id, 0x11 + 2 * i);
2467 *(((int *)entry) + 0) = io_apic_read(dev->id, 0x10 + 2 * i);
2469 spin_unlock_irqrestore(&ioapic_lock, flags);
2471 return 0;
2474 static int ioapic_resume(struct sys_device *dev)
2476 struct IO_APIC_route_entry *entry;
2477 struct sysfs_ioapic_data *data;
2478 unsigned long flags;
2479 union IO_APIC_reg_00 reg_00;
2480 int i;
2482 data = container_of(dev, struct sysfs_ioapic_data, dev);
2483 entry = data->entry;
2485 spin_lock_irqsave(&ioapic_lock, flags);
2486 reg_00.raw = io_apic_read(dev->id, 0);
2487 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
2488 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
2489 io_apic_write(dev->id, 0, reg_00.raw);
2491 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ ) {
2492 io_apic_write(dev->id, 0x11+2*i, *(((int *)entry)+1));
2493 io_apic_write(dev->id, 0x10+2*i, *(((int *)entry)+0));
2495 spin_unlock_irqrestore(&ioapic_lock, flags);
2497 return 0;
2500 static struct sysdev_class ioapic_sysdev_class = {
2501 set_kset_name("ioapic"),
2502 .suspend = ioapic_suspend,
2503 .resume = ioapic_resume,
2506 static int __init ioapic_init_sysfs(void)
2508 struct sys_device * dev;
2509 int i, size, error = 0;
2511 error = sysdev_class_register(&ioapic_sysdev_class);
2512 if (error)
2513 return error;
2515 for (i = 0; i < nr_ioapics; i++ ) {
2516 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
2517 * sizeof(struct IO_APIC_route_entry);
2518 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
2519 if (!mp_ioapic_data[i]) {
2520 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2521 continue;
2523 memset(mp_ioapic_data[i], 0, size);
2524 dev = &mp_ioapic_data[i]->dev;
2525 dev->id = i;
2526 dev->cls = &ioapic_sysdev_class;
2527 error = sysdev_register(dev);
2528 if (error) {
2529 kfree(mp_ioapic_data[i]);
2530 mp_ioapic_data[i] = NULL;
2531 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2532 continue;
2536 return 0;
2539 device_initcall(ioapic_init_sysfs);
2541 /* --------------------------------------------------------------------------
2542 ACPI-based IOAPIC Configuration
2543 -------------------------------------------------------------------------- */
2545 #ifdef CONFIG_ACPI
2547 int __init io_apic_get_unique_id (int ioapic, int apic_id)
2549 union IO_APIC_reg_00 reg_00;
2550 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2551 physid_mask_t tmp;
2552 unsigned long flags;
2553 int i = 0;
2556 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2557 * buses (one for LAPICs, one for IOAPICs), where predecessors only
2558 * supports up to 16 on one shared APIC bus.
2560 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2561 * advantage of new APIC bus architecture.
2564 if (physids_empty(apic_id_map))
2565 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2567 spin_lock_irqsave(&ioapic_lock, flags);
2568 reg_00.raw = io_apic_read(ioapic, 0);
2569 spin_unlock_irqrestore(&ioapic_lock, flags);
2571 if (apic_id >= get_physical_broadcast()) {
2572 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2573 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2574 apic_id = reg_00.bits.ID;
2578 * Every APIC in a system must have a unique ID or we get lots of nice
2579 * 'stuck on smp_invalidate_needed IPI wait' messages.
2581 if (check_apicid_used(apic_id_map, apic_id)) {
2583 for (i = 0; i < get_physical_broadcast(); i++) {
2584 if (!check_apicid_used(apic_id_map, i))
2585 break;
2588 if (i == get_physical_broadcast())
2589 panic("Max apic_id exceeded!\n");
2591 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2592 "trying %d\n", ioapic, apic_id, i);
2594 apic_id = i;
2597 tmp = apicid_to_cpu_present(apic_id);
2598 physids_or(apic_id_map, apic_id_map, tmp);
2600 if (reg_00.bits.ID != apic_id) {
2601 reg_00.bits.ID = apic_id;
2603 spin_lock_irqsave(&ioapic_lock, flags);
2604 io_apic_write(ioapic, 0, reg_00.raw);
2605 reg_00.raw = io_apic_read(ioapic, 0);
2606 spin_unlock_irqrestore(&ioapic_lock, flags);
2608 /* Sanity check */
2609 if (reg_00.bits.ID != apic_id) {
2610 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2611 return -1;
2615 apic_printk(APIC_VERBOSE, KERN_INFO
2616 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2618 return apic_id;
2622 int __init io_apic_get_version (int ioapic)
2624 union IO_APIC_reg_01 reg_01;
2625 unsigned long flags;
2627 spin_lock_irqsave(&ioapic_lock, flags);
2628 reg_01.raw = io_apic_read(ioapic, 1);
2629 spin_unlock_irqrestore(&ioapic_lock, flags);
2631 return reg_01.bits.version;
2635 int __init io_apic_get_redir_entries (int ioapic)
2637 union IO_APIC_reg_01 reg_01;
2638 unsigned long flags;
2640 spin_lock_irqsave(&ioapic_lock, flags);
2641 reg_01.raw = io_apic_read(ioapic, 1);
2642 spin_unlock_irqrestore(&ioapic_lock, flags);
2644 return reg_01.bits.entries;
2648 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low)
2650 struct IO_APIC_route_entry entry;
2651 unsigned long flags;
2653 if (!IO_APIC_IRQ(irq)) {
2654 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2655 ioapic);
2656 return -EINVAL;
2660 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2661 * Note that we mask (disable) IRQs now -- these get enabled when the
2662 * corresponding device driver registers for this IRQ.
2665 memset(&entry,0,sizeof(entry));
2667 entry.delivery_mode = INT_DELIVERY_MODE;
2668 entry.dest_mode = INT_DEST_MODE;
2669 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2670 entry.trigger = edge_level;
2671 entry.polarity = active_high_low;
2672 entry.mask = 1;
2675 * IRQs < 16 are already in the irq_2_pin[] map
2677 if (irq >= 16)
2678 add_pin_to_irq(irq, ioapic, pin);
2680 entry.vector = assign_irq_vector(irq);
2682 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2683 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
2684 mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
2685 edge_level, active_high_low);
2687 ioapic_register_intr(irq, entry.vector, edge_level);
2689 if (!ioapic && (irq < 16))
2690 disable_8259A_irq(irq);
2692 spin_lock_irqsave(&ioapic_lock, flags);
2693 io_apic_write(ioapic, 0x11+2*pin, *(((int *)&entry)+1));
2694 io_apic_write(ioapic, 0x10+2*pin, *(((int *)&entry)+0));
2695 set_native_irq_info(use_pci_vector() ? entry.vector : irq, TARGET_CPUS);
2696 spin_unlock_irqrestore(&ioapic_lock, flags);
2698 return 0;
2701 #endif /* CONFIG_ACPI */