blob: 8fd1efb5a0bd233c698646655d1d6090b74ac25f [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 Rajputb5ba7e6d2009-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;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200120
121/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * This is performance-critical, we want to do it O(1)
123 *
124 * the indexing order of this array favors 1:1 mappings
125 * between pins and IRQs.
126 */
127
Yinghai Lu0f978f42008-08-19 20:50:26 -0700128struct irq_pin_list {
129 int apic, pin;
130 struct irq_pin_list *next;
131};
Yinghai Lu301e6192008-08-19 20:50:02 -0700132
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700133static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700134{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800135 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700136
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800137 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700138
Yinghai Lu0f978f42008-08-19 20:50:26 -0700139 return pin;
140}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800142struct irq_cfg {
143 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800144 cpumask_var_t domain;
145 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800146 unsigned move_cleanup_count;
147 u8 vector;
148 u8 move_in_progress : 1;
149};
150
151/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
152#ifdef CONFIG_SPARSE_IRQ
153static struct irq_cfg irq_cfgx[] = {
154#else
155static struct irq_cfg irq_cfgx[NR_IRQS] = {
156#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800157 [0] = { .vector = IRQ0_VECTOR, },
158 [1] = { .vector = IRQ1_VECTOR, },
159 [2] = { .vector = IRQ2_VECTOR, },
160 [3] = { .vector = IRQ3_VECTOR, },
161 [4] = { .vector = IRQ4_VECTOR, },
162 [5] = { .vector = IRQ5_VECTOR, },
163 [6] = { .vector = IRQ6_VECTOR, },
164 [7] = { .vector = IRQ7_VECTOR, },
165 [8] = { .vector = IRQ8_VECTOR, },
166 [9] = { .vector = IRQ9_VECTOR, },
167 [10] = { .vector = IRQ10_VECTOR, },
168 [11] = { .vector = IRQ11_VECTOR, },
169 [12] = { .vector = IRQ12_VECTOR, },
170 [13] = { .vector = IRQ13_VECTOR, },
171 [14] = { .vector = IRQ14_VECTOR, },
172 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800173};
174
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800175int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800176{
177 struct irq_cfg *cfg;
178 struct irq_desc *desc;
179 int count;
Yinghai Ludad213a2009-05-28 18:14:40 -0700180 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800181 int i;
182
183 cfg = irq_cfgx;
184 count = ARRAY_SIZE(irq_cfgx);
Yinghai Ludad213a2009-05-28 18:14:40 -0700185 node= cpu_to_node(boot_cpu_id);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800186
187 for (i = 0; i < count; i++) {
188 desc = irq_to_desc(i);
189 desc->chip_data = &cfg[i];
Yinghai Lu12274e92009-06-11 15:07:48 -0700190 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
191 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800192 if (i < NR_IRQS_LEGACY)
193 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800194 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800195
196 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800197}
198
199#ifdef CONFIG_SPARSE_IRQ
200static struct irq_cfg *irq_cfg(unsigned int irq)
201{
202 struct irq_cfg *cfg = NULL;
203 struct irq_desc *desc;
204
205 desc = irq_to_desc(irq);
206 if (desc)
207 cfg = desc->chip_data;
208
209 return cfg;
210}
211
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700212static struct irq_cfg *get_one_free_irq_cfg(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800213{
214 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800215
216 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800217 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800218 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800219 kfree(cfg);
220 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800221 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
222 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800223 free_cpumask_var(cfg->domain);
224 kfree(cfg);
225 cfg = NULL;
226 } else {
227 cpumask_clear(cfg->domain);
228 cpumask_clear(cfg->old_domain);
229 }
230 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800231
232 return cfg;
233}
234
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700235int arch_init_chip_data(struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800236{
237 struct irq_cfg *cfg;
238
239 cfg = desc->chip_data;
240 if (!cfg) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700241 desc->chip_data = get_one_free_irq_cfg(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800242 if (!desc->chip_data) {
243 printk(KERN_ERR "can not alloc irq_cfg\n");
244 BUG_ON(1);
245 }
246 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800247
248 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800249}
250
Yinghai Lufcef5912009-04-27 17:58:23 -0700251/* for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800252static void
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700253init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800254{
255 struct irq_pin_list *old_entry, *head, *tail, *entry;
256
257 cfg->irq_2_pin = NULL;
258 old_entry = old_cfg->irq_2_pin;
259 if (!old_entry)
260 return;
261
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700262 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800263 if (!entry)
264 return;
265
266 entry->apic = old_entry->apic;
267 entry->pin = old_entry->pin;
268 head = entry;
269 tail = entry;
270 old_entry = old_entry->next;
271 while (old_entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700272 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800273 if (!entry) {
274 entry = head;
275 while (entry) {
276 head = entry->next;
277 kfree(entry);
278 entry = head;
279 }
280 /* still use the old one */
281 return;
282 }
283 entry->apic = old_entry->apic;
284 entry->pin = old_entry->pin;
285 tail->next = entry;
286 tail = entry;
287 old_entry = old_entry->next;
288 }
289
290 tail->next = NULL;
291 cfg->irq_2_pin = head;
292}
293
294static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
295{
296 struct irq_pin_list *entry, *next;
297
298 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
299 return;
300
301 entry = old_cfg->irq_2_pin;
302
303 while (entry) {
304 next = entry->next;
305 kfree(entry);
306 entry = next;
307 }
308 old_cfg->irq_2_pin = NULL;
309}
310
311void arch_init_copy_chip_data(struct irq_desc *old_desc,
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700312 struct irq_desc *desc, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800313{
314 struct irq_cfg *cfg;
315 struct irq_cfg *old_cfg;
316
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700317 cfg = get_one_free_irq_cfg(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800318
319 if (!cfg)
320 return;
321
322 desc->chip_data = cfg;
323
324 old_cfg = old_desc->chip_data;
325
326 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
327
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700328 init_copy_irq_2_pin(old_cfg, cfg, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800329}
330
331static void free_irq_cfg(struct irq_cfg *old_cfg)
332{
333 kfree(old_cfg);
334}
335
336void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
337{
338 struct irq_cfg *old_cfg, *cfg;
339
340 old_cfg = old_desc->chip_data;
341 cfg = desc->chip_data;
342
343 if (old_cfg == cfg)
344 return;
345
346 if (old_cfg) {
347 free_irq_2_pin(old_cfg, cfg);
348 free_irq_cfg(old_cfg);
349 old_desc->chip_data = NULL;
350 }
351}
Yinghai Lufcef5912009-04-27 17:58:23 -0700352/* end for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800353
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800354#else
355static struct irq_cfg *irq_cfg(unsigned int irq)
356{
357 return irq < nr_irqs ? irq_cfgx + irq : NULL;
358}
359
360#endif
361
Linus Torvalds130fe052006-11-01 09:11:00 -0800362struct io_apic {
363 unsigned int index;
364 unsigned int unused[3];
365 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700366 unsigned int unused2[11];
367 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800368};
369
370static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
371{
372 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +0530373 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800374}
375
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700376static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
377{
378 struct io_apic __iomem *io_apic = io_apic_base(apic);
379 writel(vector, &io_apic->eoi);
380}
381
Linus Torvalds130fe052006-11-01 09:11:00 -0800382static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
383{
384 struct io_apic __iomem *io_apic = io_apic_base(apic);
385 writel(reg, &io_apic->index);
386 return readl(&io_apic->data);
387}
388
389static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
390{
391 struct io_apic __iomem *io_apic = io_apic_base(apic);
392 writel(reg, &io_apic->index);
393 writel(value, &io_apic->data);
394}
395
396/*
397 * Re-write a value: to be used for read-modify-write
398 * cycles where the read already set up the index register.
399 *
400 * Older SiS APIC requires we rewrite the index register
401 */
402static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
403{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200404 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200405
406 if (sis_apic_bug)
407 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800408 writel(value, &io_apic->data);
409}
410
Yinghai Lu3145e942008-12-05 18:58:34 -0800411static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700412{
413 struct irq_pin_list *entry;
414 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700415
416 spin_lock_irqsave(&ioapic_lock, flags);
417 entry = cfg->irq_2_pin;
418 for (;;) {
419 unsigned int reg;
420 int pin;
421
422 if (!entry)
423 break;
424 pin = entry->pin;
425 reg = io_apic_read(entry->apic, 0x10 + pin*2);
426 /* Is the remote IRR bit set? */
427 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
428 spin_unlock_irqrestore(&ioapic_lock, flags);
429 return true;
430 }
431 if (!entry->next)
432 break;
433 entry = entry->next;
434 }
435 spin_unlock_irqrestore(&ioapic_lock, flags);
436
437 return false;
438}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700439
Andi Kleencf4c6a22006-09-26 10:52:30 +0200440union entry_union {
441 struct { u32 w1, w2; };
442 struct IO_APIC_route_entry entry;
443};
444
445static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
446{
447 union entry_union eu;
448 unsigned long flags;
449 spin_lock_irqsave(&ioapic_lock, flags);
450 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
451 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
452 spin_unlock_irqrestore(&ioapic_lock, flags);
453 return eu.entry;
454}
455
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800456/*
457 * When we write a new IO APIC routing entry, we need to write the high
458 * word first! If the mask bit in the low word is clear, we will enable
459 * the interrupt, and we need to make sure the entry is fully populated
460 * before that happens.
461 */
Andi Kleend15512f2006-12-07 02:14:07 +0100462static void
463__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
464{
Figo.zhang50a8d4d22009-06-17 22:25:20 +0800465 union entry_union eu = {{0, 0}};
466
Andi Kleend15512f2006-12-07 02:14:07 +0100467 eu.entry = e;
468 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
469 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
470}
471
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800472void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200473{
474 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200475 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100476 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800477 spin_unlock_irqrestore(&ioapic_lock, flags);
478}
479
480/*
481 * When we mask an IO APIC routing entry, we need to write the low
482 * word first, in order to set the mask bit before we change the
483 * high bits!
484 */
485static void ioapic_mask_entry(int apic, int pin)
486{
487 unsigned long flags;
488 union entry_union eu = { .entry.mask = 1 };
489
490 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200491 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
492 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
493 spin_unlock_irqrestore(&ioapic_lock, flags);
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/*
497 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
498 * shared ISA-space IRQs, so we have to support them. We are super
499 * fast in the common case, and fast for shared ISA-space IRQs.
500 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700501static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700503 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Yinghai Lu0f978f42008-08-19 20:50:26 -0700505 entry = cfg->irq_2_pin;
506 if (!entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700507 entry = get_one_free_irq_2_pin(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800508 if (!entry) {
509 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
510 apic, pin);
511 return;
512 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700513 cfg->irq_2_pin = entry;
514 entry->apic = apic;
515 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700516 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700518
519 while (entry->next) {
520 /* not again, please */
521 if (entry->apic == apic && entry->pin == pin)
522 return;
523
524 entry = entry->next;
525 }
526
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700527 entry->next = get_one_free_irq_2_pin(node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700528 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 entry->apic = apic;
530 entry->pin = pin;
531}
532
533/*
534 * Reroute an IRQ to a different pin.
535 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700536static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 int oldapic, int oldpin,
538 int newapic, int newpin)
539{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700540 struct irq_pin_list *entry = cfg->irq_2_pin;
541 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Yinghai Lu0f978f42008-08-19 20:50:26 -0700543 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (entry->apic == oldapic && entry->pin == oldpin) {
545 entry->apic = newapic;
546 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700547 replaced = 1;
548 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700550 }
551 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700553
554 /* why? call replace before add? */
555 if (!replaced)
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700556 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Yinghai Lu3145e942008-12-05 18:58:34 -0800559static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400560 int mask_and, int mask_or,
561 void (*final)(struct irq_pin_list *entry))
562{
563 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400564 struct irq_pin_list *entry;
565
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400566 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
567 unsigned int reg;
568 pin = entry->pin;
569 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
570 reg &= mask_and;
571 reg |= mask_or;
572 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
573 if (final)
574 final(entry);
575 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700576}
577
Yinghai Lu3145e942008-12-05 18:58:34 -0800578static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400579{
Yinghai Lu3145e942008-12-05 18:58:34 -0800580 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400581}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700582
583#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530584static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700585{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400586 /*
587 * Synchronize the IO-APIC and the CPU by doing
588 * a dummy read from the IO-APIC
589 */
590 struct io_apic __iomem *io_apic;
591 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700592 readl(&io_apic->data);
593}
594
Yinghai Lu3145e942008-12-05 18:58:34 -0800595static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400596{
Yinghai Lu3145e942008-12-05 18:58:34 -0800597 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400598}
599#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800600static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400601{
Yinghai Lu3145e942008-12-05 18:58:34 -0800602 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400603}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700604
Yinghai Lu3145e942008-12-05 18:58:34 -0800605static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400606{
Yinghai Lu3145e942008-12-05 18:58:34 -0800607 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400608 IO_APIC_REDIR_MASKED, NULL);
609}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700610
Yinghai Lu3145e942008-12-05 18:58:34 -0800611static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400612{
Yinghai Lu3145e942008-12-05 18:58:34 -0800613 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400614 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
615}
616#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700617
Yinghai Lu3145e942008-12-05 18:58:34 -0800618static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Yinghai Lu3145e942008-12-05 18:58:34 -0800620 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 unsigned long flags;
622
Yinghai Lu3145e942008-12-05 18:58:34 -0800623 BUG_ON(!cfg);
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800626 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 spin_unlock_irqrestore(&ioapic_lock, flags);
628}
629
Yinghai Lu3145e942008-12-05 18:58:34 -0800630static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Yinghai Lu3145e942008-12-05 18:58:34 -0800632 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 unsigned long flags;
634
635 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800636 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 spin_unlock_irqrestore(&ioapic_lock, flags);
638}
639
Yinghai Lu3145e942008-12-05 18:58:34 -0800640static void mask_IO_APIC_irq(unsigned int irq)
641{
642 struct irq_desc *desc = irq_to_desc(irq);
643
644 mask_IO_APIC_irq_desc(desc);
645}
646static void unmask_IO_APIC_irq(unsigned int irq)
647{
648 struct irq_desc *desc = irq_to_desc(irq);
649
650 unmask_IO_APIC_irq_desc(desc);
651}
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
654{
655 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200658 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (entry.delivery_mode == dest_SMI)
660 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /*
662 * Disable it in the IO-APIC irq-routing table:
663 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800664 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Ingo Molnar54168ed2008-08-20 09:07:45 +0200667static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 int apic, pin;
670
671 for (apic = 0; apic < nr_ioapics; apic++)
672 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
673 clear_IO_APIC_pin(apic, pin);
674}
675
Ingo Molnar54168ed2008-08-20 09:07:45 +0200676#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/*
678 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
679 * specific CPU-side IRQs.
680 */
681
682#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800683static int pirq_entries[MAX_PIRQS] = {
684 [0 ... MAX_PIRQS - 1] = -1
685};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687static int __init ioapic_pirq_setup(char *str)
688{
689 int i, max;
690 int ints[MAX_PIRQS+1];
691
692 get_options(str, ARRAY_SIZE(ints), ints);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 apic_printk(APIC_VERBOSE, KERN_INFO
695 "PIRQ redirection, working around broken MP-BIOS.\n");
696 max = MAX_PIRQS;
697 if (ints[0] < MAX_PIRQS)
698 max = ints[0];
699
700 for (i = 0; i < max; i++) {
701 apic_printk(APIC_VERBOSE, KERN_DEBUG
702 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
703 /*
704 * PIRQs are mapped upside down, usually.
705 */
706 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
707 }
708 return 1;
709}
710
711__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200712#endif /* CONFIG_X86_32 */
713
Fenghua Yub24696b2009-03-27 14:22:44 -0700714struct IO_APIC_route_entry **alloc_ioapic_entries(void)
715{
716 int apic;
717 struct IO_APIC_route_entry **ioapic_entries;
718
719 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
720 GFP_ATOMIC);
721 if (!ioapic_entries)
722 return 0;
723
724 for (apic = 0; apic < nr_ioapics; apic++) {
725 ioapic_entries[apic] =
726 kzalloc(sizeof(struct IO_APIC_route_entry) *
727 nr_ioapic_registers[apic], GFP_ATOMIC);
728 if (!ioapic_entries[apic])
729 goto nomem;
730 }
731
732 return ioapic_entries;
733
734nomem:
735 while (--apic >= 0)
736 kfree(ioapic_entries[apic]);
737 kfree(ioapic_entries);
738
739 return 0;
740}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200741
742/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700743 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200744 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700745int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200746{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200747 int apic, pin;
748
Fenghua Yub24696b2009-03-27 14:22:44 -0700749 if (!ioapic_entries)
750 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200751
752 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700753 if (!ioapic_entries[apic])
754 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200755
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700756 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700757 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200758 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700759 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400760
Ingo Molnar54168ed2008-08-20 09:07:45 +0200761 return 0;
762}
763
Fenghua Yub24696b2009-03-27 14:22:44 -0700764/*
765 * Mask all IO APIC entries.
766 */
767void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700768{
769 int apic, pin;
770
Fenghua Yub24696b2009-03-27 14:22:44 -0700771 if (!ioapic_entries)
772 return;
773
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700774 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700775 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700776 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700777
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700778 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
779 struct IO_APIC_route_entry entry;
780
Fenghua Yub24696b2009-03-27 14:22:44 -0700781 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700782 if (!entry.mask) {
783 entry.mask = 1;
784 ioapic_write_entry(apic, pin, entry);
785 }
786 }
787 }
788}
789
Fenghua Yub24696b2009-03-27 14:22:44 -0700790/*
791 * Restore IO APIC entries which was saved in ioapic_entries.
792 */
793int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200794{
795 int apic, pin;
796
Fenghua Yub24696b2009-03-27 14:22:44 -0700797 if (!ioapic_entries)
798 return -ENOMEM;
799
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400800 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700801 if (!ioapic_entries[apic])
802 return -ENOMEM;
803
Ingo Molnar54168ed2008-08-20 09:07:45 +0200804 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
805 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700806 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400807 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700808 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200809}
810
Fenghua Yub24696b2009-03-27 14:22:44 -0700811void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
812{
813 int apic;
814
815 for (apic = 0; apic < nr_ioapics; apic++)
816 kfree(ioapic_entries[apic]);
817
818 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821/*
822 * Find the IRQ entry number of a certain pin.
823 */
824static int find_irq_entry(int apic, int pin, int type)
825{
826 int i;
827
828 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530829 if (mp_irqs[i].irqtype == type &&
830 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
831 mp_irqs[i].dstapic == MP_APIC_ALL) &&
832 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return i;
834
835 return -1;
836}
837
838/*
839 * Find the pin to which IRQ[irq] (ISA) is connected
840 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800841static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 int i;
844
845 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530846 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300848 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530849 (mp_irqs[i].irqtype == type) &&
850 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530852 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854 return -1;
855}
856
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800857static int __init find_isa_irq_apic(int irq, int type)
858{
859 int i;
860
861 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530862 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800863
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300864 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530865 (mp_irqs[i].irqtype == type) &&
866 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800867 break;
868 }
869 if (i < mp_irq_entries) {
870 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200871 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530872 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800873 return apic;
874 }
875 }
876
877 return -1;
878}
879
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300880#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*
882 * EISA Edge/Level control register, ELCR
883 */
884static int EISA_ELCR(unsigned int irq)
885{
Yinghai Lu99d093d2008-12-05 18:58:32 -0800886 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 unsigned int port = 0x4d0 + (irq >> 3);
888 return (inb(port) >> (irq & 7)) & 1;
889 }
890 apic_printk(APIC_VERBOSE, KERN_INFO
891 "Broken MPtable reports ISA irq %d\n", irq);
892 return 0;
893}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200894
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300897/* ISA interrupts are always polarity zero edge triggered,
898 * when listed as conforming in the MP table. */
899
900#define default_ISA_trigger(idx) (0)
901#define default_ISA_polarity(idx) (0)
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/* EISA interrupts are always polarity zero and can be edge or level
904 * trigger depending on the ELCR value. If an interrupt is listed as
905 * EISA conforming in the MP table, that means its trigger type must
906 * be read in from the ELCR */
907
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530908#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300909#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911/* PCI interrupts are always polarity one level triggered,
912 * when listed as conforming in the MP table. */
913
914#define default_PCI_trigger(idx) (1)
915#define default_PCI_polarity(idx) (1)
916
917/* MCA interrupts are always polarity zero level triggered,
918 * when listed as conforming in the MP table. */
919
920#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300921#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Shaohua Li61fd47e2007-11-17 01:05:28 -0500923static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530925 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 int polarity;
927
928 /*
929 * Determine IRQ line polarity (high active or low active):
930 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530931 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200933 case 0: /* conforms, ie. bus-type dependent polarity */
934 if (test_bit(bus, mp_bus_not_pci))
935 polarity = default_ISA_polarity(idx);
936 else
937 polarity = default_PCI_polarity(idx);
938 break;
939 case 1: /* high active */
940 {
941 polarity = 0;
942 break;
943 }
944 case 2: /* reserved */
945 {
946 printk(KERN_WARNING "broken BIOS!!\n");
947 polarity = 1;
948 break;
949 }
950 case 3: /* low active */
951 {
952 polarity = 1;
953 break;
954 }
955 default: /* invalid */
956 {
957 printk(KERN_WARNING "broken BIOS!!\n");
958 polarity = 1;
959 break;
960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962 return polarity;
963}
964
965static int MPBIOS_trigger(int idx)
966{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530967 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int trigger;
969
970 /*
971 * Determine IRQ trigger mode (edge or level sensitive):
972 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530973 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200975 case 0: /* conforms, ie. bus-type dependent */
976 if (test_bit(bus, mp_bus_not_pci))
977 trigger = default_ISA_trigger(idx);
978 else
979 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300980#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200981 switch (mp_bus_id_to_type[bus]) {
982 case MP_BUS_ISA: /* ISA pin */
983 {
984 /* set before the switch */
985 break;
986 }
987 case MP_BUS_EISA: /* EISA pin */
988 {
989 trigger = default_EISA_trigger(idx);
990 break;
991 }
992 case MP_BUS_PCI: /* PCI pin */
993 {
994 /* set before the switch */
995 break;
996 }
997 case MP_BUS_MCA: /* MCA pin */
998 {
999 trigger = default_MCA_trigger(idx);
1000 break;
1001 }
1002 default:
1003 {
1004 printk(KERN_WARNING "broken BIOS!!\n");
1005 trigger = 1;
1006 break;
1007 }
1008 }
1009#endif
1010 break;
1011 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001012 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001013 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001014 break;
1015 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001016 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001017 {
1018 printk(KERN_WARNING "broken BIOS!!\n");
1019 trigger = 1;
1020 break;
1021 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001022 case 3: /* level */
1023 {
1024 trigger = 1;
1025 break;
1026 }
1027 default: /* invalid */
1028 {
1029 printk(KERN_WARNING "broken BIOS!!\n");
1030 trigger = 0;
1031 break;
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 return trigger;
1035}
1036
1037static inline int irq_polarity(int idx)
1038{
1039 return MPBIOS_polarity(idx);
1040}
1041
1042static inline int irq_trigger(int idx)
1043{
1044 return MPBIOS_trigger(idx);
1045}
1046
Yinghai Luefa25592008-08-19 20:50:36 -07001047int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048static int pin_2_irq(int idx, int apic, int pin)
1049{
1050 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301051 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /*
1054 * Debugging check, we are in big trouble if this message pops up!
1055 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301056 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1058
Ingo Molnar54168ed2008-08-20 09:07:45 +02001059 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301060 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001061 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001062 /*
1063 * PCI IRQs are mapped in order
1064 */
1065 i = irq = 0;
1066 while (i < apic)
1067 irq += nr_ioapic_registers[i++];
1068 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001069 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001070 * For MPS mode, so far only needed by ES7000 platform
1071 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001072 if (ioapic_renumber_irq)
1073 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075
Ingo Molnar54168ed2008-08-20 09:07:45 +02001076#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /*
1078 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1079 */
1080 if ((pin >= 16) && (pin <= 23)) {
1081 if (pirq_entries[pin-16] != -1) {
1082 if (!pirq_entries[pin-16]) {
1083 apic_printk(APIC_VERBOSE, KERN_DEBUG
1084 "disabling PIRQ%d\n", pin-16);
1085 } else {
1086 irq = pirq_entries[pin-16];
1087 apic_printk(APIC_VERBOSE, KERN_DEBUG
1088 "using PIRQ%d -> IRQ %d\n",
1089 pin-16, irq);
1090 }
1091 }
1092 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001093#endif
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return irq;
1096}
1097
Yinghai Lue20c06f2009-05-06 10:08:22 -07001098/*
1099 * Find a specific PCI IRQ entry.
1100 * Not an __init, possibly needed by modules
1101 */
1102int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001103 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001104{
1105 int apic, i, best_guess = -1;
1106
1107 apic_printk(APIC_DEBUG,
1108 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1109 bus, slot, pin);
1110 if (test_bit(bus, mp_bus_not_pci)) {
1111 apic_printk(APIC_VERBOSE,
1112 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1113 return -1;
1114 }
1115 for (i = 0; i < mp_irq_entries; i++) {
1116 int lbus = mp_irqs[i].srcbus;
1117
1118 for (apic = 0; apic < nr_ioapics; apic++)
1119 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1120 mp_irqs[i].dstapic == MP_APIC_ALL)
1121 break;
1122
1123 if (!test_bit(lbus, mp_bus_not_pci) &&
1124 !mp_irqs[i].irqtype &&
1125 (bus == lbus) &&
1126 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1127 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1128
1129 if (!(apic || IO_APIC_IRQ(irq)))
1130 continue;
1131
1132 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lue5198072009-05-15 13:05:16 -07001133 set_io_apic_irq_attr(irq_attr, apic,
1134 mp_irqs[i].dstirq,
1135 irq_trigger(i),
1136 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001137 return irq;
1138 }
1139 /*
1140 * Use the first all-but-pin matching entry as a
1141 * best-guess fuzzy result for broken mptables.
1142 */
1143 if (best_guess < 0) {
Yinghai Lue5198072009-05-15 13:05:16 -07001144 set_io_apic_irq_attr(irq_attr, apic,
1145 mp_irqs[i].dstirq,
1146 irq_trigger(i),
1147 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001148 best_guess = irq;
1149 }
1150 }
1151 }
1152 return best_guess;
1153}
1154EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1155
Yinghai Lu497c9a12008-08-19 20:50:28 -07001156void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001158 /* Used to the online set of cpus does not change
1159 * during assign_irq_vector.
1160 */
1161 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Yinghai Lu497c9a12008-08-19 20:50:28 -07001164void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001165{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001166 spin_unlock(&vector_lock);
1167}
1168
Mike Travise7986732008-12-16 17:33:52 -08001169static int
1170__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001171{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001172 /*
1173 * NOTE! The local APIC isn't very good at handling
1174 * multiple interrupts at the same interrupt level.
1175 * As the interrupt level is determined by taking the
1176 * vector number and shifting that right by 4, we
1177 * want to spread these out a bit so that they don't
1178 * all fall in the same interrupt level.
1179 *
1180 * Also, we've got to be careful not to trash gate
1181 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1182 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001183 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1184 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001185 int cpu, err;
1186 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001187
Ingo Molnar54168ed2008-08-20 09:07:45 +02001188 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1189 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001190
Mike Travis22f65d32008-12-16 17:33:56 -08001191 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1192 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001193
Ingo Molnar54168ed2008-08-20 09:07:45 +02001194 old_vector = cfg->vector;
1195 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001196 cpumask_and(tmp_mask, mask, cpu_online_mask);
1197 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1198 if (!cpumask_empty(tmp_mask)) {
1199 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001200 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001201 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001202 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001203
Mike Travise7986732008-12-16 17:33:52 -08001204 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001205 err = -ENOSPC;
1206 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001207 int new_cpu;
1208 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001209
Ingo Molnare2d40b12009-01-28 06:50:47 +01001210 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001211
Ingo Molnar54168ed2008-08-20 09:07:45 +02001212 vector = current_vector;
1213 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001214next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001215 vector += 8;
1216 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001217 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001218 offset = (offset + 1) % 8;
1219 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001220 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001221 if (unlikely(current_vector == vector))
1222 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001223
1224 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001225 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001226
Mike Travis22f65d32008-12-16 17:33:56 -08001227 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001228 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1229 goto next;
1230 /* Found one! */
1231 current_vector = vector;
1232 current_offset = offset;
1233 if (old_vector) {
1234 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001235 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001236 }
Mike Travis22f65d32008-12-16 17:33:56 -08001237 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001238 per_cpu(vector_irq, new_cpu)[vector] = irq;
1239 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001240 cpumask_copy(cfg->domain, tmp_mask);
1241 err = 0;
1242 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001243 }
Mike Travis22f65d32008-12-16 17:33:56 -08001244 free_cpumask_var(tmp_mask);
1245 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001246}
1247
Mike Travise7986732008-12-16 17:33:52 -08001248static int
1249assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001250{
1251 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001252 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001253
1254 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001255 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001256 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001257 return err;
1258}
1259
Yinghai Lu3145e942008-12-05 18:58:34 -08001260static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001261{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001262 int cpu, vector;
1263
Yinghai Lu497c9a12008-08-19 20:50:28 -07001264 BUG_ON(!cfg->vector);
1265
1266 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001267 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001268 per_cpu(vector_irq, cpu)[vector] = -1;
1269
1270 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001271 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001272
1273 if (likely(!cfg->move_in_progress))
1274 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001275 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001276 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1277 vector++) {
1278 if (per_cpu(vector_irq, cpu)[vector] != irq)
1279 continue;
1280 per_cpu(vector_irq, cpu)[vector] = -1;
1281 break;
1282 }
1283 }
1284 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001285}
1286
1287void __setup_vector_irq(int cpu)
1288{
1289 /* Initialize vector_irq on a new cpu */
1290 /* This function must be called with vector_lock held */
1291 int irq, vector;
1292 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001293 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001294
1295 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001296 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001297 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001298 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001299 continue;
1300 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001301 per_cpu(vector_irq, cpu)[vector] = irq;
1302 }
1303 /* Mark the free vectors */
1304 for (vector = 0; vector < NR_VECTORS; ++vector) {
1305 irq = per_cpu(vector_irq, cpu)[vector];
1306 if (irq < 0)
1307 continue;
1308
1309 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001310 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001311 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001312 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001313}
Glauber Costa3fde6902008-05-28 20:34:19 -07001314
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001315static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001316static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Ingo Molnar54168ed2008-08-20 09:07:45 +02001318#define IOAPIC_AUTO -1
1319#define IOAPIC_EDGE 0
1320#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001322#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001323static inline int IO_APIC_irq_trigger(int irq)
1324{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001325 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001326
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001327 for (apic = 0; apic < nr_ioapics; apic++) {
1328 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1329 idx = find_irq_entry(apic, pin, mp_INT);
1330 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1331 return irq_trigger(idx);
1332 }
1333 }
1334 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001335 * nonexistent IRQs are edge default
1336 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001337 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001338}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001339#else
1340static inline int IO_APIC_irq_trigger(int irq)
1341{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001342 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001343}
1344#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001345
Yinghai Lu3145e942008-12-05 18:58:34 -08001346static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Yinghai Lu199751d2008-08-19 20:50:27 -07001348
Jan Beulich6ebcc002006-06-26 13:56:46 +02001349 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001350 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001351 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001352 else
1353 desc->status &= ~IRQ_LEVEL;
1354
Ingo Molnar54168ed2008-08-20 09:07:45 +02001355 if (irq_remapped(irq)) {
1356 desc->status |= IRQ_MOVE_PCNTXT;
1357 if (trigger)
1358 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1359 handle_fasteoi_irq,
1360 "fasteoi");
1361 else
1362 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1363 handle_edge_irq, "edge");
1364 return;
1365 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001366
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001367 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1368 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001369 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001370 handle_fasteoi_irq,
1371 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001372 else
Ingo Molnara460e742006-10-17 00:10:03 -07001373 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001374 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001375}
1376
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001377int setup_ioapic_entry(int apic_id, int irq,
1378 struct IO_APIC_route_entry *entry,
1379 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001380 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001381{
1382 /*
1383 * add it to the IO-APIC irq-routing table:
1384 */
1385 memset(entry,0,sizeof(*entry));
1386
Ingo Molnar54168ed2008-08-20 09:07:45 +02001387 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001388 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001389 struct irte irte;
1390 struct IR_IO_APIC_route_entry *ir_entry =
1391 (struct IR_IO_APIC_route_entry *) entry;
1392 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001393
Ingo Molnar54168ed2008-08-20 09:07:45 +02001394 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001395 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001396
1397 index = alloc_irte(iommu, irq, 1);
1398 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001399 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001400
1401 memset(&irte, 0, sizeof(irte));
1402
1403 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001404 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001405 /*
1406 * Trigger mode in the IRTE will always be edge, and the
1407 * actual level or edge trigger will be setup in the IO-APIC
1408 * RTE. This will help simplify level triggered irq migration.
1409 * For more details, see the comments above explainig IO-APIC
1410 * irq migration in the presence of interrupt-remapping.
1411 */
1412 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001413 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001414 irte.vector = vector;
1415 irte.dest_id = IRTE_DEST(destination);
1416
Weidong Hanf007e992009-05-23 00:41:15 +08001417 /* Set source-id of interrupt request */
1418 set_ioapic_sid(&irte, apic_id);
1419
Ingo Molnar54168ed2008-08-20 09:07:45 +02001420 modify_irte(irq, &irte);
1421
1422 ir_entry->index2 = (index >> 15) & 0x1;
1423 ir_entry->zero = 0;
1424 ir_entry->format = 1;
1425 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001426 /*
1427 * IO-APIC RTE will be configured with virtual vector.
1428 * irq handler will do the explicit EOI to the io-apic.
1429 */
1430 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001431 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001432 entry->delivery_mode = apic->irq_delivery_mode;
1433 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001434 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001435 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001436 }
1437
1438 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001439 entry->trigger = trigger;
1440 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001441
1442 /* Mask level triggered irqs.
1443 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1444 */
1445 if (trigger)
1446 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001447 return 0;
1448}
1449
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001450static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001451 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001452{
1453 struct irq_cfg *cfg;
1454 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001455 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001456
1457 if (!IO_APIC_IRQ(irq))
1458 return;
1459
Yinghai Lu3145e942008-12-05 18:58:34 -08001460 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001461
Ingo Molnarfe402e12009-01-28 04:32:51 +01001462 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001463 return;
1464
Ingo Molnardebccb32009-01-28 15:20:18 +01001465 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001466
1467 apic_printk(APIC_VERBOSE,KERN_DEBUG
1468 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1469 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001470 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001471 irq, trigger, polarity);
1472
1473
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001474 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001475 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001476 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001477 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001478 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001479 return;
1480 }
1481
Yinghai Lu3145e942008-12-05 18:58:34 -08001482 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001483 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001484 disable_8259A_irq(irq);
1485
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001486 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Yinghai Lub9c61b702009-05-06 10:10:06 -07001489static struct {
1490 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1491} mp_ioapic_routing[MAX_IO_APICS];
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493static void __init setup_IO_APIC_irqs(void)
1494{
Yinghai Lub9c61b702009-05-06 10:10:06 -07001495 int apic_id = 0, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001496 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001497 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001498 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001499 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1502
Yinghai Lub9c61b702009-05-06 10:10:06 -07001503#ifdef CONFIG_ACPI
1504 if (!acpi_disabled && acpi_ioapic) {
1505 apic_id = mp_find_ioapic(0);
1506 if (apic_id < 0)
1507 apic_id = 0;
1508 }
1509#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Yinghai Lub9c61b702009-05-06 10:10:06 -07001511 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1512 idx = find_irq_entry(apic_id, pin, mp_INT);
1513 if (idx == -1) {
1514 if (!notcon) {
1515 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001516 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001517 KERN_DEBUG " %d-%d",
1518 mp_ioapics[apic_id].apicid, pin);
1519 } else
1520 apic_printk(APIC_VERBOSE, " %d-%d",
1521 mp_ioapics[apic_id].apicid, pin);
1522 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001523 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001524 if (notcon) {
1525 apic_printk(APIC_VERBOSE,
1526 " (apicid-pin) not connected\n");
1527 notcon = 0;
1528 }
1529
1530 irq = pin_2_irq(idx, apic_id, pin);
1531
1532 /*
1533 * Skip the timer IRQ if there's a quirk handler
1534 * installed and if it returns 1:
1535 */
1536 if (apic->multi_timer_check &&
1537 apic->multi_timer_check(apic_id, irq))
1538 continue;
1539
1540 desc = irq_to_desc_alloc_node(irq, node);
1541 if (!desc) {
1542 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1543 continue;
1544 }
1545 cfg = desc->chip_data;
1546 add_pin_to_irq_node(cfg, node, apic_id, pin);
Yinghai Lu4c6f18f2009-05-18 10:23:28 -07001547 /*
1548 * don't mark it in pin_programmed, so later acpi could
1549 * set it correctly when irq < 16
1550 */
Yinghai Lub9c61b702009-05-06 10:10:06 -07001551 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1552 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001555 if (notcon)
1556 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001557 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
1560/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001561 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001563static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001564 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Ingo Molnar54168ed2008-08-20 09:07:45 +02001568 if (intr_remapping_enabled)
1569 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001570
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001571 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 /*
1574 * We use logical delivery to get the timer IRQ
1575 * to the first CPU.
1576 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001577 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001578 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001579 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001580 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 entry.polarity = 0;
1582 entry.trigger = 0;
1583 entry.vector = vector;
1584
1585 /*
1586 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001587 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001589 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /*
1592 * Add it to the IO-APIC irq-routing table:
1593 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001594 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001597
1598__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 int apic, i;
1601 union IO_APIC_reg_00 reg_00;
1602 union IO_APIC_reg_01 reg_01;
1603 union IO_APIC_reg_02 reg_02;
1604 union IO_APIC_reg_03 reg_03;
1605 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001606 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001607 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001608 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 if (apic_verbosity == APIC_QUIET)
1611 return;
1612
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001613 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 for (i = 0; i < nr_ioapics; i++)
1615 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05301616 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 /*
1619 * We are a bit conservative about what we expect. We have to
1620 * know about every hardware change ASAP.
1621 */
1622 printk(KERN_INFO "testing the IO APIC.......................\n");
1623
1624 for (apic = 0; apic < nr_ioapics; apic++) {
1625
1626 spin_lock_irqsave(&ioapic_lock, flags);
1627 reg_00.raw = io_apic_read(apic, 0);
1628 reg_01.raw = io_apic_read(apic, 1);
1629 if (reg_01.bits.version >= 0x10)
1630 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001631 if (reg_01.bits.version >= 0x20)
1632 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 spin_unlock_irqrestore(&ioapic_lock, flags);
1634
Ingo Molnar54168ed2008-08-20 09:07:45 +02001635 printk("\n");
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05301636 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1638 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1639 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1640 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Ingo Molnar54168ed2008-08-20 09:07:45 +02001642 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1646 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /*
1649 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1650 * but the value of reg_02 is read as the previous read register
1651 * value, so ignore it if reg_02 == reg_01.
1652 */
1653 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1654 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1655 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
1658 /*
1659 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1660 * or reg_03, but the value of reg_0[23] is read as the previous read
1661 * register value, so ignore it if reg_03 == reg_0[12].
1662 */
1663 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1664 reg_03.raw != reg_01.raw) {
1665 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1666 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
1668
1669 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1670
Yinghai Lud83e94a2008-08-19 20:50:33 -07001671 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1672 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 for (i = 0; i <= reg_01.bits.entries; i++) {
1675 struct IO_APIC_route_entry entry;
1676
Andi Kleencf4c6a22006-09-26 10:52:30 +02001677 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Ingo Molnar54168ed2008-08-20 09:07:45 +02001679 printk(KERN_DEBUG " %02x %03X ",
1680 i,
1681 entry.dest
1682 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1685 entry.mask,
1686 entry.trigger,
1687 entry.irr,
1688 entry.polarity,
1689 entry.delivery_status,
1690 entry.dest_mode,
1691 entry.delivery_mode,
1692 entry.vector
1693 );
1694 }
1695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001697 for_each_irq_desc(irq, desc) {
1698 struct irq_pin_list *entry;
1699
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001700 cfg = desc->chip_data;
1701 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001702 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001704 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 for (;;) {
1706 printk("-> %d:%d", entry->apic, entry->pin);
1707 if (!entry->next)
1708 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001709 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 printk("\n");
1712 }
1713
1714 printk(KERN_INFO ".................................... done.\n");
1715
1716 return;
1717}
1718
Ingo Molnar251e1e42009-07-02 08:54:01 +02001719__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001721 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (apic_verbosity == APIC_QUIET)
1724 return;
1725
Ingo Molnar251e1e42009-07-02 08:54:01 +02001726 printk(KERN_DEBUG);
1727
1728 for (i = 0; i < 8; i++)
1729 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1730
1731 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001734__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001736 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001737 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 if (apic_verbosity == APIC_QUIET)
1740 return;
1741
Ingo Molnar251e1e42009-07-02 08:54:01 +02001742 printk(KERN_DEBUG "\n");
1743 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001745 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001746 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 v = apic_read(APIC_LVR);
1748 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1749 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001750 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 v = apic_read(APIC_TASKPRI);
1753 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1754
Ingo Molnar54168ed2008-08-20 09:07:45 +02001755 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001756 if (!APIC_XAPIC(ver)) {
1757 v = apic_read(APIC_ARBPRI);
1758 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1759 v & APIC_ARBPRI_MASK);
1760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 v = apic_read(APIC_PROCPRI);
1762 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1763 }
1764
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001765 /*
1766 * Remote read supported only in the 82489DX and local APIC for
1767 * Pentium processors.
1768 */
1769 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1770 v = apic_read(APIC_RRR);
1771 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1772 }
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 v = apic_read(APIC_LDR);
1775 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001776 if (!x2apic_enabled()) {
1777 v = apic_read(APIC_DFR);
1778 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 v = apic_read(APIC_SPIV);
1781 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1782
1783 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001784 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001786 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001788 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Ingo Molnar54168ed2008-08-20 09:07:45 +02001790 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1791 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 v = apic_read(APIC_ESR);
1795 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1796 }
1797
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001798 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001799 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1800 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 v = apic_read(APIC_LVTT);
1803 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1804
1805 if (maxlvt > 3) { /* PC is LVT#4. */
1806 v = apic_read(APIC_LVTPC);
1807 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1808 }
1809 v = apic_read(APIC_LVT0);
1810 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1811 v = apic_read(APIC_LVT1);
1812 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1813
1814 if (maxlvt > 2) { /* ERR is LVT#3. */
1815 v = apic_read(APIC_LVTERR);
1816 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1817 }
1818
1819 v = apic_read(APIC_TMICT);
1820 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1821 v = apic_read(APIC_TMCCT);
1822 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1823 v = apic_read(APIC_TDCR);
1824 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001825
1826 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1827 v = apic_read(APIC_EFEAT);
1828 maxlvt = (v >> 16) & 0xff;
1829 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1830 v = apic_read(APIC_ECTRL);
1831 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1832 for (i = 0; i < maxlvt; i++) {
1833 v = apic_read(APIC_EILVTn(i));
1834 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1835 }
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 printk("\n");
1838}
1839
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001840__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001842 int cpu;
1843
1844 preempt_disable();
1845 for_each_online_cpu(cpu)
1846 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1847 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001850__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 unsigned int v;
1853 unsigned long flags;
1854
1855 if (apic_verbosity == APIC_QUIET)
1856 return;
1857
1858 printk(KERN_DEBUG "\nprinting PIC contents\n");
1859
1860 spin_lock_irqsave(&i8259A_lock, flags);
1861
1862 v = inb(0xa1) << 8 | inb(0x21);
1863 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1864
1865 v = inb(0xa0) << 8 | inb(0x20);
1866 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1867
Ingo Molnar54168ed2008-08-20 09:07:45 +02001868 outb(0x0b,0xa0);
1869 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001871 outb(0x0a,0xa0);
1872 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 spin_unlock_irqrestore(&i8259A_lock, flags);
1875
1876 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1877
1878 v = inb(0x4d1) << 8 | inb(0x4d0);
1879 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1880}
1881
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001882__apicdebuginit(int) print_all_ICs(void)
1883{
1884 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001885
1886 /* don't print out if apic is not there */
1887 if (!cpu_has_apic || disable_apic)
1888 return 0;
1889
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001890 print_all_local_APICs();
1891 print_IO_APIC();
1892
1893 return 0;
1894}
1895
1896fs_initcall(print_all_ICs);
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Yinghai Luefa25592008-08-19 20:50:36 -07001899/* Where if anywhere is the i8259 connect in external int mode */
1900static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1901
Ingo Molnar54168ed2008-08-20 09:07:45 +02001902void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
1904 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001905 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001906 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 unsigned long flags;
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 /*
1910 * The number of IO-APIC IRQ registers (== #pins):
1911 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001912 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001914 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001916 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1917 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001918 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001919 int pin;
1920 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001921 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001922 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001923 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001924
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001925 /* If the interrupt line is enabled and in ExtInt mode
1926 * I have found the pin where the i8259 is connected.
1927 */
1928 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1929 ioapic_i8259.apic = apic;
1930 ioapic_i8259.pin = pin;
1931 goto found_i8259;
1932 }
1933 }
1934 }
1935 found_i8259:
1936 /* Look to see what if the MP table has reported the ExtINT */
1937 /* If we could not find the appropriate pin by looking at the ioapic
1938 * the i8259 probably is not connected the ioapic but give the
1939 * mptable a chance anyway.
1940 */
1941 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1942 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1943 /* Trust the MP table if nothing is setup in the hardware */
1944 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1945 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1946 ioapic_i8259.pin = i8259_pin;
1947 ioapic_i8259.apic = i8259_apic;
1948 }
1949 /* Complain if the MP table and the hardware disagree */
1950 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1951 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1952 {
1953 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955
1956 /*
1957 * Do not trust the IO-APIC being empty at bootup
1958 */
1959 clear_IO_APIC();
1960}
1961
1962/*
1963 * Not an __init, needed by the reboot code
1964 */
1965void disable_IO_APIC(void)
1966{
1967 /*
1968 * Clear the IO-APIC before rebooting:
1969 */
1970 clear_IO_APIC();
1971
Eric W. Biederman650927e2005-06-25 14:57:44 -07001972 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001973 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001974 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001975 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001976 *
1977 * With interrupt-remapping, for now we will use virtual wire A mode,
1978 * as virtual wire B is little complex (need to configure both
1979 * IOAPIC RTE aswell as interrupt-remapping table entry).
1980 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001981 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001982 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001983 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001984
1985 memset(&entry, 0, sizeof(entry));
1986 entry.mask = 0; /* Enabled */
1987 entry.trigger = 0; /* Edge */
1988 entry.irr = 0;
1989 entry.polarity = 0; /* High */
1990 entry.delivery_status = 0;
1991 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001992 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001993 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001994 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001995
1996 /*
1997 * Add it to the IO-APIC irq-routing table:
1998 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001999 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002000 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002001
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002002 /*
2003 * Use virtual wire A mode when interrupt remapping is enabled.
2004 */
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04002005 if (cpu_has_apic)
2006 disconnect_bsp_APIC(!intr_remapping_enabled &&
2007 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008}
2009
Ingo Molnar54168ed2008-08-20 09:07:45 +02002010#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011/*
2012 * function to set the IO-APIC physical IDs based on the
2013 * values stored in the MPC table.
2014 *
2015 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2016 */
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018static void __init setup_ioapic_ids_from_mpc(void)
2019{
2020 union IO_APIC_reg_00 reg_00;
2021 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002022 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 int i;
2024 unsigned char old_id;
2025 unsigned long flags;
2026
Yinghai Lua4dbc342008-07-25 02:14:28 -07002027 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002028 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002031 * Don't check I/O APIC IDs for xAPIC systems. They have
2032 * no meaning without the serial APIC bus.
2033 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002034 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2035 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002036 return;
2037 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 * This is broken; anything with a real cpu count has to
2039 * circumvent this idiocy regardless.
2040 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002041 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 /*
2044 * Set the IOAPIC ID to the value stored in the MPC table.
2045 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002046 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /* Read the register 0 value */
2049 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002050 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002052
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002053 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002055 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002057 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2059 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002060 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 /*
2064 * Sanity check, is the ID really free? Every APIC in a
2065 * system must have a unique ID or we get lots of nice
2066 * 'stuck on smp_invalidate_needed IPI wait' messages.
2067 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002068 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002069 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002071 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 for (i = 0; i < get_physical_broadcast(); i++)
2073 if (!physid_isset(i, phys_id_present_map))
2074 break;
2075 if (i >= get_physical_broadcast())
2076 panic("Max APIC ID exceeded!\n");
2077 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2078 i);
2079 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002080 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 } else {
2082 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002083 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 apic_printk(APIC_VERBOSE, "Setting %d in the "
2085 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002086 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2088 }
2089
2090
2091 /*
2092 * We need to adjust the IRQ routing table
2093 * if the ID changed.
2094 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002095 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302097 if (mp_irqs[i].dstapic == old_id)
2098 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002099 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /*
2102 * Read the right value from the MPC table and
2103 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002104 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 apic_printk(APIC_VERBOSE, KERN_INFO
2106 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002107 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002109 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002111 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002112 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 /*
2115 * Sanity check
2116 */
2117 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002118 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002120 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 printk("could not set ID!\n");
2122 else
2123 apic_printk(APIC_VERBOSE, " ok.\n");
2124 }
2125}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002128int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002129
2130static int __init notimercheck(char *s)
2131{
2132 no_timer_check = 1;
2133 return 1;
2134}
2135__setup("no_timer_check", notimercheck);
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/*
2138 * There is a nasty bug in some older SMP boards, their mptable lies
2139 * about the timer IRQ. We do the following to work around the situation:
2140 *
2141 * - timer IRQ defaults to IO-APIC IRQ
2142 * - if this function detects that timer IRQs are defunct, then we fall
2143 * back to ISA timer IRQs
2144 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002145static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
2147 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002148 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Zachary Amsden8542b202006-12-07 02:14:09 +01002150 if (no_timer_check)
2151 return 1;
2152
Ingo Molnar4aae0702007-12-18 18:05:58 +01002153 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 local_irq_enable();
2155 /* Let ten ticks pass... */
2156 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002157 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 /*
2160 * Expect a few ticks at least, to be sure some possible
2161 * glue logic does not lock up after one or two first
2162 * ticks in a non-ExtINT mode. Also the local APIC
2163 * might have cached one ExtINT interrupt. Finally, at
2164 * least one tick may be lost due to delays.
2165 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002166
2167 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002168 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return 0;
2171}
2172
2173/*
2174 * In the SMP+IOAPIC case it might happen that there are an unspecified
2175 * number of pending IRQ events unhandled. These cases are very rare,
2176 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2177 * better to do it this way as thus we do not have to be aware of
2178 * 'pending' interrupts in the IRQ path, except at this point.
2179 */
2180/*
2181 * Edge triggered needs to resend any interrupt
2182 * that was delayed but this is now handled in the device
2183 * independent code.
2184 */
2185
2186/*
2187 * Starting up a edge-triggered IO-APIC interrupt is
2188 * nasty - we need to make sure that we get the edge.
2189 * If it is already asserted for some reason, we need
2190 * return 1 to indicate that is was pending.
2191 *
2192 * This is not complete - we should be able to fake
2193 * an edge even if it isn't on the 8259A...
2194 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002195
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002196static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
2198 int was_pending = 0;
2199 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002200 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002203 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 disable_8259A_irq(irq);
2205 if (i8259A_irq_pending(irq))
2206 was_pending = 1;
2207 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002208 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002209 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 spin_unlock_irqrestore(&ioapic_lock, flags);
2211
2212 return was_pending;
2213}
2214
Ingo Molnar54168ed2008-08-20 09:07:45 +02002215#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002216static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002218
2219 struct irq_cfg *cfg = irq_cfg(irq);
2220 unsigned long flags;
2221
2222 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002223 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002224 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002225
2226 return 1;
2227}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002228#else
2229static int ioapic_retrigger_irq(unsigned int irq)
2230{
Ingo Molnardac5f412009-01-28 15:42:24 +01002231 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002232
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002233 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002234}
2235#endif
2236
2237/*
2238 * Level and edge triggered IO-APIC interrupts need different handling,
2239 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2240 * handled with the level-triggered descriptor, but that one has slightly
2241 * more overhead. Level-triggered interrupts cannot be handled with the
2242 * edge-triggered handler, without risking IRQ storms and other ugly
2243 * races.
2244 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002245
Yinghai Lu497c9a12008-08-19 20:50:28 -07002246#ifdef CONFIG_SMP
Gary Hadee85abf82009-04-08 14:07:25 -07002247static void send_cleanup_vector(struct irq_cfg *cfg)
2248{
2249 cpumask_var_t cleanup_mask;
2250
2251 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2252 unsigned int i;
2253 cfg->move_cleanup_count = 0;
2254 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2255 cfg->move_cleanup_count++;
2256 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2257 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2258 } else {
2259 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2260 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
2261 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2262 free_cpumask_var(cleanup_mask);
2263 }
2264 cfg->move_in_progress = 0;
2265}
2266
Ingo Molnar44204712009-05-01 19:02:50 +02002267static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002268{
2269 int apic, pin;
2270 struct irq_pin_list *entry;
2271 u8 vector = cfg->vector;
2272
2273 entry = cfg->irq_2_pin;
2274 for (;;) {
2275 unsigned int reg;
2276
2277 if (!entry)
2278 break;
2279
2280 apic = entry->apic;
2281 pin = entry->pin;
2282 /*
2283 * With interrupt-remapping, destination information comes
2284 * from interrupt-remapping table entry.
2285 */
2286 if (!irq_remapped(irq))
2287 io_apic_write(apic, 0x11 + pin*2, dest);
2288 reg = io_apic_read(apic, 0x10 + pin*2);
2289 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2290 reg |= vector;
2291 io_apic_modify(apic, 0x10 + pin*2, reg);
2292 if (!entry->next)
2293 break;
2294 entry = entry->next;
2295 }
2296}
2297
Ingo Molnar44204712009-05-01 19:02:50 +02002298static int
2299assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
2300
Gary Hadee85abf82009-04-08 14:07:25 -07002301/*
2302 * Either sets desc->affinity to a valid value, and returns
2303 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2304 * leaves desc->affinity untouched.
2305 */
2306static unsigned int
2307set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
2308{
2309 struct irq_cfg *cfg;
2310 unsigned int irq;
2311
2312 if (!cpumask_intersects(mask, cpu_online_mask))
2313 return BAD_APICID;
2314
2315 irq = desc->irq;
2316 cfg = desc->chip_data;
2317 if (assign_irq_vector(irq, cfg, mask))
2318 return BAD_APICID;
2319
Gary Hadee85abf82009-04-08 14:07:25 -07002320 cpumask_copy(desc->affinity, mask);
2321
2322 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2323}
2324
Ingo Molnar44204712009-05-01 19:02:50 +02002325static int
Gary Hadee85abf82009-04-08 14:07:25 -07002326set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2327{
2328 struct irq_cfg *cfg;
2329 unsigned long flags;
2330 unsigned int dest;
2331 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002332 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002333
2334 irq = desc->irq;
2335 cfg = desc->chip_data;
2336
2337 spin_lock_irqsave(&ioapic_lock, flags);
2338 dest = set_desc_affinity(desc, mask);
2339 if (dest != BAD_APICID) {
2340 /* Only the high 8 bits are valid. */
2341 dest = SET_APIC_LOGICAL_ID(dest);
2342 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar44204712009-05-01 19:02:50 +02002343 ret = 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002344 }
2345 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002346
2347 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002348}
2349
Ingo Molnar44204712009-05-01 19:02:50 +02002350static int
Gary Hadee85abf82009-04-08 14:07:25 -07002351set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2352{
2353 struct irq_desc *desc;
2354
2355 desc = irq_to_desc(irq);
2356
Ingo Molnar44204712009-05-01 19:02:50 +02002357 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002358}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002359
2360#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002361
2362/*
2363 * Migrate the IO-APIC irq in the presence of intr-remapping.
2364 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002365 * For both level and edge triggered, irq migration is a simple atomic
2366 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002367 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002368 * For level triggered, we eliminate the io-apic RTE modification (with the
2369 * updated vector information), by using a virtual vector (io-apic pin number).
2370 * Real vector that is used for interrupting cpu will be coming from
2371 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002372 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002373static int
Mike Travise7986732008-12-16 17:33:52 -08002374migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002375{
2376 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002377 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002378 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002379 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002380 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002381
Mike Travis22f65d32008-12-16 17:33:56 -08002382 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002383 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002384
Yinghai Lu3145e942008-12-05 18:58:34 -08002385 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002387 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002388
Yinghai Lu3145e942008-12-05 18:58:34 -08002389 cfg = desc->chip_data;
2390 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002391 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392
Ingo Molnardebccb32009-01-28 15:20:18 +01002393 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002394
Ingo Molnar54168ed2008-08-20 09:07:45 +02002395 irte.vector = cfg->vector;
2396 irte.dest_id = IRTE_DEST(dest);
2397
2398 /*
2399 * Modified the IRTE and flushes the Interrupt entry cache.
2400 */
2401 modify_irte(irq, &irte);
2402
Mike Travis22f65d32008-12-16 17:33:56 -08002403 if (cfg->move_in_progress)
2404 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002405
Mike Travis7f7ace02009-01-10 21:58:08 -08002406 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002407
2408 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002409}
2410
Ingo Molnar54168ed2008-08-20 09:07:45 +02002411/*
2412 * Migrates the IRQ destination in the process context.
2413 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002414static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302415 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002416{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002417 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002418}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002419static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302420 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002421{
2422 struct irq_desc *desc = irq_to_desc(irq);
2423
Yinghai Lud5dedd42009-04-27 17:59:21 -07002424 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002425}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002426#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002427static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002428 const struct cpumask *mask)
2429{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002430 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002431}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002432#endif
2433
Yinghai Lu497c9a12008-08-19 20:50:28 -07002434asmlinkage void smp_irq_move_cleanup_interrupt(void)
2435{
2436 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002437
Yinghai Lu497c9a12008-08-19 20:50:28 -07002438 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002439 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002440 irq_enter();
2441
2442 me = smp_processor_id();
2443 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2444 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002445 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002446 struct irq_desc *desc;
2447 struct irq_cfg *cfg;
2448 irq = __get_cpu_var(vector_irq)[vector];
2449
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002450 if (irq == -1)
2451 continue;
2452
Yinghai Lu497c9a12008-08-19 20:50:28 -07002453 desc = irq_to_desc(irq);
2454 if (!desc)
2455 continue;
2456
2457 cfg = irq_cfg(irq);
2458 spin_lock(&desc->lock);
2459 if (!cfg->move_cleanup_count)
2460 goto unlock;
2461
Mike Travis22f65d32008-12-16 17:33:56 -08002462 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002463 goto unlock;
2464
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002465 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2466 /*
2467 * Check if the vector that needs to be cleanedup is
2468 * registered at the cpu's IRR. If so, then this is not
2469 * the best time to clean it up. Lets clean it up in the
2470 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2471 * to myself.
2472 */
2473 if (irr & (1 << (vector % 32))) {
2474 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2475 goto unlock;
2476 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002477 __get_cpu_var(vector_irq)[vector] = -1;
2478 cfg->move_cleanup_count--;
2479unlock:
2480 spin_unlock(&desc->lock);
2481 }
2482
2483 irq_exit();
2484}
2485
Yinghai Lu3145e942008-12-05 18:58:34 -08002486static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002487{
Yinghai Lu3145e942008-12-05 18:58:34 -08002488 struct irq_desc *desc = *descp;
2489 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002490 unsigned vector, me;
2491
Yinghai Lufcef5912009-04-27 17:58:23 -07002492 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002493 return;
2494
2495 vector = ~get_irq_regs()->orig_ax;
2496 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002497
Yinghai Lufcef5912009-04-27 17:58:23 -07002498 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002499 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002500}
2501#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002502static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002503#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002504
Yinghai Lu1d025192008-08-19 20:50:34 -07002505static void ack_apic_edge(unsigned int irq)
2506{
Yinghai Lu3145e942008-12-05 18:58:34 -08002507 struct irq_desc *desc = irq_to_desc(irq);
2508
2509 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002510 move_native_irq(irq);
2511 ack_APIC_irq();
2512}
2513
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002514atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002515
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002516static void ack_apic_level(unsigned int irq)
2517{
Yinghai Lu3145e942008-12-05 18:58:34 -08002518 struct irq_desc *desc = irq_to_desc(irq);
2519
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002520#ifdef CONFIG_X86_32
2521 unsigned long v;
2522 int i;
2523#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002524 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002525 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002526
Yinghai Lu3145e942008-12-05 18:58:34 -08002527 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002528#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002529 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002530 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002531 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002532 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002533 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002534#endif
2535
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002536#ifdef CONFIG_X86_32
2537 /*
2538 * It appears there is an erratum which affects at least version 0x11
2539 * of I/O APIC (that's the 82093AA and cores integrated into various
2540 * chipsets). Under certain conditions a level-triggered interrupt is
2541 * erroneously delivered as edge-triggered one but the respective IRR
2542 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2543 * message but it will never arrive and further interrupts are blocked
2544 * from the source. The exact reason is so far unknown, but the
2545 * phenomenon was observed when two consecutive interrupt requests
2546 * from a given source get delivered to the same CPU and the source is
2547 * temporarily disabled in between.
2548 *
2549 * A workaround is to simulate an EOI message manually. We achieve it
2550 * by setting the trigger mode to edge and then to level when the edge
2551 * trigger mode gets detected in the TMR of a local APIC for a
2552 * level-triggered interrupt. We mask the source for the time of the
2553 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2554 * The idea is from Manfred Spraul. --macro
2555 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002556 cfg = desc->chip_data;
2557 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002558
2559 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2560#endif
2561
Ingo Molnar54168ed2008-08-20 09:07:45 +02002562 /*
2563 * We must acknowledge the irq before we move it or the acknowledge will
2564 * not propagate properly.
2565 */
2566 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002567
Ingo Molnar54168ed2008-08-20 09:07:45 +02002568 /* Now we can move and renable the irq */
2569 if (unlikely(do_unmask_irq)) {
2570 /* Only migrate the irq if the ack has been received.
2571 *
2572 * On rare occasions the broadcast level triggered ack gets
2573 * delayed going to ioapics, and if we reprogram the
2574 * vector while Remote IRR is still set the irq will never
2575 * fire again.
2576 *
2577 * To prevent this scenario we read the Remote IRR bit
2578 * of the ioapic. This has two effects.
2579 * - On any sane system the read of the ioapic will
2580 * flush writes (and acks) going to the ioapic from
2581 * this cpu.
2582 * - We get to see if the ACK has actually been delivered.
2583 *
2584 * Based on failed experiments of reprogramming the
2585 * ioapic entry from outside of irq context starting
2586 * with masking the ioapic entry and then polling until
2587 * Remote IRR was clear before reprogramming the
2588 * ioapic I don't trust the Remote IRR bit to be
2589 * completey accurate.
2590 *
2591 * However there appears to be no other way to plug
2592 * this race, so if the Remote IRR bit is not
2593 * accurate and is causing problems then it is a hardware bug
2594 * and you can go talk to the chipset vendor about it.
2595 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002596 cfg = desc->chip_data;
2597 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002598 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002599 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002600 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002601
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002602#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002603 if (!(v & (1 << (i & 0x1f)))) {
2604 atomic_inc(&irq_mis_count);
2605 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002606 __mask_and_edge_IO_APIC_irq(cfg);
2607 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002608 spin_unlock(&ioapic_lock);
2609 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002610#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002611}
Yinghai Lu1d025192008-08-19 20:50:34 -07002612
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002613#ifdef CONFIG_INTR_REMAP
Suresh Siddha25629d82009-04-20 13:02:28 -07002614static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2615{
2616 int apic, pin;
2617 struct irq_pin_list *entry;
2618
2619 entry = cfg->irq_2_pin;
2620 for (;;) {
2621
2622 if (!entry)
2623 break;
2624
2625 apic = entry->apic;
2626 pin = entry->pin;
2627 io_apic_eoi(apic, pin);
2628 entry = entry->next;
2629 }
2630}
2631
2632static void
2633eoi_ioapic_irq(struct irq_desc *desc)
2634{
2635 struct irq_cfg *cfg;
2636 unsigned long flags;
2637 unsigned int irq;
2638
2639 irq = desc->irq;
2640 cfg = desc->chip_data;
2641
2642 spin_lock_irqsave(&ioapic_lock, flags);
2643 __eoi_ioapic_irq(irq, cfg);
2644 spin_unlock_irqrestore(&ioapic_lock, flags);
2645}
2646
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002647static void ir_ack_apic_edge(unsigned int irq)
2648{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002649 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002650}
2651
2652static void ir_ack_apic_level(unsigned int irq)
2653{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002654 struct irq_desc *desc = irq_to_desc(irq);
2655
2656 ack_APIC_irq();
2657 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002658}
2659#endif /* CONFIG_INTR_REMAP */
2660
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002661static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002662 .name = "IO-APIC",
2663 .startup = startup_ioapic_irq,
2664 .mask = mask_IO_APIC_irq,
2665 .unmask = unmask_IO_APIC_irq,
2666 .ack = ack_apic_edge,
2667 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002668#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002669 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002670#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002671 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672};
2673
Ingo Molnar54168ed2008-08-20 09:07:45 +02002674static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002675 .name = "IR-IO-APIC",
2676 .startup = startup_ioapic_irq,
2677 .mask = mask_IO_APIC_irq,
2678 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302679#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002680 .ack = ir_ack_apic_edge,
2681 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002682#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002683 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002684#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302685#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002686 .retrigger = ioapic_retrigger_irq,
2687};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
2689static inline void init_IO_APIC_traps(void)
2690{
2691 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002692 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002693 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 /*
2696 * NOTE! The local APIC isn't very good at handling
2697 * multiple interrupts at the same interrupt level.
2698 * As the interrupt level is determined by taking the
2699 * vector number and shifting that right by 4, we
2700 * want to spread these out a bit so that they don't
2701 * all fall in the same interrupt level.
2702 *
2703 * Also, we've got to be careful not to trash gate
2704 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2705 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002706 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002707 cfg = desc->chip_data;
2708 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 /*
2710 * Hmm.. We don't have an entry for this,
2711 * so default to an old-fashioned 8259
2712 * interrupt if we can..
2713 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002714 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002716 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002718 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 }
2720 }
2721}
2722
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002723/*
2724 * The local APIC irq-chip implementation:
2725 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002727static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728{
2729 unsigned long v;
2730
2731 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002732 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733}
2734
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002735static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002737 unsigned long v;
2738
2739 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002740 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
Yinghai Lu3145e942008-12-05 18:58:34 -08002743static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002744{
2745 ack_APIC_irq();
2746}
2747
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002748static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002749 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002750 .mask = mask_lapic_irq,
2751 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002752 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753};
2754
Yinghai Lu3145e942008-12-05 18:58:34 -08002755static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002756{
Yinghai Lu08678b02008-08-19 20:50:05 -07002757 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002758 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2759 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002760}
2761
Jan Beuliche9427102008-01-30 13:31:24 +01002762static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
2764 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002765 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 * We put the 8259A master into AEOI mode and
2767 * unmask on all local APICs LVT0 as NMI.
2768 *
2769 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2770 * is from Maciej W. Rozycki - so we do not have to EOI from
2771 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2774
Jan Beuliche9427102008-01-30 13:31:24 +01002775 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 apic_printk(APIC_VERBOSE, " done.\n");
2778}
2779
2780/*
2781 * This looks a bit hackish but it's about the only one way of sending
2782 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2783 * not support the ExtINT mode, unfortunately. We need to send these
2784 * cycles as some i82489DX-based boards have glue logic that keeps the
2785 * 8259A interrupt line asserted until INTA. --macro
2786 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002787static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002789 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 struct IO_APIC_route_entry entry0, entry1;
2791 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002793 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002794 if (pin == -1) {
2795 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002797 }
2798 apic = find_isa_irq_apic(8, mp_INT);
2799 if (apic == -1) {
2800 WARN_ON_ONCE(1);
2801 return;
2802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Andi Kleencf4c6a22006-09-26 10:52:30 +02002804 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002805 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
2807 memset(&entry1, 0, sizeof(entry1));
2808
2809 entry1.dest_mode = 0; /* physical delivery */
2810 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002811 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 entry1.delivery_mode = dest_ExtINT;
2813 entry1.polarity = entry0.polarity;
2814 entry1.trigger = 0;
2815 entry1.vector = 0;
2816
Andi Kleencf4c6a22006-09-26 10:52:30 +02002817 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 save_control = CMOS_READ(RTC_CONTROL);
2820 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2821 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2822 RTC_FREQ_SELECT);
2823 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2824
2825 i = 100;
2826 while (i-- > 0) {
2827 mdelay(10);
2828 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2829 i -= 10;
2830 }
2831
2832 CMOS_WRITE(save_control, RTC_CONTROL);
2833 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002834 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Andi Kleencf4c6a22006-09-26 10:52:30 +02002836 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Yinghai Luefa25592008-08-19 20:50:36 -07002839static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002840/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002841static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002842{
2843 disable_timer_pin_1 = 1;
2844 return 0;
2845}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002846early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002847
2848int timer_through_8259 __initdata;
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850/*
2851 * This code may look a bit paranoid, but it's supposed to cooperate with
2852 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2853 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2854 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002855 *
2856 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002858static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
Yinghai Lu3145e942008-12-05 18:58:34 -08002860 struct irq_desc *desc = irq_to_desc(0);
2861 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002862 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002863 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002864 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002865 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002866
2867 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 /*
2870 * get/set the timer IRQ vector:
2871 */
2872 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002873 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002876 * As IRQ0 is to be enabled in the 8259A, the virtual
2877 * wire has to be disabled in the local APIC. Also
2878 * timer interrupts need to be acknowledged manually in
2879 * the 8259A for the i82489DX when using the NMI
2880 * watchdog as that APIC treats NMIs as level-triggered.
2881 * The AEOI mode will finish them in the 8259A
2882 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002884 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002886#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002887 {
2888 unsigned int ver;
2889
2890 ver = apic_read(APIC_LVR);
2891 ver = GET_APIC_VERSION(ver);
2892 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2893 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002894#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002896 pin1 = find_isa_irq_pin(0, mp_INT);
2897 apic1 = find_isa_irq_apic(0, mp_INT);
2898 pin2 = ioapic_i8259.pin;
2899 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002901 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2902 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002903 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002905 /*
2906 * Some BIOS writers are clueless and report the ExtINTA
2907 * I/O APIC input from the cascaded 8259A as the timer
2908 * interrupt input. So just in case, if only one pin
2909 * was found above, try it both directly and through the
2910 * 8259A.
2911 */
2912 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002913 if (intr_remapping_enabled)
2914 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002915 pin1 = pin2;
2916 apic1 = apic2;
2917 no_pin1 = 1;
2918 } else if (pin2 == -1) {
2919 pin2 = pin1;
2920 apic2 = apic1;
2921 }
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 if (pin1 != -1) {
2924 /*
2925 * Ok, does IRQ0 through the IOAPIC work?
2926 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002927 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002928 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002929 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002930 } else {
2931 /* for edge trigger, setup_IO_APIC_irq already
2932 * leave it unmasked.
2933 * so only need to unmask if it is level-trigger
2934 * do we really have level trigger timer?
2935 */
2936 int idx;
2937 idx = find_irq_entry(apic1, pin1, mp_INT);
2938 if (idx != -1 && irq_trigger(idx))
2939 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 if (timer_irq_works()) {
2942 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 setup_nmi();
2944 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002946 if (disable_timer_pin_1 > 0)
2947 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002950 if (intr_remapping_enabled)
2951 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002952 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002953 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002954 if (!no_pin1)
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002955 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2956 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002958 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2959 "(IRQ0) through the 8259A ...\n");
2960 apic_printk(APIC_QUIET, KERN_INFO
2961 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 /*
2963 * legacy devices should be connected to IO APIC #0
2964 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002965 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002966 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002967 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002969 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002970 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002972 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002974 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
2978 /*
2979 * Cleanup, just in case ...
2980 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002981 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002982 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002983 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002984 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002988 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2989 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002990 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002992#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002993 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002994#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002996 apic_printk(APIC_QUIET, KERN_INFO
2997 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Yinghai Lu3145e942008-12-05 18:58:34 -08002999 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003000 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 enable_8259A_irq(0);
3002
3003 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003004 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003005 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003007 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003008 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003009 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003010 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003012 apic_printk(APIC_QUIET, KERN_INFO
3013 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 init_8259A(0);
3016 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003017 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019 unlock_ExtINT_logic();
3020
3021 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003022 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003023 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003025 local_irq_disable();
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003026 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003028 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003029out:
3030 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031}
3032
3033/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003034 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3035 * to devices. However there may be an I/O APIC pin available for
3036 * this interrupt regardless. The pin may be left unconnected, but
3037 * typically it will be reused as an ExtINT cascade interrupt for
3038 * the master 8259A. In the MPS case such a pin will normally be
3039 * reported as an ExtINT interrupt in the MP table. With ACPI
3040 * there is no provision for ExtINT interrupts, and in the absence
3041 * of an override it would be treated as an ordinary ISA I/O APIC
3042 * interrupt, that is edge-triggered and unmasked by default. We
3043 * used to do this, but it caused problems on some systems because
3044 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3045 * the same ExtINT cascade interrupt to drive the local APIC of the
3046 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3047 * the I/O APIC in all cases now. No actual device should request
3048 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 */
3050#define PIC_IRQS (1 << PIC_CASCADE_IR)
3051
3052void __init setup_IO_APIC(void)
3053{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003054
Ingo Molnar54168ed2008-08-20 09:07:45 +02003055 /*
3056 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3057 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003059 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Ingo Molnar54168ed2008-08-20 09:07:45 +02003061 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003062 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003063 * Set up IO-APIC IRQ routing.
3064 */
3065#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003066 if (!acpi_ioapic)
3067 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003068#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 sync_Arb_IDs();
3070 setup_IO_APIC_irqs();
3071 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003072 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073}
3074
3075/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003076 * Called after all the initialization is done. If we didnt find any
3077 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080static int __init io_apic_bug_finalize(void)
3081{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003082 if (sis_apic_bug == -1)
3083 sis_apic_bug = 0;
3084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085}
3086
3087late_initcall(io_apic_bug_finalize);
3088
3089struct sysfs_ioapic_data {
3090 struct sys_device dev;
3091 struct IO_APIC_route_entry entry[0];
3092};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003093static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Pavel Machek438510f2005-04-16 15:25:24 -07003095static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 struct IO_APIC_route_entry *entry;
3098 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 data = container_of(dev, struct sysfs_ioapic_data, dev);
3102 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003103 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3104 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 return 0;
3107}
3108
3109static int ioapic_resume(struct sys_device *dev)
3110{
3111 struct IO_APIC_route_entry *entry;
3112 struct sysfs_ioapic_data *data;
3113 unsigned long flags;
3114 union IO_APIC_reg_00 reg_00;
3115 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 data = container_of(dev, struct sysfs_ioapic_data, dev);
3118 entry = data->entry;
3119
3120 spin_lock_irqsave(&ioapic_lock, flags);
3121 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05303122 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3123 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 io_apic_write(dev->id, 0, reg_00.raw);
3125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003127 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003128 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
3130 return 0;
3131}
3132
3133static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +01003134 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 .suspend = ioapic_suspend,
3136 .resume = ioapic_resume,
3137};
3138
3139static int __init ioapic_init_sysfs(void)
3140{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003141 struct sys_device * dev;
3142 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 error = sysdev_class_register(&ioapic_sysdev_class);
3145 if (error)
3146 return error;
3147
Ingo Molnar54168ed2008-08-20 09:07:45 +02003148 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003149 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003151 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 if (!mp_ioapic_data[i]) {
3153 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3154 continue;
3155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003157 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 dev->cls = &ioapic_sysdev_class;
3159 error = sysdev_register(dev);
3160 if (error) {
3161 kfree(mp_ioapic_data[i]);
3162 mp_ioapic_data[i] = NULL;
3163 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3164 continue;
3165 }
3166 }
3167
3168 return 0;
3169}
3170
3171device_initcall(ioapic_init_sysfs);
3172
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003173static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003174/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003175 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003176 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003177unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003178{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003179 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003180 unsigned int irq;
3181 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003182 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003183 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003184 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003185
3186 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003187 if (irq_want < nr_irqs_gsi)
3188 irq_want = nr_irqs_gsi;
3189
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003190 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003191 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003192 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003193 if (!desc_new) {
3194 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003195 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003196 }
3197 cfg_new = desc_new->chip_data;
3198
3199 if (cfg_new->vector != 0)
3200 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003201
Yinghai Lu15e957d2009-04-30 01:17:50 -07003202 desc_new = move_irq_desc(desc_new, node);
Yinghai Lud047f53a2009-04-27 18:02:23 -07003203
Ingo Molnarfe402e12009-01-28 04:32:51 +01003204 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003205 irq = new;
3206 break;
3207 }
3208 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003209
Yinghai Lu199751d2008-08-19 20:50:27 -07003210 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003211 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003212 /* restore it, in case dynamic_irq_init clear it */
3213 if (desc_new)
3214 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003215 }
3216 return irq;
3217}
3218
Yinghai Lu199751d2008-08-19 20:50:27 -07003219int create_irq(void)
3220{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003221 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003222 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003223 int irq;
3224
Yinghai Lube5d5352008-12-05 18:58:33 -08003225 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003226 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003227
3228 if (irq == 0)
3229 irq = -1;
3230
3231 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003232}
3233
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003234void destroy_irq(unsigned int irq)
3235{
3236 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003237 struct irq_cfg *cfg;
3238 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003239
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003240 /* store it, in case dynamic_irq_cleanup clear it */
3241 desc = irq_to_desc(irq);
3242 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003243 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003244 /* connect back irq_cfg */
3245 if (desc)
3246 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003247
Ingo Molnar54168ed2008-08-20 09:07:45 +02003248 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003249 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003250 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003251 spin_unlock_irqrestore(&vector_lock, flags);
3252}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003253
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003254/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003255 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003256 */
3257#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003258static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003259{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003260 struct irq_cfg *cfg;
3261 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003262 unsigned dest;
3263
Jan Beulichf1182632009-01-14 12:27:35 +00003264 if (disable_apic)
3265 return -ENXIO;
3266
Yinghai Lu3145e942008-12-05 18:58:34 -08003267 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003268 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003269 if (err)
3270 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003271
Ingo Molnardebccb32009-01-28 15:20:18 +01003272 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003273
Ingo Molnar54168ed2008-08-20 09:07:45 +02003274 if (irq_remapped(irq)) {
3275 struct irte irte;
3276 int ir_index;
3277 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003278
Ingo Molnar54168ed2008-08-20 09:07:45 +02003279 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3280 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003281
Ingo Molnar54168ed2008-08-20 09:07:45 +02003282 memset (&irte, 0, sizeof(irte));
3283
3284 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003285 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003286 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003287 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003288 irte.vector = cfg->vector;
3289 irte.dest_id = IRTE_DEST(dest);
3290
Weidong Hanf007e992009-05-23 00:41:15 +08003291 /* Set source-id of interrupt request */
3292 set_msi_sid(&irte, pdev);
3293
Ingo Molnar54168ed2008-08-20 09:07:45 +02003294 modify_irte(irq, &irte);
3295
3296 msg->address_hi = MSI_ADDR_BASE_HI;
3297 msg->data = sub_handle;
3298 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3299 MSI_ADDR_IR_SHV |
3300 MSI_ADDR_IR_INDEX1(ir_index) |
3301 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003302 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003303 if (x2apic_enabled())
3304 msg->address_hi = MSI_ADDR_BASE_HI |
3305 MSI_ADDR_EXT_DEST_ID(dest);
3306 else
3307 msg->address_hi = MSI_ADDR_BASE_HI;
3308
Ingo Molnar54168ed2008-08-20 09:07:45 +02003309 msg->address_lo =
3310 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003311 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003312 MSI_ADDR_DEST_MODE_PHYSICAL:
3313 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003314 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003315 MSI_ADDR_REDIRECTION_CPU:
3316 MSI_ADDR_REDIRECTION_LOWPRI) |
3317 MSI_ADDR_DEST_ID(dest);
3318
3319 msg->data =
3320 MSI_DATA_TRIGGER_EDGE |
3321 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003322 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003323 MSI_DATA_DELIVERY_FIXED:
3324 MSI_DATA_DELIVERY_LOWPRI) |
3325 MSI_DATA_VECTOR(cfg->vector);
3326 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003327 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003328}
3329
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003330#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003331static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003332{
Yinghai Lu3145e942008-12-05 18:58:34 -08003333 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003334 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003335 struct msi_msg msg;
3336 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003337
Mike Travis22f65d32008-12-16 17:33:56 -08003338 dest = set_desc_affinity(desc, mask);
3339 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003340 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003341
Yinghai Lu3145e942008-12-05 18:58:34 -08003342 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003343
Yinghai Lu3145e942008-12-05 18:58:34 -08003344 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003345
3346 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003347 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003348 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3349 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3350
Yinghai Lu3145e942008-12-05 18:58:34 -08003351 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003352
3353 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003354}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003355#ifdef CONFIG_INTR_REMAP
3356/*
3357 * Migrate the MSI irq to another cpumask. This migration is
3358 * done in the process context using interrupt-remapping hardware.
3359 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003360static int
Mike Travise7986732008-12-16 17:33:52 -08003361ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003362{
Yinghai Lu3145e942008-12-05 18:58:34 -08003363 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003364 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003365 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003366 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003367
3368 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003369 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003370
Mike Travis22f65d32008-12-16 17:33:56 -08003371 dest = set_desc_affinity(desc, mask);
3372 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003373 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003374
Ingo Molnar54168ed2008-08-20 09:07:45 +02003375 irte.vector = cfg->vector;
3376 irte.dest_id = IRTE_DEST(dest);
3377
3378 /*
3379 * atomically update the IRTE with the new destination and vector.
3380 */
3381 modify_irte(irq, &irte);
3382
3383 /*
3384 * After this point, all the interrupts will start arriving
3385 * at the new destination. So, time to cleanup the previous
3386 * vector allocation.
3387 */
Mike Travis22f65d32008-12-16 17:33:56 -08003388 if (cfg->move_in_progress)
3389 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003390
3391 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003392}
Yinghai Lu3145e942008-12-05 18:58:34 -08003393
Ingo Molnar54168ed2008-08-20 09:07:45 +02003394#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003395#endif /* CONFIG_SMP */
3396
3397/*
3398 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3399 * which implement the MSI or MSI-X Capability Structure.
3400 */
3401static struct irq_chip msi_chip = {
3402 .name = "PCI-MSI",
3403 .unmask = unmask_msi_irq,
3404 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003405 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003406#ifdef CONFIG_SMP
3407 .set_affinity = set_msi_irq_affinity,
3408#endif
3409 .retrigger = ioapic_retrigger_irq,
3410};
3411
Ingo Molnar54168ed2008-08-20 09:07:45 +02003412static struct irq_chip msi_ir_chip = {
3413 .name = "IR-PCI-MSI",
3414 .unmask = unmask_msi_irq,
3415 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303416#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003417 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003418#ifdef CONFIG_SMP
3419 .set_affinity = ir_set_msi_irq_affinity,
3420#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303421#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003422 .retrigger = ioapic_retrigger_irq,
3423};
3424
3425/*
3426 * Map the PCI dev to the corresponding remapping hardware unit
3427 * and allocate 'nvec' consecutive interrupt-remapping table entries
3428 * in it.
3429 */
3430static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3431{
3432 struct intel_iommu *iommu;
3433 int index;
3434
3435 iommu = map_dev_to_ir(dev);
3436 if (!iommu) {
3437 printk(KERN_ERR
3438 "Unable to map PCI %s to iommu\n", pci_name(dev));
3439 return -ENOENT;
3440 }
3441
3442 index = alloc_irte(iommu, irq, nvec);
3443 if (index < 0) {
3444 printk(KERN_ERR
3445 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003446 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003447 return -ENOSPC;
3448 }
3449 return index;
3450}
Yinghai Lu1d025192008-08-19 20:50:34 -07003451
Yinghai Lu3145e942008-12-05 18:58:34 -08003452static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003453{
3454 int ret;
3455 struct msi_msg msg;
3456
3457 ret = msi_compose_msg(dev, irq, &msg);
3458 if (ret < 0)
3459 return ret;
3460
Yinghai Lu3145e942008-12-05 18:58:34 -08003461 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003462 write_msi_msg(irq, &msg);
3463
Ingo Molnar54168ed2008-08-20 09:07:45 +02003464 if (irq_remapped(irq)) {
3465 struct irq_desc *desc = irq_to_desc(irq);
3466 /*
3467 * irq migration in process context
3468 */
3469 desc->status |= IRQ_MOVE_PCNTXT;
3470 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3471 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003473
Yinghai Luc81bba42008-09-25 11:53:11 -07003474 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3475
Yinghai Lu1d025192008-08-19 20:50:34 -07003476 return 0;
3477}
3478
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003479int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3480{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003481 unsigned int irq;
3482 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003483 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003484 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003485 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003486 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003487 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003488
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003489 /* x86 doesn't support multiple MSI yet */
3490 if (type == PCI_CAP_ID_MSI && nvec > 1)
3491 return 1;
3492
Yinghai Lud047f53a2009-04-27 18:02:23 -07003493 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003494 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003495 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003496 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003497 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003498 if (irq == 0)
3499 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003500 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003501 if (!intr_remapping_enabled)
3502 goto no_ir;
3503
3504 if (!sub_handle) {
3505 /*
3506 * allocate the consecutive block of IRTE's
3507 * for 'nvec'
3508 */
3509 index = msi_alloc_irte(dev, irq, nvec);
3510 if (index < 0) {
3511 ret = index;
3512 goto error;
3513 }
3514 } else {
3515 iommu = map_dev_to_ir(dev);
3516 if (!iommu) {
3517 ret = -ENOENT;
3518 goto error;
3519 }
3520 /*
3521 * setup the mapping between the irq and the IRTE
3522 * base index, the sub_handle pointing to the
3523 * appropriate interrupt remap table entry.
3524 */
3525 set_irte_irq(irq, iommu, index, sub_handle);
3526 }
3527no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003528 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003529 if (ret < 0)
3530 goto error;
3531 sub_handle++;
3532 }
3533 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003534
3535error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003536 destroy_irq(irq);
3537 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003538}
3539
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003540void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003541{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003542 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003543}
3544
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003545#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003546#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003547static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003548{
Yinghai Lu3145e942008-12-05 18:58:34 -08003549 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003550 struct irq_cfg *cfg;
3551 struct msi_msg msg;
3552 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003553
Mike Travis22f65d32008-12-16 17:33:56 -08003554 dest = set_desc_affinity(desc, mask);
3555 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003556 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003557
Yinghai Lu3145e942008-12-05 18:58:34 -08003558 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003559
3560 dmar_msi_read(irq, &msg);
3561
3562 msg.data &= ~MSI_DATA_VECTOR_MASK;
3563 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3564 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3565 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3566
3567 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003568
3569 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003570}
Yinghai Lu3145e942008-12-05 18:58:34 -08003571
Ingo Molnar54168ed2008-08-20 09:07:45 +02003572#endif /* CONFIG_SMP */
3573
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003574static struct irq_chip dmar_msi_type = {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003575 .name = "DMAR_MSI",
3576 .unmask = dmar_msi_unmask,
3577 .mask = dmar_msi_mask,
3578 .ack = ack_apic_edge,
3579#ifdef CONFIG_SMP
3580 .set_affinity = dmar_msi_set_affinity,
3581#endif
3582 .retrigger = ioapic_retrigger_irq,
3583};
3584
3585int arch_setup_dmar_msi(unsigned int irq)
3586{
3587 int ret;
3588 struct msi_msg msg;
3589
3590 ret = msi_compose_msg(NULL, irq, &msg);
3591 if (ret < 0)
3592 return ret;
3593 dmar_msi_write(irq, &msg);
3594 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3595 "edge");
3596 return 0;
3597}
3598#endif
3599
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003600#ifdef CONFIG_HPET_TIMER
3601
3602#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003603static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003604{
Yinghai Lu3145e942008-12-05 18:58:34 -08003605 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003606 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003607 struct msi_msg msg;
3608 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003609
Mike Travis22f65d32008-12-16 17:33:56 -08003610 dest = set_desc_affinity(desc, mask);
3611 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003612 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003613
Yinghai Lu3145e942008-12-05 18:58:34 -08003614 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003615
3616 hpet_msi_read(irq, &msg);
3617
3618 msg.data &= ~MSI_DATA_VECTOR_MASK;
3619 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3620 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3621 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3622
3623 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003624
3625 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003626}
Yinghai Lu3145e942008-12-05 18:58:34 -08003627
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003628#endif /* CONFIG_SMP */
3629
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003630static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003631 .name = "HPET_MSI",
3632 .unmask = hpet_msi_unmask,
3633 .mask = hpet_msi_mask,
3634 .ack = ack_apic_edge,
3635#ifdef CONFIG_SMP
3636 .set_affinity = hpet_msi_set_affinity,
3637#endif
3638 .retrigger = ioapic_retrigger_irq,
3639};
3640
3641int arch_setup_hpet_msi(unsigned int irq)
3642{
3643 int ret;
3644 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003645 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003646
3647 ret = msi_compose_msg(NULL, irq, &msg);
3648 if (ret < 0)
3649 return ret;
3650
3651 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003652 desc->status |= IRQ_MOVE_PCNTXT;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003653 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3654 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003655
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003656 return 0;
3657}
3658#endif
3659
Ingo Molnar54168ed2008-08-20 09:07:45 +02003660#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003661/*
3662 * Hypertransport interrupt support
3663 */
3664#ifdef CONFIG_HT_IRQ
3665
3666#ifdef CONFIG_SMP
3667
Yinghai Lu497c9a12008-08-19 20:50:28 -07003668static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003669{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003670 struct ht_irq_msg msg;
3671 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003672
Yinghai Lu497c9a12008-08-19 20:50:28 -07003673 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003674 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003675
Yinghai Lu497c9a12008-08-19 20:50:28 -07003676 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003677 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003678
Eric W. Biedermanec683072006-11-08 17:44:57 -08003679 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003680}
3681
Yinghai Lud5dedd42009-04-27 17:59:21 -07003682static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003683{
Yinghai Lu3145e942008-12-05 18:58:34 -08003684 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003685 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003686 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003687
Mike Travis22f65d32008-12-16 17:33:56 -08003688 dest = set_desc_affinity(desc, mask);
3689 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003690 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003691
Yinghai Lu3145e942008-12-05 18:58:34 -08003692 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003693
Yinghai Lu497c9a12008-08-19 20:50:28 -07003694 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003695
3696 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003697}
Yinghai Lu3145e942008-12-05 18:58:34 -08003698
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003699#endif
3700
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003701static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003702 .name = "PCI-HT",
3703 .mask = mask_ht_irq,
3704 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003705 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003706#ifdef CONFIG_SMP
3707 .set_affinity = set_ht_irq_affinity,
3708#endif
3709 .retrigger = ioapic_retrigger_irq,
3710};
3711
3712int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3713{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003714 struct irq_cfg *cfg;
3715 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003716
Jan Beulichf1182632009-01-14 12:27:35 +00003717 if (disable_apic)
3718 return -ENXIO;
3719
Yinghai Lu3145e942008-12-05 18:58:34 -08003720 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003721 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003722 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003723 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003724 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003725
Ingo Molnardebccb32009-01-28 15:20:18 +01003726 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3727 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003728
Eric W. Biedermanec683072006-11-08 17:44:57 -08003729 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003730
Eric W. Biedermanec683072006-11-08 17:44:57 -08003731 msg.address_lo =
3732 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003733 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003734 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003735 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003736 HT_IRQ_LOW_DM_PHYSICAL :
3737 HT_IRQ_LOW_DM_LOGICAL) |
3738 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003739 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003740 HT_IRQ_LOW_MT_FIXED :
3741 HT_IRQ_LOW_MT_ARBITRATED) |
3742 HT_IRQ_LOW_IRQ_MASKED;
3743
Eric W. Biedermanec683072006-11-08 17:44:57 -08003744 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003745
Ingo Molnara460e742006-10-17 00:10:03 -07003746 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3747 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003748
3749 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003750 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003751 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003752}
3753#endif /* CONFIG_HT_IRQ */
3754
Nick Piggin03b48632009-01-20 04:36:04 +01003755#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003756/*
3757 * Re-target the irq to the specified CPU and enable the specified MMR located
3758 * on the specified blade to allow the sending of MSIs to the specified CPU.
3759 */
3760int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3761 unsigned long mmr_offset)
3762{
Mike Travis22f65d32008-12-16 17:33:56 -08003763 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003764 struct irq_cfg *cfg;
3765 int mmr_pnode;
3766 unsigned long mmr_value;
3767 struct uv_IO_APIC_route_entry *entry;
3768 unsigned long flags;
3769 int err;
3770
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003771 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3772
Yinghai Lu3145e942008-12-05 18:58:34 -08003773 cfg = irq_cfg(irq);
3774
Mike Travise7986732008-12-16 17:33:52 -08003775 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003776 if (err != 0)
3777 return err;
3778
3779 spin_lock_irqsave(&vector_lock, flags);
3780 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3781 irq_name);
3782 spin_unlock_irqrestore(&vector_lock, flags);
3783
Dean Nelson4173a0e2008-10-02 12:18:21 -05003784 mmr_value = 0;
3785 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003786 entry->vector = cfg->vector;
3787 entry->delivery_mode = apic->irq_delivery_mode;
3788 entry->dest_mode = apic->irq_dest_mode;
3789 entry->polarity = 0;
3790 entry->trigger = 0;
3791 entry->mask = 0;
3792 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003793
3794 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3795 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3796
3797 return irq;
3798}
3799
3800/*
3801 * Disable the specified MMR located on the specified blade so that MSIs are
3802 * longer allowed to be sent.
3803 */
3804void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3805{
3806 unsigned long mmr_value;
3807 struct uv_IO_APIC_route_entry *entry;
3808 int mmr_pnode;
3809
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003810 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3811
Dean Nelson4173a0e2008-10-02 12:18:21 -05003812 mmr_value = 0;
3813 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003814 entry->mask = 1;
3815
3816 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3817 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3818}
3819#endif /* CONFIG_X86_64 */
3820
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003821int __init io_apic_get_redir_entries (int ioapic)
3822{
3823 union IO_APIC_reg_01 reg_01;
3824 unsigned long flags;
3825
3826 spin_lock_irqsave(&ioapic_lock, flags);
3827 reg_01.raw = io_apic_read(ioapic, 1);
3828 spin_unlock_irqrestore(&ioapic_lock, flags);
3829
3830 return reg_01.bits.entries;
3831}
3832
Yinghai Lube5d5352008-12-05 18:58:33 -08003833void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003834{
Yinghai Lube5d5352008-12-05 18:58:33 -08003835 int nr = 0;
3836
Yinghai Lucc6c5002009-02-08 16:18:03 -08003837 nr = acpi_probe_gsi();
3838 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003839 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003840 } else {
3841 /* for acpi=off or acpi is not compiled in */
3842 int idx;
3843
3844 nr = 0;
3845 for (idx = 0; idx < nr_ioapics; idx++)
3846 nr += io_apic_get_redir_entries(idx) + 1;
3847
3848 if (nr > nr_irqs_gsi)
3849 nr_irqs_gsi = nr;
3850 }
3851
3852 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003853}
3854
Yinghai Lu4a046d12009-01-12 17:39:24 -08003855#ifdef CONFIG_SPARSE_IRQ
3856int __init arch_probe_nr_irqs(void)
3857{
3858 int nr;
3859
Yinghai Luf1ee5542009-02-08 16:18:03 -08003860 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3861 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003862
Yinghai Luf1ee5542009-02-08 16:18:03 -08003863 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3864#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3865 /*
3866 * for MSI and HT dyn irq
3867 */
3868 nr += nr_irqs_gsi * 16;
3869#endif
3870 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003871 nr_irqs = nr;
3872
3873 return 0;
3874}
3875#endif
3876
Yinghai Lue5198072009-05-15 13:05:16 -07003877static int __io_apic_set_pci_routing(struct device *dev, int irq,
3878 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003879{
3880 struct irq_desc *desc;
3881 struct irq_cfg *cfg;
3882 int node;
Yinghai Lue5198072009-05-15 13:05:16 -07003883 int ioapic, pin;
3884 int trigger, polarity;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003885
Yinghai Lue5198072009-05-15 13:05:16 -07003886 ioapic = irq_attr->ioapic;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003887 if (!IO_APIC_IRQ(irq)) {
3888 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3889 ioapic);
3890 return -EINVAL;
3891 }
3892
3893 if (dev)
3894 node = dev_to_node(dev);
3895 else
3896 node = cpu_to_node(boot_cpu_id);
3897
3898 desc = irq_to_desc_alloc_node(irq, node);
3899 if (!desc) {
3900 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3901 return 0;
3902 }
3903
Yinghai Lue5198072009-05-15 13:05:16 -07003904 pin = irq_attr->ioapic_pin;
3905 trigger = irq_attr->trigger;
3906 polarity = irq_attr->polarity;
3907
Yinghai Lu5ef21832009-05-06 10:08:50 -07003908 /*
3909 * IRQs < 16 are already in the irq_2_pin[] map
3910 */
3911 if (irq >= NR_IRQS_LEGACY) {
3912 cfg = desc->chip_data;
3913 add_pin_to_irq_node(cfg, node, ioapic, pin);
3914 }
3915
Yinghai Lue5198072009-05-15 13:05:16 -07003916 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003917
3918 return 0;
3919}
3920
Yinghai Lue5198072009-05-15 13:05:16 -07003921int io_apic_set_pci_routing(struct device *dev, int irq,
3922 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003923{
Yinghai Lue5198072009-05-15 13:05:16 -07003924 int ioapic, pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003925 /*
3926 * Avoid pin reprogramming. PRTs typically include entries
3927 * with redundant pin->gsi mappings (but unique PCI devices);
3928 * we only program the IOAPIC on the first.
3929 */
Yinghai Lue5198072009-05-15 13:05:16 -07003930 ioapic = irq_attr->ioapic;
3931 pin = irq_attr->ioapic_pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003932 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3933 pr_debug("Pin %d-%d already programmed\n",
3934 mp_ioapics[ioapic].apicid, pin);
3935 return 0;
3936 }
3937 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3938
Yinghai Lue5198072009-05-15 13:05:16 -07003939 return __io_apic_set_pci_routing(dev, irq, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003940}
3941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003943 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 -------------------------------------------------------------------------- */
3945
Len Brown888ba6c2005-08-24 12:07:20 -04003946#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Ingo Molnar54168ed2008-08-20 09:07:45 +02003948#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003949int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950{
3951 union IO_APIC_reg_00 reg_00;
3952 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3953 physid_mask_t tmp;
3954 unsigned long flags;
3955 int i = 0;
3956
3957 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003958 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3959 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003961 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3963 * advantage of new APIC bus architecture.
3964 */
3965
3966 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003967 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
3969 spin_lock_irqsave(&ioapic_lock, flags);
3970 reg_00.raw = io_apic_read(ioapic, 0);
3971 spin_unlock_irqrestore(&ioapic_lock, flags);
3972
3973 if (apic_id >= get_physical_broadcast()) {
3974 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3975 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3976 apic_id = reg_00.bits.ID;
3977 }
3978
3979 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003980 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 * 'stuck on smp_invalidate_needed IPI wait' messages.
3982 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003983 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
3985 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003986 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 break;
3988 }
3989
3990 if (i == get_physical_broadcast())
3991 panic("Max apic_id exceeded!\n");
3992
3993 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3994 "trying %d\n", ioapic, apic_id, i);
3995
3996 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
Ingo Molnar80587142009-01-28 06:50:47 +01003999 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 physids_or(apic_id_map, apic_id_map, tmp);
4001
4002 if (reg_00.bits.ID != apic_id) {
4003 reg_00.bits.ID = apic_id;
4004
4005 spin_lock_irqsave(&ioapic_lock, flags);
4006 io_apic_write(ioapic, 0, reg_00.raw);
4007 reg_00.raw = io_apic_read(ioapic, 0);
4008 spin_unlock_irqrestore(&ioapic_lock, flags);
4009
4010 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01004011 if (reg_00.bits.ID != apic_id) {
4012 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
4013 return -1;
4014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 }
4016
4017 apic_printk(APIC_VERBOSE, KERN_INFO
4018 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
4019
4020 return apic_id;
4021}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00004022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004024int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025{
4026 union IO_APIC_reg_01 reg_01;
4027 unsigned long flags;
4028
4029 spin_lock_irqsave(&ioapic_lock, flags);
4030 reg_01.raw = io_apic_read(ioapic, 1);
4031 spin_unlock_irqrestore(&ioapic_lock, flags);
4032
4033 return reg_01.bits.version;
4034}
4035
Shaohua Li61fd47e2007-11-17 01:05:28 -05004036int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4037{
4038 int i;
4039
4040 if (skip_ioapic_setup)
4041 return -1;
4042
4043 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304044 if (mp_irqs[i].irqtype == mp_INT &&
4045 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004046 break;
4047 if (i >= mp_irq_entries)
4048 return -1;
4049
4050 *trigger = irq_trigger(i);
4051 *polarity = irq_polarity(i);
4052 return 0;
4053}
4054
Len Brown888ba6c2005-08-24 12:07:20 -04004055#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004056
Yinghai Lu497c9a12008-08-19 20:50:28 -07004057/*
4058 * This function currently is only a helper for the i386 smp boot process where
4059 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004060 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004061 */
4062#ifdef CONFIG_SMP
4063void __init setup_ioapic_dest(void)
4064{
Yinghai Lub9c61b702009-05-06 10:10:06 -07004065 int pin, ioapic = 0, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004066 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004067 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004068
4069 if (skip_ioapic_setup == 1)
4070 return;
4071
Yinghai Lub9c61b702009-05-06 10:10:06 -07004072#ifdef CONFIG_ACPI
4073 if (!acpi_disabled && acpi_ioapic) {
4074 ioapic = mp_find_ioapic(0);
4075 if (ioapic < 0)
4076 ioapic = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004077 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07004078#endif
4079
4080 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4081 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4082 if (irq_entry == -1)
4083 continue;
4084 irq = pin_2_irq(irq_entry, ioapic, pin);
4085
4086 desc = irq_to_desc(irq);
4087
4088 /*
4089 * Honour affinities which have been set in early boot
4090 */
4091 if (desc->status &
4092 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4093 mask = desc->affinity;
4094 else
4095 mask = apic->target_cpus();
4096
4097 if (intr_remapping_enabled)
4098 set_ir_ioapic_affinity_irq_desc(desc, mask);
4099 else
4100 set_ioapic_affinity_irq_desc(desc, mask);
4101 }
4102
Yinghai Lu497c9a12008-08-19 20:50:28 -07004103}
4104#endif
4105
Ingo Molnar54168ed2008-08-20 09:07:45 +02004106#define IOAPIC_RESOURCE_NAME_SIZE 11
4107
4108static struct resource *ioapic_resources;
4109
4110static struct resource * __init ioapic_setup_resources(void)
4111{
4112 unsigned long n;
4113 struct resource *res;
4114 char *mem;
4115 int i;
4116
4117 if (nr_ioapics <= 0)
4118 return NULL;
4119
4120 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4121 n *= nr_ioapics;
4122
4123 mem = alloc_bootmem(n);
4124 res = (void *)mem;
4125
4126 if (mem != NULL) {
4127 mem += sizeof(struct resource) * nr_ioapics;
4128
4129 for (i = 0; i < nr_ioapics; i++) {
4130 res[i].name = mem;
4131 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4132 sprintf(mem, "IOAPIC %u", i);
4133 mem += IOAPIC_RESOURCE_NAME_SIZE;
4134 }
4135 }
4136
4137 ioapic_resources = res;
4138
4139 return res;
4140}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004141
Yinghai Luf3294a32008-06-27 01:41:56 -07004142void __init ioapic_init_mappings(void)
4143{
4144 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004145 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004146 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004147
Ingo Molnar54168ed2008-08-20 09:07:45 +02004148 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004149 for (i = 0; i < nr_ioapics; i++) {
4150 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05304151 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004152#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004153 if (!ioapic_phys) {
4154 printk(KERN_ERR
4155 "WARNING: bogus zero IO-APIC "
4156 "address found in MPTABLE, "
4157 "disabling IO/APIC support!\n");
4158 smp_found_config = 0;
4159 skip_ioapic_setup = 1;
4160 goto fake_ioapic_page;
4161 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004162#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004163 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004164#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004165fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004166#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004167 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004168 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004169 ioapic_phys = __pa(ioapic_phys);
4170 }
4171 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004172 apic_printk(APIC_VERBOSE,
4173 "mapped IOAPIC to %08lx (%08lx)\n",
4174 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004175 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004176
Ingo Molnar54168ed2008-08-20 09:07:45 +02004177 if (ioapic_res != NULL) {
4178 ioapic_res->start = ioapic_phys;
4179 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4180 ioapic_res++;
4181 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004182 }
4183}
4184
Ingo Molnar54168ed2008-08-20 09:07:45 +02004185static int __init ioapic_insert_resources(void)
4186{
4187 int i;
4188 struct resource *r = ioapic_resources;
4189
4190 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004191 if (nr_ioapics > 0) {
4192 printk(KERN_ERR
4193 "IO APIC resources couldn't be allocated.\n");
4194 return -1;
4195 }
4196 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004197 }
4198
4199 for (i = 0; i < nr_ioapics; i++) {
4200 insert_resource(&iomem_resource, r);
4201 r++;
4202 }
4203
4204 return 0;
4205}
4206
4207/* Insert the IO APIC resources after PCI initialization has occured to handle
4208 * IO APICS that are mapped in on a BAR in PCI space. */
4209late_initcall(ioapic_insert_resources);