blob: 9386976b675b454c600617af03e9c48bed2d46e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. 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>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053062#include <asm/hw_irq.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050063#include <asm/uv/uv_hub.h>
64#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ingo Molnar7b6aa332009-02-17 13:58:15 +010066#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010068#define __apicdebuginit(type) static type __init
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020071 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int sis_apic_bug = -1;
75
Yinghai Luefa25592008-08-19 20:50:36 -070076static DEFINE_SPINLOCK(ioapic_lock);
77static DEFINE_SPINLOCK(vector_lock);
78
Yinghai Luefa25592008-08-19 20:50:36 -070079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * # of IRQ routing registers
81 */
82int nr_ioapic_registers[MAX_IO_APICS];
83
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040084/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053085struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040086int nr_ioapics;
87
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040088/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053089struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040090
91/* # of MP IRQ source entries */
92int mp_irq_entries;
93
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040094#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
95int mp_bus_id_to_type[MAX_MP_BUSSES];
96#endif
97
98DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
99
Yinghai Luefa25592008-08-19 20:50:36 -0700100int skip_ioapic_setup;
101
Ingo Molnar65a4e572009-01-31 03:36:17 +0100102void arch_disable_smp_support(void)
103{
104#ifdef CONFIG_PCI
105 noioapicquirk = 1;
106 noioapicreroute = -1;
107#endif
108 skip_ioapic_setup = 1;
109}
110
Ingo Molnar54168ed2008-08-20 09:07:45 +0200111static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700112{
113 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100114 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700115 return 0;
116}
117early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200118
Yinghai Lu0f978f42008-08-19 20:50:26 -0700119struct irq_pin_list {
120 int apic, pin;
121 struct irq_pin_list *next;
122};
Yinghai Lu301e6192008-08-19 20:50:02 -0700123
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700124static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700125{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800126 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700127
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800128 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700129
Yinghai Lu0f978f42008-08-19 20:50:26 -0700130 return pin;
131}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jeremy Fitzhardinge8e13d692009-06-08 03:14:59 -0700133/*
134 * This is performance-critical, we want to do it O(1)
135 *
136 * Most irqs are mapped 1:1 with pins.
137 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800138struct irq_cfg {
139 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800140 cpumask_var_t domain;
141 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800142 unsigned move_cleanup_count;
143 u8 vector;
144 u8 move_in_progress : 1;
145};
146
147/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
148#ifdef CONFIG_SPARSE_IRQ
149static struct irq_cfg irq_cfgx[] = {
150#else
151static struct irq_cfg irq_cfgx[NR_IRQS] = {
152#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800153 [0] = { .vector = IRQ0_VECTOR, },
154 [1] = { .vector = IRQ1_VECTOR, },
155 [2] = { .vector = IRQ2_VECTOR, },
156 [3] = { .vector = IRQ3_VECTOR, },
157 [4] = { .vector = IRQ4_VECTOR, },
158 [5] = { .vector = IRQ5_VECTOR, },
159 [6] = { .vector = IRQ6_VECTOR, },
160 [7] = { .vector = IRQ7_VECTOR, },
161 [8] = { .vector = IRQ8_VECTOR, },
162 [9] = { .vector = IRQ9_VECTOR, },
163 [10] = { .vector = IRQ10_VECTOR, },
164 [11] = { .vector = IRQ11_VECTOR, },
165 [12] = { .vector = IRQ12_VECTOR, },
166 [13] = { .vector = IRQ13_VECTOR, },
167 [14] = { .vector = IRQ14_VECTOR, },
168 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800169};
170
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800171int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800172{
173 struct irq_cfg *cfg;
174 struct irq_desc *desc;
175 int count;
Yinghai Ludad213ae2009-05-28 18:14:40 -0700176 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800177 int i;
178
179 cfg = irq_cfgx;
180 count = ARRAY_SIZE(irq_cfgx);
Yinghai Ludad213ae2009-05-28 18:14:40 -0700181 node= cpu_to_node(boot_cpu_id);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800182
183 for (i = 0; i < count; i++) {
184 desc = irq_to_desc(i);
185 desc->chip_data = &cfg[i];
Yinghai Lu12274e92009-06-11 15:07:48 -0700186 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
187 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800188 if (i < NR_IRQS_LEGACY)
189 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800190 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800191
192 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800193}
194
195#ifdef CONFIG_SPARSE_IRQ
196static struct irq_cfg *irq_cfg(unsigned int irq)
197{
198 struct irq_cfg *cfg = NULL;
199 struct irq_desc *desc;
200
201 desc = irq_to_desc(irq);
202 if (desc)
203 cfg = desc->chip_data;
204
205 return cfg;
206}
207
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700208static struct irq_cfg *get_one_free_irq_cfg(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800209{
210 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800211
212 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800213 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800214 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800215 kfree(cfg);
216 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800217 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
218 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800219 free_cpumask_var(cfg->domain);
220 kfree(cfg);
221 cfg = NULL;
222 } else {
223 cpumask_clear(cfg->domain);
224 cpumask_clear(cfg->old_domain);
225 }
226 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800227
228 return cfg;
229}
230
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700231int arch_init_chip_data(struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800232{
233 struct irq_cfg *cfg;
234
235 cfg = desc->chip_data;
236 if (!cfg) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700237 desc->chip_data = get_one_free_irq_cfg(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800238 if (!desc->chip_data) {
239 printk(KERN_ERR "can not alloc irq_cfg\n");
240 BUG_ON(1);
241 }
242 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800243
244 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800245}
246
Yinghai Lufcef5912009-04-27 17:58:23 -0700247/* for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800248static void
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700249init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800250{
251 struct irq_pin_list *old_entry, *head, *tail, *entry;
252
253 cfg->irq_2_pin = NULL;
254 old_entry = old_cfg->irq_2_pin;
255 if (!old_entry)
256 return;
257
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700258 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800259 if (!entry)
260 return;
261
262 entry->apic = old_entry->apic;
263 entry->pin = old_entry->pin;
264 head = entry;
265 tail = entry;
266 old_entry = old_entry->next;
267 while (old_entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700268 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800269 if (!entry) {
270 entry = head;
271 while (entry) {
272 head = entry->next;
273 kfree(entry);
274 entry = head;
275 }
276 /* still use the old one */
277 return;
278 }
279 entry->apic = old_entry->apic;
280 entry->pin = old_entry->pin;
281 tail->next = entry;
282 tail = entry;
283 old_entry = old_entry->next;
284 }
285
286 tail->next = NULL;
287 cfg->irq_2_pin = head;
288}
289
290static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
291{
292 struct irq_pin_list *entry, *next;
293
294 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
295 return;
296
297 entry = old_cfg->irq_2_pin;
298
299 while (entry) {
300 next = entry->next;
301 kfree(entry);
302 entry = next;
303 }
304 old_cfg->irq_2_pin = NULL;
305}
306
307void arch_init_copy_chip_data(struct irq_desc *old_desc,
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700308 struct irq_desc *desc, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800309{
310 struct irq_cfg *cfg;
311 struct irq_cfg *old_cfg;
312
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700313 cfg = get_one_free_irq_cfg(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800314
315 if (!cfg)
316 return;
317
318 desc->chip_data = cfg;
319
320 old_cfg = old_desc->chip_data;
321
322 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
323
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700324 init_copy_irq_2_pin(old_cfg, cfg, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800325}
326
327static void free_irq_cfg(struct irq_cfg *old_cfg)
328{
329 kfree(old_cfg);
330}
331
332void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
333{
334 struct irq_cfg *old_cfg, *cfg;
335
336 old_cfg = old_desc->chip_data;
337 cfg = desc->chip_data;
338
339 if (old_cfg == cfg)
340 return;
341
342 if (old_cfg) {
343 free_irq_2_pin(old_cfg, cfg);
344 free_irq_cfg(old_cfg);
345 old_desc->chip_data = NULL;
346 }
347}
Yinghai Lufcef5912009-04-27 17:58:23 -0700348/* end for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800349
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800350#else
351static struct irq_cfg *irq_cfg(unsigned int irq)
352{
353 return irq < nr_irqs ? irq_cfgx + irq : NULL;
354}
355
356#endif
357
Linus Torvalds130fe052006-11-01 09:11:00 -0800358struct io_apic {
359 unsigned int index;
360 unsigned int unused[3];
361 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700362 unsigned int unused2[11];
363 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800364};
365
366static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
367{
368 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530369 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800370}
371
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700372static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
373{
374 struct io_apic __iomem *io_apic = io_apic_base(apic);
375 writel(vector, &io_apic->eoi);
376}
377
Linus Torvalds130fe052006-11-01 09:11:00 -0800378static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
379{
380 struct io_apic __iomem *io_apic = io_apic_base(apic);
381 writel(reg, &io_apic->index);
382 return readl(&io_apic->data);
383}
384
385static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
386{
387 struct io_apic __iomem *io_apic = io_apic_base(apic);
388 writel(reg, &io_apic->index);
389 writel(value, &io_apic->data);
390}
391
392/*
393 * Re-write a value: to be used for read-modify-write
394 * cycles where the read already set up the index register.
395 *
396 * Older SiS APIC requires we rewrite the index register
397 */
398static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
399{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200400 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200401
402 if (sis_apic_bug)
403 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800404 writel(value, &io_apic->data);
405}
406
Yinghai Lu3145e942008-12-05 18:58:34 -0800407static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700408{
409 struct irq_pin_list *entry;
410 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700411
412 spin_lock_irqsave(&ioapic_lock, flags);
Jeremy Fitzhardinged8c52062009-06-08 03:17:58 -0700413 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700414 unsigned int reg;
415 int pin;
416
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700417 pin = entry->pin;
418 reg = io_apic_read(entry->apic, 0x10 + pin*2);
419 /* Is the remote IRR bit set? */
420 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
421 spin_unlock_irqrestore(&ioapic_lock, flags);
422 return true;
423 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700424 }
425 spin_unlock_irqrestore(&ioapic_lock, flags);
426
427 return false;
428}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700429
Andi Kleencf4c6a22006-09-26 10:52:30 +0200430union entry_union {
431 struct { u32 w1, w2; };
432 struct IO_APIC_route_entry entry;
433};
434
435static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
436{
437 union entry_union eu;
438 unsigned long flags;
439 spin_lock_irqsave(&ioapic_lock, flags);
440 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
441 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
442 spin_unlock_irqrestore(&ioapic_lock, flags);
443 return eu.entry;
444}
445
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800446/*
447 * When we write a new IO APIC routing entry, we need to write the high
448 * word first! If the mask bit in the low word is clear, we will enable
449 * the interrupt, and we need to make sure the entry is fully populated
450 * before that happens.
451 */
Andi Kleend15512f2006-12-07 02:14:07 +0100452static void
453__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
454{
Figo.zhang50a8d4d2009-06-17 22:25:20 +0800455 union entry_union eu = {{0, 0}};
456
Andi Kleend15512f2006-12-07 02:14:07 +0100457 eu.entry = e;
458 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
459 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
460}
461
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800462void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200463{
464 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200465 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100466 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800467 spin_unlock_irqrestore(&ioapic_lock, flags);
468}
469
470/*
471 * When we mask an IO APIC routing entry, we need to write the low
472 * word first, in order to set the mask bit before we change the
473 * high bits!
474 */
475static void ioapic_mask_entry(int apic, int pin)
476{
477 unsigned long flags;
478 union entry_union eu = { .entry.mask = 1 };
479
480 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200481 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
482 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
483 spin_unlock_irqrestore(&ioapic_lock, flags);
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
487 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
488 * shared ISA-space IRQs, so we have to support them. We are super
489 * fast in the common case, and fast for shared ISA-space IRQs.
490 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700491static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700493 struct irq_pin_list **entryp, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700495 for (entryp = &cfg->irq_2_pin;
496 *entryp != NULL;
497 entryp = &(*entryp)->next) {
498 entry = *entryp;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700499 /* not again, please */
500 if (entry->apic == apic && entry->pin == pin)
501 return;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700502 }
503
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700504 entry = get_one_free_irq_2_pin(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 entry->apic = apic;
506 entry->pin = pin;
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700507
508 *entryp = entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/*
512 * Reroute an IRQ to a different pin.
513 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700514static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int oldapic, int oldpin,
516 int newapic, int newpin)
517{
Jeremy Fitzhardinge535b6422009-06-08 03:29:26 -0700518 struct irq_pin_list *entry;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700519 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Jeremy Fitzhardinge535b6422009-06-08 03:29:26 -0700521 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (entry->apic == oldapic && entry->pin == oldpin) {
523 entry->apic = newapic;
524 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700525 replaced = 1;
526 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700530
531 /* why? call replace before add? */
532 if (!replaced)
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700533 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Jeremy Fitzhardinge2f210de2009-06-08 02:55:22 -0700536static void io_apic_modify_irq(struct irq_cfg *cfg,
537 int mask_and, int mask_or,
538 void (*final)(struct irq_pin_list *entry))
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400539{
540 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400541 struct irq_pin_list *entry;
542
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400543 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
544 unsigned int reg;
545 pin = entry->pin;
546 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
547 reg &= mask_and;
548 reg |= mask_or;
549 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
550 if (final)
551 final(entry);
552 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700553}
554
Yinghai Lu3145e942008-12-05 18:58:34 -0800555static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400556{
Yinghai Lu3145e942008-12-05 18:58:34 -0800557 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400558}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700559
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530560static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700561{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400562 /*
563 * Synchronize the IO-APIC and the CPU by doing
564 * a dummy read from the IO-APIC
565 */
566 struct io_apic __iomem *io_apic;
567 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700568 readl(&io_apic->data);
569}
570
Yinghai Lu3145e942008-12-05 18:58:34 -0800571static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400572{
Yinghai Lu3145e942008-12-05 18:58:34 -0800573 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400574}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700575
Yinghai Lu3145e942008-12-05 18:58:34 -0800576static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400577{
Yinghai Lu3145e942008-12-05 18:58:34 -0800578 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400579 IO_APIC_REDIR_MASKED, NULL);
580}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700581
Yinghai Lu3145e942008-12-05 18:58:34 -0800582static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400583{
Yinghai Lu3145e942008-12-05 18:58:34 -0800584 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400585 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
586}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700587
Yinghai Lu3145e942008-12-05 18:58:34 -0800588static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Yinghai Lu3145e942008-12-05 18:58:34 -0800590 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 unsigned long flags;
592
Yinghai Lu3145e942008-12-05 18:58:34 -0800593 BUG_ON(!cfg);
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800596 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 spin_unlock_irqrestore(&ioapic_lock, flags);
598}
599
Yinghai Lu3145e942008-12-05 18:58:34 -0800600static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Yinghai Lu3145e942008-12-05 18:58:34 -0800602 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 unsigned long flags;
604
605 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800606 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 spin_unlock_irqrestore(&ioapic_lock, flags);
608}
609
Yinghai Lu3145e942008-12-05 18:58:34 -0800610static void mask_IO_APIC_irq(unsigned int irq)
611{
612 struct irq_desc *desc = irq_to_desc(irq);
613
614 mask_IO_APIC_irq_desc(desc);
615}
616static void unmask_IO_APIC_irq(unsigned int irq)
617{
618 struct irq_desc *desc = irq_to_desc(irq);
619
620 unmask_IO_APIC_irq_desc(desc);
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
624{
625 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200628 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (entry.delivery_mode == dest_SMI)
630 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
632 * Disable it in the IO-APIC irq-routing table:
633 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800634 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Ingo Molnar54168ed2008-08-20 09:07:45 +0200637static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 int apic, pin;
640
641 for (apic = 0; apic < nr_ioapics; apic++)
642 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
643 clear_IO_APIC_pin(apic, pin);
644}
645
Ingo Molnar54168ed2008-08-20 09:07:45 +0200646#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647/*
648 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
649 * specific CPU-side IRQs.
650 */
651
652#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800653static int pirq_entries[MAX_PIRQS] = {
654 [0 ... MAX_PIRQS - 1] = -1
655};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657static int __init ioapic_pirq_setup(char *str)
658{
659 int i, max;
660 int ints[MAX_PIRQS+1];
661
662 get_options(str, ARRAY_SIZE(ints), ints);
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 apic_printk(APIC_VERBOSE, KERN_INFO
665 "PIRQ redirection, working around broken MP-BIOS.\n");
666 max = MAX_PIRQS;
667 if (ints[0] < MAX_PIRQS)
668 max = ints[0];
669
670 for (i = 0; i < max; i++) {
671 apic_printk(APIC_VERBOSE, KERN_DEBUG
672 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
673 /*
674 * PIRQs are mapped upside down, usually.
675 */
676 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
677 }
678 return 1;
679}
680
681__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200682#endif /* CONFIG_X86_32 */
683
Fenghua Yub24696b2009-03-27 14:22:44 -0700684struct IO_APIC_route_entry **alloc_ioapic_entries(void)
685{
686 int apic;
687 struct IO_APIC_route_entry **ioapic_entries;
688
689 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
690 GFP_ATOMIC);
691 if (!ioapic_entries)
692 return 0;
693
694 for (apic = 0; apic < nr_ioapics; apic++) {
695 ioapic_entries[apic] =
696 kzalloc(sizeof(struct IO_APIC_route_entry) *
697 nr_ioapic_registers[apic], GFP_ATOMIC);
698 if (!ioapic_entries[apic])
699 goto nomem;
700 }
701
702 return ioapic_entries;
703
704nomem:
705 while (--apic >= 0)
706 kfree(ioapic_entries[apic]);
707 kfree(ioapic_entries);
708
709 return 0;
710}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200711
712/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700713 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200714 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700715int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200716{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200717 int apic, pin;
718
Fenghua Yub24696b2009-03-27 14:22:44 -0700719 if (!ioapic_entries)
720 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200721
722 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700723 if (!ioapic_entries[apic])
724 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200725
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700726 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700727 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200728 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700729 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400730
Ingo Molnar54168ed2008-08-20 09:07:45 +0200731 return 0;
732}
733
Fenghua Yub24696b2009-03-27 14:22:44 -0700734/*
735 * Mask all IO APIC entries.
736 */
737void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700738{
739 int apic, pin;
740
Fenghua Yub24696b2009-03-27 14:22:44 -0700741 if (!ioapic_entries)
742 return;
743
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700744 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700745 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700746 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700747
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700748 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
749 struct IO_APIC_route_entry entry;
750
Fenghua Yub24696b2009-03-27 14:22:44 -0700751 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700752 if (!entry.mask) {
753 entry.mask = 1;
754 ioapic_write_entry(apic, pin, entry);
755 }
756 }
757 }
758}
759
Fenghua Yub24696b2009-03-27 14:22:44 -0700760/*
761 * Restore IO APIC entries which was saved in ioapic_entries.
762 */
763int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200764{
765 int apic, pin;
766
Fenghua Yub24696b2009-03-27 14:22:44 -0700767 if (!ioapic_entries)
768 return -ENOMEM;
769
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400770 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700771 if (!ioapic_entries[apic])
772 return -ENOMEM;
773
Ingo Molnar54168ed2008-08-20 09:07:45 +0200774 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
775 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700776 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400777 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700778 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200779}
780
Fenghua Yub24696b2009-03-27 14:22:44 -0700781void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
782{
783 int apic;
784
785 for (apic = 0; apic < nr_ioapics; apic++)
786 kfree(ioapic_entries[apic]);
787
788 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200789}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791/*
792 * Find the IRQ entry number of a certain pin.
793 */
794static int find_irq_entry(int apic, int pin, int type)
795{
796 int i;
797
798 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530799 if (mp_irqs[i].irqtype == type &&
800 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
801 mp_irqs[i].dstapic == MP_APIC_ALL) &&
802 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return i;
804
805 return -1;
806}
807
808/*
809 * Find the pin to which IRQ[irq] (ISA) is connected
810 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800811static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 int i;
814
815 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530816 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300818 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530819 (mp_irqs[i].irqtype == type) &&
820 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530822 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824 return -1;
825}
826
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800827static int __init find_isa_irq_apic(int irq, int type)
828{
829 int i;
830
831 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530832 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800833
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300834 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530835 (mp_irqs[i].irqtype == type) &&
836 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800837 break;
838 }
839 if (i < mp_irq_entries) {
840 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200841 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530842 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800843 return apic;
844 }
845 }
846
847 return -1;
848}
849
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300850#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/*
852 * EISA Edge/Level control register, ELCR
853 */
854static int EISA_ELCR(unsigned int irq)
855{
Yinghai Lu99d093d2008-12-05 18:58:32 -0800856 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 unsigned int port = 0x4d0 + (irq >> 3);
858 return (inb(port) >> (irq & 7)) & 1;
859 }
860 apic_printk(APIC_VERBOSE, KERN_INFO
861 "Broken MPtable reports ISA irq %d\n", irq);
862 return 0;
863}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200864
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300865#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300867/* ISA interrupts are always polarity zero edge triggered,
868 * when listed as conforming in the MP table. */
869
870#define default_ISA_trigger(idx) (0)
871#define default_ISA_polarity(idx) (0)
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/* EISA interrupts are always polarity zero and can be edge or level
874 * trigger depending on the ELCR value. If an interrupt is listed as
875 * EISA conforming in the MP table, that means its trigger type must
876 * be read in from the ELCR */
877
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530878#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300879#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881/* PCI interrupts are always polarity one level triggered,
882 * when listed as conforming in the MP table. */
883
884#define default_PCI_trigger(idx) (1)
885#define default_PCI_polarity(idx) (1)
886
887/* MCA interrupts are always polarity zero level triggered,
888 * when listed as conforming in the MP table. */
889
890#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300891#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Shaohua Li61fd47e2007-11-17 01:05:28 -0500893static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530895 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 int polarity;
897
898 /*
899 * Determine IRQ line polarity (high active or low active):
900 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530901 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200903 case 0: /* conforms, ie. bus-type dependent polarity */
904 if (test_bit(bus, mp_bus_not_pci))
905 polarity = default_ISA_polarity(idx);
906 else
907 polarity = default_PCI_polarity(idx);
908 break;
909 case 1: /* high active */
910 {
911 polarity = 0;
912 break;
913 }
914 case 2: /* reserved */
915 {
916 printk(KERN_WARNING "broken BIOS!!\n");
917 polarity = 1;
918 break;
919 }
920 case 3: /* low active */
921 {
922 polarity = 1;
923 break;
924 }
925 default: /* invalid */
926 {
927 printk(KERN_WARNING "broken BIOS!!\n");
928 polarity = 1;
929 break;
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 return polarity;
933}
934
935static int MPBIOS_trigger(int idx)
936{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530937 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int trigger;
939
940 /*
941 * Determine IRQ trigger mode (edge or level sensitive):
942 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530943 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200945 case 0: /* conforms, ie. bus-type dependent */
946 if (test_bit(bus, mp_bus_not_pci))
947 trigger = default_ISA_trigger(idx);
948 else
949 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300950#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200951 switch (mp_bus_id_to_type[bus]) {
952 case MP_BUS_ISA: /* ISA pin */
953 {
954 /* set before the switch */
955 break;
956 }
957 case MP_BUS_EISA: /* EISA pin */
958 {
959 trigger = default_EISA_trigger(idx);
960 break;
961 }
962 case MP_BUS_PCI: /* PCI pin */
963 {
964 /* set before the switch */
965 break;
966 }
967 case MP_BUS_MCA: /* MCA pin */
968 {
969 trigger = default_MCA_trigger(idx);
970 break;
971 }
972 default:
973 {
974 printk(KERN_WARNING "broken BIOS!!\n");
975 trigger = 1;
976 break;
977 }
978 }
979#endif
980 break;
981 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200982 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200983 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200984 break;
985 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200986 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200987 {
988 printk(KERN_WARNING "broken BIOS!!\n");
989 trigger = 1;
990 break;
991 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200992 case 3: /* level */
993 {
994 trigger = 1;
995 break;
996 }
997 default: /* invalid */
998 {
999 printk(KERN_WARNING "broken BIOS!!\n");
1000 trigger = 0;
1001 break;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004 return trigger;
1005}
1006
1007static inline int irq_polarity(int idx)
1008{
1009 return MPBIOS_polarity(idx);
1010}
1011
1012static inline int irq_trigger(int idx)
1013{
1014 return MPBIOS_trigger(idx);
1015}
1016
Yinghai Luefa25592008-08-19 20:50:36 -07001017int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018static int pin_2_irq(int idx, int apic, int pin)
1019{
1020 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301021 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /*
1024 * Debugging check, we are in big trouble if this message pops up!
1025 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301026 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1028
Ingo Molnar54168ed2008-08-20 09:07:45 +02001029 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301030 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001031 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001032 /*
1033 * PCI IRQs are mapped in order
1034 */
1035 i = irq = 0;
1036 while (i < apic)
1037 irq += nr_ioapic_registers[i++];
1038 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001039 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001040 * For MPS mode, so far only needed by ES7000 platform
1041 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001042 if (ioapic_renumber_irq)
1043 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045
Ingo Molnar54168ed2008-08-20 09:07:45 +02001046#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /*
1048 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1049 */
1050 if ((pin >= 16) && (pin <= 23)) {
1051 if (pirq_entries[pin-16] != -1) {
1052 if (!pirq_entries[pin-16]) {
1053 apic_printk(APIC_VERBOSE, KERN_DEBUG
1054 "disabling PIRQ%d\n", pin-16);
1055 } else {
1056 irq = pirq_entries[pin-16];
1057 apic_printk(APIC_VERBOSE, KERN_DEBUG
1058 "using PIRQ%d -> IRQ %d\n",
1059 pin-16, irq);
1060 }
1061 }
1062 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001063#endif
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return irq;
1066}
1067
Yinghai Lue20c06f2009-05-06 10:08:22 -07001068/*
1069 * Find a specific PCI IRQ entry.
1070 * Not an __init, possibly needed by modules
1071 */
1072int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001073 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001074{
1075 int apic, i, best_guess = -1;
1076
1077 apic_printk(APIC_DEBUG,
1078 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1079 bus, slot, pin);
1080 if (test_bit(bus, mp_bus_not_pci)) {
1081 apic_printk(APIC_VERBOSE,
1082 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1083 return -1;
1084 }
1085 for (i = 0; i < mp_irq_entries; i++) {
1086 int lbus = mp_irqs[i].srcbus;
1087
1088 for (apic = 0; apic < nr_ioapics; apic++)
1089 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1090 mp_irqs[i].dstapic == MP_APIC_ALL)
1091 break;
1092
1093 if (!test_bit(lbus, mp_bus_not_pci) &&
1094 !mp_irqs[i].irqtype &&
1095 (bus == lbus) &&
1096 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1097 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1098
1099 if (!(apic || IO_APIC_IRQ(irq)))
1100 continue;
1101
1102 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lue5198072009-05-15 13:05:16 -07001103 set_io_apic_irq_attr(irq_attr, apic,
1104 mp_irqs[i].dstirq,
1105 irq_trigger(i),
1106 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001107 return irq;
1108 }
1109 /*
1110 * Use the first all-but-pin matching entry as a
1111 * best-guess fuzzy result for broken mptables.
1112 */
1113 if (best_guess < 0) {
Yinghai Lue5198072009-05-15 13:05:16 -07001114 set_io_apic_irq_attr(irq_attr, apic,
1115 mp_irqs[i].dstirq,
1116 irq_trigger(i),
1117 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001118 best_guess = irq;
1119 }
1120 }
1121 }
1122 return best_guess;
1123}
1124EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1125
Yinghai Lu497c9a12008-08-19 20:50:28 -07001126void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001128 /* Used to the online set of cpus does not change
1129 * during assign_irq_vector.
1130 */
1131 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Yinghai Lu497c9a12008-08-19 20:50:28 -07001134void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001135{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001136 spin_unlock(&vector_lock);
1137}
1138
Mike Travise7986732008-12-16 17:33:52 -08001139static int
1140__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001141{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001142 /*
1143 * NOTE! The local APIC isn't very good at handling
1144 * multiple interrupts at the same interrupt level.
1145 * As the interrupt level is determined by taking the
1146 * vector number and shifting that right by 4, we
1147 * want to spread these out a bit so that they don't
1148 * all fall in the same interrupt level.
1149 *
1150 * Also, we've got to be careful not to trash gate
1151 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1152 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001153 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1154 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001155 int cpu, err;
1156 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001157
Ingo Molnar54168ed2008-08-20 09:07:45 +02001158 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1159 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001160
Mike Travis22f65d32008-12-16 17:33:56 -08001161 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1162 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001163
Ingo Molnar54168ed2008-08-20 09:07:45 +02001164 old_vector = cfg->vector;
1165 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001166 cpumask_and(tmp_mask, mask, cpu_online_mask);
1167 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1168 if (!cpumask_empty(tmp_mask)) {
1169 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001170 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001171 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001172 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001173
Mike Travise7986732008-12-16 17:33:52 -08001174 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001175 err = -ENOSPC;
1176 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001177 int new_cpu;
1178 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001179
Ingo Molnare2d40b12009-01-28 06:50:47 +01001180 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001181
Ingo Molnar54168ed2008-08-20 09:07:45 +02001182 vector = current_vector;
1183 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001184next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001185 vector += 8;
1186 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001187 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001188 offset = (offset + 1) % 8;
1189 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001190 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001191 if (unlikely(current_vector == vector))
1192 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001193
1194 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001195 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001196
Mike Travis22f65d32008-12-16 17:33:56 -08001197 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001198 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1199 goto next;
1200 /* Found one! */
1201 current_vector = vector;
1202 current_offset = offset;
1203 if (old_vector) {
1204 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001205 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001206 }
Mike Travis22f65d32008-12-16 17:33:56 -08001207 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001208 per_cpu(vector_irq, new_cpu)[vector] = irq;
1209 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001210 cpumask_copy(cfg->domain, tmp_mask);
1211 err = 0;
1212 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001213 }
Mike Travis22f65d32008-12-16 17:33:56 -08001214 free_cpumask_var(tmp_mask);
1215 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001216}
1217
Mike Travise7986732008-12-16 17:33:52 -08001218static int
1219assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001220{
1221 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001222 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001223
1224 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001225 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001226 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001227 return err;
1228}
1229
Yinghai Lu3145e942008-12-05 18:58:34 -08001230static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001231{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001232 int cpu, vector;
1233
Yinghai Lu497c9a12008-08-19 20:50:28 -07001234 BUG_ON(!cfg->vector);
1235
1236 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001237 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001238 per_cpu(vector_irq, cpu)[vector] = -1;
1239
1240 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001241 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001242
1243 if (likely(!cfg->move_in_progress))
1244 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001245 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001246 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1247 vector++) {
1248 if (per_cpu(vector_irq, cpu)[vector] != irq)
1249 continue;
1250 per_cpu(vector_irq, cpu)[vector] = -1;
1251 break;
1252 }
1253 }
1254 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001255}
1256
1257void __setup_vector_irq(int cpu)
1258{
1259 /* Initialize vector_irq on a new cpu */
1260 /* This function must be called with vector_lock held */
1261 int irq, vector;
1262 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001263 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001264
1265 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001266 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001267 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001268 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001269 continue;
1270 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001271 per_cpu(vector_irq, cpu)[vector] = irq;
1272 }
1273 /* Mark the free vectors */
1274 for (vector = 0; vector < NR_VECTORS; ++vector) {
1275 irq = per_cpu(vector_irq, cpu)[vector];
1276 if (irq < 0)
1277 continue;
1278
1279 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001280 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001281 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001282 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001283}
Glauber Costa3fde6902008-05-28 20:34:19 -07001284
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001285static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001286static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Ingo Molnar54168ed2008-08-20 09:07:45 +02001288#define IOAPIC_AUTO -1
1289#define IOAPIC_EDGE 0
1290#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001292#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001293static inline int IO_APIC_irq_trigger(int irq)
1294{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001295 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001296
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001297 for (apic = 0; apic < nr_ioapics; apic++) {
1298 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1299 idx = find_irq_entry(apic, pin, mp_INT);
1300 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1301 return irq_trigger(idx);
1302 }
1303 }
1304 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001305 * nonexistent IRQs are edge default
1306 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001307 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001308}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001309#else
1310static inline int IO_APIC_irq_trigger(int irq)
1311{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001312 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001313}
1314#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001315
Yinghai Lu3145e942008-12-05 18:58:34 -08001316static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Yinghai Lu199751d2008-08-19 20:50:27 -07001318
Jan Beulich6ebcc002006-06-26 13:56:46 +02001319 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001320 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001321 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001322 else
1323 desc->status &= ~IRQ_LEVEL;
1324
Ingo Molnar54168ed2008-08-20 09:07:45 +02001325 if (irq_remapped(irq)) {
1326 desc->status |= IRQ_MOVE_PCNTXT;
1327 if (trigger)
1328 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1329 handle_fasteoi_irq,
1330 "fasteoi");
1331 else
1332 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1333 handle_edge_irq, "edge");
1334 return;
1335 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001336
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001337 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1338 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001339 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001340 handle_fasteoi_irq,
1341 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001342 else
Ingo Molnara460e742006-10-17 00:10:03 -07001343 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001344 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001345}
1346
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001347int setup_ioapic_entry(int apic_id, int irq,
1348 struct IO_APIC_route_entry *entry,
1349 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001350 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001351{
1352 /*
1353 * add it to the IO-APIC irq-routing table:
1354 */
1355 memset(entry,0,sizeof(*entry));
1356
Ingo Molnar54168ed2008-08-20 09:07:45 +02001357 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001358 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001359 struct irte irte;
1360 struct IR_IO_APIC_route_entry *ir_entry =
1361 (struct IR_IO_APIC_route_entry *) entry;
1362 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001363
Ingo Molnar54168ed2008-08-20 09:07:45 +02001364 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001365 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001366
1367 index = alloc_irte(iommu, irq, 1);
1368 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001369 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001370
1371 memset(&irte, 0, sizeof(irte));
1372
1373 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001374 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001375 /*
1376 * Trigger mode in the IRTE will always be edge, and the
1377 * actual level or edge trigger will be setup in the IO-APIC
1378 * RTE. This will help simplify level triggered irq migration.
1379 * For more details, see the comments above explainig IO-APIC
1380 * irq migration in the presence of interrupt-remapping.
1381 */
1382 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001383 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001384 irte.vector = vector;
1385 irte.dest_id = IRTE_DEST(destination);
1386
Weidong Hanf007e992009-05-23 00:41:15 +08001387 /* Set source-id of interrupt request */
1388 set_ioapic_sid(&irte, apic_id);
1389
Ingo Molnar54168ed2008-08-20 09:07:45 +02001390 modify_irte(irq, &irte);
1391
1392 ir_entry->index2 = (index >> 15) & 0x1;
1393 ir_entry->zero = 0;
1394 ir_entry->format = 1;
1395 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001396 /*
1397 * IO-APIC RTE will be configured with virtual vector.
1398 * irq handler will do the explicit EOI to the io-apic.
1399 */
1400 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001401 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001402 entry->delivery_mode = apic->irq_delivery_mode;
1403 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001404 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001405 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001406 }
1407
1408 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001409 entry->trigger = trigger;
1410 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001411
1412 /* Mask level triggered irqs.
1413 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1414 */
1415 if (trigger)
1416 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001417 return 0;
1418}
1419
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001420static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001421 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001422{
1423 struct irq_cfg *cfg;
1424 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001425 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001426
1427 if (!IO_APIC_IRQ(irq))
1428 return;
1429
Yinghai Lu3145e942008-12-05 18:58:34 -08001430 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001431
Ingo Molnarfe402e12009-01-28 04:32:51 +01001432 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001433 return;
1434
Ingo Molnardebccb32009-01-28 15:20:18 +01001435 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001436
1437 apic_printk(APIC_VERBOSE,KERN_DEBUG
1438 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1439 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001440 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001441 irq, trigger, polarity);
1442
1443
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001444 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001445 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001446 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001447 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001448 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001449 return;
1450 }
1451
Yinghai Lu3145e942008-12-05 18:58:34 -08001452 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001453 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001454 disable_8259A_irq(irq);
1455
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001456 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
Yinghai Lub9c61b702009-05-06 10:10:06 -07001459static struct {
1460 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1461} mp_ioapic_routing[MAX_IO_APICS];
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463static void __init setup_IO_APIC_irqs(void)
1464{
Yinghai Lub9c61b702009-05-06 10:10:06 -07001465 int apic_id = 0, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001466 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001467 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001468 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001469 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1472
Yinghai Lub9c61b702009-05-06 10:10:06 -07001473#ifdef CONFIG_ACPI
1474 if (!acpi_disabled && acpi_ioapic) {
1475 apic_id = mp_find_ioapic(0);
1476 if (apic_id < 0)
1477 apic_id = 0;
1478 }
1479#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Yinghai Lub9c61b702009-05-06 10:10:06 -07001481 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1482 idx = find_irq_entry(apic_id, pin, mp_INT);
1483 if (idx == -1) {
1484 if (!notcon) {
1485 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001486 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001487 KERN_DEBUG " %d-%d",
1488 mp_ioapics[apic_id].apicid, pin);
1489 } else
1490 apic_printk(APIC_VERBOSE, " %d-%d",
1491 mp_ioapics[apic_id].apicid, pin);
1492 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001493 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001494 if (notcon) {
1495 apic_printk(APIC_VERBOSE,
1496 " (apicid-pin) not connected\n");
1497 notcon = 0;
1498 }
1499
1500 irq = pin_2_irq(idx, apic_id, pin);
1501
1502 /*
1503 * Skip the timer IRQ if there's a quirk handler
1504 * installed and if it returns 1:
1505 */
1506 if (apic->multi_timer_check &&
1507 apic->multi_timer_check(apic_id, irq))
1508 continue;
1509
1510 desc = irq_to_desc_alloc_node(irq, node);
1511 if (!desc) {
1512 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1513 continue;
1514 }
1515 cfg = desc->chip_data;
1516 add_pin_to_irq_node(cfg, node, apic_id, pin);
Yinghai Lu4c6f18f2009-05-18 10:23:28 -07001517 /*
1518 * don't mark it in pin_programmed, so later acpi could
1519 * set it correctly when irq < 16
1520 */
Yinghai Lub9c61b702009-05-06 10:10:06 -07001521 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1522 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001525 if (notcon)
1526 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001527 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
1530/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001531 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001533static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001534 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Ingo Molnar54168ed2008-08-20 09:07:45 +02001538 if (intr_remapping_enabled)
1539 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001540
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001541 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 /*
1544 * We use logical delivery to get the timer IRQ
1545 * to the first CPU.
1546 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001547 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001548 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001549 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001550 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 entry.polarity = 0;
1552 entry.trigger = 0;
1553 entry.vector = vector;
1554
1555 /*
1556 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001557 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001559 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 /*
1562 * Add it to the IO-APIC irq-routing table:
1563 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001564 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001567
1568__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 int apic, i;
1571 union IO_APIC_reg_00 reg_00;
1572 union IO_APIC_reg_01 reg_01;
1573 union IO_APIC_reg_02 reg_02;
1574 union IO_APIC_reg_03 reg_03;
1575 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001576 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001577 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001578 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 if (apic_verbosity == APIC_QUIET)
1581 return;
1582
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001583 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 for (i = 0; i < nr_ioapics; i++)
1585 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301586 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /*
1589 * We are a bit conservative about what we expect. We have to
1590 * know about every hardware change ASAP.
1591 */
1592 printk(KERN_INFO "testing the IO APIC.......................\n");
1593
1594 for (apic = 0; apic < nr_ioapics; apic++) {
1595
1596 spin_lock_irqsave(&ioapic_lock, flags);
1597 reg_00.raw = io_apic_read(apic, 0);
1598 reg_01.raw = io_apic_read(apic, 1);
1599 if (reg_01.bits.version >= 0x10)
1600 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001601 if (reg_01.bits.version >= 0x20)
1602 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 spin_unlock_irqrestore(&ioapic_lock, flags);
1604
Ingo Molnar54168ed2008-08-20 09:07:45 +02001605 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301606 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1608 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1609 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1610 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Ingo Molnar54168ed2008-08-20 09:07:45 +02001612 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1616 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 /*
1619 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1620 * but the value of reg_02 is read as the previous read register
1621 * value, so ignore it if reg_02 == reg_01.
1622 */
1623 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1624 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1625 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
1628 /*
1629 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1630 * or reg_03, but the value of reg_0[23] is read as the previous read
1631 * register value, so ignore it if reg_03 == reg_0[12].
1632 */
1633 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1634 reg_03.raw != reg_01.raw) {
1635 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1636 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
1639 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1640
Yinghai Lud83e94a2008-08-19 20:50:33 -07001641 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1642 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 for (i = 0; i <= reg_01.bits.entries; i++) {
1645 struct IO_APIC_route_entry entry;
1646
Andi Kleencf4c6a22006-09-26 10:52:30 +02001647 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Ingo Molnar54168ed2008-08-20 09:07:45 +02001649 printk(KERN_DEBUG " %02x %03X ",
1650 i,
1651 entry.dest
1652 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1655 entry.mask,
1656 entry.trigger,
1657 entry.irr,
1658 entry.polarity,
1659 entry.delivery_status,
1660 entry.dest_mode,
1661 entry.delivery_mode,
1662 entry.vector
1663 );
1664 }
1665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001667 for_each_irq_desc(irq, desc) {
1668 struct irq_pin_list *entry;
1669
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001670 cfg = desc->chip_data;
1671 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001672 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001674 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 for (;;) {
1676 printk("-> %d:%d", entry->apic, entry->pin);
1677 if (!entry->next)
1678 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001679 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681 printk("\n");
1682 }
1683
1684 printk(KERN_INFO ".................................... done.\n");
1685
1686 return;
1687}
1688
Ingo Molnar251e1e42009-07-02 08:54:01 +02001689__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001691 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 if (apic_verbosity == APIC_QUIET)
1694 return;
1695
Ingo Molnar251e1e42009-07-02 08:54:01 +02001696 printk(KERN_DEBUG);
1697
1698 for (i = 0; i < 8; i++)
1699 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1700
1701 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001704__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001706 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001707 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 if (apic_verbosity == APIC_QUIET)
1710 return;
1711
Ingo Molnar251e1e42009-07-02 08:54:01 +02001712 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001714 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001715 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 v = apic_read(APIC_LVR);
1717 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1718 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001719 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 v = apic_read(APIC_TASKPRI);
1722 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1723
Ingo Molnar54168ed2008-08-20 09:07:45 +02001724 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001725 if (!APIC_XAPIC(ver)) {
1726 v = apic_read(APIC_ARBPRI);
1727 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1728 v & APIC_ARBPRI_MASK);
1729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 v = apic_read(APIC_PROCPRI);
1731 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1732 }
1733
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001734 /*
1735 * Remote read supported only in the 82489DX and local APIC for
1736 * Pentium processors.
1737 */
1738 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1739 v = apic_read(APIC_RRR);
1740 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1741 }
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 v = apic_read(APIC_LDR);
1744 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001745 if (!x2apic_enabled()) {
1746 v = apic_read(APIC_DFR);
1747 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 v = apic_read(APIC_SPIV);
1750 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1751
1752 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001753 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001755 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001757 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Ingo Molnar54168ed2008-08-20 09:07:45 +02001759 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1760 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 v = apic_read(APIC_ESR);
1764 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1765 }
1766
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001767 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001768 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1769 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 v = apic_read(APIC_LVTT);
1772 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1773
1774 if (maxlvt > 3) { /* PC is LVT#4. */
1775 v = apic_read(APIC_LVTPC);
1776 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1777 }
1778 v = apic_read(APIC_LVT0);
1779 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1780 v = apic_read(APIC_LVT1);
1781 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1782
1783 if (maxlvt > 2) { /* ERR is LVT#3. */
1784 v = apic_read(APIC_LVTERR);
1785 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1786 }
1787
1788 v = apic_read(APIC_TMICT);
1789 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1790 v = apic_read(APIC_TMCCT);
1791 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1792 v = apic_read(APIC_TDCR);
1793 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001794
1795 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1796 v = apic_read(APIC_EFEAT);
1797 maxlvt = (v >> 16) & 0xff;
1798 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1799 v = apic_read(APIC_ECTRL);
1800 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1801 for (i = 0; i < maxlvt; i++) {
1802 v = apic_read(APIC_EILVTn(i));
1803 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1804 }
1805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 printk("\n");
1807}
1808
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001809__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001811 int cpu;
1812
1813 preempt_disable();
1814 for_each_online_cpu(cpu)
1815 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1816 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001819__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 unsigned int v;
1822 unsigned long flags;
1823
1824 if (apic_verbosity == APIC_QUIET)
1825 return;
1826
1827 printk(KERN_DEBUG "\nprinting PIC contents\n");
1828
1829 spin_lock_irqsave(&i8259A_lock, flags);
1830
1831 v = inb(0xa1) << 8 | inb(0x21);
1832 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1833
1834 v = inb(0xa0) << 8 | inb(0x20);
1835 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1836
Ingo Molnar54168ed2008-08-20 09:07:45 +02001837 outb(0x0b,0xa0);
1838 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001840 outb(0x0a,0xa0);
1841 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 spin_unlock_irqrestore(&i8259A_lock, flags);
1844
1845 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1846
1847 v = inb(0x4d1) << 8 | inb(0x4d0);
1848 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1849}
1850
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001851__apicdebuginit(int) print_all_ICs(void)
1852{
1853 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001854
1855 /* don't print out if apic is not there */
1856 if (!cpu_has_apic || disable_apic)
1857 return 0;
1858
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001859 print_all_local_APICs();
1860 print_IO_APIC();
1861
1862 return 0;
1863}
1864
1865fs_initcall(print_all_ICs);
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Yinghai Luefa25592008-08-19 20:50:36 -07001868/* Where if anywhere is the i8259 connect in external int mode */
1869static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1870
Ingo Molnar54168ed2008-08-20 09:07:45 +02001871void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001874 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001875 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 unsigned long flags;
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 /*
1879 * The number of IO-APIC IRQ registers (== #pins):
1880 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001881 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001883 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001885 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1886 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001887 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001888 int pin;
1889 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001890 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001891 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001892 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001893
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001894 /* If the interrupt line is enabled and in ExtInt mode
1895 * I have found the pin where the i8259 is connected.
1896 */
1897 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1898 ioapic_i8259.apic = apic;
1899 ioapic_i8259.pin = pin;
1900 goto found_i8259;
1901 }
1902 }
1903 }
1904 found_i8259:
1905 /* Look to see what if the MP table has reported the ExtINT */
1906 /* If we could not find the appropriate pin by looking at the ioapic
1907 * the i8259 probably is not connected the ioapic but give the
1908 * mptable a chance anyway.
1909 */
1910 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1911 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1912 /* Trust the MP table if nothing is setup in the hardware */
1913 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1914 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1915 ioapic_i8259.pin = i8259_pin;
1916 ioapic_i8259.apic = i8259_apic;
1917 }
1918 /* Complain if the MP table and the hardware disagree */
1919 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1920 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1921 {
1922 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924
1925 /*
1926 * Do not trust the IO-APIC being empty at bootup
1927 */
1928 clear_IO_APIC();
1929}
1930
1931/*
1932 * Not an __init, needed by the reboot code
1933 */
1934void disable_IO_APIC(void)
1935{
1936 /*
1937 * Clear the IO-APIC before rebooting:
1938 */
1939 clear_IO_APIC();
1940
Eric W. Biederman650927e2005-06-25 14:57:44 -07001941 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001942 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001943 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001944 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001945 *
1946 * With interrupt-remapping, for now we will use virtual wire A mode,
1947 * as virtual wire B is little complex (need to configure both
1948 * IOAPIC RTE aswell as interrupt-remapping table entry).
1949 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001950 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001951 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001952 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001953
1954 memset(&entry, 0, sizeof(entry));
1955 entry.mask = 0; /* Enabled */
1956 entry.trigger = 0; /* Edge */
1957 entry.irr = 0;
1958 entry.polarity = 0; /* High */
1959 entry.delivery_status = 0;
1960 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001961 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001962 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001963 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001964
1965 /*
1966 * Add it to the IO-APIC irq-routing table:
1967 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001968 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001969 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001970
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001971 /*
1972 * Use virtual wire A mode when interrupt remapping is enabled.
1973 */
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04001974 if (cpu_has_apic)
1975 disconnect_bsp_APIC(!intr_remapping_enabled &&
1976 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
Ingo Molnar54168ed2008-08-20 09:07:45 +02001979#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/*
1981 * function to set the IO-APIC physical IDs based on the
1982 * values stored in the MPC table.
1983 *
1984 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1985 */
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987static void __init setup_ioapic_ids_from_mpc(void)
1988{
1989 union IO_APIC_reg_00 reg_00;
1990 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001991 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 int i;
1993 unsigned char old_id;
1994 unsigned long flags;
1995
Yinghai Lua4dbc342008-07-25 02:14:28 -07001996 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07001997 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002000 * Don't check I/O APIC IDs for xAPIC systems. They have
2001 * no meaning without the serial APIC bus.
2002 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002003 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2004 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002005 return;
2006 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * This is broken; anything with a real cpu count has to
2008 * circumvent this idiocy regardless.
2009 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002010 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 /*
2013 * Set the IOAPIC ID to the value stored in the MPC table.
2014 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002015 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 /* Read the register 0 value */
2018 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002019 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002021
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002022 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002024 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002026 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2028 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002029 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /*
2033 * Sanity check, is the ID really free? Every APIC in a
2034 * system must have a unique ID or we get lots of nice
2035 * 'stuck on smp_invalidate_needed IPI wait' messages.
2036 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002037 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002038 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002040 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 for (i = 0; i < get_physical_broadcast(); i++)
2042 if (!physid_isset(i, phys_id_present_map))
2043 break;
2044 if (i >= get_physical_broadcast())
2045 panic("Max APIC ID exceeded!\n");
2046 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2047 i);
2048 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002049 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } else {
2051 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002052 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 apic_printk(APIC_VERBOSE, "Setting %d in the "
2054 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002055 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2057 }
2058
2059
2060 /*
2061 * We need to adjust the IRQ routing table
2062 * if the ID changed.
2063 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002064 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302066 if (mp_irqs[i].dstapic == old_id)
2067 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002068 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 /*
2071 * Read the right value from the MPC table and
2072 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 apic_printk(APIC_VERBOSE, KERN_INFO
2075 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002076 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002078 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002080 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002081 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 /*
2084 * Sanity check
2085 */
2086 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002087 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002089 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 printk("could not set ID!\n");
2091 else
2092 apic_printk(APIC_VERBOSE, " ok.\n");
2093 }
2094}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002095#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002097int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002098
2099static int __init notimercheck(char *s)
2100{
2101 no_timer_check = 1;
2102 return 1;
2103}
2104__setup("no_timer_check", notimercheck);
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106/*
2107 * There is a nasty bug in some older SMP boards, their mptable lies
2108 * about the timer IRQ. We do the following to work around the situation:
2109 *
2110 * - timer IRQ defaults to IO-APIC IRQ
2111 * - if this function detects that timer IRQs are defunct, then we fall
2112 * back to ISA timer IRQs
2113 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002114static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002117 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Zachary Amsden8542b202006-12-07 02:14:09 +01002119 if (no_timer_check)
2120 return 1;
2121
Ingo Molnar4aae0702007-12-18 18:05:58 +01002122 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 local_irq_enable();
2124 /* Let ten ticks pass... */
2125 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002126 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 /*
2129 * Expect a few ticks at least, to be sure some possible
2130 * glue logic does not lock up after one or two first
2131 * ticks in a non-ExtINT mode. Also the local APIC
2132 * might have cached one ExtINT interrupt. Finally, at
2133 * least one tick may be lost due to delays.
2134 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002135
2136 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002137 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return 0;
2140}
2141
2142/*
2143 * In the SMP+IOAPIC case it might happen that there are an unspecified
2144 * number of pending IRQ events unhandled. These cases are very rare,
2145 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2146 * better to do it this way as thus we do not have to be aware of
2147 * 'pending' interrupts in the IRQ path, except at this point.
2148 */
2149/*
2150 * Edge triggered needs to resend any interrupt
2151 * that was delayed but this is now handled in the device
2152 * independent code.
2153 */
2154
2155/*
2156 * Starting up a edge-triggered IO-APIC interrupt is
2157 * nasty - we need to make sure that we get the edge.
2158 * If it is already asserted for some reason, we need
2159 * return 1 to indicate that is was pending.
2160 *
2161 * This is not complete - we should be able to fake
2162 * an edge even if it isn't on the 8259A...
2163 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002164
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002165static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 int was_pending = 0;
2168 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002169 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002172 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 disable_8259A_irq(irq);
2174 if (i8259A_irq_pending(irq))
2175 was_pending = 1;
2176 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002177 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002178 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 spin_unlock_irqrestore(&ioapic_lock, flags);
2180
2181 return was_pending;
2182}
2183
Ingo Molnar54168ed2008-08-20 09:07:45 +02002184#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002185static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002187
2188 struct irq_cfg *cfg = irq_cfg(irq);
2189 unsigned long flags;
2190
2191 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002192 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002193 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002194
2195 return 1;
2196}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002197#else
2198static int ioapic_retrigger_irq(unsigned int irq)
2199{
Ingo Molnardac5f412009-01-28 15:42:24 +01002200 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002201
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002202 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002203}
2204#endif
2205
2206/*
2207 * Level and edge triggered IO-APIC interrupts need different handling,
2208 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2209 * handled with the level-triggered descriptor, but that one has slightly
2210 * more overhead. Level-triggered interrupts cannot be handled with the
2211 * edge-triggered handler, without risking IRQ storms and other ugly
2212 * races.
2213 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002214
Yinghai Lu497c9a12008-08-19 20:50:28 -07002215#ifdef CONFIG_SMP
Gary Hadee85abf82009-04-08 14:07:25 -07002216static void send_cleanup_vector(struct irq_cfg *cfg)
2217{
2218 cpumask_var_t cleanup_mask;
2219
2220 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2221 unsigned int i;
2222 cfg->move_cleanup_count = 0;
2223 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2224 cfg->move_cleanup_count++;
2225 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2226 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2227 } else {
2228 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2229 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
2230 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2231 free_cpumask_var(cleanup_mask);
2232 }
2233 cfg->move_in_progress = 0;
2234}
2235
Ingo Molnar44204712009-05-01 19:02:50 +02002236static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002237{
2238 int apic, pin;
2239 struct irq_pin_list *entry;
2240 u8 vector = cfg->vector;
2241
2242 entry = cfg->irq_2_pin;
2243 for (;;) {
2244 unsigned int reg;
2245
2246 if (!entry)
2247 break;
2248
2249 apic = entry->apic;
2250 pin = entry->pin;
2251 /*
2252 * With interrupt-remapping, destination information comes
2253 * from interrupt-remapping table entry.
2254 */
2255 if (!irq_remapped(irq))
2256 io_apic_write(apic, 0x11 + pin*2, dest);
2257 reg = io_apic_read(apic, 0x10 + pin*2);
2258 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2259 reg |= vector;
2260 io_apic_modify(apic, 0x10 + pin*2, reg);
2261 if (!entry->next)
2262 break;
2263 entry = entry->next;
2264 }
2265}
2266
Ingo Molnar44204712009-05-01 19:02:50 +02002267static int
2268assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
2269
Gary Hadee85abf82009-04-08 14:07:25 -07002270/*
2271 * Either sets desc->affinity to a valid value, and returns
2272 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2273 * leaves desc->affinity untouched.
2274 */
2275static unsigned int
2276set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
2277{
2278 struct irq_cfg *cfg;
2279 unsigned int irq;
2280
2281 if (!cpumask_intersects(mask, cpu_online_mask))
2282 return BAD_APICID;
2283
2284 irq = desc->irq;
2285 cfg = desc->chip_data;
2286 if (assign_irq_vector(irq, cfg, mask))
2287 return BAD_APICID;
2288
Gary Hadee85abf82009-04-08 14:07:25 -07002289 cpumask_copy(desc->affinity, mask);
2290
2291 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2292}
2293
Ingo Molnar44204712009-05-01 19:02:50 +02002294static int
Gary Hadee85abf82009-04-08 14:07:25 -07002295set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2296{
2297 struct irq_cfg *cfg;
2298 unsigned long flags;
2299 unsigned int dest;
2300 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002301 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002302
2303 irq = desc->irq;
2304 cfg = desc->chip_data;
2305
2306 spin_lock_irqsave(&ioapic_lock, flags);
2307 dest = set_desc_affinity(desc, mask);
2308 if (dest != BAD_APICID) {
2309 /* Only the high 8 bits are valid. */
2310 dest = SET_APIC_LOGICAL_ID(dest);
2311 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar44204712009-05-01 19:02:50 +02002312 ret = 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002313 }
2314 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002315
2316 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002317}
2318
Ingo Molnar44204712009-05-01 19:02:50 +02002319static int
Gary Hadee85abf82009-04-08 14:07:25 -07002320set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2321{
2322 struct irq_desc *desc;
2323
2324 desc = irq_to_desc(irq);
2325
Ingo Molnar44204712009-05-01 19:02:50 +02002326 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002327}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002328
2329#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002330
2331/*
2332 * Migrate the IO-APIC irq in the presence of intr-remapping.
2333 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002334 * For both level and edge triggered, irq migration is a simple atomic
2335 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002336 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002337 * For level triggered, we eliminate the io-apic RTE modification (with the
2338 * updated vector information), by using a virtual vector (io-apic pin number).
2339 * Real vector that is used for interrupting cpu will be coming from
2340 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002341 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002342static int
Mike Travise7986732008-12-16 17:33:52 -08002343migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002344{
2345 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002346 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002347 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002348 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002349 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002350
Mike Travis22f65d32008-12-16 17:33:56 -08002351 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002352 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002353
Yinghai Lu3145e942008-12-05 18:58:34 -08002354 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002355 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002356 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002357
Yinghai Lu3145e942008-12-05 18:58:34 -08002358 cfg = desc->chip_data;
2359 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002360 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002361
Ingo Molnardebccb32009-01-28 15:20:18 +01002362 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002363
Ingo Molnar54168ed2008-08-20 09:07:45 +02002364 irte.vector = cfg->vector;
2365 irte.dest_id = IRTE_DEST(dest);
2366
2367 /*
2368 * Modified the IRTE and flushes the Interrupt entry cache.
2369 */
2370 modify_irte(irq, &irte);
2371
Mike Travis22f65d32008-12-16 17:33:56 -08002372 if (cfg->move_in_progress)
2373 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002374
Mike Travis7f7ace02009-01-10 21:58:08 -08002375 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002376
2377 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002378}
2379
Ingo Molnar54168ed2008-08-20 09:07:45 +02002380/*
2381 * Migrates the IRQ destination in the process context.
2382 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002383static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302384 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002385{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002386 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002387}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002388static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302389 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002390{
2391 struct irq_desc *desc = irq_to_desc(irq);
2392
Yinghai Lud5dedd42009-04-27 17:59:21 -07002393 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002394}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002395#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002396static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002397 const struct cpumask *mask)
2398{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002399 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002400}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002401#endif
2402
Yinghai Lu497c9a12008-08-19 20:50:28 -07002403asmlinkage void smp_irq_move_cleanup_interrupt(void)
2404{
2405 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002406
Yinghai Lu497c9a12008-08-19 20:50:28 -07002407 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002408 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002409 irq_enter();
2410
2411 me = smp_processor_id();
2412 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2413 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002414 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002415 struct irq_desc *desc;
2416 struct irq_cfg *cfg;
2417 irq = __get_cpu_var(vector_irq)[vector];
2418
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002419 if (irq == -1)
2420 continue;
2421
Yinghai Lu497c9a12008-08-19 20:50:28 -07002422 desc = irq_to_desc(irq);
2423 if (!desc)
2424 continue;
2425
2426 cfg = irq_cfg(irq);
2427 spin_lock(&desc->lock);
2428 if (!cfg->move_cleanup_count)
2429 goto unlock;
2430
Mike Travis22f65d32008-12-16 17:33:56 -08002431 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002432 goto unlock;
2433
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002434 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2435 /*
2436 * Check if the vector that needs to be cleanedup is
2437 * registered at the cpu's IRR. If so, then this is not
2438 * the best time to clean it up. Lets clean it up in the
2439 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2440 * to myself.
2441 */
2442 if (irr & (1 << (vector % 32))) {
2443 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2444 goto unlock;
2445 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002446 __get_cpu_var(vector_irq)[vector] = -1;
2447 cfg->move_cleanup_count--;
2448unlock:
2449 spin_unlock(&desc->lock);
2450 }
2451
2452 irq_exit();
2453}
2454
Yinghai Lu3145e942008-12-05 18:58:34 -08002455static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002456{
Yinghai Lu3145e942008-12-05 18:58:34 -08002457 struct irq_desc *desc = *descp;
2458 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002459 unsigned vector, me;
2460
Yinghai Lufcef5912009-04-27 17:58:23 -07002461 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002462 return;
2463
2464 vector = ~get_irq_regs()->orig_ax;
2465 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002466
Yinghai Lufcef5912009-04-27 17:58:23 -07002467 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002468 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002469}
2470#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002471static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002472#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002473
Yinghai Lu1d025192008-08-19 20:50:34 -07002474static void ack_apic_edge(unsigned int irq)
2475{
Yinghai Lu3145e942008-12-05 18:58:34 -08002476 struct irq_desc *desc = irq_to_desc(irq);
2477
2478 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002479 move_native_irq(irq);
2480 ack_APIC_irq();
2481}
2482
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002483atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002484
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002485static void ack_apic_level(unsigned int irq)
2486{
Yinghai Lu3145e942008-12-05 18:58:34 -08002487 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002488 unsigned long v;
2489 int i;
Yinghai Lu3145e942008-12-05 18:58:34 -08002490 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002491 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002492
Yinghai Lu3145e942008-12-05 18:58:34 -08002493 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002494#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002495 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002496 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002497 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002498 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002499 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002500#endif
2501
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002502 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002503 * It appears there is an erratum which affects at least version 0x11
2504 * of I/O APIC (that's the 82093AA and cores integrated into various
2505 * chipsets). Under certain conditions a level-triggered interrupt is
2506 * erroneously delivered as edge-triggered one but the respective IRR
2507 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2508 * message but it will never arrive and further interrupts are blocked
2509 * from the source. The exact reason is so far unknown, but the
2510 * phenomenon was observed when two consecutive interrupt requests
2511 * from a given source get delivered to the same CPU and the source is
2512 * temporarily disabled in between.
2513 *
2514 * A workaround is to simulate an EOI message manually. We achieve it
2515 * by setting the trigger mode to edge and then to level when the edge
2516 * trigger mode gets detected in the TMR of a local APIC for a
2517 * level-triggered interrupt. We mask the source for the time of the
2518 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2519 * The idea is from Manfred Spraul. --macro
2520 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002521 cfg = desc->chip_data;
2522 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002523 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002524
Ingo Molnar54168ed2008-08-20 09:07:45 +02002525 /*
2526 * We must acknowledge the irq before we move it or the acknowledge will
2527 * not propagate properly.
2528 */
2529 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002530
Ingo Molnar54168ed2008-08-20 09:07:45 +02002531 /* Now we can move and renable the irq */
2532 if (unlikely(do_unmask_irq)) {
2533 /* Only migrate the irq if the ack has been received.
2534 *
2535 * On rare occasions the broadcast level triggered ack gets
2536 * delayed going to ioapics, and if we reprogram the
2537 * vector while Remote IRR is still set the irq will never
2538 * fire again.
2539 *
2540 * To prevent this scenario we read the Remote IRR bit
2541 * of the ioapic. This has two effects.
2542 * - On any sane system the read of the ioapic will
2543 * flush writes (and acks) going to the ioapic from
2544 * this cpu.
2545 * - We get to see if the ACK has actually been delivered.
2546 *
2547 * Based on failed experiments of reprogramming the
2548 * ioapic entry from outside of irq context starting
2549 * with masking the ioapic entry and then polling until
2550 * Remote IRR was clear before reprogramming the
2551 * ioapic I don't trust the Remote IRR bit to be
2552 * completey accurate.
2553 *
2554 * However there appears to be no other way to plug
2555 * this race, so if the Remote IRR bit is not
2556 * accurate and is causing problems then it is a hardware bug
2557 * and you can go talk to the chipset vendor about it.
2558 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002559 cfg = desc->chip_data;
2560 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002561 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002562 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002563 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002564
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002565 /* Tail end of version 0x11 I/O APIC bug workaround */
Yinghai Lu1d025192008-08-19 20:50:34 -07002566 if (!(v & (1 << (i & 0x1f)))) {
2567 atomic_inc(&irq_mis_count);
2568 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002569 __mask_and_edge_IO_APIC_irq(cfg);
2570 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002571 spin_unlock(&ioapic_lock);
2572 }
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002573}
Yinghai Lu1d025192008-08-19 20:50:34 -07002574
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002575#ifdef CONFIG_INTR_REMAP
Suresh Siddha25629d82009-04-20 13:02:28 -07002576static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2577{
2578 int apic, pin;
2579 struct irq_pin_list *entry;
2580
2581 entry = cfg->irq_2_pin;
2582 for (;;) {
2583
2584 if (!entry)
2585 break;
2586
2587 apic = entry->apic;
2588 pin = entry->pin;
2589 io_apic_eoi(apic, pin);
2590 entry = entry->next;
2591 }
2592}
2593
2594static void
2595eoi_ioapic_irq(struct irq_desc *desc)
2596{
2597 struct irq_cfg *cfg;
2598 unsigned long flags;
2599 unsigned int irq;
2600
2601 irq = desc->irq;
2602 cfg = desc->chip_data;
2603
2604 spin_lock_irqsave(&ioapic_lock, flags);
2605 __eoi_ioapic_irq(irq, cfg);
2606 spin_unlock_irqrestore(&ioapic_lock, flags);
2607}
2608
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002609static void ir_ack_apic_edge(unsigned int irq)
2610{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002611 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002612}
2613
2614static void ir_ack_apic_level(unsigned int irq)
2615{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002616 struct irq_desc *desc = irq_to_desc(irq);
2617
2618 ack_APIC_irq();
2619 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002620}
2621#endif /* CONFIG_INTR_REMAP */
2622
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002623static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002624 .name = "IO-APIC",
2625 .startup = startup_ioapic_irq,
2626 .mask = mask_IO_APIC_irq,
2627 .unmask = unmask_IO_APIC_irq,
2628 .ack = ack_apic_edge,
2629 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002630#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002631 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002632#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002633 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634};
2635
Ingo Molnar54168ed2008-08-20 09:07:45 +02002636static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002637 .name = "IR-IO-APIC",
2638 .startup = startup_ioapic_irq,
2639 .mask = mask_IO_APIC_irq,
2640 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302641#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002642 .ack = ir_ack_apic_edge,
2643 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002644#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002645 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002646#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302647#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002648 .retrigger = ioapic_retrigger_irq,
2649};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651static inline void init_IO_APIC_traps(void)
2652{
2653 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002654 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002655 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 /*
2658 * NOTE! The local APIC isn't very good at handling
2659 * multiple interrupts at the same interrupt level.
2660 * As the interrupt level is determined by taking the
2661 * vector number and shifting that right by 4, we
2662 * want to spread these out a bit so that they don't
2663 * all fall in the same interrupt level.
2664 *
2665 * Also, we've got to be careful not to trash gate
2666 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2667 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002668 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002669 cfg = desc->chip_data;
2670 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 /*
2672 * Hmm.. We don't have an entry for this,
2673 * so default to an old-fashioned 8259
2674 * interrupt if we can..
2675 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002676 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002678 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002680 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 }
2682 }
2683}
2684
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002685/*
2686 * The local APIC irq-chip implementation:
2687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002689static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 unsigned long v;
2692
2693 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002694 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
2696
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002697static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002699 unsigned long v;
2700
2701 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002702 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703}
2704
Yinghai Lu3145e942008-12-05 18:58:34 -08002705static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002706{
2707 ack_APIC_irq();
2708}
2709
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002710static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002711 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002712 .mask = mask_lapic_irq,
2713 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002714 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715};
2716
Yinghai Lu3145e942008-12-05 18:58:34 -08002717static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002718{
Yinghai Lu08678b02008-08-19 20:50:05 -07002719 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002720 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2721 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002722}
2723
Jan Beuliche9427102008-01-30 13:31:24 +01002724static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725{
2726 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002727 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 * We put the 8259A master into AEOI mode and
2729 * unmask on all local APICs LVT0 as NMI.
2730 *
2731 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2732 * is from Maciej W. Rozycki - so we do not have to EOI from
2733 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2736
Jan Beuliche9427102008-01-30 13:31:24 +01002737 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
2739 apic_printk(APIC_VERBOSE, " done.\n");
2740}
2741
2742/*
2743 * This looks a bit hackish but it's about the only one way of sending
2744 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2745 * not support the ExtINT mode, unfortunately. We need to send these
2746 * cycles as some i82489DX-based boards have glue logic that keeps the
2747 * 8259A interrupt line asserted until INTA. --macro
2748 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002749static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002751 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 struct IO_APIC_route_entry entry0, entry1;
2753 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002755 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002756 if (pin == -1) {
2757 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002759 }
2760 apic = find_isa_irq_apic(8, mp_INT);
2761 if (apic == -1) {
2762 WARN_ON_ONCE(1);
2763 return;
2764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Andi Kleencf4c6a22006-09-26 10:52:30 +02002766 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002767 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 memset(&entry1, 0, sizeof(entry1));
2770
2771 entry1.dest_mode = 0; /* physical delivery */
2772 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002773 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 entry1.delivery_mode = dest_ExtINT;
2775 entry1.polarity = entry0.polarity;
2776 entry1.trigger = 0;
2777 entry1.vector = 0;
2778
Andi Kleencf4c6a22006-09-26 10:52:30 +02002779 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
2781 save_control = CMOS_READ(RTC_CONTROL);
2782 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2783 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2784 RTC_FREQ_SELECT);
2785 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2786
2787 i = 100;
2788 while (i-- > 0) {
2789 mdelay(10);
2790 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2791 i -= 10;
2792 }
2793
2794 CMOS_WRITE(save_control, RTC_CONTROL);
2795 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002796 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Andi Kleencf4c6a22006-09-26 10:52:30 +02002798 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799}
2800
Yinghai Luefa25592008-08-19 20:50:36 -07002801static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002802/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002803static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002804{
2805 disable_timer_pin_1 = 1;
2806 return 0;
2807}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002808early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002809
2810int timer_through_8259 __initdata;
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812/*
2813 * This code may look a bit paranoid, but it's supposed to cooperate with
2814 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2815 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2816 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002817 *
2818 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002820static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
Yinghai Lu3145e942008-12-05 18:58:34 -08002822 struct irq_desc *desc = irq_to_desc(0);
2823 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002824 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002825 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002826 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002827 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002828
2829 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 /*
2832 * get/set the timer IRQ vector:
2833 */
2834 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002835 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002838 * As IRQ0 is to be enabled in the 8259A, the virtual
2839 * wire has to be disabled in the local APIC. Also
2840 * timer interrupts need to be acknowledged manually in
2841 * the 8259A for the i82489DX when using the NMI
2842 * watchdog as that APIC treats NMIs as level-triggered.
2843 * The AEOI mode will finish them in the 8259A
2844 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002846 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002848#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002849 {
2850 unsigned int ver;
2851
2852 ver = apic_read(APIC_LVR);
2853 ver = GET_APIC_VERSION(ver);
2854 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2855 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002858 pin1 = find_isa_irq_pin(0, mp_INT);
2859 apic1 = find_isa_irq_apic(0, mp_INT);
2860 pin2 = ioapic_i8259.pin;
2861 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002863 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2864 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002865 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002867 /*
2868 * Some BIOS writers are clueless and report the ExtINTA
2869 * I/O APIC input from the cascaded 8259A as the timer
2870 * interrupt input. So just in case, if only one pin
2871 * was found above, try it both directly and through the
2872 * 8259A.
2873 */
2874 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002875 if (intr_remapping_enabled)
2876 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002877 pin1 = pin2;
2878 apic1 = apic2;
2879 no_pin1 = 1;
2880 } else if (pin2 == -1) {
2881 pin2 = pin1;
2882 apic2 = apic1;
2883 }
2884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (pin1 != -1) {
2886 /*
2887 * Ok, does IRQ0 through the IOAPIC work?
2888 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002889 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002890 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002891 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002892 } else {
2893 /* for edge trigger, setup_IO_APIC_irq already
2894 * leave it unmasked.
2895 * so only need to unmask if it is level-trigger
2896 * do we really have level trigger timer?
2897 */
2898 int idx;
2899 idx = find_irq_entry(apic1, pin1, mp_INT);
2900 if (idx != -1 && irq_trigger(idx))
2901 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (timer_irq_works()) {
2904 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 setup_nmi();
2906 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002908 if (disable_timer_pin_1 > 0)
2909 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002912 if (intr_remapping_enabled)
2913 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002914 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002915 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002916 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002917 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2918 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002920 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2921 "(IRQ0) through the 8259A ...\n");
2922 apic_printk(APIC_QUIET, KERN_INFO
2923 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 /*
2925 * legacy devices should be connected to IO APIC #0
2926 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002927 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002928 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002929 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002931 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002932 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002934 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002936 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002938 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 }
2940 /*
2941 * Cleanup, just in case ...
2942 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002943 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002944 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002945 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002946 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002950 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2951 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002952 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002954#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002955 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002956#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002958 apic_printk(APIC_QUIET, KERN_INFO
2959 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Yinghai Lu3145e942008-12-05 18:58:34 -08002961 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002962 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 enable_8259A_irq(0);
2964
2965 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002966 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002967 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002969 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002970 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002971 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002972 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002974 apic_printk(APIC_QUIET, KERN_INFO
2975 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 init_8259A(0);
2978 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002979 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 unlock_ExtINT_logic();
2982
2983 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002984 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002985 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002987 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002988 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002990 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002991out:
2992 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
2995/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002996 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2997 * to devices. However there may be an I/O APIC pin available for
2998 * this interrupt regardless. The pin may be left unconnected, but
2999 * typically it will be reused as an ExtINT cascade interrupt for
3000 * the master 8259A. In the MPS case such a pin will normally be
3001 * reported as an ExtINT interrupt in the MP table. With ACPI
3002 * there is no provision for ExtINT interrupts, and in the absence
3003 * of an override it would be treated as an ordinary ISA I/O APIC
3004 * interrupt, that is edge-triggered and unmasked by default. We
3005 * used to do this, but it caused problems on some systems because
3006 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3007 * the same ExtINT cascade interrupt to drive the local APIC of the
3008 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3009 * the I/O APIC in all cases now. No actual device should request
3010 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 */
3012#define PIC_IRQS (1 << PIC_CASCADE_IR)
3013
3014void __init setup_IO_APIC(void)
3015{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003016
Ingo Molnar54168ed2008-08-20 09:07:45 +02003017 /*
3018 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003021 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Ingo Molnar54168ed2008-08-20 09:07:45 +02003023 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003024 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003025 * Set up IO-APIC IRQ routing.
3026 */
3027#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003028 if (!acpi_ioapic)
3029 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003030#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 sync_Arb_IDs();
3032 setup_IO_APIC_irqs();
3033 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003034 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
3037/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003038 * Called after all the initialization is done. If we didnt find any
3039 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042static int __init io_apic_bug_finalize(void)
3043{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003044 if (sis_apic_bug == -1)
3045 sis_apic_bug = 0;
3046 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047}
3048
3049late_initcall(io_apic_bug_finalize);
3050
3051struct sysfs_ioapic_data {
3052 struct sys_device dev;
3053 struct IO_APIC_route_entry entry[0];
3054};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003055static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Pavel Machek438510f2005-04-16 15:25:24 -07003057static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
3059 struct IO_APIC_route_entry *entry;
3060 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 data = container_of(dev, struct sysfs_ioapic_data, dev);
3064 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003065 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3066 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
3068 return 0;
3069}
3070
3071static int ioapic_resume(struct sys_device *dev)
3072{
3073 struct IO_APIC_route_entry *entry;
3074 struct sysfs_ioapic_data *data;
3075 unsigned long flags;
3076 union IO_APIC_reg_00 reg_00;
3077 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 data = container_of(dev, struct sysfs_ioapic_data, dev);
3080 entry = data->entry;
3081
3082 spin_lock_irqsave(&ioapic_lock, flags);
3083 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303084 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3085 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 io_apic_write(dev->id, 0, reg_00.raw);
3087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003089 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003090 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
3092 return 0;
3093}
3094
3095static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003096 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 .suspend = ioapic_suspend,
3098 .resume = ioapic_resume,
3099};
3100
3101static int __init ioapic_init_sysfs(void)
3102{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003103 struct sys_device * dev;
3104 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 error = sysdev_class_register(&ioapic_sysdev_class);
3107 if (error)
3108 return error;
3109
Ingo Molnar54168ed2008-08-20 09:07:45 +02003110 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003111 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003113 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 if (!mp_ioapic_data[i]) {
3115 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3116 continue;
3117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003119 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 dev->cls = &ioapic_sysdev_class;
3121 error = sysdev_register(dev);
3122 if (error) {
3123 kfree(mp_ioapic_data[i]);
3124 mp_ioapic_data[i] = NULL;
3125 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3126 continue;
3127 }
3128 }
3129
3130 return 0;
3131}
3132
3133device_initcall(ioapic_init_sysfs);
3134
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003135static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003136/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003137 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003138 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003139unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003140{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003141 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003142 unsigned int irq;
3143 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003144 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003145 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003146 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003147
3148 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003149 if (irq_want < nr_irqs_gsi)
3150 irq_want = nr_irqs_gsi;
3151
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003152 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003153 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003154 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003155 if (!desc_new) {
3156 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003157 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003158 }
3159 cfg_new = desc_new->chip_data;
3160
3161 if (cfg_new->vector != 0)
3162 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003163
Yinghai Lu15e957d2009-04-30 01:17:50 -07003164 desc_new = move_irq_desc(desc_new, node);
Yinghai Lud047f53a2009-04-27 18:02:23 -07003165
Ingo Molnarfe402e12009-01-28 04:32:51 +01003166 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003167 irq = new;
3168 break;
3169 }
3170 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003171
Yinghai Lu199751d2008-08-19 20:50:27 -07003172 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003173 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003174 /* restore it, in case dynamic_irq_init clear it */
3175 if (desc_new)
3176 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003177 }
3178 return irq;
3179}
3180
Yinghai Lu199751d2008-08-19 20:50:27 -07003181int create_irq(void)
3182{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003183 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003184 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003185 int irq;
3186
Yinghai Lube5d5352008-12-05 18:58:33 -08003187 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003188 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003189
3190 if (irq == 0)
3191 irq = -1;
3192
3193 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003194}
3195
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003196void destroy_irq(unsigned int irq)
3197{
3198 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003199 struct irq_cfg *cfg;
3200 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003201
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003202 /* store it, in case dynamic_irq_cleanup clear it */
3203 desc = irq_to_desc(irq);
3204 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003205 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003206 /* connect back irq_cfg */
3207 if (desc)
3208 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003209
Ingo Molnar54168ed2008-08-20 09:07:45 +02003210 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003211 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003212 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003213 spin_unlock_irqrestore(&vector_lock, flags);
3214}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003215
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003216/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003217 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003218 */
3219#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003220static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003221{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003222 struct irq_cfg *cfg;
3223 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003224 unsigned dest;
3225
Jan Beulichf1182632009-01-14 12:27:35 +00003226 if (disable_apic)
3227 return -ENXIO;
3228
Yinghai Lu3145e942008-12-05 18:58:34 -08003229 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003230 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003231 if (err)
3232 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003233
Ingo Molnardebccb32009-01-28 15:20:18 +01003234 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003235
Ingo Molnar54168ed2008-08-20 09:07:45 +02003236 if (irq_remapped(irq)) {
3237 struct irte irte;
3238 int ir_index;
3239 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003240
Ingo Molnar54168ed2008-08-20 09:07:45 +02003241 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3242 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003243
Ingo Molnar54168ed2008-08-20 09:07:45 +02003244 memset (&irte, 0, sizeof(irte));
3245
3246 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003247 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003248 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003249 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003250 irte.vector = cfg->vector;
3251 irte.dest_id = IRTE_DEST(dest);
3252
Weidong Hanf007e992009-05-23 00:41:15 +08003253 /* Set source-id of interrupt request */
3254 set_msi_sid(&irte, pdev);
3255
Ingo Molnar54168ed2008-08-20 09:07:45 +02003256 modify_irte(irq, &irte);
3257
3258 msg->address_hi = MSI_ADDR_BASE_HI;
3259 msg->data = sub_handle;
3260 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3261 MSI_ADDR_IR_SHV |
3262 MSI_ADDR_IR_INDEX1(ir_index) |
3263 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003264 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003265 if (x2apic_enabled())
3266 msg->address_hi = MSI_ADDR_BASE_HI |
3267 MSI_ADDR_EXT_DEST_ID(dest);
3268 else
3269 msg->address_hi = MSI_ADDR_BASE_HI;
3270
Ingo Molnar54168ed2008-08-20 09:07:45 +02003271 msg->address_lo =
3272 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003273 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003274 MSI_ADDR_DEST_MODE_PHYSICAL:
3275 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003276 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003277 MSI_ADDR_REDIRECTION_CPU:
3278 MSI_ADDR_REDIRECTION_LOWPRI) |
3279 MSI_ADDR_DEST_ID(dest);
3280
3281 msg->data =
3282 MSI_DATA_TRIGGER_EDGE |
3283 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003284 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003285 MSI_DATA_DELIVERY_FIXED:
3286 MSI_DATA_DELIVERY_LOWPRI) |
3287 MSI_DATA_VECTOR(cfg->vector);
3288 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003289 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003290}
3291
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003292#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003293static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003294{
Yinghai Lu3145e942008-12-05 18:58:34 -08003295 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003296 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003297 struct msi_msg msg;
3298 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003299
Mike Travis22f65d32008-12-16 17:33:56 -08003300 dest = set_desc_affinity(desc, mask);
3301 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003302 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003303
Yinghai Lu3145e942008-12-05 18:58:34 -08003304 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003305
Yinghai Lu3145e942008-12-05 18:58:34 -08003306 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003307
3308 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003309 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003310 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3311 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3312
Yinghai Lu3145e942008-12-05 18:58:34 -08003313 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003314
3315 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003316}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003317#ifdef CONFIG_INTR_REMAP
3318/*
3319 * Migrate the MSI irq to another cpumask. This migration is
3320 * done in the process context using interrupt-remapping hardware.
3321 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003322static int
Mike Travise7986732008-12-16 17:33:52 -08003323ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003324{
Yinghai Lu3145e942008-12-05 18:58:34 -08003325 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003326 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003327 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003328 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003329
3330 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003331 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003332
Mike Travis22f65d32008-12-16 17:33:56 -08003333 dest = set_desc_affinity(desc, mask);
3334 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003335 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003336
Ingo Molnar54168ed2008-08-20 09:07:45 +02003337 irte.vector = cfg->vector;
3338 irte.dest_id = IRTE_DEST(dest);
3339
3340 /*
3341 * atomically update the IRTE with the new destination and vector.
3342 */
3343 modify_irte(irq, &irte);
3344
3345 /*
3346 * After this point, all the interrupts will start arriving
3347 * at the new destination. So, time to cleanup the previous
3348 * vector allocation.
3349 */
Mike Travis22f65d32008-12-16 17:33:56 -08003350 if (cfg->move_in_progress)
3351 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003352
3353 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003354}
Yinghai Lu3145e942008-12-05 18:58:34 -08003355
Ingo Molnar54168ed2008-08-20 09:07:45 +02003356#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003357#endif /* CONFIG_SMP */
3358
3359/*
3360 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3361 * which implement the MSI or MSI-X Capability Structure.
3362 */
3363static struct irq_chip msi_chip = {
3364 .name = "PCI-MSI",
3365 .unmask = unmask_msi_irq,
3366 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003367 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003368#ifdef CONFIG_SMP
3369 .set_affinity = set_msi_irq_affinity,
3370#endif
3371 .retrigger = ioapic_retrigger_irq,
3372};
3373
Ingo Molnar54168ed2008-08-20 09:07:45 +02003374static struct irq_chip msi_ir_chip = {
3375 .name = "IR-PCI-MSI",
3376 .unmask = unmask_msi_irq,
3377 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303378#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003379 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003380#ifdef CONFIG_SMP
3381 .set_affinity = ir_set_msi_irq_affinity,
3382#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303383#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003384 .retrigger = ioapic_retrigger_irq,
3385};
3386
3387/*
3388 * Map the PCI dev to the corresponding remapping hardware unit
3389 * and allocate 'nvec' consecutive interrupt-remapping table entries
3390 * in it.
3391 */
3392static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3393{
3394 struct intel_iommu *iommu;
3395 int index;
3396
3397 iommu = map_dev_to_ir(dev);
3398 if (!iommu) {
3399 printk(KERN_ERR
3400 "Unable to map PCI %s to iommu\n", pci_name(dev));
3401 return -ENOENT;
3402 }
3403
3404 index = alloc_irte(iommu, irq, nvec);
3405 if (index < 0) {
3406 printk(KERN_ERR
3407 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003408 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003409 return -ENOSPC;
3410 }
3411 return index;
3412}
Yinghai Lu1d025192008-08-19 20:50:34 -07003413
Yinghai Lu3145e942008-12-05 18:58:34 -08003414static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003415{
3416 int ret;
3417 struct msi_msg msg;
3418
3419 ret = msi_compose_msg(dev, irq, &msg);
3420 if (ret < 0)
3421 return ret;
3422
Yinghai Lu3145e942008-12-05 18:58:34 -08003423 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003424 write_msi_msg(irq, &msg);
3425
Ingo Molnar54168ed2008-08-20 09:07:45 +02003426 if (irq_remapped(irq)) {
3427 struct irq_desc *desc = irq_to_desc(irq);
3428 /*
3429 * irq migration in process context
3430 */
3431 desc->status |= IRQ_MOVE_PCNTXT;
3432 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3433 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003434 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003435
Yinghai Luc81bba42008-09-25 11:53:11 -07003436 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3437
Yinghai Lu1d025192008-08-19 20:50:34 -07003438 return 0;
3439}
3440
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003441int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3442{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003443 unsigned int irq;
3444 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003445 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003446 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003447 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003448 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003449 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003450
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003451 /* x86 doesn't support multiple MSI yet */
3452 if (type == PCI_CAP_ID_MSI && nvec > 1)
3453 return 1;
3454
Yinghai Lud047f53a2009-04-27 18:02:23 -07003455 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003456 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003457 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003458 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003459 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003460 if (irq == 0)
3461 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003462 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003463 if (!intr_remapping_enabled)
3464 goto no_ir;
3465
3466 if (!sub_handle) {
3467 /*
3468 * allocate the consecutive block of IRTE's
3469 * for 'nvec'
3470 */
3471 index = msi_alloc_irte(dev, irq, nvec);
3472 if (index < 0) {
3473 ret = index;
3474 goto error;
3475 }
3476 } else {
3477 iommu = map_dev_to_ir(dev);
3478 if (!iommu) {
3479 ret = -ENOENT;
3480 goto error;
3481 }
3482 /*
3483 * setup the mapping between the irq and the IRTE
3484 * base index, the sub_handle pointing to the
3485 * appropriate interrupt remap table entry.
3486 */
3487 set_irte_irq(irq, iommu, index, sub_handle);
3488 }
3489no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003490 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003491 if (ret < 0)
3492 goto error;
3493 sub_handle++;
3494 }
3495 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003496
3497error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003498 destroy_irq(irq);
3499 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003500}
3501
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003502void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003503{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003504 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003505}
3506
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003507#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003508#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003509static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003510{
Yinghai Lu3145e942008-12-05 18:58:34 -08003511 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003512 struct irq_cfg *cfg;
3513 struct msi_msg msg;
3514 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003515
Mike Travis22f65d32008-12-16 17:33:56 -08003516 dest = set_desc_affinity(desc, mask);
3517 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003518 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003519
Yinghai Lu3145e942008-12-05 18:58:34 -08003520 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521
3522 dmar_msi_read(irq, &msg);
3523
3524 msg.data &= ~MSI_DATA_VECTOR_MASK;
3525 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3526 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3527 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3528
3529 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003530
3531 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003532}
Yinghai Lu3145e942008-12-05 18:58:34 -08003533
Ingo Molnar54168ed2008-08-20 09:07:45 +02003534#endif /* CONFIG_SMP */
3535
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003536static struct irq_chip dmar_msi_type = {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003537 .name = "DMAR_MSI",
3538 .unmask = dmar_msi_unmask,
3539 .mask = dmar_msi_mask,
3540 .ack = ack_apic_edge,
3541#ifdef CONFIG_SMP
3542 .set_affinity = dmar_msi_set_affinity,
3543#endif
3544 .retrigger = ioapic_retrigger_irq,
3545};
3546
3547int arch_setup_dmar_msi(unsigned int irq)
3548{
3549 int ret;
3550 struct msi_msg msg;
3551
3552 ret = msi_compose_msg(NULL, irq, &msg);
3553 if (ret < 0)
3554 return ret;
3555 dmar_msi_write(irq, &msg);
3556 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3557 "edge");
3558 return 0;
3559}
3560#endif
3561
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003562#ifdef CONFIG_HPET_TIMER
3563
3564#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003565static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003566{
Yinghai Lu3145e942008-12-05 18:58:34 -08003567 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003568 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003569 struct msi_msg msg;
3570 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003571
Mike Travis22f65d32008-12-16 17:33:56 -08003572 dest = set_desc_affinity(desc, mask);
3573 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003574 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003575
Yinghai Lu3145e942008-12-05 18:58:34 -08003576 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003577
3578 hpet_msi_read(irq, &msg);
3579
3580 msg.data &= ~MSI_DATA_VECTOR_MASK;
3581 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3582 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3583 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3584
3585 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003586
3587 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003588}
Yinghai Lu3145e942008-12-05 18:58:34 -08003589
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003590#endif /* CONFIG_SMP */
3591
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003592static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003593 .name = "HPET_MSI",
3594 .unmask = hpet_msi_unmask,
3595 .mask = hpet_msi_mask,
3596 .ack = ack_apic_edge,
3597#ifdef CONFIG_SMP
3598 .set_affinity = hpet_msi_set_affinity,
3599#endif
3600 .retrigger = ioapic_retrigger_irq,
3601};
3602
3603int arch_setup_hpet_msi(unsigned int irq)
3604{
3605 int ret;
3606 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003607 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003608
3609 ret = msi_compose_msg(NULL, irq, &msg);
3610 if (ret < 0)
3611 return ret;
3612
3613 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003614 desc->status |= IRQ_MOVE_PCNTXT;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003615 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3616 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003617
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003618 return 0;
3619}
3620#endif
3621
Ingo Molnar54168ed2008-08-20 09:07:45 +02003622#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003623/*
3624 * Hypertransport interrupt support
3625 */
3626#ifdef CONFIG_HT_IRQ
3627
3628#ifdef CONFIG_SMP
3629
Yinghai Lu497c9a12008-08-19 20:50:28 -07003630static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003631{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003632 struct ht_irq_msg msg;
3633 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003634
Yinghai Lu497c9a12008-08-19 20:50:28 -07003635 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003636 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003637
Yinghai Lu497c9a12008-08-19 20:50:28 -07003638 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003639 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003640
Eric W. Biedermanec683072006-11-08 17:44:57 -08003641 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003642}
3643
Yinghai Lud5dedd42009-04-27 17:59:21 -07003644static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003645{
Yinghai Lu3145e942008-12-05 18:58:34 -08003646 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003647 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003648 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003649
Mike Travis22f65d32008-12-16 17:33:56 -08003650 dest = set_desc_affinity(desc, mask);
3651 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003652 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003653
Yinghai Lu3145e942008-12-05 18:58:34 -08003654 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003655
Yinghai Lu497c9a12008-08-19 20:50:28 -07003656 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003657
3658 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003659}
Yinghai Lu3145e942008-12-05 18:58:34 -08003660
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003661#endif
3662
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003663static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003664 .name = "PCI-HT",
3665 .mask = mask_ht_irq,
3666 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003667 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668#ifdef CONFIG_SMP
3669 .set_affinity = set_ht_irq_affinity,
3670#endif
3671 .retrigger = ioapic_retrigger_irq,
3672};
3673
3674int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3675{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003676 struct irq_cfg *cfg;
3677 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003678
Jan Beulichf1182632009-01-14 12:27:35 +00003679 if (disable_apic)
3680 return -ENXIO;
3681
Yinghai Lu3145e942008-12-05 18:58:34 -08003682 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003683 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003684 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003685 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003686 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003687
Ingo Molnardebccb32009-01-28 15:20:18 +01003688 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3689 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003690
Eric W. Biedermanec683072006-11-08 17:44:57 -08003691 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003692
Eric W. Biedermanec683072006-11-08 17:44:57 -08003693 msg.address_lo =
3694 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003695 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003696 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003697 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003698 HT_IRQ_LOW_DM_PHYSICAL :
3699 HT_IRQ_LOW_DM_LOGICAL) |
3700 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003701 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003702 HT_IRQ_LOW_MT_FIXED :
3703 HT_IRQ_LOW_MT_ARBITRATED) |
3704 HT_IRQ_LOW_IRQ_MASKED;
3705
Eric W. Biedermanec683072006-11-08 17:44:57 -08003706 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003707
Ingo Molnara460e742006-10-17 00:10:03 -07003708 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3709 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003710
3711 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003712 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003713 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003714}
3715#endif /* CONFIG_HT_IRQ */
3716
Nick Piggin03b48632009-01-20 04:36:04 +01003717#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003718/*
3719 * Re-target the irq to the specified CPU and enable the specified MMR located
3720 * on the specified blade to allow the sending of MSIs to the specified CPU.
3721 */
3722int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3723 unsigned long mmr_offset)
3724{
Mike Travis22f65d32008-12-16 17:33:56 -08003725 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003726 struct irq_cfg *cfg;
3727 int mmr_pnode;
3728 unsigned long mmr_value;
3729 struct uv_IO_APIC_route_entry *entry;
3730 unsigned long flags;
3731 int err;
3732
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003733 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3734
Yinghai Lu3145e942008-12-05 18:58:34 -08003735 cfg = irq_cfg(irq);
3736
Mike Travise7986732008-12-16 17:33:52 -08003737 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003738 if (err != 0)
3739 return err;
3740
3741 spin_lock_irqsave(&vector_lock, flags);
3742 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3743 irq_name);
3744 spin_unlock_irqrestore(&vector_lock, flags);
3745
Dean Nelson4173a0e2008-10-02 12:18:21 -05003746 mmr_value = 0;
3747 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003748 entry->vector = cfg->vector;
3749 entry->delivery_mode = apic->irq_delivery_mode;
3750 entry->dest_mode = apic->irq_dest_mode;
3751 entry->polarity = 0;
3752 entry->trigger = 0;
3753 entry->mask = 0;
3754 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003755
3756 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3757 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3758
3759 return irq;
3760}
3761
3762/*
3763 * Disable the specified MMR located on the specified blade so that MSIs are
3764 * longer allowed to be sent.
3765 */
3766void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3767{
3768 unsigned long mmr_value;
3769 struct uv_IO_APIC_route_entry *entry;
3770 int mmr_pnode;
3771
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003772 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3773
Dean Nelson4173a0e2008-10-02 12:18:21 -05003774 mmr_value = 0;
3775 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003776 entry->mask = 1;
3777
3778 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3779 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3780}
3781#endif /* CONFIG_X86_64 */
3782
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003783int __init io_apic_get_redir_entries (int ioapic)
3784{
3785 union IO_APIC_reg_01 reg_01;
3786 unsigned long flags;
3787
3788 spin_lock_irqsave(&ioapic_lock, flags);
3789 reg_01.raw = io_apic_read(ioapic, 1);
3790 spin_unlock_irqrestore(&ioapic_lock, flags);
3791
3792 return reg_01.bits.entries;
3793}
3794
Yinghai Lube5d5352008-12-05 18:58:33 -08003795void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003796{
Yinghai Lube5d5352008-12-05 18:58:33 -08003797 int nr = 0;
3798
Yinghai Lucc6c5002009-02-08 16:18:03 -08003799 nr = acpi_probe_gsi();
3800 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003801 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003802 } else {
3803 /* for acpi=off or acpi is not compiled in */
3804 int idx;
3805
3806 nr = 0;
3807 for (idx = 0; idx < nr_ioapics; idx++)
3808 nr += io_apic_get_redir_entries(idx) + 1;
3809
3810 if (nr > nr_irqs_gsi)
3811 nr_irqs_gsi = nr;
3812 }
3813
3814 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003815}
3816
Yinghai Lu4a046d12009-01-12 17:39:24 -08003817#ifdef CONFIG_SPARSE_IRQ
3818int __init arch_probe_nr_irqs(void)
3819{
3820 int nr;
3821
Yinghai Luf1ee5542009-02-08 16:18:03 -08003822 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3823 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003824
Yinghai Luf1ee5542009-02-08 16:18:03 -08003825 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3826#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3827 /*
3828 * for MSI and HT dyn irq
3829 */
3830 nr += nr_irqs_gsi * 16;
3831#endif
3832 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003833 nr_irqs = nr;
3834
3835 return 0;
3836}
3837#endif
3838
Yinghai Lue5198072009-05-15 13:05:16 -07003839static int __io_apic_set_pci_routing(struct device *dev, int irq,
3840 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003841{
3842 struct irq_desc *desc;
3843 struct irq_cfg *cfg;
3844 int node;
Yinghai Lue5198072009-05-15 13:05:16 -07003845 int ioapic, pin;
3846 int trigger, polarity;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003847
Yinghai Lue5198072009-05-15 13:05:16 -07003848 ioapic = irq_attr->ioapic;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003849 if (!IO_APIC_IRQ(irq)) {
3850 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3851 ioapic);
3852 return -EINVAL;
3853 }
3854
3855 if (dev)
3856 node = dev_to_node(dev);
3857 else
3858 node = cpu_to_node(boot_cpu_id);
3859
3860 desc = irq_to_desc_alloc_node(irq, node);
3861 if (!desc) {
3862 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3863 return 0;
3864 }
3865
Yinghai Lue5198072009-05-15 13:05:16 -07003866 pin = irq_attr->ioapic_pin;
3867 trigger = irq_attr->trigger;
3868 polarity = irq_attr->polarity;
3869
Yinghai Lu5ef21832009-05-06 10:08:50 -07003870 /*
3871 * IRQs < 16 are already in the irq_2_pin[] map
3872 */
3873 if (irq >= NR_IRQS_LEGACY) {
3874 cfg = desc->chip_data;
3875 add_pin_to_irq_node(cfg, node, ioapic, pin);
3876 }
3877
Yinghai Lue5198072009-05-15 13:05:16 -07003878 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003879
3880 return 0;
3881}
3882
Yinghai Lue5198072009-05-15 13:05:16 -07003883int io_apic_set_pci_routing(struct device *dev, int irq,
3884 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003885{
Yinghai Lue5198072009-05-15 13:05:16 -07003886 int ioapic, pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003887 /*
3888 * Avoid pin reprogramming. PRTs typically include entries
3889 * with redundant pin->gsi mappings (but unique PCI devices);
3890 * we only program the IOAPIC on the first.
3891 */
Yinghai Lue5198072009-05-15 13:05:16 -07003892 ioapic = irq_attr->ioapic;
3893 pin = irq_attr->ioapic_pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003894 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3895 pr_debug("Pin %d-%d already programmed\n",
3896 mp_ioapics[ioapic].apicid, pin);
3897 return 0;
3898 }
3899 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3900
Yinghai Lue5198072009-05-15 13:05:16 -07003901 return __io_apic_set_pci_routing(dev, irq, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003902}
3903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003905 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 -------------------------------------------------------------------------- */
3907
Len Brown888ba6c2005-08-24 12:07:20 -04003908#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Ingo Molnar54168ed2008-08-20 09:07:45 +02003910#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003911int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912{
3913 union IO_APIC_reg_00 reg_00;
3914 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3915 physid_mask_t tmp;
3916 unsigned long flags;
3917 int i = 0;
3918
3919 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003920 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3921 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003923 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3925 * advantage of new APIC bus architecture.
3926 */
3927
3928 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003929 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931 spin_lock_irqsave(&ioapic_lock, flags);
3932 reg_00.raw = io_apic_read(ioapic, 0);
3933 spin_unlock_irqrestore(&ioapic_lock, flags);
3934
3935 if (apic_id >= get_physical_broadcast()) {
3936 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3937 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3938 apic_id = reg_00.bits.ID;
3939 }
3940
3941 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003942 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 * 'stuck on smp_invalidate_needed IPI wait' messages.
3944 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003945 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
3947 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003948 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 break;
3950 }
3951
3952 if (i == get_physical_broadcast())
3953 panic("Max apic_id exceeded!\n");
3954
3955 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3956 "trying %d\n", ioapic, apic_id, i);
3957
3958 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Ingo Molnar80587142009-01-28 06:50:47 +01003961 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 physids_or(apic_id_map, apic_id_map, tmp);
3963
3964 if (reg_00.bits.ID != apic_id) {
3965 reg_00.bits.ID = apic_id;
3966
3967 spin_lock_irqsave(&ioapic_lock, flags);
3968 io_apic_write(ioapic, 0, reg_00.raw);
3969 reg_00.raw = io_apic_read(ioapic, 0);
3970 spin_unlock_irqrestore(&ioapic_lock, flags);
3971
3972 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003973 if (reg_00.bits.ID != apic_id) {
3974 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3975 return -1;
3976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
3978
3979 apic_printk(APIC_VERBOSE, KERN_INFO
3980 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3981
3982 return apic_id;
3983}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00003984#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003986int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{
3988 union IO_APIC_reg_01 reg_01;
3989 unsigned long flags;
3990
3991 spin_lock_irqsave(&ioapic_lock, flags);
3992 reg_01.raw = io_apic_read(ioapic, 1);
3993 spin_unlock_irqrestore(&ioapic_lock, flags);
3994
3995 return reg_01.bits.version;
3996}
3997
Shaohua Li61fd47e2007-11-17 01:05:28 -05003998int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3999{
4000 int i;
4001
4002 if (skip_ioapic_setup)
4003 return -1;
4004
4005 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304006 if (mp_irqs[i].irqtype == mp_INT &&
4007 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004008 break;
4009 if (i >= mp_irq_entries)
4010 return -1;
4011
4012 *trigger = irq_trigger(i);
4013 *polarity = irq_polarity(i);
4014 return 0;
4015}
4016
Len Brown888ba6c2005-08-24 12:07:20 -04004017#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004018
Yinghai Lu497c9a12008-08-19 20:50:28 -07004019/*
4020 * This function currently is only a helper for the i386 smp boot process where
4021 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004022 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004023 */
4024#ifdef CONFIG_SMP
4025void __init setup_ioapic_dest(void)
4026{
Yinghai Lub9c61b702009-05-06 10:10:06 -07004027 int pin, ioapic = 0, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004028 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004029 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004030
4031 if (skip_ioapic_setup == 1)
4032 return;
4033
Yinghai Lub9c61b702009-05-06 10:10:06 -07004034#ifdef CONFIG_ACPI
4035 if (!acpi_disabled && acpi_ioapic) {
4036 ioapic = mp_find_ioapic(0);
4037 if (ioapic < 0)
4038 ioapic = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004039 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07004040#endif
4041
4042 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4043 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4044 if (irq_entry == -1)
4045 continue;
4046 irq = pin_2_irq(irq_entry, ioapic, pin);
4047
4048 desc = irq_to_desc(irq);
4049
4050 /*
4051 * Honour affinities which have been set in early boot
4052 */
4053 if (desc->status &
4054 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4055 mask = desc->affinity;
4056 else
4057 mask = apic->target_cpus();
4058
4059 if (intr_remapping_enabled)
4060 set_ir_ioapic_affinity_irq_desc(desc, mask);
4061 else
4062 set_ioapic_affinity_irq_desc(desc, mask);
4063 }
4064
Yinghai Lu497c9a12008-08-19 20:50:28 -07004065}
4066#endif
4067
Ingo Molnar54168ed2008-08-20 09:07:45 +02004068#define IOAPIC_RESOURCE_NAME_SIZE 11
4069
4070static struct resource *ioapic_resources;
4071
4072static struct resource * __init ioapic_setup_resources(void)
4073{
4074 unsigned long n;
4075 struct resource *res;
4076 char *mem;
4077 int i;
4078
4079 if (nr_ioapics <= 0)
4080 return NULL;
4081
4082 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4083 n *= nr_ioapics;
4084
4085 mem = alloc_bootmem(n);
4086 res = (void *)mem;
4087
4088 if (mem != NULL) {
4089 mem += sizeof(struct resource) * nr_ioapics;
4090
4091 for (i = 0; i < nr_ioapics; i++) {
4092 res[i].name = mem;
4093 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4094 sprintf(mem, "IOAPIC %u", i);
4095 mem += IOAPIC_RESOURCE_NAME_SIZE;
4096 }
4097 }
4098
4099 ioapic_resources = res;
4100
4101 return res;
4102}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004103
Yinghai Luf3294a32008-06-27 01:41:56 -07004104void __init ioapic_init_mappings(void)
4105{
4106 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004107 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004108 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004109
Ingo Molnar54168ed2008-08-20 09:07:45 +02004110 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004111 for (i = 0; i < nr_ioapics; i++) {
4112 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304113 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004114#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004115 if (!ioapic_phys) {
4116 printk(KERN_ERR
4117 "WARNING: bogus zero IO-APIC "
4118 "address found in MPTABLE, "
4119 "disabling IO/APIC support!\n");
4120 smp_found_config = 0;
4121 skip_ioapic_setup = 1;
4122 goto fake_ioapic_page;
4123 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004124#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004125 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004126#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004127fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004128#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004129 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004130 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004131 ioapic_phys = __pa(ioapic_phys);
4132 }
4133 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004134 apic_printk(APIC_VERBOSE,
4135 "mapped IOAPIC to %08lx (%08lx)\n",
4136 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004137 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004138
Ingo Molnar54168ed2008-08-20 09:07:45 +02004139 if (ioapic_res != NULL) {
4140 ioapic_res->start = ioapic_phys;
4141 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4142 ioapic_res++;
4143 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004144 }
4145}
4146
Ingo Molnar54168ed2008-08-20 09:07:45 +02004147static int __init ioapic_insert_resources(void)
4148{
4149 int i;
4150 struct resource *r = ioapic_resources;
4151
4152 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004153 if (nr_ioapics > 0) {
4154 printk(KERN_ERR
4155 "IO APIC resources couldn't be allocated.\n");
4156 return -1;
4157 }
4158 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004159 }
4160
4161 for (i = 0; i < nr_ioapics; i++) {
4162 insert_resource(&iomem_resource, r);
4163 r++;
4164 }
4165
4166 return 0;
4167}
4168
4169/* Insert the IO APIC resources after PCI initialization has occured to handle
4170 * IO APICS that are mapped in on a BAR in PCI space. */
4171late_initcall(ioapic_insert_resources);