blob: e21dcde0790e62cd389b6062803e9bd014a51048 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/smp_lock.h>
29#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070034#include <linux/pci.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070035#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070036#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
40#include <asm/smp.h>
41#include <asm/desc.h>
42#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070043#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020044#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070045#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070046#include <asm/hypertransport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020049#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include "io_ports.h"
52
53int (*ioapic_renumber_irq)(int ioapic, int irq);
54atomic_t irq_mis_count;
55
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -080056/* Where if anywhere is the i8259 connect in external int mode */
57static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static DEFINE_SPINLOCK(ioapic_lock);
Jan Beulich0a1ad602006-06-26 13:56:43 +020060static DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Andi Kleenf9262c12006-03-08 17:57:25 -080062int timer_over_8254 __initdata = 1;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Is the SiS APIC rmw bug present ?
66 * -1 = don't know, 0 = no, 1 = yes
67 */
68int sis_apic_bug = -1;
69
70/*
71 * # of IRQ routing registers
72 */
73int nr_ioapic_registers[MAX_IO_APICS];
74
Rusty Russell1a3f2392006-09-26 10:52:32 +020075static int disable_timer_pin_1 __initdata;
Chuck Ebbert66759a02005-09-12 18:49:25 +020076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * Rough estimation of how many shared IRQs there are, can
79 * be changed anytime.
80 */
81#define MAX_PLUS_SHARED_IRQS NR_IRQS
82#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
83
84/*
85 * This is performance-critical, we want to do it O(1)
86 *
87 * the indexing order of this array favors 1:1 mappings
88 * between pins and IRQs.
89 */
90
91static struct irq_pin_list {
92 int apic, pin, next;
93} irq_2_pin[PIN_MAP_SIZE];
94
Linus Torvalds130fe052006-11-01 09:11:00 -080095struct io_apic {
96 unsigned int index;
97 unsigned int unused[3];
98 unsigned int data;
99};
100
101static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
102{
103 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
104 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
105}
106
107static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
108{
109 struct io_apic __iomem *io_apic = io_apic_base(apic);
110 writel(reg, &io_apic->index);
111 return readl(&io_apic->data);
112}
113
114static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
115{
116 struct io_apic __iomem *io_apic = io_apic_base(apic);
117 writel(reg, &io_apic->index);
118 writel(value, &io_apic->data);
119}
120
121/*
122 * Re-write a value: to be used for read-modify-write
123 * cycles where the read already set up the index register.
124 *
125 * Older SiS APIC requires we rewrite the index register
126 */
127static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
128{
129 volatile struct io_apic *io_apic = io_apic_base(apic);
130 if (sis_apic_bug)
131 writel(reg, &io_apic->index);
132 writel(value, &io_apic->data);
133}
134
Andi Kleencf4c6a22006-09-26 10:52:30 +0200135union entry_union {
136 struct { u32 w1, w2; };
137 struct IO_APIC_route_entry entry;
138};
139
140static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
141{
142 union entry_union eu;
143 unsigned long flags;
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);
148 return eu.entry;
149}
150
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800151/*
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.
156 */
Andi Kleend15512f2006-12-07 02:14:07 +0100157static void
158__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
159{
160 union entry_union eu;
161 eu.entry = e;
162 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
163 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
164}
165
Andi Kleencf4c6a22006-09-26 10:52:30 +0200166static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
167{
168 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200169 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100170 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800171 spin_unlock_irqrestore(&ioapic_lock, flags);
172}
173
174/*
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
177 * high bits!
178 */
179static void ioapic_mask_entry(int apic, int pin)
180{
181 unsigned long flags;
182 union entry_union eu = { .entry.mask = 1 };
183
184 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200185 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);
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
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.
194 */
195static void add_pin_to_irq(unsigned int irq, int apic, int pin)
196{
197 static int first_free_entry = NR_IRQS;
198 struct irq_pin_list *entry = irq_2_pin + irq;
199
200 while (entry->next)
201 entry = irq_2_pin + entry->next;
202
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");
208 }
209 entry->apic = apic;
210 entry->pin = pin;
211}
212
213/*
214 * Reroute an IRQ to a different pin.
215 */
216static void __init replace_pin_at_irq(unsigned int irq,
217 int oldapic, int oldpin,
218 int newapic, int newpin)
219{
220 struct irq_pin_list *entry = irq_2_pin + irq;
221
222 while (1) {
223 if (entry->apic == oldapic && entry->pin == oldpin) {
224 entry->apic = newapic;
225 entry->pin = newpin;
226 }
227 if (!entry->next)
228 break;
229 entry = irq_2_pin + entry->next;
230 }
231}
232
233static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable)
234{
235 struct irq_pin_list *entry = irq_2_pin + irq;
236 unsigned int pin, reg;
237
238 for (;;) {
239 pin = entry->pin;
240 if (pin == -1)
241 break;
242 reg = io_apic_read(entry->apic, 0x10 + pin*2);
243 reg &= ~disable;
244 reg |= enable;
245 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
246 if (!entry->next)
247 break;
248 entry = irq_2_pin + entry->next;
249 }
250}
251
252/* mask = 1 */
253static void __mask_IO_APIC_irq (unsigned int irq)
254{
255 __modify_IO_APIC_irq(irq, 0x00010000, 0);
256}
257
258/* mask = 0 */
259static void __unmask_IO_APIC_irq (unsigned int irq)
260{
261 __modify_IO_APIC_irq(irq, 0, 0x00010000);
262}
263
264/* mask = 1, trigger = 0 */
265static void __mask_and_edge_IO_APIC_irq (unsigned int irq)
266{
267 __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000);
268}
269
270/* mask = 0, trigger = 1 */
271static void __unmask_and_level_IO_APIC_irq (unsigned int irq)
272{
273 __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000);
274}
275
276static void mask_IO_APIC_irq (unsigned int irq)
277{
278 unsigned long flags;
279
280 spin_lock_irqsave(&ioapic_lock, flags);
281 __mask_IO_APIC_irq(irq);
282 spin_unlock_irqrestore(&ioapic_lock, flags);
283}
284
285static void unmask_IO_APIC_irq (unsigned int irq)
286{
287 unsigned long flags;
288
289 spin_lock_irqsave(&ioapic_lock, flags);
290 __unmask_IO_APIC_irq(irq);
291 spin_unlock_irqrestore(&ioapic_lock, flags);
292}
293
294static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
295{
296 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200299 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (entry.delivery_mode == dest_SMI)
301 return;
302
303 /*
304 * Disable it in the IO-APIC irq-routing table:
305 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800306 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static void clear_IO_APIC (void)
310{
311 int apic, pin;
312
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);
316}
317
Ashok Raj54d5d422005-09-06 15:16:15 -0700318#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
320{
321 unsigned long flags;
322 int pin;
323 struct irq_pin_list *entry = irq_2_pin + irq;
324 unsigned int apicid_value;
Ashok Raj54d5d422005-09-06 15:16:15 -0700325 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Ashok Raj54d5d422005-09-06 15:16:15 -0700327 cpus_and(tmp, cpumask, cpu_online_map);
328 if (cpus_empty(tmp))
329 tmp = TARGET_CPUS;
330
331 cpus_and(cpumask, tmp, CPU_MASK_ALL);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 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);
337 for (;;) {
338 pin = entry->pin;
339 if (pin == -1)
340 break;
341 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
342 if (!entry->next)
343 break;
344 entry = irq_2_pin + entry->next;
345 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -0700346 set_native_irq_info(irq, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 spin_unlock_irqrestore(&ioapic_lock, flags);
348}
349
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() */
355
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700356#ifdef CONFIG_BALANCED_IRQ_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357# define TDprintk(x...) do { printk("<%ld:%s:%d>: ", jiffies, __FILE__, __LINE__); printk(x); } while (0)
358# define Dprintk(x...) do { TDprintk(x); } while (0)
359# else
360# define TDprintk(x...)
361# define Dprintk(x...)
362# endif
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#define IRQBALANCE_CHECK_ARCH -999
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700365#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)
369
370static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
371static int physical_balance __read_mostly;
372static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374static struct irq_cpu_info {
375 unsigned long * last_irq;
376 unsigned long * irq_delta;
377 unsigned long irq;
378} irq_cpu_data[NR_CPUS];
379
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])
383
384#define IDLE_ENOUGH(cpu,now) \
385 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
386
387#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
388
389#define CPU_TO_PACKAGEINDEX(i) (first_cpu(cpu_sibling_map[i]))
390
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700391static cpumask_t balance_irq_affinity[NR_IRQS] = {
392 [0 ... NR_IRQS-1] = CPU_MASK_ALL
393};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700395void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
396{
397 balance_irq_affinity[irq] = mask;
398}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
401 unsigned long now, int direction)
402{
403 int search_idle = 1;
404 int cpu = curr_cpu;
405
406 goto inside;
407
408 do {
409 if (unlikely(cpu == curr_cpu))
410 search_idle = 0;
411inside:
412 if (direction == 1) {
413 cpu++;
414 if (cpu >= NR_CPUS)
415 cpu = 0;
416 } else {
417 cpu--;
418 if (cpu == -1)
419 cpu = NR_CPUS-1;
420 }
421 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) ||
422 (search_idle && !IDLE_ENOUGH(cpu,now)));
423
424 return cpu;
425}
426
427static inline void balance_irq(int cpu, int irq)
428{
429 unsigned long now = jiffies;
430 cpumask_t allowed_mask;
431 unsigned int new_cpu;
432
433 if (irqbalance_disabled)
434 return;
435
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700436 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 new_cpu = move(cpu, allowed_mask, now, 1);
438 if (cpu != new_cpu) {
Ashok Raj54d5d422005-09-06 15:16:15 -0700439 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441}
442
443static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
444{
445 int i, j;
446 Dprintk("Rotating IRQs among CPUs.\n");
Andrew Morton394e3902006-03-23 03:01:05 -0800447 for_each_online_cpu(i) {
448 for (j = 0; j < NR_IRQS; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (!irq_desc[j].action)
450 continue;
451 /* Is it a significant load ? */
452 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) <
453 useful_load_threshold)
454 continue;
455 balance_irq(i, j);
456 }
457 }
458 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
459 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
460 return;
461}
462
463static void do_irq_balance(void)
464{
465 int i, j;
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;
469 int load;
470 unsigned long useful_load_threshold = balanced_irq_interval + 10;
471 int selected_irq;
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;
476
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800477 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int package_index;
479 CPU_IRQ(i) = 0;
480 if (!cpu_online(i))
481 continue;
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)
487 continue;
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];
492
493 /* Determine the activity per processor per IRQ */
494 delta = value_now - LAST_CPU_IRQ(i,j);
495
496 /* Update last_cpu_irq[][] for the next time */
497 LAST_CPU_IRQ(i,j) = value_now;
498
499 /* Ignore IRQs whose rate is less than the clock */
500 if (delta < useful_load_threshold)
501 continue;
502 /* update the load for the processor or package total */
503 IRQ_DELTA(package_index,j) += delta;
504
505 /* Keep track of the higher numbered sibling as well */
506 if (i != package_index)
507 CPU_IRQ(i) += delta;
508 /*
509 * We have sibling A and sibling B in the package
510 *
511 * cpu_irq[A] = load for cpu A + load for cpu B
512 * cpu_irq[B] = load for cpu B
513 */
514 CPU_IRQ(package_index) += delta;
515 }
516 }
517 /* Find the least loaded processor package */
Andrew Morton394e3902006-03-23 03:01:05 -0800518 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (i != CPU_TO_PACKAGEINDEX(i))
520 continue;
521 if (min_cpu_irq > CPU_IRQ(i)) {
522 min_cpu_irq = CPU_IRQ(i);
523 min_loaded = i;
524 }
525 }
526 max_cpu_irq = ULONG_MAX;
527
528tryanothercpu:
529 /* Look for heaviest loaded processor.
530 * We may come back to get the next heaviest loaded processor.
531 * Skip processors with trivial loads.
532 */
533 tmp_cpu_irq = 0;
534 tmp_loaded = -1;
Andrew Morton394e3902006-03-23 03:01:05 -0800535 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (i != CPU_TO_PACKAGEINDEX(i))
537 continue;
538 if (max_cpu_irq <= CPU_IRQ(i))
539 continue;
540 if (tmp_cpu_irq < CPU_IRQ(i)) {
541 tmp_cpu_irq = CPU_IRQ(i);
542 tmp_loaded = i;
543 }
544 }
545
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.
550 */
551 if (!first_attempt && imbalance >= useful_load_threshold) {
552 rotate_irqs_among_cpus(useful_load_threshold);
553 return;
554 }
555 goto not_worth_the_effort;
556 }
557
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;
562
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);
568
569 /* if imbalance is less than approx 10% of max load, then
570 * observe diminishing returns action. - quit
571 */
572 if (imbalance < (max_cpu_irq >> 3)) {
573 Dprintk("Imbalance too trivial\n");
574 goto not_worth_the_effort;
575 }
576
577tryanotherirq:
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.
580 */
581 move_this_load = 0;
582 selected_irq = -1;
583 for (j = 0; j < NR_IRQS; j++) {
584 /* Is this an active IRQ? */
585 if (!irq_desc[j].action)
586 continue;
587 if (imbalance <= IRQ_DELTA(max_loaded,j))
588 continue;
589 /* Try to find the IRQ that is closest to the imbalance
590 * without going over.
591 */
592 if (move_this_load < IRQ_DELTA(max_loaded,j)) {
593 move_this_load = IRQ_DELTA(max_loaded,j);
594 selected_irq = j;
595 }
596 }
597 if (selected_irq == -1) {
598 goto tryanothercpu;
599 }
600
601 imbalance = move_this_load;
602
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.
607 *
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.
612 *
613 * We seek the least loaded sibling by making the comparison
614 * (A+B)/2 vs B
615 */
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] */
620 load = CPU_IRQ(j);
621 min_loaded = j;
622 }
623 }
624
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700625 cpus_and(allowed_mask,
626 cpu_online_map,
627 balance_irq_affinity[selected_irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 target_cpu_mask = cpumask_of_cpu(min_loaded);
629 cpus_and(tmp, target_cpu_mask, allowed_mask);
630
631 if (!cpus_empty(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 Dprintk("irq = %d moved to cpu = %d\n",
634 selected_irq, min_loaded);
635 /* mark for change destination */
Ashok Raj54d5d422005-09-06 15:16:15 -0700636 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* Since we made a change, come back sooner to
639 * check for more variation.
640 */
641 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
642 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
643 return;
644 }
645 goto tryanotherirq;
646
647not_worth_the_effort:
648 /*
649 * if we did not find an IRQ to move, then adjust the time interval
650 * upward
651 */
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");
655 return;
656}
657
658static int balanced_irq(void *unused)
659{
660 int i;
661 unsigned long prev_balance_time = jiffies;
662 long time_remaining = balanced_irq_interval;
663
664 daemonize("kirqd");
665
666 /* push everything to CPU 0 to give us a starting point. */
667 for (i = 0 ; i < NR_IRQS ; i++) {
Ingo Molnarcd916d32006-06-29 02:24:42 -0700668 irq_desc[i].pending_mask = cpumask_of_cpu(0);
Ashok Raj54d5d422005-09-06 15:16:15 -0700669 set_pending_irq(i, cpumask_of_cpu(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
672 for ( ; ; ) {
Nishanth Aravamudan52e6e632005-09-10 00:27:26 -0700673 time_remaining = schedule_timeout_interruptible(time_remaining);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700674 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (time_after(jiffies,
676 prev_balance_time+balanced_irq_interval)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700677 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 do_irq_balance();
679 prev_balance_time = jiffies;
680 time_remaining = balanced_irq_interval;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700681 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683 }
684 return 0;
685}
686
687static int __init balanced_irq_init(void)
688{
689 int i;
690 struct cpuinfo_x86 *c;
691 cpumask_t tmp;
692
693 cpus_shift_right(tmp, cpu_online_map, 2);
694 c = &boot_cpu_data;
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)
699 return 0;
700
701 /* disable irqbalance completely if there is only one processor online */
702 if (num_online_cpus() < 2) {
703 irqbalance_disabled = 1;
704 return 0;
705 }
706 /*
707 * Enable physical balance only if more than 1 physical processor
708 * is present
709 */
710 if (smp_num_siblings > 1 && !cpus_empty(tmp))
711 physical_balance = 1;
712
Andrew Morton394e3902006-03-23 03:01:05 -0800713 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 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");
718 goto failed;
719 }
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);
722 }
723
724 printk(KERN_INFO "Starting balanced_irq\n");
725 if (kernel_thread(balanced_irq, NULL, CLONE_KERNEL) >= 0)
726 return 0;
727 else
728 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
729failed:
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800730 for_each_possible_cpu(i) {
Jesper Juhl4ae66732005-06-25 14:58:48 -0700731 kfree(irq_cpu_data[i].irq_delta);
Andrew Morton394e3902006-03-23 03:01:05 -0800732 irq_cpu_data[i].irq_delta = NULL;
Jesper Juhl4ae66732005-06-25 14:58:48 -0700733 kfree(irq_cpu_data[i].last_irq);
Andrew Morton394e3902006-03-23 03:01:05 -0800734 irq_cpu_data[i].last_irq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736 return 0;
737}
738
739int __init irqbalance_disable(char *str)
740{
741 irqbalance_disabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800742 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745__setup("noirqbalance", irqbalance_disable);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747late_initcall(balanced_irq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748#endif /* CONFIG_IRQBALANCE */
Ashok Raj54d5d422005-09-06 15:16:15 -0700749#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751#ifndef CONFIG_SMP
752void fastcall send_IPI_self(int vector)
753{
754 unsigned int cfg;
755
756 /*
757 * Wait for idle.
758 */
759 apic_wait_icr_idle();
760 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
761 /*
762 * Send the IPI. The write to APIC_ICR fires this off.
763 */
764 apic_write_around(APIC_ICR, cfg);
765}
766#endif /* !CONFIG_SMP */
767
768
769/*
770 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
771 * specific CPU-side IRQs.
772 */
773
774#define MAX_PIRQS 8
775static int pirq_entries [MAX_PIRQS];
776static int pirqs_enabled;
777int skip_ioapic_setup;
778
779static int __init ioapic_setup(char *str)
780{
781 skip_ioapic_setup = 1;
782 return 1;
783}
784
785__setup("noapic", ioapic_setup);
786
787static int __init ioapic_pirq_setup(char *str)
788{
789 int i, max;
790 int ints[MAX_PIRQS+1];
791
792 get_options(str, ARRAY_SIZE(ints), ints);
793
794 for (i = 0; i < MAX_PIRQS; i++)
795 pirq_entries[i] = -1;
796
797 pirqs_enabled = 1;
798 apic_printk(APIC_VERBOSE, KERN_INFO
799 "PIRQ redirection, working around broken MP-BIOS.\n");
800 max = MAX_PIRQS;
801 if (ints[0] < MAX_PIRQS)
802 max = ints[0];
803
804 for (i = 0; i < max; i++) {
805 apic_printk(APIC_VERBOSE, KERN_DEBUG
806 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
807 /*
808 * PIRQs are mapped upside down, usually.
809 */
810 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
811 }
812 return 1;
813}
814
815__setup("pirq=", ioapic_pirq_setup);
816
817/*
818 * Find the IRQ entry number of a certain pin.
819 */
820static int find_irq_entry(int apic, int pin, int type)
821{
822 int i;
823
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)
829 return i;
830
831 return -1;
832}
833
834/*
835 * Find the pin to which IRQ[irq] (ISA) is connected
836 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800837static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 int i;
840
841 for (i = 0; i < mp_irq_entries; i++) {
842 int lbus = mp_irqs[i].mpc_srcbus;
843
844 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
845 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
Adrian Bunkd7fb0272006-12-07 02:14:19 +0100846 mp_bus_id_to_type[lbus] == MP_BUS_MCA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 ) &&
848 (mp_irqs[i].mpc_irqtype == type) &&
849 (mp_irqs[i].mpc_srcbusirq == irq))
850
851 return mp_irqs[i].mpc_dstirq;
852 }
853 return -1;
854}
855
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800856static int __init find_isa_irq_apic(int irq, int type)
857{
858 int i;
859
860 for (i = 0; i < mp_irq_entries; i++) {
861 int lbus = mp_irqs[i].mpc_srcbus;
862
863 if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
864 mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
Adrian Bunkd7fb0272006-12-07 02:14:19 +0100865 mp_bus_id_to_type[lbus] == MP_BUS_MCA
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800866 ) &&
867 (mp_irqs[i].mpc_irqtype == type) &&
868 (mp_irqs[i].mpc_srcbusirq == irq))
869 break;
870 }
871 if (i < mp_irq_entries) {
872 int apic;
873 for(apic = 0; apic < nr_ioapics; apic++) {
874 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
875 return apic;
876 }
877 }
878
879 return -1;
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * Find a specific PCI IRQ entry.
884 * Not an __init, possibly needed by modules
885 */
886static int pin_2_irq(int idx, int apic, int pin);
887
888int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
889{
890 int apic, i, best_guess = -1;
891
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);
896 return -1;
897 }
898 for (i = 0; i < mp_irq_entries; i++) {
899 int lbus = mp_irqs[i].mpc_srcbus;
900
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)
904 break;
905
906 if ((mp_bus_id_to_type[lbus] == MP_BUS_PCI) &&
907 !mp_irqs[i].mpc_irqtype &&
908 (bus == lbus) &&
909 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
910 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
911
912 if (!(apic || IO_APIC_IRQ(irq)))
913 continue;
914
915 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
916 return irq;
917 /*
918 * Use the first all-but-pin matching entry as a
919 * best-guess fuzzy result for broken mptables.
920 */
921 if (best_guess < 0)
922 best_guess = irq;
923 }
924 }
925 return best_guess;
926}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700927EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929/*
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
933 */
Ashok Raj54d5d422005-09-06 15:16:15 -0700934#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935void __init setup_ioapic_dest(void)
936{
937 int pin, ioapic, irq, irq_entry;
938
939 if (skip_ioapic_setup == 1)
940 return;
941
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);
945 if (irq_entry == -1)
946 continue;
947 irq = pin_2_irq(irq_entry, ioapic, pin);
948 set_ioapic_affinity_irq(irq, TARGET_CPUS);
949 }
950
951 }
952}
Ashok Raj54d5d422005-09-06 15:16:15 -0700953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955/*
956 * EISA Edge/Level control register, ELCR
957 */
958static int EISA_ELCR(unsigned int irq)
959{
960 if (irq < 16) {
961 unsigned int port = 0x4d0 + (irq >> 3);
962 return (inb(port) >> (irq & 7)) & 1;
963 }
964 apic_printk(APIC_VERBOSE, KERN_INFO
965 "Broken MPtable reports ISA irq %d\n", irq);
966 return 0;
967}
968
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 */
973
974#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
975#define default_EISA_polarity(idx) (0)
976
977/* ISA interrupts are always polarity zero edge triggered,
978 * when listed as conforming in the MP table. */
979
980#define default_ISA_trigger(idx) (0)
981#define default_ISA_polarity(idx) (0)
982
983/* PCI interrupts are always polarity one level triggered,
984 * when listed as conforming in the MP table. */
985
986#define default_PCI_trigger(idx) (1)
987#define default_PCI_polarity(idx) (1)
988
989/* MCA interrupts are always polarity zero level triggered,
990 * when listed as conforming in the MP table. */
991
992#define default_MCA_trigger(idx) (1)
993#define default_MCA_polarity(idx) (0)
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995static int __init MPBIOS_polarity(int idx)
996{
997 int bus = mp_irqs[idx].mpc_srcbus;
998 int polarity;
999
1000 /*
1001 * Determine IRQ line polarity (high active or low active):
1002 */
1003 switch (mp_irqs[idx].mpc_irqflag & 3)
1004 {
1005 case 0: /* conforms, ie. bus-type dependent polarity */
1006 {
1007 switch (mp_bus_id_to_type[bus])
1008 {
1009 case MP_BUS_ISA: /* ISA pin */
1010 {
1011 polarity = default_ISA_polarity(idx);
1012 break;
1013 }
1014 case MP_BUS_EISA: /* EISA pin */
1015 {
1016 polarity = default_EISA_polarity(idx);
1017 break;
1018 }
1019 case MP_BUS_PCI: /* PCI pin */
1020 {
1021 polarity = default_PCI_polarity(idx);
1022 break;
1023 }
1024 case MP_BUS_MCA: /* MCA pin */
1025 {
1026 polarity = default_MCA_polarity(idx);
1027 break;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 default:
1030 {
1031 printk(KERN_WARNING "broken BIOS!!\n");
1032 polarity = 1;
1033 break;
1034 }
1035 }
1036 break;
1037 }
1038 case 1: /* high active */
1039 {
1040 polarity = 0;
1041 break;
1042 }
1043 case 2: /* reserved */
1044 {
1045 printk(KERN_WARNING "broken BIOS!!\n");
1046 polarity = 1;
1047 break;
1048 }
1049 case 3: /* low active */
1050 {
1051 polarity = 1;
1052 break;
1053 }
1054 default: /* invalid */
1055 {
1056 printk(KERN_WARNING "broken BIOS!!\n");
1057 polarity = 1;
1058 break;
1059 }
1060 }
1061 return polarity;
1062}
1063
1064static int MPBIOS_trigger(int idx)
1065{
1066 int bus = mp_irqs[idx].mpc_srcbus;
1067 int trigger;
1068
1069 /*
1070 * Determine IRQ trigger mode (edge or level sensitive):
1071 */
1072 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
1073 {
1074 case 0: /* conforms, ie. bus-type dependent */
1075 {
1076 switch (mp_bus_id_to_type[bus])
1077 {
1078 case MP_BUS_ISA: /* ISA pin */
1079 {
1080 trigger = default_ISA_trigger(idx);
1081 break;
1082 }
1083 case MP_BUS_EISA: /* EISA pin */
1084 {
1085 trigger = default_EISA_trigger(idx);
1086 break;
1087 }
1088 case MP_BUS_PCI: /* PCI pin */
1089 {
1090 trigger = default_PCI_trigger(idx);
1091 break;
1092 }
1093 case MP_BUS_MCA: /* MCA pin */
1094 {
1095 trigger = default_MCA_trigger(idx);
1096 break;
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 default:
1099 {
1100 printk(KERN_WARNING "broken BIOS!!\n");
1101 trigger = 1;
1102 break;
1103 }
1104 }
1105 break;
1106 }
1107 case 1: /* edge */
1108 {
1109 trigger = 0;
1110 break;
1111 }
1112 case 2: /* reserved */
1113 {
1114 printk(KERN_WARNING "broken BIOS!!\n");
1115 trigger = 1;
1116 break;
1117 }
1118 case 3: /* level */
1119 {
1120 trigger = 1;
1121 break;
1122 }
1123 default: /* invalid */
1124 {
1125 printk(KERN_WARNING "broken BIOS!!\n");
1126 trigger = 0;
1127 break;
1128 }
1129 }
1130 return trigger;
1131}
1132
1133static inline int irq_polarity(int idx)
1134{
1135 return MPBIOS_polarity(idx);
1136}
1137
1138static inline int irq_trigger(int idx)
1139{
1140 return MPBIOS_trigger(idx);
1141}
1142
1143static int pin_2_irq(int idx, int apic, int pin)
1144{
1145 int irq, i;
1146 int bus = mp_irqs[idx].mpc_srcbus;
1147
1148 /*
1149 * Debugging check, we are in big trouble if this message pops up!
1150 */
1151 if (mp_irqs[idx].mpc_dstirq != pin)
1152 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1153
1154 switch (mp_bus_id_to_type[bus])
1155 {
1156 case MP_BUS_ISA: /* ISA pin */
1157 case MP_BUS_EISA:
1158 case MP_BUS_MCA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 {
1160 irq = mp_irqs[idx].mpc_srcbusirq;
1161 break;
1162 }
1163 case MP_BUS_PCI: /* PCI pin */
1164 {
1165 /*
1166 * PCI IRQs are mapped in order
1167 */
1168 i = irq = 0;
1169 while (i < apic)
1170 irq += nr_ioapic_registers[i++];
1171 irq += pin;
1172
1173 /*
1174 * For MPS mode, so far only needed by ES7000 platform
1175 */
1176 if (ioapic_renumber_irq)
1177 irq = ioapic_renumber_irq(apic, irq);
1178
1179 break;
1180 }
1181 default:
1182 {
1183 printk(KERN_ERR "unknown bus type %d.\n",bus);
1184 irq = 0;
1185 break;
1186 }
1187 }
1188
1189 /*
1190 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1191 */
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);
1197 } else {
1198 irq = pirq_entries[pin-16];
1199 apic_printk(APIC_VERBOSE, KERN_DEBUG
1200 "using PIRQ%d -> IRQ %d\n",
1201 pin-16, irq);
1202 }
1203 }
1204 }
1205 return irq;
1206}
1207
1208static inline int IO_APIC_irq_trigger(int irq)
1209{
1210 int apic, idx, pin;
1211
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);
1217 }
1218 }
1219 /*
1220 * nonexistent IRQs are edge default
1221 */
1222 return 0;
1223}
1224
1225/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Adrian Bunk7e95b592006-12-07 02:14:11 +01001226static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001228static int __assign_irq_vector(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 static int current_vector = FIRST_DEVICE_VECTOR, offset = 0;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001231 int vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001233 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +02001234
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001235 if (irq_vector[irq] > 0)
1236 return irq_vector[irq];
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 current_vector += 8;
1239 if (current_vector == SYSCALL_VECTOR)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001240 current_vector += 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 if (current_vector >= FIRST_SYSTEM_VECTOR) {
1243 offset++;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001244 if (!(offset % 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return -ENOSPC;
1246 current_vector = FIRST_DEVICE_VECTOR + offset;
1247 }
1248
Jan Beulich0a1ad602006-06-26 13:56:43 +02001249 vector = current_vector;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001250 irq_vector[irq] = vector;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001251
1252 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001255static int assign_irq_vector(int irq)
1256{
1257 unsigned long flags;
1258 int vector;
1259
1260 spin_lock_irqsave(&vector_lock, flags);
1261 vector = __assign_irq_vector(irq);
1262 spin_unlock_irqrestore(&vector_lock, flags);
1263
1264 return vector;
1265}
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001266static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268#define IOAPIC_AUTO -1
1269#define IOAPIC_EDGE 0
1270#define IOAPIC_LEVEL 1
1271
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001272static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001274 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1275 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001276 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1277 handle_fasteoi_irq, "fasteoi");
Eric W. Biederman45c99532006-11-14 10:52:12 -07001278 else {
1279 irq_desc[irq].status |= IRQ_DELAYED_DISABLE;
Ingo Molnara460e742006-10-17 00:10:03 -07001280 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1281 handle_edge_irq, "edge");
Eric W. Biederman45c99532006-11-14 10:52:12 -07001282 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001283 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
1286static void __init setup_IO_APIC_irqs(void)
1287{
1288 struct IO_APIC_route_entry entry;
1289 int apic, pin, idx, irq, first_notcon = 1, vector;
1290 unsigned long flags;
1291
1292 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1293
1294 for (apic = 0; apic < nr_ioapics; apic++) {
1295 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1296
1297 /*
1298 * add it to the IO-APIC irq-routing table:
1299 */
1300 memset(&entry,0,sizeof(entry));
1301
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);
1307
1308 idx = find_irq_entry(apic,pin,mp_INT);
1309 if (idx == -1) {
1310 if (first_notcon) {
1311 apic_printk(APIC_VERBOSE, KERN_DEBUG
1312 " IO-APIC (apicid-pin) %d-%d",
1313 mp_ioapics[apic].mpc_apicid,
1314 pin);
1315 first_notcon = 0;
1316 } else
1317 apic_printk(APIC_VERBOSE, ", %d-%d",
1318 mp_ioapics[apic].mpc_apicid, pin);
1319 continue;
1320 }
1321
1322 entry.trigger = irq_trigger(idx);
1323 entry.polarity = irq_polarity(idx);
1324
1325 if (irq_trigger(idx)) {
1326 entry.trigger = 1;
1327 entry.mask = 1;
1328 }
1329
1330 irq = pin_2_irq(idx, apic, pin);
1331 /*
1332 * skip adding the timer int on secondary nodes, which causes
1333 * a small but painful rift in the time-space continuum
1334 */
1335 if (multi_timer_check(apic, irq))
1336 continue;
1337 else
1338 add_pin_to_irq(irq, apic, pin);
1339
1340 if (!apic && !IO_APIC_IRQ(irq))
1341 continue;
1342
1343 if (IO_APIC_IRQ(irq)) {
1344 vector = assign_irq_vector(irq);
1345 entry.vector = vector;
1346 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
1347
1348 if (!apic && (irq < 16))
1349 disable_8259A_irq(irq);
1350 }
1351 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +01001352 __ioapic_write_entry(apic, pin, entry);
Ashok Raj54d5d422005-09-06 15:16:15 -07001353 set_native_irq_info(irq, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 spin_unlock_irqrestore(&ioapic_lock, flags);
1355 }
1356 }
1357
1358 if (!first_notcon)
1359 apic_printk(APIC_VERBOSE, " not connected.\n");
1360}
1361
1362/*
1363 * Set up the 8259A-master output pin:
1364 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001365static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 memset(&entry,0,sizeof(entry));
1370
1371 disable_8259A_irq(0);
1372
1373 /* mask LVT0 */
1374 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1375
1376 /*
1377 * We use logical delivery to get the timer IRQ
1378 * to the first CPU.
1379 */
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;
1384 entry.polarity = 0;
1385 entry.trigger = 0;
1386 entry.vector = vector;
1387
1388 /*
1389 * The timer IRQ doesn't have to know that behind the
1390 * scene we have a 8259A-master in AEOI mode ...
1391 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001392 irq_desc[0].chip = &ioapic_chip;
1393 set_irq_handler(0, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 /*
1396 * Add it to the IO-APIC irq-routing table:
1397 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001398 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 enable_8259A_irq(0);
1401}
1402
1403static inline void UNEXPECTED_IO_APIC(void)
1404{
1405}
1406
1407void __init print_IO_APIC(void)
1408{
1409 int apic, i;
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;
1415
1416 if (apic_verbosity == APIC_QUIET)
1417 return;
1418
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]);
1423
1424 /*
1425 * We are a bit conservative about what we expect. We have to
1426 * know about every hardware change ASAP.
1427 */
1428 printk(KERN_INFO "testing the IO APIC.......................\n");
1429
1430 for (apic = 0; apic < nr_ioapics; apic++) {
1431
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);
1440
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();
1450
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)
1460 )
1461 UNEXPECTED_IO_APIC();
1462
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) */
1470 )
1471 UNEXPECTED_IO_APIC();
1472 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
1473 UNEXPECTED_IO_APIC();
1474
1475 /*
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.
1479 */
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();
1485 }
1486
1487 /*
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].
1491 */
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();
1498 }
1499
1500 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1501
1502 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1503 " Stat Dest Deli Vect: \n");
1504
1505 for (i = 0; i <= reg_01.bits.entries; i++) {
1506 struct IO_APIC_route_entry entry;
1507
Andi Kleencf4c6a22006-09-26 10:52:30 +02001508 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 printk(KERN_DEBUG " %02x %03X %02X ",
1511 i,
1512 entry.dest.logical.logical_dest,
1513 entry.dest.physical.physical_dest
1514 );
1515
1516 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1517 entry.mask,
1518 entry.trigger,
1519 entry.irr,
1520 entry.polarity,
1521 entry.delivery_status,
1522 entry.dest_mode,
1523 entry.delivery_mode,
1524 entry.vector
1525 );
1526 }
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 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;
1531 if (entry->pin < 0)
1532 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001533 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 for (;;) {
1535 printk("-> %d:%d", entry->apic, entry->pin);
1536 if (!entry->next)
1537 break;
1538 entry = irq_2_pin + entry->next;
1539 }
1540 printk("\n");
1541 }
1542
1543 printk(KERN_INFO ".................................... done.\n");
1544
1545 return;
1546}
1547
1548#if 0
1549
1550static void print_APIC_bitfield (int base)
1551{
1552 unsigned int v;
1553 int i, j;
1554
1555 if (apic_verbosity == APIC_QUIET)
1556 return;
1557
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++) {
1562 if (v & (1<<j))
1563 printk("1");
1564 else
1565 printk("0");
1566 }
1567 printk("\n");
1568 }
1569}
1570
1571void /*__init*/ print_local_APIC(void * dummy)
1572{
1573 unsigned int v, ver, maxlvt;
1574
1575 if (apic_verbosity == APIC_QUIET)
1576 return;
1577
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();
1586
1587 v = apic_read(APIC_TASKPRI);
1588 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1589
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);
1596 }
1597
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);
1608
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);
1615
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);
1621 }
1622
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);
1627
1628 v = apic_read(APIC_LVTT);
1629 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1630
1631 if (maxlvt > 3) { /* PC is LVT#4. */
1632 v = apic_read(APIC_LVTPC);
1633 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1634 }
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);
1639
1640 if (maxlvt > 2) { /* ERR is LVT#3. */
1641 v = apic_read(APIC_LVTERR);
1642 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1643 }
1644
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);
1651 printk("\n");
1652}
1653
1654void print_all_local_APICs (void)
1655{
1656 on_each_cpu(print_local_APIC, NULL, 1, 1);
1657}
1658
1659void /*__init*/ print_PIC(void)
1660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 unsigned int v;
1662 unsigned long flags;
1663
1664 if (apic_verbosity == APIC_QUIET)
1665 return;
1666
1667 printk(KERN_DEBUG "\nprinting PIC contents\n");
1668
1669 spin_lock_irqsave(&i8259A_lock, flags);
1670
1671 v = inb(0xa1) << 8 | inb(0x21);
1672 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1673
1674 v = inb(0xa0) << 8 | inb(0x20);
1675 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1676
1677 outb(0x0b,0xa0);
1678 outb(0x0b,0x20);
1679 v = inb(0xa0) << 8 | inb(0x20);
1680 outb(0x0a,0xa0);
1681 outb(0x0a,0x20);
1682
1683 spin_unlock_irqrestore(&i8259A_lock, flags);
1684
1685 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1686
1687 v = inb(0x4d1) << 8 | inb(0x4d0);
1688 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1689}
1690
1691#endif /* 0 */
1692
1693static void __init enable_IO_APIC(void)
1694{
1695 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001696 int i8259_apic, i8259_pin;
1697 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 unsigned long flags;
1699
1700 for (i = 0; i < PIN_MAP_SIZE; i++) {
1701 irq_2_pin[i].pin = -1;
1702 irq_2_pin[i].next = 0;
1703 }
1704 if (!pirqs_enabled)
1705 for (i = 0; i < MAX_PIRQS; i++)
1706 pirq_entries[i] = -1;
1707
1708 /*
1709 * The number of IO-APIC IRQ registers (== #pins):
1710 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001711 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001713 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001715 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1716 }
1717 for(apic = 0; apic < nr_ioapics; apic++) {
1718 int pin;
1719 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001720 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001721 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001722 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001723
1724
1725 /* If the interrupt line is enabled and in ExtInt mode
1726 * I have found the pin where the i8259 is connected.
1727 */
1728 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1729 ioapic_i8259.apic = apic;
1730 ioapic_i8259.pin = pin;
1731 goto found_i8259;
1732 }
1733 }
1734 }
1735 found_i8259:
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.
1740 */
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;
1748 }
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))
1752 {
1753 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
1756 /*
1757 * Do not trust the IO-APIC being empty at bootup
1758 */
1759 clear_IO_APIC();
1760}
1761
1762/*
1763 * Not an __init, needed by the reboot code
1764 */
1765void disable_IO_APIC(void)
1766{
1767 /*
1768 * Clear the IO-APIC before rebooting:
1769 */
1770 clear_IO_APIC();
1771
Eric W. Biederman650927e2005-06-25 14:57:44 -07001772 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001773 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001774 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001775 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001776 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001777 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001778 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001779
1780 memset(&entry, 0, sizeof(entry));
1781 entry.mask = 0; /* Enabled */
1782 entry.trigger = 0; /* Edge */
1783 entry.irr = 0;
1784 entry.polarity = 0; /* High */
1785 entry.delivery_status = 0;
1786 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001787 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001788 entry.vector = 0;
Vivek Goyal76865c32006-01-06 00:12:19 -08001789 entry.dest.physical.physical_dest =
1790 GET_APIC_ID(apic_read(APIC_ID));
Eric W. Biederman650927e2005-06-25 14:57:44 -07001791
1792 /*
1793 * Add it to the IO-APIC irq-routing table:
1794 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001795 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001796 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001797 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800/*
1801 * function to set the IO-APIC physical IDs based on the
1802 * values stored in the MPC table.
1803 *
1804 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1805 */
1806
1807#ifndef CONFIG_X86_NUMAQ
1808static void __init setup_ioapic_ids_from_mpc(void)
1809{
1810 union IO_APIC_reg_00 reg_00;
1811 physid_mask_t phys_id_present_map;
1812 int apic;
1813 int i;
1814 unsigned char old_id;
1815 unsigned long flags;
1816
1817 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001818 * Don't check I/O APIC IDs for xAPIC systems. They have
1819 * no meaning without the serial APIC bus.
1820 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001821 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1822 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001823 return;
1824 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 * This is broken; anything with a real cpu count has to
1826 * circumvent this idiocy regardless.
1827 */
1828 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1829
1830 /*
1831 * Set the IOAPIC ID to the value stored in the MPC table.
1832 */
1833 for (apic = 0; apic < nr_ioapics; apic++) {
1834
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);
1839
1840 old_id = mp_ioapics[apic].mpc_apicid;
1841
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",
1846 reg_00.bits.ID);
1847 mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
1848 }
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /*
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.
1854 */
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))
1861 break;
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",
1865 i);
1866 physid_set(i, phys_id_present_map);
1867 mp_ioapics[apic].mpc_apicid = i;
1868 } else {
1869 physid_mask_t tmp;
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);
1875 }
1876
1877
1878 /*
1879 * We need to adjust the IRQ routing table
1880 * if the ID changed.
1881 */
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;
1887
1888 /*
1889 * Read the right value from the MPC table and
1890 * write it into the ID register.
1891 */
1892 apic_printk(APIC_VERBOSE, KERN_INFO
1893 "...changing IO-APIC physical APIC ID to %d ...",
1894 mp_ioapics[apic].mpc_apicid);
1895
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);
1900
1901 /*
1902 * Sanity check
1903 */
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");
1909 else
1910 apic_printk(APIC_VERBOSE, " ok.\n");
1911 }
1912}
1913#else
1914static void __init setup_ioapic_ids_from_mpc(void) { }
1915#endif
1916
Zachary Amsden8542b202006-12-07 02:14:09 +01001917static int no_timer_check __initdata;
1918
1919static int __init notimercheck(char *s)
1920{
1921 no_timer_check = 1;
1922 return 1;
1923}
1924__setup("no_timer_check", notimercheck);
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926/*
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:
1929 *
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
1933 */
Zachary Amsden8542b202006-12-07 02:14:09 +01001934int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
1936 unsigned long t1 = jiffies;
1937
Zachary Amsden8542b202006-12-07 02:14:09 +01001938 if (no_timer_check)
1939 return 1;
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 local_irq_enable();
1942 /* Let ten ticks pass... */
1943 mdelay((10 * 1000) / HZ);
1944
1945 /*
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.
1951 */
1952 if (jiffies - t1 > 4)
1953 return 1;
1954
1955 return 0;
1956}
1957
1958/*
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.
1964 */
1965/*
1966 * Edge triggered needs to resend any interrupt
1967 * that was delayed but this is now handled in the device
1968 * independent code.
1969 */
1970
1971/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001972 * Startup quirk:
1973 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * 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.
1978 *
1979 * This is not complete - we should be able to fake
1980 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001981 *
1982 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001984static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 int was_pending = 0;
1987 unsigned long flags;
1988
1989 spin_lock_irqsave(&ioapic_lock, flags);
1990 if (irq < 16) {
1991 disable_8259A_irq(irq);
1992 if (i8259A_irq_pending(irq))
1993 was_pending = 1;
1994 }
1995 __unmask_IO_APIC_irq(irq);
1996 spin_unlock_irqrestore(&ioapic_lock, flags);
1997
1998 return was_pending;
1999}
2000
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002001static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002003 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 ack_APIC_irq();
2005}
2006
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002007static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 unsigned long v;
2010 int i;
2011
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002012 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/*
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.
2024 *
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
2031 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06002032 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2035
2036 ack_APIC_irq();
2037
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);
2044 }
2045}
2046
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002047static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06002049 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002050
2051 return 1;
2052}
2053
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002054static struct irq_chip ioapic_chip __read_mostly = {
2055 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002056 .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,
Ashok Raj54d5d422005-09-06 15:16:15 -07002061#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002062 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002063#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002064 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065};
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068static inline void init_IO_APIC_traps(void)
2069{
2070 int irq;
2071
2072 /*
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.
2079 *
2080 * Also, we've got to be careful not to trash gate
2081 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2082 */
2083 for (irq = 0; irq < NR_IRQS ; irq++) {
2084 int tmp = irq;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06002085 if (IO_APIC_IRQ(tmp) && !irq_vector[tmp]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /*
2087 * Hmm.. We don't have an entry for this,
2088 * so default to an old-fashioned 8259
2089 * interrupt if we can..
2090 */
2091 if (irq < 16)
2092 make_8259A_irq(irq);
2093 else
2094 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002095 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097 }
2098}
2099
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002100/*
2101 * The local APIC irq-chip implementation:
2102 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002104static void ack_apic(unsigned int irq)
2105{
2106 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002109static void mask_lapic_irq (unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 unsigned long v;
2112
2113 v = apic_read(APIC_LVT0);
2114 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2115}
2116
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002117static void unmask_lapic_irq (unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002119 unsigned long v;
2120
2121 v = apic_read(APIC_LVT0);
2122 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002125static struct irq_chip lapic_chip __read_mostly = {
2126 .name = "local-APIC-edge",
2127 .mask = mask_lapic_irq,
2128 .unmask = unmask_lapic_irq,
2129 .eoi = ack_apic,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130};
2131
2132static void setup_nmi (void)
2133{
2134 /*
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.
2138 *
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.
2142 */
2143 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2144
2145 on_each_cpu(enable_NMI_through_LVT0, NULL, 1, 1);
2146
2147 apic_printk(APIC_VERBOSE, " done.\n");
2148}
2149
2150/*
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
2156 */
2157static inline void unlock_ExtINT_logic(void)
2158{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002159 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 struct IO_APIC_route_entry entry0, entry1;
2161 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002163 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002164 if (pin == -1) {
2165 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002167 }
2168 apic = find_isa_irq_apic(8, mp_INT);
2169 if (apic == -1) {
2170 WARN_ON_ONCE(1);
2171 return;
2172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Andi Kleencf4c6a22006-09-26 10:52:30 +02002174 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002175 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 memset(&entry1, 0, sizeof(entry1));
2178
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;
2184 entry1.trigger = 0;
2185 entry1.vector = 0;
2186
Andi Kleencf4c6a22006-09-26 10:52:30 +02002187 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
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,
2192 RTC_FREQ_SELECT);
2193 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2194
2195 i = 100;
2196 while (i-- > 0) {
2197 mdelay(10);
2198 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2199 i -= 10;
2200 }
2201
2202 CMOS_WRITE(save_control, RTC_CONTROL);
2203 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002204 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Andi Kleencf4c6a22006-09-26 10:52:30 +02002206 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02002209int timer_uses_ioapic_pin_0;
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211/*
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.
2216 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002217static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002219 int apic1, pin1, apic2, pin2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 int vector;
2221
2222 /*
2223 * get/set the timer IRQ vector:
2224 */
2225 disable_8259A_irq(0);
2226 vector = assign_irq_vector(0);
2227 set_intr_gate(vector, interrupt[0]);
2228
2229 /*
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.
2235 */
2236 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2237 init_8259A(1);
2238 timer_ack = 1;
Andi Kleenf9262c12006-03-08 17:57:25 -08002239 if (timer_over_8254 > 0)
2240 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002242 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02002247 if (pin1 == 0)
2248 timer_uses_ioapic_pin_0 = 1;
2249
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002250 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2251 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 if (pin1 != -1) {
2254 /*
2255 * Ok, does IRQ0 through the IOAPIC work?
2256 */
2257 unmask_IO_APIC_irq(0);
2258 if (timer_irq_works()) {
2259 if (nmi_watchdog == NMI_IO_APIC) {
2260 disable_8259A_irq(0);
2261 setup_nmi();
2262 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002264 if (disable_timer_pin_1 > 0)
2265 clear_IO_APIC_pin(0, pin1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return;
2267 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002268 clear_IO_APIC_pin(apic1, pin1);
2269 printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to "
2270 "IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272
2273 printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
2274 if (pin2 != -1) {
2275 printk("\n..... (found pin %d) ...", pin2);
2276 /*
2277 * legacy devices should be connected to IO APIC #0
2278 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002279 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (timer_irq_works()) {
2281 printk("works.\n");
2282 if (pin1 != -1)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002283 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 else
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002285 add_pin_to_irq(0, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (nmi_watchdog == NMI_IO_APIC) {
2287 setup_nmi();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289 return;
2290 }
2291 /*
2292 * Cleanup, just in case ...
2293 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002294 clear_IO_APIC_pin(apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296 printk(" failed.\n");
2297
2298 if (nmi_watchdog == NMI_IO_APIC) {
2299 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
2300 nmi_watchdog = 0;
2301 }
2302
2303 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2304
2305 disable_8259A_irq(0);
Ingo Molnara460e742006-10-17 00:10:03 -07002306 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
2307 "fasteio");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2309 enable_8259A_irq(0);
2310
2311 if (timer_irq_works()) {
2312 printk(" works.\n");
2313 return;
2314 }
2315 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2316 printk(" failed.\n");
2317
2318 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2319
2320 timer_ack = 0;
2321 init_8259A(0);
2322 make_8259A_irq(0);
2323 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2324
2325 unlock_ExtINT_logic();
2326
2327 if (timer_irq_works()) {
2328 printk(" works.\n");
2329 return;
2330 }
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");
2334}
2335
2336/*
2337 *
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.
2342 */
2343#define PIC_IRQS (1 << PIC_CASCADE_IR)
2344
2345void __init setup_IO_APIC(void)
2346{
2347 enable_IO_APIC();
2348
2349 if (acpi_ioapic)
2350 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2351 else
2352 io_apic_irqs = ~PIC_IRQS;
2353
2354 printk("ENABLING IO-APIC IRQs\n");
2355
2356 /*
2357 * Set up IO-APIC IRQ routing.
2358 */
2359 if (!acpi_ioapic)
2360 setup_ioapic_ids_from_mpc();
2361 sync_Arb_IDs();
2362 setup_IO_APIC_irqs();
2363 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002364 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (!acpi_ioapic)
2366 print_IO_APIC();
2367}
2368
Andi Kleenf9262c12006-03-08 17:57:25 -08002369static int __init setup_disable_8254_timer(char *s)
2370{
2371 timer_over_8254 = -1;
2372 return 1;
2373}
2374static int __init setup_enable_8254_timer(char *s)
2375{
2376 timer_over_8254 = 2;
2377 return 1;
2378}
2379
2380__setup("disable_8254_timer", setup_disable_8254_timer);
2381__setup("enable_8254_timer", setup_enable_8254_timer);
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383/*
2384 * Called after all the initialization is done. If we didnt find any
2385 * APIC bugs then we can allow the modify fast path
2386 */
2387
2388static int __init io_apic_bug_finalize(void)
2389{
2390 if(sis_apic_bug == -1)
2391 sis_apic_bug = 0;
2392 return 0;
2393}
2394
2395late_initcall(io_apic_bug_finalize);
2396
2397struct sysfs_ioapic_data {
2398 struct sys_device dev;
2399 struct IO_APIC_route_entry entry[0];
2400};
2401static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2402
Pavel Machek438510f2005-04-16 15:25:24 -07002403static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
2405 struct IO_APIC_route_entry *entry;
2406 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 int i;
2408
2409 data = container_of(dev, struct sysfs_ioapic_data, dev);
2410 entry = data->entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02002411 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2412 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 return 0;
2415}
2416
2417static int ioapic_resume(struct sys_device *dev)
2418{
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;
2423 int i;
2424
2425 data = container_of(dev, struct sysfs_ioapic_data, dev);
2426 entry = data->entry;
2427
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);
2433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +02002435 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
2436 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 return 0;
2439}
2440
2441static struct sysdev_class ioapic_sysdev_class = {
2442 set_kset_name("ioapic"),
2443 .suspend = ioapic_suspend,
2444 .resume = ioapic_resume,
2445};
2446
2447static int __init ioapic_init_sysfs(void)
2448{
2449 struct sys_device * dev;
2450 int i, size, error = 0;
2451
2452 error = sysdev_class_register(&ioapic_sysdev_class);
2453 if (error)
2454 return error;
2455
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);
2462 continue;
2463 }
2464 memset(mp_ioapic_data[i], 0, size);
2465 dev = &mp_ioapic_data[i]->dev;
2466 dev->id = i;
2467 dev->cls = &ioapic_sysdev_class;
2468 error = sysdev_register(dev);
2469 if (error) {
2470 kfree(mp_ioapic_data[i]);
2471 mp_ioapic_data[i] = NULL;
2472 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2473 continue;
2474 }
2475 }
2476
2477 return 0;
2478}
2479
2480device_initcall(ioapic_init_sysfs);
2481
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002482/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002483 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002484 */
2485int create_irq(void)
2486{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002487 /* Allocate an unused irq */
2488 int irq, new, vector;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002489 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002490
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002491 irq = -ENOSPC;
2492 spin_lock_irqsave(&vector_lock, flags);
2493 for (new = (NR_IRQS - 1); new >= 0; new--) {
2494 if (platform_legacy_irq(new))
2495 continue;
2496 if (irq_vector[new] != 0)
2497 continue;
2498 vector = __assign_irq_vector(new);
2499 if (likely(vector > 0))
2500 irq = new;
2501 break;
2502 }
2503 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002504
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002505 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002506 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002507 dynamic_irq_init(irq);
2508 }
2509 return irq;
2510}
2511
2512void destroy_irq(unsigned int irq)
2513{
2514 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002515
2516 dynamic_irq_cleanup(irq);
2517
2518 spin_lock_irqsave(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002519 irq_vector[irq] = 0;
2520 spin_unlock_irqrestore(&vector_lock, flags);
2521}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002522
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002523/*
2524 * MSI mesage composition
2525 */
2526#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002527static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002528{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002529 int vector;
2530 unsigned dest;
2531
2532 vector = assign_irq_vector(irq);
2533 if (vector >= 0) {
2534 dest = cpu_mask_to_apicid(TARGET_CPUS);
2535
2536 msg->address_hi = MSI_ADDR_BASE_HI;
2537 msg->address_lo =
2538 MSI_ADDR_BASE_LO |
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);
2546
2547 msg->data =
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);
2554 }
2555 return vector;
2556}
2557
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002558#ifdef CONFIG_SMP
2559static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2560{
2561 struct msi_msg msg;
2562 unsigned int dest;
2563 cpumask_t tmp;
2564 int vector;
2565
2566 cpus_and(tmp, mask, cpu_online_map);
2567 if (cpus_empty(tmp))
2568 tmp = TARGET_CPUS;
2569
2570 vector = assign_irq_vector(irq);
2571 if (vector < 0)
2572 return;
2573
2574 dest = cpu_mask_to_apicid(mask);
2575
2576 read_msi_msg(irq, &msg);
2577
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);
2582
2583 write_msi_msg(irq, &msg);
2584 set_native_irq_info(irq, mask);
2585}
2586#endif /* CONFIG_SMP */
2587
2588/*
2589 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2590 * which implement the MSI or MSI-X Capability Structure.
2591 */
2592static struct irq_chip msi_chip = {
2593 .name = "PCI-MSI",
2594 .unmask = unmask_msi_irq,
2595 .mask = mask_msi_irq,
2596 .ack = ack_ioapic_irq,
2597#ifdef CONFIG_SMP
2598 .set_affinity = set_msi_irq_affinity,
2599#endif
2600 .retrigger = ioapic_retrigger_irq,
2601};
2602
2603int arch_setup_msi_irq(unsigned int irq, struct pci_dev *dev)
2604{
2605 struct msi_msg msg;
2606 int ret;
2607 ret = msi_compose_msg(dev, irq, &msg);
2608 if (ret < 0)
2609 return ret;
2610
2611 write_msi_msg(irq, &msg);
2612
Ingo Molnara460e742006-10-17 00:10:03 -07002613 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2614 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002615
2616 return 0;
2617}
2618
2619void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002620{
2621 return;
2622}
2623
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002624#endif /* CONFIG_PCI_MSI */
2625
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002626/*
2627 * Hypertransport interrupt support
2628 */
2629#ifdef CONFIG_HT_IRQ
2630
2631#ifdef CONFIG_SMP
2632
2633static void target_ht_irq(unsigned int irq, unsigned int dest)
2634{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002635 struct ht_irq_msg msg;
2636 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002637
Eric W. Biedermanec683072006-11-08 17:44:57 -08002638 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2639 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002640
Eric W. Biedermanec683072006-11-08 17:44:57 -08002641 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2642 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002643
Eric W. Biedermanec683072006-11-08 17:44:57 -08002644 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002645}
2646
2647static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2648{
2649 unsigned int dest;
2650 cpumask_t tmp;
2651
2652 cpus_and(tmp, mask, cpu_online_map);
2653 if (cpus_empty(tmp))
2654 tmp = TARGET_CPUS;
2655
2656 cpus_and(mask, tmp, CPU_MASK_ALL);
2657
2658 dest = cpu_mask_to_apicid(mask);
2659
2660 target_ht_irq(irq, dest);
2661 set_native_irq_info(irq, mask);
2662}
2663#endif
2664
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002665static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002666 .name = "PCI-HT",
2667 .mask = mask_ht_irq,
2668 .unmask = unmask_ht_irq,
2669 .ack = ack_ioapic_irq,
2670#ifdef CONFIG_SMP
2671 .set_affinity = set_ht_irq_affinity,
2672#endif
2673 .retrigger = ioapic_retrigger_irq,
2674};
2675
2676int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2677{
2678 int vector;
2679
2680 vector = assign_irq_vector(irq);
2681 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002682 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002683 unsigned dest;
2684 cpumask_t tmp;
2685
2686 cpus_clear(tmp);
2687 cpu_set(vector >> 8, tmp);
2688 dest = cpu_mask_to_apicid(tmp);
2689
Eric W. Biedermanec683072006-11-08 17:44:57 -08002690 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002691
Eric W. Biedermanec683072006-11-08 17:44:57 -08002692 msg.address_lo =
2693 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002694 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;
2704
Eric W. Biedermanec683072006-11-08 17:44:57 -08002705 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002706
Ingo Molnara460e742006-10-17 00:10:03 -07002707 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2708 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002709 }
2710 return vector;
2711}
2712#endif /* CONFIG_HT_IRQ */
2713
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714/* --------------------------------------------------------------------------
2715 ACPI-based IOAPIC Configuration
2716 -------------------------------------------------------------------------- */
2717
Len Brown888ba6c2005-08-24 12:07:20 -04002718#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
2720int __init io_apic_get_unique_id (int ioapic, int apic_id)
2721{
2722 union IO_APIC_reg_00 reg_00;
2723 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2724 physid_mask_t tmp;
2725 unsigned long flags;
2726 int i = 0;
2727
2728 /*
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.
2732 *
2733 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2734 * advantage of new APIC bus architecture.
2735 */
2736
2737 if (physids_empty(apic_id_map))
2738 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2739
2740 spin_lock_irqsave(&ioapic_lock, flags);
2741 reg_00.raw = io_apic_read(ioapic, 0);
2742 spin_unlock_irqrestore(&ioapic_lock, flags);
2743
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;
2748 }
2749
2750 /*
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.
2753 */
2754 if (check_apicid_used(apic_id_map, apic_id)) {
2755
2756 for (i = 0; i < get_physical_broadcast(); i++) {
2757 if (!check_apicid_used(apic_id_map, i))
2758 break;
2759 }
2760
2761 if (i == get_physical_broadcast())
2762 panic("Max apic_id exceeded!\n");
2763
2764 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2765 "trying %d\n", ioapic, apic_id, i);
2766
2767 apic_id = i;
2768 }
2769
2770 tmp = apicid_to_cpu_present(apic_id);
2771 physids_or(apic_id_map, apic_id_map, tmp);
2772
2773 if (reg_00.bits.ID != apic_id) {
2774 reg_00.bits.ID = apic_id;
2775
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);
2780
2781 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002782 if (reg_00.bits.ID != apic_id) {
2783 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2784 return -1;
2785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 }
2787
2788 apic_printk(APIC_VERBOSE, KERN_INFO
2789 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2790
2791 return apic_id;
2792}
2793
2794
2795int __init io_apic_get_version (int ioapic)
2796{
2797 union IO_APIC_reg_01 reg_01;
2798 unsigned long flags;
2799
2800 spin_lock_irqsave(&ioapic_lock, flags);
2801 reg_01.raw = io_apic_read(ioapic, 1);
2802 spin_unlock_irqrestore(&ioapic_lock, flags);
2803
2804 return reg_01.bits.version;
2805}
2806
2807
2808int __init io_apic_get_redir_entries (int ioapic)
2809{
2810 union IO_APIC_reg_01 reg_01;
2811 unsigned long flags;
2812
2813 spin_lock_irqsave(&ioapic_lock, flags);
2814 reg_01.raw = io_apic_read(ioapic, 1);
2815 spin_unlock_irqrestore(&ioapic_lock, flags);
2816
2817 return reg_01.bits.entries;
2818}
2819
2820
2821int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low)
2822{
2823 struct IO_APIC_route_entry entry;
2824 unsigned long flags;
2825
2826 if (!IO_APIC_IRQ(irq)) {
2827 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2828 ioapic);
2829 return -EINVAL;
2830 }
2831
2832 /*
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.
2836 */
2837
2838 memset(&entry,0,sizeof(entry));
2839
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;
2845 entry.mask = 1;
2846
2847 /*
2848 * IRQs < 16 are already in the irq_2_pin[] map
2849 */
2850 if (irq >= 16)
2851 add_pin_to_irq(irq, ioapic, pin);
2852
2853 entry.vector = assign_irq_vector(irq);
2854
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);
2859
2860 ioapic_register_intr(irq, entry.vector, edge_level);
2861
2862 if (!ioapic && (irq < 16))
2863 disable_8259A_irq(irq);
2864
2865 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +01002866 __ioapic_write_entry(ioapic, pin, entry);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002867 set_native_irq_info(irq, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 spin_unlock_irqrestore(&ioapic_lock, flags);
2869
2870 return 0;
2871}
2872
Len Brown888ba6c2005-08-24 12:07:20 -04002873#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002874
2875static int __init parse_disable_timer_pin_1(char *arg)
2876{
2877 disable_timer_pin_1 = 1;
2878 return 0;
2879}
2880early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2881
2882static int __init parse_enable_timer_pin_1(char *arg)
2883{
2884 disable_timer_pin_1 = -1;
2885 return 0;
2886}
2887early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2888
2889static int __init parse_noapic(char *arg)
2890{
2891 /* disable IO-APIC */
2892 disable_ioapic_setup();
2893 return 0;
2894}
2895early_param("noapic", parse_noapic);