blob: d54455ec985039b6cb079a73d718fc8e0cc2e8bf [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020051#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010053#define __apicdebuginit(type) static type __init
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055int (*ioapic_renumber_irq)(int ioapic, int irq);
56atomic_t irq_mis_count;
57
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -080058/* Where if anywhere is the i8259 connect in external int mode */
59static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static DEFINE_SPINLOCK(ioapic_lock);
Jan Beulich0a1ad602006-06-26 13:56:43 +020062static DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Maciej W. Rozycki35542c52008-05-21 22:10:22 +010064int timer_through_8259 __initdata;
Andi Kleenf9262c12006-03-08 17:57:25 -080065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Is the SiS APIC rmw bug present ?
68 * -1 = don't know, 0 = no, 1 = yes
69 */
70int sis_apic_bug = -1;
71
72/*
73 * # of IRQ routing registers
74 */
75int nr_ioapic_registers[MAX_IO_APICS];
76
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040077/* I/O APIC entries */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +040078struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040079int nr_ioapics;
80
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040081/* MP IRQ source entries */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +040082struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040083
84/* # of MP IRQ source entries */
85int mp_irq_entries;
86
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040087#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
88int mp_bus_id_to_type[MAX_MP_BUSSES];
89#endif
90
91DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
92
Rusty Russell1a3f2392006-09-26 10:52:32 +020093static int disable_timer_pin_1 __initdata;
Chuck Ebbert66759a02005-09-12 18:49:25 +020094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/*
96 * Rough estimation of how many shared IRQs there are, can
97 * be changed anytime.
98 */
99#define MAX_PLUS_SHARED_IRQS NR_IRQS
100#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
101
102/*
103 * This is performance-critical, we want to do it O(1)
104 *
105 * the indexing order of this array favors 1:1 mappings
106 * between pins and IRQs.
107 */
108
109static struct irq_pin_list {
110 int apic, pin, next;
111} irq_2_pin[PIN_MAP_SIZE];
112
Linus Torvalds130fe052006-11-01 09:11:00 -0800113struct io_apic {
114 unsigned int index;
115 unsigned int unused[3];
116 unsigned int data;
117};
118
119static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
120{
121 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400122 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800123}
124
125static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
126{
127 struct io_apic __iomem *io_apic = io_apic_base(apic);
128 writel(reg, &io_apic->index);
129 return readl(&io_apic->data);
130}
131
132static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
133{
134 struct io_apic __iomem *io_apic = io_apic_base(apic);
135 writel(reg, &io_apic->index);
136 writel(value, &io_apic->data);
137}
138
139/*
140 * Re-write a value: to be used for read-modify-write
141 * cycles where the read already set up the index register.
142 *
143 * Older SiS APIC requires we rewrite the index register
144 */
145static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
146{
Al Virocb468982007-02-09 16:39:25 +0000147 volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
Linus Torvalds130fe052006-11-01 09:11:00 -0800148 if (sis_apic_bug)
149 writel(reg, &io_apic->index);
150 writel(value, &io_apic->data);
151}
152
Andi Kleencf4c6a22006-09-26 10:52:30 +0200153union entry_union {
154 struct { u32 w1, w2; };
155 struct IO_APIC_route_entry entry;
156};
157
158static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
159{
160 union entry_union eu;
161 unsigned long flags;
162 spin_lock_irqsave(&ioapic_lock, flags);
163 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
164 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
165 spin_unlock_irqrestore(&ioapic_lock, flags);
166 return eu.entry;
167}
168
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800169/*
170 * When we write a new IO APIC routing entry, we need to write the high
171 * word first! If the mask bit in the low word is clear, we will enable
172 * the interrupt, and we need to make sure the entry is fully populated
173 * before that happens.
174 */
Andi Kleend15512f2006-12-07 02:14:07 +0100175static void
176__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
177{
178 union entry_union eu;
179 eu.entry = e;
180 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
181 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
182}
183
Andi Kleencf4c6a22006-09-26 10:52:30 +0200184static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
185{
186 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200187 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100188 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800189 spin_unlock_irqrestore(&ioapic_lock, flags);
190}
191
192/*
193 * When we mask an IO APIC routing entry, we need to write the low
194 * word first, in order to set the mask bit before we change the
195 * high bits!
196 */
197static void ioapic_mask_entry(int apic, int pin)
198{
199 unsigned long flags;
200 union entry_union eu = { .entry.mask = 1 };
201
202 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200203 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
204 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
205 spin_unlock_irqrestore(&ioapic_lock, flags);
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
209 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
210 * shared ISA-space IRQs, so we have to support them. We are super
211 * fast in the common case, and fast for shared ISA-space IRQs.
212 */
213static void add_pin_to_irq(unsigned int irq, int apic, int pin)
214{
215 static int first_free_entry = NR_IRQS;
216 struct irq_pin_list *entry = irq_2_pin + irq;
217
218 while (entry->next)
219 entry = irq_2_pin + entry->next;
220
221 if (entry->pin != -1) {
222 entry->next = first_free_entry;
223 entry = irq_2_pin + entry->next;
224 if (++first_free_entry >= PIN_MAP_SIZE)
225 panic("io_apic.c: whoops");
226 }
227 entry->apic = apic;
228 entry->pin = pin;
229}
230
231/*
232 * Reroute an IRQ to a different pin.
233 */
234static void __init replace_pin_at_irq(unsigned int irq,
235 int oldapic, int oldpin,
236 int newapic, int newpin)
237{
238 struct irq_pin_list *entry = irq_2_pin + irq;
239
240 while (1) {
241 if (entry->apic == oldapic && entry->pin == oldpin) {
242 entry->apic = newapic;
243 entry->pin = newpin;
244 }
245 if (!entry->next)
246 break;
247 entry = irq_2_pin + entry->next;
248 }
249}
250
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200251static void __modify_IO_APIC_irq(unsigned int irq, unsigned long enable, unsigned long disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct irq_pin_list *entry = irq_2_pin + irq;
254 unsigned int pin, reg;
255
256 for (;;) {
257 pin = entry->pin;
258 if (pin == -1)
259 break;
260 reg = io_apic_read(entry->apic, 0x10 + pin*2);
261 reg &= ~disable;
262 reg |= enable;
263 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
264 if (!entry->next)
265 break;
266 entry = irq_2_pin + entry->next;
267 }
268}
269
270/* mask = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200271static void __mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400273 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276/* mask = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200277static void __unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400279 __modify_IO_APIC_irq(irq, 0, IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/* mask = 1, trigger = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200283static void __mask_and_edge_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400285 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED,
286 IO_APIC_REDIR_LEVEL_TRIGGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/* mask = 0, trigger = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200290static void __unmask_and_level_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400292 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_LEVEL_TRIGGER,
293 IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200296static void mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 unsigned long flags;
299
300 spin_lock_irqsave(&ioapic_lock, flags);
301 __mask_IO_APIC_irq(irq);
302 spin_unlock_irqrestore(&ioapic_lock, flags);
303}
304
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200305static void unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 unsigned long flags;
308
309 spin_lock_irqsave(&ioapic_lock, flags);
310 __unmask_IO_APIC_irq(irq);
311 spin_unlock_irqrestore(&ioapic_lock, flags);
312}
313
314static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
315{
316 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200319 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (entry.delivery_mode == dest_SMI)
321 return;
322
323 /*
324 * Disable it in the IO-APIC irq-routing table:
325 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800326 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200329static void clear_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 int apic, pin;
332
333 for (apic = 0; apic < nr_ioapics; apic++)
334 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
335 clear_IO_APIC_pin(apic, pin);
336}
337
Ashok Raj54d5d422005-09-06 15:16:15 -0700338#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
340{
341 unsigned long flags;
342 int pin;
343 struct irq_pin_list *entry = irq_2_pin + irq;
344 unsigned int apicid_value;
Ashok Raj54d5d422005-09-06 15:16:15 -0700345 cpumask_t tmp;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200346
Ashok Raj54d5d422005-09-06 15:16:15 -0700347 cpus_and(tmp, cpumask, cpu_online_map);
348 if (cpus_empty(tmp))
349 tmp = TARGET_CPUS;
350
351 cpus_and(cpumask, tmp, CPU_MASK_ALL);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 apicid_value = cpu_mask_to_apicid(cpumask);
354 /* Prepare to do the io_apic_write */
355 apicid_value = apicid_value << 24;
356 spin_lock_irqsave(&ioapic_lock, flags);
357 for (;;) {
358 pin = entry->pin;
359 if (pin == -1)
360 break;
361 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
362 if (!entry->next)
363 break;
364 entry = irq_2_pin + entry->next;
365 }
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -0700366 irq_desc[irq].affinity = cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 spin_unlock_irqrestore(&ioapic_lock, flags);
368}
369
370#if defined(CONFIG_IRQBALANCE)
371# include <asm/processor.h> /* kernel_thread() */
372# include <linux/kernel_stat.h> /* kstat */
373# include <linux/slab.h> /* kmalloc() */
Julia Lawall1d16b532008-01-30 13:32:19 +0100374# include <linux/timer.h>
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#define IRQBALANCE_CHECK_ARCH -999
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700377#define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
378#define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
379#define BALANCED_IRQ_MORE_DELTA (HZ/10)
380#define BALANCED_IRQ_LESS_DELTA (HZ)
381
382static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
383static int physical_balance __read_mostly;
384static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386static struct irq_cpu_info {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200387 unsigned long *last_irq;
388 unsigned long *irq_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 unsigned long irq;
390} irq_cpu_data[NR_CPUS];
391
392#define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200393#define LAST_CPU_IRQ(cpu, irq) (irq_cpu_data[cpu].last_irq[irq])
394#define IRQ_DELTA(cpu, irq) (irq_cpu_data[cpu].irq_delta[irq])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396#define IDLE_ENOUGH(cpu,now) \
397 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
398
399#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
400
Mike Travisd5a74302007-10-16 01:24:05 -0700401#define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700403static cpumask_t balance_irq_affinity[NR_IRQS] = {
404 [0 ... NR_IRQS-1] = CPU_MASK_ALL
405};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700407void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
408{
409 balance_irq_affinity[irq] = mask;
410}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
413 unsigned long now, int direction)
414{
415 int search_idle = 1;
416 int cpu = curr_cpu;
417
418 goto inside;
419
420 do {
421 if (unlikely(cpu == curr_cpu))
422 search_idle = 0;
423inside:
424 if (direction == 1) {
425 cpu++;
426 if (cpu >= NR_CPUS)
427 cpu = 0;
428 } else {
429 cpu--;
430 if (cpu == -1)
431 cpu = NR_CPUS-1;
432 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200433 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu, allowed_mask) ||
434 (search_idle && !IDLE_ENOUGH(cpu, now)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 return cpu;
437}
438
439static inline void balance_irq(int cpu, int irq)
440{
441 unsigned long now = jiffies;
442 cpumask_t allowed_mask;
443 unsigned int new_cpu;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (irqbalance_disabled)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700448 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 new_cpu = move(cpu, allowed_mask, now, 1);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200450 if (cpu != new_cpu)
Ashok Raj54d5d422005-09-06 15:16:15 -0700451 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
455{
456 int i, j;
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200457
Andrew Morton394e3902006-03-23 03:01:05 -0800458 for_each_online_cpu(i) {
459 for (j = 0; j < NR_IRQS; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!irq_desc[j].action)
461 continue;
462 /* Is it a significant load ? */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200463 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i), j) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 useful_load_threshold)
465 continue;
466 balance_irq(i, j);
467 }
468 }
469 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200470 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return;
472}
473
474static void do_irq_balance(void)
475{
476 int i, j;
477 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
478 unsigned long move_this_load = 0;
479 int max_loaded = 0, min_loaded = 0;
480 int load;
481 unsigned long useful_load_threshold = balanced_irq_interval + 10;
482 int selected_irq;
483 int tmp_loaded, first_attempt = 1;
484 unsigned long tmp_cpu_irq;
485 unsigned long imbalance = 0;
486 cpumask_t allowed_mask, target_cpu_mask, tmp;
487
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800488 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int package_index;
490 CPU_IRQ(i) = 0;
491 if (!cpu_online(i))
492 continue;
493 package_index = CPU_TO_PACKAGEINDEX(i);
494 for (j = 0; j < NR_IRQS; j++) {
495 unsigned long value_now, delta;
Thomas Gleixner950f4422007-02-16 01:27:24 -0800496 /* Is this an active IRQ or balancing disabled ? */
497 if (!irq_desc[j].action || irq_balancing_disabled(j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200499 if (package_index == i)
500 IRQ_DELTA(package_index, j) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /* Determine the total count per processor per IRQ */
502 value_now = (unsigned long) kstat_cpu(i).irqs[j];
503
504 /* Determine the activity per processor per IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200505 delta = value_now - LAST_CPU_IRQ(i, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* Update last_cpu_irq[][] for the next time */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200508 LAST_CPU_IRQ(i, j) = value_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /* Ignore IRQs whose rate is less than the clock */
511 if (delta < useful_load_threshold)
512 continue;
513 /* update the load for the processor or package total */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200514 IRQ_DELTA(package_index, j) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /* Keep track of the higher numbered sibling as well */
517 if (i != package_index)
518 CPU_IRQ(i) += delta;
519 /*
520 * We have sibling A and sibling B in the package
521 *
522 * cpu_irq[A] = load for cpu A + load for cpu B
523 * cpu_irq[B] = load for cpu B
524 */
525 CPU_IRQ(package_index) += delta;
526 }
527 }
528 /* Find the least loaded processor package */
Andrew Morton394e3902006-03-23 03:01:05 -0800529 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (i != CPU_TO_PACKAGEINDEX(i))
531 continue;
532 if (min_cpu_irq > CPU_IRQ(i)) {
533 min_cpu_irq = CPU_IRQ(i);
534 min_loaded = i;
535 }
536 }
537 max_cpu_irq = ULONG_MAX;
538
539tryanothercpu:
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200540 /*
541 * Look for heaviest loaded processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 * We may come back to get the next heaviest loaded processor.
543 * Skip processors with trivial loads.
544 */
545 tmp_cpu_irq = 0;
546 tmp_loaded = -1;
Andrew Morton394e3902006-03-23 03:01:05 -0800547 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (i != CPU_TO_PACKAGEINDEX(i))
549 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200550 if (max_cpu_irq <= CPU_IRQ(i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 continue;
552 if (tmp_cpu_irq < CPU_IRQ(i)) {
553 tmp_cpu_irq = CPU_IRQ(i);
554 tmp_loaded = i;
555 }
556 }
557
558 if (tmp_loaded == -1) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200559 /*
560 * In the case of small number of heavy interrupt sources,
561 * loading some of the cpus too much. We use Ingo's original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * approach to rotate them around.
563 */
564 if (!first_attempt && imbalance >= useful_load_threshold) {
565 rotate_irqs_among_cpus(useful_load_threshold);
566 return;
567 }
568 goto not_worth_the_effort;
569 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 first_attempt = 0; /* heaviest search */
572 max_cpu_irq = tmp_cpu_irq; /* load */
573 max_loaded = tmp_loaded; /* processor */
574 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200575
576 /*
577 * if imbalance is less than approx 10% of max load, then
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * observe diminishing returns action. - quit
579 */
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200580 if (imbalance < (max_cpu_irq >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 goto not_worth_the_effort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583tryanotherirq:
584 /* if we select an IRQ to move that can't go where we want, then
585 * see if there is another one to try.
586 */
587 move_this_load = 0;
588 selected_irq = -1;
589 for (j = 0; j < NR_IRQS; j++) {
590 /* Is this an active IRQ? */
591 if (!irq_desc[j].action)
592 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200593 if (imbalance <= IRQ_DELTA(max_loaded, j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 continue;
595 /* Try to find the IRQ that is closest to the imbalance
596 * without going over.
597 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200598 if (move_this_load < IRQ_DELTA(max_loaded, j)) {
599 move_this_load = IRQ_DELTA(max_loaded, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 selected_irq = j;
601 }
602 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200603 if (selected_irq == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 goto tryanothercpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 imbalance = move_this_load;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200607
Simon Arlott27b46d72007-10-20 01:13:56 +0200608 /* For physical_balance case, we accumulated both load
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * values in the one of the siblings cpu_irq[],
610 * to use the same code for physical and logical processors
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200611 * as much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 *
613 * NOTE: the cpu_irq[] array holds the sum of the load for
614 * sibling A and sibling B in the slot for the lowest numbered
615 * sibling (A), _AND_ the load for sibling B in the slot for
616 * the higher numbered sibling.
617 *
618 * We seek the least loaded sibling by making the comparison
619 * (A+B)/2 vs B
620 */
621 load = CPU_IRQ(min_loaded) >> 1;
Mike Travisd5a74302007-10-16 01:24:05 -0700622 for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (load > CPU_IRQ(j)) {
624 /* This won't change cpu_sibling_map[min_loaded] */
625 load = CPU_IRQ(j);
626 min_loaded = j;
627 }
628 }
629
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700630 cpus_and(allowed_mask,
631 cpu_online_map,
632 balance_irq_affinity[selected_irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 target_cpu_mask = cpumask_of_cpu(min_loaded);
634 cpus_and(tmp, target_cpu_mask, allowed_mask);
635
636 if (!cpus_empty(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* mark for change destination */
Ashok Raj54d5d422005-09-06 15:16:15 -0700638 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
639
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200640 /* Since we made a change, come back sooner to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * check for more variation.
642 */
643 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200644 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return;
646 }
647 goto tryanotherirq;
648
649not_worth_the_effort:
650 /*
651 * if we did not find an IRQ to move, then adjust the time interval
652 * upward
653 */
654 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200655 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return;
657}
658
659static int balanced_irq(void *unused)
660{
661 int i;
662 unsigned long prev_balance_time = jiffies;
663 long time_remaining = balanced_irq_interval;
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* push everything to CPU 0 to give us a starting point. */
666 for (i = 0 ; i < NR_IRQS ; i++) {
Ingo Molnarcd916d32006-06-29 02:24:42 -0700667 irq_desc[i].pending_mask = cpumask_of_cpu(0);
Ashok Raj54d5d422005-09-06 15:16:15 -0700668 set_pending_irq(i, cpumask_of_cpu(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700671 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 for ( ; ; ) {
Nishanth Aravamudan52e6e632005-09-10 00:27:26 -0700673 time_remaining = schedule_timeout_interruptible(time_remaining);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700674 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (time_after(jiffies,
676 prev_balance_time+balanced_irq_interval)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700677 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 do_irq_balance();
679 prev_balance_time = jiffies;
680 time_remaining = balanced_irq_interval;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700681 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683 }
684 return 0;
685}
686
687static int __init balanced_irq_init(void)
688{
689 int i;
690 struct cpuinfo_x86 *c;
691 cpumask_t tmp;
692
693 cpus_shift_right(tmp, cpu_online_map, 2);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200694 c = &boot_cpu_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* When not overwritten by the command line ask subarchitecture. */
696 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
697 irqbalance_disabled = NO_BALANCE_IRQ;
698 if (irqbalance_disabled)
699 return 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /* disable irqbalance completely if there is only one processor online */
702 if (num_online_cpus() < 2) {
703 irqbalance_disabled = 1;
704 return 0;
705 }
706 /*
707 * Enable physical balance only if more than 1 physical processor
708 * is present
709 */
710 if (smp_num_siblings > 1 && !cpus_empty(tmp))
711 physical_balance = 1;
712
Andrew Morton394e3902006-03-23 03:01:05 -0800713 for_each_online_cpu(i) {
Christophe Jaillet25556c12008-06-22 22:13:48 +0200714 irq_cpu_data[i].irq_delta = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
715 irq_cpu_data[i].last_irq = kzalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
717 printk(KERN_ERR "balanced_irq_init: out of memory");
718 goto failed;
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 printk(KERN_INFO "Starting balanced_irq\n");
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200723 if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200725 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726failed:
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800727 for_each_possible_cpu(i) {
Jesper Juhl4ae66732005-06-25 14:58:48 -0700728 kfree(irq_cpu_data[i].irq_delta);
Andrew Morton394e3902006-03-23 03:01:05 -0800729 irq_cpu_data[i].irq_delta = NULL;
Jesper Juhl4ae66732005-06-25 14:58:48 -0700730 kfree(irq_cpu_data[i].last_irq);
Andrew Morton394e3902006-03-23 03:01:05 -0800731 irq_cpu_data[i].last_irq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 return 0;
734}
735
Andrew Mortonc2481cc2007-04-08 16:04:04 -0700736int __devinit irqbalance_disable(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 irqbalance_disabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800739 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742__setup("noirqbalance", irqbalance_disable);
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744late_initcall(balanced_irq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#endif /* CONFIG_IRQBALANCE */
Ashok Raj54d5d422005-09-06 15:16:15 -0700746#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748#ifndef CONFIG_SMP
Harvey Harrison75604d72008-01-30 13:31:17 +0100749void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 unsigned int cfg;
752
753 /*
754 * Wait for idle.
755 */
756 apic_wait_icr_idle();
757 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
758 /*
759 * Send the IPI. The write to APIC_ICR fires this off.
760 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100761 apic_write(APIC_ICR, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763#endif /* !CONFIG_SMP */
764
765
766/*
767 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
768 * specific CPU-side IRQs.
769 */
770
771#define MAX_PIRQS 8
772static int pirq_entries [MAX_PIRQS];
773static int pirqs_enabled;
774int skip_ioapic_setup;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776static int __init ioapic_pirq_setup(char *str)
777{
778 int i, max;
779 int ints[MAX_PIRQS+1];
780
781 get_options(str, ARRAY_SIZE(ints), ints);
782
783 for (i = 0; i < MAX_PIRQS; i++)
784 pirq_entries[i] = -1;
785
786 pirqs_enabled = 1;
787 apic_printk(APIC_VERBOSE, KERN_INFO
788 "PIRQ redirection, working around broken MP-BIOS.\n");
789 max = MAX_PIRQS;
790 if (ints[0] < MAX_PIRQS)
791 max = ints[0];
792
793 for (i = 0; i < max; i++) {
794 apic_printk(APIC_VERBOSE, KERN_DEBUG
795 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
796 /*
797 * PIRQs are mapped upside down, usually.
798 */
799 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
800 }
801 return 1;
802}
803
804__setup("pirq=", ioapic_pirq_setup);
805
806/*
807 * Find the IRQ entry number of a certain pin.
808 */
809static int find_irq_entry(int apic, int pin, int type)
810{
811 int i;
812
813 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400814 if (mp_irqs[i].mp_irqtype == type &&
815 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
816 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
817 mp_irqs[i].mp_dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return i;
819
820 return -1;
821}
822
823/*
824 * Find the pin to which IRQ[irq] (ISA) is connected
825 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800826static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 int i;
829
830 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400831 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300833 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400834 (mp_irqs[i].mp_irqtype == type) &&
835 (mp_irqs[i].mp_srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400837 return mp_irqs[i].mp_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 return -1;
840}
841
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800842static int __init find_isa_irq_apic(int irq, int type)
843{
844 int i;
845
846 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400847 int lbus = mp_irqs[i].mp_srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800848
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300849 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400850 (mp_irqs[i].mp_irqtype == type) &&
851 (mp_irqs[i].mp_srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800852 break;
853 }
854 if (i < mp_irq_entries) {
855 int apic;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200856 for (apic = 0; apic < nr_ioapics; apic++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400857 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800858 return apic;
859 }
860 }
861
862 return -1;
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865/*
866 * Find a specific PCI IRQ entry.
867 * Not an __init, possibly needed by modules
868 */
869static int pin_2_irq(int idx, int apic, int pin);
870
871int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
872{
873 int apic, i, best_guess = -1;
874
875 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
876 "slot:%d, pin:%d.\n", bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +0400877 if (test_bit(bus, mp_bus_not_pci)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
879 return -1;
880 }
881 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400882 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 for (apic = 0; apic < nr_ioapics; apic++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400885 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
886 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
888
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300889 if (!test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400890 !mp_irqs[i].mp_irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 (bus == lbus) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400892 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
Ingo Molnar3de352b2008-07-08 11:14:58 +0200893 int irq = pin_2_irq(i, apic, mp_irqs[i].mp_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (!(apic || IO_APIC_IRQ(irq)))
896 continue;
897
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400898 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return irq;
900 /*
901 * Use the first all-but-pin matching entry as a
902 * best-guess fuzzy result for broken mptables.
903 */
904 if (best_guess < 0)
905 best_guess = irq;
906 }
907 }
908 return best_guess;
909}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700910EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912/*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200913 * This function currently is only a helper for the i386 smp boot process where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * we need to reprogram the ioredtbls to cater for the cpus which have come online
915 * so mask in all cases should simply be TARGET_CPUS
916 */
Ashok Raj54d5d422005-09-06 15:16:15 -0700917#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918void __init setup_ioapic_dest(void)
919{
920 int pin, ioapic, irq, irq_entry;
921
922 if (skip_ioapic_setup == 1)
923 return;
924
925 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
926 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
927 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
928 if (irq_entry == -1)
929 continue;
930 irq = pin_2_irq(irq_entry, ioapic, pin);
931 set_ioapic_affinity_irq(irq, TARGET_CPUS);
932 }
933
934 }
935}
Ashok Raj54d5d422005-09-06 15:16:15 -0700936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300938#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * EISA Edge/Level control register, ELCR
941 */
942static int EISA_ELCR(unsigned int irq)
943{
944 if (irq < 16) {
945 unsigned int port = 0x4d0 + (irq >> 3);
946 return (inb(port) >> (irq & 7)) & 1;
947 }
948 apic_printk(APIC_VERBOSE, KERN_INFO
949 "Broken MPtable reports ISA irq %d\n", irq);
950 return 0;
951}
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300952#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300954/* ISA interrupts are always polarity zero edge triggered,
955 * when listed as conforming in the MP table. */
956
957#define default_ISA_trigger(idx) (0)
958#define default_ISA_polarity(idx) (0)
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/* EISA interrupts are always polarity zero and can be edge or level
961 * trigger depending on the ELCR value. If an interrupt is listed as
962 * EISA conforming in the MP table, that means its trigger type must
963 * be read in from the ELCR */
964
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400965#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300966#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968/* PCI interrupts are always polarity one level triggered,
969 * when listed as conforming in the MP table. */
970
971#define default_PCI_trigger(idx) (1)
972#define default_PCI_polarity(idx) (1)
973
974/* MCA interrupts are always polarity zero level triggered,
975 * when listed as conforming in the MP table. */
976
977#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300978#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Shaohua Li61fd47e2007-11-17 01:05:28 -0500980static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400982 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int polarity;
984
985 /*
986 * Determine IRQ line polarity (high active or low active):
987 */
Ingo Molnar3de352b2008-07-08 11:14:58 +0200988 switch (mp_irqs[idx].mp_irqflag & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200989 case 0: /* conforms, ie. bus-type dependent polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200991 polarity = test_bit(bus, mp_bus_not_pci)?
992 default_ISA_polarity(idx):
993 default_PCI_polarity(idx);
994 break;
995 }
996 case 1: /* high active */
997 {
998 polarity = 0;
999 break;
1000 }
1001 case 2: /* reserved */
1002 {
1003 printk(KERN_WARNING "broken BIOS!!\n");
1004 polarity = 1;
1005 break;
1006 }
1007 case 3: /* low active */
1008 {
1009 polarity = 1;
1010 break;
1011 }
1012 default: /* invalid */
1013 {
1014 printk(KERN_WARNING "broken BIOS!!\n");
1015 polarity = 1;
1016 break;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019 return polarity;
1020}
1021
1022static int MPBIOS_trigger(int idx)
1023{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001024 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 int trigger;
1026
1027 /*
1028 * Determine IRQ trigger mode (edge or level sensitive):
1029 */
Ingo Molnar3de352b2008-07-08 11:14:58 +02001030 switch ((mp_irqs[idx].mp_irqflag>>2) & 3) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001031 case 0: /* conforms, ie. bus-type dependent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001033 trigger = test_bit(bus, mp_bus_not_pci)?
1034 default_ISA_trigger(idx):
1035 default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001036#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001037 switch (mp_bus_id_to_type[bus]) {
1038 case MP_BUS_ISA: /* ISA pin */
1039 {
1040 /* set before the switch */
1041 break;
1042 }
1043 case MP_BUS_EISA: /* EISA pin */
1044 {
1045 trigger = default_EISA_trigger(idx);
1046 break;
1047 }
1048 case MP_BUS_PCI: /* PCI pin */
1049 {
1050 /* set before the switch */
1051 break;
1052 }
1053 case MP_BUS_MCA: /* MCA pin */
1054 {
1055 trigger = default_MCA_trigger(idx);
1056 break;
1057 }
1058 default:
1059 {
1060 printk(KERN_WARNING "broken BIOS!!\n");
1061 trigger = 1;
1062 break;
1063 }
1064 }
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001065#endif
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001066 break;
1067 }
1068 case 1: /* edge */
1069 {
1070 trigger = 0;
1071 break;
1072 }
1073 case 2: /* reserved */
1074 {
1075 printk(KERN_WARNING "broken BIOS!!\n");
1076 trigger = 1;
1077 break;
1078 }
1079 case 3: /* level */
1080 {
1081 trigger = 1;
1082 break;
1083 }
1084 default: /* invalid */
1085 {
1086 printk(KERN_WARNING "broken BIOS!!\n");
1087 trigger = 0;
1088 break;
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091 return trigger;
1092}
1093
1094static inline int irq_polarity(int idx)
1095{
1096 return MPBIOS_polarity(idx);
1097}
1098
1099static inline int irq_trigger(int idx)
1100{
1101 return MPBIOS_trigger(idx);
1102}
1103
1104static int pin_2_irq(int idx, int apic, int pin)
1105{
1106 int irq, i;
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001107 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * Debugging check, we are in big trouble if this message pops up!
1111 */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001112 if (mp_irqs[idx].mp_dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1114
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001115 if (test_bit(bus, mp_bus_not_pci))
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001116 irq = mp_irqs[idx].mp_srcbusirq;
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001117 else {
1118 /*
1119 * PCI IRQs are mapped in order
1120 */
1121 i = irq = 0;
1122 while (i < apic)
1123 irq += nr_ioapic_registers[i++];
1124 irq += pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001126 /*
1127 * For MPS mode, so far only needed by ES7000 platform
1128 */
1129 if (ioapic_renumber_irq)
1130 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
1133 /*
1134 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1135 */
1136 if ((pin >= 16) && (pin <= 23)) {
1137 if (pirq_entries[pin-16] != -1) {
1138 if (!pirq_entries[pin-16]) {
1139 apic_printk(APIC_VERBOSE, KERN_DEBUG
1140 "disabling PIRQ%d\n", pin-16);
1141 } else {
1142 irq = pirq_entries[pin-16];
1143 apic_printk(APIC_VERBOSE, KERN_DEBUG
1144 "using PIRQ%d -> IRQ %d\n",
1145 pin-16, irq);
1146 }
1147 }
1148 }
1149 return irq;
1150}
1151
1152static inline int IO_APIC_irq_trigger(int irq)
1153{
1154 int apic, idx, pin;
1155
1156 for (apic = 0; apic < nr_ioapics; apic++) {
1157 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001158 idx = find_irq_entry(apic, pin, mp_INT);
1159 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return irq_trigger(idx);
1161 }
1162 }
1163 /*
1164 * nonexistent IRQs are edge default
1165 */
1166 return 0;
1167}
1168
1169/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Adrian Bunk7e95b592006-12-07 02:14:11 +01001170static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001172static int __assign_irq_vector(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001174 static int current_vector = FIRST_DEVICE_VECTOR, current_offset;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001175 int vector, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001177 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +02001178
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001179 if (irq_vector[irq] > 0)
1180 return irq_vector[irq];
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001181
Jan Beulich0a1ad602006-06-26 13:56:43 +02001182 vector = current_vector;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001183 offset = current_offset;
1184next:
1185 vector += 8;
Alan Mayer305b92a2008-04-15 15:36:56 -05001186 if (vector >= first_system_vector) {
Eric W. Biederman8339f002007-01-29 13:19:05 -07001187 offset = (offset + 1) % 8;
1188 vector = FIRST_DEVICE_VECTOR + offset;
1189 }
1190 if (vector == current_vector)
1191 return -ENOSPC;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001192 if (test_and_set_bit(vector, used_vectors))
Eric W. Biederman8339f002007-01-29 13:19:05 -07001193 goto next;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001194
1195 current_vector = vector;
1196 current_offset = offset;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001197 irq_vector[irq] = vector;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001198
1199 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001202static int assign_irq_vector(int irq)
1203{
1204 unsigned long flags;
1205 int vector;
1206
1207 spin_lock_irqsave(&vector_lock, flags);
1208 vector = __assign_irq_vector(irq);
1209 spin_unlock_irqrestore(&vector_lock, flags);
1210
1211 return vector;
1212}
Glauber Costa3fde6902008-05-28 20:34:19 -07001213
1214void setup_vector_irq(int cpu)
1215{
1216}
1217
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001218static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220#define IOAPIC_AUTO -1
1221#define IOAPIC_EDGE 0
1222#define IOAPIC_LEVEL 1
1223
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001224static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001226 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001227 trigger == IOAPIC_LEVEL) {
1228 irq_desc[irq].status |= IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001229 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1230 handle_fasteoi_irq, "fasteoi");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001231 } else {
1232 irq_desc[irq].status &= ~IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001233 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1234 handle_edge_irq, "edge");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001235 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001236 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239static void __init setup_IO_APIC_irqs(void)
1240{
1241 struct IO_APIC_route_entry entry;
1242 int apic, pin, idx, irq, first_notcon = 1, vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1245
1246 for (apic = 0; apic < nr_ioapics; apic++) {
1247 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1248
1249 /*
1250 * add it to the IO-APIC irq-routing table:
1251 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001252 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 entry.delivery_mode = INT_DELIVERY_MODE;
1255 entry.dest_mode = INT_DEST_MODE;
1256 entry.mask = 0; /* enable IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001257 entry.dest.logical.logical_dest =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 cpu_mask_to_apicid(TARGET_CPUS);
1259
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001260 idx = find_irq_entry(apic, pin, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (idx == -1) {
1262 if (first_notcon) {
1263 apic_printk(APIC_VERBOSE, KERN_DEBUG
1264 " IO-APIC (apicid-pin) %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001265 mp_ioapics[apic].mp_apicid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 pin);
1267 first_notcon = 0;
1268 } else
1269 apic_printk(APIC_VERBOSE, ", %d-%d",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001270 mp_ioapics[apic].mp_apicid, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 continue;
1272 }
1273
Yinghai Lu20d225b2007-10-17 18:04:41 +02001274 if (!first_notcon) {
1275 apic_printk(APIC_VERBOSE, " not connected.\n");
1276 first_notcon = 1;
1277 }
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 entry.trigger = irq_trigger(idx);
1280 entry.polarity = irq_polarity(idx);
1281
1282 if (irq_trigger(idx)) {
1283 entry.trigger = 1;
1284 entry.mask = 1;
1285 }
1286
1287 irq = pin_2_irq(idx, apic, pin);
1288 /*
1289 * skip adding the timer int on secondary nodes, which causes
1290 * a small but painful rift in the time-space continuum
1291 */
1292 if (multi_timer_check(apic, irq))
1293 continue;
1294 else
1295 add_pin_to_irq(irq, apic, pin);
1296
1297 if (!apic && !IO_APIC_IRQ(irq))
1298 continue;
1299
1300 if (IO_APIC_IRQ(irq)) {
1301 vector = assign_irq_vector(irq);
1302 entry.vector = vector;
1303 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (!apic && (irq < 16))
1306 disable_8259A_irq(irq);
1307 }
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09001308 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310 }
1311
1312 if (!first_notcon)
1313 apic_printk(APIC_VERBOSE, " not connected.\n");
1314}
1315
1316/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001317 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001319static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1320 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001324 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 /*
1327 * We use logical delivery to get the timer IRQ
1328 * to the first CPU.
1329 */
1330 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001331 entry.mask = 1; /* mask IRQ now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1333 entry.delivery_mode = INT_DELIVERY_MODE;
1334 entry.polarity = 0;
1335 entry.trigger = 0;
1336 entry.vector = vector;
1337
1338 /*
1339 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001340 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 */
Maciej W. Rozyckif0825262008-05-27 21:19:16 +01001342 ioapic_register_intr(0, vector, IOAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /*
1345 * Add it to the IO-APIC irq-routing table:
1346 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001347 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001350
1351__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 int apic, i;
1354 union IO_APIC_reg_00 reg_00;
1355 union IO_APIC_reg_01 reg_01;
1356 union IO_APIC_reg_02 reg_02;
1357 union IO_APIC_reg_03 reg_03;
1358 unsigned long flags;
1359
1360 if (apic_verbosity == APIC_QUIET)
1361 return;
1362
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001363 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 for (i = 0; i < nr_ioapics; i++)
1365 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001366 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /*
1369 * We are a bit conservative about what we expect. We have to
1370 * know about every hardware change ASAP.
1371 */
1372 printk(KERN_INFO "testing the IO APIC.......................\n");
1373
1374 for (apic = 0; apic < nr_ioapics; apic++) {
1375
1376 spin_lock_irqsave(&ioapic_lock, flags);
1377 reg_00.raw = io_apic_read(apic, 0);
1378 reg_01.raw = io_apic_read(apic, 1);
1379 if (reg_01.bits.version >= 0x10)
1380 reg_02.raw = io_apic_read(apic, 2);
1381 if (reg_01.bits.version >= 0x20)
1382 reg_03.raw = io_apic_read(apic, 3);
1383 spin_unlock_irqrestore(&ioapic_lock, flags);
1384
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001385 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1387 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1388 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1389 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1392 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1395 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /*
1398 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1399 * but the value of reg_02 is read as the previous read register
1400 * value, so ignore it if reg_02 == reg_01.
1401 */
1402 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1403 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1404 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406
1407 /*
1408 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1409 * or reg_03, but the value of reg_0[23] is read as the previous read
1410 * register value, so ignore it if reg_03 == reg_0[12].
1411 */
1412 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1413 reg_03.raw != reg_01.raw) {
1414 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1415 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
1418 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1419
1420 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1421 " Stat Dest Deli Vect: \n");
1422
1423 for (i = 0; i <= reg_01.bits.entries; i++) {
1424 struct IO_APIC_route_entry entry;
1425
Andi Kleencf4c6a22006-09-26 10:52:30 +02001426 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 printk(KERN_DEBUG " %02x %03X %02X ",
1429 i,
1430 entry.dest.logical.logical_dest,
1431 entry.dest.physical.physical_dest
1432 );
1433
1434 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1435 entry.mask,
1436 entry.trigger,
1437 entry.irr,
1438 entry.polarity,
1439 entry.delivery_status,
1440 entry.dest_mode,
1441 entry.delivery_mode,
1442 entry.vector
1443 );
1444 }
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1447 for (i = 0; i < NR_IRQS; i++) {
1448 struct irq_pin_list *entry = irq_2_pin + i;
1449 if (entry->pin < 0)
1450 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001451 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 for (;;) {
1453 printk("-> %d:%d", entry->apic, entry->pin);
1454 if (!entry->next)
1455 break;
1456 entry = irq_2_pin + entry->next;
1457 }
1458 printk("\n");
1459 }
1460
1461 printk(KERN_INFO ".................................... done.\n");
1462
1463 return;
1464}
1465
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001466__apicdebuginit(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
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001487__apicdebuginit(void) 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,
1498 GET_APIC_ID(read_apic_id()));
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
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001571__apicdebuginit(void) 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
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001576__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
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
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001608__apicdebuginit(int) print_all_ICs(void)
1609{
1610 print_PIC();
1611 print_all_local_APICs();
1612 print_IO_APIC();
1613
1614 return 0;
1615}
1616
1617fs_initcall(print_all_ICs);
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620static void __init enable_IO_APIC(void)
1621{
1622 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001623 int i8259_apic, i8259_pin;
1624 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 unsigned long flags;
1626
1627 for (i = 0; i < PIN_MAP_SIZE; i++) {
1628 irq_2_pin[i].pin = -1;
1629 irq_2_pin[i].next = 0;
1630 }
1631 if (!pirqs_enabled)
1632 for (i = 0; i < MAX_PIRQS; i++)
1633 pirq_entries[i] = -1;
1634
1635 /*
1636 * The number of IO-APIC IRQ registers (== #pins):
1637 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001638 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001640 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001642 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1643 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001644 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001645 int pin;
1646 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001647 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001648 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001649 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001650
1651
1652 /* If the interrupt line is enabled and in ExtInt mode
1653 * I have found the pin where the i8259 is connected.
1654 */
1655 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1656 ioapic_i8259.apic = apic;
1657 ioapic_i8259.pin = pin;
1658 goto found_i8259;
1659 }
1660 }
1661 }
1662 found_i8259:
1663 /* Look to see what if the MP table has reported the ExtINT */
1664 /* If we could not find the appropriate pin by looking at the ioapic
1665 * the i8259 probably is not connected the ioapic but give the
1666 * mptable a chance anyway.
1667 */
1668 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1669 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1670 /* Trust the MP table if nothing is setup in the hardware */
1671 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1672 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1673 ioapic_i8259.pin = i8259_pin;
1674 ioapic_i8259.apic = i8259_apic;
1675 }
1676 /* Complain if the MP table and the hardware disagree */
1677 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1678 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1679 {
1680 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
1683 /*
1684 * Do not trust the IO-APIC being empty at bootup
1685 */
1686 clear_IO_APIC();
1687}
1688
1689/*
1690 * Not an __init, needed by the reboot code
1691 */
1692void disable_IO_APIC(void)
1693{
1694 /*
1695 * Clear the IO-APIC before rebooting:
1696 */
1697 clear_IO_APIC();
1698
Eric W. Biederman650927e2005-06-25 14:57:44 -07001699 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001700 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001701 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001702 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001703 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001704 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001705 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001706
1707 memset(&entry, 0, sizeof(entry));
1708 entry.mask = 0; /* Enabled */
1709 entry.trigger = 0; /* Edge */
1710 entry.irr = 0;
1711 entry.polarity = 0; /* High */
1712 entry.delivery_status = 0;
1713 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001714 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001715 entry.vector = 0;
Vivek Goyal76865c32006-01-06 00:12:19 -08001716 entry.dest.physical.physical_dest =
Jack Steiner05f2d122008-03-28 14:12:02 -05001717 GET_APIC_ID(read_apic_id());
Eric W. Biederman650927e2005-06-25 14:57:44 -07001718
1719 /*
1720 * Add it to the IO-APIC irq-routing table:
1721 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001722 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001723 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001724 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
1727/*
1728 * function to set the IO-APIC physical IDs based on the
1729 * values stored in the MPC table.
1730 *
1731 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1732 */
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734static void __init setup_ioapic_ids_from_mpc(void)
1735{
1736 union IO_APIC_reg_00 reg_00;
1737 physid_mask_t phys_id_present_map;
1738 int apic;
1739 int i;
1740 unsigned char old_id;
1741 unsigned long flags;
1742
Yinghai Lud49c4282008-06-08 18:31:54 -07001743#ifdef CONFIG_X86_NUMAQ
1744 if (found_numaq)
1745 return;
1746#endif
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001749 * Don't check I/O APIC IDs for xAPIC systems. They have
1750 * no meaning without the serial APIC bus.
1751 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001752 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1753 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001754 return;
1755 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 * This is broken; anything with a real cpu count has to
1757 * circumvent this idiocy regardless.
1758 */
1759 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1760
1761 /*
1762 * Set the IOAPIC ID to the value stored in the MPC table.
1763 */
1764 for (apic = 0; apic < nr_ioapics; apic++) {
1765
1766 /* Read the register 0 value */
1767 spin_lock_irqsave(&ioapic_lock, flags);
1768 reg_00.raw = io_apic_read(apic, 0);
1769 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001770
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001771 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001773 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001775 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1777 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001778 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /*
1782 * Sanity check, is the ID really free? Every APIC in a
1783 * system must have a unique ID or we get lots of nice
1784 * 'stuck on smp_invalidate_needed IPI wait' messages.
1785 */
1786 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001787 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001789 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 for (i = 0; i < get_physical_broadcast(); i++)
1791 if (!physid_isset(i, phys_id_present_map))
1792 break;
1793 if (i >= get_physical_broadcast())
1794 panic("Max APIC ID exceeded!\n");
1795 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1796 i);
1797 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001798 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 } else {
1800 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001801 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 apic_printk(APIC_VERBOSE, "Setting %d in the "
1803 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001804 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1806 }
1807
1808
1809 /*
1810 * We need to adjust the IRQ routing table
1811 * if the ID changed.
1812 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001813 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001815 if (mp_irqs[i].mp_dstapic == old_id)
1816 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001817 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819 /*
1820 * Read the right value from the MPC table and
1821 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001822 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 apic_printk(APIC_VERBOSE, KERN_INFO
1824 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001825 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001827 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 spin_lock_irqsave(&ioapic_lock, flags);
1829 io_apic_write(apic, 0, reg_00.raw);
1830 spin_unlock_irqrestore(&ioapic_lock, flags);
1831
1832 /*
1833 * Sanity check
1834 */
1835 spin_lock_irqsave(&ioapic_lock, flags);
1836 reg_00.raw = io_apic_read(apic, 0);
1837 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001838 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 printk("could not set ID!\n");
1840 else
1841 apic_printk(APIC_VERBOSE, " ok.\n");
1842 }
1843}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01001845int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01001846
1847static int __init notimercheck(char *s)
1848{
1849 no_timer_check = 1;
1850 return 1;
1851}
1852__setup("no_timer_check", notimercheck);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854/*
1855 * There is a nasty bug in some older SMP boards, their mptable lies
1856 * about the timer IRQ. We do the following to work around the situation:
1857 *
1858 * - timer IRQ defaults to IO-APIC IRQ
1859 * - if this function detects that timer IRQs are defunct, then we fall
1860 * back to ISA timer IRQs
1861 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02001862static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01001865 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Zachary Amsden8542b202006-12-07 02:14:09 +01001867 if (no_timer_check)
1868 return 1;
1869
Ingo Molnar4aae0702007-12-18 18:05:58 +01001870 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 local_irq_enable();
1872 /* Let ten ticks pass... */
1873 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01001874 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 /*
1877 * Expect a few ticks at least, to be sure some possible
1878 * glue logic does not lock up after one or two first
1879 * ticks in a non-ExtINT mode. Also the local APIC
1880 * might have cached one ExtINT interrupt. Finally, at
1881 * least one tick may be lost due to delays.
1882 */
Julia Lawall1d16b532008-01-30 13:32:19 +01001883 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return 1;
1885
1886 return 0;
1887}
1888
1889/*
1890 * In the SMP+IOAPIC case it might happen that there are an unspecified
1891 * number of pending IRQ events unhandled. These cases are very rare,
1892 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1893 * better to do it this way as thus we do not have to be aware of
1894 * 'pending' interrupts in the IRQ path, except at this point.
1895 */
1896/*
1897 * Edge triggered needs to resend any interrupt
1898 * that was delayed but this is now handled in the device
1899 * independent code.
1900 */
1901
1902/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001903 * Startup quirk:
1904 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * Starting up a edge-triggered IO-APIC interrupt is
1906 * nasty - we need to make sure that we get the edge.
1907 * If it is already asserted for some reason, we need
1908 * return 1 to indicate that is was pending.
1909 *
1910 * This is not complete - we should be able to fake
1911 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001912 *
1913 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001915static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 int was_pending = 0;
1918 unsigned long flags;
1919
1920 spin_lock_irqsave(&ioapic_lock, flags);
1921 if (irq < 16) {
1922 disable_8259A_irq(irq);
1923 if (i8259A_irq_pending(irq))
1924 was_pending = 1;
1925 }
1926 __unmask_IO_APIC_irq(irq);
1927 spin_unlock_irqrestore(&ioapic_lock, flags);
1928
1929 return was_pending;
1930}
1931
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001932static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001934 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 ack_APIC_irq();
1936}
1937
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001938static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
1940 unsigned long v;
1941 int i;
1942
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001943 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944/*
1945 * It appears there is an erratum which affects at least version 0x11
1946 * of I/O APIC (that's the 82093AA and cores integrated into various
1947 * chipsets). Under certain conditions a level-triggered interrupt is
1948 * erroneously delivered as edge-triggered one but the respective IRR
1949 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1950 * message but it will never arrive and further interrupts are blocked
1951 * from the source. The exact reason is so far unknown, but the
1952 * phenomenon was observed when two consecutive interrupt requests
1953 * from a given source get delivered to the same CPU and the source is
1954 * temporarily disabled in between.
1955 *
1956 * A workaround is to simulate an EOI message manually. We achieve it
1957 * by setting the trigger mode to edge and then to level when the edge
1958 * trigger mode gets detected in the TMR of a local APIC for a
1959 * level-triggered interrupt. We mask the source for the time of the
1960 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1961 * The idea is from Manfred Spraul. --macro
1962 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001963 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1966
1967 ack_APIC_irq();
1968
1969 if (!(v & (1 << (i & 0x1f)))) {
1970 atomic_inc(&irq_mis_count);
1971 spin_lock(&ioapic_lock);
1972 __mask_and_edge_IO_APIC_irq(irq);
1973 __unmask_and_level_IO_APIC_irq(irq);
1974 spin_unlock(&ioapic_lock);
1975 }
1976}
1977
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001978static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001980 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001981
1982 return 1;
1983}
1984
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001985static struct irq_chip ioapic_chip __read_mostly = {
1986 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001987 .startup = startup_ioapic_irq,
1988 .mask = mask_IO_APIC_irq,
1989 .unmask = unmask_IO_APIC_irq,
1990 .ack = ack_ioapic_irq,
1991 .eoi = ack_ioapic_quirk_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001992#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001993 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001994#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001995 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996};
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999static inline void init_IO_APIC_traps(void)
2000{
2001 int irq;
2002
2003 /*
2004 * NOTE! The local APIC isn't very good at handling
2005 * multiple interrupts at the same interrupt level.
2006 * As the interrupt level is determined by taking the
2007 * vector number and shifting that right by 4, we
2008 * want to spread these out a bit so that they don't
2009 * all fall in the same interrupt level.
2010 *
2011 * Also, we've got to be careful not to trash gate
2012 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2013 */
2014 for (irq = 0; irq < NR_IRQS ; irq++) {
Akinobu Mitaaddfc662008-04-05 22:39:07 +09002015 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
2017 * Hmm.. We don't have an entry for this,
2018 * so default to an old-fashioned 8259
2019 * interrupt if we can..
2020 */
2021 if (irq < 16)
2022 make_8259A_irq(irq);
2023 else
2024 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002025 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027 }
2028}
2029
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002030/*
2031 * The local APIC irq-chip implementation:
2032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002034static void ack_lapic_irq(unsigned int irq)
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002035{
2036 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002039static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
2041 unsigned long v;
2042
2043 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002044 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002047static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002049 unsigned long v;
2050
2051 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002052 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002055static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002056 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002057 .mask = mask_lapic_irq,
2058 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002059 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060};
2061
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002062static void lapic_register_intr(int irq, int vector)
2063{
2064 irq_desc[irq].status &= ~IRQ_LEVEL;
2065 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2066 "edge");
2067 set_intr_gate(vector, interrupt[irq]);
2068}
2069
Jan Beuliche9427102008-01-30 13:31:24 +01002070static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
2072 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002073 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 * We put the 8259A master into AEOI mode and
2075 * unmask on all local APICs LVT0 as NMI.
2076 *
2077 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2078 * is from Maciej W. Rozycki - so we do not have to EOI from
2079 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002080 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2082
Jan Beuliche9427102008-01-30 13:31:24 +01002083 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 apic_printk(APIC_VERBOSE, " done.\n");
2086}
2087
2088/*
2089 * This looks a bit hackish but it's about the only one way of sending
2090 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2091 * not support the ExtINT mode, unfortunately. We need to send these
2092 * cycles as some i82489DX-based boards have glue logic that keeps the
2093 * 8259A interrupt line asserted until INTA. --macro
2094 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002095static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002097 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct IO_APIC_route_entry entry0, entry1;
2099 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002101 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002102 if (pin == -1) {
2103 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002105 }
2106 apic = find_isa_irq_apic(8, mp_INT);
2107 if (apic == -1) {
2108 WARN_ON_ONCE(1);
2109 return;
2110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Andi Kleencf4c6a22006-09-26 10:52:30 +02002112 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002113 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 memset(&entry1, 0, sizeof(entry1));
2116
2117 entry1.dest_mode = 0; /* physical delivery */
2118 entry1.mask = 0; /* unmask IRQ now */
2119 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2120 entry1.delivery_mode = dest_ExtINT;
2121 entry1.polarity = entry0.polarity;
2122 entry1.trigger = 0;
2123 entry1.vector = 0;
2124
Andi Kleencf4c6a22006-09-26 10:52:30 +02002125 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 save_control = CMOS_READ(RTC_CONTROL);
2128 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2129 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2130 RTC_FREQ_SELECT);
2131 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2132
2133 i = 100;
2134 while (i-- > 0) {
2135 mdelay(10);
2136 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2137 i -= 10;
2138 }
2139
2140 CMOS_WRITE(save_control, RTC_CONTROL);
2141 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002142 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Andi Kleencf4c6a22006-09-26 10:52:30 +02002144 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
2147/*
2148 * This code may look a bit paranoid, but it's supposed to cooperate with
2149 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2150 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2151 * fanatically on his truly buggy board.
2152 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002153static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002155 int apic1, pin1, apic2, pin2;
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002156 int no_pin1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 int vector;
Ingo Molnar6e908942008-03-21 14:32:36 +01002158 unsigned int ver;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002159 unsigned long flags;
2160
2161 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002162
Ingo Molnar6e908942008-03-21 14:32:36 +01002163 ver = apic_read(APIC_LVR);
2164 ver = GET_APIC_VERSION(ver);
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 /*
2167 * get/set the timer IRQ vector:
2168 */
2169 disable_8259A_irq(0);
2170 vector = assign_irq_vector(0);
2171 set_intr_gate(vector, interrupt[0]);
2172
2173 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002174 * As IRQ0 is to be enabled in the 8259A, the virtual
2175 * wire has to be disabled in the local APIC. Also
2176 * timer interrupts need to be acknowledged manually in
2177 * the 8259A for the i82489DX when using the NMI
2178 * watchdog as that APIC treats NMIs as level-triggered.
2179 * The AEOI mode will finish them in the 8259A
2180 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002182 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 init_8259A(1);
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002184 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002186 pin1 = find_isa_irq_pin(0, mp_INT);
2187 apic1 = find_isa_irq_apic(0, mp_INT);
2188 pin2 = ioapic_i8259.pin;
2189 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002191 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2192 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2193 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002195 /*
2196 * Some BIOS writers are clueless and report the ExtINTA
2197 * I/O APIC input from the cascaded 8259A as the timer
2198 * interrupt input. So just in case, if only one pin
2199 * was found above, try it both directly and through the
2200 * 8259A.
2201 */
2202 if (pin1 == -1) {
2203 pin1 = pin2;
2204 apic1 = apic2;
2205 no_pin1 = 1;
2206 } else if (pin2 == -1) {
2207 pin2 = pin1;
2208 apic2 = apic1;
2209 }
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (pin1 != -1) {
2212 /*
2213 * Ok, does IRQ0 through the IOAPIC work?
2214 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002215 if (no_pin1) {
2216 add_pin_to_irq(0, apic1, pin1);
2217 setup_timer_IRQ0_pin(apic1, pin1, vector);
2218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 unmask_IO_APIC_irq(0);
2220 if (timer_irq_works()) {
2221 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 setup_nmi();
2223 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002225 if (disable_timer_pin_1 > 0)
2226 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002227 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002229 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002230 if (!no_pin1)
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002231 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2232 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002234 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2235 "(IRQ0) through the 8259A ...\n");
2236 apic_printk(APIC_QUIET, KERN_INFO
2237 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 /*
2239 * legacy devices should be connected to IO APIC #0
2240 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002241 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01002242 setup_timer_IRQ0_pin(apic2, pin2, vector);
Maciej W. Rozycki24742ec2008-05-27 21:19:40 +01002243 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002244 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002246 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002247 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002249 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002251 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002253 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
2255 /*
2256 * Cleanup, just in case ...
2257 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002258 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002259 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002260 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002264 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2265 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002266 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002268 timer_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002270 apic_printk(APIC_QUIET, KERN_INFO
2271 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002273 lapic_register_intr(0, vector);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002274 apic_write(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 enable_8259A_irq(0);
2276
2277 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002278 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002279 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002281 disable_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002282 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002283 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002285 apic_printk(APIC_QUIET, KERN_INFO
2286 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 init_8259A(0);
2289 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002290 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 unlock_ExtINT_logic();
2293
2294 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002295 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002296 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002298 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002300 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002301out:
2302 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
2305/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002306 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2307 * to devices. However there may be an I/O APIC pin available for
2308 * this interrupt regardless. The pin may be left unconnected, but
2309 * typically it will be reused as an ExtINT cascade interrupt for
2310 * the master 8259A. In the MPS case such a pin will normally be
2311 * reported as an ExtINT interrupt in the MP table. With ACPI
2312 * there is no provision for ExtINT interrupts, and in the absence
2313 * of an override it would be treated as an ordinary ISA I/O APIC
2314 * interrupt, that is edge-triggered and unmasked by default. We
2315 * used to do this, but it caused problems on some systems because
2316 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2317 * the same ExtINT cascade interrupt to drive the local APIC of the
2318 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2319 * the I/O APIC in all cases now. No actual device should request
2320 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 */
2322#define PIC_IRQS (1 << PIC_CASCADE_IR)
2323
2324void __init setup_IO_APIC(void)
2325{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002326 int i;
2327
2328 /* Reserve all the system vectors. */
Alan Mayer305b92a2008-04-15 15:36:56 -05002329 for (i = first_system_vector; i < NR_VECTORS; i++)
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002330 set_bit(i, used_vectors);
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 enable_IO_APIC();
2333
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002334 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 printk("ENABLING IO-APIC IRQs\n");
2337
2338 /*
2339 * Set up IO-APIC IRQ routing.
2340 */
2341 if (!acpi_ioapic)
2342 setup_ioapic_ids_from_mpc();
2343 sync_Arb_IDs();
2344 setup_IO_APIC_irqs();
2345 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002346 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
2349/*
2350 * Called after all the initialization is done. If we didnt find any
2351 * APIC bugs then we can allow the modify fast path
2352 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354static int __init io_apic_bug_finalize(void)
2355{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002356 if (sis_apic_bug == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 sis_apic_bug = 0;
2358 return 0;
2359}
2360
2361late_initcall(io_apic_bug_finalize);
2362
2363struct sysfs_ioapic_data {
2364 struct sys_device dev;
2365 struct IO_APIC_route_entry entry[0];
2366};
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002367static struct sysfs_ioapic_data *mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Pavel Machek438510f2005-04-16 15:25:24 -07002369static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
2371 struct IO_APIC_route_entry *entry;
2372 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 data = container_of(dev, struct sysfs_ioapic_data, dev);
2376 entry = data->entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002377 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002378 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 return 0;
2381}
2382
2383static int ioapic_resume(struct sys_device *dev)
2384{
2385 struct IO_APIC_route_entry *entry;
2386 struct sysfs_ioapic_data *data;
2387 unsigned long flags;
2388 union IO_APIC_reg_00 reg_00;
2389 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 data = container_of(dev, struct sysfs_ioapic_data, dev);
2392 entry = data->entry;
2393
2394 spin_lock_irqsave(&ioapic_lock, flags);
2395 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002396 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
2397 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 io_apic_write(dev->id, 0, reg_00.raw);
2399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002401 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002402 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 return 0;
2405}
2406
2407static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002408 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 .suspend = ioapic_suspend,
2410 .resume = ioapic_resume,
2411};
2412
2413static int __init ioapic_init_sysfs(void)
2414{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002415 struct sys_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 int i, size, error = 0;
2417
2418 error = sysdev_class_register(&ioapic_sysdev_class);
2419 if (error)
2420 return error;
2421
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002422 for (i = 0; i < nr_ioapics; i++) {
2423 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02002425 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 if (!mp_ioapic_data[i]) {
2427 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2428 continue;
2429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002431 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 dev->cls = &ioapic_sysdev_class;
2433 error = sysdev_register(dev);
2434 if (error) {
2435 kfree(mp_ioapic_data[i]);
2436 mp_ioapic_data[i] = NULL;
2437 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2438 continue;
2439 }
2440 }
2441
2442 return 0;
2443}
2444
2445device_initcall(ioapic_init_sysfs);
2446
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002447/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002448 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002449 */
2450int create_irq(void)
2451{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002452 /* Allocate an unused irq */
Andi Kleen306a22c2006-12-09 21:33:36 +01002453 int irq, new, vector = 0;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002454 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002455
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002456 irq = -ENOSPC;
2457 spin_lock_irqsave(&vector_lock, flags);
2458 for (new = (NR_IRQS - 1); new >= 0; new--) {
2459 if (platform_legacy_irq(new))
2460 continue;
2461 if (irq_vector[new] != 0)
2462 continue;
2463 vector = __assign_irq_vector(new);
2464 if (likely(vector > 0))
2465 irq = new;
2466 break;
2467 }
2468 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002469
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002470 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002471 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002472 dynamic_irq_init(irq);
2473 }
2474 return irq;
2475}
2476
2477void destroy_irq(unsigned int irq)
2478{
2479 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002480
2481 dynamic_irq_cleanup(irq);
2482
2483 spin_lock_irqsave(&vector_lock, flags);
PJ Waskiewicz9d9ad4b2008-04-25 17:58:52 -07002484 clear_bit(irq_vector[irq], used_vectors);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002485 irq_vector[irq] = 0;
2486 spin_unlock_irqrestore(&vector_lock, flags);
2487}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002488
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002489/*
Simon Arlott27b46d72007-10-20 01:13:56 +02002490 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002491 */
2492#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002493static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002494{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002495 int vector;
2496 unsigned dest;
2497
2498 vector = assign_irq_vector(irq);
2499 if (vector >= 0) {
2500 dest = cpu_mask_to_apicid(TARGET_CPUS);
2501
2502 msg->address_hi = MSI_ADDR_BASE_HI;
2503 msg->address_lo =
2504 MSI_ADDR_BASE_LO |
2505 ((INT_DEST_MODE == 0) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002506MSI_ADDR_DEST_MODE_PHYSICAL:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002507 MSI_ADDR_DEST_MODE_LOGICAL) |
2508 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2509 MSI_ADDR_REDIRECTION_CPU:
2510 MSI_ADDR_REDIRECTION_LOWPRI) |
2511 MSI_ADDR_DEST_ID(dest);
2512
2513 msg->data =
2514 MSI_DATA_TRIGGER_EDGE |
2515 MSI_DATA_LEVEL_ASSERT |
2516 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002517MSI_DATA_DELIVERY_FIXED:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002518 MSI_DATA_DELIVERY_LOWPRI) |
2519 MSI_DATA_VECTOR(vector);
2520 }
2521 return vector;
2522}
2523
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002524#ifdef CONFIG_SMP
2525static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2526{
2527 struct msi_msg msg;
2528 unsigned int dest;
2529 cpumask_t tmp;
2530 int vector;
2531
2532 cpus_and(tmp, mask, cpu_online_map);
2533 if (cpus_empty(tmp))
2534 tmp = TARGET_CPUS;
2535
2536 vector = assign_irq_vector(irq);
2537 if (vector < 0)
2538 return;
2539
2540 dest = cpu_mask_to_apicid(mask);
2541
2542 read_msi_msg(irq, &msg);
2543
2544 msg.data &= ~MSI_DATA_VECTOR_MASK;
2545 msg.data |= MSI_DATA_VECTOR(vector);
2546 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2547 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2548
2549 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002550 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002551}
2552#endif /* CONFIG_SMP */
2553
2554/*
2555 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2556 * which implement the MSI or MSI-X Capability Structure.
2557 */
2558static struct irq_chip msi_chip = {
2559 .name = "PCI-MSI",
2560 .unmask = unmask_msi_irq,
2561 .mask = mask_msi_irq,
2562 .ack = ack_ioapic_irq,
2563#ifdef CONFIG_SMP
2564 .set_affinity = set_msi_irq_affinity,
2565#endif
2566 .retrigger = ioapic_retrigger_irq,
2567};
2568
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002569int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002570{
2571 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002572 int irq, ret;
2573 irq = create_irq();
2574 if (irq < 0)
2575 return irq;
2576
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002577 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002578 if (ret < 0) {
2579 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002580 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002581 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002582
Michael Ellerman7fe37302007-04-18 19:39:21 +10002583 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002584 write_msi_msg(irq, &msg);
2585
Ingo Molnara460e742006-10-17 00:10:03 -07002586 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2587 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002588
Michael Ellerman7fe37302007-04-18 19:39:21 +10002589 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002590}
2591
2592void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002593{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002594 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002595}
2596
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002597#endif /* CONFIG_PCI_MSI */
2598
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002599/*
2600 * Hypertransport interrupt support
2601 */
2602#ifdef CONFIG_HT_IRQ
2603
2604#ifdef CONFIG_SMP
2605
2606static void target_ht_irq(unsigned int irq, unsigned int dest)
2607{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002608 struct ht_irq_msg msg;
2609 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002610
Eric W. Biedermanec683072006-11-08 17:44:57 -08002611 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2612 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002613
Eric W. Biedermanec683072006-11-08 17:44:57 -08002614 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2615 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002616
Eric W. Biedermanec683072006-11-08 17:44:57 -08002617 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002618}
2619
2620static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2621{
2622 unsigned int dest;
2623 cpumask_t tmp;
2624
2625 cpus_and(tmp, mask, cpu_online_map);
2626 if (cpus_empty(tmp))
2627 tmp = TARGET_CPUS;
2628
2629 cpus_and(mask, tmp, CPU_MASK_ALL);
2630
2631 dest = cpu_mask_to_apicid(mask);
2632
2633 target_ht_irq(irq, dest);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002634 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002635}
2636#endif
2637
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002638static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002639 .name = "PCI-HT",
2640 .mask = mask_ht_irq,
2641 .unmask = unmask_ht_irq,
2642 .ack = ack_ioapic_irq,
2643#ifdef CONFIG_SMP
2644 .set_affinity = set_ht_irq_affinity,
2645#endif
2646 .retrigger = ioapic_retrigger_irq,
2647};
2648
2649int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2650{
2651 int vector;
2652
2653 vector = assign_irq_vector(irq);
2654 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002655 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002656 unsigned dest;
2657 cpumask_t tmp;
2658
2659 cpus_clear(tmp);
2660 cpu_set(vector >> 8, tmp);
2661 dest = cpu_mask_to_apicid(tmp);
2662
Eric W. Biedermanec683072006-11-08 17:44:57 -08002663 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002664
Eric W. Biedermanec683072006-11-08 17:44:57 -08002665 msg.address_lo =
2666 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002667 HT_IRQ_LOW_DEST_ID(dest) |
2668 HT_IRQ_LOW_VECTOR(vector) |
2669 ((INT_DEST_MODE == 0) ?
2670 HT_IRQ_LOW_DM_PHYSICAL :
2671 HT_IRQ_LOW_DM_LOGICAL) |
2672 HT_IRQ_LOW_RQEOI_EDGE |
2673 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2674 HT_IRQ_LOW_MT_FIXED :
2675 HT_IRQ_LOW_MT_ARBITRATED) |
2676 HT_IRQ_LOW_IRQ_MASKED;
2677
Eric W. Biedermanec683072006-11-08 17:44:57 -08002678 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002679
Ingo Molnara460e742006-10-17 00:10:03 -07002680 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2681 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002682 }
2683 return vector;
2684}
2685#endif /* CONFIG_HT_IRQ */
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687/* --------------------------------------------------------------------------
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002688 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 -------------------------------------------------------------------------- */
2690
Len Brown888ba6c2005-08-24 12:07:20 -04002691#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002693int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
2695 union IO_APIC_reg_00 reg_00;
2696 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2697 physid_mask_t tmp;
2698 unsigned long flags;
2699 int i = 0;
2700
2701 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002702 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2703 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002705 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2707 * advantage of new APIC bus architecture.
2708 */
2709
2710 if (physids_empty(apic_id_map))
2711 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2712
2713 spin_lock_irqsave(&ioapic_lock, flags);
2714 reg_00.raw = io_apic_read(ioapic, 0);
2715 spin_unlock_irqrestore(&ioapic_lock, flags);
2716
2717 if (apic_id >= get_physical_broadcast()) {
2718 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2719 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2720 apic_id = reg_00.bits.ID;
2721 }
2722
2723 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002724 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 * 'stuck on smp_invalidate_needed IPI wait' messages.
2726 */
2727 if (check_apicid_used(apic_id_map, apic_id)) {
2728
2729 for (i = 0; i < get_physical_broadcast(); i++) {
2730 if (!check_apicid_used(apic_id_map, i))
2731 break;
2732 }
2733
2734 if (i == get_physical_broadcast())
2735 panic("Max apic_id exceeded!\n");
2736
2737 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2738 "trying %d\n", ioapic, apic_id, i);
2739
2740 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 tmp = apicid_to_cpu_present(apic_id);
2744 physids_or(apic_id_map, apic_id_map, tmp);
2745
2746 if (reg_00.bits.ID != apic_id) {
2747 reg_00.bits.ID = apic_id;
2748
2749 spin_lock_irqsave(&ioapic_lock, flags);
2750 io_apic_write(ioapic, 0, reg_00.raw);
2751 reg_00.raw = io_apic_read(ioapic, 0);
2752 spin_unlock_irqrestore(&ioapic_lock, flags);
2753
2754 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002755 if (reg_00.bits.ID != apic_id) {
2756 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2757 return -1;
2758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760
2761 apic_printk(APIC_VERBOSE, KERN_INFO
2762 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2763
2764 return apic_id;
2765}
2766
2767
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002768int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769{
2770 union IO_APIC_reg_01 reg_01;
2771 unsigned long flags;
2772
2773 spin_lock_irqsave(&ioapic_lock, flags);
2774 reg_01.raw = io_apic_read(ioapic, 1);
2775 spin_unlock_irqrestore(&ioapic_lock, flags);
2776
2777 return reg_01.bits.version;
2778}
2779
2780
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002781int __init io_apic_get_redir_entries(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
2783 union IO_APIC_reg_01 reg_01;
2784 unsigned long flags;
2785
2786 spin_lock_irqsave(&ioapic_lock, flags);
2787 reg_01.raw = io_apic_read(ioapic, 1);
2788 spin_unlock_irqrestore(&ioapic_lock, flags);
2789
2790 return reg_01.bits.entries;
2791}
2792
2793
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002794int 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 -07002795{
2796 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 if (!IO_APIC_IRQ(irq)) {
2799 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2800 ioapic);
2801 return -EINVAL;
2802 }
2803
2804 /*
2805 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2806 * Note that we mask (disable) IRQs now -- these get enabled when the
2807 * corresponding device driver registers for this IRQ.
2808 */
2809
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002810 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 entry.delivery_mode = INT_DELIVERY_MODE;
2813 entry.dest_mode = INT_DEST_MODE;
2814 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2815 entry.trigger = edge_level;
2816 entry.polarity = active_high_low;
2817 entry.mask = 1;
2818
2819 /*
2820 * IRQs < 16 are already in the irq_2_pin[] map
2821 */
2822 if (irq >= 16)
2823 add_pin_to_irq(irq, ioapic, pin);
2824
2825 entry.vector = assign_irq_vector(irq);
2826
2827 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2828 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002829 mp_ioapics[ioapic].mp_apicid, pin, entry.vector, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 edge_level, active_high_low);
2831
2832 ioapic_register_intr(irq, entry.vector, edge_level);
2833
2834 if (!ioapic && (irq < 16))
2835 disable_8259A_irq(irq);
2836
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09002837 ioapic_write_entry(ioapic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
2839 return 0;
2840}
2841
Shaohua Li61fd47e2007-11-17 01:05:28 -05002842int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2843{
2844 int i;
2845
2846 if (skip_ioapic_setup)
2847 return -1;
2848
2849 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002850 if (mp_irqs[i].mp_irqtype == mp_INT &&
2851 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05002852 break;
2853 if (i >= mp_irq_entries)
2854 return -1;
2855
2856 *trigger = irq_trigger(i);
2857 *polarity = irq_polarity(i);
2858 return 0;
2859}
2860
Len Brown888ba6c2005-08-24 12:07:20 -04002861#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002862
2863static int __init parse_disable_timer_pin_1(char *arg)
2864{
2865 disable_timer_pin_1 = 1;
2866 return 0;
2867}
2868early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2869
2870static int __init parse_enable_timer_pin_1(char *arg)
2871{
2872 disable_timer_pin_1 = -1;
2873 return 0;
2874}
2875early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2876
2877static int __init parse_noapic(char *arg)
2878{
2879 /* disable IO-APIC */
2880 disable_ioapic_setup();
2881 return 0;
2882}
2883early_param("noapic", parse_noapic);
Yinghai Luf3294a32008-06-27 01:41:56 -07002884
2885void __init ioapic_init_mappings(void)
2886{
2887 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
2888 int i;
2889
2890 for (i = 0; i < nr_ioapics; i++) {
2891 if (smp_found_config) {
2892 ioapic_phys = mp_ioapics[i].mp_apicaddr;
2893 if (!ioapic_phys) {
2894 printk(KERN_ERR
2895 "WARNING: bogus zero IO-APIC "
2896 "address found in MPTABLE, "
2897 "disabling IO/APIC support!\n");
2898 smp_found_config = 0;
2899 skip_ioapic_setup = 1;
2900 goto fake_ioapic_page;
2901 }
2902 } else {
2903fake_ioapic_page:
2904 ioapic_phys = (unsigned long)
2905 alloc_bootmem_pages(PAGE_SIZE);
2906 ioapic_phys = __pa(ioapic_phys);
2907 }
2908 set_fixmap_nocache(idx, ioapic_phys);
2909 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
2910 __fix_to_virt(idx), ioapic_phys);
2911 idx++;
2912 }
2913}
2914