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>
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/smp_lock.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/sysdev.h>
34 #include <linux/pci.h>
35 #include <linux/msi.h>
36 #include <linux/htirq.h>
37 #include <linux/freezer.h>
42 #include <asm/timer.h>
43 #include <asm/i8259.h>
45 #include <asm/msidef.h>
46 #include <asm/hypertransport.h>
48 #include <mach_apic.h>
49 #include <mach_apicdef.h>
53 int (*ioapic_renumber_irq)(int ioapic, int irq);
54 atomic_t irq_mis_count;
56 /* Where if anywhere is the i8259 connect in external int mode */
57 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
59 static DEFINE_SPINLOCK(ioapic_lock);
60 static DEFINE_SPINLOCK(vector_lock);
62 int timer_over_8254 __initdata = 1;
65 * Is the SiS APIC rmw bug present ?
66 * -1 = don't know, 0 = no, 1 = yes
68 int sis_apic_bug = -1;
71 * # of IRQ routing registers
73 int nr_ioapic_registers[MAX_IO_APICS];
75 static int disable_timer_pin_1 __initdata;
78 * Rough estimation of how many shared IRQs there are, can
81 #define MAX_PLUS_SHARED_IRQS NR_IRQS
82 #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
85 * This is performance-critical, we want to do it O(1)
87 * the indexing order of this array favors 1:1 mappings
88 * between pins and IRQs.
91 static struct irq_pin_list {
93 } irq_2_pin[PIN_MAP_SIZE];
97 unsigned int unused[3];
101 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
103 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
104 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
107 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
109 struct io_apic __iomem *io_apic = io_apic_base(apic);
110 writel(reg, &io_apic->index);
111 return readl(&io_apic->data);
114 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
116 struct io_apic __iomem *io_apic = io_apic_base(apic);
117 writel(reg, &io_apic->index);
118 writel(value, &io_apic->data);
122 * Re-write a value: to be used for read-modify-write
123 * cycles where the read already set up the index register.
125 * Older SiS APIC requires we rewrite the index register
127 static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
129 volatile struct io_apic *io_apic = io_apic_base(apic);
131 writel(reg, &io_apic->index);
132 writel(value, &io_apic->data);
136 struct { u32 w1, w2; };
137 struct IO_APIC_route_entry entry;
140 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
142 union entry_union eu;
144 spin_lock_irqsave(&ioapic_lock, flags);
145 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
146 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
147 spin_unlock_irqrestore(&ioapic_lock, flags);
152 * When we write a new IO APIC routing entry, we need to write the high
153 * word first! If the mask bit in the low word is clear, we will enable
154 * the interrupt, and we need to make sure the entry is fully populated
155 * before that happens.
158 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
160 union entry_union eu;
162 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
163 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
166 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
169 spin_lock_irqsave(&ioapic_lock, flags);
170 __ioapic_write_entry(apic, pin, e);
171 spin_unlock_irqrestore(&ioapic_lock, flags);
175 * When we mask an IO APIC routing entry, we need to write the low
176 * word first, in order to set the mask bit before we change the
179 static void ioapic_mask_entry(int apic, int pin)
182 union entry_union eu = { .entry.mask = 1 };
184 spin_lock_irqsave(&ioapic_lock, flags);
185 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
186 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
187 spin_unlock_irqrestore(&ioapic_lock, flags);
191 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
192 * shared ISA-space IRQs, so we have to support them. We are super
193 * fast in the common case, and fast for shared ISA-space IRQs.
195 static void add_pin_to_irq(unsigned int irq, int apic, int pin)
197 static int first_free_entry = NR_IRQS;
198 struct irq_pin_list *entry = irq_2_pin + irq;
201 entry = irq_2_pin + entry->next;
203 if (entry->pin != -1) {
204 entry->next = first_free_entry;
205 entry = irq_2_pin + entry->next;
206 if (++first_free_entry >= PIN_MAP_SIZE)
207 panic("io_apic.c: whoops");
214 * Reroute an IRQ to a different pin.
216 static void __init replace_pin_at_irq(unsigned int irq,
217 int oldapic, int oldpin,
218 int newapic, int newpin)
220 struct irq_pin_list *entry = irq_2_pin + irq;
223 if (entry->apic == oldapic && entry->pin == oldpin) {
224 entry->apic = newapic;
229 entry = irq_2_pin + entry->next;
233 static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable)
235 struct irq_pin_list *entry = irq_2_pin + irq;
236 unsigned int pin, reg;
242 reg = io_apic_read(entry->apic, 0x10 + pin*2);
245 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
248 entry = irq_2_pin + entry->next;
253 static void __mask_IO_APIC_irq (unsigned int irq)
255 __modify_IO_APIC_irq(irq, 0x00010000, 0);
259 static void __unmask_IO_APIC_irq (unsigned int irq)
261 __modify_IO_APIC_irq(irq, 0, 0x00010000);
264 /* mask = 1, trigger = 0 */
265 static void __mask_and_edge_IO_APIC_irq (unsigned int irq)
267 __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000);
270 /* mask = 0, trigger = 1 */
271 static void __unmask_and_level_IO_APIC_irq (unsigned int irq)
273 __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000);
276 static void mask_IO_APIC_irq (unsigned int irq)
280 spin_lock_irqsave(&ioapic_lock, flags);
281 __mask_IO_APIC_irq(irq);
282 spin_unlock_irqrestore(&ioapic_lock, flags);
285 static void unmask_IO_APIC_irq (unsigned int irq)
289 spin_lock_irqsave(&ioapic_lock, flags);
290 __unmask_IO_APIC_irq(irq);
291 spin_unlock_irqrestore(&ioapic_lock, flags);
294 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
296 struct IO_APIC_route_entry entry;
298 /* Check delivery_mode to be sure we're not clearing an SMI pin */
299 entry = ioapic_read_entry(apic, pin);
300 if (entry.delivery_mode == dest_SMI)
304 * Disable it in the IO-APIC irq-routing table:
306 ioapic_mask_entry(apic, pin);
309 static void clear_IO_APIC (void)
313 for (apic = 0; apic < nr_ioapics; apic++)
314 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
315 clear_IO_APIC_pin(apic, pin);
319 static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
323 struct irq_pin_list *entry = irq_2_pin + irq;
324 unsigned int apicid_value;
327 cpus_and(tmp, cpumask, cpu_online_map);
331 cpus_and(cpumask, tmp, CPU_MASK_ALL);
333 apicid_value = cpu_mask_to_apicid(cpumask);
334 /* Prepare to do the io_apic_write */
335 apicid_value = apicid_value << 24;
336 spin_lock_irqsave(&ioapic_lock, flags);
341 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
344 entry = irq_2_pin + entry->next;
346 set_native_irq_info(irq, cpumask);
347 spin_unlock_irqrestore(&ioapic_lock, flags);
350 #if defined(CONFIG_IRQBALANCE)
351 # include <asm/processor.h> /* kernel_thread() */
352 # include <linux/kernel_stat.h> /* kstat */
353 # include <linux/slab.h> /* kmalloc() */
354 # include <linux/timer.h> /* time_after() */
356 #ifdef CONFIG_BALANCED_IRQ_DEBUG
357 # define TDprintk(x...) do { printk("<%ld:%s:%d>: ", jiffies, __FILE__, __LINE__); printk(x); } while (0)
358 # define Dprintk(x...) do { TDprintk(x); } while (0)
360 # define TDprintk(x...)
361 # define Dprintk(x...)
364 #define IRQBALANCE_CHECK_ARCH -999
365 #define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
366 #define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
367 #define BALANCED_IRQ_MORE_DELTA (HZ/10)
368 #define BALANCED_IRQ_LESS_DELTA (HZ)
370 static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
371 static int physical_balance __read_mostly;
372 static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
374 static struct irq_cpu_info {
375 unsigned long * last_irq;
376 unsigned long * irq_delta;
378 } irq_cpu_data[NR_CPUS];
380 #define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
381 #define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq])
382 #define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq])
384 #define IDLE_ENOUGH(cpu,now) \
385 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
387 #define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
389 #define CPU_TO_PACKAGEINDEX(i) (first_cpu(cpu_sibling_map[i]))
391 static cpumask_t balance_irq_affinity[NR_IRQS] = {
392 [0 ... NR_IRQS-1] = CPU_MASK_ALL
395 void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
397 balance_irq_affinity[irq] = mask;
400 static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
401 unsigned long now, int direction)
409 if (unlikely(cpu == curr_cpu))
412 if (direction == 1) {
421 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) ||
422 (search_idle && !IDLE_ENOUGH(cpu,now)));
427 static inline void balance_irq(int cpu, int irq)
429 unsigned long now = jiffies;
430 cpumask_t allowed_mask;
431 unsigned int new_cpu;
433 if (irqbalance_disabled)
436 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
437 new_cpu = move(cpu, allowed_mask, now, 1);
438 if (cpu != new_cpu) {
439 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
443 static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
446 Dprintk("Rotating IRQs among CPUs.\n");
447 for_each_online_cpu(i) {
448 for (j = 0; j < NR_IRQS; j++) {
449 if (!irq_desc[j].action)
451 /* Is it a significant load ? */
452 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) <
453 useful_load_threshold)
458 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
459 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
463 static void do_irq_balance(void)
466 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
467 unsigned long move_this_load = 0;
468 int max_loaded = 0, min_loaded = 0;
470 unsigned long useful_load_threshold = balanced_irq_interval + 10;
472 int tmp_loaded, first_attempt = 1;
473 unsigned long tmp_cpu_irq;
474 unsigned long imbalance = 0;
475 cpumask_t allowed_mask, target_cpu_mask, tmp;
477 for_each_possible_cpu(i) {
482 package_index = CPU_TO_PACKAGEINDEX(i);
483 for (j = 0; j < NR_IRQS; j++) {
484 unsigned long value_now, delta;
485 /* Is this an active IRQ? */
486 if (!irq_desc[j].action)
488 if ( package_index == i )
489 IRQ_DELTA(package_index,j) = 0;
490 /* Determine the total count per processor per IRQ */
491 value_now = (unsigned long) kstat_cpu(i).irqs[j];
493 /* Determine the activity per processor per IRQ */
494 delta = value_now - LAST_CPU_IRQ(i,j);
496 /* Update last_cpu_irq[][] for the next time */
497 LAST_CPU_IRQ(i,j) = value_now;
499 /* Ignore IRQs whose rate is less than the clock */
500 if (delta < useful_load_threshold)
502 /* update the load for the processor or package total */
503 IRQ_DELTA(package_index,j) += delta;
505 /* Keep track of the higher numbered sibling as well */
506 if (i != package_index)
509 * We have sibling A and sibling B in the package
511 * cpu_irq[A] = load for cpu A + load for cpu B
512 * cpu_irq[B] = load for cpu B
514 CPU_IRQ(package_index) += delta;
517 /* Find the least loaded processor package */
518 for_each_online_cpu(i) {
519 if (i != CPU_TO_PACKAGEINDEX(i))
521 if (min_cpu_irq > CPU_IRQ(i)) {
522 min_cpu_irq = CPU_IRQ(i);
526 max_cpu_irq = ULONG_MAX;
529 /* Look for heaviest loaded processor.
530 * We may come back to get the next heaviest loaded processor.
531 * Skip processors with trivial loads.
535 for_each_online_cpu(i) {
536 if (i != CPU_TO_PACKAGEINDEX(i))
538 if (max_cpu_irq <= CPU_IRQ(i))
540 if (tmp_cpu_irq < CPU_IRQ(i)) {
541 tmp_cpu_irq = CPU_IRQ(i);
546 if (tmp_loaded == -1) {
547 /* In the case of small number of heavy interrupt sources,
548 * loading some of the cpus too much. We use Ingo's original
549 * approach to rotate them around.
551 if (!first_attempt && imbalance >= useful_load_threshold) {
552 rotate_irqs_among_cpus(useful_load_threshold);
555 goto not_worth_the_effort;
558 first_attempt = 0; /* heaviest search */
559 max_cpu_irq = tmp_cpu_irq; /* load */
560 max_loaded = tmp_loaded; /* processor */
561 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
563 Dprintk("max_loaded cpu = %d\n", max_loaded);
564 Dprintk("min_loaded cpu = %d\n", min_loaded);
565 Dprintk("max_cpu_irq load = %ld\n", max_cpu_irq);
566 Dprintk("min_cpu_irq load = %ld\n", min_cpu_irq);
567 Dprintk("load imbalance = %lu\n", imbalance);
569 /* if imbalance is less than approx 10% of max load, then
570 * observe diminishing returns action. - quit
572 if (imbalance < (max_cpu_irq >> 3)) {
573 Dprintk("Imbalance too trivial\n");
574 goto not_worth_the_effort;
578 /* if we select an IRQ to move that can't go where we want, then
579 * see if there is another one to try.
583 for (j = 0; j < NR_IRQS; j++) {
584 /* Is this an active IRQ? */
585 if (!irq_desc[j].action)
587 if (imbalance <= IRQ_DELTA(max_loaded,j))
589 /* Try to find the IRQ that is closest to the imbalance
590 * without going over.
592 if (move_this_load < IRQ_DELTA(max_loaded,j)) {
593 move_this_load = IRQ_DELTA(max_loaded,j);
597 if (selected_irq == -1) {
601 imbalance = move_this_load;
603 /* For physical_balance case, we accumlated both load
604 * values in the one of the siblings cpu_irq[],
605 * to use the same code for physical and logical processors
606 * as much as possible.
608 * NOTE: the cpu_irq[] array holds the sum of the load for
609 * sibling A and sibling B in the slot for the lowest numbered
610 * sibling (A), _AND_ the load for sibling B in the slot for
611 * the higher numbered sibling.
613 * We seek the least loaded sibling by making the comparison
616 load = CPU_IRQ(min_loaded) >> 1;
617 for_each_cpu_mask(j, cpu_sibling_map[min_loaded]) {
618 if (load > CPU_IRQ(j)) {
619 /* This won't change cpu_sibling_map[min_loaded] */
625 cpus_and(allowed_mask,
627 balance_irq_affinity[selected_irq]);
628 target_cpu_mask = cpumask_of_cpu(min_loaded);
629 cpus_and(tmp, target_cpu_mask, allowed_mask);
631 if (!cpus_empty(tmp)) {
633 Dprintk("irq = %d moved to cpu = %d\n",
634 selected_irq, min_loaded);
635 /* mark for change destination */
636 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
638 /* Since we made a change, come back sooner to
639 * check for more variation.
641 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
642 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
647 not_worth_the_effort:
649 * if we did not find an IRQ to move, then adjust the time interval
652 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
653 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
654 Dprintk("IRQ worth rotating not found\n");
658 static int balanced_irq(void *unused)
661 unsigned long prev_balance_time = jiffies;
662 long time_remaining = balanced_irq_interval;
666 /* push everything to CPU 0 to give us a starting point. */
667 for (i = 0 ; i < NR_IRQS ; i++) {
668 irq_desc[i].pending_mask = cpumask_of_cpu(0);
669 set_pending_irq(i, cpumask_of_cpu(0));
673 time_remaining = schedule_timeout_interruptible(time_remaining);
675 if (time_after(jiffies,
676 prev_balance_time+balanced_irq_interval)) {
679 prev_balance_time = jiffies;
680 time_remaining = balanced_irq_interval;
687 static int __init balanced_irq_init(void)
690 struct cpuinfo_x86 *c;
693 cpus_shift_right(tmp, cpu_online_map, 2);
695 /* When not overwritten by the command line ask subarchitecture. */
696 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
697 irqbalance_disabled = NO_BALANCE_IRQ;
698 if (irqbalance_disabled)
701 /* disable irqbalance completely if there is only one processor online */
702 if (num_online_cpus() < 2) {
703 irqbalance_disabled = 1;
707 * Enable physical balance only if more than 1 physical processor
710 if (smp_num_siblings > 1 && !cpus_empty(tmp))
711 physical_balance = 1;
713 for_each_online_cpu(i) {
714 irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
715 irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
716 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
717 printk(KERN_ERR "balanced_irq_init: out of memory");
720 memset(irq_cpu_data[i].irq_delta,0,sizeof(unsigned long) * NR_IRQS);
721 memset(irq_cpu_data[i].last_irq,0,sizeof(unsigned long) * NR_IRQS);
724 printk(KERN_INFO "Starting balanced_irq\n");
725 if (kernel_thread(balanced_irq, NULL, CLONE_KERNEL) >= 0)
728 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
730 for_each_possible_cpu(i) {
731 kfree(irq_cpu_data[i].irq_delta);
732 irq_cpu_data[i].irq_delta = NULL;
733 kfree(irq_cpu_data[i].last_irq);
734 irq_cpu_data[i].last_irq = NULL;
739 int __init irqbalance_disable(char *str)
741 irqbalance_disabled = 1;
745 __setup("noirqbalance", irqbalance_disable);
747 late_initcall(balanced_irq_init);
748 #endif /* CONFIG_IRQBALANCE */
749 #endif /* CONFIG_SMP */
752 void fastcall send_IPI_self(int vector)
759 apic_wait_icr_idle();
760 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
762 * Send the IPI. The write to APIC_ICR fires this off.
764 apic_write_around(APIC_ICR, cfg);
766 #endif /* !CONFIG_SMP */
770 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
771 * specific CPU-side IRQs.
775 static int pirq_entries [MAX_PIRQS];
776 static int pirqs_enabled;
777 int skip_ioapic_setup;
779 static int __init ioapic_setup(char *str)
781 skip_ioapic_setup = 1;
785 __setup("noapic", ioapic_setup);
787 static int __init ioapic_pirq_setup(char *str)
790 int ints[MAX_PIRQS+1];
792 get_options(str, ARRAY_SIZE(ints), ints);
794 for (i = 0; i < MAX_PIRQS; i++)
795 pirq_entries[i] = -1;
798 apic_printk(APIC_VERBOSE, KERN_INFO
799 "PIRQ redirection, working around broken MP-BIOS.\n");
801 if (ints[0] < MAX_PIRQS)
804 for (i = 0; i < max; i++) {
805 apic_printk(APIC_VERBOSE, KERN_DEBUG
806 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
808 * PIRQs are mapped upside down, usually.
810 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
815 __setup("pirq=", ioapic_pirq_setup);
818 * Find the IRQ entry number of a certain pin.
820 static int find_irq_entry(int apic, int pin, int type)
824 for (i = 0; i < mp_irq_entries; i++)
825 if (mp_irqs[i].mpc_irqtype == type &&
826 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
827 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
828 mp_irqs[i].mpc_dstirq == pin)
835 * Find the pin to which IRQ[irq] (ISA) is connected
837 static int __init find_isa_irq_pin(int irq, int type)
841 for (i = 0; i < mp_irq_entries; i++) {
842 int lbus = mp_irqs[i].mpc_srcbus;
844 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
845 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
846 mp_bus_id_to_type[lbus] == MP_BUS_MCA
848 (mp_irqs[i].mpc_irqtype == type) &&
849 (mp_irqs[i].mpc_srcbusirq == irq))
851 return mp_irqs[i].mpc_dstirq;
856 static int __init find_isa_irq_apic(int irq, int type)
860 for (i = 0; i < mp_irq_entries; i++) {
861 int lbus = mp_irqs[i].mpc_srcbus;
863 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
864 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
865 mp_bus_id_to_type[lbus] == MP_BUS_MCA
867 (mp_irqs[i].mpc_irqtype == type) &&
868 (mp_irqs[i].mpc_srcbusirq == irq))
871 if (i < mp_irq_entries) {
873 for(apic = 0; apic < nr_ioapics; apic++) {
874 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
883 * Find a specific PCI IRQ entry.
884 * Not an __init, possibly needed by modules
886 static int pin_2_irq(int idx, int apic, int pin);
888 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
890 int apic, i, best_guess = -1;
892 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
893 "slot:%d, pin:%d.\n", bus, slot, pin);
894 if (mp_bus_id_to_pci_bus[bus] == -1) {
895 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
898 for (i = 0; i < mp_irq_entries; i++) {
899 int lbus = mp_irqs[i].mpc_srcbus;
901 for (apic = 0; apic < nr_ioapics; apic++)
902 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
903 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
906 if ((mp_bus_id_to_type[lbus] == MP_BUS_PCI) &&
907 !mp_irqs[i].mpc_irqtype &&
909 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
910 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
912 if (!(apic || IO_APIC_IRQ(irq)))
915 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
918 * Use the first all-but-pin matching entry as a
919 * best-guess fuzzy result for broken mptables.
927 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
930 * This function currently is only a helper for the i386 smp boot process where
931 * we need to reprogram the ioredtbls to cater for the cpus which have come online
932 * so mask in all cases should simply be TARGET_CPUS
935 void __init setup_ioapic_dest(void)
937 int pin, ioapic, irq, irq_entry;
939 if (skip_ioapic_setup == 1)
942 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
943 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
944 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
947 irq = pin_2_irq(irq_entry, ioapic, pin);
948 set_ioapic_affinity_irq(irq, TARGET_CPUS);
956 * EISA Edge/Level control register, ELCR
958 static int EISA_ELCR(unsigned int irq)
961 unsigned int port = 0x4d0 + (irq >> 3);
962 return (inb(port) >> (irq & 7)) & 1;
964 apic_printk(APIC_VERBOSE, KERN_INFO
965 "Broken MPtable reports ISA irq %d\n", irq);
969 /* EISA interrupts are always polarity zero and can be edge or level
970 * trigger depending on the ELCR value. If an interrupt is listed as
971 * EISA conforming in the MP table, that means its trigger type must
972 * be read in from the ELCR */
974 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
975 #define default_EISA_polarity(idx) (0)
977 /* ISA interrupts are always polarity zero edge triggered,
978 * when listed as conforming in the MP table. */
980 #define default_ISA_trigger(idx) (0)
981 #define default_ISA_polarity(idx) (0)
983 /* PCI interrupts are always polarity one level triggered,
984 * when listed as conforming in the MP table. */
986 #define default_PCI_trigger(idx) (1)
987 #define default_PCI_polarity(idx) (1)
989 /* MCA interrupts are always polarity zero level triggered,
990 * when listed as conforming in the MP table. */
992 #define default_MCA_trigger(idx) (1)
993 #define default_MCA_polarity(idx) (0)
995 static int __init MPBIOS_polarity(int idx)
997 int bus = mp_irqs[idx].mpc_srcbus;
1001 * Determine IRQ line polarity (high active or low active):
1003 switch (mp_irqs[idx].mpc_irqflag & 3)
1005 case 0: /* conforms, ie. bus-type dependent polarity */
1007 switch (mp_bus_id_to_type[bus])
1009 case MP_BUS_ISA: /* ISA pin */
1011 polarity = default_ISA_polarity(idx);
1014 case MP_BUS_EISA: /* EISA pin */
1016 polarity = default_EISA_polarity(idx);
1019 case MP_BUS_PCI: /* PCI pin */
1021 polarity = default_PCI_polarity(idx);
1024 case MP_BUS_MCA: /* MCA pin */
1026 polarity = default_MCA_polarity(idx);
1031 printk(KERN_WARNING "broken BIOS!!\n");
1038 case 1: /* high active */
1043 case 2: /* reserved */
1045 printk(KERN_WARNING "broken BIOS!!\n");
1049 case 3: /* low active */
1054 default: /* invalid */
1056 printk(KERN_WARNING "broken BIOS!!\n");
1064 static int MPBIOS_trigger(int idx)
1066 int bus = mp_irqs[idx].mpc_srcbus;
1070 * Determine IRQ trigger mode (edge or level sensitive):
1072 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
1074 case 0: /* conforms, ie. bus-type dependent */
1076 switch (mp_bus_id_to_type[bus])
1078 case MP_BUS_ISA: /* ISA pin */
1080 trigger = default_ISA_trigger(idx);
1083 case MP_BUS_EISA: /* EISA pin */
1085 trigger = default_EISA_trigger(idx);
1088 case MP_BUS_PCI: /* PCI pin */
1090 trigger = default_PCI_trigger(idx);
1093 case MP_BUS_MCA: /* MCA pin */
1095 trigger = default_MCA_trigger(idx);
1100 printk(KERN_WARNING "broken BIOS!!\n");
1112 case 2: /* reserved */
1114 printk(KERN_WARNING "broken BIOS!!\n");
1123 default: /* invalid */
1125 printk(KERN_WARNING "broken BIOS!!\n");
1133 static inline int irq_polarity(int idx)
1135 return MPBIOS_polarity(idx);
1138 static inline int irq_trigger(int idx)
1140 return MPBIOS_trigger(idx);
1143 static int pin_2_irq(int idx, int apic, int pin)
1146 int bus = mp_irqs[idx].mpc_srcbus;
1149 * Debugging check, we are in big trouble if this message pops up!
1151 if (mp_irqs[idx].mpc_dstirq != pin)
1152 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1154 switch (mp_bus_id_to_type[bus])
1156 case MP_BUS_ISA: /* ISA pin */
1160 irq = mp_irqs[idx].mpc_srcbusirq;
1163 case MP_BUS_PCI: /* PCI pin */
1166 * PCI IRQs are mapped in order
1170 irq += nr_ioapic_registers[i++];
1174 * For MPS mode, so far only needed by ES7000 platform
1176 if (ioapic_renumber_irq)
1177 irq = ioapic_renumber_irq(apic, irq);
1183 printk(KERN_ERR "unknown bus type %d.\n",bus);
1190 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1192 if ((pin >= 16) && (pin <= 23)) {
1193 if (pirq_entries[pin-16] != -1) {
1194 if (!pirq_entries[pin-16]) {
1195 apic_printk(APIC_VERBOSE, KERN_DEBUG
1196 "disabling PIRQ%d\n", pin-16);
1198 irq = pirq_entries[pin-16];
1199 apic_printk(APIC_VERBOSE, KERN_DEBUG
1200 "using PIRQ%d -> IRQ %d\n",
1208 static inline int IO_APIC_irq_trigger(int irq)
1212 for (apic = 0; apic < nr_ioapics; apic++) {
1213 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1214 idx = find_irq_entry(apic,pin,mp_INT);
1215 if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
1216 return irq_trigger(idx);
1220 * nonexistent IRQs are edge default
1225 /* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
1226 static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
1228 static int __assign_irq_vector(int irq)
1230 static int current_vector = FIRST_DEVICE_VECTOR, offset = 0;
1233 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
1235 if (irq_vector[irq] > 0)
1236 return irq_vector[irq];
1238 current_vector += 8;
1239 if (current_vector == SYSCALL_VECTOR)
1240 current_vector += 8;
1242 if (current_vector >= FIRST_SYSTEM_VECTOR) {
1246 current_vector = FIRST_DEVICE_VECTOR + offset;
1249 vector = current_vector;
1250 irq_vector[irq] = vector;
1255 static int assign_irq_vector(int irq)
1257 unsigned long flags;
1260 spin_lock_irqsave(&vector_lock, flags);
1261 vector = __assign_irq_vector(irq);
1262 spin_unlock_irqrestore(&vector_lock, flags);
1266 static struct irq_chip ioapic_chip;
1268 #define IOAPIC_AUTO -1
1269 #define IOAPIC_EDGE 0
1270 #define IOAPIC_LEVEL 1
1272 static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
1274 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1275 trigger == IOAPIC_LEVEL)
1276 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1277 handle_fasteoi_irq, "fasteoi");
1279 irq_desc[irq].status |= IRQ_DELAYED_DISABLE;
1280 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1281 handle_edge_irq, "edge");
1283 set_intr_gate(vector, interrupt[irq]);
1286 static void __init setup_IO_APIC_irqs(void)
1288 struct IO_APIC_route_entry entry;
1289 int apic, pin, idx, irq, first_notcon = 1, vector;
1290 unsigned long flags;
1292 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1294 for (apic = 0; apic < nr_ioapics; apic++) {
1295 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1298 * add it to the IO-APIC irq-routing table:
1300 memset(&entry,0,sizeof(entry));
1302 entry.delivery_mode = INT_DELIVERY_MODE;
1303 entry.dest_mode = INT_DEST_MODE;
1304 entry.mask = 0; /* enable IRQ */
1305 entry.dest.logical.logical_dest =
1306 cpu_mask_to_apicid(TARGET_CPUS);
1308 idx = find_irq_entry(apic,pin,mp_INT);
1311 apic_printk(APIC_VERBOSE, KERN_DEBUG
1312 " IO-APIC (apicid-pin) %d-%d",
1313 mp_ioapics[apic].mpc_apicid,
1317 apic_printk(APIC_VERBOSE, ", %d-%d",
1318 mp_ioapics[apic].mpc_apicid, pin);
1322 entry.trigger = irq_trigger(idx);
1323 entry.polarity = irq_polarity(idx);
1325 if (irq_trigger(idx)) {
1330 irq = pin_2_irq(idx, apic, pin);
1332 * skip adding the timer int on secondary nodes, which causes
1333 * a small but painful rift in the time-space continuum
1335 if (multi_timer_check(apic, irq))
1338 add_pin_to_irq(irq, apic, pin);
1340 if (!apic && !IO_APIC_IRQ(irq))
1343 if (IO_APIC_IRQ(irq)) {
1344 vector = assign_irq_vector(irq);
1345 entry.vector = vector;
1346 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
1348 if (!apic && (irq < 16))
1349 disable_8259A_irq(irq);
1351 spin_lock_irqsave(&ioapic_lock, flags);
1352 __ioapic_write_entry(apic, pin, entry);
1353 set_native_irq_info(irq, TARGET_CPUS);
1354 spin_unlock_irqrestore(&ioapic_lock, flags);
1359 apic_printk(APIC_VERBOSE, " not connected.\n");
1363 * Set up the 8259A-master output pin:
1365 static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
1367 struct IO_APIC_route_entry entry;
1369 memset(&entry,0,sizeof(entry));
1371 disable_8259A_irq(0);
1374 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1377 * We use logical delivery to get the timer IRQ
1380 entry.dest_mode = INT_DEST_MODE;
1381 entry.mask = 0; /* unmask IRQ now */
1382 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1383 entry.delivery_mode = INT_DELIVERY_MODE;
1386 entry.vector = vector;
1389 * The timer IRQ doesn't have to know that behind the
1390 * scene we have a 8259A-master in AEOI mode ...
1392 irq_desc[0].chip = &ioapic_chip;
1393 set_irq_handler(0, handle_edge_irq);
1396 * Add it to the IO-APIC irq-routing table:
1398 ioapic_write_entry(apic, pin, entry);
1400 enable_8259A_irq(0);
1403 static inline void UNEXPECTED_IO_APIC(void)
1407 void __init print_IO_APIC(void)
1410 union IO_APIC_reg_00 reg_00;
1411 union IO_APIC_reg_01 reg_01;
1412 union IO_APIC_reg_02 reg_02;
1413 union IO_APIC_reg_03 reg_03;
1414 unsigned long flags;
1416 if (apic_verbosity == APIC_QUIET)
1419 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1420 for (i = 0; i < nr_ioapics; i++)
1421 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1422 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
1425 * We are a bit conservative about what we expect. We have to
1426 * know about every hardware change ASAP.
1428 printk(KERN_INFO "testing the IO APIC.......................\n");
1430 for (apic = 0; apic < nr_ioapics; apic++) {
1432 spin_lock_irqsave(&ioapic_lock, flags);
1433 reg_00.raw = io_apic_read(apic, 0);
1434 reg_01.raw = io_apic_read(apic, 1);
1435 if (reg_01.bits.version >= 0x10)
1436 reg_02.raw = io_apic_read(apic, 2);
1437 if (reg_01.bits.version >= 0x20)
1438 reg_03.raw = io_apic_read(apic, 3);
1439 spin_unlock_irqrestore(&ioapic_lock, flags);
1441 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
1442 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1443 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1444 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1445 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1446 if (reg_00.bits.ID >= get_physical_broadcast())
1447 UNEXPECTED_IO_APIC();
1448 if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
1449 UNEXPECTED_IO_APIC();
1451 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1452 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1453 if ( (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
1454 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
1455 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
1456 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
1457 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
1458 (reg_01.bits.entries != 0x2E) &&
1459 (reg_01.bits.entries != 0x3F)
1461 UNEXPECTED_IO_APIC();
1463 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1464 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1465 if ( (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
1466 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
1467 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
1468 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
1469 (reg_01.bits.version != 0x20) /* Intel P64H (82806 AA) */
1471 UNEXPECTED_IO_APIC();
1472 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
1473 UNEXPECTED_IO_APIC();
1476 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1477 * but the value of reg_02 is read as the previous read register
1478 * value, so ignore it if reg_02 == reg_01.
1480 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1481 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1482 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1483 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
1484 UNEXPECTED_IO_APIC();
1488 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1489 * or reg_03, but the value of reg_0[23] is read as the previous read
1490 * register value, so ignore it if reg_03 == reg_0[12].
1492 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1493 reg_03.raw != reg_01.raw) {
1494 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1495 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1496 if (reg_03.bits.__reserved_1)
1497 UNEXPECTED_IO_APIC();
1500 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1502 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1503 " Stat Dest Deli Vect: \n");
1505 for (i = 0; i <= reg_01.bits.entries; i++) {
1506 struct IO_APIC_route_entry entry;
1508 entry = ioapic_read_entry(apic, i);
1510 printk(KERN_DEBUG " %02x %03X %02X ",
1512 entry.dest.logical.logical_dest,
1513 entry.dest.physical.physical_dest
1516 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1521 entry.delivery_status,
1523 entry.delivery_mode,
1528 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1529 for (i = 0; i < NR_IRQS; i++) {
1530 struct irq_pin_list *entry = irq_2_pin + i;
1533 printk(KERN_DEBUG "IRQ%d ", i);
1535 printk("-> %d:%d", entry->apic, entry->pin);
1538 entry = irq_2_pin + entry->next;
1543 printk(KERN_INFO ".................................... done.\n");
1550 static void print_APIC_bitfield (int base)
1555 if (apic_verbosity == APIC_QUIET)
1558 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1559 for (i = 0; i < 8; i++) {
1560 v = apic_read(base + i*0x10);
1561 for (j = 0; j < 32; j++) {
1571 void /*__init*/ print_local_APIC(void * dummy)
1573 unsigned int v, ver, maxlvt;
1575 if (apic_verbosity == APIC_QUIET)
1578 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1579 smp_processor_id(), hard_smp_processor_id());
1580 v = apic_read(APIC_ID);
1581 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(v));
1582 v = apic_read(APIC_LVR);
1583 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1584 ver = GET_APIC_VERSION(v);
1585 maxlvt = get_maxlvt();
1587 v = apic_read(APIC_TASKPRI);
1588 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1590 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1591 v = apic_read(APIC_ARBPRI);
1592 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1593 v & APIC_ARBPRI_MASK);
1594 v = apic_read(APIC_PROCPRI);
1595 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1598 v = apic_read(APIC_EOI);
1599 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1600 v = apic_read(APIC_RRR);
1601 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1602 v = apic_read(APIC_LDR);
1603 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1604 v = apic_read(APIC_DFR);
1605 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1606 v = apic_read(APIC_SPIV);
1607 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1609 printk(KERN_DEBUG "... APIC ISR field:\n");
1610 print_APIC_bitfield(APIC_ISR);
1611 printk(KERN_DEBUG "... APIC TMR field:\n");
1612 print_APIC_bitfield(APIC_TMR);
1613 printk(KERN_DEBUG "... APIC IRR field:\n");
1614 print_APIC_bitfield(APIC_IRR);
1616 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1617 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1618 apic_write(APIC_ESR, 0);
1619 v = apic_read(APIC_ESR);
1620 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1623 v = apic_read(APIC_ICR);
1624 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1625 v = apic_read(APIC_ICR2);
1626 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1628 v = apic_read(APIC_LVTT);
1629 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1631 if (maxlvt > 3) { /* PC is LVT#4. */
1632 v = apic_read(APIC_LVTPC);
1633 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1635 v = apic_read(APIC_LVT0);
1636 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1637 v = apic_read(APIC_LVT1);
1638 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1640 if (maxlvt > 2) { /* ERR is LVT#3. */
1641 v = apic_read(APIC_LVTERR);
1642 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1645 v = apic_read(APIC_TMICT);
1646 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1647 v = apic_read(APIC_TMCCT);
1648 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1649 v = apic_read(APIC_TDCR);
1650 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1654 void print_all_local_APICs (void)
1656 on_each_cpu(print_local_APIC, NULL, 1, 1);
1659 void /*__init*/ print_PIC(void)
1662 unsigned long flags;
1664 if (apic_verbosity == APIC_QUIET)
1667 printk(KERN_DEBUG "\nprinting PIC contents\n");
1669 spin_lock_irqsave(&i8259A_lock, flags);
1671 v = inb(0xa1) << 8 | inb(0x21);
1672 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1674 v = inb(0xa0) << 8 | inb(0x20);
1675 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1679 v = inb(0xa0) << 8 | inb(0x20);
1683 spin_unlock_irqrestore(&i8259A_lock, flags);
1685 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1687 v = inb(0x4d1) << 8 | inb(0x4d0);
1688 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1693 static void __init enable_IO_APIC(void)
1695 union IO_APIC_reg_01 reg_01;
1696 int i8259_apic, i8259_pin;
1698 unsigned long flags;
1700 for (i = 0; i < PIN_MAP_SIZE; i++) {
1701 irq_2_pin[i].pin = -1;
1702 irq_2_pin[i].next = 0;
1705 for (i = 0; i < MAX_PIRQS; i++)
1706 pirq_entries[i] = -1;
1709 * The number of IO-APIC IRQ registers (== #pins):
1711 for (apic = 0; apic < nr_ioapics; apic++) {
1712 spin_lock_irqsave(&ioapic_lock, flags);
1713 reg_01.raw = io_apic_read(apic, 1);
1714 spin_unlock_irqrestore(&ioapic_lock, flags);
1715 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1717 for(apic = 0; apic < nr_ioapics; apic++) {
1719 /* See if any of the pins is in ExtINT mode */
1720 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1721 struct IO_APIC_route_entry entry;
1722 entry = ioapic_read_entry(apic, pin);
1725 /* If the interrupt line is enabled and in ExtInt mode
1726 * I have found the pin where the i8259 is connected.
1728 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1729 ioapic_i8259.apic = apic;
1730 ioapic_i8259.pin = pin;
1736 /* Look to see what if the MP table has reported the ExtINT */
1737 /* If we could not find the appropriate pin by looking at the ioapic
1738 * the i8259 probably is not connected the ioapic but give the
1739 * mptable a chance anyway.
1741 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1742 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1743 /* Trust the MP table if nothing is setup in the hardware */
1744 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1745 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1746 ioapic_i8259.pin = i8259_pin;
1747 ioapic_i8259.apic = i8259_apic;
1749 /* Complain if the MP table and the hardware disagree */
1750 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1751 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1753 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1757 * Do not trust the IO-APIC being empty at bootup
1763 * Not an __init, needed by the reboot code
1765 void disable_IO_APIC(void)
1768 * Clear the IO-APIC before rebooting:
1773 * If the i8259 is routed through an IOAPIC
1774 * Put that IOAPIC in virtual wire mode
1775 * so legacy interrupts can be delivered.
1777 if (ioapic_i8259.pin != -1) {
1778 struct IO_APIC_route_entry entry;
1780 memset(&entry, 0, sizeof(entry));
1781 entry.mask = 0; /* Enabled */
1782 entry.trigger = 0; /* Edge */
1784 entry.polarity = 0; /* High */
1785 entry.delivery_status = 0;
1786 entry.dest_mode = 0; /* Physical */
1787 entry.delivery_mode = dest_ExtINT; /* ExtInt */
1789 entry.dest.physical.physical_dest =
1790 GET_APIC_ID(apic_read(APIC_ID));
1793 * Add it to the IO-APIC irq-routing table:
1795 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
1797 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1801 * function to set the IO-APIC physical IDs based on the
1802 * values stored in the MPC table.
1804 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1807 #ifndef CONFIG_X86_NUMAQ
1808 static void __init setup_ioapic_ids_from_mpc(void)
1810 union IO_APIC_reg_00 reg_00;
1811 physid_mask_t phys_id_present_map;
1814 unsigned char old_id;
1815 unsigned long flags;
1818 * Don't check I/O APIC IDs for xAPIC systems. They have
1819 * no meaning without the serial APIC bus.
1821 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1822 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
1825 * This is broken; anything with a real cpu count has to
1826 * circumvent this idiocy regardless.
1828 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1831 * Set the IOAPIC ID to the value stored in the MPC table.
1833 for (apic = 0; apic < nr_ioapics; apic++) {
1835 /* Read the register 0 value */
1836 spin_lock_irqsave(&ioapic_lock, flags);
1837 reg_00.raw = io_apic_read(apic, 0);
1838 spin_unlock_irqrestore(&ioapic_lock, flags);
1840 old_id = mp_ioapics[apic].mpc_apicid;
1842 if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) {
1843 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1844 apic, mp_ioapics[apic].mpc_apicid);
1845 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1847 mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
1851 * Sanity check, is the ID really free? Every APIC in a
1852 * system must have a unique ID or we get lots of nice
1853 * 'stuck on smp_invalidate_needed IPI wait' messages.
1855 if (check_apicid_used(phys_id_present_map,
1856 mp_ioapics[apic].mpc_apicid)) {
1857 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1858 apic, mp_ioapics[apic].mpc_apicid);
1859 for (i = 0; i < get_physical_broadcast(); i++)
1860 if (!physid_isset(i, phys_id_present_map))
1862 if (i >= get_physical_broadcast())
1863 panic("Max APIC ID exceeded!\n");
1864 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1866 physid_set(i, phys_id_present_map);
1867 mp_ioapics[apic].mpc_apicid = i;
1870 tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid);
1871 apic_printk(APIC_VERBOSE, "Setting %d in the "
1872 "phys_id_present_map\n",
1873 mp_ioapics[apic].mpc_apicid);
1874 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1879 * We need to adjust the IRQ routing table
1880 * if the ID changed.
1882 if (old_id != mp_ioapics[apic].mpc_apicid)
1883 for (i = 0; i < mp_irq_entries; i++)
1884 if (mp_irqs[i].mpc_dstapic == old_id)
1885 mp_irqs[i].mpc_dstapic
1886 = mp_ioapics[apic].mpc_apicid;
1889 * Read the right value from the MPC table and
1890 * write it into the ID register.
1892 apic_printk(APIC_VERBOSE, KERN_INFO
1893 "...changing IO-APIC physical APIC ID to %d ...",
1894 mp_ioapics[apic].mpc_apicid);
1896 reg_00.bits.ID = mp_ioapics[apic].mpc_apicid;
1897 spin_lock_irqsave(&ioapic_lock, flags);
1898 io_apic_write(apic, 0, reg_00.raw);
1899 spin_unlock_irqrestore(&ioapic_lock, flags);
1904 spin_lock_irqsave(&ioapic_lock, flags);
1905 reg_00.raw = io_apic_read(apic, 0);
1906 spin_unlock_irqrestore(&ioapic_lock, flags);
1907 if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid)
1908 printk("could not set ID!\n");
1910 apic_printk(APIC_VERBOSE, " ok.\n");
1914 static void __init setup_ioapic_ids_from_mpc(void) { }
1917 static int no_timer_check __initdata;
1919 static int __init notimercheck(char *s)
1924 __setup("no_timer_check", notimercheck);
1927 * There is a nasty bug in some older SMP boards, their mptable lies
1928 * about the timer IRQ. We do the following to work around the situation:
1930 * - timer IRQ defaults to IO-APIC IRQ
1931 * - if this function detects that timer IRQs are defunct, then we fall
1932 * back to ISA timer IRQs
1934 int __init timer_irq_works(void)
1936 unsigned long t1 = jiffies;
1942 /* Let ten ticks pass... */
1943 mdelay((10 * 1000) / HZ);
1946 * Expect a few ticks at least, to be sure some possible
1947 * glue logic does not lock up after one or two first
1948 * ticks in a non-ExtINT mode. Also the local APIC
1949 * might have cached one ExtINT interrupt. Finally, at
1950 * least one tick may be lost due to delays.
1952 if (jiffies - t1 > 4)
1959 * In the SMP+IOAPIC case it might happen that there are an unspecified
1960 * number of pending IRQ events unhandled. These cases are very rare,
1961 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1962 * better to do it this way as thus we do not have to be aware of
1963 * 'pending' interrupts in the IRQ path, except at this point.
1966 * Edge triggered needs to resend any interrupt
1967 * that was delayed but this is now handled in the device
1974 * Starting up a edge-triggered IO-APIC interrupt is
1975 * nasty - we need to make sure that we get the edge.
1976 * If it is already asserted for some reason, we need
1977 * return 1 to indicate that is was pending.
1979 * This is not complete - we should be able to fake
1980 * an edge even if it isn't on the 8259A...
1982 * (We do this for level-triggered IRQs too - it cannot hurt.)
1984 static unsigned int startup_ioapic_irq(unsigned int irq)
1986 int was_pending = 0;
1987 unsigned long flags;
1989 spin_lock_irqsave(&ioapic_lock, flags);
1991 disable_8259A_irq(irq);
1992 if (i8259A_irq_pending(irq))
1995 __unmask_IO_APIC_irq(irq);
1996 spin_unlock_irqrestore(&ioapic_lock, flags);
2001 static void ack_ioapic_irq(unsigned int irq)
2003 move_native_irq(irq);
2007 static void ack_ioapic_quirk_irq(unsigned int irq)
2012 move_native_irq(irq);
2014 * It appears there is an erratum which affects at least version 0x11
2015 * of I/O APIC (that's the 82093AA and cores integrated into various
2016 * chipsets). Under certain conditions a level-triggered interrupt is
2017 * erroneously delivered as edge-triggered one but the respective IRR
2018 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2019 * message but it will never arrive and further interrupts are blocked
2020 * from the source. The exact reason is so far unknown, but the
2021 * phenomenon was observed when two consecutive interrupt requests
2022 * from a given source get delivered to the same CPU and the source is
2023 * temporarily disabled in between.
2025 * A workaround is to simulate an EOI message manually. We achieve it
2026 * by setting the trigger mode to edge and then to level when the edge
2027 * trigger mode gets detected in the TMR of a local APIC for a
2028 * level-triggered interrupt. We mask the source for the time of the
2029 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2030 * The idea is from Manfred Spraul. --macro
2032 i = irq_vector[irq];
2034 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2038 if (!(v & (1 << (i & 0x1f)))) {
2039 atomic_inc(&irq_mis_count);
2040 spin_lock(&ioapic_lock);
2041 __mask_and_edge_IO_APIC_irq(irq);
2042 __unmask_and_level_IO_APIC_irq(irq);
2043 spin_unlock(&ioapic_lock);
2047 static int ioapic_retrigger_irq(unsigned int irq)
2049 send_IPI_self(irq_vector[irq]);
2054 static struct irq_chip ioapic_chip __read_mostly = {
2056 .startup = startup_ioapic_irq,
2057 .mask = mask_IO_APIC_irq,
2058 .unmask = unmask_IO_APIC_irq,
2059 .ack = ack_ioapic_irq,
2060 .eoi = ack_ioapic_quirk_irq,
2062 .set_affinity = set_ioapic_affinity_irq,
2064 .retrigger = ioapic_retrigger_irq,
2068 static inline void init_IO_APIC_traps(void)
2073 * NOTE! The local APIC isn't very good at handling
2074 * multiple interrupts at the same interrupt level.
2075 * As the interrupt level is determined by taking the
2076 * vector number and shifting that right by 4, we
2077 * want to spread these out a bit so that they don't
2078 * all fall in the same interrupt level.
2080 * Also, we've got to be careful not to trash gate
2081 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2083 for (irq = 0; irq < NR_IRQS ; irq++) {
2085 if (IO_APIC_IRQ(tmp) && !irq_vector[tmp]) {
2087 * Hmm.. We don't have an entry for this,
2088 * so default to an old-fashioned 8259
2089 * interrupt if we can..
2092 make_8259A_irq(irq);
2094 /* Strange. Oh, well.. */
2095 irq_desc[irq].chip = &no_irq_chip;
2101 * The local APIC irq-chip implementation:
2104 static void ack_apic(unsigned int irq)
2109 static void mask_lapic_irq (unsigned int irq)
2113 v = apic_read(APIC_LVT0);
2114 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2117 static void unmask_lapic_irq (unsigned int irq)
2121 v = apic_read(APIC_LVT0);
2122 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
2125 static struct irq_chip lapic_chip __read_mostly = {
2126 .name = "local-APIC-edge",
2127 .mask = mask_lapic_irq,
2128 .unmask = unmask_lapic_irq,
2132 static void setup_nmi (void)
2135 * Dirty trick to enable the NMI watchdog ...
2136 * We put the 8259A master into AEOI mode and
2137 * unmask on all local APICs LVT0 as NMI.
2139 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2140 * is from Maciej W. Rozycki - so we do not have to EOI from
2141 * the NMI handler or the timer interrupt.
2143 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2145 on_each_cpu(enable_NMI_through_LVT0, NULL, 1, 1);
2147 apic_printk(APIC_VERBOSE, " done.\n");
2151 * This looks a bit hackish but it's about the only one way of sending
2152 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2153 * not support the ExtINT mode, unfortunately. We need to send these
2154 * cycles as some i82489DX-based boards have glue logic that keeps the
2155 * 8259A interrupt line asserted until INTA. --macro
2157 static inline void unlock_ExtINT_logic(void)
2160 struct IO_APIC_route_entry entry0, entry1;
2161 unsigned char save_control, save_freq_select;
2163 pin = find_isa_irq_pin(8, mp_INT);
2168 apic = find_isa_irq_apic(8, mp_INT);
2174 entry0 = ioapic_read_entry(apic, pin);
2175 clear_IO_APIC_pin(apic, pin);
2177 memset(&entry1, 0, sizeof(entry1));
2179 entry1.dest_mode = 0; /* physical delivery */
2180 entry1.mask = 0; /* unmask IRQ now */
2181 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2182 entry1.delivery_mode = dest_ExtINT;
2183 entry1.polarity = entry0.polarity;
2187 ioapic_write_entry(apic, pin, entry1);
2189 save_control = CMOS_READ(RTC_CONTROL);
2190 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2191 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2193 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2198 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2202 CMOS_WRITE(save_control, RTC_CONTROL);
2203 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2204 clear_IO_APIC_pin(apic, pin);
2206 ioapic_write_entry(apic, pin, entry0);
2209 int timer_uses_ioapic_pin_0;
2212 * This code may look a bit paranoid, but it's supposed to cooperate with
2213 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2214 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2215 * fanatically on his truly buggy board.
2217 static inline void __init check_timer(void)
2219 int apic1, pin1, apic2, pin2;
2223 * get/set the timer IRQ vector:
2225 disable_8259A_irq(0);
2226 vector = assign_irq_vector(0);
2227 set_intr_gate(vector, interrupt[0]);
2230 * Subtle, code in do_timer_interrupt() expects an AEOI
2231 * mode for the 8259A whenever interrupts are routed
2232 * through I/O APICs. Also IRQ0 has to be enabled in
2233 * the 8259A which implies the virtual wire has to be
2234 * disabled in the local APIC.
2236 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2239 if (timer_over_8254 > 0)
2240 enable_8259A_irq(0);
2242 pin1 = find_isa_irq_pin(0, mp_INT);
2243 apic1 = find_isa_irq_apic(0, mp_INT);
2244 pin2 = ioapic_i8259.pin;
2245 apic2 = ioapic_i8259.apic;
2248 timer_uses_ioapic_pin_0 = 1;
2250 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2251 vector, apic1, pin1, apic2, pin2);
2255 * Ok, does IRQ0 through the IOAPIC work?
2257 unmask_IO_APIC_irq(0);
2258 if (timer_irq_works()) {
2259 if (nmi_watchdog == NMI_IO_APIC) {
2260 disable_8259A_irq(0);
2262 enable_8259A_irq(0);
2264 if (disable_timer_pin_1 > 0)
2265 clear_IO_APIC_pin(0, pin1);
2268 clear_IO_APIC_pin(apic1, pin1);
2269 printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to "
2273 printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
2275 printk("\n..... (found pin %d) ...", pin2);
2277 * legacy devices should be connected to IO APIC #0
2279 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
2280 if (timer_irq_works()) {
2283 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
2285 add_pin_to_irq(0, apic2, pin2);
2286 if (nmi_watchdog == NMI_IO_APIC) {
2292 * Cleanup, just in case ...
2294 clear_IO_APIC_pin(apic2, pin2);
2296 printk(" failed.\n");
2298 if (nmi_watchdog == NMI_IO_APIC) {
2299 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
2303 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2305 disable_8259A_irq(0);
2306 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
2308 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2309 enable_8259A_irq(0);
2311 if (timer_irq_works()) {
2312 printk(" works.\n");
2315 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2316 printk(" failed.\n");
2318 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2323 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2325 unlock_ExtINT_logic();
2327 if (timer_irq_works()) {
2328 printk(" works.\n");
2331 printk(" failed :(.\n");
2332 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2333 "report. Then try booting with the 'noapic' option");
2338 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2339 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2340 * Linux doesn't really care, as it's not actually used
2341 * for any interrupt handling anyway.
2343 #define PIC_IRQS (1 << PIC_CASCADE_IR)
2345 void __init setup_IO_APIC(void)
2350 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2352 io_apic_irqs = ~PIC_IRQS;
2354 printk("ENABLING IO-APIC IRQs\n");
2357 * Set up IO-APIC IRQ routing.
2360 setup_ioapic_ids_from_mpc();
2362 setup_IO_APIC_irqs();
2363 init_IO_APIC_traps();
2369 static int __init setup_disable_8254_timer(char *s)
2371 timer_over_8254 = -1;
2374 static int __init setup_enable_8254_timer(char *s)
2376 timer_over_8254 = 2;
2380 __setup("disable_8254_timer", setup_disable_8254_timer);
2381 __setup("enable_8254_timer", setup_enable_8254_timer);
2384 * Called after all the initialization is done. If we didnt find any
2385 * APIC bugs then we can allow the modify fast path
2388 static int __init io_apic_bug_finalize(void)
2390 if(sis_apic_bug == -1)
2395 late_initcall(io_apic_bug_finalize);
2397 struct sysfs_ioapic_data {
2398 struct sys_device dev;
2399 struct IO_APIC_route_entry entry[0];
2401 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2403 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
2405 struct IO_APIC_route_entry *entry;
2406 struct sysfs_ioapic_data *data;
2409 data = container_of(dev, struct sysfs_ioapic_data, dev);
2410 entry = data->entry;
2411 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2412 entry[i] = ioapic_read_entry(dev->id, i);
2417 static int ioapic_resume(struct sys_device *dev)
2419 struct IO_APIC_route_entry *entry;
2420 struct sysfs_ioapic_data *data;
2421 unsigned long flags;
2422 union IO_APIC_reg_00 reg_00;
2425 data = container_of(dev, struct sysfs_ioapic_data, dev);
2426 entry = data->entry;
2428 spin_lock_irqsave(&ioapic_lock, flags);
2429 reg_00.raw = io_apic_read(dev->id, 0);
2430 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
2431 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
2432 io_apic_write(dev->id, 0, reg_00.raw);
2434 spin_unlock_irqrestore(&ioapic_lock, flags);
2435 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2436 ioapic_write_entry(dev->id, i, entry[i]);
2441 static struct sysdev_class ioapic_sysdev_class = {
2442 set_kset_name("ioapic"),
2443 .suspend = ioapic_suspend,
2444 .resume = ioapic_resume,
2447 static int __init ioapic_init_sysfs(void)
2449 struct sys_device * dev;
2450 int i, size, error = 0;
2452 error = sysdev_class_register(&ioapic_sysdev_class);
2456 for (i = 0; i < nr_ioapics; i++ ) {
2457 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
2458 * sizeof(struct IO_APIC_route_entry);
2459 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
2460 if (!mp_ioapic_data[i]) {
2461 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2464 memset(mp_ioapic_data[i], 0, size);
2465 dev = &mp_ioapic_data[i]->dev;
2467 dev->cls = &ioapic_sysdev_class;
2468 error = sysdev_register(dev);
2470 kfree(mp_ioapic_data[i]);
2471 mp_ioapic_data[i] = NULL;
2472 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2480 device_initcall(ioapic_init_sysfs);
2483 * Dynamic irq allocate and deallocation
2485 int create_irq(void)
2487 /* Allocate an unused irq */
2488 int irq, new, vector = 0;
2489 unsigned long flags;
2492 spin_lock_irqsave(&vector_lock, flags);
2493 for (new = (NR_IRQS - 1); new >= 0; new--) {
2494 if (platform_legacy_irq(new))
2496 if (irq_vector[new] != 0)
2498 vector = __assign_irq_vector(new);
2499 if (likely(vector > 0))
2503 spin_unlock_irqrestore(&vector_lock, flags);
2506 set_intr_gate(vector, interrupt[irq]);
2507 dynamic_irq_init(irq);
2512 void destroy_irq(unsigned int irq)
2514 unsigned long flags;
2516 dynamic_irq_cleanup(irq);
2518 spin_lock_irqsave(&vector_lock, flags);
2519 irq_vector[irq] = 0;
2520 spin_unlock_irqrestore(&vector_lock, flags);
2524 * MSI mesage composition
2526 #ifdef CONFIG_PCI_MSI
2527 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
2532 vector = assign_irq_vector(irq);
2534 dest = cpu_mask_to_apicid(TARGET_CPUS);
2536 msg->address_hi = MSI_ADDR_BASE_HI;
2539 ((INT_DEST_MODE == 0) ?
2540 MSI_ADDR_DEST_MODE_PHYSICAL:
2541 MSI_ADDR_DEST_MODE_LOGICAL) |
2542 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2543 MSI_ADDR_REDIRECTION_CPU:
2544 MSI_ADDR_REDIRECTION_LOWPRI) |
2545 MSI_ADDR_DEST_ID(dest);
2548 MSI_DATA_TRIGGER_EDGE |
2549 MSI_DATA_LEVEL_ASSERT |
2550 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2551 MSI_DATA_DELIVERY_FIXED:
2552 MSI_DATA_DELIVERY_LOWPRI) |
2553 MSI_DATA_VECTOR(vector);
2559 static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2566 cpus_and(tmp, mask, cpu_online_map);
2567 if (cpus_empty(tmp))
2570 vector = assign_irq_vector(irq);
2574 dest = cpu_mask_to_apicid(mask);
2576 read_msi_msg(irq, &msg);
2578 msg.data &= ~MSI_DATA_VECTOR_MASK;
2579 msg.data |= MSI_DATA_VECTOR(vector);
2580 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2581 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2583 write_msi_msg(irq, &msg);
2584 set_native_irq_info(irq, mask);
2586 #endif /* CONFIG_SMP */
2589 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2590 * which implement the MSI or MSI-X Capability Structure.
2592 static struct irq_chip msi_chip = {
2594 .unmask = unmask_msi_irq,
2595 .mask = mask_msi_irq,
2596 .ack = ack_ioapic_irq,
2598 .set_affinity = set_msi_irq_affinity,
2600 .retrigger = ioapic_retrigger_irq,
2603 int arch_setup_msi_irq(unsigned int irq, struct pci_dev *dev)
2607 ret = msi_compose_msg(dev, irq, &msg);
2611 write_msi_msg(irq, &msg);
2613 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2619 void arch_teardown_msi_irq(unsigned int irq)
2624 #endif /* CONFIG_PCI_MSI */
2627 * Hypertransport interrupt support
2629 #ifdef CONFIG_HT_IRQ
2633 static void target_ht_irq(unsigned int irq, unsigned int dest)
2635 struct ht_irq_msg msg;
2636 fetch_ht_irq_msg(irq, &msg);
2638 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2639 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
2641 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2642 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
2644 write_ht_irq_msg(irq, &msg);
2647 static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2652 cpus_and(tmp, mask, cpu_online_map);
2653 if (cpus_empty(tmp))
2656 cpus_and(mask, tmp, CPU_MASK_ALL);
2658 dest = cpu_mask_to_apicid(mask);
2660 target_ht_irq(irq, dest);
2661 set_native_irq_info(irq, mask);
2665 static struct irq_chip ht_irq_chip = {
2667 .mask = mask_ht_irq,
2668 .unmask = unmask_ht_irq,
2669 .ack = ack_ioapic_irq,
2671 .set_affinity = set_ht_irq_affinity,
2673 .retrigger = ioapic_retrigger_irq,
2676 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2680 vector = assign_irq_vector(irq);
2682 struct ht_irq_msg msg;
2687 cpu_set(vector >> 8, tmp);
2688 dest = cpu_mask_to_apicid(tmp);
2690 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
2694 HT_IRQ_LOW_DEST_ID(dest) |
2695 HT_IRQ_LOW_VECTOR(vector) |
2696 ((INT_DEST_MODE == 0) ?
2697 HT_IRQ_LOW_DM_PHYSICAL :
2698 HT_IRQ_LOW_DM_LOGICAL) |
2699 HT_IRQ_LOW_RQEOI_EDGE |
2700 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2701 HT_IRQ_LOW_MT_FIXED :
2702 HT_IRQ_LOW_MT_ARBITRATED) |
2703 HT_IRQ_LOW_IRQ_MASKED;
2705 write_ht_irq_msg(irq, &msg);
2707 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2708 handle_edge_irq, "edge");
2712 #endif /* CONFIG_HT_IRQ */
2714 /* --------------------------------------------------------------------------
2715 ACPI-based IOAPIC Configuration
2716 -------------------------------------------------------------------------- */
2720 int __init io_apic_get_unique_id (int ioapic, int apic_id)
2722 union IO_APIC_reg_00 reg_00;
2723 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2725 unsigned long flags;
2729 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2730 * buses (one for LAPICs, one for IOAPICs), where predecessors only
2731 * supports up to 16 on one shared APIC bus.
2733 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2734 * advantage of new APIC bus architecture.
2737 if (physids_empty(apic_id_map))
2738 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2740 spin_lock_irqsave(&ioapic_lock, flags);
2741 reg_00.raw = io_apic_read(ioapic, 0);
2742 spin_unlock_irqrestore(&ioapic_lock, flags);
2744 if (apic_id >= get_physical_broadcast()) {
2745 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2746 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2747 apic_id = reg_00.bits.ID;
2751 * Every APIC in a system must have a unique ID or we get lots of nice
2752 * 'stuck on smp_invalidate_needed IPI wait' messages.
2754 if (check_apicid_used(apic_id_map, apic_id)) {
2756 for (i = 0; i < get_physical_broadcast(); i++) {
2757 if (!check_apicid_used(apic_id_map, i))
2761 if (i == get_physical_broadcast())
2762 panic("Max apic_id exceeded!\n");
2764 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2765 "trying %d\n", ioapic, apic_id, i);
2770 tmp = apicid_to_cpu_present(apic_id);
2771 physids_or(apic_id_map, apic_id_map, tmp);
2773 if (reg_00.bits.ID != apic_id) {
2774 reg_00.bits.ID = apic_id;
2776 spin_lock_irqsave(&ioapic_lock, flags);
2777 io_apic_write(ioapic, 0, reg_00.raw);
2778 reg_00.raw = io_apic_read(ioapic, 0);
2779 spin_unlock_irqrestore(&ioapic_lock, flags);
2782 if (reg_00.bits.ID != apic_id) {
2783 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2788 apic_printk(APIC_VERBOSE, KERN_INFO
2789 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2795 int __init io_apic_get_version (int ioapic)
2797 union IO_APIC_reg_01 reg_01;
2798 unsigned long flags;
2800 spin_lock_irqsave(&ioapic_lock, flags);
2801 reg_01.raw = io_apic_read(ioapic, 1);
2802 spin_unlock_irqrestore(&ioapic_lock, flags);
2804 return reg_01.bits.version;
2808 int __init io_apic_get_redir_entries (int ioapic)
2810 union IO_APIC_reg_01 reg_01;
2811 unsigned long flags;
2813 spin_lock_irqsave(&ioapic_lock, flags);
2814 reg_01.raw = io_apic_read(ioapic, 1);
2815 spin_unlock_irqrestore(&ioapic_lock, flags);
2817 return reg_01.bits.entries;
2821 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low)
2823 struct IO_APIC_route_entry entry;
2824 unsigned long flags;
2826 if (!IO_APIC_IRQ(irq)) {
2827 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2833 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2834 * Note that we mask (disable) IRQs now -- these get enabled when the
2835 * corresponding device driver registers for this IRQ.
2838 memset(&entry,0,sizeof(entry));
2840 entry.delivery_mode = INT_DELIVERY_MODE;
2841 entry.dest_mode = INT_DEST_MODE;
2842 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2843 entry.trigger = edge_level;
2844 entry.polarity = active_high_low;
2848 * IRQs < 16 are already in the irq_2_pin[] map
2851 add_pin_to_irq(irq, ioapic, pin);
2853 entry.vector = assign_irq_vector(irq);
2855 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2856 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
2857 mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
2858 edge_level, active_high_low);
2860 ioapic_register_intr(irq, entry.vector, edge_level);
2862 if (!ioapic && (irq < 16))
2863 disable_8259A_irq(irq);
2865 spin_lock_irqsave(&ioapic_lock, flags);
2866 __ioapic_write_entry(ioapic, pin, entry);
2867 set_native_irq_info(irq, TARGET_CPUS);
2868 spin_unlock_irqrestore(&ioapic_lock, flags);
2873 #endif /* CONFIG_ACPI */
2875 static int __init parse_disable_timer_pin_1(char *arg)
2877 disable_timer_pin_1 = 1;
2880 early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2882 static int __init parse_enable_timer_pin_1(char *arg)
2884 disable_timer_pin_1 = -1;
2887 early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2889 static int __init parse_noapic(char *arg)
2891 /* disable IO-APIC */
2892 disable_ioapic_setup();
2895 early_param("noapic", parse_noapic);