blob: 72ba06314c7b2ee2911d5a35fda07e99a891c097 [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>
Yinghai Luf3294a32008-06-27 01:41:56 -070028#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070034#include <linux/pci.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070035#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070036#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020038#include <linux/kthread.h>
Julia Lawall1d16b532008-01-30 13:32:19 +010039#include <linux/jiffies.h> /* time_after() */
Ashok Raj54d5d422005-09-06 15:16:15 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42#include <asm/smp.h>
43#include <asm/desc.h>
44#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070045#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020046#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070047#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070048#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070049#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020052#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054int (*ioapic_renumber_irq)(int ioapic, int irq);
55atomic_t irq_mis_count;
56
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -080057/* Where if anywhere is the i8259 connect in external int mode */
58static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static DEFINE_SPINLOCK(ioapic_lock);
Jan Beulich0a1ad602006-06-26 13:56:43 +020061static DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Maciej W. Rozycki35542c52008-05-21 22:10:22 +010063int timer_through_8259 __initdata;
Andi Kleenf9262c12006-03-08 17:57:25 -080064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * Is the SiS APIC rmw bug present ?
67 * -1 = don't know, 0 = no, 1 = yes
68 */
69int sis_apic_bug = -1;
70
71/*
72 * # of IRQ routing registers
73 */
74int nr_ioapic_registers[MAX_IO_APICS];
75
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040076/* I/O APIC entries */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +040077struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040078int nr_ioapics;
79
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040080/* MP IRQ source entries */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +040081struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040082
83/* # of MP IRQ source entries */
84int mp_irq_entries;
85
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040086#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
87int mp_bus_id_to_type[MAX_MP_BUSSES];
88#endif
89
90DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
91
Rusty Russell1a3f2392006-09-26 10:52:32 +020092static int disable_timer_pin_1 __initdata;
Chuck Ebbert66759a02005-09-12 18:49:25 +020093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * Rough estimation of how many shared IRQs there are, can
96 * be changed anytime.
97 */
98#define MAX_PLUS_SHARED_IRQS NR_IRQS
99#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
100
101/*
102 * This is performance-critical, we want to do it O(1)
103 *
104 * the indexing order of this array favors 1:1 mappings
105 * between pins and IRQs.
106 */
107
108static struct irq_pin_list {
109 int apic, pin, next;
110} irq_2_pin[PIN_MAP_SIZE];
111
Linus Torvalds130fe052006-11-01 09:11:00 -0800112struct io_apic {
113 unsigned int index;
114 unsigned int unused[3];
115 unsigned int data;
116};
117
118static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
119{
120 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400121 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800122}
123
124static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
125{
126 struct io_apic __iomem *io_apic = io_apic_base(apic);
127 writel(reg, &io_apic->index);
128 return readl(&io_apic->data);
129}
130
131static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
132{
133 struct io_apic __iomem *io_apic = io_apic_base(apic);
134 writel(reg, &io_apic->index);
135 writel(value, &io_apic->data);
136}
137
138/*
139 * Re-write a value: to be used for read-modify-write
140 * cycles where the read already set up the index register.
141 *
142 * Older SiS APIC requires we rewrite the index register
143 */
144static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
145{
Al Virocb468982007-02-09 16:39:25 +0000146 volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
Linus Torvalds130fe052006-11-01 09:11:00 -0800147 if (sis_apic_bug)
148 writel(reg, &io_apic->index);
149 writel(value, &io_apic->data);
150}
151
Andi Kleencf4c6a22006-09-26 10:52:30 +0200152union entry_union {
153 struct { u32 w1, w2; };
154 struct IO_APIC_route_entry entry;
155};
156
157static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
158{
159 union entry_union eu;
160 unsigned long flags;
161 spin_lock_irqsave(&ioapic_lock, flags);
162 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
163 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
164 spin_unlock_irqrestore(&ioapic_lock, flags);
165 return eu.entry;
166}
167
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800168/*
169 * When we write a new IO APIC routing entry, we need to write the high
170 * word first! If the mask bit in the low word is clear, we will enable
171 * the interrupt, and we need to make sure the entry is fully populated
172 * before that happens.
173 */
Andi Kleend15512f2006-12-07 02:14:07 +0100174static void
175__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
176{
177 union entry_union eu;
178 eu.entry = e;
179 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
180 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
181}
182
Andi Kleencf4c6a22006-09-26 10:52:30 +0200183static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
184{
185 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200186 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100187 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800188 spin_unlock_irqrestore(&ioapic_lock, flags);
189}
190
191/*
192 * When we mask an IO APIC routing entry, we need to write the low
193 * word first, in order to set the mask bit before we change the
194 * high bits!
195 */
196static void ioapic_mask_entry(int apic, int pin)
197{
198 unsigned long flags;
199 union entry_union eu = { .entry.mask = 1 };
200
201 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200202 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
203 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
204 spin_unlock_irqrestore(&ioapic_lock, flags);
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
208 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
209 * shared ISA-space IRQs, so we have to support them. We are super
210 * fast in the common case, and fast for shared ISA-space IRQs.
211 */
212static void add_pin_to_irq(unsigned int irq, int apic, int pin)
213{
214 static int first_free_entry = NR_IRQS;
215 struct irq_pin_list *entry = irq_2_pin + irq;
216
217 while (entry->next)
218 entry = irq_2_pin + entry->next;
219
220 if (entry->pin != -1) {
221 entry->next = first_free_entry;
222 entry = irq_2_pin + entry->next;
223 if (++first_free_entry >= PIN_MAP_SIZE)
224 panic("io_apic.c: whoops");
225 }
226 entry->apic = apic;
227 entry->pin = pin;
228}
229
230/*
231 * Reroute an IRQ to a different pin.
232 */
233static void __init replace_pin_at_irq(unsigned int irq,
234 int oldapic, int oldpin,
235 int newapic, int newpin)
236{
237 struct irq_pin_list *entry = irq_2_pin + irq;
238
239 while (1) {
240 if (entry->apic == oldapic && entry->pin == oldpin) {
241 entry->apic = newapic;
242 entry->pin = newpin;
243 }
244 if (!entry->next)
245 break;
246 entry = irq_2_pin + entry->next;
247 }
248}
249
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200250static void __modify_IO_APIC_irq(unsigned int irq, unsigned long enable, unsigned long disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct irq_pin_list *entry = irq_2_pin + irq;
253 unsigned int pin, reg;
254
255 for (;;) {
256 pin = entry->pin;
257 if (pin == -1)
258 break;
259 reg = io_apic_read(entry->apic, 0x10 + pin*2);
260 reg &= ~disable;
261 reg |= enable;
262 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
263 if (!entry->next)
264 break;
265 entry = irq_2_pin + entry->next;
266 }
267}
268
269/* mask = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200270static void __mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400272 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275/* mask = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200276static void __unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400278 __modify_IO_APIC_irq(irq, 0, IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/* mask = 1, trigger = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200282static void __mask_and_edge_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400284 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED,
285 IO_APIC_REDIR_LEVEL_TRIGGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288/* mask = 0, trigger = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200289static void __unmask_and_level_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400291 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_LEVEL_TRIGGER,
292 IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200295static void mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 unsigned long flags;
298
299 spin_lock_irqsave(&ioapic_lock, flags);
300 __mask_IO_APIC_irq(irq);
301 spin_unlock_irqrestore(&ioapic_lock, flags);
302}
303
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200304static void unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 unsigned long flags;
307
308 spin_lock_irqsave(&ioapic_lock, flags);
309 __unmask_IO_APIC_irq(irq);
310 spin_unlock_irqrestore(&ioapic_lock, flags);
311}
312
313static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
314{
315 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200318 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (entry.delivery_mode == dest_SMI)
320 return;
321
322 /*
323 * Disable it in the IO-APIC irq-routing table:
324 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800325 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200328static void clear_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 int apic, pin;
331
332 for (apic = 0; apic < nr_ioapics; apic++)
333 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
334 clear_IO_APIC_pin(apic, pin);
335}
336
Ashok Raj54d5d422005-09-06 15:16:15 -0700337#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
339{
340 unsigned long flags;
341 int pin;
342 struct irq_pin_list *entry = irq_2_pin + irq;
343 unsigned int apicid_value;
Ashok Raj54d5d422005-09-06 15:16:15 -0700344 cpumask_t tmp;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200345
Ashok Raj54d5d422005-09-06 15:16:15 -0700346 cpus_and(tmp, cpumask, cpu_online_map);
347 if (cpus_empty(tmp))
348 tmp = TARGET_CPUS;
349
350 cpus_and(cpumask, tmp, CPU_MASK_ALL);
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 apicid_value = cpu_mask_to_apicid(cpumask);
353 /* Prepare to do the io_apic_write */
354 apicid_value = apicid_value << 24;
355 spin_lock_irqsave(&ioapic_lock, flags);
356 for (;;) {
357 pin = entry->pin;
358 if (pin == -1)
359 break;
360 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
361 if (!entry->next)
362 break;
363 entry = irq_2_pin + entry->next;
364 }
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -0700365 irq_desc[irq].affinity = cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 spin_unlock_irqrestore(&ioapic_lock, flags);
367}
368
369#if defined(CONFIG_IRQBALANCE)
370# include <asm/processor.h> /* kernel_thread() */
371# include <linux/kernel_stat.h> /* kstat */
372# include <linux/slab.h> /* kmalloc() */
Julia Lawall1d16b532008-01-30 13:32:19 +0100373# include <linux/timer.h>
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375#define IRQBALANCE_CHECK_ARCH -999
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700376#define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
377#define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
378#define BALANCED_IRQ_MORE_DELTA (HZ/10)
379#define BALANCED_IRQ_LESS_DELTA (HZ)
380
381static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
382static int physical_balance __read_mostly;
383static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385static struct irq_cpu_info {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200386 unsigned long *last_irq;
387 unsigned long *irq_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unsigned long irq;
389} irq_cpu_data[NR_CPUS];
390
391#define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200392#define LAST_CPU_IRQ(cpu, irq) (irq_cpu_data[cpu].last_irq[irq])
393#define IRQ_DELTA(cpu, irq) (irq_cpu_data[cpu].irq_delta[irq])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395#define IDLE_ENOUGH(cpu,now) \
396 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
397
398#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
399
Mike Travisd5a74302007-10-16 01:24:05 -0700400#define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700402static cpumask_t balance_irq_affinity[NR_IRQS] = {
403 [0 ... NR_IRQS-1] = CPU_MASK_ALL
404};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700406void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
407{
408 balance_irq_affinity[irq] = mask;
409}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
412 unsigned long now, int direction)
413{
414 int search_idle = 1;
415 int cpu = curr_cpu;
416
417 goto inside;
418
419 do {
420 if (unlikely(cpu == curr_cpu))
421 search_idle = 0;
422inside:
423 if (direction == 1) {
424 cpu++;
425 if (cpu >= NR_CPUS)
426 cpu = 0;
427 } else {
428 cpu--;
429 if (cpu == -1)
430 cpu = NR_CPUS-1;
431 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200432 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu, allowed_mask) ||
433 (search_idle && !IDLE_ENOUGH(cpu, now)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 return cpu;
436}
437
438static inline void balance_irq(int cpu, int irq)
439{
440 unsigned long now = jiffies;
441 cpumask_t allowed_mask;
442 unsigned int new_cpu;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (irqbalance_disabled)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200445 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700447 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 new_cpu = move(cpu, allowed_mask, now, 1);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200449 if (cpu != new_cpu)
Ashok Raj54d5d422005-09-06 15:16:15 -0700450 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
454{
455 int i, j;
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200456
Andrew Morton394e3902006-03-23 03:01:05 -0800457 for_each_online_cpu(i) {
458 for (j = 0; j < NR_IRQS; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (!irq_desc[j].action)
460 continue;
461 /* Is it a significant load ? */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200462 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i), j) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 useful_load_threshold)
464 continue;
465 balance_irq(i, j);
466 }
467 }
468 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200469 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return;
471}
472
473static void do_irq_balance(void)
474{
475 int i, j;
476 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
477 unsigned long move_this_load = 0;
478 int max_loaded = 0, min_loaded = 0;
479 int load;
480 unsigned long useful_load_threshold = balanced_irq_interval + 10;
481 int selected_irq;
482 int tmp_loaded, first_attempt = 1;
483 unsigned long tmp_cpu_irq;
484 unsigned long imbalance = 0;
485 cpumask_t allowed_mask, target_cpu_mask, tmp;
486
KAMEZAWA Hiroyukic89125992006-03-28 01:56:39 -0800487 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int package_index;
489 CPU_IRQ(i) = 0;
490 if (!cpu_online(i))
491 continue;
492 package_index = CPU_TO_PACKAGEINDEX(i);
493 for (j = 0; j < NR_IRQS; j++) {
494 unsigned long value_now, delta;
Thomas Gleixner950f4422007-02-16 01:27:24 -0800495 /* Is this an active IRQ or balancing disabled ? */
496 if (!irq_desc[j].action || irq_balancing_disabled(j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200498 if (package_index == i)
499 IRQ_DELTA(package_index, j) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* Determine the total count per processor per IRQ */
501 value_now = (unsigned long) kstat_cpu(i).irqs[j];
502
503 /* Determine the activity per processor per IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200504 delta = value_now - LAST_CPU_IRQ(i, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* Update last_cpu_irq[][] for the next time */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200507 LAST_CPU_IRQ(i, j) = value_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* Ignore IRQs whose rate is less than the clock */
510 if (delta < useful_load_threshold)
511 continue;
512 /* update the load for the processor or package total */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200513 IRQ_DELTA(package_index, j) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /* Keep track of the higher numbered sibling as well */
516 if (i != package_index)
517 CPU_IRQ(i) += delta;
518 /*
519 * We have sibling A and sibling B in the package
520 *
521 * cpu_irq[A] = load for cpu A + load for cpu B
522 * cpu_irq[B] = load for cpu B
523 */
524 CPU_IRQ(package_index) += delta;
525 }
526 }
527 /* Find the least loaded processor package */
Andrew Morton394e3902006-03-23 03:01:05 -0800528 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (i != CPU_TO_PACKAGEINDEX(i))
530 continue;
531 if (min_cpu_irq > CPU_IRQ(i)) {
532 min_cpu_irq = CPU_IRQ(i);
533 min_loaded = i;
534 }
535 }
536 max_cpu_irq = ULONG_MAX;
537
538tryanothercpu:
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200539 /*
540 * Look for heaviest loaded processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * We may come back to get the next heaviest loaded processor.
542 * Skip processors with trivial loads.
543 */
544 tmp_cpu_irq = 0;
545 tmp_loaded = -1;
Andrew Morton394e3902006-03-23 03:01:05 -0800546 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (i != CPU_TO_PACKAGEINDEX(i))
548 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200549 if (max_cpu_irq <= CPU_IRQ(i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 continue;
551 if (tmp_cpu_irq < CPU_IRQ(i)) {
552 tmp_cpu_irq = CPU_IRQ(i);
553 tmp_loaded = i;
554 }
555 }
556
557 if (tmp_loaded == -1) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200558 /*
559 * In the case of small number of heavy interrupt sources,
560 * loading some of the cpus too much. We use Ingo's original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * approach to rotate them around.
562 */
563 if (!first_attempt && imbalance >= useful_load_threshold) {
564 rotate_irqs_among_cpus(useful_load_threshold);
565 return;
566 }
567 goto not_worth_the_effort;
568 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 first_attempt = 0; /* heaviest search */
571 max_cpu_irq = tmp_cpu_irq; /* load */
572 max_loaded = tmp_loaded; /* processor */
573 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200574
575 /*
576 * if imbalance is less than approx 10% of max load, then
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * observe diminishing returns action. - quit
578 */
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200579 if (imbalance < (max_cpu_irq >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto not_worth_the_effort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582tryanotherirq:
583 /* if we select an IRQ to move that can't go where we want, then
584 * see if there is another one to try.
585 */
586 move_this_load = 0;
587 selected_irq = -1;
588 for (j = 0; j < NR_IRQS; j++) {
589 /* Is this an active IRQ? */
590 if (!irq_desc[j].action)
591 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200592 if (imbalance <= IRQ_DELTA(max_loaded, j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 continue;
594 /* Try to find the IRQ that is closest to the imbalance
595 * without going over.
596 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200597 if (move_this_load < IRQ_DELTA(max_loaded, j)) {
598 move_this_load = IRQ_DELTA(max_loaded, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 selected_irq = j;
600 }
601 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200602 if (selected_irq == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto tryanothercpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 imbalance = move_this_load;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200606
Simon Arlott27b46d72007-10-20 01:13:56 +0200607 /* For physical_balance case, we accumulated both load
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * values in the one of the siblings cpu_irq[],
609 * to use the same code for physical and logical processors
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200610 * as much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 *
612 * NOTE: the cpu_irq[] array holds the sum of the load for
613 * sibling A and sibling B in the slot for the lowest numbered
614 * sibling (A), _AND_ the load for sibling B in the slot for
615 * the higher numbered sibling.
616 *
617 * We seek the least loaded sibling by making the comparison
618 * (A+B)/2 vs B
619 */
620 load = CPU_IRQ(min_loaded) >> 1;
Mike Travisd5a74302007-10-16 01:24:05 -0700621 for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (load > CPU_IRQ(j)) {
623 /* This won't change cpu_sibling_map[min_loaded] */
624 load = CPU_IRQ(j);
625 min_loaded = j;
626 }
627 }
628
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700629 cpus_and(allowed_mask,
630 cpu_online_map,
631 balance_irq_affinity[selected_irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 target_cpu_mask = cpumask_of_cpu(min_loaded);
633 cpus_and(tmp, target_cpu_mask, allowed_mask);
634
635 if (!cpus_empty(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* mark for change destination */
Ashok Raj54d5d422005-09-06 15:16:15 -0700637 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
638
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200639 /* Since we made a change, come back sooner to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * check for more variation.
641 */
642 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200643 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return;
645 }
646 goto tryanotherirq;
647
648not_worth_the_effort:
649 /*
650 * if we did not find an IRQ to move, then adjust the time interval
651 * upward
652 */
653 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200654 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return;
656}
657
658static int balanced_irq(void *unused)
659{
660 int i;
661 unsigned long prev_balance_time = jiffies;
662 long time_remaining = balanced_irq_interval;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* push everything to CPU 0 to give us a starting point. */
665 for (i = 0 ; i < NR_IRQS ; i++) {
Ingo Molnarcd916d32006-06-29 02:24:42 -0700666 irq_desc[i].pending_mask = cpumask_of_cpu(0);
Ashok Raj54d5d422005-09-06 15:16:15 -0700667 set_pending_irq(i, cpumask_of_cpu(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700670 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 for ( ; ; ) {
Nishanth Aravamudan52e6e632005-09-10 00:27:26 -0700672 time_remaining = schedule_timeout_interruptible(time_remaining);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700673 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (time_after(jiffies,
675 prev_balance_time+balanced_irq_interval)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700676 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 do_irq_balance();
678 prev_balance_time = jiffies;
679 time_remaining = balanced_irq_interval;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700680 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682 }
683 return 0;
684}
685
686static int __init balanced_irq_init(void)
687{
688 int i;
689 struct cpuinfo_x86 *c;
690 cpumask_t tmp;
691
692 cpus_shift_right(tmp, cpu_online_map, 2);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200693 c = &boot_cpu_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* When not overwritten by the command line ask subarchitecture. */
695 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
696 irqbalance_disabled = NO_BALANCE_IRQ;
697 if (irqbalance_disabled)
698 return 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* disable irqbalance completely if there is only one processor online */
701 if (num_online_cpus() < 2) {
702 irqbalance_disabled = 1;
703 return 0;
704 }
705 /*
706 * Enable physical balance only if more than 1 physical processor
707 * is present
708 */
709 if (smp_num_siblings > 1 && !cpus_empty(tmp))
710 physical_balance = 1;
711
Andrew Morton394e3902006-03-23 03:01:05 -0800712 for_each_online_cpu(i) {
Christophe Jaillet25556c12008-06-22 22:13:48 +0200713 irq_cpu_data[i].irq_delta = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
714 irq_cpu_data[i].last_irq = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
716 printk(KERN_ERR "balanced_irq_init: out of memory");
717 goto failed;
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 printk(KERN_INFO "Starting balanced_irq\n");
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200722 if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200724 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725failed:
KAMEZAWA Hiroyukic89125992006-03-28 01:56:39 -0800726 for_each_possible_cpu(i) {
Jesper Juhl4ae66732005-06-25 14:58:48 -0700727 kfree(irq_cpu_data[i].irq_delta);
Andrew Morton394e3902006-03-23 03:01:05 -0800728 irq_cpu_data[i].irq_delta = NULL;
Jesper Juhl4ae66732005-06-25 14:58:48 -0700729 kfree(irq_cpu_data[i].last_irq);
Andrew Morton394e3902006-03-23 03:01:05 -0800730 irq_cpu_data[i].last_irq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732 return 0;
733}
734
Andrew Mortonc2481cc2007-04-08 16:04:04 -0700735int __devinit irqbalance_disable(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 irqbalance_disabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800738 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741__setup("noirqbalance", irqbalance_disable);
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743late_initcall(balanced_irq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744#endif /* CONFIG_IRQBALANCE */
Ashok Raj54d5d422005-09-06 15:16:15 -0700745#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747#ifndef CONFIG_SMP
Harvey Harrison75604d72008-01-30 13:31:17 +0100748void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 unsigned int cfg;
751
752 /*
753 * Wait for idle.
754 */
755 apic_wait_icr_idle();
756 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
757 /*
758 * Send the IPI. The write to APIC_ICR fires this off.
759 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100760 apic_write(APIC_ICR, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762#endif /* !CONFIG_SMP */
763
764
765/*
766 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
767 * specific CPU-side IRQs.
768 */
769
770#define MAX_PIRQS 8
771static int pirq_entries [MAX_PIRQS];
772static int pirqs_enabled;
773int skip_ioapic_setup;
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static int __init ioapic_pirq_setup(char *str)
776{
777 int i, max;
778 int ints[MAX_PIRQS+1];
779
780 get_options(str, ARRAY_SIZE(ints), ints);
781
782 for (i = 0; i < MAX_PIRQS; i++)
783 pirq_entries[i] = -1;
784
785 pirqs_enabled = 1;
786 apic_printk(APIC_VERBOSE, KERN_INFO
787 "PIRQ redirection, working around broken MP-BIOS.\n");
788 max = MAX_PIRQS;
789 if (ints[0] < MAX_PIRQS)
790 max = ints[0];
791
792 for (i = 0; i < max; i++) {
793 apic_printk(APIC_VERBOSE, KERN_DEBUG
794 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
795 /*
796 * PIRQs are mapped upside down, usually.
797 */
798 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
799 }
800 return 1;
801}
802
803__setup("pirq=", ioapic_pirq_setup);
804
805/*
806 * Find the IRQ entry number of a certain pin.
807 */
808static int find_irq_entry(int apic, int pin, int type)
809{
810 int i;
811
812 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400813 if (mp_irqs[i].mp_irqtype == type &&
814 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
815 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
816 mp_irqs[i].mp_dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return i;
818
819 return -1;
820}
821
822/*
823 * Find the pin to which IRQ[irq] (ISA) is connected
824 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800825static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 int i;
828
829 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400830 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300832 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400833 (mp_irqs[i].mp_irqtype == type) &&
834 (mp_irqs[i].mp_srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400836 return mp_irqs[i].mp_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 return -1;
839}
840
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800841static int __init find_isa_irq_apic(int irq, int type)
842{
843 int i;
844
845 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400846 int lbus = mp_irqs[i].mp_srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800847
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300848 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400849 (mp_irqs[i].mp_irqtype == type) &&
850 (mp_irqs[i].mp_srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800851 break;
852 }
853 if (i < mp_irq_entries) {
854 int apic;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200855 for (apic = 0; apic < nr_ioapics; apic++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400856 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800857 return apic;
858 }
859 }
860
861 return -1;
862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/*
865 * Find a specific PCI IRQ entry.
866 * Not an __init, possibly needed by modules
867 */
868static int pin_2_irq(int idx, int apic, int pin);
869
870int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
871{
872 int apic, i, best_guess = -1;
873
874 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
875 "slot:%d, pin:%d.\n", bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +0400876 if (test_bit(bus, mp_bus_not_pci)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
878 return -1;
879 }
880 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400881 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 for (apic = 0; apic < nr_ioapics; apic++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400884 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
885 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
887
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300888 if (!test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400889 !mp_irqs[i].mp_irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 (bus == lbus) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400891 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
Ingo Molnar3de352b2008-07-08 11:14:58 +0200892 int irq = pin_2_irq(i, apic, mp_irqs[i].mp_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (!(apic || IO_APIC_IRQ(irq)))
895 continue;
896
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400897 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return irq;
899 /*
900 * Use the first all-but-pin matching entry as a
901 * best-guess fuzzy result for broken mptables.
902 */
903 if (best_guess < 0)
904 best_guess = irq;
905 }
906 }
907 return best_guess;
908}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700909EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911/*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200912 * This function currently is only a helper for the i386 smp boot process where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * we need to reprogram the ioredtbls to cater for the cpus which have come online
914 * so mask in all cases should simply be TARGET_CPUS
915 */
Ashok Raj54d5d422005-09-06 15:16:15 -0700916#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917void __init setup_ioapic_dest(void)
918{
919 int pin, ioapic, irq, irq_entry;
920
921 if (skip_ioapic_setup == 1)
922 return;
923
924 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
925 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
926 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
927 if (irq_entry == -1)
928 continue;
929 irq = pin_2_irq(irq_entry, ioapic, pin);
930 set_ioapic_affinity_irq(irq, TARGET_CPUS);
931 }
932
933 }
934}
Ashok Raj54d5d422005-09-06 15:16:15 -0700935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300937#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*
939 * EISA Edge/Level control register, ELCR
940 */
941static int EISA_ELCR(unsigned int irq)
942{
943 if (irq < 16) {
944 unsigned int port = 0x4d0 + (irq >> 3);
945 return (inb(port) >> (irq & 7)) & 1;
946 }
947 apic_printk(APIC_VERBOSE, KERN_INFO
948 "Broken MPtable reports ISA irq %d\n", irq);
949 return 0;
950}
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300951#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300953/* ISA interrupts are always polarity zero edge triggered,
954 * when listed as conforming in the MP table. */
955
956#define default_ISA_trigger(idx) (0)
957#define default_ISA_polarity(idx) (0)
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959/* EISA interrupts are always polarity zero and can be edge or level
960 * trigger depending on the ELCR value. If an interrupt is listed as
961 * EISA conforming in the MP table, that means its trigger type must
962 * be read in from the ELCR */
963
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400964#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300965#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967/* PCI interrupts are always polarity one level triggered,
968 * when listed as conforming in the MP table. */
969
970#define default_PCI_trigger(idx) (1)
971#define default_PCI_polarity(idx) (1)
972
973/* MCA interrupts are always polarity zero level triggered,
974 * when listed as conforming in the MP table. */
975
976#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300977#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Shaohua Li61fd47e2007-11-17 01:05:28 -0500979static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400981 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 int polarity;
983
984 /*
985 * Determine IRQ line polarity (high active or low active):
986 */
Ingo Molnar3de352b2008-07-08 11:14:58 +0200987 switch (mp_irqs[idx].mp_irqflag & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200988 case 0: /* conforms, ie. bus-type dependent polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200990 polarity = test_bit(bus, mp_bus_not_pci)?
991 default_ISA_polarity(idx):
992 default_PCI_polarity(idx);
993 break;
994 }
995 case 1: /* high active */
996 {
997 polarity = 0;
998 break;
999 }
1000 case 2: /* reserved */
1001 {
1002 printk(KERN_WARNING "broken BIOS!!\n");
1003 polarity = 1;
1004 break;
1005 }
1006 case 3: /* low active */
1007 {
1008 polarity = 1;
1009 break;
1010 }
1011 default: /* invalid */
1012 {
1013 printk(KERN_WARNING "broken BIOS!!\n");
1014 polarity = 1;
1015 break;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 return polarity;
1019}
1020
1021static int MPBIOS_trigger(int idx)
1022{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001023 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 int trigger;
1025
1026 /*
1027 * Determine IRQ trigger mode (edge or level sensitive):
1028 */
Ingo Molnar3de352b2008-07-08 11:14:58 +02001029 switch ((mp_irqs[idx].mp_irqflag>>2) & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001030 case 0: /* conforms, ie. bus-type dependent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001032 trigger = test_bit(bus, mp_bus_not_pci)?
1033 default_ISA_trigger(idx):
1034 default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001035#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001036 switch (mp_bus_id_to_type[bus]) {
1037 case MP_BUS_ISA: /* ISA pin */
1038 {
1039 /* set before the switch */
1040 break;
1041 }
1042 case MP_BUS_EISA: /* EISA pin */
1043 {
1044 trigger = default_EISA_trigger(idx);
1045 break;
1046 }
1047 case MP_BUS_PCI: /* PCI pin */
1048 {
1049 /* set before the switch */
1050 break;
1051 }
1052 case MP_BUS_MCA: /* MCA pin */
1053 {
1054 trigger = default_MCA_trigger(idx);
1055 break;
1056 }
1057 default:
1058 {
1059 printk(KERN_WARNING "broken BIOS!!\n");
1060 trigger = 1;
1061 break;
1062 }
1063 }
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001064#endif
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001065 break;
1066 }
1067 case 1: /* edge */
1068 {
1069 trigger = 0;
1070 break;
1071 }
1072 case 2: /* reserved */
1073 {
1074 printk(KERN_WARNING "broken BIOS!!\n");
1075 trigger = 1;
1076 break;
1077 }
1078 case 3: /* level */
1079 {
1080 trigger = 1;
1081 break;
1082 }
1083 default: /* invalid */
1084 {
1085 printk(KERN_WARNING "broken BIOS!!\n");
1086 trigger = 0;
1087 break;
1088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 return trigger;
1091}
1092
1093static inline int irq_polarity(int idx)
1094{
1095 return MPBIOS_polarity(idx);
1096}
1097
1098static inline int irq_trigger(int idx)
1099{
1100 return MPBIOS_trigger(idx);
1101}
1102
1103static int pin_2_irq(int idx, int apic, int pin)
1104{
1105 int irq, i;
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001106 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 /*
1109 * Debugging check, we are in big trouble if this message pops up!
1110 */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001111 if (mp_irqs[idx].mp_dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1113
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001114 if (test_bit(bus, mp_bus_not_pci))
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001115 irq = mp_irqs[idx].mp_srcbusirq;
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001116 else {
1117 /*
1118 * PCI IRQs are mapped in order
1119 */
1120 i = irq = 0;
1121 while (i < apic)
1122 irq += nr_ioapic_registers[i++];
1123 irq += pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001125 /*
1126 * For MPS mode, so far only needed by ES7000 platform
1127 */
1128 if (ioapic_renumber_irq)
1129 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
1132 /*
1133 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1134 */
1135 if ((pin >= 16) && (pin <= 23)) {
1136 if (pirq_entries[pin-16] != -1) {
1137 if (!pirq_entries[pin-16]) {
1138 apic_printk(APIC_VERBOSE, KERN_DEBUG
1139 "disabling PIRQ%d\n", pin-16);
1140 } else {
1141 irq = pirq_entries[pin-16];
1142 apic_printk(APIC_VERBOSE, KERN_DEBUG
1143 "using PIRQ%d -> IRQ %d\n",
1144 pin-16, irq);
1145 }
1146 }
1147 }
1148 return irq;
1149}
1150
1151static inline int IO_APIC_irq_trigger(int irq)
1152{
1153 int apic, idx, pin;
1154
1155 for (apic = 0; apic < nr_ioapics; apic++) {
1156 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001157 idx = find_irq_entry(apic, pin, mp_INT);
1158 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return irq_trigger(idx);
1160 }
1161 }
1162 /*
1163 * nonexistent IRQs are edge default
1164 */
1165 return 0;
1166}
1167
1168/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Adrian Bunk7e95b592006-12-07 02:14:11 +01001169static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001171static int __assign_irq_vector(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001173 static int current_vector = FIRST_DEVICE_VECTOR, current_offset;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001174 int vector, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001176 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +02001177
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001178 if (irq_vector[irq] > 0)
1179 return irq_vector[irq];
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001180
Jan Beulich0a1ad602006-06-26 13:56:43 +02001181 vector = current_vector;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001182 offset = current_offset;
1183next:
1184 vector += 8;
Alan Mayer305b92a2008-04-15 15:36:56 -05001185 if (vector >= first_system_vector) {
Eric W. Biederman8339f002007-01-29 13:19:05 -07001186 offset = (offset + 1) % 8;
1187 vector = FIRST_DEVICE_VECTOR + offset;
1188 }
1189 if (vector == current_vector)
1190 return -ENOSPC;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001191 if (test_and_set_bit(vector, used_vectors))
Eric W. Biederman8339f002007-01-29 13:19:05 -07001192 goto next;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001193
1194 current_vector = vector;
1195 current_offset = offset;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001196 irq_vector[irq] = vector;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001197
1198 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001201static int assign_irq_vector(int irq)
1202{
1203 unsigned long flags;
1204 int vector;
1205
1206 spin_lock_irqsave(&vector_lock, flags);
1207 vector = __assign_irq_vector(irq);
1208 spin_unlock_irqrestore(&vector_lock, flags);
1209
1210 return vector;
1211}
Glauber Costa3fde6902008-05-28 20:34:19 -07001212
1213void setup_vector_irq(int cpu)
1214{
1215}
1216
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001217static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219#define IOAPIC_AUTO -1
1220#define IOAPIC_EDGE 0
1221#define IOAPIC_LEVEL 1
1222
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001223static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001225 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001226 trigger == IOAPIC_LEVEL) {
1227 irq_desc[irq].status |= IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001228 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1229 handle_fasteoi_irq, "fasteoi");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001230 } else {
1231 irq_desc[irq].status &= ~IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001232 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1233 handle_edge_irq, "edge");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001234 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001235 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238static void __init setup_IO_APIC_irqs(void)
1239{
1240 struct IO_APIC_route_entry entry;
1241 int apic, pin, idx, irq, first_notcon = 1, vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1244
1245 for (apic = 0; apic < nr_ioapics; apic++) {
1246 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1247
1248 /*
1249 * add it to the IO-APIC irq-routing table:
1250 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001251 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 entry.delivery_mode = INT_DELIVERY_MODE;
1254 entry.dest_mode = INT_DEST_MODE;
1255 entry.mask = 0; /* enable IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001256 entry.dest.logical.logical_dest =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 cpu_mask_to_apicid(TARGET_CPUS);
1258
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001259 idx = find_irq_entry(apic, pin, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (idx == -1) {
1261 if (first_notcon) {
1262 apic_printk(APIC_VERBOSE, KERN_DEBUG
1263 " IO-APIC (apicid-pin) %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001264 mp_ioapics[apic].mp_apicid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 pin);
1266 first_notcon = 0;
1267 } else
1268 apic_printk(APIC_VERBOSE, ", %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001269 mp_ioapics[apic].mp_apicid, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 continue;
1271 }
1272
Yinghai Lu20d225b2007-10-17 18:04:41 +02001273 if (!first_notcon) {
1274 apic_printk(APIC_VERBOSE, " not connected.\n");
1275 first_notcon = 1;
1276 }
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 entry.trigger = irq_trigger(idx);
1279 entry.polarity = irq_polarity(idx);
1280
1281 if (irq_trigger(idx)) {
1282 entry.trigger = 1;
1283 entry.mask = 1;
1284 }
1285
1286 irq = pin_2_irq(idx, apic, pin);
1287 /*
1288 * skip adding the timer int on secondary nodes, which causes
1289 * a small but painful rift in the time-space continuum
1290 */
1291 if (multi_timer_check(apic, irq))
1292 continue;
1293 else
1294 add_pin_to_irq(irq, apic, pin);
1295
1296 if (!apic && !IO_APIC_IRQ(irq))
1297 continue;
1298
1299 if (IO_APIC_IRQ(irq)) {
1300 vector = assign_irq_vector(irq);
1301 entry.vector = vector;
1302 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (!apic && (irq < 16))
1305 disable_8259A_irq(irq);
1306 }
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09001307 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309 }
1310
1311 if (!first_notcon)
1312 apic_printk(APIC_VERBOSE, " not connected.\n");
1313}
1314
1315/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001316 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001318static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1319 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001323 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /*
1326 * We use logical delivery to get the timer IRQ
1327 * to the first CPU.
1328 */
1329 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001330 entry.mask = 1; /* mask IRQ now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1332 entry.delivery_mode = INT_DELIVERY_MODE;
1333 entry.polarity = 0;
1334 entry.trigger = 0;
1335 entry.vector = vector;
1336
1337 /*
1338 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001339 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 */
Maciej W. Rozyckif0825262008-05-27 21:19:16 +01001341 ioapic_register_intr(0, vector, IOAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /*
1344 * Add it to the IO-APIC irq-routing table:
1345 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001346 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349void __init print_IO_APIC(void)
1350{
1351 int apic, i;
1352 union IO_APIC_reg_00 reg_00;
1353 union IO_APIC_reg_01 reg_01;
1354 union IO_APIC_reg_02 reg_02;
1355 union IO_APIC_reg_03 reg_03;
1356 unsigned long flags;
1357
1358 if (apic_verbosity == APIC_QUIET)
1359 return;
1360
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001361 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 for (i = 0; i < nr_ioapics; i++)
1363 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001364 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 /*
1367 * We are a bit conservative about what we expect. We have to
1368 * know about every hardware change ASAP.
1369 */
1370 printk(KERN_INFO "testing the IO APIC.......................\n");
1371
1372 for (apic = 0; apic < nr_ioapics; apic++) {
1373
1374 spin_lock_irqsave(&ioapic_lock, flags);
1375 reg_00.raw = io_apic_read(apic, 0);
1376 reg_01.raw = io_apic_read(apic, 1);
1377 if (reg_01.bits.version >= 0x10)
1378 reg_02.raw = io_apic_read(apic, 2);
1379 if (reg_01.bits.version >= 0x20)
1380 reg_03.raw = io_apic_read(apic, 3);
1381 spin_unlock_irqrestore(&ioapic_lock, flags);
1382
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001383 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1385 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1386 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1387 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1390 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1393 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 /*
1396 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1397 * but the value of reg_02 is read as the previous read register
1398 * value, so ignore it if reg_02 == reg_01.
1399 */
1400 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1401 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1402 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
1405 /*
1406 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1407 * or reg_03, but the value of reg_0[23] is read as the previous read
1408 * register value, so ignore it if reg_03 == reg_0[12].
1409 */
1410 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1411 reg_03.raw != reg_01.raw) {
1412 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1413 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
1416 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1417
1418 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1419 " Stat Dest Deli Vect: \n");
1420
1421 for (i = 0; i <= reg_01.bits.entries; i++) {
1422 struct IO_APIC_route_entry entry;
1423
Andi Kleencf4c6a22006-09-26 10:52:30 +02001424 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 printk(KERN_DEBUG " %02x %03X %02X ",
1427 i,
1428 entry.dest.logical.logical_dest,
1429 entry.dest.physical.physical_dest
1430 );
1431
1432 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1433 entry.mask,
1434 entry.trigger,
1435 entry.irr,
1436 entry.polarity,
1437 entry.delivery_status,
1438 entry.dest_mode,
1439 entry.delivery_mode,
1440 entry.vector
1441 );
1442 }
1443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1445 for (i = 0; i < NR_IRQS; i++) {
1446 struct irq_pin_list *entry = irq_2_pin + i;
1447 if (entry->pin < 0)
1448 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001449 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 for (;;) {
1451 printk("-> %d:%d", entry->apic, entry->pin);
1452 if (!entry->next)
1453 break;
1454 entry = irq_2_pin + entry->next;
1455 }
1456 printk("\n");
1457 }
1458
1459 printk(KERN_INFO ".................................... done.\n");
1460
1461 return;
1462}
1463
1464#if 0
1465
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001466static void print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 unsigned int v;
1469 int i, j;
1470
1471 if (apic_verbosity == APIC_QUIET)
1472 return;
1473
1474 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1475 for (i = 0; i < 8; i++) {
1476 v = apic_read(base + i*0x10);
1477 for (j = 0; j < 32; j++) {
1478 if (v & (1<<j))
1479 printk("1");
1480 else
1481 printk("0");
1482 }
1483 printk("\n");
1484 }
1485}
1486
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001487void /*__init*/ print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 unsigned int v, ver, maxlvt;
1490
1491 if (apic_verbosity == APIC_QUIET)
1492 return;
1493
1494 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1495 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001496 v = apic_read(APIC_ID);
Jack Steiner05f2d122008-03-28 14:12:02 -05001497 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001498 GET_APIC_ID(v));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 v = apic_read(APIC_LVR);
1500 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1501 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001502 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 v = apic_read(APIC_TASKPRI);
1505 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1506
1507 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1508 v = apic_read(APIC_ARBPRI);
1509 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1510 v & APIC_ARBPRI_MASK);
1511 v = apic_read(APIC_PROCPRI);
1512 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1513 }
1514
1515 v = apic_read(APIC_EOI);
1516 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1517 v = apic_read(APIC_RRR);
1518 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1519 v = apic_read(APIC_LDR);
1520 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1521 v = apic_read(APIC_DFR);
1522 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1523 v = apic_read(APIC_SPIV);
1524 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1525
1526 printk(KERN_DEBUG "... APIC ISR field:\n");
1527 print_APIC_bitfield(APIC_ISR);
1528 printk(KERN_DEBUG "... APIC TMR field:\n");
1529 print_APIC_bitfield(APIC_TMR);
1530 printk(KERN_DEBUG "... APIC IRR field:\n");
1531 print_APIC_bitfield(APIC_IRR);
1532
1533 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1534 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1535 apic_write(APIC_ESR, 0);
1536 v = apic_read(APIC_ESR);
1537 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1538 }
1539
1540 v = apic_read(APIC_ICR);
1541 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1542 v = apic_read(APIC_ICR2);
1543 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1544
1545 v = apic_read(APIC_LVTT);
1546 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1547
1548 if (maxlvt > 3) { /* PC is LVT#4. */
1549 v = apic_read(APIC_LVTPC);
1550 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1551 }
1552 v = apic_read(APIC_LVT0);
1553 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1554 v = apic_read(APIC_LVT1);
1555 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1556
1557 if (maxlvt > 2) { /* ERR is LVT#3. */
1558 v = apic_read(APIC_LVTERR);
1559 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1560 }
1561
1562 v = apic_read(APIC_TMICT);
1563 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1564 v = apic_read(APIC_TMCCT);
1565 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1566 v = apic_read(APIC_TDCR);
1567 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1568 printk("\n");
1569}
1570
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001571void print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001573 on_each_cpu(print_local_APIC, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576void /*__init*/ print_PIC(void)
1577{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 unsigned int v;
1579 unsigned long flags;
1580
1581 if (apic_verbosity == APIC_QUIET)
1582 return;
1583
1584 printk(KERN_DEBUG "\nprinting PIC contents\n");
1585
1586 spin_lock_irqsave(&i8259A_lock, flags);
1587
1588 v = inb(0xa1) << 8 | inb(0x21);
1589 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1590
1591 v = inb(0xa0) << 8 | inb(0x20);
1592 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1593
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001594 outb(0x0b, 0xa0);
1595 outb(0x0b, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 v = inb(0xa0) << 8 | inb(0x20);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001597 outb(0x0a, 0xa0);
1598 outb(0x0a, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 spin_unlock_irqrestore(&i8259A_lock, flags);
1601
1602 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1603
1604 v = inb(0x4d1) << 8 | inb(0x4d0);
1605 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1606}
1607
1608#endif /* 0 */
1609
1610static void __init enable_IO_APIC(void)
1611{
1612 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001613 int i8259_apic, i8259_pin;
1614 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 unsigned long flags;
1616
1617 for (i = 0; i < PIN_MAP_SIZE; i++) {
1618 irq_2_pin[i].pin = -1;
1619 irq_2_pin[i].next = 0;
1620 }
1621 if (!pirqs_enabled)
1622 for (i = 0; i < MAX_PIRQS; i++)
1623 pirq_entries[i] = -1;
1624
1625 /*
1626 * The number of IO-APIC IRQ registers (== #pins):
1627 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001628 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001630 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001632 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1633 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001634 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001635 int pin;
1636 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001637 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001638 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001639 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001640
1641
1642 /* If the interrupt line is enabled and in ExtInt mode
1643 * I have found the pin where the i8259 is connected.
1644 */
1645 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1646 ioapic_i8259.apic = apic;
1647 ioapic_i8259.pin = pin;
1648 goto found_i8259;
1649 }
1650 }
1651 }
1652 found_i8259:
1653 /* Look to see what if the MP table has reported the ExtINT */
1654 /* If we could not find the appropriate pin by looking at the ioapic
1655 * the i8259 probably is not connected the ioapic but give the
1656 * mptable a chance anyway.
1657 */
1658 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1659 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1660 /* Trust the MP table if nothing is setup in the hardware */
1661 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1662 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1663 ioapic_i8259.pin = i8259_pin;
1664 ioapic_i8259.apic = i8259_apic;
1665 }
1666 /* Complain if the MP table and the hardware disagree */
1667 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1668 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1669 {
1670 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
1673 /*
1674 * Do not trust the IO-APIC being empty at bootup
1675 */
1676 clear_IO_APIC();
1677}
1678
1679/*
1680 * Not an __init, needed by the reboot code
1681 */
1682void disable_IO_APIC(void)
1683{
1684 /*
1685 * Clear the IO-APIC before rebooting:
1686 */
1687 clear_IO_APIC();
1688
Eric W. Biederman650927e2005-06-25 14:57:44 -07001689 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001690 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001691 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001692 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001693 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001694 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001695 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001696
1697 memset(&entry, 0, sizeof(entry));
1698 entry.mask = 0; /* Enabled */
1699 entry.trigger = 0; /* Edge */
1700 entry.irr = 0;
1701 entry.polarity = 0; /* High */
1702 entry.delivery_status = 0;
1703 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001704 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001705 entry.vector = 0;
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001706 entry.dest.physical.physical_dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001707
1708 /*
1709 * Add it to the IO-APIC irq-routing table:
1710 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001711 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001712 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001713 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
1716/*
1717 * function to set the IO-APIC physical IDs based on the
1718 * values stored in the MPC table.
1719 *
1720 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1721 */
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static void __init setup_ioapic_ids_from_mpc(void)
1724{
1725 union IO_APIC_reg_00 reg_00;
1726 physid_mask_t phys_id_present_map;
1727 int apic;
1728 int i;
1729 unsigned char old_id;
1730 unsigned long flags;
1731
Yinghai Lua4dbc342008-07-25 02:14:28 -07001732 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07001733 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001736 * Don't check I/O APIC IDs for xAPIC systems. They have
1737 * no meaning without the serial APIC bus.
1738 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001739 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1740 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001741 return;
1742 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * This is broken; anything with a real cpu count has to
1744 * circumvent this idiocy regardless.
1745 */
1746 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1747
1748 /*
1749 * Set the IOAPIC ID to the value stored in the MPC table.
1750 */
1751 for (apic = 0; apic < nr_ioapics; apic++) {
1752
1753 /* Read the register 0 value */
1754 spin_lock_irqsave(&ioapic_lock, flags);
1755 reg_00.raw = io_apic_read(apic, 0);
1756 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001757
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001758 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001760 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001762 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1764 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001765 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 /*
1769 * Sanity check, is the ID really free? Every APIC in a
1770 * system must have a unique ID or we get lots of nice
1771 * 'stuck on smp_invalidate_needed IPI wait' messages.
1772 */
1773 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001774 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001776 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 for (i = 0; i < get_physical_broadcast(); i++)
1778 if (!physid_isset(i, phys_id_present_map))
1779 break;
1780 if (i >= get_physical_broadcast())
1781 panic("Max APIC ID exceeded!\n");
1782 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1783 i);
1784 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001785 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 } else {
1787 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001788 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 apic_printk(APIC_VERBOSE, "Setting %d in the "
1790 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001791 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1793 }
1794
1795
1796 /*
1797 * We need to adjust the IRQ routing table
1798 * if the ID changed.
1799 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001800 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001802 if (mp_irqs[i].mp_dstapic == old_id)
1803 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001804 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 /*
1807 * Read the right value from the MPC table and
1808 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 apic_printk(APIC_VERBOSE, KERN_INFO
1811 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001812 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001814 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 spin_lock_irqsave(&ioapic_lock, flags);
1816 io_apic_write(apic, 0, reg_00.raw);
1817 spin_unlock_irqrestore(&ioapic_lock, flags);
1818
1819 /*
1820 * Sanity check
1821 */
1822 spin_lock_irqsave(&ioapic_lock, flags);
1823 reg_00.raw = io_apic_read(apic, 0);
1824 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001825 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 printk("could not set ID!\n");
1827 else
1828 apic_printk(APIC_VERBOSE, " ok.\n");
1829 }
1830}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01001832int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01001833
1834static int __init notimercheck(char *s)
1835{
1836 no_timer_check = 1;
1837 return 1;
1838}
1839__setup("no_timer_check", notimercheck);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841/*
1842 * There is a nasty bug in some older SMP boards, their mptable lies
1843 * about the timer IRQ. We do the following to work around the situation:
1844 *
1845 * - timer IRQ defaults to IO-APIC IRQ
1846 * - if this function detects that timer IRQs are defunct, then we fall
1847 * back to ISA timer IRQs
1848 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02001849static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01001852 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Zachary Amsden8542b202006-12-07 02:14:09 +01001854 if (no_timer_check)
1855 return 1;
1856
Ingo Molnar4aae0702007-12-18 18:05:58 +01001857 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 local_irq_enable();
1859 /* Let ten ticks pass... */
1860 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01001861 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /*
1864 * Expect a few ticks at least, to be sure some possible
1865 * glue logic does not lock up after one or two first
1866 * ticks in a non-ExtINT mode. Also the local APIC
1867 * might have cached one ExtINT interrupt. Finally, at
1868 * least one tick may be lost due to delays.
1869 */
Julia Lawall1d16b532008-01-30 13:32:19 +01001870 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return 1;
1872
1873 return 0;
1874}
1875
1876/*
1877 * In the SMP+IOAPIC case it might happen that there are an unspecified
1878 * number of pending IRQ events unhandled. These cases are very rare,
1879 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1880 * better to do it this way as thus we do not have to be aware of
1881 * 'pending' interrupts in the IRQ path, except at this point.
1882 */
1883/*
1884 * Edge triggered needs to resend any interrupt
1885 * that was delayed but this is now handled in the device
1886 * independent code.
1887 */
1888
1889/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001890 * Startup quirk:
1891 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 * Starting up a edge-triggered IO-APIC interrupt is
1893 * nasty - we need to make sure that we get the edge.
1894 * If it is already asserted for some reason, we need
1895 * return 1 to indicate that is was pending.
1896 *
1897 * This is not complete - we should be able to fake
1898 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001899 *
1900 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001902static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
1904 int was_pending = 0;
1905 unsigned long flags;
1906
1907 spin_lock_irqsave(&ioapic_lock, flags);
1908 if (irq < 16) {
1909 disable_8259A_irq(irq);
1910 if (i8259A_irq_pending(irq))
1911 was_pending = 1;
1912 }
1913 __unmask_IO_APIC_irq(irq);
1914 spin_unlock_irqrestore(&ioapic_lock, flags);
1915
1916 return was_pending;
1917}
1918
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001919static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001921 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 ack_APIC_irq();
1923}
1924
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001925static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 unsigned long v;
1928 int i;
1929
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001930 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931/*
1932 * It appears there is an erratum which affects at least version 0x11
1933 * of I/O APIC (that's the 82093AA and cores integrated into various
1934 * chipsets). Under certain conditions a level-triggered interrupt is
1935 * erroneously delivered as edge-triggered one but the respective IRR
1936 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1937 * message but it will never arrive and further interrupts are blocked
1938 * from the source. The exact reason is so far unknown, but the
1939 * phenomenon was observed when two consecutive interrupt requests
1940 * from a given source get delivered to the same CPU and the source is
1941 * temporarily disabled in between.
1942 *
1943 * A workaround is to simulate an EOI message manually. We achieve it
1944 * by setting the trigger mode to edge and then to level when the edge
1945 * trigger mode gets detected in the TMR of a local APIC for a
1946 * level-triggered interrupt. We mask the source for the time of the
1947 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1948 * The idea is from Manfred Spraul. --macro
1949 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001950 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1953
1954 ack_APIC_irq();
1955
1956 if (!(v & (1 << (i & 0x1f)))) {
1957 atomic_inc(&irq_mis_count);
1958 spin_lock(&ioapic_lock);
1959 __mask_and_edge_IO_APIC_irq(irq);
1960 __unmask_and_level_IO_APIC_irq(irq);
1961 spin_unlock(&ioapic_lock);
1962 }
1963}
1964
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001965static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001967 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001968
1969 return 1;
1970}
1971
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001972static struct irq_chip ioapic_chip __read_mostly = {
1973 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001974 .startup = startup_ioapic_irq,
1975 .mask = mask_IO_APIC_irq,
1976 .unmask = unmask_IO_APIC_irq,
1977 .ack = ack_ioapic_irq,
1978 .eoi = ack_ioapic_quirk_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001979#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001980 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001981#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001982 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983};
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986static inline void init_IO_APIC_traps(void)
1987{
1988 int irq;
1989
1990 /*
1991 * NOTE! The local APIC isn't very good at handling
1992 * multiple interrupts at the same interrupt level.
1993 * As the interrupt level is determined by taking the
1994 * vector number and shifting that right by 4, we
1995 * want to spread these out a bit so that they don't
1996 * all fall in the same interrupt level.
1997 *
1998 * Also, we've got to be careful not to trash gate
1999 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2000 */
2001 for (irq = 0; irq < NR_IRQS ; irq++) {
Akinobu Mitaaddfc662008-04-05 22:39:07 +09002002 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /*
2004 * Hmm.. We don't have an entry for this,
2005 * so default to an old-fashioned 8259
2006 * interrupt if we can..
2007 */
2008 if (irq < 16)
2009 make_8259A_irq(irq);
2010 else
2011 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002012 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014 }
2015}
2016
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002017/*
2018 * The local APIC irq-chip implementation:
2019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002021static void ack_lapic_irq(unsigned int irq)
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002022{
2023 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002026static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
2028 unsigned long v;
2029
2030 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002031 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002034static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002036 unsigned long v;
2037
2038 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002039 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040}
2041
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002042static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002043 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002044 .mask = mask_lapic_irq,
2045 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002046 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047};
2048
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002049static void lapic_register_intr(int irq, int vector)
2050{
2051 irq_desc[irq].status &= ~IRQ_LEVEL;
2052 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2053 "edge");
2054 set_intr_gate(vector, interrupt[irq]);
2055}
2056
Jan Beuliche9427102008-01-30 13:31:24 +01002057static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
2059 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002060 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 * We put the 8259A master into AEOI mode and
2062 * unmask on all local APICs LVT0 as NMI.
2063 *
2064 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2065 * is from Maciej W. Rozycki - so we do not have to EOI from
2066 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002067 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2069
Jan Beuliche9427102008-01-30 13:31:24 +01002070 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 apic_printk(APIC_VERBOSE, " done.\n");
2073}
2074
2075/*
2076 * This looks a bit hackish but it's about the only one way of sending
2077 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2078 * not support the ExtINT mode, unfortunately. We need to send these
2079 * cycles as some i82489DX-based boards have glue logic that keeps the
2080 * 8259A interrupt line asserted until INTA. --macro
2081 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002082static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002084 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct IO_APIC_route_entry entry0, entry1;
2086 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002088 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002089 if (pin == -1) {
2090 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002092 }
2093 apic = find_isa_irq_apic(8, mp_INT);
2094 if (apic == -1) {
2095 WARN_ON_ONCE(1);
2096 return;
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Andi Kleencf4c6a22006-09-26 10:52:30 +02002099 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002100 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 memset(&entry1, 0, sizeof(entry1));
2103
2104 entry1.dest_mode = 0; /* physical delivery */
2105 entry1.mask = 0; /* unmask IRQ now */
2106 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2107 entry1.delivery_mode = dest_ExtINT;
2108 entry1.polarity = entry0.polarity;
2109 entry1.trigger = 0;
2110 entry1.vector = 0;
2111
Andi Kleencf4c6a22006-09-26 10:52:30 +02002112 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 save_control = CMOS_READ(RTC_CONTROL);
2115 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2116 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2117 RTC_FREQ_SELECT);
2118 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2119
2120 i = 100;
2121 while (i-- > 0) {
2122 mdelay(10);
2123 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2124 i -= 10;
2125 }
2126
2127 CMOS_WRITE(save_control, RTC_CONTROL);
2128 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002129 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Andi Kleencf4c6a22006-09-26 10:52:30 +02002131 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
2134/*
2135 * This code may look a bit paranoid, but it's supposed to cooperate with
2136 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2137 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2138 * fanatically on his truly buggy board.
2139 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002140static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002142 int apic1, pin1, apic2, pin2;
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002143 int no_pin1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int vector;
Ingo Molnar6e908942008-03-21 14:32:36 +01002145 unsigned int ver;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002146 unsigned long flags;
2147
2148 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002149
Ingo Molnar6e908942008-03-21 14:32:36 +01002150 ver = apic_read(APIC_LVR);
2151 ver = GET_APIC_VERSION(ver);
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /*
2154 * get/set the timer IRQ vector:
2155 */
2156 disable_8259A_irq(0);
2157 vector = assign_irq_vector(0);
2158 set_intr_gate(vector, interrupt[0]);
2159
2160 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002161 * As IRQ0 is to be enabled in the 8259A, the virtual
2162 * wire has to be disabled in the local APIC. Also
2163 * timer interrupts need to be acknowledged manually in
2164 * the 8259A for the i82489DX when using the NMI
2165 * watchdog as that APIC treats NMIs as level-triggered.
2166 * The AEOI mode will finish them in the 8259A
2167 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002169 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 init_8259A(1);
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002171 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002173 pin1 = find_isa_irq_pin(0, mp_INT);
2174 apic1 = find_isa_irq_apic(0, mp_INT);
2175 pin2 = ioapic_i8259.pin;
2176 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002178 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2179 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2180 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002182 /*
2183 * Some BIOS writers are clueless and report the ExtINTA
2184 * I/O APIC input from the cascaded 8259A as the timer
2185 * interrupt input. So just in case, if only one pin
2186 * was found above, try it both directly and through the
2187 * 8259A.
2188 */
2189 if (pin1 == -1) {
2190 pin1 = pin2;
2191 apic1 = apic2;
2192 no_pin1 = 1;
2193 } else if (pin2 == -1) {
2194 pin2 = pin1;
2195 apic2 = apic1;
2196 }
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (pin1 != -1) {
2199 /*
2200 * Ok, does IRQ0 through the IOAPIC work?
2201 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002202 if (no_pin1) {
2203 add_pin_to_irq(0, apic1, pin1);
2204 setup_timer_IRQ0_pin(apic1, pin1, vector);
2205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 unmask_IO_APIC_irq(0);
2207 if (timer_irq_works()) {
2208 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 setup_nmi();
2210 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002212 if (disable_timer_pin_1 > 0)
2213 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002214 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002216 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002217 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002218 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2219 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002221 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2222 "(IRQ0) through the 8259A ...\n");
2223 apic_printk(APIC_QUIET, KERN_INFO
2224 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 /*
2226 * legacy devices should be connected to IO APIC #0
2227 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002228 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01002229 setup_timer_IRQ0_pin(apic2, pin2, vector);
Maciej W. Rozycki24742ec2008-05-27 21:19:40 +01002230 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002231 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002233 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002234 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002236 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002238 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002240 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
2242 /*
2243 * Cleanup, just in case ...
2244 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002245 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002246 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002247 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002251 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2252 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002253 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002255 timer_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002257 apic_printk(APIC_QUIET, KERN_INFO
2258 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002260 lapic_register_intr(0, vector);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002261 apic_write(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 enable_8259A_irq(0);
2263
2264 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002265 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002268 disable_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002269 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002270 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002272 apic_printk(APIC_QUIET, KERN_INFO
2273 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 init_8259A(0);
2276 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002277 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 unlock_ExtINT_logic();
2280
2281 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002282 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002283 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002285 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002287 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002288out:
2289 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290}
2291
2292/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002293 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2294 * to devices. However there may be an I/O APIC pin available for
2295 * this interrupt regardless. The pin may be left unconnected, but
2296 * typically it will be reused as an ExtINT cascade interrupt for
2297 * the master 8259A. In the MPS case such a pin will normally be
2298 * reported as an ExtINT interrupt in the MP table. With ACPI
2299 * there is no provision for ExtINT interrupts, and in the absence
2300 * of an override it would be treated as an ordinary ISA I/O APIC
2301 * interrupt, that is edge-triggered and unmasked by default. We
2302 * used to do this, but it caused problems on some systems because
2303 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2304 * the same ExtINT cascade interrupt to drive the local APIC of the
2305 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2306 * the I/O APIC in all cases now. No actual device should request
2307 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 */
2309#define PIC_IRQS (1 << PIC_CASCADE_IR)
2310
2311void __init setup_IO_APIC(void)
2312{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002313 int i;
2314
2315 /* Reserve all the system vectors. */
Alan Mayer305b92a2008-04-15 15:36:56 -05002316 for (i = first_system_vector; i < NR_VECTORS; i++)
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002317 set_bit(i, used_vectors);
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 enable_IO_APIC();
2320
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002321 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 printk("ENABLING IO-APIC IRQs\n");
2324
2325 /*
2326 * Set up IO-APIC IRQ routing.
2327 */
2328 if (!acpi_ioapic)
2329 setup_ioapic_ids_from_mpc();
2330 sync_Arb_IDs();
2331 setup_IO_APIC_irqs();
2332 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002333 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 if (!acpi_ioapic)
2335 print_IO_APIC();
2336}
2337
2338/*
2339 * Called after all the initialization is done. If we didnt find any
2340 * APIC bugs then we can allow the modify fast path
2341 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343static int __init io_apic_bug_finalize(void)
2344{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002345 if (sis_apic_bug == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 sis_apic_bug = 0;
2347 return 0;
2348}
2349
2350late_initcall(io_apic_bug_finalize);
2351
2352struct sysfs_ioapic_data {
2353 struct sys_device dev;
2354 struct IO_APIC_route_entry entry[0];
2355};
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002356static struct sysfs_ioapic_data *mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Pavel Machek438510f2005-04-16 15:25:24 -07002358static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
2360 struct IO_APIC_route_entry *entry;
2361 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 data = container_of(dev, struct sysfs_ioapic_data, dev);
2365 entry = data->entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002366 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002367 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 return 0;
2370}
2371
2372static int ioapic_resume(struct sys_device *dev)
2373{
2374 struct IO_APIC_route_entry *entry;
2375 struct sysfs_ioapic_data *data;
2376 unsigned long flags;
2377 union IO_APIC_reg_00 reg_00;
2378 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 data = container_of(dev, struct sysfs_ioapic_data, dev);
2381 entry = data->entry;
2382
2383 spin_lock_irqsave(&ioapic_lock, flags);
2384 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002385 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
2386 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 io_apic_write(dev->id, 0, reg_00.raw);
2388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002390 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002391 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393 return 0;
2394}
2395
2396static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002397 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 .suspend = ioapic_suspend,
2399 .resume = ioapic_resume,
2400};
2401
2402static int __init ioapic_init_sysfs(void)
2403{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002404 struct sys_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 int i, size, error = 0;
2406
2407 error = sysdev_class_register(&ioapic_sysdev_class);
2408 if (error)
2409 return error;
2410
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002411 for (i = 0; i < nr_ioapics; i++) {
2412 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02002414 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 if (!mp_ioapic_data[i]) {
2416 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2417 continue;
2418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002420 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 dev->cls = &ioapic_sysdev_class;
2422 error = sysdev_register(dev);
2423 if (error) {
2424 kfree(mp_ioapic_data[i]);
2425 mp_ioapic_data[i] = NULL;
2426 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2427 continue;
2428 }
2429 }
2430
2431 return 0;
2432}
2433
2434device_initcall(ioapic_init_sysfs);
2435
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002436/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002437 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002438 */
2439int create_irq(void)
2440{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002441 /* Allocate an unused irq */
Andi Kleen306a22c2006-12-09 21:33:36 +01002442 int irq, new, vector = 0;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002443 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002444
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002445 irq = -ENOSPC;
2446 spin_lock_irqsave(&vector_lock, flags);
2447 for (new = (NR_IRQS - 1); new >= 0; new--) {
2448 if (platform_legacy_irq(new))
2449 continue;
2450 if (irq_vector[new] != 0)
2451 continue;
2452 vector = __assign_irq_vector(new);
2453 if (likely(vector > 0))
2454 irq = new;
2455 break;
2456 }
2457 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002458
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002459 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002460 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002461 dynamic_irq_init(irq);
2462 }
2463 return irq;
2464}
2465
2466void destroy_irq(unsigned int irq)
2467{
2468 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002469
2470 dynamic_irq_cleanup(irq);
2471
2472 spin_lock_irqsave(&vector_lock, flags);
PJ Waskiewicz9d9ad4b2008-04-25 17:58:52 -07002473 clear_bit(irq_vector[irq], used_vectors);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002474 irq_vector[irq] = 0;
2475 spin_unlock_irqrestore(&vector_lock, flags);
2476}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002477
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002478/*
Simon Arlott27b46d72007-10-20 01:13:56 +02002479 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002480 */
2481#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002482static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002483{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002484 int vector;
2485 unsigned dest;
2486
2487 vector = assign_irq_vector(irq);
2488 if (vector >= 0) {
2489 dest = cpu_mask_to_apicid(TARGET_CPUS);
2490
2491 msg->address_hi = MSI_ADDR_BASE_HI;
2492 msg->address_lo =
2493 MSI_ADDR_BASE_LO |
2494 ((INT_DEST_MODE == 0) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002495MSI_ADDR_DEST_MODE_PHYSICAL:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002496 MSI_ADDR_DEST_MODE_LOGICAL) |
2497 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2498 MSI_ADDR_REDIRECTION_CPU:
2499 MSI_ADDR_REDIRECTION_LOWPRI) |
2500 MSI_ADDR_DEST_ID(dest);
2501
2502 msg->data =
2503 MSI_DATA_TRIGGER_EDGE |
2504 MSI_DATA_LEVEL_ASSERT |
2505 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002506MSI_DATA_DELIVERY_FIXED:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002507 MSI_DATA_DELIVERY_LOWPRI) |
2508 MSI_DATA_VECTOR(vector);
2509 }
2510 return vector;
2511}
2512
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002513#ifdef CONFIG_SMP
2514static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2515{
2516 struct msi_msg msg;
2517 unsigned int dest;
2518 cpumask_t tmp;
2519 int vector;
2520
2521 cpus_and(tmp, mask, cpu_online_map);
2522 if (cpus_empty(tmp))
2523 tmp = TARGET_CPUS;
2524
2525 vector = assign_irq_vector(irq);
2526 if (vector < 0)
2527 return;
2528
2529 dest = cpu_mask_to_apicid(mask);
2530
2531 read_msi_msg(irq, &msg);
2532
2533 msg.data &= ~MSI_DATA_VECTOR_MASK;
2534 msg.data |= MSI_DATA_VECTOR(vector);
2535 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2536 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2537
2538 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002539 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002540}
2541#endif /* CONFIG_SMP */
2542
2543/*
2544 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2545 * which implement the MSI or MSI-X Capability Structure.
2546 */
2547static struct irq_chip msi_chip = {
2548 .name = "PCI-MSI",
2549 .unmask = unmask_msi_irq,
2550 .mask = mask_msi_irq,
2551 .ack = ack_ioapic_irq,
2552#ifdef CONFIG_SMP
2553 .set_affinity = set_msi_irq_affinity,
2554#endif
2555 .retrigger = ioapic_retrigger_irq,
2556};
2557
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002558int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002559{
2560 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002561 int irq, ret;
2562 irq = create_irq();
2563 if (irq < 0)
2564 return irq;
2565
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002566 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002567 if (ret < 0) {
2568 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002569 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002570 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002571
Michael Ellerman7fe37302007-04-18 19:39:21 +10002572 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002573 write_msi_msg(irq, &msg);
2574
Ingo Molnara460e742006-10-17 00:10:03 -07002575 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2576 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002577
Michael Ellerman7fe37302007-04-18 19:39:21 +10002578 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002579}
2580
2581void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002582{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002583 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002584}
2585
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002586#endif /* CONFIG_PCI_MSI */
2587
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002588/*
2589 * Hypertransport interrupt support
2590 */
2591#ifdef CONFIG_HT_IRQ
2592
2593#ifdef CONFIG_SMP
2594
2595static void target_ht_irq(unsigned int irq, unsigned int dest)
2596{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002597 struct ht_irq_msg msg;
2598 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002599
Eric W. Biedermanec683072006-11-08 17:44:57 -08002600 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2601 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002602
Eric W. Biedermanec683072006-11-08 17:44:57 -08002603 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2604 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002605
Eric W. Biedermanec683072006-11-08 17:44:57 -08002606 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002607}
2608
2609static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2610{
2611 unsigned int dest;
2612 cpumask_t tmp;
2613
2614 cpus_and(tmp, mask, cpu_online_map);
2615 if (cpus_empty(tmp))
2616 tmp = TARGET_CPUS;
2617
2618 cpus_and(mask, tmp, CPU_MASK_ALL);
2619
2620 dest = cpu_mask_to_apicid(mask);
2621
2622 target_ht_irq(irq, dest);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002623 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002624}
2625#endif
2626
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002627static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002628 .name = "PCI-HT",
2629 .mask = mask_ht_irq,
2630 .unmask = unmask_ht_irq,
2631 .ack = ack_ioapic_irq,
2632#ifdef CONFIG_SMP
2633 .set_affinity = set_ht_irq_affinity,
2634#endif
2635 .retrigger = ioapic_retrigger_irq,
2636};
2637
2638int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2639{
2640 int vector;
2641
2642 vector = assign_irq_vector(irq);
2643 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002644 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002645 unsigned dest;
2646 cpumask_t tmp;
2647
2648 cpus_clear(tmp);
2649 cpu_set(vector >> 8, tmp);
2650 dest = cpu_mask_to_apicid(tmp);
2651
Eric W. Biedermanec683072006-11-08 17:44:57 -08002652 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002653
Eric W. Biedermanec683072006-11-08 17:44:57 -08002654 msg.address_lo =
2655 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002656 HT_IRQ_LOW_DEST_ID(dest) |
2657 HT_IRQ_LOW_VECTOR(vector) |
2658 ((INT_DEST_MODE == 0) ?
2659 HT_IRQ_LOW_DM_PHYSICAL :
2660 HT_IRQ_LOW_DM_LOGICAL) |
2661 HT_IRQ_LOW_RQEOI_EDGE |
2662 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2663 HT_IRQ_LOW_MT_FIXED :
2664 HT_IRQ_LOW_MT_ARBITRATED) |
2665 HT_IRQ_LOW_IRQ_MASKED;
2666
Eric W. Biedermanec683072006-11-08 17:44:57 -08002667 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002668
Ingo Molnara460e742006-10-17 00:10:03 -07002669 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2670 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002671 }
2672 return vector;
2673}
2674#endif /* CONFIG_HT_IRQ */
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676/* --------------------------------------------------------------------------
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002677 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 -------------------------------------------------------------------------- */
2679
Len Brown888ba6c2005-08-24 12:07:20 -04002680#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002682int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 union IO_APIC_reg_00 reg_00;
2685 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2686 physid_mask_t tmp;
2687 unsigned long flags;
2688 int i = 0;
2689
2690 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002691 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2692 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002694 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2696 * advantage of new APIC bus architecture.
2697 */
2698
2699 if (physids_empty(apic_id_map))
2700 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2701
2702 spin_lock_irqsave(&ioapic_lock, flags);
2703 reg_00.raw = io_apic_read(ioapic, 0);
2704 spin_unlock_irqrestore(&ioapic_lock, flags);
2705
2706 if (apic_id >= get_physical_broadcast()) {
2707 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2708 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2709 apic_id = reg_00.bits.ID;
2710 }
2711
2712 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002713 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * 'stuck on smp_invalidate_needed IPI wait' messages.
2715 */
2716 if (check_apicid_used(apic_id_map, apic_id)) {
2717
2718 for (i = 0; i < get_physical_broadcast(); i++) {
2719 if (!check_apicid_used(apic_id_map, i))
2720 break;
2721 }
2722
2723 if (i == get_physical_broadcast())
2724 panic("Max apic_id exceeded!\n");
2725
2726 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2727 "trying %d\n", ioapic, apic_id, i);
2728
2729 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732 tmp = apicid_to_cpu_present(apic_id);
2733 physids_or(apic_id_map, apic_id_map, tmp);
2734
2735 if (reg_00.bits.ID != apic_id) {
2736 reg_00.bits.ID = apic_id;
2737
2738 spin_lock_irqsave(&ioapic_lock, flags);
2739 io_apic_write(ioapic, 0, reg_00.raw);
2740 reg_00.raw = io_apic_read(ioapic, 0);
2741 spin_unlock_irqrestore(&ioapic_lock, flags);
2742
2743 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002744 if (reg_00.bits.ID != apic_id) {
2745 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2746 return -1;
2747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
2749
2750 apic_printk(APIC_VERBOSE, KERN_INFO
2751 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2752
2753 return apic_id;
2754}
2755
2756
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002757int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
2759 union IO_APIC_reg_01 reg_01;
2760 unsigned long flags;
2761
2762 spin_lock_irqsave(&ioapic_lock, flags);
2763 reg_01.raw = io_apic_read(ioapic, 1);
2764 spin_unlock_irqrestore(&ioapic_lock, flags);
2765
2766 return reg_01.bits.version;
2767}
2768
2769
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002770int __init io_apic_get_redir_entries(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
2772 union IO_APIC_reg_01 reg_01;
2773 unsigned long flags;
2774
2775 spin_lock_irqsave(&ioapic_lock, flags);
2776 reg_01.raw = io_apic_read(ioapic, 1);
2777 spin_unlock_irqrestore(&ioapic_lock, flags);
2778
2779 return reg_01.bits.entries;
2780}
2781
2782
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002783int 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 -07002784{
2785 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787 if (!IO_APIC_IRQ(irq)) {
2788 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2789 ioapic);
2790 return -EINVAL;
2791 }
2792
2793 /*
2794 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2795 * Note that we mask (disable) IRQs now -- these get enabled when the
2796 * corresponding device driver registers for this IRQ.
2797 */
2798
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002799 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 entry.delivery_mode = INT_DELIVERY_MODE;
2802 entry.dest_mode = INT_DEST_MODE;
2803 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2804 entry.trigger = edge_level;
2805 entry.polarity = active_high_low;
2806 entry.mask = 1;
2807
2808 /*
2809 * IRQs < 16 are already in the irq_2_pin[] map
2810 */
2811 if (irq >= 16)
2812 add_pin_to_irq(irq, ioapic, pin);
2813
2814 entry.vector = assign_irq_vector(irq);
2815
2816 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2817 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002818 mp_ioapics[ioapic].mp_apicid, pin, entry.vector, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 edge_level, active_high_low);
2820
2821 ioapic_register_intr(irq, entry.vector, edge_level);
2822
2823 if (!ioapic && (irq < 16))
2824 disable_8259A_irq(irq);
2825
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09002826 ioapic_write_entry(ioapic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 return 0;
2829}
2830
Shaohua Li61fd47e2007-11-17 01:05:28 -05002831int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2832{
2833 int i;
2834
2835 if (skip_ioapic_setup)
2836 return -1;
2837
2838 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002839 if (mp_irqs[i].mp_irqtype == mp_INT &&
2840 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05002841 break;
2842 if (i >= mp_irq_entries)
2843 return -1;
2844
2845 *trigger = irq_trigger(i);
2846 *polarity = irq_polarity(i);
2847 return 0;
2848}
2849
Len Brown888ba6c2005-08-24 12:07:20 -04002850#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002851
2852static int __init parse_disable_timer_pin_1(char *arg)
2853{
2854 disable_timer_pin_1 = 1;
2855 return 0;
2856}
2857early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2858
2859static int __init parse_enable_timer_pin_1(char *arg)
2860{
2861 disable_timer_pin_1 = -1;
2862 return 0;
2863}
2864early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2865
2866static int __init parse_noapic(char *arg)
2867{
2868 /* disable IO-APIC */
2869 disable_ioapic_setup();
2870 return 0;
2871}
2872early_param("noapic", parse_noapic);
Yinghai Luf3294a32008-06-27 01:41:56 -07002873
2874void __init ioapic_init_mappings(void)
2875{
2876 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
2877 int i;
2878
2879 for (i = 0; i < nr_ioapics; i++) {
2880 if (smp_found_config) {
2881 ioapic_phys = mp_ioapics[i].mp_apicaddr;
2882 if (!ioapic_phys) {
2883 printk(KERN_ERR
2884 "WARNING: bogus zero IO-APIC "
2885 "address found in MPTABLE, "
2886 "disabling IO/APIC support!\n");
2887 smp_found_config = 0;
2888 skip_ioapic_setup = 1;
2889 goto fake_ioapic_page;
2890 }
2891 } else {
2892fake_ioapic_page:
2893 ioapic_phys = (unsigned long)
2894 alloc_bootmem_pages(PAGE_SIZE);
2895 ioapic_phys = __pa(ioapic_phys);
2896 }
2897 set_fixmap_nocache(idx, ioapic_phys);
2898 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
2899 __fix_to_virt(idx), ioapic_phys);
2900 idx++;
2901 }
2902}
2903