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>
38 #include <asm/timer.h>
39 #include <asm/i8259.h>
42 #include <mach_apic.h>
43 #include <mach_apicdef.h>
47 int (*ioapic_renumber_irq
)(int ioapic
, int irq
);
48 atomic_t irq_mis_count
;
50 /* Where if anywhere is the i8259 connect in external int mode */
51 static struct { int pin
, apic
; } ioapic_i8259
= { -1, -1 };
53 static DEFINE_SPINLOCK(ioapic_lock
);
54 static DEFINE_SPINLOCK(vector_lock
);
56 int timer_over_8254 __initdata
= 1;
59 * Is the SiS APIC rmw bug present ?
60 * -1 = don't know, 0 = no, 1 = yes
62 int sis_apic_bug
= -1;
65 * # of IRQ routing registers
67 int nr_ioapic_registers
[MAX_IO_APICS
];
69 static int disable_timer_pin_1 __initdata
;
72 * Rough estimation of how many shared IRQs there are, can
75 #define MAX_PLUS_SHARED_IRQS NR_IRQS
76 #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
79 * This is performance-critical, we want to do it O(1)
81 * the indexing order of this array favors 1:1 mappings
82 * between pins and IRQs.
85 static struct irq_pin_list
{
87 } irq_2_pin
[PIN_MAP_SIZE
];
89 int vector_irq
[NR_VECTORS
] __read_mostly
= { [0 ... NR_VECTORS
- 1] = -1};
91 #define vector_to_irq(vector) \
92 (platform_legacy_irq(vector) ? vector : vector_irq[vector])
94 #define vector_to_irq(vector) (vector)
99 struct { u32 w1
, w2
; };
100 struct IO_APIC_route_entry entry
;
103 static struct IO_APIC_route_entry
ioapic_read_entry(int apic
, int pin
)
105 union entry_union eu
;
107 spin_lock_irqsave(&ioapic_lock
, flags
);
108 eu
.w1
= io_apic_read(apic
, 0x10 + 2 * pin
);
109 eu
.w2
= io_apic_read(apic
, 0x11 + 2 * pin
);
110 spin_unlock_irqrestore(&ioapic_lock
, flags
);
114 static void ioapic_write_entry(int apic
, int pin
, struct IO_APIC_route_entry e
)
117 union entry_union eu
;
119 spin_lock_irqsave(&ioapic_lock
, flags
);
120 io_apic_write(apic
, 0x10 + 2*pin
, eu
.w1
);
121 io_apic_write(apic
, 0x11 + 2*pin
, eu
.w2
);
122 spin_unlock_irqrestore(&ioapic_lock
, flags
);
126 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
127 * shared ISA-space IRQs, so we have to support them. We are super
128 * fast in the common case, and fast for shared ISA-space IRQs.
130 static void add_pin_to_irq(unsigned int irq
, int apic
, int pin
)
132 static int first_free_entry
= NR_IRQS
;
133 struct irq_pin_list
*entry
= irq_2_pin
+ irq
;
136 entry
= irq_2_pin
+ entry
->next
;
138 if (entry
->pin
!= -1) {
139 entry
->next
= first_free_entry
;
140 entry
= irq_2_pin
+ entry
->next
;
141 if (++first_free_entry
>= PIN_MAP_SIZE
)
142 panic("io_apic.c: whoops");
149 * Reroute an IRQ to a different pin.
151 static void __init
replace_pin_at_irq(unsigned int irq
,
152 int oldapic
, int oldpin
,
153 int newapic
, int newpin
)
155 struct irq_pin_list
*entry
= irq_2_pin
+ irq
;
158 if (entry
->apic
== oldapic
&& entry
->pin
== oldpin
) {
159 entry
->apic
= newapic
;
164 entry
= irq_2_pin
+ entry
->next
;
168 static void __modify_IO_APIC_irq (unsigned int irq
, unsigned long enable
, unsigned long disable
)
170 struct irq_pin_list
*entry
= irq_2_pin
+ irq
;
171 unsigned int pin
, reg
;
177 reg
= io_apic_read(entry
->apic
, 0x10 + pin
*2);
180 io_apic_modify(entry
->apic
, 0x10 + pin
*2, reg
);
183 entry
= irq_2_pin
+ entry
->next
;
188 static void __mask_IO_APIC_irq (unsigned int irq
)
190 __modify_IO_APIC_irq(irq
, 0x00010000, 0);
194 static void __unmask_IO_APIC_irq (unsigned int irq
)
196 __modify_IO_APIC_irq(irq
, 0, 0x00010000);
199 /* mask = 1, trigger = 0 */
200 static void __mask_and_edge_IO_APIC_irq (unsigned int irq
)
202 __modify_IO_APIC_irq(irq
, 0x00010000, 0x00008000);
205 /* mask = 0, trigger = 1 */
206 static void __unmask_and_level_IO_APIC_irq (unsigned int irq
)
208 __modify_IO_APIC_irq(irq
, 0x00008000, 0x00010000);
211 static void mask_IO_APIC_irq (unsigned int irq
)
215 spin_lock_irqsave(&ioapic_lock
, flags
);
216 __mask_IO_APIC_irq(irq
);
217 spin_unlock_irqrestore(&ioapic_lock
, flags
);
220 static void unmask_IO_APIC_irq (unsigned int irq
)
224 spin_lock_irqsave(&ioapic_lock
, flags
);
225 __unmask_IO_APIC_irq(irq
);
226 spin_unlock_irqrestore(&ioapic_lock
, flags
);
229 static void clear_IO_APIC_pin(unsigned int apic
, unsigned int pin
)
231 struct IO_APIC_route_entry entry
;
233 /* Check delivery_mode to be sure we're not clearing an SMI pin */
234 entry
= ioapic_read_entry(apic
, pin
);
235 if (entry
.delivery_mode
== dest_SMI
)
239 * Disable it in the IO-APIC irq-routing table:
241 memset(&entry
, 0, sizeof(entry
));
243 ioapic_write_entry(apic
, pin
, entry
);
246 static void clear_IO_APIC (void)
250 for (apic
= 0; apic
< nr_ioapics
; apic
++)
251 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
252 clear_IO_APIC_pin(apic
, pin
);
256 static void set_ioapic_affinity_irq(unsigned int irq
, cpumask_t cpumask
)
260 struct irq_pin_list
*entry
= irq_2_pin
+ irq
;
261 unsigned int apicid_value
;
264 cpus_and(tmp
, cpumask
, cpu_online_map
);
268 cpus_and(cpumask
, tmp
, CPU_MASK_ALL
);
270 apicid_value
= cpu_mask_to_apicid(cpumask
);
271 /* Prepare to do the io_apic_write */
272 apicid_value
= apicid_value
<< 24;
273 spin_lock_irqsave(&ioapic_lock
, flags
);
278 io_apic_write(entry
->apic
, 0x10 + 1 + pin
*2, apicid_value
);
281 entry
= irq_2_pin
+ entry
->next
;
283 set_irq_info(irq
, cpumask
);
284 spin_unlock_irqrestore(&ioapic_lock
, flags
);
287 #if defined(CONFIG_IRQBALANCE)
288 # include <asm/processor.h> /* kernel_thread() */
289 # include <linux/kernel_stat.h> /* kstat */
290 # include <linux/slab.h> /* kmalloc() */
291 # include <linux/timer.h> /* time_after() */
293 #ifdef CONFIG_BALANCED_IRQ_DEBUG
294 # define TDprintk(x...) do { printk("<%ld:%s:%d>: ", jiffies, __FILE__, __LINE__); printk(x); } while (0)
295 # define Dprintk(x...) do { TDprintk(x); } while (0)
297 # define TDprintk(x...)
298 # define Dprintk(x...)
301 #define IRQBALANCE_CHECK_ARCH -999
302 #define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
303 #define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
304 #define BALANCED_IRQ_MORE_DELTA (HZ/10)
305 #define BALANCED_IRQ_LESS_DELTA (HZ)
307 static int irqbalance_disabled __read_mostly
= IRQBALANCE_CHECK_ARCH
;
308 static int physical_balance __read_mostly
;
309 static long balanced_irq_interval __read_mostly
= MAX_BALANCED_IRQ_INTERVAL
;
311 static struct irq_cpu_info
{
312 unsigned long * last_irq
;
313 unsigned long * irq_delta
;
315 } irq_cpu_data
[NR_CPUS
];
317 #define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
318 #define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq])
319 #define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq])
321 #define IDLE_ENOUGH(cpu,now) \
322 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
324 #define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
326 #define CPU_TO_PACKAGEINDEX(i) (first_cpu(cpu_sibling_map[i]))
328 static cpumask_t balance_irq_affinity
[NR_IRQS
] = {
329 [0 ... NR_IRQS
-1] = CPU_MASK_ALL
332 void set_balance_irq_affinity(unsigned int irq
, cpumask_t mask
)
334 balance_irq_affinity
[irq
] = mask
;
337 static unsigned long move(int curr_cpu
, cpumask_t allowed_mask
,
338 unsigned long now
, int direction
)
346 if (unlikely(cpu
== curr_cpu
))
349 if (direction
== 1) {
358 } while (!cpu_online(cpu
) || !IRQ_ALLOWED(cpu
,allowed_mask
) ||
359 (search_idle
&& !IDLE_ENOUGH(cpu
,now
)));
364 static inline void balance_irq(int cpu
, int irq
)
366 unsigned long now
= jiffies
;
367 cpumask_t allowed_mask
;
368 unsigned int new_cpu
;
370 if (irqbalance_disabled
)
373 cpus_and(allowed_mask
, cpu_online_map
, balance_irq_affinity
[irq
]);
374 new_cpu
= move(cpu
, allowed_mask
, now
, 1);
375 if (cpu
!= new_cpu
) {
376 set_pending_irq(irq
, cpumask_of_cpu(new_cpu
));
380 static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold
)
383 Dprintk("Rotating IRQs among CPUs.\n");
384 for_each_online_cpu(i
) {
385 for (j
= 0; j
< NR_IRQS
; j
++) {
386 if (!irq_desc
[j
].action
)
388 /* Is it a significant load ? */
389 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i
),j
) <
390 useful_load_threshold
)
395 balanced_irq_interval
= max((long)MIN_BALANCED_IRQ_INTERVAL
,
396 balanced_irq_interval
- BALANCED_IRQ_LESS_DELTA
);
400 static void do_irq_balance(void)
403 unsigned long max_cpu_irq
= 0, min_cpu_irq
= (~0);
404 unsigned long move_this_load
= 0;
405 int max_loaded
= 0, min_loaded
= 0;
407 unsigned long useful_load_threshold
= balanced_irq_interval
+ 10;
409 int tmp_loaded
, first_attempt
= 1;
410 unsigned long tmp_cpu_irq
;
411 unsigned long imbalance
= 0;
412 cpumask_t allowed_mask
, target_cpu_mask
, tmp
;
414 for_each_possible_cpu(i
) {
419 package_index
= CPU_TO_PACKAGEINDEX(i
);
420 for (j
= 0; j
< NR_IRQS
; j
++) {
421 unsigned long value_now
, delta
;
422 /* Is this an active IRQ? */
423 if (!irq_desc
[j
].action
)
425 if ( package_index
== i
)
426 IRQ_DELTA(package_index
,j
) = 0;
427 /* Determine the total count per processor per IRQ */
428 value_now
= (unsigned long) kstat_cpu(i
).irqs
[j
];
430 /* Determine the activity per processor per IRQ */
431 delta
= value_now
- LAST_CPU_IRQ(i
,j
);
433 /* Update last_cpu_irq[][] for the next time */
434 LAST_CPU_IRQ(i
,j
) = value_now
;
436 /* Ignore IRQs whose rate is less than the clock */
437 if (delta
< useful_load_threshold
)
439 /* update the load for the processor or package total */
440 IRQ_DELTA(package_index
,j
) += delta
;
442 /* Keep track of the higher numbered sibling as well */
443 if (i
!= package_index
)
446 * We have sibling A and sibling B in the package
448 * cpu_irq[A] = load for cpu A + load for cpu B
449 * cpu_irq[B] = load for cpu B
451 CPU_IRQ(package_index
) += delta
;
454 /* Find the least loaded processor package */
455 for_each_online_cpu(i
) {
456 if (i
!= CPU_TO_PACKAGEINDEX(i
))
458 if (min_cpu_irq
> CPU_IRQ(i
)) {
459 min_cpu_irq
= CPU_IRQ(i
);
463 max_cpu_irq
= ULONG_MAX
;
466 /* Look for heaviest loaded processor.
467 * We may come back to get the next heaviest loaded processor.
468 * Skip processors with trivial loads.
472 for_each_online_cpu(i
) {
473 if (i
!= CPU_TO_PACKAGEINDEX(i
))
475 if (max_cpu_irq
<= CPU_IRQ(i
))
477 if (tmp_cpu_irq
< CPU_IRQ(i
)) {
478 tmp_cpu_irq
= CPU_IRQ(i
);
483 if (tmp_loaded
== -1) {
484 /* In the case of small number of heavy interrupt sources,
485 * loading some of the cpus too much. We use Ingo's original
486 * approach to rotate them around.
488 if (!first_attempt
&& imbalance
>= useful_load_threshold
) {
489 rotate_irqs_among_cpus(useful_load_threshold
);
492 goto not_worth_the_effort
;
495 first_attempt
= 0; /* heaviest search */
496 max_cpu_irq
= tmp_cpu_irq
; /* load */
497 max_loaded
= tmp_loaded
; /* processor */
498 imbalance
= (max_cpu_irq
- min_cpu_irq
) / 2;
500 Dprintk("max_loaded cpu = %d\n", max_loaded
);
501 Dprintk("min_loaded cpu = %d\n", min_loaded
);
502 Dprintk("max_cpu_irq load = %ld\n", max_cpu_irq
);
503 Dprintk("min_cpu_irq load = %ld\n", min_cpu_irq
);
504 Dprintk("load imbalance = %lu\n", imbalance
);
506 /* if imbalance is less than approx 10% of max load, then
507 * observe diminishing returns action. - quit
509 if (imbalance
< (max_cpu_irq
>> 3)) {
510 Dprintk("Imbalance too trivial\n");
511 goto not_worth_the_effort
;
515 /* if we select an IRQ to move that can't go where we want, then
516 * see if there is another one to try.
520 for (j
= 0; j
< NR_IRQS
; j
++) {
521 /* Is this an active IRQ? */
522 if (!irq_desc
[j
].action
)
524 if (imbalance
<= IRQ_DELTA(max_loaded
,j
))
526 /* Try to find the IRQ that is closest to the imbalance
527 * without going over.
529 if (move_this_load
< IRQ_DELTA(max_loaded
,j
)) {
530 move_this_load
= IRQ_DELTA(max_loaded
,j
);
534 if (selected_irq
== -1) {
538 imbalance
= move_this_load
;
540 /* For physical_balance case, we accumlated both load
541 * values in the one of the siblings cpu_irq[],
542 * to use the same code for physical and logical processors
543 * as much as possible.
545 * NOTE: the cpu_irq[] array holds the sum of the load for
546 * sibling A and sibling B in the slot for the lowest numbered
547 * sibling (A), _AND_ the load for sibling B in the slot for
548 * the higher numbered sibling.
550 * We seek the least loaded sibling by making the comparison
553 load
= CPU_IRQ(min_loaded
) >> 1;
554 for_each_cpu_mask(j
, cpu_sibling_map
[min_loaded
]) {
555 if (load
> CPU_IRQ(j
)) {
556 /* This won't change cpu_sibling_map[min_loaded] */
562 cpus_and(allowed_mask
,
564 balance_irq_affinity
[selected_irq
]);
565 target_cpu_mask
= cpumask_of_cpu(min_loaded
);
566 cpus_and(tmp
, target_cpu_mask
, allowed_mask
);
568 if (!cpus_empty(tmp
)) {
570 Dprintk("irq = %d moved to cpu = %d\n",
571 selected_irq
, min_loaded
);
572 /* mark for change destination */
573 set_pending_irq(selected_irq
, cpumask_of_cpu(min_loaded
));
575 /* Since we made a change, come back sooner to
576 * check for more variation.
578 balanced_irq_interval
= max((long)MIN_BALANCED_IRQ_INTERVAL
,
579 balanced_irq_interval
- BALANCED_IRQ_LESS_DELTA
);
584 not_worth_the_effort
:
586 * if we did not find an IRQ to move, then adjust the time interval
589 balanced_irq_interval
= min((long)MAX_BALANCED_IRQ_INTERVAL
,
590 balanced_irq_interval
+ BALANCED_IRQ_MORE_DELTA
);
591 Dprintk("IRQ worth rotating not found\n");
595 static int balanced_irq(void *unused
)
598 unsigned long prev_balance_time
= jiffies
;
599 long time_remaining
= balanced_irq_interval
;
603 /* push everything to CPU 0 to give us a starting point. */
604 for (i
= 0 ; i
< NR_IRQS
; i
++) {
605 irq_desc
[i
].pending_mask
= cpumask_of_cpu(0);
606 set_pending_irq(i
, cpumask_of_cpu(0));
610 time_remaining
= schedule_timeout_interruptible(time_remaining
);
612 if (time_after(jiffies
,
613 prev_balance_time
+balanced_irq_interval
)) {
616 prev_balance_time
= jiffies
;
617 time_remaining
= balanced_irq_interval
;
624 static int __init
balanced_irq_init(void)
627 struct cpuinfo_x86
*c
;
630 cpus_shift_right(tmp
, cpu_online_map
, 2);
632 /* When not overwritten by the command line ask subarchitecture. */
633 if (irqbalance_disabled
== IRQBALANCE_CHECK_ARCH
)
634 irqbalance_disabled
= NO_BALANCE_IRQ
;
635 if (irqbalance_disabled
)
638 /* disable irqbalance completely if there is only one processor online */
639 if (num_online_cpus() < 2) {
640 irqbalance_disabled
= 1;
644 * Enable physical balance only if more than 1 physical processor
647 if (smp_num_siblings
> 1 && !cpus_empty(tmp
))
648 physical_balance
= 1;
650 for_each_online_cpu(i
) {
651 irq_cpu_data
[i
].irq_delta
= kmalloc(sizeof(unsigned long) * NR_IRQS
, GFP_KERNEL
);
652 irq_cpu_data
[i
].last_irq
= kmalloc(sizeof(unsigned long) * NR_IRQS
, GFP_KERNEL
);
653 if (irq_cpu_data
[i
].irq_delta
== NULL
|| irq_cpu_data
[i
].last_irq
== NULL
) {
654 printk(KERN_ERR
"balanced_irq_init: out of memory");
657 memset(irq_cpu_data
[i
].irq_delta
,0,sizeof(unsigned long) * NR_IRQS
);
658 memset(irq_cpu_data
[i
].last_irq
,0,sizeof(unsigned long) * NR_IRQS
);
661 printk(KERN_INFO
"Starting balanced_irq\n");
662 if (kernel_thread(balanced_irq
, NULL
, CLONE_KERNEL
) >= 0)
665 printk(KERN_ERR
"balanced_irq_init: failed to spawn balanced_irq");
667 for_each_possible_cpu(i
) {
668 kfree(irq_cpu_data
[i
].irq_delta
);
669 irq_cpu_data
[i
].irq_delta
= NULL
;
670 kfree(irq_cpu_data
[i
].last_irq
);
671 irq_cpu_data
[i
].last_irq
= NULL
;
676 int __init
irqbalance_disable(char *str
)
678 irqbalance_disabled
= 1;
682 __setup("noirqbalance", irqbalance_disable
);
684 late_initcall(balanced_irq_init
);
685 #endif /* CONFIG_IRQBALANCE */
686 #endif /* CONFIG_SMP */
689 void fastcall
send_IPI_self(int vector
)
696 apic_wait_icr_idle();
697 cfg
= APIC_DM_FIXED
| APIC_DEST_SELF
| vector
| APIC_DEST_LOGICAL
;
699 * Send the IPI. The write to APIC_ICR fires this off.
701 apic_write_around(APIC_ICR
, cfg
);
703 #endif /* !CONFIG_SMP */
707 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
708 * specific CPU-side IRQs.
712 static int pirq_entries
[MAX_PIRQS
];
713 static int pirqs_enabled
;
714 int skip_ioapic_setup
;
716 static int __init
ioapic_setup(char *str
)
718 skip_ioapic_setup
= 1;
722 __setup("noapic", ioapic_setup
);
724 static int __init
ioapic_pirq_setup(char *str
)
727 int ints
[MAX_PIRQS
+1];
729 get_options(str
, ARRAY_SIZE(ints
), ints
);
731 for (i
= 0; i
< MAX_PIRQS
; i
++)
732 pirq_entries
[i
] = -1;
735 apic_printk(APIC_VERBOSE
, KERN_INFO
736 "PIRQ redirection, working around broken MP-BIOS.\n");
738 if (ints
[0] < MAX_PIRQS
)
741 for (i
= 0; i
< max
; i
++) {
742 apic_printk(APIC_VERBOSE
, KERN_DEBUG
743 "... PIRQ%d -> IRQ %d\n", i
, ints
[i
+1]);
745 * PIRQs are mapped upside down, usually.
747 pirq_entries
[MAX_PIRQS
-i
-1] = ints
[i
+1];
752 __setup("pirq=", ioapic_pirq_setup
);
755 * Find the IRQ entry number of a certain pin.
757 static int find_irq_entry(int apic
, int pin
, int type
)
761 for (i
= 0; i
< mp_irq_entries
; i
++)
762 if (mp_irqs
[i
].mpc_irqtype
== type
&&
763 (mp_irqs
[i
].mpc_dstapic
== mp_ioapics
[apic
].mpc_apicid
||
764 mp_irqs
[i
].mpc_dstapic
== MP_APIC_ALL
) &&
765 mp_irqs
[i
].mpc_dstirq
== pin
)
772 * Find the pin to which IRQ[irq] (ISA) is connected
774 static int __init
find_isa_irq_pin(int irq
, int type
)
778 for (i
= 0; i
< mp_irq_entries
; i
++) {
779 int lbus
= mp_irqs
[i
].mpc_srcbus
;
781 if ((mp_bus_id_to_type
[lbus
] == MP_BUS_ISA
||
782 mp_bus_id_to_type
[lbus
] == MP_BUS_EISA
||
783 mp_bus_id_to_type
[lbus
] == MP_BUS_MCA
||
784 mp_bus_id_to_type
[lbus
] == MP_BUS_NEC98
786 (mp_irqs
[i
].mpc_irqtype
== type
) &&
787 (mp_irqs
[i
].mpc_srcbusirq
== irq
))
789 return mp_irqs
[i
].mpc_dstirq
;
794 static int __init
find_isa_irq_apic(int irq
, int type
)
798 for (i
= 0; i
< mp_irq_entries
; i
++) {
799 int lbus
= mp_irqs
[i
].mpc_srcbus
;
801 if ((mp_bus_id_to_type
[lbus
] == MP_BUS_ISA
||
802 mp_bus_id_to_type
[lbus
] == MP_BUS_EISA
||
803 mp_bus_id_to_type
[lbus
] == MP_BUS_MCA
||
804 mp_bus_id_to_type
[lbus
] == MP_BUS_NEC98
806 (mp_irqs
[i
].mpc_irqtype
== type
) &&
807 (mp_irqs
[i
].mpc_srcbusirq
== irq
))
810 if (i
< mp_irq_entries
) {
812 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
813 if (mp_ioapics
[apic
].mpc_apicid
== mp_irqs
[i
].mpc_dstapic
)
822 * Find a specific PCI IRQ entry.
823 * Not an __init, possibly needed by modules
825 static int pin_2_irq(int idx
, int apic
, int pin
);
827 int IO_APIC_get_PCI_irq_vector(int bus
, int slot
, int pin
)
829 int apic
, i
, best_guess
= -1;
831 apic_printk(APIC_DEBUG
, "querying PCI -> IRQ mapping bus:%d, "
832 "slot:%d, pin:%d.\n", bus
, slot
, pin
);
833 if (mp_bus_id_to_pci_bus
[bus
] == -1) {
834 printk(KERN_WARNING
"PCI BIOS passed nonexistent PCI bus %d!\n", bus
);
837 for (i
= 0; i
< mp_irq_entries
; i
++) {
838 int lbus
= mp_irqs
[i
].mpc_srcbus
;
840 for (apic
= 0; apic
< nr_ioapics
; apic
++)
841 if (mp_ioapics
[apic
].mpc_apicid
== mp_irqs
[i
].mpc_dstapic
||
842 mp_irqs
[i
].mpc_dstapic
== MP_APIC_ALL
)
845 if ((mp_bus_id_to_type
[lbus
] == MP_BUS_PCI
) &&
846 !mp_irqs
[i
].mpc_irqtype
&&
848 (slot
== ((mp_irqs
[i
].mpc_srcbusirq
>> 2) & 0x1f))) {
849 int irq
= pin_2_irq(i
,apic
,mp_irqs
[i
].mpc_dstirq
);
851 if (!(apic
|| IO_APIC_IRQ(irq
)))
854 if (pin
== (mp_irqs
[i
].mpc_srcbusirq
& 3))
857 * Use the first all-but-pin matching entry as a
858 * best-guess fuzzy result for broken mptables.
866 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector
);
869 * This function currently is only a helper for the i386 smp boot process where
870 * we need to reprogram the ioredtbls to cater for the cpus which have come online
871 * so mask in all cases should simply be TARGET_CPUS
874 void __init
setup_ioapic_dest(void)
876 int pin
, ioapic
, irq
, irq_entry
;
878 if (skip_ioapic_setup
== 1)
881 for (ioapic
= 0; ioapic
< nr_ioapics
; ioapic
++) {
882 for (pin
= 0; pin
< nr_ioapic_registers
[ioapic
]; pin
++) {
883 irq_entry
= find_irq_entry(ioapic
, pin
, mp_INT
);
886 irq
= pin_2_irq(irq_entry
, ioapic
, pin
);
887 set_ioapic_affinity_irq(irq
, TARGET_CPUS
);
895 * EISA Edge/Level control register, ELCR
897 static int EISA_ELCR(unsigned int irq
)
900 unsigned int port
= 0x4d0 + (irq
>> 3);
901 return (inb(port
) >> (irq
& 7)) & 1;
903 apic_printk(APIC_VERBOSE
, KERN_INFO
904 "Broken MPtable reports ISA irq %d\n", irq
);
908 /* EISA interrupts are always polarity zero and can be edge or level
909 * trigger depending on the ELCR value. If an interrupt is listed as
910 * EISA conforming in the MP table, that means its trigger type must
911 * be read in from the ELCR */
913 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
914 #define default_EISA_polarity(idx) (0)
916 /* ISA interrupts are always polarity zero edge triggered,
917 * when listed as conforming in the MP table. */
919 #define default_ISA_trigger(idx) (0)
920 #define default_ISA_polarity(idx) (0)
922 /* PCI interrupts are always polarity one level triggered,
923 * when listed as conforming in the MP table. */
925 #define default_PCI_trigger(idx) (1)
926 #define default_PCI_polarity(idx) (1)
928 /* MCA interrupts are always polarity zero level triggered,
929 * when listed as conforming in the MP table. */
931 #define default_MCA_trigger(idx) (1)
932 #define default_MCA_polarity(idx) (0)
934 /* NEC98 interrupts are always polarity zero edge triggered,
935 * when listed as conforming in the MP table. */
937 #define default_NEC98_trigger(idx) (0)
938 #define default_NEC98_polarity(idx) (0)
940 static int __init
MPBIOS_polarity(int idx
)
942 int bus
= mp_irqs
[idx
].mpc_srcbus
;
946 * Determine IRQ line polarity (high active or low active):
948 switch (mp_irqs
[idx
].mpc_irqflag
& 3)
950 case 0: /* conforms, ie. bus-type dependent polarity */
952 switch (mp_bus_id_to_type
[bus
])
954 case MP_BUS_ISA
: /* ISA pin */
956 polarity
= default_ISA_polarity(idx
);
959 case MP_BUS_EISA
: /* EISA pin */
961 polarity
= default_EISA_polarity(idx
);
964 case MP_BUS_PCI
: /* PCI pin */
966 polarity
= default_PCI_polarity(idx
);
969 case MP_BUS_MCA
: /* MCA pin */
971 polarity
= default_MCA_polarity(idx
);
974 case MP_BUS_NEC98
: /* NEC 98 pin */
976 polarity
= default_NEC98_polarity(idx
);
981 printk(KERN_WARNING
"broken BIOS!!\n");
988 case 1: /* high active */
993 case 2: /* reserved */
995 printk(KERN_WARNING
"broken BIOS!!\n");
999 case 3: /* low active */
1004 default: /* invalid */
1006 printk(KERN_WARNING
"broken BIOS!!\n");
1014 static int MPBIOS_trigger(int idx
)
1016 int bus
= mp_irqs
[idx
].mpc_srcbus
;
1020 * Determine IRQ trigger mode (edge or level sensitive):
1022 switch ((mp_irqs
[idx
].mpc_irqflag
>>2) & 3)
1024 case 0: /* conforms, ie. bus-type dependent */
1026 switch (mp_bus_id_to_type
[bus
])
1028 case MP_BUS_ISA
: /* ISA pin */
1030 trigger
= default_ISA_trigger(idx
);
1033 case MP_BUS_EISA
: /* EISA pin */
1035 trigger
= default_EISA_trigger(idx
);
1038 case MP_BUS_PCI
: /* PCI pin */
1040 trigger
= default_PCI_trigger(idx
);
1043 case MP_BUS_MCA
: /* MCA pin */
1045 trigger
= default_MCA_trigger(idx
);
1048 case MP_BUS_NEC98
: /* NEC 98 pin */
1050 trigger
= default_NEC98_trigger(idx
);
1055 printk(KERN_WARNING
"broken BIOS!!\n");
1067 case 2: /* reserved */
1069 printk(KERN_WARNING
"broken BIOS!!\n");
1078 default: /* invalid */
1080 printk(KERN_WARNING
"broken BIOS!!\n");
1088 static inline int irq_polarity(int idx
)
1090 return MPBIOS_polarity(idx
);
1093 static inline int irq_trigger(int idx
)
1095 return MPBIOS_trigger(idx
);
1098 static int pin_2_irq(int idx
, int apic
, int pin
)
1101 int bus
= mp_irqs
[idx
].mpc_srcbus
;
1104 * Debugging check, we are in big trouble if this message pops up!
1106 if (mp_irqs
[idx
].mpc_dstirq
!= pin
)
1107 printk(KERN_ERR
"broken BIOS or MPTABLE parser, ayiee!!\n");
1109 switch (mp_bus_id_to_type
[bus
])
1111 case MP_BUS_ISA
: /* ISA pin */
1116 irq
= mp_irqs
[idx
].mpc_srcbusirq
;
1119 case MP_BUS_PCI
: /* PCI pin */
1122 * PCI IRQs are mapped in order
1126 irq
+= nr_ioapic_registers
[i
++];
1130 * For MPS mode, so far only needed by ES7000 platform
1132 if (ioapic_renumber_irq
)
1133 irq
= ioapic_renumber_irq(apic
, irq
);
1139 printk(KERN_ERR
"unknown bus type %d.\n",bus
);
1146 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1148 if ((pin
>= 16) && (pin
<= 23)) {
1149 if (pirq_entries
[pin
-16] != -1) {
1150 if (!pirq_entries
[pin
-16]) {
1151 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1152 "disabling PIRQ%d\n", pin
-16);
1154 irq
= pirq_entries
[pin
-16];
1155 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1156 "using PIRQ%d -> IRQ %d\n",
1164 static inline int IO_APIC_irq_trigger(int irq
)
1168 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1169 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1170 idx
= find_irq_entry(apic
,pin
,mp_INT
);
1171 if ((idx
!= -1) && (irq
== pin_2_irq(idx
,apic
,pin
)))
1172 return irq_trigger(idx
);
1176 * nonexistent IRQs are edge default
1181 /* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
1182 u8 irq_vector
[NR_IRQ_VECTORS
] __read_mostly
= { FIRST_DEVICE_VECTOR
, 0 };
1184 int assign_irq_vector(int irq
)
1186 static int current_vector
= FIRST_DEVICE_VECTOR
, offset
= 0;
1187 unsigned long flags
;
1190 BUG_ON(irq
!= AUTO_ASSIGN
&& (unsigned)irq
>= NR_IRQ_VECTORS
);
1192 spin_lock_irqsave(&vector_lock
, flags
);
1194 if (irq
!= AUTO_ASSIGN
&& IO_APIC_VECTOR(irq
) > 0) {
1195 spin_unlock_irqrestore(&vector_lock
, flags
);
1196 return IO_APIC_VECTOR(irq
);
1199 current_vector
+= 8;
1200 if (current_vector
== SYSCALL_VECTOR
)
1203 if (current_vector
>= FIRST_SYSTEM_VECTOR
) {
1206 spin_unlock_irqrestore(&vector_lock
, flags
);
1209 current_vector
= FIRST_DEVICE_VECTOR
+ offset
;
1212 vector
= current_vector
;
1213 vector_irq
[vector
] = irq
;
1214 if (irq
!= AUTO_ASSIGN
)
1215 IO_APIC_VECTOR(irq
) = vector
;
1217 spin_unlock_irqrestore(&vector_lock
, flags
);
1222 static struct hw_interrupt_type ioapic_level_type
;
1223 static struct hw_interrupt_type ioapic_edge_type
;
1225 #define IOAPIC_AUTO -1
1226 #define IOAPIC_EDGE 0
1227 #define IOAPIC_LEVEL 1
1229 static void ioapic_register_intr(int irq
, int vector
, unsigned long trigger
)
1233 idx
= use_pci_vector() && !platform_legacy_irq(irq
) ? vector
: irq
;
1235 if ((trigger
== IOAPIC_AUTO
&& IO_APIC_irq_trigger(irq
)) ||
1236 trigger
== IOAPIC_LEVEL
)
1237 irq_desc
[idx
].chip
= &ioapic_level_type
;
1239 irq_desc
[idx
].chip
= &ioapic_edge_type
;
1240 set_intr_gate(vector
, interrupt
[idx
]);
1243 static void __init
setup_IO_APIC_irqs(void)
1245 struct IO_APIC_route_entry entry
;
1246 int apic
, pin
, idx
, irq
, first_notcon
= 1, vector
;
1247 unsigned long flags
;
1249 apic_printk(APIC_VERBOSE
, KERN_DEBUG
"init IO_APIC IRQs\n");
1251 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1252 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1255 * add it to the IO-APIC irq-routing table:
1257 memset(&entry
,0,sizeof(entry
));
1259 entry
.delivery_mode
= INT_DELIVERY_MODE
;
1260 entry
.dest_mode
= INT_DEST_MODE
;
1261 entry
.mask
= 0; /* enable IRQ */
1262 entry
.dest
.logical
.logical_dest
=
1263 cpu_mask_to_apicid(TARGET_CPUS
);
1265 idx
= find_irq_entry(apic
,pin
,mp_INT
);
1268 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1269 " IO-APIC (apicid-pin) %d-%d",
1270 mp_ioapics
[apic
].mpc_apicid
,
1274 apic_printk(APIC_VERBOSE
, ", %d-%d",
1275 mp_ioapics
[apic
].mpc_apicid
, pin
);
1279 entry
.trigger
= irq_trigger(idx
);
1280 entry
.polarity
= irq_polarity(idx
);
1282 if (irq_trigger(idx
)) {
1287 irq
= pin_2_irq(idx
, apic
, pin
);
1289 * skip adding the timer int on secondary nodes, which causes
1290 * a small but painful rift in the time-space continuum
1292 if (multi_timer_check(apic
, irq
))
1295 add_pin_to_irq(irq
, apic
, pin
);
1297 if (!apic
&& !IO_APIC_IRQ(irq
))
1300 if (IO_APIC_IRQ(irq
)) {
1301 vector
= assign_irq_vector(irq
);
1302 entry
.vector
= vector
;
1303 ioapic_register_intr(irq
, vector
, IOAPIC_AUTO
);
1305 if (!apic
&& (irq
< 16))
1306 disable_8259A_irq(irq
);
1308 ioapic_write_entry(apic
, pin
, entry
);
1309 spin_lock_irqsave(&ioapic_lock
, flags
);
1310 set_native_irq_info(irq
, TARGET_CPUS
);
1311 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1316 apic_printk(APIC_VERBOSE
, " not connected.\n");
1320 * Set up the 8259A-master output pin:
1322 static void __init
setup_ExtINT_IRQ0_pin(unsigned int apic
, unsigned int pin
, int vector
)
1324 struct IO_APIC_route_entry entry
;
1326 memset(&entry
,0,sizeof(entry
));
1328 disable_8259A_irq(0);
1331 apic_write_around(APIC_LVT0
, APIC_LVT_MASKED
| APIC_DM_EXTINT
);
1334 * We use logical delivery to get the timer IRQ
1337 entry
.dest_mode
= INT_DEST_MODE
;
1338 entry
.mask
= 0; /* unmask IRQ now */
1339 entry
.dest
.logical
.logical_dest
= cpu_mask_to_apicid(TARGET_CPUS
);
1340 entry
.delivery_mode
= INT_DELIVERY_MODE
;
1343 entry
.vector
= vector
;
1346 * The timer IRQ doesn't have to know that behind the
1347 * scene we have a 8259A-master in AEOI mode ...
1349 irq_desc
[0].chip
= &ioapic_edge_type
;
1352 * Add it to the IO-APIC irq-routing table:
1354 ioapic_write_entry(apic
, pin
, entry
);
1356 enable_8259A_irq(0);
1359 static inline void UNEXPECTED_IO_APIC(void)
1363 void __init
print_IO_APIC(void)
1366 union IO_APIC_reg_00 reg_00
;
1367 union IO_APIC_reg_01 reg_01
;
1368 union IO_APIC_reg_02 reg_02
;
1369 union IO_APIC_reg_03 reg_03
;
1370 unsigned long flags
;
1372 if (apic_verbosity
== APIC_QUIET
)
1375 printk(KERN_DEBUG
"number of MP IRQ sources: %d.\n", mp_irq_entries
);
1376 for (i
= 0; i
< nr_ioapics
; i
++)
1377 printk(KERN_DEBUG
"number of IO-APIC #%d registers: %d.\n",
1378 mp_ioapics
[i
].mpc_apicid
, nr_ioapic_registers
[i
]);
1381 * We are a bit conservative about what we expect. We have to
1382 * know about every hardware change ASAP.
1384 printk(KERN_INFO
"testing the IO APIC.......................\n");
1386 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1388 spin_lock_irqsave(&ioapic_lock
, flags
);
1389 reg_00
.raw
= io_apic_read(apic
, 0);
1390 reg_01
.raw
= io_apic_read(apic
, 1);
1391 if (reg_01
.bits
.version
>= 0x10)
1392 reg_02
.raw
= io_apic_read(apic
, 2);
1393 if (reg_01
.bits
.version
>= 0x20)
1394 reg_03
.raw
= io_apic_read(apic
, 3);
1395 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1397 printk(KERN_DEBUG
"IO APIC #%d......\n", mp_ioapics
[apic
].mpc_apicid
);
1398 printk(KERN_DEBUG
".... register #00: %08X\n", reg_00
.raw
);
1399 printk(KERN_DEBUG
"....... : physical APIC id: %02X\n", reg_00
.bits
.ID
);
1400 printk(KERN_DEBUG
"....... : Delivery Type: %X\n", reg_00
.bits
.delivery_type
);
1401 printk(KERN_DEBUG
"....... : LTS : %X\n", reg_00
.bits
.LTS
);
1402 if (reg_00
.bits
.ID
>= get_physical_broadcast())
1403 UNEXPECTED_IO_APIC();
1404 if (reg_00
.bits
.__reserved_1
|| reg_00
.bits
.__reserved_2
)
1405 UNEXPECTED_IO_APIC();
1407 printk(KERN_DEBUG
".... register #01: %08X\n", reg_01
.raw
);
1408 printk(KERN_DEBUG
"....... : max redirection entries: %04X\n", reg_01
.bits
.entries
);
1409 if ( (reg_01
.bits
.entries
!= 0x0f) && /* older (Neptune) boards */
1410 (reg_01
.bits
.entries
!= 0x17) && /* typical ISA+PCI boards */
1411 (reg_01
.bits
.entries
!= 0x1b) && /* Compaq Proliant boards */
1412 (reg_01
.bits
.entries
!= 0x1f) && /* dual Xeon boards */
1413 (reg_01
.bits
.entries
!= 0x22) && /* bigger Xeon boards */
1414 (reg_01
.bits
.entries
!= 0x2E) &&
1415 (reg_01
.bits
.entries
!= 0x3F)
1417 UNEXPECTED_IO_APIC();
1419 printk(KERN_DEBUG
"....... : PRQ implemented: %X\n", reg_01
.bits
.PRQ
);
1420 printk(KERN_DEBUG
"....... : IO APIC version: %04X\n", reg_01
.bits
.version
);
1421 if ( (reg_01
.bits
.version
!= 0x01) && /* 82489DX IO-APICs */
1422 (reg_01
.bits
.version
!= 0x10) && /* oldest IO-APICs */
1423 (reg_01
.bits
.version
!= 0x11) && /* Pentium/Pro IO-APICs */
1424 (reg_01
.bits
.version
!= 0x13) && /* Xeon IO-APICs */
1425 (reg_01
.bits
.version
!= 0x20) /* Intel P64H (82806 AA) */
1427 UNEXPECTED_IO_APIC();
1428 if (reg_01
.bits
.__reserved_1
|| reg_01
.bits
.__reserved_2
)
1429 UNEXPECTED_IO_APIC();
1432 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1433 * but the value of reg_02 is read as the previous read register
1434 * value, so ignore it if reg_02 == reg_01.
1436 if (reg_01
.bits
.version
>= 0x10 && reg_02
.raw
!= reg_01
.raw
) {
1437 printk(KERN_DEBUG
".... register #02: %08X\n", reg_02
.raw
);
1438 printk(KERN_DEBUG
"....... : arbitration: %02X\n", reg_02
.bits
.arbitration
);
1439 if (reg_02
.bits
.__reserved_1
|| reg_02
.bits
.__reserved_2
)
1440 UNEXPECTED_IO_APIC();
1444 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1445 * or reg_03, but the value of reg_0[23] is read as the previous read
1446 * register value, so ignore it if reg_03 == reg_0[12].
1448 if (reg_01
.bits
.version
>= 0x20 && reg_03
.raw
!= reg_02
.raw
&&
1449 reg_03
.raw
!= reg_01
.raw
) {
1450 printk(KERN_DEBUG
".... register #03: %08X\n", reg_03
.raw
);
1451 printk(KERN_DEBUG
"....... : Boot DT : %X\n", reg_03
.bits
.boot_DT
);
1452 if (reg_03
.bits
.__reserved_1
)
1453 UNEXPECTED_IO_APIC();
1456 printk(KERN_DEBUG
".... IRQ redirection table:\n");
1458 printk(KERN_DEBUG
" NR Log Phy Mask Trig IRR Pol"
1459 " Stat Dest Deli Vect: \n");
1461 for (i
= 0; i
<= reg_01
.bits
.entries
; i
++) {
1462 struct IO_APIC_route_entry entry
;
1464 entry
= ioapic_read_entry(apic
, i
);
1466 printk(KERN_DEBUG
" %02x %03X %02X ",
1468 entry
.dest
.logical
.logical_dest
,
1469 entry
.dest
.physical
.physical_dest
1472 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1477 entry
.delivery_status
,
1479 entry
.delivery_mode
,
1484 if (use_pci_vector())
1485 printk(KERN_INFO
"Using vector-based indexing\n");
1486 printk(KERN_DEBUG
"IRQ to pin mappings:\n");
1487 for (i
= 0; i
< NR_IRQS
; i
++) {
1488 struct irq_pin_list
*entry
= irq_2_pin
+ i
;
1491 if (use_pci_vector() && !platform_legacy_irq(i
))
1492 printk(KERN_DEBUG
"IRQ%d ", IO_APIC_VECTOR(i
));
1494 printk(KERN_DEBUG
"IRQ%d ", i
);
1496 printk("-> %d:%d", entry
->apic
, entry
->pin
);
1499 entry
= irq_2_pin
+ entry
->next
;
1504 printk(KERN_INFO
".................................... done.\n");
1511 static void print_APIC_bitfield (int base
)
1516 if (apic_verbosity
== APIC_QUIET
)
1519 printk(KERN_DEBUG
"0123456789abcdef0123456789abcdef\n" KERN_DEBUG
);
1520 for (i
= 0; i
< 8; i
++) {
1521 v
= apic_read(base
+ i
*0x10);
1522 for (j
= 0; j
< 32; j
++) {
1532 void /*__init*/ print_local_APIC(void * dummy
)
1534 unsigned int v
, ver
, maxlvt
;
1536 if (apic_verbosity
== APIC_QUIET
)
1539 printk("\n" KERN_DEBUG
"printing local APIC contents on CPU#%d/%d:\n",
1540 smp_processor_id(), hard_smp_processor_id());
1541 v
= apic_read(APIC_ID
);
1542 printk(KERN_INFO
"... APIC ID: %08x (%01x)\n", v
, GET_APIC_ID(v
));
1543 v
= apic_read(APIC_LVR
);
1544 printk(KERN_INFO
"... APIC VERSION: %08x\n", v
);
1545 ver
= GET_APIC_VERSION(v
);
1546 maxlvt
= get_maxlvt();
1548 v
= apic_read(APIC_TASKPRI
);
1549 printk(KERN_DEBUG
"... APIC TASKPRI: %08x (%02x)\n", v
, v
& APIC_TPRI_MASK
);
1551 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1552 v
= apic_read(APIC_ARBPRI
);
1553 printk(KERN_DEBUG
"... APIC ARBPRI: %08x (%02x)\n", v
,
1554 v
& APIC_ARBPRI_MASK
);
1555 v
= apic_read(APIC_PROCPRI
);
1556 printk(KERN_DEBUG
"... APIC PROCPRI: %08x\n", v
);
1559 v
= apic_read(APIC_EOI
);
1560 printk(KERN_DEBUG
"... APIC EOI: %08x\n", v
);
1561 v
= apic_read(APIC_RRR
);
1562 printk(KERN_DEBUG
"... APIC RRR: %08x\n", v
);
1563 v
= apic_read(APIC_LDR
);
1564 printk(KERN_DEBUG
"... APIC LDR: %08x\n", v
);
1565 v
= apic_read(APIC_DFR
);
1566 printk(KERN_DEBUG
"... APIC DFR: %08x\n", v
);
1567 v
= apic_read(APIC_SPIV
);
1568 printk(KERN_DEBUG
"... APIC SPIV: %08x\n", v
);
1570 printk(KERN_DEBUG
"... APIC ISR field:\n");
1571 print_APIC_bitfield(APIC_ISR
);
1572 printk(KERN_DEBUG
"... APIC TMR field:\n");
1573 print_APIC_bitfield(APIC_TMR
);
1574 printk(KERN_DEBUG
"... APIC IRR field:\n");
1575 print_APIC_bitfield(APIC_IRR
);
1577 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1578 if (maxlvt
> 3) /* Due to the Pentium erratum 3AP. */
1579 apic_write(APIC_ESR
, 0);
1580 v
= apic_read(APIC_ESR
);
1581 printk(KERN_DEBUG
"... APIC ESR: %08x\n", v
);
1584 v
= apic_read(APIC_ICR
);
1585 printk(KERN_DEBUG
"... APIC ICR: %08x\n", v
);
1586 v
= apic_read(APIC_ICR2
);
1587 printk(KERN_DEBUG
"... APIC ICR2: %08x\n", v
);
1589 v
= apic_read(APIC_LVTT
);
1590 printk(KERN_DEBUG
"... APIC LVTT: %08x\n", v
);
1592 if (maxlvt
> 3) { /* PC is LVT#4. */
1593 v
= apic_read(APIC_LVTPC
);
1594 printk(KERN_DEBUG
"... APIC LVTPC: %08x\n", v
);
1596 v
= apic_read(APIC_LVT0
);
1597 printk(KERN_DEBUG
"... APIC LVT0: %08x\n", v
);
1598 v
= apic_read(APIC_LVT1
);
1599 printk(KERN_DEBUG
"... APIC LVT1: %08x\n", v
);
1601 if (maxlvt
> 2) { /* ERR is LVT#3. */
1602 v
= apic_read(APIC_LVTERR
);
1603 printk(KERN_DEBUG
"... APIC LVTERR: %08x\n", v
);
1606 v
= apic_read(APIC_TMICT
);
1607 printk(KERN_DEBUG
"... APIC TMICT: %08x\n", v
);
1608 v
= apic_read(APIC_TMCCT
);
1609 printk(KERN_DEBUG
"... APIC TMCCT: %08x\n", v
);
1610 v
= apic_read(APIC_TDCR
);
1611 printk(KERN_DEBUG
"... APIC TDCR: %08x\n", v
);
1615 void print_all_local_APICs (void)
1617 on_each_cpu(print_local_APIC
, NULL
, 1, 1);
1620 void /*__init*/ print_PIC(void)
1623 unsigned long flags
;
1625 if (apic_verbosity
== APIC_QUIET
)
1628 printk(KERN_DEBUG
"\nprinting PIC contents\n");
1630 spin_lock_irqsave(&i8259A_lock
, flags
);
1632 v
= inb(0xa1) << 8 | inb(0x21);
1633 printk(KERN_DEBUG
"... PIC IMR: %04x\n", v
);
1635 v
= inb(0xa0) << 8 | inb(0x20);
1636 printk(KERN_DEBUG
"... PIC IRR: %04x\n", v
);
1640 v
= inb(0xa0) << 8 | inb(0x20);
1644 spin_unlock_irqrestore(&i8259A_lock
, flags
);
1646 printk(KERN_DEBUG
"... PIC ISR: %04x\n", v
);
1648 v
= inb(0x4d1) << 8 | inb(0x4d0);
1649 printk(KERN_DEBUG
"... PIC ELCR: %04x\n", v
);
1654 static void __init
enable_IO_APIC(void)
1656 union IO_APIC_reg_01 reg_01
;
1657 int i8259_apic
, i8259_pin
;
1659 unsigned long flags
;
1661 for (i
= 0; i
< PIN_MAP_SIZE
; i
++) {
1662 irq_2_pin
[i
].pin
= -1;
1663 irq_2_pin
[i
].next
= 0;
1666 for (i
= 0; i
< MAX_PIRQS
; i
++)
1667 pirq_entries
[i
] = -1;
1670 * The number of IO-APIC IRQ registers (== #pins):
1672 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1673 spin_lock_irqsave(&ioapic_lock
, flags
);
1674 reg_01
.raw
= io_apic_read(apic
, 1);
1675 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1676 nr_ioapic_registers
[apic
] = reg_01
.bits
.entries
+1;
1678 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
1680 /* See if any of the pins is in ExtINT mode */
1681 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1682 struct IO_APIC_route_entry entry
;
1683 entry
= ioapic_read_entry(apic
, pin
);
1686 /* If the interrupt line is enabled and in ExtInt mode
1687 * I have found the pin where the i8259 is connected.
1689 if ((entry
.mask
== 0) && (entry
.delivery_mode
== dest_ExtINT
)) {
1690 ioapic_i8259
.apic
= apic
;
1691 ioapic_i8259
.pin
= pin
;
1697 /* Look to see what if the MP table has reported the ExtINT */
1698 /* If we could not find the appropriate pin by looking at the ioapic
1699 * the i8259 probably is not connected the ioapic but give the
1700 * mptable a chance anyway.
1702 i8259_pin
= find_isa_irq_pin(0, mp_ExtINT
);
1703 i8259_apic
= find_isa_irq_apic(0, mp_ExtINT
);
1704 /* Trust the MP table if nothing is setup in the hardware */
1705 if ((ioapic_i8259
.pin
== -1) && (i8259_pin
>= 0)) {
1706 printk(KERN_WARNING
"ExtINT not setup in hardware but reported by MP table\n");
1707 ioapic_i8259
.pin
= i8259_pin
;
1708 ioapic_i8259
.apic
= i8259_apic
;
1710 /* Complain if the MP table and the hardware disagree */
1711 if (((ioapic_i8259
.apic
!= i8259_apic
) || (ioapic_i8259
.pin
!= i8259_pin
)) &&
1712 (i8259_pin
>= 0) && (ioapic_i8259
.pin
>= 0))
1714 printk(KERN_WARNING
"ExtINT in hardware and MP table differ\n");
1718 * Do not trust the IO-APIC being empty at bootup
1724 * Not an __init, needed by the reboot code
1726 void disable_IO_APIC(void)
1729 * Clear the IO-APIC before rebooting:
1734 * If the i8259 is routed through an IOAPIC
1735 * Put that IOAPIC in virtual wire mode
1736 * so legacy interrupts can be delivered.
1738 if (ioapic_i8259
.pin
!= -1) {
1739 struct IO_APIC_route_entry entry
;
1741 memset(&entry
, 0, sizeof(entry
));
1742 entry
.mask
= 0; /* Enabled */
1743 entry
.trigger
= 0; /* Edge */
1745 entry
.polarity
= 0; /* High */
1746 entry
.delivery_status
= 0;
1747 entry
.dest_mode
= 0; /* Physical */
1748 entry
.delivery_mode
= dest_ExtINT
; /* ExtInt */
1750 entry
.dest
.physical
.physical_dest
=
1751 GET_APIC_ID(apic_read(APIC_ID
));
1754 * Add it to the IO-APIC irq-routing table:
1756 ioapic_write_entry(ioapic_i8259
.apic
, ioapic_i8259
.pin
, entry
);
1758 disconnect_bsp_APIC(ioapic_i8259
.pin
!= -1);
1762 * function to set the IO-APIC physical IDs based on the
1763 * values stored in the MPC table.
1765 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1768 #ifndef CONFIG_X86_NUMAQ
1769 static void __init
setup_ioapic_ids_from_mpc(void)
1771 union IO_APIC_reg_00 reg_00
;
1772 physid_mask_t phys_id_present_map
;
1775 unsigned char old_id
;
1776 unsigned long flags
;
1779 * Don't check I/O APIC IDs for xAPIC systems. They have
1780 * no meaning without the serial APIC bus.
1782 if (!(boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
)
1783 || APIC_XAPIC(apic_version
[boot_cpu_physical_apicid
]))
1786 * This is broken; anything with a real cpu count has to
1787 * circumvent this idiocy regardless.
1789 phys_id_present_map
= ioapic_phys_id_map(phys_cpu_present_map
);
1792 * Set the IOAPIC ID to the value stored in the MPC table.
1794 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1796 /* Read the register 0 value */
1797 spin_lock_irqsave(&ioapic_lock
, flags
);
1798 reg_00
.raw
= io_apic_read(apic
, 0);
1799 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1801 old_id
= mp_ioapics
[apic
].mpc_apicid
;
1803 if (mp_ioapics
[apic
].mpc_apicid
>= get_physical_broadcast()) {
1804 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1805 apic
, mp_ioapics
[apic
].mpc_apicid
);
1806 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
1808 mp_ioapics
[apic
].mpc_apicid
= reg_00
.bits
.ID
;
1812 * Sanity check, is the ID really free? Every APIC in a
1813 * system must have a unique ID or we get lots of nice
1814 * 'stuck on smp_invalidate_needed IPI wait' messages.
1816 if (check_apicid_used(phys_id_present_map
,
1817 mp_ioapics
[apic
].mpc_apicid
)) {
1818 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1819 apic
, mp_ioapics
[apic
].mpc_apicid
);
1820 for (i
= 0; i
< get_physical_broadcast(); i
++)
1821 if (!physid_isset(i
, phys_id_present_map
))
1823 if (i
>= get_physical_broadcast())
1824 panic("Max APIC ID exceeded!\n");
1825 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
1827 physid_set(i
, phys_id_present_map
);
1828 mp_ioapics
[apic
].mpc_apicid
= i
;
1831 tmp
= apicid_to_cpu_present(mp_ioapics
[apic
].mpc_apicid
);
1832 apic_printk(APIC_VERBOSE
, "Setting %d in the "
1833 "phys_id_present_map\n",
1834 mp_ioapics
[apic
].mpc_apicid
);
1835 physids_or(phys_id_present_map
, phys_id_present_map
, tmp
);
1840 * We need to adjust the IRQ routing table
1841 * if the ID changed.
1843 if (old_id
!= mp_ioapics
[apic
].mpc_apicid
)
1844 for (i
= 0; i
< mp_irq_entries
; i
++)
1845 if (mp_irqs
[i
].mpc_dstapic
== old_id
)
1846 mp_irqs
[i
].mpc_dstapic
1847 = mp_ioapics
[apic
].mpc_apicid
;
1850 * Read the right value from the MPC table and
1851 * write it into the ID register.
1853 apic_printk(APIC_VERBOSE
, KERN_INFO
1854 "...changing IO-APIC physical APIC ID to %d ...",
1855 mp_ioapics
[apic
].mpc_apicid
);
1857 reg_00
.bits
.ID
= mp_ioapics
[apic
].mpc_apicid
;
1858 spin_lock_irqsave(&ioapic_lock
, flags
);
1859 io_apic_write(apic
, 0, reg_00
.raw
);
1860 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1865 spin_lock_irqsave(&ioapic_lock
, flags
);
1866 reg_00
.raw
= io_apic_read(apic
, 0);
1867 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1868 if (reg_00
.bits
.ID
!= mp_ioapics
[apic
].mpc_apicid
)
1869 printk("could not set ID!\n");
1871 apic_printk(APIC_VERBOSE
, " ok.\n");
1875 static void __init
setup_ioapic_ids_from_mpc(void) { }
1879 * There is a nasty bug in some older SMP boards, their mptable lies
1880 * about the timer IRQ. We do the following to work around the situation:
1882 * - timer IRQ defaults to IO-APIC IRQ
1883 * - if this function detects that timer IRQs are defunct, then we fall
1884 * back to ISA timer IRQs
1886 static int __init
timer_irq_works(void)
1888 unsigned long t1
= jiffies
;
1891 /* Let ten ticks pass... */
1892 mdelay((10 * 1000) / HZ
);
1895 * Expect a few ticks at least, to be sure some possible
1896 * glue logic does not lock up after one or two first
1897 * ticks in a non-ExtINT mode. Also the local APIC
1898 * might have cached one ExtINT interrupt. Finally, at
1899 * least one tick may be lost due to delays.
1901 if (jiffies
- t1
> 4)
1908 * In the SMP+IOAPIC case it might happen that there are an unspecified
1909 * number of pending IRQ events unhandled. These cases are very rare,
1910 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1911 * better to do it this way as thus we do not have to be aware of
1912 * 'pending' interrupts in the IRQ path, except at this point.
1915 * Edge triggered needs to resend any interrupt
1916 * that was delayed but this is now handled in the device
1921 * Starting up a edge-triggered IO-APIC interrupt is
1922 * nasty - we need to make sure that we get the edge.
1923 * If it is already asserted for some reason, we need
1924 * return 1 to indicate that is was pending.
1926 * This is not complete - we should be able to fake
1927 * an edge even if it isn't on the 8259A...
1929 static unsigned int startup_edge_ioapic_irq(unsigned int irq
)
1931 int was_pending
= 0;
1932 unsigned long flags
;
1934 spin_lock_irqsave(&ioapic_lock
, flags
);
1936 disable_8259A_irq(irq
);
1937 if (i8259A_irq_pending(irq
))
1940 __unmask_IO_APIC_irq(irq
);
1941 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1947 * Once we have recorded IRQ_PENDING already, we can mask the
1948 * interrupt for real. This prevents IRQ storms from unhandled
1951 static void ack_edge_ioapic_irq(unsigned int irq
)
1954 if ((irq_desc
[irq
].status
& (IRQ_PENDING
| IRQ_DISABLED
))
1955 == (IRQ_PENDING
| IRQ_DISABLED
))
1956 mask_IO_APIC_irq(irq
);
1961 * Level triggered interrupts can just be masked,
1962 * and shutting down and starting up the interrupt
1963 * is the same as enabling and disabling them -- except
1964 * with a startup need to return a "was pending" value.
1966 * Level triggered interrupts are special because we
1967 * do not touch any IO-APIC register while handling
1968 * them. We ack the APIC in the end-IRQ handler, not
1969 * in the start-IRQ-handler. Protection against reentrance
1970 * from the same interrupt is still provided, both by the
1971 * generic IRQ layer and by the fact that an unacked local
1972 * APIC does not accept IRQs.
1974 static unsigned int startup_level_ioapic_irq (unsigned int irq
)
1976 unmask_IO_APIC_irq(irq
);
1978 return 0; /* don't check for pending */
1981 static void end_level_ioapic_irq (unsigned int irq
)
1988 * It appears there is an erratum which affects at least version 0x11
1989 * of I/O APIC (that's the 82093AA and cores integrated into various
1990 * chipsets). Under certain conditions a level-triggered interrupt is
1991 * erroneously delivered as edge-triggered one but the respective IRR
1992 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1993 * message but it will never arrive and further interrupts are blocked
1994 * from the source. The exact reason is so far unknown, but the
1995 * phenomenon was observed when two consecutive interrupt requests
1996 * from a given source get delivered to the same CPU and the source is
1997 * temporarily disabled in between.
1999 * A workaround is to simulate an EOI message manually. We achieve it
2000 * by setting the trigger mode to edge and then to level when the edge
2001 * trigger mode gets detected in the TMR of a local APIC for a
2002 * level-triggered interrupt. We mask the source for the time of the
2003 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2004 * The idea is from Manfred Spraul. --macro
2006 i
= IO_APIC_VECTOR(irq
);
2008 v
= apic_read(APIC_TMR
+ ((i
& ~0x1f) >> 1));
2012 if (!(v
& (1 << (i
& 0x1f)))) {
2013 atomic_inc(&irq_mis_count
);
2014 spin_lock(&ioapic_lock
);
2015 __mask_and_edge_IO_APIC_irq(irq
);
2016 __unmask_and_level_IO_APIC_irq(irq
);
2017 spin_unlock(&ioapic_lock
);
2021 #ifdef CONFIG_PCI_MSI
2022 static unsigned int startup_edge_ioapic_vector(unsigned int vector
)
2024 int irq
= vector_to_irq(vector
);
2026 return startup_edge_ioapic_irq(irq
);
2029 static void ack_edge_ioapic_vector(unsigned int vector
)
2031 int irq
= vector_to_irq(vector
);
2033 move_native_irq(vector
);
2034 ack_edge_ioapic_irq(irq
);
2037 static unsigned int startup_level_ioapic_vector (unsigned int vector
)
2039 int irq
= vector_to_irq(vector
);
2041 return startup_level_ioapic_irq (irq
);
2044 static void end_level_ioapic_vector (unsigned int vector
)
2046 int irq
= vector_to_irq(vector
);
2048 move_native_irq(vector
);
2049 end_level_ioapic_irq(irq
);
2052 static void mask_IO_APIC_vector (unsigned int vector
)
2054 int irq
= vector_to_irq(vector
);
2056 mask_IO_APIC_irq(irq
);
2059 static void unmask_IO_APIC_vector (unsigned int vector
)
2061 int irq
= vector_to_irq(vector
);
2063 unmask_IO_APIC_irq(irq
);
2067 static void set_ioapic_affinity_vector (unsigned int vector
,
2070 int irq
= vector_to_irq(vector
);
2072 set_native_irq_info(vector
, cpu_mask
);
2073 set_ioapic_affinity_irq(irq
, cpu_mask
);
2078 static int ioapic_retrigger(unsigned int irq
)
2080 send_IPI_self(IO_APIC_VECTOR(irq
));
2086 * Level and edge triggered IO-APIC interrupts need different handling,
2087 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2088 * handled with the level-triggered descriptor, but that one has slightly
2089 * more overhead. Level-triggered interrupts cannot be handled with the
2090 * edge-triggered handler, without risking IRQ storms and other ugly
2093 static struct hw_interrupt_type ioapic_edge_type __read_mostly
= {
2094 .typename
= "IO-APIC-edge",
2095 .startup
= startup_edge_ioapic
,
2096 .shutdown
= shutdown_edge_ioapic
,
2097 .enable
= enable_edge_ioapic
,
2098 .disable
= disable_edge_ioapic
,
2099 .ack
= ack_edge_ioapic
,
2100 .end
= end_edge_ioapic
,
2102 .set_affinity
= set_ioapic_affinity
,
2104 .retrigger
= ioapic_retrigger
,
2107 static struct hw_interrupt_type ioapic_level_type __read_mostly
= {
2108 .typename
= "IO-APIC-level",
2109 .startup
= startup_level_ioapic
,
2110 .shutdown
= shutdown_level_ioapic
,
2111 .enable
= enable_level_ioapic
,
2112 .disable
= disable_level_ioapic
,
2113 .ack
= mask_and_ack_level_ioapic
,
2114 .end
= end_level_ioapic
,
2116 .set_affinity
= set_ioapic_affinity
,
2118 .retrigger
= ioapic_retrigger
,
2121 static inline void init_IO_APIC_traps(void)
2126 * NOTE! The local APIC isn't very good at handling
2127 * multiple interrupts at the same interrupt level.
2128 * As the interrupt level is determined by taking the
2129 * vector number and shifting that right by 4, we
2130 * want to spread these out a bit so that they don't
2131 * all fall in the same interrupt level.
2133 * Also, we've got to be careful not to trash gate
2134 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2136 for (irq
= 0; irq
< NR_IRQS
; irq
++) {
2138 if (use_pci_vector()) {
2139 if (!platform_legacy_irq(tmp
))
2140 if ((tmp
= vector_to_irq(tmp
)) == -1)
2143 if (IO_APIC_IRQ(tmp
) && !IO_APIC_VECTOR(tmp
)) {
2145 * Hmm.. We don't have an entry for this,
2146 * so default to an old-fashioned 8259
2147 * interrupt if we can..
2150 make_8259A_irq(irq
);
2152 /* Strange. Oh, well.. */
2153 irq_desc
[irq
].chip
= &no_irq_type
;
2158 static void enable_lapic_irq (unsigned int irq
)
2162 v
= apic_read(APIC_LVT0
);
2163 apic_write_around(APIC_LVT0
, v
& ~APIC_LVT_MASKED
);
2166 static void disable_lapic_irq (unsigned int irq
)
2170 v
= apic_read(APIC_LVT0
);
2171 apic_write_around(APIC_LVT0
, v
| APIC_LVT_MASKED
);
2174 static void ack_lapic_irq (unsigned int irq
)
2179 static void end_lapic_irq (unsigned int i
) { /* nothing */ }
2181 static struct hw_interrupt_type lapic_irq_type __read_mostly
= {
2182 .typename
= "local-APIC-edge",
2183 .startup
= NULL
, /* startup_irq() not used for IRQ0 */
2184 .shutdown
= NULL
, /* shutdown_irq() not used for IRQ0 */
2185 .enable
= enable_lapic_irq
,
2186 .disable
= disable_lapic_irq
,
2187 .ack
= ack_lapic_irq
,
2188 .end
= end_lapic_irq
2191 static void setup_nmi (void)
2194 * Dirty trick to enable the NMI watchdog ...
2195 * We put the 8259A master into AEOI mode and
2196 * unmask on all local APICs LVT0 as NMI.
2198 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2199 * is from Maciej W. Rozycki - so we do not have to EOI from
2200 * the NMI handler or the timer interrupt.
2202 apic_printk(APIC_VERBOSE
, KERN_INFO
"activating NMI Watchdog ...");
2204 on_each_cpu(enable_NMI_through_LVT0
, NULL
, 1, 1);
2206 apic_printk(APIC_VERBOSE
, " done.\n");
2210 * This looks a bit hackish but it's about the only one way of sending
2211 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2212 * not support the ExtINT mode, unfortunately. We need to send these
2213 * cycles as some i82489DX-based boards have glue logic that keeps the
2214 * 8259A interrupt line asserted until INTA. --macro
2216 static inline void unlock_ExtINT_logic(void)
2219 struct IO_APIC_route_entry entry0
, entry1
;
2220 unsigned char save_control
, save_freq_select
;
2222 pin
= find_isa_irq_pin(8, mp_INT
);
2223 apic
= find_isa_irq_apic(8, mp_INT
);
2227 entry0
= ioapic_read_entry(apic
, pin
);
2228 clear_IO_APIC_pin(apic
, pin
);
2230 memset(&entry1
, 0, sizeof(entry1
));
2232 entry1
.dest_mode
= 0; /* physical delivery */
2233 entry1
.mask
= 0; /* unmask IRQ now */
2234 entry1
.dest
.physical
.physical_dest
= hard_smp_processor_id();
2235 entry1
.delivery_mode
= dest_ExtINT
;
2236 entry1
.polarity
= entry0
.polarity
;
2240 ioapic_write_entry(apic
, pin
, entry1
);
2242 save_control
= CMOS_READ(RTC_CONTROL
);
2243 save_freq_select
= CMOS_READ(RTC_FREQ_SELECT
);
2244 CMOS_WRITE((save_freq_select
& ~RTC_RATE_SELECT
) | 0x6,
2246 CMOS_WRITE(save_control
| RTC_PIE
, RTC_CONTROL
);
2251 if ((CMOS_READ(RTC_INTR_FLAGS
) & RTC_PF
) == RTC_PF
)
2255 CMOS_WRITE(save_control
, RTC_CONTROL
);
2256 CMOS_WRITE(save_freq_select
, RTC_FREQ_SELECT
);
2257 clear_IO_APIC_pin(apic
, pin
);
2259 ioapic_write_entry(apic
, pin
, entry0
);
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
;
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
);
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
;
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
);
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);
2315 enable_8259A_irq(0);
2317 if (disable_timer_pin_1
> 0)
2318 clear_IO_APIC_pin(0, pin1
);
2321 clear_IO_APIC_pin(apic1
, pin1
);
2322 printk(KERN_ERR
"..MP-BIOS bug: 8254 timer not connected to "
2326 printk(KERN_INFO
"...trying to set up timer (IRQ0) through the 8259A ... ");
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()) {
2336 replace_pin_at_irq(0, apic1
, pin1
, apic2
, pin2
);
2338 add_pin_to_irq(0, apic2
, pin2
);
2339 if (nmi_watchdog
== NMI_IO_APIC
) {
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");
2356 printk(KERN_INFO
"...trying to set up timer as Virtual Wire IRQ...");
2358 disable_8259A_irq(0);
2359 irq_desc
[0].chip
= &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");
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...");
2375 apic_write_around(APIC_LVT0
, APIC_DM_EXTINT
);
2377 unlock_ExtINT_logic();
2379 if (timer_irq_works()) {
2380 printk(" works.\n");
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)
2402 io_apic_irqs
= ~0; /* all IRQs go through IOAPIC */
2404 io_apic_irqs
= ~PIC_IRQS
;
2406 printk("ENABLING IO-APIC IRQs\n");
2409 * Set up IO-APIC IRQ routing.
2412 setup_ioapic_ids_from_mpc();
2414 setup_IO_APIC_irqs();
2415 init_IO_APIC_traps();
2421 static int __init
setup_disable_8254_timer(char *s
)
2423 timer_over_8254
= -1;
2426 static int __init
setup_enable_8254_timer(char *s
)
2428 timer_over_8254
= 2;
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)
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
;
2461 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
2462 entry
= data
->entry
;
2463 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++)
2464 entry
[i
] = ioapic_read_entry(dev
->id
, i
);
2469 static int ioapic_resume(struct sys_device
*dev
)
2471 struct IO_APIC_route_entry
*entry
;
2472 struct sysfs_ioapic_data
*data
;
2473 unsigned long flags
;
2474 union IO_APIC_reg_00 reg_00
;
2477 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
2478 entry
= data
->entry
;
2480 spin_lock_irqsave(&ioapic_lock
, flags
);
2481 reg_00
.raw
= io_apic_read(dev
->id
, 0);
2482 if (reg_00
.bits
.ID
!= mp_ioapics
[dev
->id
].mpc_apicid
) {
2483 reg_00
.bits
.ID
= mp_ioapics
[dev
->id
].mpc_apicid
;
2484 io_apic_write(dev
->id
, 0, reg_00
.raw
);
2486 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2487 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++)
2488 ioapic_write_entry(dev
->id
, i
, entry
[i
]);
2493 static struct sysdev_class ioapic_sysdev_class
= {
2494 set_kset_name("ioapic"),
2495 .suspend
= ioapic_suspend
,
2496 .resume
= ioapic_resume
,
2499 static int __init
ioapic_init_sysfs(void)
2501 struct sys_device
* dev
;
2502 int i
, size
, error
= 0;
2504 error
= sysdev_class_register(&ioapic_sysdev_class
);
2508 for (i
= 0; i
< nr_ioapics
; i
++ ) {
2509 size
= sizeof(struct sys_device
) + nr_ioapic_registers
[i
]
2510 * sizeof(struct IO_APIC_route_entry
);
2511 mp_ioapic_data
[i
] = kmalloc(size
, GFP_KERNEL
);
2512 if (!mp_ioapic_data
[i
]) {
2513 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
2516 memset(mp_ioapic_data
[i
], 0, size
);
2517 dev
= &mp_ioapic_data
[i
]->dev
;
2519 dev
->cls
= &ioapic_sysdev_class
;
2520 error
= sysdev_register(dev
);
2522 kfree(mp_ioapic_data
[i
]);
2523 mp_ioapic_data
[i
] = NULL
;
2524 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
2532 device_initcall(ioapic_init_sysfs
);
2534 /* --------------------------------------------------------------------------
2535 ACPI-based IOAPIC Configuration
2536 -------------------------------------------------------------------------- */
2540 int __init
io_apic_get_unique_id (int ioapic
, int apic_id
)
2542 union IO_APIC_reg_00 reg_00
;
2543 static physid_mask_t apic_id_map
= PHYSID_MASK_NONE
;
2545 unsigned long flags
;
2549 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2550 * buses (one for LAPICs, one for IOAPICs), where predecessors only
2551 * supports up to 16 on one shared APIC bus.
2553 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2554 * advantage of new APIC bus architecture.
2557 if (physids_empty(apic_id_map
))
2558 apic_id_map
= ioapic_phys_id_map(phys_cpu_present_map
);
2560 spin_lock_irqsave(&ioapic_lock
, flags
);
2561 reg_00
.raw
= io_apic_read(ioapic
, 0);
2562 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2564 if (apic_id
>= get_physical_broadcast()) {
2565 printk(KERN_WARNING
"IOAPIC[%d]: Invalid apic_id %d, trying "
2566 "%d\n", ioapic
, apic_id
, reg_00
.bits
.ID
);
2567 apic_id
= reg_00
.bits
.ID
;
2571 * Every APIC in a system must have a unique ID or we get lots of nice
2572 * 'stuck on smp_invalidate_needed IPI wait' messages.
2574 if (check_apicid_used(apic_id_map
, apic_id
)) {
2576 for (i
= 0; i
< get_physical_broadcast(); i
++) {
2577 if (!check_apicid_used(apic_id_map
, i
))
2581 if (i
== get_physical_broadcast())
2582 panic("Max apic_id exceeded!\n");
2584 printk(KERN_WARNING
"IOAPIC[%d]: apic_id %d already used, "
2585 "trying %d\n", ioapic
, apic_id
, i
);
2590 tmp
= apicid_to_cpu_present(apic_id
);
2591 physids_or(apic_id_map
, apic_id_map
, tmp
);
2593 if (reg_00
.bits
.ID
!= apic_id
) {
2594 reg_00
.bits
.ID
= apic_id
;
2596 spin_lock_irqsave(&ioapic_lock
, flags
);
2597 io_apic_write(ioapic
, 0, reg_00
.raw
);
2598 reg_00
.raw
= io_apic_read(ioapic
, 0);
2599 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2602 if (reg_00
.bits
.ID
!= apic_id
) {
2603 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic
);
2608 apic_printk(APIC_VERBOSE
, KERN_INFO
2609 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic
, apic_id
);
2615 int __init
io_apic_get_version (int ioapic
)
2617 union IO_APIC_reg_01 reg_01
;
2618 unsigned long flags
;
2620 spin_lock_irqsave(&ioapic_lock
, flags
);
2621 reg_01
.raw
= io_apic_read(ioapic
, 1);
2622 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2624 return reg_01
.bits
.version
;
2628 int __init
io_apic_get_redir_entries (int ioapic
)
2630 union IO_APIC_reg_01 reg_01
;
2631 unsigned long flags
;
2633 spin_lock_irqsave(&ioapic_lock
, flags
);
2634 reg_01
.raw
= io_apic_read(ioapic
, 1);
2635 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2637 return reg_01
.bits
.entries
;
2641 int io_apic_set_pci_routing (int ioapic
, int pin
, int irq
, int edge_level
, int active_high_low
)
2643 struct IO_APIC_route_entry entry
;
2644 unsigned long flags
;
2646 if (!IO_APIC_IRQ(irq
)) {
2647 printk(KERN_ERR
"IOAPIC[%d]: Invalid reference to IRQ 0\n",
2653 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2654 * Note that we mask (disable) IRQs now -- these get enabled when the
2655 * corresponding device driver registers for this IRQ.
2658 memset(&entry
,0,sizeof(entry
));
2660 entry
.delivery_mode
= INT_DELIVERY_MODE
;
2661 entry
.dest_mode
= INT_DEST_MODE
;
2662 entry
.dest
.logical
.logical_dest
= cpu_mask_to_apicid(TARGET_CPUS
);
2663 entry
.trigger
= edge_level
;
2664 entry
.polarity
= active_high_low
;
2668 * IRQs < 16 are already in the irq_2_pin[] map
2671 add_pin_to_irq(irq
, ioapic
, pin
);
2673 entry
.vector
= assign_irq_vector(irq
);
2675 apic_printk(APIC_DEBUG
, KERN_DEBUG
"IOAPIC[%d]: Set PCI routing entry "
2676 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic
,
2677 mp_ioapics
[ioapic
].mpc_apicid
, pin
, entry
.vector
, irq
,
2678 edge_level
, active_high_low
);
2680 ioapic_register_intr(irq
, entry
.vector
, edge_level
);
2682 if (!ioapic
&& (irq
< 16))
2683 disable_8259A_irq(irq
);
2685 ioapic_write_entry(ioapic
, pin
, entry
);
2686 spin_lock_irqsave(&ioapic_lock
, flags
);
2687 set_native_irq_info(use_pci_vector() ? entry
.vector
: irq
, TARGET_CPUS
);
2688 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2693 #endif /* CONFIG_ACPI */
2695 static int __init
parse_disable_timer_pin_1(char *arg
)
2697 disable_timer_pin_1
= 1;
2700 early_param("disable_timer_pin_1", parse_disable_timer_pin_1
);
2702 static int __init
parse_enable_timer_pin_1(char *arg
)
2704 disable_timer_pin_1
= -1;
2707 early_param("enable_timer_pin_1", parse_enable_timer_pin_1
);
2709 static int __init
parse_noapic(char *arg
)
2711 /* disable IO-APIC */
2712 disable_ioapic_setup();
2715 early_param("noapic", parse_noapic
);