blob: fedb3b113acee3ac9fb80f12ee235c83402e6f5a [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/mc146818rtc.h>
29#include <linux/compiler.h>
30#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070031#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/sysdev.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070033#include <linux/pci.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Julia Lawall1d16b532008-01-30 13:32:19 +010038#include <linux/jiffies.h> /* time_after() */
Ashok Raj54d5d422005-09-06 15:16:15 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/smp.h>
42#include <asm/desc.h>
43#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070044#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020045#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070046#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070047#include <asm/hypertransport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020050#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052int (*ioapic_renumber_irq)(int ioapic, int irq);
53atomic_t irq_mis_count;
54
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -080055/* Where if anywhere is the i8259 connect in external int mode */
56static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static DEFINE_SPINLOCK(ioapic_lock);
Jan Beulich0a1ad602006-06-26 13:56:43 +020059static DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Maciej W. Rozycki35542c52008-05-21 22:10:22 +010061int timer_through_8259 __initdata;
Andi Kleenf9262c12006-03-08 17:57:25 -080062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Is the SiS APIC rmw bug present ?
65 * -1 = don't know, 0 = no, 1 = yes
66 */
67int sis_apic_bug = -1;
68
69/*
70 * # of IRQ routing registers
71 */
72int nr_ioapic_registers[MAX_IO_APICS];
73
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040074/* I/O APIC entries */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +040075struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040076int nr_ioapics;
77
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040078/* MP IRQ source entries */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +040079struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040080
81/* # of MP IRQ source entries */
82int mp_irq_entries;
83
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040084#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
85int mp_bus_id_to_type[MAX_MP_BUSSES];
86#endif
87
88DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
89
Rusty Russell1a3f2392006-09-26 10:52:32 +020090static int disable_timer_pin_1 __initdata;
Chuck Ebbert66759a02005-09-12 18:49:25 +020091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * Rough estimation of how many shared IRQs there are, can
94 * be changed anytime.
95 */
96#define MAX_PLUS_SHARED_IRQS NR_IRQS
97#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
98
99/*
100 * This is performance-critical, we want to do it O(1)
101 *
102 * the indexing order of this array favors 1:1 mappings
103 * between pins and IRQs.
104 */
105
106static struct irq_pin_list {
107 int apic, pin, next;
108} irq_2_pin[PIN_MAP_SIZE];
109
Linus Torvalds130fe052006-11-01 09:11:00 -0800110struct io_apic {
111 unsigned int index;
112 unsigned int unused[3];
113 unsigned int data;
114};
115
116static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
117{
118 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400119 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800120}
121
122static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
123{
124 struct io_apic __iomem *io_apic = io_apic_base(apic);
125 writel(reg, &io_apic->index);
126 return readl(&io_apic->data);
127}
128
129static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
130{
131 struct io_apic __iomem *io_apic = io_apic_base(apic);
132 writel(reg, &io_apic->index);
133 writel(value, &io_apic->data);
134}
135
136/*
137 * Re-write a value: to be used for read-modify-write
138 * cycles where the read already set up the index register.
139 *
140 * Older SiS APIC requires we rewrite the index register
141 */
142static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
143{
Al Virocb468982007-02-09 16:39:25 +0000144 volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
Linus Torvalds130fe052006-11-01 09:11:00 -0800145 if (sis_apic_bug)
146 writel(reg, &io_apic->index);
147 writel(value, &io_apic->data);
148}
149
Andi Kleencf4c6a22006-09-26 10:52:30 +0200150union entry_union {
151 struct { u32 w1, w2; };
152 struct IO_APIC_route_entry entry;
153};
154
155static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
156{
157 union entry_union eu;
158 unsigned long flags;
159 spin_lock_irqsave(&ioapic_lock, flags);
160 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
161 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
162 spin_unlock_irqrestore(&ioapic_lock, flags);
163 return eu.entry;
164}
165
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800166/*
167 * When we write a new IO APIC routing entry, we need to write the high
168 * word first! If the mask bit in the low word is clear, we will enable
169 * the interrupt, and we need to make sure the entry is fully populated
170 * before that happens.
171 */
Andi Kleend15512f2006-12-07 02:14:07 +0100172static void
173__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
174{
175 union entry_union eu;
176 eu.entry = e;
177 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
178 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
179}
180
Andi Kleencf4c6a22006-09-26 10:52:30 +0200181static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
182{
183 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200184 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100185 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800186 spin_unlock_irqrestore(&ioapic_lock, flags);
187}
188
189/*
190 * When we mask an IO APIC routing entry, we need to write the low
191 * word first, in order to set the mask bit before we change the
192 * high bits!
193 */
194static void ioapic_mask_entry(int apic, int pin)
195{
196 unsigned long flags;
197 union entry_union eu = { .entry.mask = 1 };
198
199 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200200 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
201 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
202 spin_unlock_irqrestore(&ioapic_lock, flags);
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
206 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
207 * shared ISA-space IRQs, so we have to support them. We are super
208 * fast in the common case, and fast for shared ISA-space IRQs.
209 */
210static void add_pin_to_irq(unsigned int irq, int apic, int pin)
211{
212 static int first_free_entry = NR_IRQS;
213 struct irq_pin_list *entry = irq_2_pin + irq;
214
215 while (entry->next)
216 entry = irq_2_pin + entry->next;
217
218 if (entry->pin != -1) {
219 entry->next = first_free_entry;
220 entry = irq_2_pin + entry->next;
221 if (++first_free_entry >= PIN_MAP_SIZE)
222 panic("io_apic.c: whoops");
223 }
224 entry->apic = apic;
225 entry->pin = pin;
226}
227
228/*
229 * Reroute an IRQ to a different pin.
230 */
231static void __init replace_pin_at_irq(unsigned int irq,
232 int oldapic, int oldpin,
233 int newapic, int newpin)
234{
235 struct irq_pin_list *entry = irq_2_pin + irq;
236
237 while (1) {
238 if (entry->apic == oldapic && entry->pin == oldpin) {
239 entry->apic = newapic;
240 entry->pin = newpin;
241 }
242 if (!entry->next)
243 break;
244 entry = irq_2_pin + entry->next;
245 }
246}
247
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200248static void __modify_IO_APIC_irq(unsigned int irq, unsigned long enable, unsigned long disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct irq_pin_list *entry = irq_2_pin + irq;
251 unsigned int pin, reg;
252
253 for (;;) {
254 pin = entry->pin;
255 if (pin == -1)
256 break;
257 reg = io_apic_read(entry->apic, 0x10 + pin*2);
258 reg &= ~disable;
259 reg |= enable;
260 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
261 if (!entry->next)
262 break;
263 entry = irq_2_pin + entry->next;
264 }
265}
266
267/* mask = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200268static void __mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400270 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/* mask = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200274static void __unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400276 __modify_IO_APIC_irq(irq, 0, IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/* mask = 1, trigger = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200280static void __mask_and_edge_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400282 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED,
283 IO_APIC_REDIR_LEVEL_TRIGGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/* mask = 0, trigger = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200287static void __unmask_and_level_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400289 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_LEVEL_TRIGGER,
290 IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200293static void mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 unsigned long flags;
296
297 spin_lock_irqsave(&ioapic_lock, flags);
298 __mask_IO_APIC_irq(irq);
299 spin_unlock_irqrestore(&ioapic_lock, flags);
300}
301
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200302static void unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 unsigned long flags;
305
306 spin_lock_irqsave(&ioapic_lock, flags);
307 __unmask_IO_APIC_irq(irq);
308 spin_unlock_irqrestore(&ioapic_lock, flags);
309}
310
311static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
312{
313 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200316 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (entry.delivery_mode == dest_SMI)
318 return;
319
320 /*
321 * Disable it in the IO-APIC irq-routing table:
322 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800323 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200326static void clear_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 int apic, pin;
329
330 for (apic = 0; apic < nr_ioapics; apic++)
331 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
332 clear_IO_APIC_pin(apic, pin);
333}
334
Ashok Raj54d5d422005-09-06 15:16:15 -0700335#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
337{
338 unsigned long flags;
339 int pin;
340 struct irq_pin_list *entry = irq_2_pin + irq;
341 unsigned int apicid_value;
Ashok Raj54d5d422005-09-06 15:16:15 -0700342 cpumask_t tmp;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200343
Ashok Raj54d5d422005-09-06 15:16:15 -0700344 cpus_and(tmp, cpumask, cpu_online_map);
345 if (cpus_empty(tmp))
346 tmp = TARGET_CPUS;
347
348 cpus_and(cpumask, tmp, CPU_MASK_ALL);
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 apicid_value = cpu_mask_to_apicid(cpumask);
351 /* Prepare to do the io_apic_write */
352 apicid_value = apicid_value << 24;
353 spin_lock_irqsave(&ioapic_lock, flags);
354 for (;;) {
355 pin = entry->pin;
356 if (pin == -1)
357 break;
358 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
359 if (!entry->next)
360 break;
361 entry = irq_2_pin + entry->next;
362 }
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -0700363 irq_desc[irq].affinity = cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 spin_unlock_irqrestore(&ioapic_lock, flags);
365}
366
367#if defined(CONFIG_IRQBALANCE)
368# include <asm/processor.h> /* kernel_thread() */
369# include <linux/kernel_stat.h> /* kstat */
370# include <linux/slab.h> /* kmalloc() */
Julia Lawall1d16b532008-01-30 13:32:19 +0100371# include <linux/timer.h>
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#define IRQBALANCE_CHECK_ARCH -999
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700374#define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
375#define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
376#define BALANCED_IRQ_MORE_DELTA (HZ/10)
377#define BALANCED_IRQ_LESS_DELTA (HZ)
378
379static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
380static int physical_balance __read_mostly;
381static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383static struct irq_cpu_info {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200384 unsigned long *last_irq;
385 unsigned long *irq_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 unsigned long irq;
387} irq_cpu_data[NR_CPUS];
388
389#define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200390#define LAST_CPU_IRQ(cpu, irq) (irq_cpu_data[cpu].last_irq[irq])
391#define IRQ_DELTA(cpu, irq) (irq_cpu_data[cpu].irq_delta[irq])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393#define IDLE_ENOUGH(cpu,now) \
394 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
395
396#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
397
Mike Travisd5a74302007-10-16 01:24:05 -0700398#define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700400static cpumask_t balance_irq_affinity[NR_IRQS] = {
401 [0 ... NR_IRQS-1] = CPU_MASK_ALL
402};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700404void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
405{
406 balance_irq_affinity[irq] = mask;
407}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
410 unsigned long now, int direction)
411{
412 int search_idle = 1;
413 int cpu = curr_cpu;
414
415 goto inside;
416
417 do {
418 if (unlikely(cpu == curr_cpu))
419 search_idle = 0;
420inside:
421 if (direction == 1) {
422 cpu++;
423 if (cpu >= NR_CPUS)
424 cpu = 0;
425 } else {
426 cpu--;
427 if (cpu == -1)
428 cpu = NR_CPUS-1;
429 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200430 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu, allowed_mask) ||
431 (search_idle && !IDLE_ENOUGH(cpu, now)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 return cpu;
434}
435
436static inline void balance_irq(int cpu, int irq)
437{
438 unsigned long now = jiffies;
439 cpumask_t allowed_mask;
440 unsigned int new_cpu;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (irqbalance_disabled)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200443 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700445 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 new_cpu = move(cpu, allowed_mask, now, 1);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200447 if (cpu != new_cpu)
Ashok Raj54d5d422005-09-06 15:16:15 -0700448 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
452{
453 int i, j;
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200454
Andrew Morton394e3902006-03-23 03:01:05 -0800455 for_each_online_cpu(i) {
456 for (j = 0; j < NR_IRQS; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (!irq_desc[j].action)
458 continue;
459 /* Is it a significant load ? */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200460 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i), j) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 useful_load_threshold)
462 continue;
463 balance_irq(i, j);
464 }
465 }
466 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200467 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return;
469}
470
471static void do_irq_balance(void)
472{
473 int i, j;
474 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
475 unsigned long move_this_load = 0;
476 int max_loaded = 0, min_loaded = 0;
477 int load;
478 unsigned long useful_load_threshold = balanced_irq_interval + 10;
479 int selected_irq;
480 int tmp_loaded, first_attempt = 1;
481 unsigned long tmp_cpu_irq;
482 unsigned long imbalance = 0;
483 cpumask_t allowed_mask, target_cpu_mask, tmp;
484
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800485 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int package_index;
487 CPU_IRQ(i) = 0;
488 if (!cpu_online(i))
489 continue;
490 package_index = CPU_TO_PACKAGEINDEX(i);
491 for (j = 0; j < NR_IRQS; j++) {
492 unsigned long value_now, delta;
Thomas Gleixner950f4422007-02-16 01:27:24 -0800493 /* Is this an active IRQ or balancing disabled ? */
494 if (!irq_desc[j].action || irq_balancing_disabled(j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200496 if (package_index == i)
497 IRQ_DELTA(package_index, j) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* Determine the total count per processor per IRQ */
499 value_now = (unsigned long) kstat_cpu(i).irqs[j];
500
501 /* Determine the activity per processor per IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200502 delta = value_now - LAST_CPU_IRQ(i, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* Update last_cpu_irq[][] for the next time */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200505 LAST_CPU_IRQ(i, j) = value_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* Ignore IRQs whose rate is less than the clock */
508 if (delta < useful_load_threshold)
509 continue;
510 /* update the load for the processor or package total */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200511 IRQ_DELTA(package_index, j) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* Keep track of the higher numbered sibling as well */
514 if (i != package_index)
515 CPU_IRQ(i) += delta;
516 /*
517 * We have sibling A and sibling B in the package
518 *
519 * cpu_irq[A] = load for cpu A + load for cpu B
520 * cpu_irq[B] = load for cpu B
521 */
522 CPU_IRQ(package_index) += delta;
523 }
524 }
525 /* Find the least loaded processor package */
Andrew Morton394e3902006-03-23 03:01:05 -0800526 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (i != CPU_TO_PACKAGEINDEX(i))
528 continue;
529 if (min_cpu_irq > CPU_IRQ(i)) {
530 min_cpu_irq = CPU_IRQ(i);
531 min_loaded = i;
532 }
533 }
534 max_cpu_irq = ULONG_MAX;
535
536tryanothercpu:
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200537 /*
538 * Look for heaviest loaded processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * We may come back to get the next heaviest loaded processor.
540 * Skip processors with trivial loads.
541 */
542 tmp_cpu_irq = 0;
543 tmp_loaded = -1;
Andrew Morton394e3902006-03-23 03:01:05 -0800544 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (i != CPU_TO_PACKAGEINDEX(i))
546 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200547 if (max_cpu_irq <= CPU_IRQ(i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 continue;
549 if (tmp_cpu_irq < CPU_IRQ(i)) {
550 tmp_cpu_irq = CPU_IRQ(i);
551 tmp_loaded = i;
552 }
553 }
554
555 if (tmp_loaded == -1) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200556 /*
557 * In the case of small number of heavy interrupt sources,
558 * loading some of the cpus too much. We use Ingo's original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * approach to rotate them around.
560 */
561 if (!first_attempt && imbalance >= useful_load_threshold) {
562 rotate_irqs_among_cpus(useful_load_threshold);
563 return;
564 }
565 goto not_worth_the_effort;
566 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 first_attempt = 0; /* heaviest search */
569 max_cpu_irq = tmp_cpu_irq; /* load */
570 max_loaded = tmp_loaded; /* processor */
571 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200572
573 /*
574 * if imbalance is less than approx 10% of max load, then
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * observe diminishing returns action. - quit
576 */
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200577 if (imbalance < (max_cpu_irq >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto not_worth_the_effort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580tryanotherirq:
581 /* if we select an IRQ to move that can't go where we want, then
582 * see if there is another one to try.
583 */
584 move_this_load = 0;
585 selected_irq = -1;
586 for (j = 0; j < NR_IRQS; j++) {
587 /* Is this an active IRQ? */
588 if (!irq_desc[j].action)
589 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200590 if (imbalance <= IRQ_DELTA(max_loaded, j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 continue;
592 /* Try to find the IRQ that is closest to the imbalance
593 * without going over.
594 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200595 if (move_this_load < IRQ_DELTA(max_loaded, j)) {
596 move_this_load = IRQ_DELTA(max_loaded, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 selected_irq = j;
598 }
599 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200600 if (selected_irq == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 goto tryanothercpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 imbalance = move_this_load;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200604
Simon Arlott27b46d72007-10-20 01:13:56 +0200605 /* For physical_balance case, we accumulated both load
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 * values in the one of the siblings cpu_irq[],
607 * to use the same code for physical and logical processors
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200608 * as much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *
610 * NOTE: the cpu_irq[] array holds the sum of the load for
611 * sibling A and sibling B in the slot for the lowest numbered
612 * sibling (A), _AND_ the load for sibling B in the slot for
613 * the higher numbered sibling.
614 *
615 * We seek the least loaded sibling by making the comparison
616 * (A+B)/2 vs B
617 */
618 load = CPU_IRQ(min_loaded) >> 1;
Mike Travisd5a74302007-10-16 01:24:05 -0700619 for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (load > CPU_IRQ(j)) {
621 /* This won't change cpu_sibling_map[min_loaded] */
622 load = CPU_IRQ(j);
623 min_loaded = j;
624 }
625 }
626
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700627 cpus_and(allowed_mask,
628 cpu_online_map,
629 balance_irq_affinity[selected_irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 target_cpu_mask = cpumask_of_cpu(min_loaded);
631 cpus_and(tmp, target_cpu_mask, allowed_mask);
632
633 if (!cpus_empty(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* mark for change destination */
Ashok Raj54d5d422005-09-06 15:16:15 -0700635 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
636
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200637 /* Since we made a change, come back sooner to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * check for more variation.
639 */
640 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200641 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return;
643 }
644 goto tryanotherirq;
645
646not_worth_the_effort:
647 /*
648 * if we did not find an IRQ to move, then adjust the time interval
649 * upward
650 */
651 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200652 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return;
654}
655
656static int balanced_irq(void *unused)
657{
658 int i;
659 unsigned long prev_balance_time = jiffies;
660 long time_remaining = balanced_irq_interval;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* push everything to CPU 0 to give us a starting point. */
663 for (i = 0 ; i < NR_IRQS ; i++) {
Ingo Molnarcd916d32006-06-29 02:24:42 -0700664 irq_desc[i].pending_mask = cpumask_of_cpu(0);
Ashok Raj54d5d422005-09-06 15:16:15 -0700665 set_pending_irq(i, cpumask_of_cpu(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700668 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 for ( ; ; ) {
Nishanth Aravamudan52e6e632005-09-10 00:27:26 -0700670 time_remaining = schedule_timeout_interruptible(time_remaining);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700671 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (time_after(jiffies,
673 prev_balance_time+balanced_irq_interval)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700674 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 do_irq_balance();
676 prev_balance_time = jiffies;
677 time_remaining = balanced_irq_interval;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700678 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680 }
681 return 0;
682}
683
684static int __init balanced_irq_init(void)
685{
686 int i;
687 struct cpuinfo_x86 *c;
688 cpumask_t tmp;
689
690 cpus_shift_right(tmp, cpu_online_map, 2);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200691 c = &boot_cpu_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* When not overwritten by the command line ask subarchitecture. */
693 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
694 irqbalance_disabled = NO_BALANCE_IRQ;
695 if (irqbalance_disabled)
696 return 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* disable irqbalance completely if there is only one processor online */
699 if (num_online_cpus() < 2) {
700 irqbalance_disabled = 1;
701 return 0;
702 }
703 /*
704 * Enable physical balance only if more than 1 physical processor
705 * is present
706 */
707 if (smp_num_siblings > 1 && !cpus_empty(tmp))
708 physical_balance = 1;
709
Andrew Morton394e3902006-03-23 03:01:05 -0800710 for_each_online_cpu(i) {
Christophe Jaillet25556c12008-06-22 22:13:48 +0200711 irq_cpu_data[i].irq_delta = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
712 irq_cpu_data[i].last_irq = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
714 printk(KERN_ERR "balanced_irq_init: out of memory");
715 goto failed;
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 printk(KERN_INFO "Starting balanced_irq\n");
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200720 if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return 0;
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200722 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723failed:
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800724 for_each_possible_cpu(i) {
Jesper Juhl4ae66732005-06-25 14:58:48 -0700725 kfree(irq_cpu_data[i].irq_delta);
Andrew Morton394e3902006-03-23 03:01:05 -0800726 irq_cpu_data[i].irq_delta = NULL;
Jesper Juhl4ae66732005-06-25 14:58:48 -0700727 kfree(irq_cpu_data[i].last_irq);
Andrew Morton394e3902006-03-23 03:01:05 -0800728 irq_cpu_data[i].last_irq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 return 0;
731}
732
Andrew Mortonc2481cc2007-04-08 16:04:04 -0700733int __devinit irqbalance_disable(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 irqbalance_disabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800736 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739__setup("noirqbalance", irqbalance_disable);
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741late_initcall(balanced_irq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742#endif /* CONFIG_IRQBALANCE */
Ashok Raj54d5d422005-09-06 15:16:15 -0700743#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745#ifndef CONFIG_SMP
Harvey Harrison75604d72008-01-30 13:31:17 +0100746void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 unsigned int cfg;
749
750 /*
751 * Wait for idle.
752 */
753 apic_wait_icr_idle();
754 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
755 /*
756 * Send the IPI. The write to APIC_ICR fires this off.
757 */
758 apic_write_around(APIC_ICR, cfg);
759}
760#endif /* !CONFIG_SMP */
761
762
763/*
764 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
765 * specific CPU-side IRQs.
766 */
767
768#define MAX_PIRQS 8
769static int pirq_entries [MAX_PIRQS];
770static int pirqs_enabled;
771int skip_ioapic_setup;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static int __init ioapic_pirq_setup(char *str)
774{
775 int i, max;
776 int ints[MAX_PIRQS+1];
777
778 get_options(str, ARRAY_SIZE(ints), ints);
779
780 for (i = 0; i < MAX_PIRQS; i++)
781 pirq_entries[i] = -1;
782
783 pirqs_enabled = 1;
784 apic_printk(APIC_VERBOSE, KERN_INFO
785 "PIRQ redirection, working around broken MP-BIOS.\n");
786 max = MAX_PIRQS;
787 if (ints[0] < MAX_PIRQS)
788 max = ints[0];
789
790 for (i = 0; i < max; i++) {
791 apic_printk(APIC_VERBOSE, KERN_DEBUG
792 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
793 /*
794 * PIRQs are mapped upside down, usually.
795 */
796 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
797 }
798 return 1;
799}
800
801__setup("pirq=", ioapic_pirq_setup);
802
803/*
804 * Find the IRQ entry number of a certain pin.
805 */
806static int find_irq_entry(int apic, int pin, int type)
807{
808 int i;
809
810 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400811 if (mp_irqs[i].mp_irqtype == type &&
812 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
813 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
814 mp_irqs[i].mp_dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return i;
816
817 return -1;
818}
819
820/*
821 * Find the pin to which IRQ[irq] (ISA) is connected
822 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800823static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 int i;
826
827 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400828 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300830 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400831 (mp_irqs[i].mp_irqtype == type) &&
832 (mp_irqs[i].mp_srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400834 return mp_irqs[i].mp_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 return -1;
837}
838
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800839static int __init find_isa_irq_apic(int irq, int type)
840{
841 int i;
842
843 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400844 int lbus = mp_irqs[i].mp_srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800845
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300846 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400847 (mp_irqs[i].mp_irqtype == type) &&
848 (mp_irqs[i].mp_srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800849 break;
850 }
851 if (i < mp_irq_entries) {
852 int apic;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200853 for (apic = 0; apic < nr_ioapics; apic++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400854 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800855 return apic;
856 }
857 }
858
859 return -1;
860}
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/*
863 * Find a specific PCI IRQ entry.
864 * Not an __init, possibly needed by modules
865 */
866static int pin_2_irq(int idx, int apic, int pin);
867
868int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
869{
870 int apic, i, best_guess = -1;
871
872 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
873 "slot:%d, pin:%d.\n", bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +0400874 if (test_bit(bus, mp_bus_not_pci)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
876 return -1;
877 }
878 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400879 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 for (apic = 0; apic < nr_ioapics; apic++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400882 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
883 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300886 if (!test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400887 !mp_irqs[i].mp_irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 (bus == lbus) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400889 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
Ingo Molnar3de352b2008-07-08 11:14:58 +0200890 int irq = pin_2_irq(i, apic, mp_irqs[i].mp_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 if (!(apic || IO_APIC_IRQ(irq)))
893 continue;
894
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400895 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return irq;
897 /*
898 * Use the first all-but-pin matching entry as a
899 * best-guess fuzzy result for broken mptables.
900 */
901 if (best_guess < 0)
902 best_guess = irq;
903 }
904 }
905 return best_guess;
906}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700907EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909/*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200910 * This function currently is only a helper for the i386 smp boot process where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * we need to reprogram the ioredtbls to cater for the cpus which have come online
912 * so mask in all cases should simply be TARGET_CPUS
913 */
Ashok Raj54d5d422005-09-06 15:16:15 -0700914#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915void __init setup_ioapic_dest(void)
916{
917 int pin, ioapic, irq, irq_entry;
918
919 if (skip_ioapic_setup == 1)
920 return;
921
922 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
923 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
924 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
925 if (irq_entry == -1)
926 continue;
927 irq = pin_2_irq(irq_entry, ioapic, pin);
928 set_ioapic_affinity_irq(irq, TARGET_CPUS);
929 }
930
931 }
932}
Ashok Raj54d5d422005-09-06 15:16:15 -0700933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300935#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
937 * EISA Edge/Level control register, ELCR
938 */
939static int EISA_ELCR(unsigned int irq)
940{
941 if (irq < 16) {
942 unsigned int port = 0x4d0 + (irq >> 3);
943 return (inb(port) >> (irq & 7)) & 1;
944 }
945 apic_printk(APIC_VERBOSE, KERN_INFO
946 "Broken MPtable reports ISA irq %d\n", irq);
947 return 0;
948}
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300949#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300951/* ISA interrupts are always polarity zero edge triggered,
952 * when listed as conforming in the MP table. */
953
954#define default_ISA_trigger(idx) (0)
955#define default_ISA_polarity(idx) (0)
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957/* EISA interrupts are always polarity zero and can be edge or level
958 * trigger depending on the ELCR value. If an interrupt is listed as
959 * EISA conforming in the MP table, that means its trigger type must
960 * be read in from the ELCR */
961
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400962#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300963#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965/* PCI interrupts are always polarity one level triggered,
966 * when listed as conforming in the MP table. */
967
968#define default_PCI_trigger(idx) (1)
969#define default_PCI_polarity(idx) (1)
970
971/* MCA interrupts are always polarity zero level triggered,
972 * when listed as conforming in the MP table. */
973
974#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300975#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Shaohua Li61fd47e2007-11-17 01:05:28 -0500977static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400979 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int polarity;
981
982 /*
983 * Determine IRQ line polarity (high active or low active):
984 */
Ingo Molnar3de352b2008-07-08 11:14:58 +0200985 switch (mp_irqs[idx].mp_irqflag & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200986 case 0: /* conforms, ie. bus-type dependent polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200988 polarity = test_bit(bus, mp_bus_not_pci)?
989 default_ISA_polarity(idx):
990 default_PCI_polarity(idx);
991 break;
992 }
993 case 1: /* high active */
994 {
995 polarity = 0;
996 break;
997 }
998 case 2: /* reserved */
999 {
1000 printk(KERN_WARNING "broken BIOS!!\n");
1001 polarity = 1;
1002 break;
1003 }
1004 case 3: /* low active */
1005 {
1006 polarity = 1;
1007 break;
1008 }
1009 default: /* invalid */
1010 {
1011 printk(KERN_WARNING "broken BIOS!!\n");
1012 polarity = 1;
1013 break;
1014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 return polarity;
1017}
1018
1019static int MPBIOS_trigger(int idx)
1020{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001021 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 int trigger;
1023
1024 /*
1025 * Determine IRQ trigger mode (edge or level sensitive):
1026 */
Ingo Molnar3de352b2008-07-08 11:14:58 +02001027 switch ((mp_irqs[idx].mp_irqflag>>2) & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001028 case 0: /* conforms, ie. bus-type dependent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001030 trigger = test_bit(bus, mp_bus_not_pci)?
1031 default_ISA_trigger(idx):
1032 default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001033#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001034 switch (mp_bus_id_to_type[bus]) {
1035 case MP_BUS_ISA: /* ISA pin */
1036 {
1037 /* set before the switch */
1038 break;
1039 }
1040 case MP_BUS_EISA: /* EISA pin */
1041 {
1042 trigger = default_EISA_trigger(idx);
1043 break;
1044 }
1045 case MP_BUS_PCI: /* PCI pin */
1046 {
1047 /* set before the switch */
1048 break;
1049 }
1050 case MP_BUS_MCA: /* MCA pin */
1051 {
1052 trigger = default_MCA_trigger(idx);
1053 break;
1054 }
1055 default:
1056 {
1057 printk(KERN_WARNING "broken BIOS!!\n");
1058 trigger = 1;
1059 break;
1060 }
1061 }
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001062#endif
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001063 break;
1064 }
1065 case 1: /* edge */
1066 {
1067 trigger = 0;
1068 break;
1069 }
1070 case 2: /* reserved */
1071 {
1072 printk(KERN_WARNING "broken BIOS!!\n");
1073 trigger = 1;
1074 break;
1075 }
1076 case 3: /* level */
1077 {
1078 trigger = 1;
1079 break;
1080 }
1081 default: /* invalid */
1082 {
1083 printk(KERN_WARNING "broken BIOS!!\n");
1084 trigger = 0;
1085 break;
1086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 return trigger;
1089}
1090
1091static inline int irq_polarity(int idx)
1092{
1093 return MPBIOS_polarity(idx);
1094}
1095
1096static inline int irq_trigger(int idx)
1097{
1098 return MPBIOS_trigger(idx);
1099}
1100
1101static int pin_2_irq(int idx, int apic, int pin)
1102{
1103 int irq, i;
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001104 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 /*
1107 * Debugging check, we are in big trouble if this message pops up!
1108 */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001109 if (mp_irqs[idx].mp_dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1111
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001112 if (test_bit(bus, mp_bus_not_pci))
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001113 irq = mp_irqs[idx].mp_srcbusirq;
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001114 else {
1115 /*
1116 * PCI IRQs are mapped in order
1117 */
1118 i = irq = 0;
1119 while (i < apic)
1120 irq += nr_ioapic_registers[i++];
1121 irq += pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001123 /*
1124 * For MPS mode, so far only needed by ES7000 platform
1125 */
1126 if (ioapic_renumber_irq)
1127 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
1130 /*
1131 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1132 */
1133 if ((pin >= 16) && (pin <= 23)) {
1134 if (pirq_entries[pin-16] != -1) {
1135 if (!pirq_entries[pin-16]) {
1136 apic_printk(APIC_VERBOSE, KERN_DEBUG
1137 "disabling PIRQ%d\n", pin-16);
1138 } else {
1139 irq = pirq_entries[pin-16];
1140 apic_printk(APIC_VERBOSE, KERN_DEBUG
1141 "using PIRQ%d -> IRQ %d\n",
1142 pin-16, irq);
1143 }
1144 }
1145 }
1146 return irq;
1147}
1148
1149static inline int IO_APIC_irq_trigger(int irq)
1150{
1151 int apic, idx, pin;
1152
1153 for (apic = 0; apic < nr_ioapics; apic++) {
1154 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001155 idx = find_irq_entry(apic, pin, mp_INT);
1156 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return irq_trigger(idx);
1158 }
1159 }
1160 /*
1161 * nonexistent IRQs are edge default
1162 */
1163 return 0;
1164}
1165
1166/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Adrian Bunk7e95b592006-12-07 02:14:11 +01001167static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001169static int __assign_irq_vector(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001171 static int current_vector = FIRST_DEVICE_VECTOR, current_offset;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001172 int vector, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001174 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +02001175
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001176 if (irq_vector[irq] > 0)
1177 return irq_vector[irq];
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001178
Jan Beulich0a1ad602006-06-26 13:56:43 +02001179 vector = current_vector;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001180 offset = current_offset;
1181next:
1182 vector += 8;
Alan Mayer305b92a2008-04-15 15:36:56 -05001183 if (vector >= first_system_vector) {
Eric W. Biederman8339f002007-01-29 13:19:05 -07001184 offset = (offset + 1) % 8;
1185 vector = FIRST_DEVICE_VECTOR + offset;
1186 }
1187 if (vector == current_vector)
1188 return -ENOSPC;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001189 if (test_and_set_bit(vector, used_vectors))
Eric W. Biederman8339f002007-01-29 13:19:05 -07001190 goto next;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001191
1192 current_vector = vector;
1193 current_offset = offset;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001194 irq_vector[irq] = vector;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001195
1196 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001199static int assign_irq_vector(int irq)
1200{
1201 unsigned long flags;
1202 int vector;
1203
1204 spin_lock_irqsave(&vector_lock, flags);
1205 vector = __assign_irq_vector(irq);
1206 spin_unlock_irqrestore(&vector_lock, flags);
1207
1208 return vector;
1209}
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001210static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212#define IOAPIC_AUTO -1
1213#define IOAPIC_EDGE 0
1214#define IOAPIC_LEVEL 1
1215
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001216static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001218 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001219 trigger == IOAPIC_LEVEL) {
1220 irq_desc[irq].status |= IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001221 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1222 handle_fasteoi_irq, "fasteoi");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001223 } else {
1224 irq_desc[irq].status &= ~IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001225 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1226 handle_edge_irq, "edge");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001227 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001228 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231static void __init setup_IO_APIC_irqs(void)
1232{
1233 struct IO_APIC_route_entry entry;
1234 int apic, pin, idx, irq, first_notcon = 1, vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1237
1238 for (apic = 0; apic < nr_ioapics; apic++) {
1239 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1240
1241 /*
1242 * add it to the IO-APIC irq-routing table:
1243 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001244 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 entry.delivery_mode = INT_DELIVERY_MODE;
1247 entry.dest_mode = INT_DEST_MODE;
1248 entry.mask = 0; /* enable IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001249 entry.dest.logical.logical_dest =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 cpu_mask_to_apicid(TARGET_CPUS);
1251
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001252 idx = find_irq_entry(apic, pin, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (idx == -1) {
1254 if (first_notcon) {
1255 apic_printk(APIC_VERBOSE, KERN_DEBUG
1256 " IO-APIC (apicid-pin) %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001257 mp_ioapics[apic].mp_apicid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 pin);
1259 first_notcon = 0;
1260 } else
1261 apic_printk(APIC_VERBOSE, ", %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001262 mp_ioapics[apic].mp_apicid, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 continue;
1264 }
1265
Yinghai Lu20d225b2007-10-17 18:04:41 +02001266 if (!first_notcon) {
1267 apic_printk(APIC_VERBOSE, " not connected.\n");
1268 first_notcon = 1;
1269 }
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 entry.trigger = irq_trigger(idx);
1272 entry.polarity = irq_polarity(idx);
1273
1274 if (irq_trigger(idx)) {
1275 entry.trigger = 1;
1276 entry.mask = 1;
1277 }
1278
1279 irq = pin_2_irq(idx, apic, pin);
1280 /*
1281 * skip adding the timer int on secondary nodes, which causes
1282 * a small but painful rift in the time-space continuum
1283 */
1284 if (multi_timer_check(apic, irq))
1285 continue;
1286 else
1287 add_pin_to_irq(irq, apic, pin);
1288
1289 if (!apic && !IO_APIC_IRQ(irq))
1290 continue;
1291
1292 if (IO_APIC_IRQ(irq)) {
1293 vector = assign_irq_vector(irq);
1294 entry.vector = vector;
1295 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (!apic && (irq < 16))
1298 disable_8259A_irq(irq);
1299 }
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09001300 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302 }
1303
1304 if (!first_notcon)
1305 apic_printk(APIC_VERBOSE, " not connected.\n");
1306}
1307
1308/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001309 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001311static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1312 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001316 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 /*
1319 * We use logical delivery to get the timer IRQ
1320 * to the first CPU.
1321 */
1322 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001323 entry.mask = 1; /* mask IRQ now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1325 entry.delivery_mode = INT_DELIVERY_MODE;
1326 entry.polarity = 0;
1327 entry.trigger = 0;
1328 entry.vector = vector;
1329
1330 /*
1331 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001332 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
Maciej W. Rozyckif0825262008-05-27 21:19:16 +01001334 ioapic_register_intr(0, vector, IOAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /*
1337 * Add it to the IO-APIC irq-routing table:
1338 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001339 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342void __init print_IO_APIC(void)
1343{
1344 int apic, i;
1345 union IO_APIC_reg_00 reg_00;
1346 union IO_APIC_reg_01 reg_01;
1347 union IO_APIC_reg_02 reg_02;
1348 union IO_APIC_reg_03 reg_03;
1349 unsigned long flags;
1350
1351 if (apic_verbosity == APIC_QUIET)
1352 return;
1353
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001354 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 for (i = 0; i < nr_ioapics; i++)
1356 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001357 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /*
1360 * We are a bit conservative about what we expect. We have to
1361 * know about every hardware change ASAP.
1362 */
1363 printk(KERN_INFO "testing the IO APIC.......................\n");
1364
1365 for (apic = 0; apic < nr_ioapics; apic++) {
1366
1367 spin_lock_irqsave(&ioapic_lock, flags);
1368 reg_00.raw = io_apic_read(apic, 0);
1369 reg_01.raw = io_apic_read(apic, 1);
1370 if (reg_01.bits.version >= 0x10)
1371 reg_02.raw = io_apic_read(apic, 2);
1372 if (reg_01.bits.version >= 0x20)
1373 reg_03.raw = io_apic_read(apic, 3);
1374 spin_unlock_irqrestore(&ioapic_lock, flags);
1375
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001376 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1378 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1379 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1380 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1383 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1386 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /*
1389 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1390 * but the value of reg_02 is read as the previous read register
1391 * value, so ignore it if reg_02 == reg_01.
1392 */
1393 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1394 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1395 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397
1398 /*
1399 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1400 * or reg_03, but the value of reg_0[23] is read as the previous read
1401 * register value, so ignore it if reg_03 == reg_0[12].
1402 */
1403 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1404 reg_03.raw != reg_01.raw) {
1405 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1406 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408
1409 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1410
1411 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1412 " Stat Dest Deli Vect: \n");
1413
1414 for (i = 0; i <= reg_01.bits.entries; i++) {
1415 struct IO_APIC_route_entry entry;
1416
Andi Kleencf4c6a22006-09-26 10:52:30 +02001417 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 printk(KERN_DEBUG " %02x %03X %02X ",
1420 i,
1421 entry.dest.logical.logical_dest,
1422 entry.dest.physical.physical_dest
1423 );
1424
1425 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1426 entry.mask,
1427 entry.trigger,
1428 entry.irr,
1429 entry.polarity,
1430 entry.delivery_status,
1431 entry.dest_mode,
1432 entry.delivery_mode,
1433 entry.vector
1434 );
1435 }
1436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1438 for (i = 0; i < NR_IRQS; i++) {
1439 struct irq_pin_list *entry = irq_2_pin + i;
1440 if (entry->pin < 0)
1441 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001442 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 for (;;) {
1444 printk("-> %d:%d", entry->apic, entry->pin);
1445 if (!entry->next)
1446 break;
1447 entry = irq_2_pin + entry->next;
1448 }
1449 printk("\n");
1450 }
1451
1452 printk(KERN_INFO ".................................... done.\n");
1453
1454 return;
1455}
1456
1457#if 0
1458
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001459static void print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 unsigned int v;
1462 int i, j;
1463
1464 if (apic_verbosity == APIC_QUIET)
1465 return;
1466
1467 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1468 for (i = 0; i < 8; i++) {
1469 v = apic_read(base + i*0x10);
1470 for (j = 0; j < 32; j++) {
1471 if (v & (1<<j))
1472 printk("1");
1473 else
1474 printk("0");
1475 }
1476 printk("\n");
1477 }
1478}
1479
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001480void /*__init*/ print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 unsigned int v, ver, maxlvt;
1483
1484 if (apic_verbosity == APIC_QUIET)
1485 return;
1486
1487 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1488 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001489 v = apic_read(APIC_ID);
Jack Steiner05f2d122008-03-28 14:12:02 -05001490 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
1491 GET_APIC_ID(read_apic_id()));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 v = apic_read(APIC_LVR);
1493 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1494 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001495 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 v = apic_read(APIC_TASKPRI);
1498 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1499
1500 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1501 v = apic_read(APIC_ARBPRI);
1502 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1503 v & APIC_ARBPRI_MASK);
1504 v = apic_read(APIC_PROCPRI);
1505 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1506 }
1507
1508 v = apic_read(APIC_EOI);
1509 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1510 v = apic_read(APIC_RRR);
1511 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1512 v = apic_read(APIC_LDR);
1513 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1514 v = apic_read(APIC_DFR);
1515 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1516 v = apic_read(APIC_SPIV);
1517 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1518
1519 printk(KERN_DEBUG "... APIC ISR field:\n");
1520 print_APIC_bitfield(APIC_ISR);
1521 printk(KERN_DEBUG "... APIC TMR field:\n");
1522 print_APIC_bitfield(APIC_TMR);
1523 printk(KERN_DEBUG "... APIC IRR field:\n");
1524 print_APIC_bitfield(APIC_IRR);
1525
1526 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1527 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1528 apic_write(APIC_ESR, 0);
1529 v = apic_read(APIC_ESR);
1530 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1531 }
1532
1533 v = apic_read(APIC_ICR);
1534 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1535 v = apic_read(APIC_ICR2);
1536 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1537
1538 v = apic_read(APIC_LVTT);
1539 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1540
1541 if (maxlvt > 3) { /* PC is LVT#4. */
1542 v = apic_read(APIC_LVTPC);
1543 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1544 }
1545 v = apic_read(APIC_LVT0);
1546 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1547 v = apic_read(APIC_LVT1);
1548 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1549
1550 if (maxlvt > 2) { /* ERR is LVT#3. */
1551 v = apic_read(APIC_LVTERR);
1552 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1553 }
1554
1555 v = apic_read(APIC_TMICT);
1556 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1557 v = apic_read(APIC_TMCCT);
1558 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1559 v = apic_read(APIC_TDCR);
1560 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1561 printk("\n");
1562}
1563
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001564void print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 on_each_cpu(print_local_APIC, NULL, 1, 1);
1567}
1568
1569void /*__init*/ print_PIC(void)
1570{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 unsigned int v;
1572 unsigned long flags;
1573
1574 if (apic_verbosity == APIC_QUIET)
1575 return;
1576
1577 printk(KERN_DEBUG "\nprinting PIC contents\n");
1578
1579 spin_lock_irqsave(&i8259A_lock, flags);
1580
1581 v = inb(0xa1) << 8 | inb(0x21);
1582 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1583
1584 v = inb(0xa0) << 8 | inb(0x20);
1585 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1586
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001587 outb(0x0b, 0xa0);
1588 outb(0x0b, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 v = inb(0xa0) << 8 | inb(0x20);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001590 outb(0x0a, 0xa0);
1591 outb(0x0a, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 spin_unlock_irqrestore(&i8259A_lock, flags);
1594
1595 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1596
1597 v = inb(0x4d1) << 8 | inb(0x4d0);
1598 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1599}
1600
1601#endif /* 0 */
1602
1603static void __init enable_IO_APIC(void)
1604{
1605 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001606 int i8259_apic, i8259_pin;
1607 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 unsigned long flags;
1609
1610 for (i = 0; i < PIN_MAP_SIZE; i++) {
1611 irq_2_pin[i].pin = -1;
1612 irq_2_pin[i].next = 0;
1613 }
1614 if (!pirqs_enabled)
1615 for (i = 0; i < MAX_PIRQS; i++)
1616 pirq_entries[i] = -1;
1617
1618 /*
1619 * The number of IO-APIC IRQ registers (== #pins):
1620 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001621 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001623 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001625 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1626 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001627 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001628 int pin;
1629 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001630 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001631 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001632 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001633
1634
1635 /* If the interrupt line is enabled and in ExtInt mode
1636 * I have found the pin where the i8259 is connected.
1637 */
1638 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1639 ioapic_i8259.apic = apic;
1640 ioapic_i8259.pin = pin;
1641 goto found_i8259;
1642 }
1643 }
1644 }
1645 found_i8259:
1646 /* Look to see what if the MP table has reported the ExtINT */
1647 /* If we could not find the appropriate pin by looking at the ioapic
1648 * the i8259 probably is not connected the ioapic but give the
1649 * mptable a chance anyway.
1650 */
1651 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1652 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1653 /* Trust the MP table if nothing is setup in the hardware */
1654 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1655 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1656 ioapic_i8259.pin = i8259_pin;
1657 ioapic_i8259.apic = i8259_apic;
1658 }
1659 /* Complain if the MP table and the hardware disagree */
1660 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1661 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1662 {
1663 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
1665
1666 /*
1667 * Do not trust the IO-APIC being empty at bootup
1668 */
1669 clear_IO_APIC();
1670}
1671
1672/*
1673 * Not an __init, needed by the reboot code
1674 */
1675void disable_IO_APIC(void)
1676{
1677 /*
1678 * Clear the IO-APIC before rebooting:
1679 */
1680 clear_IO_APIC();
1681
Eric W. Biederman650927e2005-06-25 14:57:44 -07001682 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001683 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001684 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001685 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001686 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001687 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001688 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001689
1690 memset(&entry, 0, sizeof(entry));
1691 entry.mask = 0; /* Enabled */
1692 entry.trigger = 0; /* Edge */
1693 entry.irr = 0;
1694 entry.polarity = 0; /* High */
1695 entry.delivery_status = 0;
1696 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001697 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001698 entry.vector = 0;
Vivek Goyal76865c32006-01-06 00:12:19 -08001699 entry.dest.physical.physical_dest =
Jack Steiner05f2d122008-03-28 14:12:02 -05001700 GET_APIC_ID(read_apic_id());
Eric W. Biederman650927e2005-06-25 14:57:44 -07001701
1702 /*
1703 * Add it to the IO-APIC irq-routing table:
1704 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001705 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001706 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001707 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
1710/*
1711 * function to set the IO-APIC physical IDs based on the
1712 * values stored in the MPC table.
1713 *
1714 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1715 */
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717static void __init setup_ioapic_ids_from_mpc(void)
1718{
1719 union IO_APIC_reg_00 reg_00;
1720 physid_mask_t phys_id_present_map;
1721 int apic;
1722 int i;
1723 unsigned char old_id;
1724 unsigned long flags;
1725
Yinghai Lud49c4282008-06-08 18:31:54 -07001726#ifdef CONFIG_X86_NUMAQ
1727 if (found_numaq)
1728 return;
1729#endif
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001732 * Don't check I/O APIC IDs for xAPIC systems. They have
1733 * no meaning without the serial APIC bus.
1734 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001735 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1736 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001737 return;
1738 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 * This is broken; anything with a real cpu count has to
1740 * circumvent this idiocy regardless.
1741 */
1742 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1743
1744 /*
1745 * Set the IOAPIC ID to the value stored in the MPC table.
1746 */
1747 for (apic = 0; apic < nr_ioapics; apic++) {
1748
1749 /* Read the register 0 value */
1750 spin_lock_irqsave(&ioapic_lock, flags);
1751 reg_00.raw = io_apic_read(apic, 0);
1752 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001753
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001754 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001756 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001758 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1760 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001761 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /*
1765 * Sanity check, is the ID really free? Every APIC in a
1766 * system must have a unique ID or we get lots of nice
1767 * 'stuck on smp_invalidate_needed IPI wait' messages.
1768 */
1769 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001770 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001772 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 for (i = 0; i < get_physical_broadcast(); i++)
1774 if (!physid_isset(i, phys_id_present_map))
1775 break;
1776 if (i >= get_physical_broadcast())
1777 panic("Max APIC ID exceeded!\n");
1778 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1779 i);
1780 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001781 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 } else {
1783 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001784 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 apic_printk(APIC_VERBOSE, "Setting %d in the "
1786 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001787 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1789 }
1790
1791
1792 /*
1793 * We need to adjust the IRQ routing table
1794 * if the ID changed.
1795 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001796 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001798 if (mp_irqs[i].mp_dstapic == old_id)
1799 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001800 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 /*
1803 * Read the right value from the MPC table and
1804 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 apic_printk(APIC_VERBOSE, KERN_INFO
1807 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001808 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001810 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 spin_lock_irqsave(&ioapic_lock, flags);
1812 io_apic_write(apic, 0, reg_00.raw);
1813 spin_unlock_irqrestore(&ioapic_lock, flags);
1814
1815 /*
1816 * Sanity check
1817 */
1818 spin_lock_irqsave(&ioapic_lock, flags);
1819 reg_00.raw = io_apic_read(apic, 0);
1820 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001821 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 printk("could not set ID!\n");
1823 else
1824 apic_printk(APIC_VERBOSE, " ok.\n");
1825 }
1826}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01001828int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01001829
1830static int __init notimercheck(char *s)
1831{
1832 no_timer_check = 1;
1833 return 1;
1834}
1835__setup("no_timer_check", notimercheck);
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837/*
1838 * There is a nasty bug in some older SMP boards, their mptable lies
1839 * about the timer IRQ. We do the following to work around the situation:
1840 *
1841 * - timer IRQ defaults to IO-APIC IRQ
1842 * - if this function detects that timer IRQs are defunct, then we fall
1843 * back to ISA timer IRQs
1844 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02001845static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01001848 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Zachary Amsden8542b202006-12-07 02:14:09 +01001850 if (no_timer_check)
1851 return 1;
1852
Ingo Molnar4aae0702007-12-18 18:05:58 +01001853 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 local_irq_enable();
1855 /* Let ten ticks pass... */
1856 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01001857 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 /*
1860 * Expect a few ticks at least, to be sure some possible
1861 * glue logic does not lock up after one or two first
1862 * ticks in a non-ExtINT mode. Also the local APIC
1863 * might have cached one ExtINT interrupt. Finally, at
1864 * least one tick may be lost due to delays.
1865 */
Julia Lawall1d16b532008-01-30 13:32:19 +01001866 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 return 1;
1868
1869 return 0;
1870}
1871
1872/*
1873 * In the SMP+IOAPIC case it might happen that there are an unspecified
1874 * number of pending IRQ events unhandled. These cases are very rare,
1875 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1876 * better to do it this way as thus we do not have to be aware of
1877 * 'pending' interrupts in the IRQ path, except at this point.
1878 */
1879/*
1880 * Edge triggered needs to resend any interrupt
1881 * that was delayed but this is now handled in the device
1882 * independent code.
1883 */
1884
1885/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001886 * Startup quirk:
1887 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 * Starting up a edge-triggered IO-APIC interrupt is
1889 * nasty - we need to make sure that we get the edge.
1890 * If it is already asserted for some reason, we need
1891 * return 1 to indicate that is was pending.
1892 *
1893 * This is not complete - we should be able to fake
1894 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001895 *
1896 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001898static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 int was_pending = 0;
1901 unsigned long flags;
1902
1903 spin_lock_irqsave(&ioapic_lock, flags);
1904 if (irq < 16) {
1905 disable_8259A_irq(irq);
1906 if (i8259A_irq_pending(irq))
1907 was_pending = 1;
1908 }
1909 __unmask_IO_APIC_irq(irq);
1910 spin_unlock_irqrestore(&ioapic_lock, flags);
1911
1912 return was_pending;
1913}
1914
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001915static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001917 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 ack_APIC_irq();
1919}
1920
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001921static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 unsigned long v;
1924 int i;
1925
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001926 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927/*
1928 * It appears there is an erratum which affects at least version 0x11
1929 * of I/O APIC (that's the 82093AA and cores integrated into various
1930 * chipsets). Under certain conditions a level-triggered interrupt is
1931 * erroneously delivered as edge-triggered one but the respective IRR
1932 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1933 * message but it will never arrive and further interrupts are blocked
1934 * from the source. The exact reason is so far unknown, but the
1935 * phenomenon was observed when two consecutive interrupt requests
1936 * from a given source get delivered to the same CPU and the source is
1937 * temporarily disabled in between.
1938 *
1939 * A workaround is to simulate an EOI message manually. We achieve it
1940 * by setting the trigger mode to edge and then to level when the edge
1941 * trigger mode gets detected in the TMR of a local APIC for a
1942 * level-triggered interrupt. We mask the source for the time of the
1943 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1944 * The idea is from Manfred Spraul. --macro
1945 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001946 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1949
1950 ack_APIC_irq();
1951
1952 if (!(v & (1 << (i & 0x1f)))) {
1953 atomic_inc(&irq_mis_count);
1954 spin_lock(&ioapic_lock);
1955 __mask_and_edge_IO_APIC_irq(irq);
1956 __unmask_and_level_IO_APIC_irq(irq);
1957 spin_unlock(&ioapic_lock);
1958 }
1959}
1960
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001961static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001963 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001964
1965 return 1;
1966}
1967
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001968static struct irq_chip ioapic_chip __read_mostly = {
1969 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001970 .startup = startup_ioapic_irq,
1971 .mask = mask_IO_APIC_irq,
1972 .unmask = unmask_IO_APIC_irq,
1973 .ack = ack_ioapic_irq,
1974 .eoi = ack_ioapic_quirk_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001975#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001976 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001977#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001978 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979};
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982static inline void init_IO_APIC_traps(void)
1983{
1984 int irq;
1985
1986 /*
1987 * NOTE! The local APIC isn't very good at handling
1988 * multiple interrupts at the same interrupt level.
1989 * As the interrupt level is determined by taking the
1990 * vector number and shifting that right by 4, we
1991 * want to spread these out a bit so that they don't
1992 * all fall in the same interrupt level.
1993 *
1994 * Also, we've got to be careful not to trash gate
1995 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1996 */
1997 for (irq = 0; irq < NR_IRQS ; irq++) {
Akinobu Mitaaddfc662008-04-05 22:39:07 +09001998 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 /*
2000 * Hmm.. We don't have an entry for this,
2001 * so default to an old-fashioned 8259
2002 * interrupt if we can..
2003 */
2004 if (irq < 16)
2005 make_8259A_irq(irq);
2006 else
2007 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002008 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010 }
2011}
2012
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002013/*
2014 * The local APIC irq-chip implementation:
2015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002017static void ack_apic(unsigned int irq)
2018{
2019 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
2021
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002022static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
2024 unsigned long v;
2025
2026 v = apic_read(APIC_LVT0);
2027 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2028}
2029
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002030static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002032 unsigned long v;
2033
2034 v = apic_read(APIC_LVT0);
2035 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002038static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002039 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002040 .mask = mask_lapic_irq,
2041 .unmask = unmask_lapic_irq,
2042 .eoi = ack_apic,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043};
2044
Jan Beuliche9427102008-01-30 13:31:24 +01002045static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
2047 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002048 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 * We put the 8259A master into AEOI mode and
2050 * unmask on all local APICs LVT0 as NMI.
2051 *
2052 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2053 * is from Maciej W. Rozycki - so we do not have to EOI from
2054 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2057
Jan Beuliche9427102008-01-30 13:31:24 +01002058 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 apic_printk(APIC_VERBOSE, " done.\n");
2061}
2062
2063/*
2064 * This looks a bit hackish but it's about the only one way of sending
2065 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2066 * not support the ExtINT mode, unfortunately. We need to send these
2067 * cycles as some i82489DX-based boards have glue logic that keeps the
2068 * 8259A interrupt line asserted until INTA. --macro
2069 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002070static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002072 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct IO_APIC_route_entry entry0, entry1;
2074 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002076 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002077 if (pin == -1) {
2078 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002080 }
2081 apic = find_isa_irq_apic(8, mp_INT);
2082 if (apic == -1) {
2083 WARN_ON_ONCE(1);
2084 return;
2085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Andi Kleencf4c6a22006-09-26 10:52:30 +02002087 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002088 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 memset(&entry1, 0, sizeof(entry1));
2091
2092 entry1.dest_mode = 0; /* physical delivery */
2093 entry1.mask = 0; /* unmask IRQ now */
2094 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2095 entry1.delivery_mode = dest_ExtINT;
2096 entry1.polarity = entry0.polarity;
2097 entry1.trigger = 0;
2098 entry1.vector = 0;
2099
Andi Kleencf4c6a22006-09-26 10:52:30 +02002100 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 save_control = CMOS_READ(RTC_CONTROL);
2103 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2104 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2105 RTC_FREQ_SELECT);
2106 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2107
2108 i = 100;
2109 while (i-- > 0) {
2110 mdelay(10);
2111 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2112 i -= 10;
2113 }
2114
2115 CMOS_WRITE(save_control, RTC_CONTROL);
2116 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002117 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Andi Kleencf4c6a22006-09-26 10:52:30 +02002119 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122/*
2123 * This code may look a bit paranoid, but it's supposed to cooperate with
2124 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2125 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2126 * fanatically on his truly buggy board.
2127 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002128static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002130 int apic1, pin1, apic2, pin2;
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002131 int no_pin1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 int vector;
Ingo Molnar6e908942008-03-21 14:32:36 +01002133 unsigned int ver;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002134 unsigned long flags;
2135
2136 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002137
Ingo Molnar6e908942008-03-21 14:32:36 +01002138 ver = apic_read(APIC_LVR);
2139 ver = GET_APIC_VERSION(ver);
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 /*
2142 * get/set the timer IRQ vector:
2143 */
2144 disable_8259A_irq(0);
2145 vector = assign_irq_vector(0);
2146 set_intr_gate(vector, interrupt[0]);
2147
2148 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002149 * As IRQ0 is to be enabled in the 8259A, the virtual
2150 * wire has to be disabled in the local APIC. Also
2151 * timer interrupts need to be acknowledged manually in
2152 * the 8259A for the i82489DX when using the NMI
2153 * watchdog as that APIC treats NMIs as level-triggered.
2154 * The AEOI mode will finish them in the 8259A
2155 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 */
2157 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2158 init_8259A(1);
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002159 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002161 pin1 = find_isa_irq_pin(0, mp_INT);
2162 apic1 = find_isa_irq_apic(0, mp_INT);
2163 pin2 = ioapic_i8259.pin;
2164 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002166 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2167 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002169 /*
2170 * Some BIOS writers are clueless and report the ExtINTA
2171 * I/O APIC input from the cascaded 8259A as the timer
2172 * interrupt input. So just in case, if only one pin
2173 * was found above, try it both directly and through the
2174 * 8259A.
2175 */
2176 if (pin1 == -1) {
2177 pin1 = pin2;
2178 apic1 = apic2;
2179 no_pin1 = 1;
2180 } else if (pin2 == -1) {
2181 pin2 = pin1;
2182 apic2 = apic1;
2183 }
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (pin1 != -1) {
2186 /*
2187 * Ok, does IRQ0 through the IOAPIC work?
2188 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002189 if (no_pin1) {
2190 add_pin_to_irq(0, apic1, pin1);
2191 setup_timer_IRQ0_pin(apic1, pin1, vector);
2192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 unmask_IO_APIC_irq(0);
2194 if (timer_irq_works()) {
2195 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 setup_nmi();
2197 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002199 if (disable_timer_pin_1 > 0)
2200 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002203 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002204 if (!no_pin1)
2205 printk(KERN_ERR "..MP-BIOS bug: "
2206 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002208 printk(KERN_INFO "...trying to set up timer (IRQ0) "
2209 "through the 8259A ... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 printk("\n..... (found pin %d) ...", pin2);
2211 /*
2212 * legacy devices should be connected to IO APIC #0
2213 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002214 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01002215 setup_timer_IRQ0_pin(apic2, pin2, vector);
Maciej W. Rozycki24742ec2008-05-27 21:19:40 +01002216 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002217 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (timer_irq_works()) {
2219 printk("works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002220 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002222 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002224 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002226 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 }
2228 /*
2229 * Cleanup, just in case ...
2230 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002231 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002232 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002233 printk(" failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 if (nmi_watchdog == NMI_IO_APIC) {
2237 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002238 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002240 timer_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2243
Ingo Molnara460e742006-10-17 00:10:03 -07002244 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
Maciej W. Rozycki2e188932007-02-13 13:26:20 +01002245 "fasteoi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2247 enable_8259A_irq(0);
2248
2249 if (timer_irq_works()) {
2250 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002251 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002253 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2255 printk(" failed.\n");
2256
2257 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 init_8259A(0);
2260 make_8259A_irq(0);
2261 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2262
2263 unlock_ExtINT_logic();
2264
2265 if (timer_irq_works()) {
2266 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
2269 printk(" failed :(.\n");
2270 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2271 "report. Then try booting with the 'noapic' option");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002272out:
2273 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274}
2275
2276/*
2277 *
2278 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2279 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2280 * Linux doesn't really care, as it's not actually used
2281 * for any interrupt handling anyway.
2282 */
2283#define PIC_IRQS (1 << PIC_CASCADE_IR)
2284
2285void __init setup_IO_APIC(void)
2286{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002287 int i;
2288
2289 /* Reserve all the system vectors. */
Alan Mayer305b92a2008-04-15 15:36:56 -05002290 for (i = first_system_vector; i < NR_VECTORS; i++)
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002291 set_bit(i, used_vectors);
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 enable_IO_APIC();
2294
2295 if (acpi_ioapic)
2296 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2297 else
2298 io_apic_irqs = ~PIC_IRQS;
2299
2300 printk("ENABLING IO-APIC IRQs\n");
2301
2302 /*
2303 * Set up IO-APIC IRQ routing.
2304 */
2305 if (!acpi_ioapic)
2306 setup_ioapic_ids_from_mpc();
2307 sync_Arb_IDs();
2308 setup_IO_APIC_irqs();
2309 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002310 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (!acpi_ioapic)
2312 print_IO_APIC();
2313}
2314
2315/*
2316 * Called after all the initialization is done. If we didnt find any
2317 * APIC bugs then we can allow the modify fast path
2318 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320static int __init io_apic_bug_finalize(void)
2321{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002322 if (sis_apic_bug == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 sis_apic_bug = 0;
2324 return 0;
2325}
2326
2327late_initcall(io_apic_bug_finalize);
2328
2329struct sysfs_ioapic_data {
2330 struct sys_device dev;
2331 struct IO_APIC_route_entry entry[0];
2332};
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002333static struct sysfs_ioapic_data *mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Pavel Machek438510f2005-04-16 15:25:24 -07002335static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336{
2337 struct IO_APIC_route_entry *entry;
2338 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 data = container_of(dev, struct sysfs_ioapic_data, dev);
2342 entry = data->entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002343 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002344 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 return 0;
2347}
2348
2349static int ioapic_resume(struct sys_device *dev)
2350{
2351 struct IO_APIC_route_entry *entry;
2352 struct sysfs_ioapic_data *data;
2353 unsigned long flags;
2354 union IO_APIC_reg_00 reg_00;
2355 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 data = container_of(dev, struct sysfs_ioapic_data, dev);
2358 entry = data->entry;
2359
2360 spin_lock_irqsave(&ioapic_lock, flags);
2361 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002362 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
2363 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 io_apic_write(dev->id, 0, reg_00.raw);
2365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002367 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002368 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 return 0;
2371}
2372
2373static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002374 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 .suspend = ioapic_suspend,
2376 .resume = ioapic_resume,
2377};
2378
2379static int __init ioapic_init_sysfs(void)
2380{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002381 struct sys_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 int i, size, error = 0;
2383
2384 error = sysdev_class_register(&ioapic_sysdev_class);
2385 if (error)
2386 return error;
2387
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002388 for (i = 0; i < nr_ioapics; i++) {
2389 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02002391 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 if (!mp_ioapic_data[i]) {
2393 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2394 continue;
2395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002397 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 dev->cls = &ioapic_sysdev_class;
2399 error = sysdev_register(dev);
2400 if (error) {
2401 kfree(mp_ioapic_data[i]);
2402 mp_ioapic_data[i] = NULL;
2403 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2404 continue;
2405 }
2406 }
2407
2408 return 0;
2409}
2410
2411device_initcall(ioapic_init_sysfs);
2412
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002413/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002414 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002415 */
2416int create_irq(void)
2417{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002418 /* Allocate an unused irq */
Andi Kleen306a22c2006-12-09 21:33:36 +01002419 int irq, new, vector = 0;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002420 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002421
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002422 irq = -ENOSPC;
2423 spin_lock_irqsave(&vector_lock, flags);
2424 for (new = (NR_IRQS - 1); new >= 0; new--) {
2425 if (platform_legacy_irq(new))
2426 continue;
2427 if (irq_vector[new] != 0)
2428 continue;
2429 vector = __assign_irq_vector(new);
2430 if (likely(vector > 0))
2431 irq = new;
2432 break;
2433 }
2434 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002435
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002436 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002437 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002438 dynamic_irq_init(irq);
2439 }
2440 return irq;
2441}
2442
2443void destroy_irq(unsigned int irq)
2444{
2445 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002446
2447 dynamic_irq_cleanup(irq);
2448
2449 spin_lock_irqsave(&vector_lock, flags);
PJ Waskiewicz9d9ad4b2008-04-25 17:58:52 -07002450 clear_bit(irq_vector[irq], used_vectors);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002451 irq_vector[irq] = 0;
2452 spin_unlock_irqrestore(&vector_lock, flags);
2453}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002454
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002455/*
Simon Arlott27b46d72007-10-20 01:13:56 +02002456 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002457 */
2458#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002459static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002460{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002461 int vector;
2462 unsigned dest;
2463
2464 vector = assign_irq_vector(irq);
2465 if (vector >= 0) {
2466 dest = cpu_mask_to_apicid(TARGET_CPUS);
2467
2468 msg->address_hi = MSI_ADDR_BASE_HI;
2469 msg->address_lo =
2470 MSI_ADDR_BASE_LO |
2471 ((INT_DEST_MODE == 0) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002472MSI_ADDR_DEST_MODE_PHYSICAL:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002473 MSI_ADDR_DEST_MODE_LOGICAL) |
2474 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2475 MSI_ADDR_REDIRECTION_CPU:
2476 MSI_ADDR_REDIRECTION_LOWPRI) |
2477 MSI_ADDR_DEST_ID(dest);
2478
2479 msg->data =
2480 MSI_DATA_TRIGGER_EDGE |
2481 MSI_DATA_LEVEL_ASSERT |
2482 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002483MSI_DATA_DELIVERY_FIXED:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002484 MSI_DATA_DELIVERY_LOWPRI) |
2485 MSI_DATA_VECTOR(vector);
2486 }
2487 return vector;
2488}
2489
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002490#ifdef CONFIG_SMP
2491static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2492{
2493 struct msi_msg msg;
2494 unsigned int dest;
2495 cpumask_t tmp;
2496 int vector;
2497
2498 cpus_and(tmp, mask, cpu_online_map);
2499 if (cpus_empty(tmp))
2500 tmp = TARGET_CPUS;
2501
2502 vector = assign_irq_vector(irq);
2503 if (vector < 0)
2504 return;
2505
2506 dest = cpu_mask_to_apicid(mask);
2507
2508 read_msi_msg(irq, &msg);
2509
2510 msg.data &= ~MSI_DATA_VECTOR_MASK;
2511 msg.data |= MSI_DATA_VECTOR(vector);
2512 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2513 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2514
2515 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002516 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002517}
2518#endif /* CONFIG_SMP */
2519
2520/*
2521 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2522 * which implement the MSI or MSI-X Capability Structure.
2523 */
2524static struct irq_chip msi_chip = {
2525 .name = "PCI-MSI",
2526 .unmask = unmask_msi_irq,
2527 .mask = mask_msi_irq,
2528 .ack = ack_ioapic_irq,
2529#ifdef CONFIG_SMP
2530 .set_affinity = set_msi_irq_affinity,
2531#endif
2532 .retrigger = ioapic_retrigger_irq,
2533};
2534
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002535int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002536{
2537 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002538 int irq, ret;
2539 irq = create_irq();
2540 if (irq < 0)
2541 return irq;
2542
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002543 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002544 if (ret < 0) {
2545 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002546 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002547 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002548
Michael Ellerman7fe37302007-04-18 19:39:21 +10002549 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002550 write_msi_msg(irq, &msg);
2551
Ingo Molnara460e742006-10-17 00:10:03 -07002552 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2553 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002554
Michael Ellerman7fe37302007-04-18 19:39:21 +10002555 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002556}
2557
2558void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002559{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002560 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002561}
2562
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002563#endif /* CONFIG_PCI_MSI */
2564
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002565/*
2566 * Hypertransport interrupt support
2567 */
2568#ifdef CONFIG_HT_IRQ
2569
2570#ifdef CONFIG_SMP
2571
2572static void target_ht_irq(unsigned int irq, unsigned int dest)
2573{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002574 struct ht_irq_msg msg;
2575 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002576
Eric W. Biedermanec683072006-11-08 17:44:57 -08002577 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2578 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002579
Eric W. Biedermanec683072006-11-08 17:44:57 -08002580 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2581 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002582
Eric W. Biedermanec683072006-11-08 17:44:57 -08002583 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002584}
2585
2586static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2587{
2588 unsigned int dest;
2589 cpumask_t tmp;
2590
2591 cpus_and(tmp, mask, cpu_online_map);
2592 if (cpus_empty(tmp))
2593 tmp = TARGET_CPUS;
2594
2595 cpus_and(mask, tmp, CPU_MASK_ALL);
2596
2597 dest = cpu_mask_to_apicid(mask);
2598
2599 target_ht_irq(irq, dest);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002600 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002601}
2602#endif
2603
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002604static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002605 .name = "PCI-HT",
2606 .mask = mask_ht_irq,
2607 .unmask = unmask_ht_irq,
2608 .ack = ack_ioapic_irq,
2609#ifdef CONFIG_SMP
2610 .set_affinity = set_ht_irq_affinity,
2611#endif
2612 .retrigger = ioapic_retrigger_irq,
2613};
2614
2615int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2616{
2617 int vector;
2618
2619 vector = assign_irq_vector(irq);
2620 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002621 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002622 unsigned dest;
2623 cpumask_t tmp;
2624
2625 cpus_clear(tmp);
2626 cpu_set(vector >> 8, tmp);
2627 dest = cpu_mask_to_apicid(tmp);
2628
Eric W. Biedermanec683072006-11-08 17:44:57 -08002629 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002630
Eric W. Biedermanec683072006-11-08 17:44:57 -08002631 msg.address_lo =
2632 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002633 HT_IRQ_LOW_DEST_ID(dest) |
2634 HT_IRQ_LOW_VECTOR(vector) |
2635 ((INT_DEST_MODE == 0) ?
2636 HT_IRQ_LOW_DM_PHYSICAL :
2637 HT_IRQ_LOW_DM_LOGICAL) |
2638 HT_IRQ_LOW_RQEOI_EDGE |
2639 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2640 HT_IRQ_LOW_MT_FIXED :
2641 HT_IRQ_LOW_MT_ARBITRATED) |
2642 HT_IRQ_LOW_IRQ_MASKED;
2643
Eric W. Biedermanec683072006-11-08 17:44:57 -08002644 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002645
Ingo Molnara460e742006-10-17 00:10:03 -07002646 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2647 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002648 }
2649 return vector;
2650}
2651#endif /* CONFIG_HT_IRQ */
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653/* --------------------------------------------------------------------------
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002654 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 -------------------------------------------------------------------------- */
2656
Len Brown888ba6c2005-08-24 12:07:20 -04002657#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002659int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
2661 union IO_APIC_reg_00 reg_00;
2662 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2663 physid_mask_t tmp;
2664 unsigned long flags;
2665 int i = 0;
2666
2667 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002668 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2669 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002671 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2673 * advantage of new APIC bus architecture.
2674 */
2675
2676 if (physids_empty(apic_id_map))
2677 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2678
2679 spin_lock_irqsave(&ioapic_lock, flags);
2680 reg_00.raw = io_apic_read(ioapic, 0);
2681 spin_unlock_irqrestore(&ioapic_lock, flags);
2682
2683 if (apic_id >= get_physical_broadcast()) {
2684 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2685 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2686 apic_id = reg_00.bits.ID;
2687 }
2688
2689 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002690 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 * 'stuck on smp_invalidate_needed IPI wait' messages.
2692 */
2693 if (check_apicid_used(apic_id_map, apic_id)) {
2694
2695 for (i = 0; i < get_physical_broadcast(); i++) {
2696 if (!check_apicid_used(apic_id_map, i))
2697 break;
2698 }
2699
2700 if (i == get_physical_broadcast())
2701 panic("Max apic_id exceeded!\n");
2702
2703 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2704 "trying %d\n", ioapic, apic_id, i);
2705
2706 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 tmp = apicid_to_cpu_present(apic_id);
2710 physids_or(apic_id_map, apic_id_map, tmp);
2711
2712 if (reg_00.bits.ID != apic_id) {
2713 reg_00.bits.ID = apic_id;
2714
2715 spin_lock_irqsave(&ioapic_lock, flags);
2716 io_apic_write(ioapic, 0, reg_00.raw);
2717 reg_00.raw = io_apic_read(ioapic, 0);
2718 spin_unlock_irqrestore(&ioapic_lock, flags);
2719
2720 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002721 if (reg_00.bits.ID != apic_id) {
2722 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2723 return -1;
2724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
2726
2727 apic_printk(APIC_VERBOSE, KERN_INFO
2728 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2729
2730 return apic_id;
2731}
2732
2733
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002734int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735{
2736 union IO_APIC_reg_01 reg_01;
2737 unsigned long flags;
2738
2739 spin_lock_irqsave(&ioapic_lock, flags);
2740 reg_01.raw = io_apic_read(ioapic, 1);
2741 spin_unlock_irqrestore(&ioapic_lock, flags);
2742
2743 return reg_01.bits.version;
2744}
2745
2746
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002747int __init io_apic_get_redir_entries(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 union IO_APIC_reg_01 reg_01;
2750 unsigned long flags;
2751
2752 spin_lock_irqsave(&ioapic_lock, flags);
2753 reg_01.raw = io_apic_read(ioapic, 1);
2754 spin_unlock_irqrestore(&ioapic_lock, flags);
2755
2756 return reg_01.bits.entries;
2757}
2758
2759
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002760int io_apic_set_pci_routing(int ioapic, int pin, int irq, int edge_level, int active_high_low)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
2762 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 if (!IO_APIC_IRQ(irq)) {
2765 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2766 ioapic);
2767 return -EINVAL;
2768 }
2769
2770 /*
2771 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2772 * Note that we mask (disable) IRQs now -- these get enabled when the
2773 * corresponding device driver registers for this IRQ.
2774 */
2775
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002776 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 entry.delivery_mode = INT_DELIVERY_MODE;
2779 entry.dest_mode = INT_DEST_MODE;
2780 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2781 entry.trigger = edge_level;
2782 entry.polarity = active_high_low;
2783 entry.mask = 1;
2784
2785 /*
2786 * IRQs < 16 are already in the irq_2_pin[] map
2787 */
2788 if (irq >= 16)
2789 add_pin_to_irq(irq, ioapic, pin);
2790
2791 entry.vector = assign_irq_vector(irq);
2792
2793 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2794 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002795 mp_ioapics[ioapic].mp_apicid, pin, entry.vector, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 edge_level, active_high_low);
2797
2798 ioapic_register_intr(irq, entry.vector, edge_level);
2799
2800 if (!ioapic && (irq < 16))
2801 disable_8259A_irq(irq);
2802
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09002803 ioapic_write_entry(ioapic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 return 0;
2806}
2807
Shaohua Li61fd47e2007-11-17 01:05:28 -05002808int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2809{
2810 int i;
2811
2812 if (skip_ioapic_setup)
2813 return -1;
2814
2815 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002816 if (mp_irqs[i].mp_irqtype == mp_INT &&
2817 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05002818 break;
2819 if (i >= mp_irq_entries)
2820 return -1;
2821
2822 *trigger = irq_trigger(i);
2823 *polarity = irq_polarity(i);
2824 return 0;
2825}
2826
Len Brown888ba6c2005-08-24 12:07:20 -04002827#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002828
2829static int __init parse_disable_timer_pin_1(char *arg)
2830{
2831 disable_timer_pin_1 = 1;
2832 return 0;
2833}
2834early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2835
2836static int __init parse_enable_timer_pin_1(char *arg)
2837{
2838 disable_timer_pin_1 = -1;
2839 return 0;
2840}
2841early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2842
2843static int __init parse_noapic(char *arg)
2844{
2845 /* disable IO-APIC */
2846 disable_ioapic_setup();
2847 return 0;
2848}
2849early_param("noapic", parse_noapic);