blob: d6af301c822bb4127ca7bcb3dd1a76a7488533e2 [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 Hiroyukic89125992006-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 Hiroyukic89125992006-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}
Glauber Costa3fde6902008-05-28 20:34:19 -07001210
1211void setup_vector_irq(int cpu)
1212{
1213}
1214
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001215static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217#define IOAPIC_AUTO -1
1218#define IOAPIC_EDGE 0
1219#define IOAPIC_LEVEL 1
1220
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001221static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001223 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001224 trigger == IOAPIC_LEVEL) {
1225 irq_desc[irq].status |= IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001226 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1227 handle_fasteoi_irq, "fasteoi");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001228 } else {
1229 irq_desc[irq].status &= ~IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001230 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1231 handle_edge_irq, "edge");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001232 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001233 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static void __init setup_IO_APIC_irqs(void)
1237{
1238 struct IO_APIC_route_entry entry;
1239 int apic, pin, idx, irq, first_notcon = 1, vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1242
1243 for (apic = 0; apic < nr_ioapics; apic++) {
1244 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1245
1246 /*
1247 * add it to the IO-APIC irq-routing table:
1248 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001249 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 entry.delivery_mode = INT_DELIVERY_MODE;
1252 entry.dest_mode = INT_DEST_MODE;
1253 entry.mask = 0; /* enable IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001254 entry.dest.logical.logical_dest =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 cpu_mask_to_apicid(TARGET_CPUS);
1256
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001257 idx = find_irq_entry(apic, pin, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (idx == -1) {
1259 if (first_notcon) {
1260 apic_printk(APIC_VERBOSE, KERN_DEBUG
1261 " IO-APIC (apicid-pin) %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001262 mp_ioapics[apic].mp_apicid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 pin);
1264 first_notcon = 0;
1265 } else
1266 apic_printk(APIC_VERBOSE, ", %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001267 mp_ioapics[apic].mp_apicid, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 continue;
1269 }
1270
Yinghai Lu20d225b2007-10-17 18:04:41 +02001271 if (!first_notcon) {
1272 apic_printk(APIC_VERBOSE, " not connected.\n");
1273 first_notcon = 1;
1274 }
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 entry.trigger = irq_trigger(idx);
1277 entry.polarity = irq_polarity(idx);
1278
1279 if (irq_trigger(idx)) {
1280 entry.trigger = 1;
1281 entry.mask = 1;
1282 }
1283
1284 irq = pin_2_irq(idx, apic, pin);
1285 /*
1286 * skip adding the timer int on secondary nodes, which causes
1287 * a small but painful rift in the time-space continuum
1288 */
1289 if (multi_timer_check(apic, irq))
1290 continue;
1291 else
1292 add_pin_to_irq(irq, apic, pin);
1293
1294 if (!apic && !IO_APIC_IRQ(irq))
1295 continue;
1296
1297 if (IO_APIC_IRQ(irq)) {
1298 vector = assign_irq_vector(irq);
1299 entry.vector = vector;
1300 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (!apic && (irq < 16))
1303 disable_8259A_irq(irq);
1304 }
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09001305 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307 }
1308
1309 if (!first_notcon)
1310 apic_printk(APIC_VERBOSE, " not connected.\n");
1311}
1312
1313/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001314 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001316static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1317 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001321 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /*
1324 * We use logical delivery to get the timer IRQ
1325 * to the first CPU.
1326 */
1327 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001328 entry.mask = 1; /* mask IRQ now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1330 entry.delivery_mode = INT_DELIVERY_MODE;
1331 entry.polarity = 0;
1332 entry.trigger = 0;
1333 entry.vector = vector;
1334
1335 /*
1336 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001337 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Maciej W. Rozyckif0825262008-05-27 21:19:16 +01001339 ioapic_register_intr(0, vector, IOAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 /*
1342 * Add it to the IO-APIC irq-routing table:
1343 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001344 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347void __init print_IO_APIC(void)
1348{
1349 int apic, i;
1350 union IO_APIC_reg_00 reg_00;
1351 union IO_APIC_reg_01 reg_01;
1352 union IO_APIC_reg_02 reg_02;
1353 union IO_APIC_reg_03 reg_03;
1354 unsigned long flags;
1355
1356 if (apic_verbosity == APIC_QUIET)
1357 return;
1358
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001359 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 for (i = 0; i < nr_ioapics; i++)
1361 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001362 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 /*
1365 * We are a bit conservative about what we expect. We have to
1366 * know about every hardware change ASAP.
1367 */
1368 printk(KERN_INFO "testing the IO APIC.......................\n");
1369
1370 for (apic = 0; apic < nr_ioapics; apic++) {
1371
1372 spin_lock_irqsave(&ioapic_lock, flags);
1373 reg_00.raw = io_apic_read(apic, 0);
1374 reg_01.raw = io_apic_read(apic, 1);
1375 if (reg_01.bits.version >= 0x10)
1376 reg_02.raw = io_apic_read(apic, 2);
1377 if (reg_01.bits.version >= 0x20)
1378 reg_03.raw = io_apic_read(apic, 3);
1379 spin_unlock_irqrestore(&ioapic_lock, flags);
1380
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001381 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1383 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1384 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1385 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1388 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1391 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /*
1394 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1395 * but the value of reg_02 is read as the previous read register
1396 * value, so ignore it if reg_02 == reg_01.
1397 */
1398 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1399 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1400 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 /*
1404 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1405 * or reg_03, but the value of reg_0[23] is read as the previous read
1406 * register value, so ignore it if reg_03 == reg_0[12].
1407 */
1408 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1409 reg_03.raw != reg_01.raw) {
1410 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1411 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
1414 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1415
1416 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1417 " Stat Dest Deli Vect: \n");
1418
1419 for (i = 0; i <= reg_01.bits.entries; i++) {
1420 struct IO_APIC_route_entry entry;
1421
Andi Kleencf4c6a22006-09-26 10:52:30 +02001422 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 printk(KERN_DEBUG " %02x %03X %02X ",
1425 i,
1426 entry.dest.logical.logical_dest,
1427 entry.dest.physical.physical_dest
1428 );
1429
1430 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1431 entry.mask,
1432 entry.trigger,
1433 entry.irr,
1434 entry.polarity,
1435 entry.delivery_status,
1436 entry.dest_mode,
1437 entry.delivery_mode,
1438 entry.vector
1439 );
1440 }
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1443 for (i = 0; i < NR_IRQS; i++) {
1444 struct irq_pin_list *entry = irq_2_pin + i;
1445 if (entry->pin < 0)
1446 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001447 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 for (;;) {
1449 printk("-> %d:%d", entry->apic, entry->pin);
1450 if (!entry->next)
1451 break;
1452 entry = irq_2_pin + entry->next;
1453 }
1454 printk("\n");
1455 }
1456
1457 printk(KERN_INFO ".................................... done.\n");
1458
1459 return;
1460}
1461
1462#if 0
1463
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001464static void print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
1466 unsigned int v;
1467 int i, j;
1468
1469 if (apic_verbosity == APIC_QUIET)
1470 return;
1471
1472 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1473 for (i = 0; i < 8; i++) {
1474 v = apic_read(base + i*0x10);
1475 for (j = 0; j < 32; j++) {
1476 if (v & (1<<j))
1477 printk("1");
1478 else
1479 printk("0");
1480 }
1481 printk("\n");
1482 }
1483}
1484
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001485void /*__init*/ print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 unsigned int v, ver, maxlvt;
1488
1489 if (apic_verbosity == APIC_QUIET)
1490 return;
1491
1492 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1493 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001494 v = apic_read(APIC_ID);
Jack Steiner05f2d122008-03-28 14:12:02 -05001495 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
1496 GET_APIC_ID(read_apic_id()));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 v = apic_read(APIC_LVR);
1498 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1499 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001500 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 v = apic_read(APIC_TASKPRI);
1503 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1504
1505 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1506 v = apic_read(APIC_ARBPRI);
1507 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1508 v & APIC_ARBPRI_MASK);
1509 v = apic_read(APIC_PROCPRI);
1510 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1511 }
1512
1513 v = apic_read(APIC_EOI);
1514 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1515 v = apic_read(APIC_RRR);
1516 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1517 v = apic_read(APIC_LDR);
1518 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1519 v = apic_read(APIC_DFR);
1520 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1521 v = apic_read(APIC_SPIV);
1522 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1523
1524 printk(KERN_DEBUG "... APIC ISR field:\n");
1525 print_APIC_bitfield(APIC_ISR);
1526 printk(KERN_DEBUG "... APIC TMR field:\n");
1527 print_APIC_bitfield(APIC_TMR);
1528 printk(KERN_DEBUG "... APIC IRR field:\n");
1529 print_APIC_bitfield(APIC_IRR);
1530
1531 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1532 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1533 apic_write(APIC_ESR, 0);
1534 v = apic_read(APIC_ESR);
1535 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1536 }
1537
1538 v = apic_read(APIC_ICR);
1539 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1540 v = apic_read(APIC_ICR2);
1541 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1542
1543 v = apic_read(APIC_LVTT);
1544 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1545
1546 if (maxlvt > 3) { /* PC is LVT#4. */
1547 v = apic_read(APIC_LVTPC);
1548 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1549 }
1550 v = apic_read(APIC_LVT0);
1551 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1552 v = apic_read(APIC_LVT1);
1553 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1554
1555 if (maxlvt > 2) { /* ERR is LVT#3. */
1556 v = apic_read(APIC_LVTERR);
1557 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1558 }
1559
1560 v = apic_read(APIC_TMICT);
1561 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1562 v = apic_read(APIC_TMCCT);
1563 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1564 v = apic_read(APIC_TDCR);
1565 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1566 printk("\n");
1567}
1568
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001569void print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 on_each_cpu(print_local_APIC, NULL, 1, 1);
1572}
1573
1574void /*__init*/ print_PIC(void)
1575{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 unsigned int v;
1577 unsigned long flags;
1578
1579 if (apic_verbosity == APIC_QUIET)
1580 return;
1581
1582 printk(KERN_DEBUG "\nprinting PIC contents\n");
1583
1584 spin_lock_irqsave(&i8259A_lock, flags);
1585
1586 v = inb(0xa1) << 8 | inb(0x21);
1587 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1588
1589 v = inb(0xa0) << 8 | inb(0x20);
1590 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1591
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001592 outb(0x0b, 0xa0);
1593 outb(0x0b, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 v = inb(0xa0) << 8 | inb(0x20);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001595 outb(0x0a, 0xa0);
1596 outb(0x0a, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 spin_unlock_irqrestore(&i8259A_lock, flags);
1599
1600 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1601
1602 v = inb(0x4d1) << 8 | inb(0x4d0);
1603 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1604}
1605
1606#endif /* 0 */
1607
1608static void __init enable_IO_APIC(void)
1609{
1610 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001611 int i8259_apic, i8259_pin;
1612 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 unsigned long flags;
1614
1615 for (i = 0; i < PIN_MAP_SIZE; i++) {
1616 irq_2_pin[i].pin = -1;
1617 irq_2_pin[i].next = 0;
1618 }
1619 if (!pirqs_enabled)
1620 for (i = 0; i < MAX_PIRQS; i++)
1621 pirq_entries[i] = -1;
1622
1623 /*
1624 * The number of IO-APIC IRQ registers (== #pins):
1625 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001626 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001628 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001630 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1631 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001632 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001633 int pin;
1634 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001635 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001636 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001637 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001638
1639
1640 /* If the interrupt line is enabled and in ExtInt mode
1641 * I have found the pin where the i8259 is connected.
1642 */
1643 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1644 ioapic_i8259.apic = apic;
1645 ioapic_i8259.pin = pin;
1646 goto found_i8259;
1647 }
1648 }
1649 }
1650 found_i8259:
1651 /* Look to see what if the MP table has reported the ExtINT */
1652 /* If we could not find the appropriate pin by looking at the ioapic
1653 * the i8259 probably is not connected the ioapic but give the
1654 * mptable a chance anyway.
1655 */
1656 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1657 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1658 /* Trust the MP table if nothing is setup in the hardware */
1659 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1660 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1661 ioapic_i8259.pin = i8259_pin;
1662 ioapic_i8259.apic = i8259_apic;
1663 }
1664 /* Complain if the MP table and the hardware disagree */
1665 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1666 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1667 {
1668 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
1670
1671 /*
1672 * Do not trust the IO-APIC being empty at bootup
1673 */
1674 clear_IO_APIC();
1675}
1676
1677/*
1678 * Not an __init, needed by the reboot code
1679 */
1680void disable_IO_APIC(void)
1681{
1682 /*
1683 * Clear the IO-APIC before rebooting:
1684 */
1685 clear_IO_APIC();
1686
Eric W. Biederman650927e2005-06-25 14:57:44 -07001687 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001688 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001689 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001690 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001691 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001692 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001693 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001694
1695 memset(&entry, 0, sizeof(entry));
1696 entry.mask = 0; /* Enabled */
1697 entry.trigger = 0; /* Edge */
1698 entry.irr = 0;
1699 entry.polarity = 0; /* High */
1700 entry.delivery_status = 0;
1701 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001702 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001703 entry.vector = 0;
Vivek Goyal76865c32006-01-06 00:12:19 -08001704 entry.dest.physical.physical_dest =
Jack Steiner05f2d122008-03-28 14:12:02 -05001705 GET_APIC_ID(read_apic_id());
Eric W. Biederman650927e2005-06-25 14:57:44 -07001706
1707 /*
1708 * Add it to the IO-APIC irq-routing table:
1709 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001710 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001711 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001712 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
1715/*
1716 * function to set the IO-APIC physical IDs based on the
1717 * values stored in the MPC table.
1718 *
1719 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1720 */
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722static void __init setup_ioapic_ids_from_mpc(void)
1723{
1724 union IO_APIC_reg_00 reg_00;
1725 physid_mask_t phys_id_present_map;
1726 int apic;
1727 int i;
1728 unsigned char old_id;
1729 unsigned long flags;
1730
Yinghai Lud49c4282008-06-08 18:31:54 -07001731#ifdef CONFIG_X86_NUMAQ
1732 if (found_numaq)
1733 return;
1734#endif
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001737 * Don't check I/O APIC IDs for xAPIC systems. They have
1738 * no meaning without the serial APIC bus.
1739 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001740 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1741 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001742 return;
1743 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * This is broken; anything with a real cpu count has to
1745 * circumvent this idiocy regardless.
1746 */
1747 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1748
1749 /*
1750 * Set the IOAPIC ID to the value stored in the MPC table.
1751 */
1752 for (apic = 0; apic < nr_ioapics; apic++) {
1753
1754 /* Read the register 0 value */
1755 spin_lock_irqsave(&ioapic_lock, flags);
1756 reg_00.raw = io_apic_read(apic, 0);
1757 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001758
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001759 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001761 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001763 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1765 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001766 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /*
1770 * Sanity check, is the ID really free? Every APIC in a
1771 * system must have a unique ID or we get lots of nice
1772 * 'stuck on smp_invalidate_needed IPI wait' messages.
1773 */
1774 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001775 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001777 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 for (i = 0; i < get_physical_broadcast(); i++)
1779 if (!physid_isset(i, phys_id_present_map))
1780 break;
1781 if (i >= get_physical_broadcast())
1782 panic("Max APIC ID exceeded!\n");
1783 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1784 i);
1785 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001786 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 } else {
1788 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001789 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 apic_printk(APIC_VERBOSE, "Setting %d in the "
1791 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001792 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1794 }
1795
1796
1797 /*
1798 * We need to adjust the IRQ routing table
1799 * if the ID changed.
1800 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001801 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001803 if (mp_irqs[i].mp_dstapic == old_id)
1804 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001805 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 /*
1808 * Read the right value from the MPC table and
1809 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 apic_printk(APIC_VERBOSE, KERN_INFO
1812 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001813 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001815 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 spin_lock_irqsave(&ioapic_lock, flags);
1817 io_apic_write(apic, 0, reg_00.raw);
1818 spin_unlock_irqrestore(&ioapic_lock, flags);
1819
1820 /*
1821 * Sanity check
1822 */
1823 spin_lock_irqsave(&ioapic_lock, flags);
1824 reg_00.raw = io_apic_read(apic, 0);
1825 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001826 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 printk("could not set ID!\n");
1828 else
1829 apic_printk(APIC_VERBOSE, " ok.\n");
1830 }
1831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01001833int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01001834
1835static int __init notimercheck(char *s)
1836{
1837 no_timer_check = 1;
1838 return 1;
1839}
1840__setup("no_timer_check", notimercheck);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842/*
1843 * There is a nasty bug in some older SMP boards, their mptable lies
1844 * about the timer IRQ. We do the following to work around the situation:
1845 *
1846 * - timer IRQ defaults to IO-APIC IRQ
1847 * - if this function detects that timer IRQs are defunct, then we fall
1848 * back to ISA timer IRQs
1849 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02001850static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01001853 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Zachary Amsden8542b202006-12-07 02:14:09 +01001855 if (no_timer_check)
1856 return 1;
1857
Ingo Molnar4aae0702007-12-18 18:05:58 +01001858 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 local_irq_enable();
1860 /* Let ten ticks pass... */
1861 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01001862 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 /*
1865 * Expect a few ticks at least, to be sure some possible
1866 * glue logic does not lock up after one or two first
1867 * ticks in a non-ExtINT mode. Also the local APIC
1868 * might have cached one ExtINT interrupt. Finally, at
1869 * least one tick may be lost due to delays.
1870 */
Julia Lawall1d16b532008-01-30 13:32:19 +01001871 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return 1;
1873
1874 return 0;
1875}
1876
1877/*
1878 * In the SMP+IOAPIC case it might happen that there are an unspecified
1879 * number of pending IRQ events unhandled. These cases are very rare,
1880 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1881 * better to do it this way as thus we do not have to be aware of
1882 * 'pending' interrupts in the IRQ path, except at this point.
1883 */
1884/*
1885 * Edge triggered needs to resend any interrupt
1886 * that was delayed but this is now handled in the device
1887 * independent code.
1888 */
1889
1890/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001891 * Startup quirk:
1892 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 * Starting up a edge-triggered IO-APIC interrupt is
1894 * nasty - we need to make sure that we get the edge.
1895 * If it is already asserted for some reason, we need
1896 * return 1 to indicate that is was pending.
1897 *
1898 * This is not complete - we should be able to fake
1899 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001900 *
1901 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001903static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
1905 int was_pending = 0;
1906 unsigned long flags;
1907
1908 spin_lock_irqsave(&ioapic_lock, flags);
1909 if (irq < 16) {
1910 disable_8259A_irq(irq);
1911 if (i8259A_irq_pending(irq))
1912 was_pending = 1;
1913 }
1914 __unmask_IO_APIC_irq(irq);
1915 spin_unlock_irqrestore(&ioapic_lock, flags);
1916
1917 return was_pending;
1918}
1919
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001920static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001922 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 ack_APIC_irq();
1924}
1925
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001926static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 unsigned long v;
1929 int i;
1930
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001931 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932/*
1933 * It appears there is an erratum which affects at least version 0x11
1934 * of I/O APIC (that's the 82093AA and cores integrated into various
1935 * chipsets). Under certain conditions a level-triggered interrupt is
1936 * erroneously delivered as edge-triggered one but the respective IRR
1937 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1938 * message but it will never arrive and further interrupts are blocked
1939 * from the source. The exact reason is so far unknown, but the
1940 * phenomenon was observed when two consecutive interrupt requests
1941 * from a given source get delivered to the same CPU and the source is
1942 * temporarily disabled in between.
1943 *
1944 * A workaround is to simulate an EOI message manually. We achieve it
1945 * by setting the trigger mode to edge and then to level when the edge
1946 * trigger mode gets detected in the TMR of a local APIC for a
1947 * level-triggered interrupt. We mask the source for the time of the
1948 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1949 * The idea is from Manfred Spraul. --macro
1950 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001951 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1954
1955 ack_APIC_irq();
1956
1957 if (!(v & (1 << (i & 0x1f)))) {
1958 atomic_inc(&irq_mis_count);
1959 spin_lock(&ioapic_lock);
1960 __mask_and_edge_IO_APIC_irq(irq);
1961 __unmask_and_level_IO_APIC_irq(irq);
1962 spin_unlock(&ioapic_lock);
1963 }
1964}
1965
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001966static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001968 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001969
1970 return 1;
1971}
1972
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001973static struct irq_chip ioapic_chip __read_mostly = {
1974 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001975 .startup = startup_ioapic_irq,
1976 .mask = mask_IO_APIC_irq,
1977 .unmask = unmask_IO_APIC_irq,
1978 .ack = ack_ioapic_irq,
1979 .eoi = ack_ioapic_quirk_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001980#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001981 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001982#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001983 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984};
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987static inline void init_IO_APIC_traps(void)
1988{
1989 int irq;
1990
1991 /*
1992 * NOTE! The local APIC isn't very good at handling
1993 * multiple interrupts at the same interrupt level.
1994 * As the interrupt level is determined by taking the
1995 * vector number and shifting that right by 4, we
1996 * want to spread these out a bit so that they don't
1997 * all fall in the same interrupt level.
1998 *
1999 * Also, we've got to be careful not to trash gate
2000 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2001 */
2002 for (irq = 0; irq < NR_IRQS ; irq++) {
Akinobu Mitaaddfc662008-04-05 22:39:07 +09002003 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /*
2005 * Hmm.. We don't have an entry for this,
2006 * so default to an old-fashioned 8259
2007 * interrupt if we can..
2008 */
2009 if (irq < 16)
2010 make_8259A_irq(irq);
2011 else
2012 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002013 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
2015 }
2016}
2017
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002018/*
2019 * The local APIC irq-chip implementation:
2020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002022static void ack_apic(unsigned int irq)
2023{
2024 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002027static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 unsigned long v;
2030
2031 v = apic_read(APIC_LVT0);
2032 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2033}
2034
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002035static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002037 unsigned long v;
2038
2039 v = apic_read(APIC_LVT0);
2040 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041}
2042
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002043static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002044 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002045 .mask = mask_lapic_irq,
2046 .unmask = unmask_lapic_irq,
2047 .eoi = ack_apic,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048};
2049
Jan Beuliche9427102008-01-30 13:31:24 +01002050static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
2052 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002053 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 * We put the 8259A master into AEOI mode and
2055 * unmask on all local APICs LVT0 as NMI.
2056 *
2057 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2058 * is from Maciej W. Rozycki - so we do not have to EOI from
2059 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002060 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2062
Jan Beuliche9427102008-01-30 13:31:24 +01002063 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 apic_printk(APIC_VERBOSE, " done.\n");
2066}
2067
2068/*
2069 * This looks a bit hackish but it's about the only one way of sending
2070 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2071 * not support the ExtINT mode, unfortunately. We need to send these
2072 * cycles as some i82489DX-based boards have glue logic that keeps the
2073 * 8259A interrupt line asserted until INTA. --macro
2074 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002075static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002077 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 struct IO_APIC_route_entry entry0, entry1;
2079 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002081 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002082 if (pin == -1) {
2083 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002085 }
2086 apic = find_isa_irq_apic(8, mp_INT);
2087 if (apic == -1) {
2088 WARN_ON_ONCE(1);
2089 return;
2090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Andi Kleencf4c6a22006-09-26 10:52:30 +02002092 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002093 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 memset(&entry1, 0, sizeof(entry1));
2096
2097 entry1.dest_mode = 0; /* physical delivery */
2098 entry1.mask = 0; /* unmask IRQ now */
2099 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2100 entry1.delivery_mode = dest_ExtINT;
2101 entry1.polarity = entry0.polarity;
2102 entry1.trigger = 0;
2103 entry1.vector = 0;
2104
Andi Kleencf4c6a22006-09-26 10:52:30 +02002105 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 save_control = CMOS_READ(RTC_CONTROL);
2108 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2109 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2110 RTC_FREQ_SELECT);
2111 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2112
2113 i = 100;
2114 while (i-- > 0) {
2115 mdelay(10);
2116 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2117 i -= 10;
2118 }
2119
2120 CMOS_WRITE(save_control, RTC_CONTROL);
2121 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002122 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Andi Kleencf4c6a22006-09-26 10:52:30 +02002124 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127/*
2128 * This code may look a bit paranoid, but it's supposed to cooperate with
2129 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2130 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2131 * fanatically on his truly buggy board.
2132 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002133static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002135 int apic1, pin1, apic2, pin2;
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002136 int no_pin1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 int vector;
Ingo Molnar6e908942008-03-21 14:32:36 +01002138 unsigned int ver;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002139 unsigned long flags;
2140
2141 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002142
Ingo Molnar6e908942008-03-21 14:32:36 +01002143 ver = apic_read(APIC_LVR);
2144 ver = GET_APIC_VERSION(ver);
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 /*
2147 * get/set the timer IRQ vector:
2148 */
2149 disable_8259A_irq(0);
2150 vector = assign_irq_vector(0);
2151 set_intr_gate(vector, interrupt[0]);
2152
2153 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002154 * As IRQ0 is to be enabled in the 8259A, the virtual
2155 * wire has to be disabled in the local APIC. Also
2156 * timer interrupts need to be acknowledged manually in
2157 * the 8259A for the i82489DX when using the NMI
2158 * watchdog as that APIC treats NMIs as level-triggered.
2159 * The AEOI mode will finish them in the 8259A
2160 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 */
2162 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2163 init_8259A(1);
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002164 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002166 pin1 = find_isa_irq_pin(0, mp_INT);
2167 apic1 = find_isa_irq_apic(0, mp_INT);
2168 pin2 = ioapic_i8259.pin;
2169 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002171 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2172 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002174 /*
2175 * Some BIOS writers are clueless and report the ExtINTA
2176 * I/O APIC input from the cascaded 8259A as the timer
2177 * interrupt input. So just in case, if only one pin
2178 * was found above, try it both directly and through the
2179 * 8259A.
2180 */
2181 if (pin1 == -1) {
2182 pin1 = pin2;
2183 apic1 = apic2;
2184 no_pin1 = 1;
2185 } else if (pin2 == -1) {
2186 pin2 = pin1;
2187 apic2 = apic1;
2188 }
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (pin1 != -1) {
2191 /*
2192 * Ok, does IRQ0 through the IOAPIC work?
2193 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002194 if (no_pin1) {
2195 add_pin_to_irq(0, apic1, pin1);
2196 setup_timer_IRQ0_pin(apic1, pin1, vector);
2197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 unmask_IO_APIC_irq(0);
2199 if (timer_irq_works()) {
2200 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 setup_nmi();
2202 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002204 if (disable_timer_pin_1 > 0)
2205 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002206 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002208 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002209 if (!no_pin1)
2210 printk(KERN_ERR "..MP-BIOS bug: "
2211 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002213 printk(KERN_INFO "...trying to set up timer (IRQ0) "
2214 "through the 8259A ... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 printk("\n..... (found pin %d) ...", pin2);
2216 /*
2217 * legacy devices should be connected to IO APIC #0
2218 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002219 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01002220 setup_timer_IRQ0_pin(apic2, pin2, vector);
Maciej W. Rozycki24742ece82008-05-27 21:19:40 +01002221 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002222 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (timer_irq_works()) {
2224 printk("works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002225 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002227 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002229 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233 /*
2234 * Cleanup, just in case ...
2235 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002236 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002237 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002238 printk(" failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 if (nmi_watchdog == NMI_IO_APIC) {
2242 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002243 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002245 timer_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2248
Ingo Molnara460e742006-10-17 00:10:03 -07002249 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
Maciej W. Rozycki2e188932007-02-13 13:26:20 +01002250 "fasteoi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2252 enable_8259A_irq(0);
2253
2254 if (timer_irq_works()) {
2255 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002256 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002258 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2260 printk(" failed.\n");
2261
2262 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 init_8259A(0);
2265 make_8259A_irq(0);
2266 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2267
2268 unlock_ExtINT_logic();
2269
2270 if (timer_irq_works()) {
2271 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002272 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274 printk(" failed :(.\n");
2275 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2276 "report. Then try booting with the 'noapic' option");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002277out:
2278 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
2280
2281/*
2282 *
2283 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2284 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2285 * Linux doesn't really care, as it's not actually used
2286 * for any interrupt handling anyway.
2287 */
2288#define PIC_IRQS (1 << PIC_CASCADE_IR)
2289
2290void __init setup_IO_APIC(void)
2291{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002292 int i;
2293
2294 /* Reserve all the system vectors. */
Alan Mayer305b92a2008-04-15 15:36:56 -05002295 for (i = first_system_vector; i < NR_VECTORS; i++)
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002296 set_bit(i, used_vectors);
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 enable_IO_APIC();
2299
2300 if (acpi_ioapic)
2301 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2302 else
2303 io_apic_irqs = ~PIC_IRQS;
2304
2305 printk("ENABLING IO-APIC IRQs\n");
2306
2307 /*
2308 * Set up IO-APIC IRQ routing.
2309 */
2310 if (!acpi_ioapic)
2311 setup_ioapic_ids_from_mpc();
2312 sync_Arb_IDs();
2313 setup_IO_APIC_irqs();
2314 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002315 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (!acpi_ioapic)
2317 print_IO_APIC();
2318}
2319
2320/*
2321 * Called after all the initialization is done. If we didnt find any
2322 * APIC bugs then we can allow the modify fast path
2323 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325static int __init io_apic_bug_finalize(void)
2326{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002327 if (sis_apic_bug == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 sis_apic_bug = 0;
2329 return 0;
2330}
2331
2332late_initcall(io_apic_bug_finalize);
2333
2334struct sysfs_ioapic_data {
2335 struct sys_device dev;
2336 struct IO_APIC_route_entry entry[0];
2337};
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002338static struct sysfs_ioapic_data *mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Pavel Machek438510f2005-04-16 15:25:24 -07002340static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
2342 struct IO_APIC_route_entry *entry;
2343 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 data = container_of(dev, struct sysfs_ioapic_data, dev);
2347 entry = data->entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002348 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002349 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 return 0;
2352}
2353
2354static int ioapic_resume(struct sys_device *dev)
2355{
2356 struct IO_APIC_route_entry *entry;
2357 struct sysfs_ioapic_data *data;
2358 unsigned long flags;
2359 union IO_APIC_reg_00 reg_00;
2360 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 data = container_of(dev, struct sysfs_ioapic_data, dev);
2363 entry = data->entry;
2364
2365 spin_lock_irqsave(&ioapic_lock, flags);
2366 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002367 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
2368 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 io_apic_write(dev->id, 0, reg_00.raw);
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002372 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002373 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 return 0;
2376}
2377
2378static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +01002379 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 .suspend = ioapic_suspend,
2381 .resume = ioapic_resume,
2382};
2383
2384static int __init ioapic_init_sysfs(void)
2385{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002386 struct sys_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 int i, size, error = 0;
2388
2389 error = sysdev_class_register(&ioapic_sysdev_class);
2390 if (error)
2391 return error;
2392
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002393 for (i = 0; i < nr_ioapics; i++) {
2394 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02002396 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 if (!mp_ioapic_data[i]) {
2398 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2399 continue;
2400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002402 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 dev->cls = &ioapic_sysdev_class;
2404 error = sysdev_register(dev);
2405 if (error) {
2406 kfree(mp_ioapic_data[i]);
2407 mp_ioapic_data[i] = NULL;
2408 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2409 continue;
2410 }
2411 }
2412
2413 return 0;
2414}
2415
2416device_initcall(ioapic_init_sysfs);
2417
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002418/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002419 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002420 */
2421int create_irq(void)
2422{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002423 /* Allocate an unused irq */
Andi Kleen306a22c2006-12-09 21:33:36 +01002424 int irq, new, vector = 0;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002425 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002426
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002427 irq = -ENOSPC;
2428 spin_lock_irqsave(&vector_lock, flags);
2429 for (new = (NR_IRQS - 1); new >= 0; new--) {
2430 if (platform_legacy_irq(new))
2431 continue;
2432 if (irq_vector[new] != 0)
2433 continue;
2434 vector = __assign_irq_vector(new);
2435 if (likely(vector > 0))
2436 irq = new;
2437 break;
2438 }
2439 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002440
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002441 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002442 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002443 dynamic_irq_init(irq);
2444 }
2445 return irq;
2446}
2447
2448void destroy_irq(unsigned int irq)
2449{
2450 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002451
2452 dynamic_irq_cleanup(irq);
2453
2454 spin_lock_irqsave(&vector_lock, flags);
PJ Waskiewicz9d9ad4b2008-04-25 17:58:52 -07002455 clear_bit(irq_vector[irq], used_vectors);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002456 irq_vector[irq] = 0;
2457 spin_unlock_irqrestore(&vector_lock, flags);
2458}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002459
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002460/*
Simon Arlott27b46d72007-10-20 01:13:56 +02002461 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002462 */
2463#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002464static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002465{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002466 int vector;
2467 unsigned dest;
2468
2469 vector = assign_irq_vector(irq);
2470 if (vector >= 0) {
2471 dest = cpu_mask_to_apicid(TARGET_CPUS);
2472
2473 msg->address_hi = MSI_ADDR_BASE_HI;
2474 msg->address_lo =
2475 MSI_ADDR_BASE_LO |
2476 ((INT_DEST_MODE == 0) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002477MSI_ADDR_DEST_MODE_PHYSICAL:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002478 MSI_ADDR_DEST_MODE_LOGICAL) |
2479 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2480 MSI_ADDR_REDIRECTION_CPU:
2481 MSI_ADDR_REDIRECTION_LOWPRI) |
2482 MSI_ADDR_DEST_ID(dest);
2483
2484 msg->data =
2485 MSI_DATA_TRIGGER_EDGE |
2486 MSI_DATA_LEVEL_ASSERT |
2487 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002488MSI_DATA_DELIVERY_FIXED:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002489 MSI_DATA_DELIVERY_LOWPRI) |
2490 MSI_DATA_VECTOR(vector);
2491 }
2492 return vector;
2493}
2494
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002495#ifdef CONFIG_SMP
2496static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2497{
2498 struct msi_msg msg;
2499 unsigned int dest;
2500 cpumask_t tmp;
2501 int vector;
2502
2503 cpus_and(tmp, mask, cpu_online_map);
2504 if (cpus_empty(tmp))
2505 tmp = TARGET_CPUS;
2506
2507 vector = assign_irq_vector(irq);
2508 if (vector < 0)
2509 return;
2510
2511 dest = cpu_mask_to_apicid(mask);
2512
2513 read_msi_msg(irq, &msg);
2514
2515 msg.data &= ~MSI_DATA_VECTOR_MASK;
2516 msg.data |= MSI_DATA_VECTOR(vector);
2517 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2518 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2519
2520 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002521 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002522}
2523#endif /* CONFIG_SMP */
2524
2525/*
2526 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2527 * which implement the MSI or MSI-X Capability Structure.
2528 */
2529static struct irq_chip msi_chip = {
2530 .name = "PCI-MSI",
2531 .unmask = unmask_msi_irq,
2532 .mask = mask_msi_irq,
2533 .ack = ack_ioapic_irq,
2534#ifdef CONFIG_SMP
2535 .set_affinity = set_msi_irq_affinity,
2536#endif
2537 .retrigger = ioapic_retrigger_irq,
2538};
2539
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002540int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002541{
2542 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002543 int irq, ret;
2544 irq = create_irq();
2545 if (irq < 0)
2546 return irq;
2547
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002548 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002549 if (ret < 0) {
2550 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002551 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002552 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002553
Michael Ellerman7fe37302007-04-18 19:39:21 +10002554 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002555 write_msi_msg(irq, &msg);
2556
Ingo Molnara460e742006-10-17 00:10:03 -07002557 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2558 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002559
Michael Ellerman7fe37302007-04-18 19:39:21 +10002560 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002561}
2562
2563void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002564{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002565 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002566}
2567
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002568#endif /* CONFIG_PCI_MSI */
2569
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002570/*
2571 * Hypertransport interrupt support
2572 */
2573#ifdef CONFIG_HT_IRQ
2574
2575#ifdef CONFIG_SMP
2576
2577static void target_ht_irq(unsigned int irq, unsigned int dest)
2578{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002579 struct ht_irq_msg msg;
2580 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002581
Eric W. Biedermanec683072006-11-08 17:44:57 -08002582 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2583 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002584
Eric W. Biedermanec683072006-11-08 17:44:57 -08002585 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2586 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002587
Eric W. Biedermanec683072006-11-08 17:44:57 -08002588 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002589}
2590
2591static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2592{
2593 unsigned int dest;
2594 cpumask_t tmp;
2595
2596 cpus_and(tmp, mask, cpu_online_map);
2597 if (cpus_empty(tmp))
2598 tmp = TARGET_CPUS;
2599
2600 cpus_and(mask, tmp, CPU_MASK_ALL);
2601
2602 dest = cpu_mask_to_apicid(mask);
2603
2604 target_ht_irq(irq, dest);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002605 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002606}
2607#endif
2608
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002609static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002610 .name = "PCI-HT",
2611 .mask = mask_ht_irq,
2612 .unmask = unmask_ht_irq,
2613 .ack = ack_ioapic_irq,
2614#ifdef CONFIG_SMP
2615 .set_affinity = set_ht_irq_affinity,
2616#endif
2617 .retrigger = ioapic_retrigger_irq,
2618};
2619
2620int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2621{
2622 int vector;
2623
2624 vector = assign_irq_vector(irq);
2625 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002626 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002627 unsigned dest;
2628 cpumask_t tmp;
2629
2630 cpus_clear(tmp);
2631 cpu_set(vector >> 8, tmp);
2632 dest = cpu_mask_to_apicid(tmp);
2633
Eric W. Biedermanec683072006-11-08 17:44:57 -08002634 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002635
Eric W. Biedermanec683072006-11-08 17:44:57 -08002636 msg.address_lo =
2637 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002638 HT_IRQ_LOW_DEST_ID(dest) |
2639 HT_IRQ_LOW_VECTOR(vector) |
2640 ((INT_DEST_MODE == 0) ?
2641 HT_IRQ_LOW_DM_PHYSICAL :
2642 HT_IRQ_LOW_DM_LOGICAL) |
2643 HT_IRQ_LOW_RQEOI_EDGE |
2644 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2645 HT_IRQ_LOW_MT_FIXED :
2646 HT_IRQ_LOW_MT_ARBITRATED) |
2647 HT_IRQ_LOW_IRQ_MASKED;
2648
Eric W. Biedermanec683072006-11-08 17:44:57 -08002649 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002650
Ingo Molnara460e742006-10-17 00:10:03 -07002651 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2652 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002653 }
2654 return vector;
2655}
2656#endif /* CONFIG_HT_IRQ */
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658/* --------------------------------------------------------------------------
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002659 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 -------------------------------------------------------------------------- */
2661
Len Brown888ba6c2005-08-24 12:07:20 -04002662#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002664int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 union IO_APIC_reg_00 reg_00;
2667 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2668 physid_mask_t tmp;
2669 unsigned long flags;
2670 int i = 0;
2671
2672 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002673 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2674 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002676 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2678 * advantage of new APIC bus architecture.
2679 */
2680
2681 if (physids_empty(apic_id_map))
2682 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2683
2684 spin_lock_irqsave(&ioapic_lock, flags);
2685 reg_00.raw = io_apic_read(ioapic, 0);
2686 spin_unlock_irqrestore(&ioapic_lock, flags);
2687
2688 if (apic_id >= get_physical_broadcast()) {
2689 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2690 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2691 apic_id = reg_00.bits.ID;
2692 }
2693
2694 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002695 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 * 'stuck on smp_invalidate_needed IPI wait' messages.
2697 */
2698 if (check_apicid_used(apic_id_map, apic_id)) {
2699
2700 for (i = 0; i < get_physical_broadcast(); i++) {
2701 if (!check_apicid_used(apic_id_map, i))
2702 break;
2703 }
2704
2705 if (i == get_physical_broadcast())
2706 panic("Max apic_id exceeded!\n");
2707
2708 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2709 "trying %d\n", ioapic, apic_id, i);
2710
2711 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714 tmp = apicid_to_cpu_present(apic_id);
2715 physids_or(apic_id_map, apic_id_map, tmp);
2716
2717 if (reg_00.bits.ID != apic_id) {
2718 reg_00.bits.ID = apic_id;
2719
2720 spin_lock_irqsave(&ioapic_lock, flags);
2721 io_apic_write(ioapic, 0, reg_00.raw);
2722 reg_00.raw = io_apic_read(ioapic, 0);
2723 spin_unlock_irqrestore(&ioapic_lock, flags);
2724
2725 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002726 if (reg_00.bits.ID != apic_id) {
2727 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2728 return -1;
2729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
2731
2732 apic_printk(APIC_VERBOSE, KERN_INFO
2733 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2734
2735 return apic_id;
2736}
2737
2738
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002739int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
2741 union IO_APIC_reg_01 reg_01;
2742 unsigned long flags;
2743
2744 spin_lock_irqsave(&ioapic_lock, flags);
2745 reg_01.raw = io_apic_read(ioapic, 1);
2746 spin_unlock_irqrestore(&ioapic_lock, flags);
2747
2748 return reg_01.bits.version;
2749}
2750
2751
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002752int __init io_apic_get_redir_entries(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
2754 union IO_APIC_reg_01 reg_01;
2755 unsigned long flags;
2756
2757 spin_lock_irqsave(&ioapic_lock, flags);
2758 reg_01.raw = io_apic_read(ioapic, 1);
2759 spin_unlock_irqrestore(&ioapic_lock, flags);
2760
2761 return reg_01.bits.entries;
2762}
2763
2764
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002765int 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 -07002766{
2767 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 if (!IO_APIC_IRQ(irq)) {
2770 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2771 ioapic);
2772 return -EINVAL;
2773 }
2774
2775 /*
2776 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2777 * Note that we mask (disable) IRQs now -- these get enabled when the
2778 * corresponding device driver registers for this IRQ.
2779 */
2780
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002781 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783 entry.delivery_mode = INT_DELIVERY_MODE;
2784 entry.dest_mode = INT_DEST_MODE;
2785 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2786 entry.trigger = edge_level;
2787 entry.polarity = active_high_low;
2788 entry.mask = 1;
2789
2790 /*
2791 * IRQs < 16 are already in the irq_2_pin[] map
2792 */
2793 if (irq >= 16)
2794 add_pin_to_irq(irq, ioapic, pin);
2795
2796 entry.vector = assign_irq_vector(irq);
2797
2798 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2799 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002800 mp_ioapics[ioapic].mp_apicid, pin, entry.vector, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 edge_level, active_high_low);
2802
2803 ioapic_register_intr(irq, entry.vector, edge_level);
2804
2805 if (!ioapic && (irq < 16))
2806 disable_8259A_irq(irq);
2807
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09002808 ioapic_write_entry(ioapic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 return 0;
2811}
2812
Shaohua Li61fd47e2007-11-17 01:05:28 -05002813int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2814{
2815 int i;
2816
2817 if (skip_ioapic_setup)
2818 return -1;
2819
2820 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002821 if (mp_irqs[i].mp_irqtype == mp_INT &&
2822 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05002823 break;
2824 if (i >= mp_irq_entries)
2825 return -1;
2826
2827 *trigger = irq_trigger(i);
2828 *polarity = irq_polarity(i);
2829 return 0;
2830}
2831
Len Brown888ba6c2005-08-24 12:07:20 -04002832#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002833
2834static int __init parse_disable_timer_pin_1(char *arg)
2835{
2836 disable_timer_pin_1 = 1;
2837 return 0;
2838}
2839early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2840
2841static int __init parse_enable_timer_pin_1(char *arg)
2842{
2843 disable_timer_pin_1 = -1;
2844 return 0;
2845}
2846early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2847
2848static int __init parse_noapic(char *arg)
2849{
2850 /* disable IO-APIC */
2851 disable_ioapic_setup();
2852 return 0;
2853}
2854early_param("noapic", parse_noapic);