blob: 9a924ebcd74cb8c3d09d228f256a1cbe3d290420 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mc146818rtc.h>
29#include <linux/compiler.h>
30#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070031#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/sysdev.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070033#include <linux/pci.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Julia Lawall1d16b532008-01-30 13:32:19 +010038#include <linux/jiffies.h> /* time_after() */
Ashok Raj54d5d422005-09-06 15:16:15 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/smp.h>
42#include <asm/desc.h>
43#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070044#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020045#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070046#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070047#include <asm/hypertransport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020050#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052int (*ioapic_renumber_irq)(int ioapic, int irq);
53atomic_t irq_mis_count;
54
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -080055/* Where if anywhere is the i8259 connect in external int mode */
56static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static DEFINE_SPINLOCK(ioapic_lock);
Jan Beulich0a1ad602006-06-26 13:56:43 +020059static DEFINE_SPINLOCK(vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Maciej W. Rozycki35542c52008-05-21 22:10:22 +010061int timer_through_8259 __initdata;
Andi Kleenf9262c12006-03-08 17:57:25 -080062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Is the SiS APIC rmw bug present ?
65 * -1 = don't know, 0 = no, 1 = yes
66 */
67int sis_apic_bug = -1;
68
69/*
70 * # of IRQ routing registers
71 */
72int nr_ioapic_registers[MAX_IO_APICS];
73
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040074/* I/O APIC entries */
75struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
76int nr_ioapics;
77
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040078/* MP IRQ source entries */
79struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
80
81/* # of MP IRQ source entries */
82int mp_irq_entries;
83
Rusty Russell1a3f2392006-09-26 10:52:32 +020084static int disable_timer_pin_1 __initdata;
Chuck Ebbert66759a02005-09-12 18:49:25 +020085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * Rough estimation of how many shared IRQs there are, can
88 * be changed anytime.
89 */
90#define MAX_PLUS_SHARED_IRQS NR_IRQS
91#define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
92
93/*
94 * This is performance-critical, we want to do it O(1)
95 *
96 * the indexing order of this array favors 1:1 mappings
97 * between pins and IRQs.
98 */
99
100static struct irq_pin_list {
101 int apic, pin, next;
102} irq_2_pin[PIN_MAP_SIZE];
103
Linus Torvalds130fe052006-11-01 09:11:00 -0800104struct io_apic {
105 unsigned int index;
106 unsigned int unused[3];
107 unsigned int data;
108};
109
110static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
111{
112 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
113 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
114}
115
116static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
117{
118 struct io_apic __iomem *io_apic = io_apic_base(apic);
119 writel(reg, &io_apic->index);
120 return readl(&io_apic->data);
121}
122
123static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
124{
125 struct io_apic __iomem *io_apic = io_apic_base(apic);
126 writel(reg, &io_apic->index);
127 writel(value, &io_apic->data);
128}
129
130/*
131 * Re-write a value: to be used for read-modify-write
132 * cycles where the read already set up the index register.
133 *
134 * Older SiS APIC requires we rewrite the index register
135 */
136static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
137{
Al Virocb468982007-02-09 16:39:25 +0000138 volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
Linus Torvalds130fe052006-11-01 09:11:00 -0800139 if (sis_apic_bug)
140 writel(reg, &io_apic->index);
141 writel(value, &io_apic->data);
142}
143
Andi Kleencf4c6a22006-09-26 10:52:30 +0200144union entry_union {
145 struct { u32 w1, w2; };
146 struct IO_APIC_route_entry entry;
147};
148
149static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
150{
151 union entry_union eu;
152 unsigned long flags;
153 spin_lock_irqsave(&ioapic_lock, flags);
154 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
155 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
156 spin_unlock_irqrestore(&ioapic_lock, flags);
157 return eu.entry;
158}
159
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800160/*
161 * When we write a new IO APIC routing entry, we need to write the high
162 * word first! If the mask bit in the low word is clear, we will enable
163 * the interrupt, and we need to make sure the entry is fully populated
164 * before that happens.
165 */
Andi Kleend15512f2006-12-07 02:14:07 +0100166static void
167__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
168{
169 union entry_union eu;
170 eu.entry = e;
171 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
172 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
173}
174
Andi Kleencf4c6a22006-09-26 10:52:30 +0200175static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
176{
177 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200178 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100179 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800180 spin_unlock_irqrestore(&ioapic_lock, flags);
181}
182
183/*
184 * When we mask an IO APIC routing entry, we need to write the low
185 * word first, in order to set the mask bit before we change the
186 * high bits!
187 */
188static void ioapic_mask_entry(int apic, int pin)
189{
190 unsigned long flags;
191 union entry_union eu = { .entry.mask = 1 };
192
193 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200194 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
195 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
196 spin_unlock_irqrestore(&ioapic_lock, flags);
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
201 * shared ISA-space IRQs, so we have to support them. We are super
202 * fast in the common case, and fast for shared ISA-space IRQs.
203 */
204static void add_pin_to_irq(unsigned int irq, int apic, int pin)
205{
206 static int first_free_entry = NR_IRQS;
207 struct irq_pin_list *entry = irq_2_pin + irq;
208
209 while (entry->next)
210 entry = irq_2_pin + entry->next;
211
212 if (entry->pin != -1) {
213 entry->next = first_free_entry;
214 entry = irq_2_pin + entry->next;
215 if (++first_free_entry >= PIN_MAP_SIZE)
216 panic("io_apic.c: whoops");
217 }
218 entry->apic = apic;
219 entry->pin = pin;
220}
221
222/*
223 * Reroute an IRQ to a different pin.
224 */
225static void __init replace_pin_at_irq(unsigned int irq,
226 int oldapic, int oldpin,
227 int newapic, int newpin)
228{
229 struct irq_pin_list *entry = irq_2_pin + irq;
230
231 while (1) {
232 if (entry->apic == oldapic && entry->pin == oldpin) {
233 entry->apic = newapic;
234 entry->pin = newpin;
235 }
236 if (!entry->next)
237 break;
238 entry = irq_2_pin + entry->next;
239 }
240}
241
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200242static void __modify_IO_APIC_irq(unsigned int irq, unsigned long enable, unsigned long disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct irq_pin_list *entry = irq_2_pin + irq;
245 unsigned int pin, reg;
246
247 for (;;) {
248 pin = entry->pin;
249 if (pin == -1)
250 break;
251 reg = io_apic_read(entry->apic, 0x10 + pin*2);
252 reg &= ~disable;
253 reg |= enable;
254 io_apic_modify(entry->apic, 0x10 + pin*2, reg);
255 if (!entry->next)
256 break;
257 entry = irq_2_pin + entry->next;
258 }
259}
260
261/* mask = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200262static void __mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400264 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/* mask = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200268static void __unmask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400270 __modify_IO_APIC_irq(irq, 0, IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/* mask = 1, trigger = 0 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200274static void __mask_and_edge_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400276 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_MASKED,
277 IO_APIC_REDIR_LEVEL_TRIGGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/* mask = 0, trigger = 1 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200281static void __unmask_and_level_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Cyrill Gorcunov46b3b4e2008-06-07 19:53:57 +0400283 __modify_IO_APIC_irq(irq, IO_APIC_REDIR_LEVEL_TRIGGER,
284 IO_APIC_REDIR_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200287static void mask_IO_APIC_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 unsigned long flags;
290
291 spin_lock_irqsave(&ioapic_lock, flags);
292 __mask_IO_APIC_irq(irq);
293 spin_unlock_irqrestore(&ioapic_lock, flags);
294}
295
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200296static void unmask_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 __unmask_IO_APIC_irq(irq);
302 spin_unlock_irqrestore(&ioapic_lock, flags);
303}
304
305static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
306{
307 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200310 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (entry.delivery_mode == dest_SMI)
312 return;
313
314 /*
315 * Disable it in the IO-APIC irq-routing table:
316 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800317 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200320static void clear_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int apic, pin;
323
324 for (apic = 0; apic < nr_ioapics; apic++)
325 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
326 clear_IO_APIC_pin(apic, pin);
327}
328
Ashok Raj54d5d422005-09-06 15:16:15 -0700329#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
331{
332 unsigned long flags;
333 int pin;
334 struct irq_pin_list *entry = irq_2_pin + irq;
335 unsigned int apicid_value;
Ashok Raj54d5d422005-09-06 15:16:15 -0700336 cpumask_t tmp;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200337
Ashok Raj54d5d422005-09-06 15:16:15 -0700338 cpus_and(tmp, cpumask, cpu_online_map);
339 if (cpus_empty(tmp))
340 tmp = TARGET_CPUS;
341
342 cpus_and(cpumask, tmp, CPU_MASK_ALL);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 apicid_value = cpu_mask_to_apicid(cpumask);
345 /* Prepare to do the io_apic_write */
346 apicid_value = apicid_value << 24;
347 spin_lock_irqsave(&ioapic_lock, flags);
348 for (;;) {
349 pin = entry->pin;
350 if (pin == -1)
351 break;
352 io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
353 if (!entry->next)
354 break;
355 entry = irq_2_pin + entry->next;
356 }
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -0700357 irq_desc[irq].affinity = cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 spin_unlock_irqrestore(&ioapic_lock, flags);
359}
360
361#if defined(CONFIG_IRQBALANCE)
362# include <asm/processor.h> /* kernel_thread() */
363# include <linux/kernel_stat.h> /* kstat */
364# include <linux/slab.h> /* kmalloc() */
Julia Lawall1d16b532008-01-30 13:32:19 +0100365# include <linux/timer.h>
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367#define IRQBALANCE_CHECK_ARCH -999
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700368#define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
369#define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
370#define BALANCED_IRQ_MORE_DELTA (HZ/10)
371#define BALANCED_IRQ_LESS_DELTA (HZ)
372
373static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
374static int physical_balance __read_mostly;
375static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377static struct irq_cpu_info {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200378 unsigned long *last_irq;
379 unsigned long *irq_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned long irq;
381} irq_cpu_data[NR_CPUS];
382
383#define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200384#define LAST_CPU_IRQ(cpu, irq) (irq_cpu_data[cpu].last_irq[irq])
385#define IRQ_DELTA(cpu, irq) (irq_cpu_data[cpu].irq_delta[irq])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387#define IDLE_ENOUGH(cpu,now) \
388 (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
389
390#define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
391
Mike Travisd5a74302007-10-16 01:24:05 -0700392#define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700394static cpumask_t balance_irq_affinity[NR_IRQS] = {
395 [0 ... NR_IRQS-1] = CPU_MASK_ALL
396};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700398void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
399{
400 balance_irq_affinity[irq] = mask;
401}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
404 unsigned long now, int direction)
405{
406 int search_idle = 1;
407 int cpu = curr_cpu;
408
409 goto inside;
410
411 do {
412 if (unlikely(cpu == curr_cpu))
413 search_idle = 0;
414inside:
415 if (direction == 1) {
416 cpu++;
417 if (cpu >= NR_CPUS)
418 cpu = 0;
419 } else {
420 cpu--;
421 if (cpu == -1)
422 cpu = NR_CPUS-1;
423 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200424 } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu, allowed_mask) ||
425 (search_idle && !IDLE_ENOUGH(cpu, now)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 return cpu;
428}
429
430static inline void balance_irq(int cpu, int irq)
431{
432 unsigned long now = jiffies;
433 cpumask_t allowed_mask;
434 unsigned int new_cpu;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (irqbalance_disabled)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200437 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700439 cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 new_cpu = move(cpu, allowed_mask, now, 1);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200441 if (cpu != new_cpu)
Ashok Raj54d5d422005-09-06 15:16:15 -0700442 set_pending_irq(irq, cpumask_of_cpu(new_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
446{
447 int i, j;
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200448
Andrew Morton394e3902006-03-23 03:01:05 -0800449 for_each_online_cpu(i) {
450 for (j = 0; j < NR_IRQS; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!irq_desc[j].action)
452 continue;
453 /* Is it a significant load ? */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200454 if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i), j) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 useful_load_threshold)
456 continue;
457 balance_irq(i, j);
458 }
459 }
460 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200461 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return;
463}
464
465static void do_irq_balance(void)
466{
467 int i, j;
468 unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
469 unsigned long move_this_load = 0;
470 int max_loaded = 0, min_loaded = 0;
471 int load;
472 unsigned long useful_load_threshold = balanced_irq_interval + 10;
473 int selected_irq;
474 int tmp_loaded, first_attempt = 1;
475 unsigned long tmp_cpu_irq;
476 unsigned long imbalance = 0;
477 cpumask_t allowed_mask, target_cpu_mask, tmp;
478
KAMEZAWA Hiroyukic89125992006-03-28 01:56:39 -0800479 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int package_index;
481 CPU_IRQ(i) = 0;
482 if (!cpu_online(i))
483 continue;
484 package_index = CPU_TO_PACKAGEINDEX(i);
485 for (j = 0; j < NR_IRQS; j++) {
486 unsigned long value_now, delta;
Thomas Gleixner950f4422007-02-16 01:27:24 -0800487 /* Is this an active IRQ or balancing disabled ? */
488 if (!irq_desc[j].action || irq_balancing_disabled(j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200490 if (package_index == i)
491 IRQ_DELTA(package_index, j) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Determine the total count per processor per IRQ */
493 value_now = (unsigned long) kstat_cpu(i).irqs[j];
494
495 /* Determine the activity per processor per IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200496 delta = value_now - LAST_CPU_IRQ(i, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Update last_cpu_irq[][] for the next time */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200499 LAST_CPU_IRQ(i, j) = value_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* Ignore IRQs whose rate is less than the clock */
502 if (delta < useful_load_threshold)
503 continue;
504 /* update the load for the processor or package total */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200505 IRQ_DELTA(package_index, j) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* Keep track of the higher numbered sibling as well */
508 if (i != package_index)
509 CPU_IRQ(i) += delta;
510 /*
511 * We have sibling A and sibling B in the package
512 *
513 * cpu_irq[A] = load for cpu A + load for cpu B
514 * cpu_irq[B] = load for cpu B
515 */
516 CPU_IRQ(package_index) += delta;
517 }
518 }
519 /* Find the least loaded processor package */
Andrew Morton394e3902006-03-23 03:01:05 -0800520 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (i != CPU_TO_PACKAGEINDEX(i))
522 continue;
523 if (min_cpu_irq > CPU_IRQ(i)) {
524 min_cpu_irq = CPU_IRQ(i);
525 min_loaded = i;
526 }
527 }
528 max_cpu_irq = ULONG_MAX;
529
530tryanothercpu:
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200531 /*
532 * Look for heaviest loaded processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * We may come back to get the next heaviest loaded processor.
534 * Skip processors with trivial loads.
535 */
536 tmp_cpu_irq = 0;
537 tmp_loaded = -1;
Andrew Morton394e3902006-03-23 03:01:05 -0800538 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (i != CPU_TO_PACKAGEINDEX(i))
540 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200541 if (max_cpu_irq <= CPU_IRQ(i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 continue;
543 if (tmp_cpu_irq < CPU_IRQ(i)) {
544 tmp_cpu_irq = CPU_IRQ(i);
545 tmp_loaded = i;
546 }
547 }
548
549 if (tmp_loaded == -1) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200550 /*
551 * In the case of small number of heavy interrupt sources,
552 * loading some of the cpus too much. We use Ingo's original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * approach to rotate them around.
554 */
555 if (!first_attempt && imbalance >= useful_load_threshold) {
556 rotate_irqs_among_cpus(useful_load_threshold);
557 return;
558 }
559 goto not_worth_the_effort;
560 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 first_attempt = 0; /* heaviest search */
563 max_cpu_irq = tmp_cpu_irq; /* load */
564 max_loaded = tmp_loaded; /* processor */
565 imbalance = (max_cpu_irq - min_cpu_irq) / 2;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200566
567 /*
568 * if imbalance is less than approx 10% of max load, then
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * observe diminishing returns action. - quit
570 */
Stefan Richteredc2cbf2007-07-21 17:11:40 +0200571 if (imbalance < (max_cpu_irq >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 goto not_worth_the_effort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574tryanotherirq:
575 /* if we select an IRQ to move that can't go where we want, then
576 * see if there is another one to try.
577 */
578 move_this_load = 0;
579 selected_irq = -1;
580 for (j = 0; j < NR_IRQS; j++) {
581 /* Is this an active IRQ? */
582 if (!irq_desc[j].action)
583 continue;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200584 if (imbalance <= IRQ_DELTA(max_loaded, j))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 continue;
586 /* Try to find the IRQ that is closest to the imbalance
587 * without going over.
588 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200589 if (move_this_load < IRQ_DELTA(max_loaded, j)) {
590 move_this_load = IRQ_DELTA(max_loaded, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 selected_irq = j;
592 }
593 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200594 if (selected_irq == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto tryanothercpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 imbalance = move_this_load;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200598
Simon Arlott27b46d72007-10-20 01:13:56 +0200599 /* For physical_balance case, we accumulated both load
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * values in the one of the siblings cpu_irq[],
601 * to use the same code for physical and logical processors
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200602 * as much as possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 *
604 * NOTE: the cpu_irq[] array holds the sum of the load for
605 * sibling A and sibling B in the slot for the lowest numbered
606 * sibling (A), _AND_ the load for sibling B in the slot for
607 * the higher numbered sibling.
608 *
609 * We seek the least loaded sibling by making the comparison
610 * (A+B)/2 vs B
611 */
612 load = CPU_IRQ(min_loaded) >> 1;
Mike Travisd5a74302007-10-16 01:24:05 -0700613 for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (load > CPU_IRQ(j)) {
615 /* This won't change cpu_sibling_map[min_loaded] */
616 load = CPU_IRQ(j);
617 min_loaded = j;
618 }
619 }
620
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700621 cpus_and(allowed_mask,
622 cpu_online_map,
623 balance_irq_affinity[selected_irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 target_cpu_mask = cpumask_of_cpu(min_loaded);
625 cpus_and(tmp, target_cpu_mask, allowed_mask);
626
627 if (!cpus_empty(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* mark for change destination */
Ashok Raj54d5d422005-09-06 15:16:15 -0700629 set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
630
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200631 /* Since we made a change, come back sooner to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * check for more variation.
633 */
634 balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200635 balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return;
637 }
638 goto tryanotherirq;
639
640not_worth_the_effort:
641 /*
642 * if we did not find an IRQ to move, then adjust the time interval
643 * upward
644 */
645 balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200646 balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return;
648}
649
650static int balanced_irq(void *unused)
651{
652 int i;
653 unsigned long prev_balance_time = jiffies;
654 long time_remaining = balanced_irq_interval;
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /* push everything to CPU 0 to give us a starting point. */
657 for (i = 0 ; i < NR_IRQS ; i++) {
Ingo Molnarcd916d32006-06-29 02:24:42 -0700658 irq_desc[i].pending_mask = cpumask_of_cpu(0);
Ashok Raj54d5d422005-09-06 15:16:15 -0700659 set_pending_irq(i, cpumask_of_cpu(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700662 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 for ( ; ; ) {
Nishanth Aravamudan52e6e632005-09-10 00:27:26 -0700664 time_remaining = schedule_timeout_interruptible(time_remaining);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700665 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (time_after(jiffies,
667 prev_balance_time+balanced_irq_interval)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700668 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 do_irq_balance();
670 prev_balance_time = jiffies;
671 time_remaining = balanced_irq_interval;
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700672 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674 }
675 return 0;
676}
677
678static int __init balanced_irq_init(void)
679{
680 int i;
681 struct cpuinfo_x86 *c;
682 cpumask_t tmp;
683
684 cpus_shift_right(tmp, cpu_online_map, 2);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200685 c = &boot_cpu_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* When not overwritten by the command line ask subarchitecture. */
687 if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
688 irqbalance_disabled = NO_BALANCE_IRQ;
689 if (irqbalance_disabled)
690 return 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* disable irqbalance completely if there is only one processor online */
693 if (num_online_cpus() < 2) {
694 irqbalance_disabled = 1;
695 return 0;
696 }
697 /*
698 * Enable physical balance only if more than 1 physical processor
699 * is present
700 */
701 if (smp_num_siblings > 1 && !cpus_empty(tmp))
702 physical_balance = 1;
703
Andrew Morton394e3902006-03-23 03:01:05 -0800704 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
706 irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
707 if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
708 printk(KERN_ERR "balanced_irq_init: out of memory");
709 goto failed;
710 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200711 memset(irq_cpu_data[i].irq_delta, 0, sizeof(unsigned long) * NR_IRQS);
712 memset(irq_cpu_data[i].last_irq, 0, sizeof(unsigned long) * NR_IRQS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 printk(KERN_INFO "Starting balanced_irq\n");
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200716 if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +0200718 printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719failed:
KAMEZAWA Hiroyukic89125992006-03-28 01:56:39 -0800720 for_each_possible_cpu(i) {
Jesper Juhl4ae66732005-06-25 14:58:48 -0700721 kfree(irq_cpu_data[i].irq_delta);
Andrew Morton394e3902006-03-23 03:01:05 -0800722 irq_cpu_data[i].irq_delta = NULL;
Jesper Juhl4ae66732005-06-25 14:58:48 -0700723 kfree(irq_cpu_data[i].last_irq);
Andrew Morton394e3902006-03-23 03:01:05 -0800724 irq_cpu_data[i].last_irq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 return 0;
727}
728
Andrew Mortonc2481cc2007-04-08 16:04:04 -0700729int __devinit irqbalance_disable(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 irqbalance_disabled = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800732 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735__setup("noirqbalance", irqbalance_disable);
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737late_initcall(balanced_irq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#endif /* CONFIG_IRQBALANCE */
Ashok Raj54d5d422005-09-06 15:16:15 -0700739#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741#ifndef CONFIG_SMP
Harvey Harrison75604d72008-01-30 13:31:17 +0100742void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 unsigned int cfg;
745
746 /*
747 * Wait for idle.
748 */
749 apic_wait_icr_idle();
750 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
751 /*
752 * Send the IPI. The write to APIC_ICR fires this off.
753 */
754 apic_write_around(APIC_ICR, cfg);
755}
756#endif /* !CONFIG_SMP */
757
758
759/*
760 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
761 * specific CPU-side IRQs.
762 */
763
764#define MAX_PIRQS 8
765static int pirq_entries [MAX_PIRQS];
766static int pirqs_enabled;
767int skip_ioapic_setup;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769static int __init ioapic_pirq_setup(char *str)
770{
771 int i, max;
772 int ints[MAX_PIRQS+1];
773
774 get_options(str, ARRAY_SIZE(ints), ints);
775
776 for (i = 0; i < MAX_PIRQS; i++)
777 pirq_entries[i] = -1;
778
779 pirqs_enabled = 1;
780 apic_printk(APIC_VERBOSE, KERN_INFO
781 "PIRQ redirection, working around broken MP-BIOS.\n");
782 max = MAX_PIRQS;
783 if (ints[0] < MAX_PIRQS)
784 max = ints[0];
785
786 for (i = 0; i < max; i++) {
787 apic_printk(APIC_VERBOSE, KERN_DEBUG
788 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
789 /*
790 * PIRQs are mapped upside down, usually.
791 */
792 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
793 }
794 return 1;
795}
796
797__setup("pirq=", ioapic_pirq_setup);
798
799/*
800 * Find the IRQ entry number of a certain pin.
801 */
802static int find_irq_entry(int apic, int pin, int type)
803{
804 int i;
805
806 for (i = 0; i < mp_irq_entries; i++)
807 if (mp_irqs[i].mpc_irqtype == type &&
808 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
809 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
810 mp_irqs[i].mpc_dstirq == pin)
811 return i;
812
813 return -1;
814}
815
816/*
817 * Find the pin to which IRQ[irq] (ISA) is connected
818 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800819static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 int i;
822
823 for (i = 0; i < mp_irq_entries; i++) {
824 int lbus = mp_irqs[i].mpc_srcbus;
825
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300826 if (test_bit(lbus, mp_bus_not_pci) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 (mp_irqs[i].mpc_irqtype == type) &&
828 (mp_irqs[i].mpc_srcbusirq == irq))
829
830 return mp_irqs[i].mpc_dstirq;
831 }
832 return -1;
833}
834
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800835static int __init find_isa_irq_apic(int irq, int type)
836{
837 int i;
838
839 for (i = 0; i < mp_irq_entries; i++) {
840 int lbus = mp_irqs[i].mpc_srcbus;
841
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300842 if (test_bit(lbus, mp_bus_not_pci) &&
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800843 (mp_irqs[i].mpc_irqtype == type) &&
844 (mp_irqs[i].mpc_srcbusirq == irq))
845 break;
846 }
847 if (i < mp_irq_entries) {
848 int apic;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200849 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800850 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
851 return apic;
852 }
853 }
854
855 return -1;
856}
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858/*
859 * Find a specific PCI IRQ entry.
860 * Not an __init, possibly needed by modules
861 */
862static int pin_2_irq(int idx, int apic, int pin);
863
864int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
865{
866 int apic, i, best_guess = -1;
867
868 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
869 "slot:%d, pin:%d.\n", bus, slot, pin);
870 if (mp_bus_id_to_pci_bus[bus] == -1) {
871 printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
872 return -1;
873 }
874 for (i = 0; i < mp_irq_entries; i++) {
875 int lbus = mp_irqs[i].mpc_srcbus;
876
877 for (apic = 0; apic < nr_ioapics; apic++)
878 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
879 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
880 break;
881
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300882 if (!test_bit(lbus, mp_bus_not_pci) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 !mp_irqs[i].mpc_irqtype &&
884 (bus == lbus) &&
885 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200886 int irq = pin_2_irq(i, apic, mp_irqs[i].mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (!(apic || IO_APIC_IRQ(irq)))
889 continue;
890
891 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
892 return irq;
893 /*
894 * Use the first all-but-pin matching entry as a
895 * best-guess fuzzy result for broken mptables.
896 */
897 if (best_guess < 0)
898 best_guess = irq;
899 }
900 }
901 return best_guess;
902}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700903EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905/*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200906 * This function currently is only a helper for the i386 smp boot process where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 * we need to reprogram the ioredtbls to cater for the cpus which have come online
908 * so mask in all cases should simply be TARGET_CPUS
909 */
Ashok Raj54d5d422005-09-06 15:16:15 -0700910#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911void __init setup_ioapic_dest(void)
912{
913 int pin, ioapic, irq, irq_entry;
914
915 if (skip_ioapic_setup == 1)
916 return;
917
918 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
919 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
920 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
921 if (irq_entry == -1)
922 continue;
923 irq = pin_2_irq(irq_entry, ioapic, pin);
924 set_ioapic_affinity_irq(irq, TARGET_CPUS);
925 }
926
927 }
928}
Ashok Raj54d5d422005-09-06 15:16:15 -0700929#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300931#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/*
933 * EISA Edge/Level control register, ELCR
934 */
935static int EISA_ELCR(unsigned int irq)
936{
937 if (irq < 16) {
938 unsigned int port = 0x4d0 + (irq >> 3);
939 return (inb(port) >> (irq & 7)) & 1;
940 }
941 apic_printk(APIC_VERBOSE, KERN_INFO
942 "Broken MPtable reports ISA irq %d\n", irq);
943 return 0;
944}
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300945#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300947/* ISA interrupts are always polarity zero edge triggered,
948 * when listed as conforming in the MP table. */
949
950#define default_ISA_trigger(idx) (0)
951#define default_ISA_polarity(idx) (0)
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953/* EISA interrupts are always polarity zero and can be edge or level
954 * trigger depending on the ELCR value. If an interrupt is listed as
955 * EISA conforming in the MP table, that means its trigger type must
956 * be read in from the ELCR */
957
958#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300959#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961/* PCI interrupts are always polarity one level triggered,
962 * when listed as conforming in the MP table. */
963
964#define default_PCI_trigger(idx) (1)
965#define default_PCI_polarity(idx) (1)
966
967/* MCA interrupts are always polarity zero level triggered,
968 * when listed as conforming in the MP table. */
969
970#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300971#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Shaohua Li61fd47e2007-11-17 01:05:28 -0500973static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 int bus = mp_irqs[idx].mpc_srcbus;
976 int polarity;
977
978 /*
979 * Determine IRQ line polarity (high active or low active):
980 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200981 switch (mp_irqs[idx].mpc_irqflag & 3) {
982 case 0: /* conforms, ie. bus-type dependent polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200984 polarity = test_bit(bus, mp_bus_not_pci)?
985 default_ISA_polarity(idx):
986 default_PCI_polarity(idx);
987 break;
988 }
989 case 1: /* high active */
990 {
991 polarity = 0;
992 break;
993 }
994 case 2: /* reserved */
995 {
996 printk(KERN_WARNING "broken BIOS!!\n");
997 polarity = 1;
998 break;
999 }
1000 case 3: /* low active */
1001 {
1002 polarity = 1;
1003 break;
1004 }
1005 default: /* invalid */
1006 {
1007 printk(KERN_WARNING "broken BIOS!!\n");
1008 polarity = 1;
1009 break;
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
1012 return polarity;
1013}
1014
1015static int MPBIOS_trigger(int idx)
1016{
1017 int bus = mp_irqs[idx].mpc_srcbus;
1018 int trigger;
1019
1020 /*
1021 * Determine IRQ trigger mode (edge or level sensitive):
1022 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001023 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3) {
1024 case 0: /* conforms, ie. bus-type dependent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001026 trigger = test_bit(bus, mp_bus_not_pci)?
1027 default_ISA_trigger(idx):
1028 default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001029#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001030 switch (mp_bus_id_to_type[bus]) {
1031 case MP_BUS_ISA: /* ISA pin */
1032 {
1033 /* set before the switch */
1034 break;
1035 }
1036 case MP_BUS_EISA: /* EISA pin */
1037 {
1038 trigger = default_EISA_trigger(idx);
1039 break;
1040 }
1041 case MP_BUS_PCI: /* PCI pin */
1042 {
1043 /* set before the switch */
1044 break;
1045 }
1046 case MP_BUS_MCA: /* MCA pin */
1047 {
1048 trigger = default_MCA_trigger(idx);
1049 break;
1050 }
1051 default:
1052 {
1053 printk(KERN_WARNING "broken BIOS!!\n");
1054 trigger = 1;
1055 break;
1056 }
1057 }
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001058#endif
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001059 break;
1060 }
1061 case 1: /* edge */
1062 {
1063 trigger = 0;
1064 break;
1065 }
1066 case 2: /* reserved */
1067 {
1068 printk(KERN_WARNING "broken BIOS!!\n");
1069 trigger = 1;
1070 break;
1071 }
1072 case 3: /* level */
1073 {
1074 trigger = 1;
1075 break;
1076 }
1077 default: /* invalid */
1078 {
1079 printk(KERN_WARNING "broken BIOS!!\n");
1080 trigger = 0;
1081 break;
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 return trigger;
1085}
1086
1087static inline int irq_polarity(int idx)
1088{
1089 return MPBIOS_polarity(idx);
1090}
1091
1092static inline int irq_trigger(int idx)
1093{
1094 return MPBIOS_trigger(idx);
1095}
1096
1097static int pin_2_irq(int idx, int apic, int pin)
1098{
1099 int irq, i;
1100 int bus = mp_irqs[idx].mpc_srcbus;
1101
1102 /*
1103 * Debugging check, we are in big trouble if this message pops up!
1104 */
1105 if (mp_irqs[idx].mpc_dstirq != pin)
1106 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1107
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001108 if (test_bit(bus, mp_bus_not_pci))
1109 irq = mp_irqs[idx].mpc_srcbusirq;
1110 else {
1111 /*
1112 * PCI IRQs are mapped in order
1113 */
1114 i = irq = 0;
1115 while (i < apic)
1116 irq += nr_ioapic_registers[i++];
1117 irq += pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001119 /*
1120 * For MPS mode, so far only needed by ES7000 platform
1121 */
1122 if (ioapic_renumber_irq)
1123 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
1125
1126 /*
1127 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1128 */
1129 if ((pin >= 16) && (pin <= 23)) {
1130 if (pirq_entries[pin-16] != -1) {
1131 if (!pirq_entries[pin-16]) {
1132 apic_printk(APIC_VERBOSE, KERN_DEBUG
1133 "disabling PIRQ%d\n", pin-16);
1134 } else {
1135 irq = pirq_entries[pin-16];
1136 apic_printk(APIC_VERBOSE, KERN_DEBUG
1137 "using PIRQ%d -> IRQ %d\n",
1138 pin-16, irq);
1139 }
1140 }
1141 }
1142 return irq;
1143}
1144
1145static inline int IO_APIC_irq_trigger(int irq)
1146{
1147 int apic, idx, pin;
1148
1149 for (apic = 0; apic < nr_ioapics; apic++) {
1150 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001151 idx = find_irq_entry(apic, pin, mp_INT);
1152 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return irq_trigger(idx);
1154 }
1155 }
1156 /*
1157 * nonexistent IRQs are edge default
1158 */
1159 return 0;
1160}
1161
1162/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
Adrian Bunk7e95b592006-12-07 02:14:11 +01001163static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001165static int __assign_irq_vector(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001167 static int current_vector = FIRST_DEVICE_VECTOR, current_offset;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001168 int vector, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001170 BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
Jan Beulich0a1ad602006-06-26 13:56:43 +02001171
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001172 if (irq_vector[irq] > 0)
1173 return irq_vector[irq];
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001174
Jan Beulich0a1ad602006-06-26 13:56:43 +02001175 vector = current_vector;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001176 offset = current_offset;
1177next:
1178 vector += 8;
1179 if (vector >= FIRST_SYSTEM_VECTOR) {
1180 offset = (offset + 1) % 8;
1181 vector = FIRST_DEVICE_VECTOR + offset;
1182 }
1183 if (vector == current_vector)
1184 return -ENOSPC;
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001185 if (test_and_set_bit(vector, used_vectors))
Eric W. Biederman8339f002007-01-29 13:19:05 -07001186 goto next;
Eric W. Biederman8339f002007-01-29 13:19:05 -07001187
1188 current_vector = vector;
1189 current_offset = offset;
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001190 irq_vector[irq] = vector;
Jan Beulich0a1ad602006-06-26 13:56:43 +02001191
1192 return vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001195static int assign_irq_vector(int irq)
1196{
1197 unsigned long flags;
1198 int vector;
1199
1200 spin_lock_irqsave(&vector_lock, flags);
1201 vector = __assign_irq_vector(irq);
1202 spin_unlock_irqrestore(&vector_lock, flags);
1203
1204 return vector;
1205}
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001206static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208#define IOAPIC_AUTO -1
1209#define IOAPIC_EDGE 0
1210#define IOAPIC_LEVEL 1
1211
Ingo Molnard1bef4e2006-06-29 02:24:36 -07001212static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Jan Beulich6ebcc002006-06-26 13:56:46 +02001214 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001215 trigger == IOAPIC_LEVEL) {
1216 irq_desc[irq].status |= IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001217 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1218 handle_fasteoi_irq, "fasteoi");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001219 } else {
1220 irq_desc[irq].status &= ~IRQ_LEVEL;
Ingo Molnara460e742006-10-17 00:10:03 -07001221 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1222 handle_edge_irq, "edge");
Thomas Gleixnercc75b922007-08-12 15:46:36 +00001223 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001224 set_intr_gate(vector, interrupt[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227static void __init setup_IO_APIC_irqs(void)
1228{
1229 struct IO_APIC_route_entry entry;
1230 int apic, pin, idx, irq, first_notcon = 1, vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1233
1234 for (apic = 0; apic < nr_ioapics; apic++) {
1235 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1236
1237 /*
1238 * add it to the IO-APIC irq-routing table:
1239 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001240 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 entry.delivery_mode = INT_DELIVERY_MODE;
1243 entry.dest_mode = INT_DEST_MODE;
1244 entry.mask = 0; /* enable IRQ */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001245 entry.dest.logical.logical_dest =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 cpu_mask_to_apicid(TARGET_CPUS);
1247
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001248 idx = find_irq_entry(apic, pin, mp_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (idx == -1) {
1250 if (first_notcon) {
1251 apic_printk(APIC_VERBOSE, KERN_DEBUG
1252 " IO-APIC (apicid-pin) %d-%d",
1253 mp_ioapics[apic].mpc_apicid,
1254 pin);
1255 first_notcon = 0;
1256 } else
1257 apic_printk(APIC_VERBOSE, ", %d-%d",
1258 mp_ioapics[apic].mpc_apicid, pin);
1259 continue;
1260 }
1261
Yinghai Lu20d225b2007-10-17 18:04:41 +02001262 if (!first_notcon) {
1263 apic_printk(APIC_VERBOSE, " not connected.\n");
1264 first_notcon = 1;
1265 }
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 entry.trigger = irq_trigger(idx);
1268 entry.polarity = irq_polarity(idx);
1269
1270 if (irq_trigger(idx)) {
1271 entry.trigger = 1;
1272 entry.mask = 1;
1273 }
1274
1275 irq = pin_2_irq(idx, apic, pin);
1276 /*
1277 * skip adding the timer int on secondary nodes, which causes
1278 * a small but painful rift in the time-space continuum
1279 */
1280 if (multi_timer_check(apic, irq))
1281 continue;
1282 else
1283 add_pin_to_irq(irq, apic, pin);
1284
1285 if (!apic && !IO_APIC_IRQ(irq))
1286 continue;
1287
1288 if (IO_APIC_IRQ(irq)) {
1289 vector = assign_irq_vector(irq);
1290 entry.vector = vector;
1291 ioapic_register_intr(irq, vector, IOAPIC_AUTO);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!apic && (irq < 16))
1294 disable_8259A_irq(irq);
1295 }
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09001296 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 }
1299
1300 if (!first_notcon)
1301 apic_printk(APIC_VERBOSE, " not connected.\n");
1302}
1303
1304/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001305 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001307static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1308 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
1310 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001312 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 /*
1315 * We use logical delivery to get the timer IRQ
1316 * to the first CPU.
1317 */
1318 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001319 entry.mask = 1; /* mask IRQ now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
1321 entry.delivery_mode = INT_DELIVERY_MODE;
1322 entry.polarity = 0;
1323 entry.trigger = 0;
1324 entry.vector = vector;
1325
1326 /*
1327 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001328 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 */
Maciej W. Rozyckif0825262008-05-27 21:19:16 +01001330 ioapic_register_intr(0, vector, IOAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /*
1333 * Add it to the IO-APIC irq-routing table:
1334 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001335 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338void __init print_IO_APIC(void)
1339{
1340 int apic, i;
1341 union IO_APIC_reg_00 reg_00;
1342 union IO_APIC_reg_01 reg_01;
1343 union IO_APIC_reg_02 reg_02;
1344 union IO_APIC_reg_03 reg_03;
1345 unsigned long flags;
1346
1347 if (apic_verbosity == APIC_QUIET)
1348 return;
1349
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001350 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 for (i = 0; i < nr_ioapics; i++)
1352 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1353 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
1354
1355 /*
1356 * We are a bit conservative about what we expect. We have to
1357 * know about every hardware change ASAP.
1358 */
1359 printk(KERN_INFO "testing the IO APIC.......................\n");
1360
1361 for (apic = 0; apic < nr_ioapics; apic++) {
1362
1363 spin_lock_irqsave(&ioapic_lock, flags);
1364 reg_00.raw = io_apic_read(apic, 0);
1365 reg_01.raw = io_apic_read(apic, 1);
1366 if (reg_01.bits.version >= 0x10)
1367 reg_02.raw = io_apic_read(apic, 2);
1368 if (reg_01.bits.version >= 0x20)
1369 reg_03.raw = io_apic_read(apic, 3);
1370 spin_unlock_irqrestore(&ioapic_lock, flags);
1371
1372 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
1373 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1374 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1375 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1376 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
1379 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1382 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /*
1385 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1386 * but the value of reg_02 is read as the previous read register
1387 * value, so ignore it if reg_02 == reg_01.
1388 */
1389 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1390 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1391 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393
1394 /*
1395 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1396 * or reg_03, but the value of reg_0[23] is read as the previous read
1397 * register value, so ignore it if reg_03 == reg_0[12].
1398 */
1399 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1400 reg_03.raw != reg_01.raw) {
1401 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1402 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
1405 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1406
1407 printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
1408 " Stat Dest Deli Vect: \n");
1409
1410 for (i = 0; i <= reg_01.bits.entries; i++) {
1411 struct IO_APIC_route_entry entry;
1412
Andi Kleencf4c6a22006-09-26 10:52:30 +02001413 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 printk(KERN_DEBUG " %02x %03X %02X ",
1416 i,
1417 entry.dest.logical.logical_dest,
1418 entry.dest.physical.physical_dest
1419 );
1420
1421 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1422 entry.mask,
1423 entry.trigger,
1424 entry.irr,
1425 entry.polarity,
1426 entry.delivery_status,
1427 entry.dest_mode,
1428 entry.delivery_mode,
1429 entry.vector
1430 );
1431 }
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1434 for (i = 0; i < NR_IRQS; i++) {
1435 struct irq_pin_list *entry = irq_2_pin + i;
1436 if (entry->pin < 0)
1437 continue;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001438 printk(KERN_DEBUG "IRQ%d ", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 for (;;) {
1440 printk("-> %d:%d", entry->apic, entry->pin);
1441 if (!entry->next)
1442 break;
1443 entry = irq_2_pin + entry->next;
1444 }
1445 printk("\n");
1446 }
1447
1448 printk(KERN_INFO ".................................... done.\n");
1449
1450 return;
1451}
1452
1453#if 0
1454
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001455static void print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 unsigned int v;
1458 int i, j;
1459
1460 if (apic_verbosity == APIC_QUIET)
1461 return;
1462
1463 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1464 for (i = 0; i < 8; i++) {
1465 v = apic_read(base + i*0x10);
1466 for (j = 0; j < 32; j++) {
1467 if (v & (1<<j))
1468 printk("1");
1469 else
1470 printk("0");
1471 }
1472 printk("\n");
1473 }
1474}
1475
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001476void /*__init*/ print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 unsigned int v, ver, maxlvt;
1479
1480 if (apic_verbosity == APIC_QUIET)
1481 return;
1482
1483 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1484 smp_processor_id(), hard_smp_processor_id());
Jack Steiner05f2d122008-03-28 14:12:02 -05001485 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
1486 GET_APIC_ID(read_apic_id()));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 v = apic_read(APIC_LVR);
1488 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1489 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001490 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 v = apic_read(APIC_TASKPRI);
1493 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1494
1495 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1496 v = apic_read(APIC_ARBPRI);
1497 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1498 v & APIC_ARBPRI_MASK);
1499 v = apic_read(APIC_PROCPRI);
1500 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1501 }
1502
1503 v = apic_read(APIC_EOI);
1504 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1505 v = apic_read(APIC_RRR);
1506 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1507 v = apic_read(APIC_LDR);
1508 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1509 v = apic_read(APIC_DFR);
1510 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1511 v = apic_read(APIC_SPIV);
1512 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1513
1514 printk(KERN_DEBUG "... APIC ISR field:\n");
1515 print_APIC_bitfield(APIC_ISR);
1516 printk(KERN_DEBUG "... APIC TMR field:\n");
1517 print_APIC_bitfield(APIC_TMR);
1518 printk(KERN_DEBUG "... APIC IRR field:\n");
1519 print_APIC_bitfield(APIC_IRR);
1520
1521 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1522 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1523 apic_write(APIC_ESR, 0);
1524 v = apic_read(APIC_ESR);
1525 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1526 }
1527
1528 v = apic_read(APIC_ICR);
1529 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1530 v = apic_read(APIC_ICR2);
1531 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1532
1533 v = apic_read(APIC_LVTT);
1534 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1535
1536 if (maxlvt > 3) { /* PC is LVT#4. */
1537 v = apic_read(APIC_LVTPC);
1538 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1539 }
1540 v = apic_read(APIC_LVT0);
1541 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1542 v = apic_read(APIC_LVT1);
1543 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1544
1545 if (maxlvt > 2) { /* ERR is LVT#3. */
1546 v = apic_read(APIC_LVTERR);
1547 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1548 }
1549
1550 v = apic_read(APIC_TMICT);
1551 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1552 v = apic_read(APIC_TMCCT);
1553 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1554 v = apic_read(APIC_TDCR);
1555 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1556 printk("\n");
1557}
1558
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001559void print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 on_each_cpu(print_local_APIC, NULL, 1, 1);
1562}
1563
1564void /*__init*/ print_PIC(void)
1565{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 unsigned int v;
1567 unsigned long flags;
1568
1569 if (apic_verbosity == APIC_QUIET)
1570 return;
1571
1572 printk(KERN_DEBUG "\nprinting PIC contents\n");
1573
1574 spin_lock_irqsave(&i8259A_lock, flags);
1575
1576 v = inb(0xa1) << 8 | inb(0x21);
1577 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1578
1579 v = inb(0xa0) << 8 | inb(0x20);
1580 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1581
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001582 outb(0x0b, 0xa0);
1583 outb(0x0b, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 v = inb(0xa0) << 8 | inb(0x20);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001585 outb(0x0a, 0xa0);
1586 outb(0x0a, 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 spin_unlock_irqrestore(&i8259A_lock, flags);
1589
1590 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1591
1592 v = inb(0x4d1) << 8 | inb(0x4d0);
1593 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1594}
1595
1596#endif /* 0 */
1597
1598static void __init enable_IO_APIC(void)
1599{
1600 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001601 int i8259_apic, i8259_pin;
1602 int i, apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 unsigned long flags;
1604
1605 for (i = 0; i < PIN_MAP_SIZE; i++) {
1606 irq_2_pin[i].pin = -1;
1607 irq_2_pin[i].next = 0;
1608 }
1609 if (!pirqs_enabled)
1610 for (i = 0; i < MAX_PIRQS; i++)
1611 pirq_entries[i] = -1;
1612
1613 /*
1614 * The number of IO-APIC IRQ registers (== #pins):
1615 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001616 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001618 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001620 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1621 }
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001622 for (apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001623 int pin;
1624 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001625 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001626 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001627 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001628
1629
1630 /* If the interrupt line is enabled and in ExtInt mode
1631 * I have found the pin where the i8259 is connected.
1632 */
1633 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1634 ioapic_i8259.apic = apic;
1635 ioapic_i8259.pin = pin;
1636 goto found_i8259;
1637 }
1638 }
1639 }
1640 found_i8259:
1641 /* Look to see what if the MP table has reported the ExtINT */
1642 /* If we could not find the appropriate pin by looking at the ioapic
1643 * the i8259 probably is not connected the ioapic but give the
1644 * mptable a chance anyway.
1645 */
1646 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1647 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1648 /* Trust the MP table if nothing is setup in the hardware */
1649 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1650 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1651 ioapic_i8259.pin = i8259_pin;
1652 ioapic_i8259.apic = i8259_apic;
1653 }
1654 /* Complain if the MP table and the hardware disagree */
1655 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1656 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1657 {
1658 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
1661 /*
1662 * Do not trust the IO-APIC being empty at bootup
1663 */
1664 clear_IO_APIC();
1665}
1666
1667/*
1668 * Not an __init, needed by the reboot code
1669 */
1670void disable_IO_APIC(void)
1671{
1672 /*
1673 * Clear the IO-APIC before rebooting:
1674 */
1675 clear_IO_APIC();
1676
Eric W. Biederman650927e2005-06-25 14:57:44 -07001677 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001678 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001679 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001680 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001681 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001682 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001683 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001684
1685 memset(&entry, 0, sizeof(entry));
1686 entry.mask = 0; /* Enabled */
1687 entry.trigger = 0; /* Edge */
1688 entry.irr = 0;
1689 entry.polarity = 0; /* High */
1690 entry.delivery_status = 0;
1691 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001692 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001693 entry.vector = 0;
Vivek Goyal76865c32006-01-06 00:12:19 -08001694 entry.dest.physical.physical_dest =
Jack Steiner05f2d122008-03-28 14:12:02 -05001695 GET_APIC_ID(read_apic_id());
Eric W. Biederman650927e2005-06-25 14:57:44 -07001696
1697 /*
1698 * Add it to the IO-APIC irq-routing table:
1699 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001700 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001701 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001702 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
1705/*
1706 * function to set the IO-APIC physical IDs based on the
1707 * values stored in the MPC table.
1708 *
1709 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1710 */
1711
1712#ifndef CONFIG_X86_NUMAQ
1713static void __init setup_ioapic_ids_from_mpc(void)
1714{
1715 union IO_APIC_reg_00 reg_00;
1716 physid_mask_t phys_id_present_map;
1717 int apic;
1718 int i;
1719 unsigned char old_id;
1720 unsigned long flags;
1721
1722 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001723 * Don't check I/O APIC IDs for xAPIC systems. They have
1724 * no meaning without the serial APIC bus.
1725 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08001726 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
1727 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001728 return;
1729 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 * This is broken; anything with a real cpu count has to
1731 * circumvent this idiocy regardless.
1732 */
1733 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
1734
1735 /*
1736 * Set the IOAPIC ID to the value stored in the MPC table.
1737 */
1738 for (apic = 0; apic < nr_ioapics; apic++) {
1739
1740 /* Read the register 0 value */
1741 spin_lock_irqsave(&ioapic_lock, flags);
1742 reg_00.raw = io_apic_read(apic, 0);
1743 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 old_id = mp_ioapics[apic].mpc_apicid;
1746
1747 if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) {
1748 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1749 apic, mp_ioapics[apic].mpc_apicid);
1750 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1751 reg_00.bits.ID);
1752 mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
1753 }
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /*
1756 * Sanity check, is the ID really free? Every APIC in a
1757 * system must have a unique ID or we get lots of nice
1758 * 'stuck on smp_invalidate_needed IPI wait' messages.
1759 */
1760 if (check_apicid_used(phys_id_present_map,
1761 mp_ioapics[apic].mpc_apicid)) {
1762 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1763 apic, mp_ioapics[apic].mpc_apicid);
1764 for (i = 0; i < get_physical_broadcast(); i++)
1765 if (!physid_isset(i, phys_id_present_map))
1766 break;
1767 if (i >= get_physical_broadcast())
1768 panic("Max APIC ID exceeded!\n");
1769 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1770 i);
1771 physid_set(i, phys_id_present_map);
1772 mp_ioapics[apic].mpc_apicid = i;
1773 } else {
1774 physid_mask_t tmp;
1775 tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid);
1776 apic_printk(APIC_VERBOSE, "Setting %d in the "
1777 "phys_id_present_map\n",
1778 mp_ioapics[apic].mpc_apicid);
1779 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1780 }
1781
1782
1783 /*
1784 * We need to adjust the IRQ routing table
1785 * if the ID changed.
1786 */
1787 if (old_id != mp_ioapics[apic].mpc_apicid)
1788 for (i = 0; i < mp_irq_entries; i++)
1789 if (mp_irqs[i].mpc_dstapic == old_id)
1790 mp_irqs[i].mpc_dstapic
1791 = mp_ioapics[apic].mpc_apicid;
1792
1793 /*
1794 * Read the right value from the MPC table and
1795 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 apic_printk(APIC_VERBOSE, KERN_INFO
1798 "...changing IO-APIC physical APIC ID to %d ...",
1799 mp_ioapics[apic].mpc_apicid);
1800
1801 reg_00.bits.ID = mp_ioapics[apic].mpc_apicid;
1802 spin_lock_irqsave(&ioapic_lock, flags);
1803 io_apic_write(apic, 0, reg_00.raw);
1804 spin_unlock_irqrestore(&ioapic_lock, flags);
1805
1806 /*
1807 * Sanity check
1808 */
1809 spin_lock_irqsave(&ioapic_lock, flags);
1810 reg_00.raw = io_apic_read(apic, 0);
1811 spin_unlock_irqrestore(&ioapic_lock, flags);
1812 if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid)
1813 printk("could not set ID!\n");
1814 else
1815 apic_printk(APIC_VERBOSE, " ok.\n");
1816 }
1817}
1818#else
1819static void __init setup_ioapic_ids_from_mpc(void) { }
1820#endif
1821
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01001822int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01001823
1824static int __init notimercheck(char *s)
1825{
1826 no_timer_check = 1;
1827 return 1;
1828}
1829__setup("no_timer_check", notimercheck);
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/*
1832 * There is a nasty bug in some older SMP boards, their mptable lies
1833 * about the timer IRQ. We do the following to work around the situation:
1834 *
1835 * - timer IRQ defaults to IO-APIC IRQ
1836 * - if this function detects that timer IRQs are defunct, then we fall
1837 * back to ISA timer IRQs
1838 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02001839static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
1841 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01001842 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Zachary Amsden8542b202006-12-07 02:14:09 +01001844 if (no_timer_check)
1845 return 1;
1846
Ingo Molnar4aae0702007-12-18 18:05:58 +01001847 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 local_irq_enable();
1849 /* Let ten ticks pass... */
1850 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01001851 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 /*
1854 * Expect a few ticks at least, to be sure some possible
1855 * glue logic does not lock up after one or two first
1856 * ticks in a non-ExtINT mode. Also the local APIC
1857 * might have cached one ExtINT interrupt. Finally, at
1858 * least one tick may be lost due to delays.
1859 */
Julia Lawall1d16b532008-01-30 13:32:19 +01001860 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return 1;
1862
1863 return 0;
1864}
1865
1866/*
1867 * In the SMP+IOAPIC case it might happen that there are an unspecified
1868 * number of pending IRQ events unhandled. These cases are very rare,
1869 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1870 * better to do it this way as thus we do not have to be aware of
1871 * 'pending' interrupts in the IRQ path, except at this point.
1872 */
1873/*
1874 * Edge triggered needs to resend any interrupt
1875 * that was delayed but this is now handled in the device
1876 * independent code.
1877 */
1878
1879/*
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001880 * Startup quirk:
1881 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 * Starting up a edge-triggered IO-APIC interrupt is
1883 * nasty - we need to make sure that we get the edge.
1884 * If it is already asserted for some reason, we need
1885 * return 1 to indicate that is was pending.
1886 *
1887 * This is not complete - we should be able to fake
1888 * an edge even if it isn't on the 8259A...
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001889 *
1890 * (We do this for level-triggered IRQs too - it cannot hurt.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001892static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
1894 int was_pending = 0;
1895 unsigned long flags;
1896
1897 spin_lock_irqsave(&ioapic_lock, flags);
1898 if (irq < 16) {
1899 disable_8259A_irq(irq);
1900 if (i8259A_irq_pending(irq))
1901 was_pending = 1;
1902 }
1903 __unmask_IO_APIC_irq(irq);
1904 spin_unlock_irqrestore(&ioapic_lock, flags);
1905
1906 return was_pending;
1907}
1908
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001909static void ack_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001911 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 ack_APIC_irq();
1913}
1914
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001915static void ack_ioapic_quirk_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 unsigned long v;
1918 int i;
1919
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001920 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921/*
1922 * It appears there is an erratum which affects at least version 0x11
1923 * of I/O APIC (that's the 82093AA and cores integrated into various
1924 * chipsets). Under certain conditions a level-triggered interrupt is
1925 * erroneously delivered as edge-triggered one but the respective IRR
1926 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1927 * message but it will never arrive and further interrupts are blocked
1928 * from the source. The exact reason is so far unknown, but the
1929 * phenomenon was observed when two consecutive interrupt requests
1930 * from a given source get delivered to the same CPU and the source is
1931 * temporarily disabled in between.
1932 *
1933 * A workaround is to simulate an EOI message manually. We achieve it
1934 * by setting the trigger mode to edge and then to level when the edge
1935 * trigger mode gets detected in the TMR of a local APIC for a
1936 * level-triggered interrupt. We mask the source for the time of the
1937 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1938 * The idea is from Manfred Spraul. --macro
1939 */
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001940 i = irq_vector[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
1943
1944 ack_APIC_irq();
1945
1946 if (!(v & (1 << (i & 0x1f)))) {
1947 atomic_inc(&irq_mis_count);
1948 spin_lock(&ioapic_lock);
1949 __mask_and_edge_IO_APIC_irq(irq);
1950 __unmask_and_level_IO_APIC_irq(irq);
1951 spin_unlock(&ioapic_lock);
1952 }
1953}
1954
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001955static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Eric W. Biedermanb940d222006-10-08 07:43:46 -06001957 send_IPI_self(irq_vector[irq]);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07001958
1959 return 1;
1960}
1961
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001962static struct irq_chip ioapic_chip __read_mostly = {
1963 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001964 .startup = startup_ioapic_irq,
1965 .mask = mask_IO_APIC_irq,
1966 .unmask = unmask_IO_APIC_irq,
1967 .ack = ack_ioapic_irq,
1968 .eoi = ack_ioapic_quirk_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001969#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001970 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07001971#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001972 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973};
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976static inline void init_IO_APIC_traps(void)
1977{
1978 int irq;
1979
1980 /*
1981 * NOTE! The local APIC isn't very good at handling
1982 * multiple interrupts at the same interrupt level.
1983 * As the interrupt level is determined by taking the
1984 * vector number and shifting that right by 4, we
1985 * want to spread these out a bit so that they don't
1986 * all fall in the same interrupt level.
1987 *
1988 * Also, we've got to be careful not to trash gate
1989 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1990 */
1991 for (irq = 0; irq < NR_IRQS ; irq++) {
Akinobu Mitaaddfc662008-04-05 22:39:07 +09001992 if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 /*
1994 * Hmm.. We don't have an entry for this,
1995 * so default to an old-fashioned 8259
1996 * interrupt if we can..
1997 */
1998 if (irq < 16)
1999 make_8259A_irq(irq);
2000 else
2001 /* Strange. Oh, well.. */
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002002 irq_desc[irq].chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004 }
2005}
2006
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002007/*
2008 * The local APIC irq-chip implementation:
2009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002011static void ack_apic(unsigned int irq)
2012{
2013 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002016static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 unsigned long v;
2019
2020 v = apic_read(APIC_LVT0);
2021 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
2022}
2023
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002024static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002026 unsigned long v;
2027
2028 v = apic_read(APIC_LVT0);
2029 apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002032static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002033 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002034 .mask = mask_lapic_irq,
2035 .unmask = unmask_lapic_irq,
2036 .eoi = ack_apic,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037};
2038
Jan Beuliche9427102008-01-30 13:31:24 +01002039static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
2041 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002042 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 * We put the 8259A master into AEOI mode and
2044 * unmask on all local APICs LVT0 as NMI.
2045 *
2046 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2047 * is from Maciej W. Rozycki - so we do not have to EOI from
2048 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002049 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2051
Jan Beuliche9427102008-01-30 13:31:24 +01002052 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 apic_printk(APIC_VERBOSE, " done.\n");
2055}
2056
2057/*
2058 * This looks a bit hackish but it's about the only one way of sending
2059 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2060 * not support the ExtINT mode, unfortunately. We need to send these
2061 * cycles as some i82489DX-based boards have glue logic that keeps the
2062 * 8259A interrupt line asserted until INTA. --macro
2063 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002064static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002066 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 struct IO_APIC_route_entry entry0, entry1;
2068 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002070 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002071 if (pin == -1) {
2072 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002074 }
2075 apic = find_isa_irq_apic(8, mp_INT);
2076 if (apic == -1) {
2077 WARN_ON_ONCE(1);
2078 return;
2079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Andi Kleencf4c6a22006-09-26 10:52:30 +02002081 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002082 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 memset(&entry1, 0, sizeof(entry1));
2085
2086 entry1.dest_mode = 0; /* physical delivery */
2087 entry1.mask = 0; /* unmask IRQ now */
2088 entry1.dest.physical.physical_dest = hard_smp_processor_id();
2089 entry1.delivery_mode = dest_ExtINT;
2090 entry1.polarity = entry0.polarity;
2091 entry1.trigger = 0;
2092 entry1.vector = 0;
2093
Andi Kleencf4c6a22006-09-26 10:52:30 +02002094 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 save_control = CMOS_READ(RTC_CONTROL);
2097 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2098 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2099 RTC_FREQ_SELECT);
2100 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2101
2102 i = 100;
2103 while (i-- > 0) {
2104 mdelay(10);
2105 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2106 i -= 10;
2107 }
2108
2109 CMOS_WRITE(save_control, RTC_CONTROL);
2110 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002111 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Andi Kleencf4c6a22006-09-26 10:52:30 +02002113 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
2116/*
2117 * This code may look a bit paranoid, but it's supposed to cooperate with
2118 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2119 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2120 * fanatically on his truly buggy board.
2121 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002122static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002124 int apic1, pin1, apic2, pin2;
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002125 int no_pin1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 int vector;
Ingo Molnara0176e22008-06-16 12:44:17 +02002127 unsigned int ver;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002128 unsigned long flags;
2129
2130 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002131
Ingo Molnara0176e22008-06-16 12:44:17 +02002132 ver = apic_read(APIC_LVR);
2133 ver = GET_APIC_VERSION(ver);
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 /*
2136 * get/set the timer IRQ vector:
2137 */
2138 disable_8259A_irq(0);
2139 vector = assign_irq_vector(0);
2140 set_intr_gate(vector, interrupt[0]);
2141
2142 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002143 * As IRQ0 is to be enabled in the 8259A, the virtual
2144 * wire has to be disabled in the local APIC. Also
2145 * timer interrupts need to be acknowledged manually in
2146 * the 8259A for the i82489DX when using the NMI
2147 * watchdog as that APIC treats NMIs as level-triggered.
2148 * The AEOI mode will finish them in the 8259A
2149 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 */
2151 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2152 init_8259A(1);
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002153 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002155 pin1 = find_isa_irq_pin(0, mp_INT);
2156 apic1 = find_isa_irq_apic(0, mp_INT);
2157 pin2 = ioapic_i8259.pin;
2158 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002160 printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
2161 vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002163 /*
2164 * Some BIOS writers are clueless and report the ExtINTA
2165 * I/O APIC input from the cascaded 8259A as the timer
2166 * interrupt input. So just in case, if only one pin
2167 * was found above, try it both directly and through the
2168 * 8259A.
2169 */
2170 if (pin1 == -1) {
2171 pin1 = pin2;
2172 apic1 = apic2;
2173 no_pin1 = 1;
2174 } else if (pin2 == -1) {
2175 pin2 = pin1;
2176 apic2 = apic1;
2177 }
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (pin1 != -1) {
2180 /*
2181 * Ok, does IRQ0 through the IOAPIC work?
2182 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002183 if (no_pin1) {
2184 add_pin_to_irq(0, apic1, pin1);
2185 setup_timer_IRQ0_pin(apic1, pin1, vector);
2186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 unmask_IO_APIC_irq(0);
2188 if (timer_irq_works()) {
2189 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 setup_nmi();
2191 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002193 if (disable_timer_pin_1 > 0)
2194 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002197 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002198 if (!no_pin1)
2199 printk(KERN_ERR "..MP-BIOS bug: "
2200 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002202 printk(KERN_INFO "...trying to set up timer (IRQ0) "
2203 "through the 8259A ... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 printk("\n..... (found pin %d) ...", pin2);
2205 /*
2206 * legacy devices should be connected to IO APIC #0
2207 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002208 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01002209 setup_timer_IRQ0_pin(apic2, pin2, vector);
Maciej W. Rozycki24742ec2008-05-27 21:19:40 +01002210 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002211 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 if (timer_irq_works()) {
2213 printk("works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002214 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002216 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002218 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222 /*
2223 * Cleanup, just in case ...
2224 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002225 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002226 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002227 printk(" failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 if (nmi_watchdog == NMI_IO_APIC) {
2231 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002232 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002234 timer_ack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
2237
Ingo Molnara460e742006-10-17 00:10:03 -07002238 set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
Maciej W. Rozycki2e188932007-02-13 13:26:20 +01002239 "fasteoi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
2241 enable_8259A_irq(0);
2242
2243 if (timer_irq_works()) {
2244 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002245 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002247 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
2249 printk(" failed.\n");
2250
2251 printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 init_8259A(0);
2254 make_8259A_irq(0);
2255 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
2256
2257 unlock_ExtINT_logic();
2258
2259 if (timer_irq_works()) {
2260 printk(" works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002261 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263 printk(" failed :(.\n");
2264 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2265 "report. Then try booting with the 'noapic' option");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002266out:
2267 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
2270/*
2271 *
2272 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
2273 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
2274 * Linux doesn't really care, as it's not actually used
2275 * for any interrupt handling anyway.
2276 */
2277#define PIC_IRQS (1 << PIC_CASCADE_IR)
2278
2279void __init setup_IO_APIC(void)
2280{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02002281 int i;
2282
2283 /* Reserve all the system vectors. */
2284 for (i = FIRST_SYSTEM_VECTOR; i < NR_VECTORS; i++)
2285 set_bit(i, used_vectors);
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 enable_IO_APIC();
2288
2289 if (acpi_ioapic)
2290 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
2291 else
2292 io_apic_irqs = ~PIC_IRQS;
2293
2294 printk("ENABLING IO-APIC IRQs\n");
2295
2296 /*
2297 * Set up IO-APIC IRQ routing.
2298 */
2299 if (!acpi_ioapic)
2300 setup_ioapic_ids_from_mpc();
2301 sync_Arb_IDs();
2302 setup_IO_APIC_irqs();
2303 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002304 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (!acpi_ioapic)
2306 print_IO_APIC();
2307}
2308
2309/*
2310 * Called after all the initialization is done. If we didnt find any
2311 * APIC bugs then we can allow the modify fast path
2312 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314static int __init io_apic_bug_finalize(void)
2315{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002316 if (sis_apic_bug == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 sis_apic_bug = 0;
2318 return 0;
2319}
2320
2321late_initcall(io_apic_bug_finalize);
2322
2323struct sysfs_ioapic_data {
2324 struct sys_device dev;
2325 struct IO_APIC_route_entry entry[0];
2326};
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002327static struct sysfs_ioapic_data *mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Pavel Machek438510f2005-04-16 15:25:24 -07002329static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
2331 struct IO_APIC_route_entry *entry;
2332 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 data = container_of(dev, struct sysfs_ioapic_data, dev);
2336 entry = data->entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002337 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002338 entry[i] = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 return 0;
2341}
2342
2343static int ioapic_resume(struct sys_device *dev)
2344{
2345 struct IO_APIC_route_entry *entry;
2346 struct sysfs_ioapic_data *data;
2347 unsigned long flags;
2348 union IO_APIC_reg_00 reg_00;
2349 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 data = container_of(dev, struct sysfs_ioapic_data, dev);
2352 entry = data->entry;
2353
2354 spin_lock_irqsave(&ioapic_lock, flags);
2355 reg_00.raw = io_apic_read(dev->id, 0);
2356 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
2357 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
2358 io_apic_write(dev->id, 0, reg_00.raw);
2359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002361 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02002362 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 return 0;
2365}
2366
2367static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002368 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 .suspend = ioapic_suspend,
2370 .resume = ioapic_resume,
2371};
2372
2373static int __init ioapic_init_sysfs(void)
2374{
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002375 struct sys_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 int i, size, error = 0;
2377
2378 error = sysdev_class_register(&ioapic_sysdev_class);
2379 if (error)
2380 return error;
2381
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002382 for (i = 0; i < nr_ioapics; i++) {
2383 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 * sizeof(struct IO_APIC_route_entry);
2385 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
2386 if (!mp_ioapic_data[i]) {
2387 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2388 continue;
2389 }
2390 memset(mp_ioapic_data[i], 0, size);
2391 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002392 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 dev->cls = &ioapic_sysdev_class;
2394 error = sysdev_register(dev);
2395 if (error) {
2396 kfree(mp_ioapic_data[i]);
2397 mp_ioapic_data[i] = NULL;
2398 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
2399 continue;
2400 }
2401 }
2402
2403 return 0;
2404}
2405
2406device_initcall(ioapic_init_sysfs);
2407
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002408/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002409 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002410 */
2411int create_irq(void)
2412{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002413 /* Allocate an unused irq */
Andi Kleen306a22c2006-12-09 21:33:36 +01002414 int irq, new, vector = 0;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002415 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002416
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002417 irq = -ENOSPC;
2418 spin_lock_irqsave(&vector_lock, flags);
2419 for (new = (NR_IRQS - 1); new >= 0; new--) {
2420 if (platform_legacy_irq(new))
2421 continue;
2422 if (irq_vector[new] != 0)
2423 continue;
2424 vector = __assign_irq_vector(new);
2425 if (likely(vector > 0))
2426 irq = new;
2427 break;
2428 }
2429 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002430
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002431 if (irq >= 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002432 set_intr_gate(vector, interrupt[irq]);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002433 dynamic_irq_init(irq);
2434 }
2435 return irq;
2436}
2437
2438void destroy_irq(unsigned int irq)
2439{
2440 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002441
2442 dynamic_irq_cleanup(irq);
2443
2444 spin_lock_irqsave(&vector_lock, flags);
PJ Waskiewicz9d9ad4b2008-04-25 17:58:52 -07002445 clear_bit(irq_vector[irq], used_vectors);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002446 irq_vector[irq] = 0;
2447 spin_unlock_irqrestore(&vector_lock, flags);
2448}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002449
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002450/*
Simon Arlott27b46d72007-10-20 01:13:56 +02002451 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002452 */
2453#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002454static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002455{
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002456 int vector;
2457 unsigned dest;
2458
2459 vector = assign_irq_vector(irq);
2460 if (vector >= 0) {
2461 dest = cpu_mask_to_apicid(TARGET_CPUS);
2462
2463 msg->address_hi = MSI_ADDR_BASE_HI;
2464 msg->address_lo =
2465 MSI_ADDR_BASE_LO |
2466 ((INT_DEST_MODE == 0) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002467MSI_ADDR_DEST_MODE_PHYSICAL:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002468 MSI_ADDR_DEST_MODE_LOGICAL) |
2469 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2470 MSI_ADDR_REDIRECTION_CPU:
2471 MSI_ADDR_REDIRECTION_LOWPRI) |
2472 MSI_ADDR_DEST_ID(dest);
2473
2474 msg->data =
2475 MSI_DATA_TRIGGER_EDGE |
2476 MSI_DATA_LEVEL_ASSERT |
2477 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002478MSI_DATA_DELIVERY_FIXED:
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002479 MSI_DATA_DELIVERY_LOWPRI) |
2480 MSI_DATA_VECTOR(vector);
2481 }
2482 return vector;
2483}
2484
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002485#ifdef CONFIG_SMP
2486static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
2487{
2488 struct msi_msg msg;
2489 unsigned int dest;
2490 cpumask_t tmp;
2491 int vector;
2492
2493 cpus_and(tmp, mask, cpu_online_map);
2494 if (cpus_empty(tmp))
2495 tmp = TARGET_CPUS;
2496
2497 vector = assign_irq_vector(irq);
2498 if (vector < 0)
2499 return;
2500
2501 dest = cpu_mask_to_apicid(mask);
2502
2503 read_msi_msg(irq, &msg);
2504
2505 msg.data &= ~MSI_DATA_VECTOR_MASK;
2506 msg.data |= MSI_DATA_VECTOR(vector);
2507 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
2508 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
2509
2510 write_msi_msg(irq, &msg);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002511 irq_desc[irq].affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002512}
2513#endif /* CONFIG_SMP */
2514
2515/*
2516 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
2517 * which implement the MSI or MSI-X Capability Structure.
2518 */
2519static struct irq_chip msi_chip = {
2520 .name = "PCI-MSI",
2521 .unmask = unmask_msi_irq,
2522 .mask = mask_msi_irq,
2523 .ack = ack_ioapic_irq,
2524#ifdef CONFIG_SMP
2525 .set_affinity = set_msi_irq_affinity,
2526#endif
2527 .retrigger = ioapic_retrigger_irq,
2528};
2529
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002530int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002531{
2532 struct msi_msg msg;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002533 int irq, ret;
2534 irq = create_irq();
2535 if (irq < 0)
2536 return irq;
2537
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002538 ret = msi_compose_msg(dev, irq, &msg);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002539 if (ret < 0) {
2540 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002541 return ret;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002542 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002543
Michael Ellerman7fe37302007-04-18 19:39:21 +10002544 set_irq_msi(irq, desc);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002545 write_msi_msg(irq, &msg);
2546
Ingo Molnara460e742006-10-17 00:10:03 -07002547 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
2548 "edge");
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002549
Michael Ellerman7fe37302007-04-18 19:39:21 +10002550 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07002551}
2552
2553void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002554{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07002555 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002556}
2557
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07002558#endif /* CONFIG_PCI_MSI */
2559
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002560/*
2561 * Hypertransport interrupt support
2562 */
2563#ifdef CONFIG_HT_IRQ
2564
2565#ifdef CONFIG_SMP
2566
2567static void target_ht_irq(unsigned int irq, unsigned int dest)
2568{
Eric W. Biedermanec683072006-11-08 17:44:57 -08002569 struct ht_irq_msg msg;
2570 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002571
Eric W. Biedermanec683072006-11-08 17:44:57 -08002572 msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
2573 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002574
Eric W. Biedermanec683072006-11-08 17:44:57 -08002575 msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
2576 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002577
Eric W. Biedermanec683072006-11-08 17:44:57 -08002578 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002579}
2580
2581static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2582{
2583 unsigned int dest;
2584 cpumask_t tmp;
2585
2586 cpus_and(tmp, mask, cpu_online_map);
2587 if (cpus_empty(tmp))
2588 tmp = TARGET_CPUS;
2589
2590 cpus_and(mask, tmp, CPU_MASK_ALL);
2591
2592 dest = cpu_mask_to_apicid(mask);
2593
2594 target_ht_irq(irq, dest);
Eric W. Biederman9f0a5ba2007-02-23 04:13:55 -07002595 irq_desc[irq].affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002596}
2597#endif
2598
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07002599static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002600 .name = "PCI-HT",
2601 .mask = mask_ht_irq,
2602 .unmask = unmask_ht_irq,
2603 .ack = ack_ioapic_irq,
2604#ifdef CONFIG_SMP
2605 .set_affinity = set_ht_irq_affinity,
2606#endif
2607 .retrigger = ioapic_retrigger_irq,
2608};
2609
2610int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2611{
2612 int vector;
2613
2614 vector = assign_irq_vector(irq);
2615 if (vector >= 0) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08002616 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002617 unsigned dest;
2618 cpumask_t tmp;
2619
2620 cpus_clear(tmp);
2621 cpu_set(vector >> 8, tmp);
2622 dest = cpu_mask_to_apicid(tmp);
2623
Eric W. Biedermanec683072006-11-08 17:44:57 -08002624 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002625
Eric W. Biedermanec683072006-11-08 17:44:57 -08002626 msg.address_lo =
2627 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002628 HT_IRQ_LOW_DEST_ID(dest) |
2629 HT_IRQ_LOW_VECTOR(vector) |
2630 ((INT_DEST_MODE == 0) ?
2631 HT_IRQ_LOW_DM_PHYSICAL :
2632 HT_IRQ_LOW_DM_LOGICAL) |
2633 HT_IRQ_LOW_RQEOI_EDGE |
2634 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2635 HT_IRQ_LOW_MT_FIXED :
2636 HT_IRQ_LOW_MT_ARBITRATED) |
2637 HT_IRQ_LOW_IRQ_MASKED;
2638
Eric W. Biedermanec683072006-11-08 17:44:57 -08002639 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002640
Ingo Molnara460e742006-10-17 00:10:03 -07002641 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2642 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07002643 }
2644 return vector;
2645}
2646#endif /* CONFIG_HT_IRQ */
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648/* --------------------------------------------------------------------------
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002649 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 -------------------------------------------------------------------------- */
2651
Len Brown888ba6c2005-08-24 12:07:20 -04002652#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002654int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 union IO_APIC_reg_00 reg_00;
2657 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2658 physid_mask_t tmp;
2659 unsigned long flags;
2660 int i = 0;
2661
2662 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002663 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2664 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002666 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2668 * advantage of new APIC bus architecture.
2669 */
2670
2671 if (physids_empty(apic_id_map))
2672 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
2673
2674 spin_lock_irqsave(&ioapic_lock, flags);
2675 reg_00.raw = io_apic_read(ioapic, 0);
2676 spin_unlock_irqrestore(&ioapic_lock, flags);
2677
2678 if (apic_id >= get_physical_broadcast()) {
2679 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2680 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2681 apic_id = reg_00.bits.ID;
2682 }
2683
2684 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002685 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 * 'stuck on smp_invalidate_needed IPI wait' messages.
2687 */
2688 if (check_apicid_used(apic_id_map, apic_id)) {
2689
2690 for (i = 0; i < get_physical_broadcast(); i++) {
2691 if (!check_apicid_used(apic_id_map, i))
2692 break;
2693 }
2694
2695 if (i == get_physical_broadcast())
2696 panic("Max apic_id exceeded!\n");
2697
2698 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2699 "trying %d\n", ioapic, apic_id, i);
2700
2701 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 tmp = apicid_to_cpu_present(apic_id);
2705 physids_or(apic_id_map, apic_id_map, tmp);
2706
2707 if (reg_00.bits.ID != apic_id) {
2708 reg_00.bits.ID = apic_id;
2709
2710 spin_lock_irqsave(&ioapic_lock, flags);
2711 io_apic_write(ioapic, 0, reg_00.raw);
2712 reg_00.raw = io_apic_read(ioapic, 0);
2713 spin_unlock_irqrestore(&ioapic_lock, flags);
2714
2715 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01002716 if (reg_00.bits.ID != apic_id) {
2717 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
2718 return -1;
2719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721
2722 apic_printk(APIC_VERBOSE, KERN_INFO
2723 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2724
2725 return apic_id;
2726}
2727
2728
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002729int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
2731 union IO_APIC_reg_01 reg_01;
2732 unsigned long flags;
2733
2734 spin_lock_irqsave(&ioapic_lock, flags);
2735 reg_01.raw = io_apic_read(ioapic, 1);
2736 spin_unlock_irqrestore(&ioapic_lock, flags);
2737
2738 return reg_01.bits.version;
2739}
2740
2741
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002742int __init io_apic_get_redir_entries(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 union IO_APIC_reg_01 reg_01;
2745 unsigned long flags;
2746
2747 spin_lock_irqsave(&ioapic_lock, flags);
2748 reg_01.raw = io_apic_read(ioapic, 1);
2749 spin_unlock_irqrestore(&ioapic_lock, flags);
2750
2751 return reg_01.bits.entries;
2752}
2753
2754
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002755int 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 -07002756{
2757 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 if (!IO_APIC_IRQ(irq)) {
2760 printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2761 ioapic);
2762 return -EINVAL;
2763 }
2764
2765 /*
2766 * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
2767 * Note that we mask (disable) IRQs now -- these get enabled when the
2768 * corresponding device driver registers for this IRQ.
2769 */
2770
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002771 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
2773 entry.delivery_mode = INT_DELIVERY_MODE;
2774 entry.dest_mode = INT_DEST_MODE;
2775 entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
2776 entry.trigger = edge_level;
2777 entry.polarity = active_high_low;
2778 entry.mask = 1;
2779
2780 /*
2781 * IRQs < 16 are already in the irq_2_pin[] map
2782 */
2783 if (irq >= 16)
2784 add_pin_to_irq(irq, ioapic, pin);
2785
2786 entry.vector = assign_irq_vector(irq);
2787
2788 apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
2789 "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
2790 mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
2791 edge_level, active_high_low);
2792
2793 ioapic_register_intr(irq, entry.vector, edge_level);
2794
2795 if (!ioapic && (irq < 16))
2796 disable_8259A_irq(irq);
2797
Akinobu Mitaa2249cb2008-04-05 22:39:05 +09002798 ioapic_write_entry(ioapic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 return 0;
2801}
2802
Shaohua Li61fd47e2007-11-17 01:05:28 -05002803int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
2804{
2805 int i;
2806
2807 if (skip_ioapic_setup)
2808 return -1;
2809
2810 for (i = 0; i < mp_irq_entries; i++)
2811 if (mp_irqs[i].mpc_irqtype == mp_INT &&
2812 mp_irqs[i].mpc_srcbusirq == bus_irq)
2813 break;
2814 if (i >= mp_irq_entries)
2815 return -1;
2816
2817 *trigger = irq_trigger(i);
2818 *polarity = irq_polarity(i);
2819 return 0;
2820}
2821
Len Brown888ba6c2005-08-24 12:07:20 -04002822#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02002823
2824static int __init parse_disable_timer_pin_1(char *arg)
2825{
2826 disable_timer_pin_1 = 1;
2827 return 0;
2828}
2829early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
2830
2831static int __init parse_enable_timer_pin_1(char *arg)
2832{
2833 disable_timer_pin_1 = -1;
2834 return 0;
2835}
2836early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
2837
2838static int __init parse_noapic(char *arg)
2839{
2840 /* disable IO-APIC */
2841 disable_ioapic_setup();
2842 return 0;
2843}
2844early_param("noapic", parse_noapic);