blob: 1a341444258373a418d9ad4e6894c8519d662e7b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053062#include <asm/hw_irq.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050063#include <asm/uv/uv_hub.h>
64#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ingo Molnar7b6aa332009-02-17 13:58:15 +010066#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010068#define __apicdebuginit(type) static type __init
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020071 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int sis_apic_bug = -1;
75
Yinghai Luefa25592008-08-19 20:50:36 -070076static DEFINE_SPINLOCK(ioapic_lock);
77static DEFINE_SPINLOCK(vector_lock);
78
Yinghai Luefa25592008-08-19 20:50:36 -070079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * # of IRQ routing registers
81 */
82int nr_ioapic_registers[MAX_IO_APICS];
83
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040084/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053085struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040086int nr_ioapics;
87
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040088/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053089struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040090
91/* # of MP IRQ source entries */
92int mp_irq_entries;
93
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040094#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
95int mp_bus_id_to_type[MAX_MP_BUSSES];
96#endif
97
98DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
99
Yinghai Luefa25592008-08-19 20:50:36 -0700100int skip_ioapic_setup;
101
Ingo Molnar65a4e572009-01-31 03:36:17 +0100102void arch_disable_smp_support(void)
103{
104#ifdef CONFIG_PCI
105 noioapicquirk = 1;
106 noioapicreroute = -1;
107#endif
108 skip_ioapic_setup = 1;
109}
110
Ingo Molnar54168ed2008-08-20 09:07:45 +0200111static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700112{
113 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100114 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700115 return 0;
116}
117early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200118
Yinghai Lu0f978f42008-08-19 20:50:26 -0700119struct irq_pin_list;
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 Ludad213ae2009-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 Ludad213ae2009-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 Rajputb5ba7e62009-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.zhang50a8d4d2009-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
Jeremy Fitzhardinge2f210de2009-06-08 02:55:22 -0700559static void io_apic_modify_irq(struct irq_cfg *cfg,
560 int mask_and, int mask_or,
561 void (*final)(struct irq_pin_list *entry))
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400562{
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
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530583static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700584{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400585 /*
586 * Synchronize the IO-APIC and the CPU by doing
587 * a dummy read from the IO-APIC
588 */
589 struct io_apic __iomem *io_apic;
590 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700591 readl(&io_apic->data);
592}
593
Yinghai Lu3145e942008-12-05 18:58:34 -0800594static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400595{
Yinghai Lu3145e942008-12-05 18:58:34 -0800596 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400597}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700598
Yinghai Lu3145e942008-12-05 18:58:34 -0800599static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400600{
Yinghai Lu3145e942008-12-05 18:58:34 -0800601 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400602 IO_APIC_REDIR_MASKED, NULL);
603}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700604
Yinghai Lu3145e942008-12-05 18:58:34 -0800605static void __unmask_and_level_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_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400608 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
609}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700610
Yinghai Lu3145e942008-12-05 18:58:34 -0800611static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Yinghai Lu3145e942008-12-05 18:58:34 -0800613 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 unsigned long flags;
615
Yinghai Lu3145e942008-12-05 18:58:34 -0800616 BUG_ON(!cfg);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800619 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 spin_unlock_irqrestore(&ioapic_lock, flags);
621}
622
Yinghai Lu3145e942008-12-05 18:58:34 -0800623static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Yinghai Lu3145e942008-12-05 18:58:34 -0800625 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 unsigned long flags;
627
628 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800629 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 spin_unlock_irqrestore(&ioapic_lock, flags);
631}
632
Yinghai Lu3145e942008-12-05 18:58:34 -0800633static void mask_IO_APIC_irq(unsigned int irq)
634{
635 struct irq_desc *desc = irq_to_desc(irq);
636
637 mask_IO_APIC_irq_desc(desc);
638}
639static void unmask_IO_APIC_irq(unsigned int irq)
640{
641 struct irq_desc *desc = irq_to_desc(irq);
642
643 unmask_IO_APIC_irq_desc(desc);
644}
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
647{
648 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200651 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (entry.delivery_mode == dest_SMI)
653 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * Disable it in the IO-APIC irq-routing table:
656 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800657 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Ingo Molnar54168ed2008-08-20 09:07:45 +0200660static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 int apic, pin;
663
664 for (apic = 0; apic < nr_ioapics; apic++)
665 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
666 clear_IO_APIC_pin(apic, pin);
667}
668
Ingo Molnar54168ed2008-08-20 09:07:45 +0200669#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/*
671 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
672 * specific CPU-side IRQs.
673 */
674
675#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800676static int pirq_entries[MAX_PIRQS] = {
677 [0 ... MAX_PIRQS - 1] = -1
678};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680static int __init ioapic_pirq_setup(char *str)
681{
682 int i, max;
683 int ints[MAX_PIRQS+1];
684
685 get_options(str, ARRAY_SIZE(ints), ints);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 apic_printk(APIC_VERBOSE, KERN_INFO
688 "PIRQ redirection, working around broken MP-BIOS.\n");
689 max = MAX_PIRQS;
690 if (ints[0] < MAX_PIRQS)
691 max = ints[0];
692
693 for (i = 0; i < max; i++) {
694 apic_printk(APIC_VERBOSE, KERN_DEBUG
695 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
696 /*
697 * PIRQs are mapped upside down, usually.
698 */
699 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
700 }
701 return 1;
702}
703
704__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200705#endif /* CONFIG_X86_32 */
706
Fenghua Yub24696b2009-03-27 14:22:44 -0700707struct IO_APIC_route_entry **alloc_ioapic_entries(void)
708{
709 int apic;
710 struct IO_APIC_route_entry **ioapic_entries;
711
712 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
713 GFP_ATOMIC);
714 if (!ioapic_entries)
715 return 0;
716
717 for (apic = 0; apic < nr_ioapics; apic++) {
718 ioapic_entries[apic] =
719 kzalloc(sizeof(struct IO_APIC_route_entry) *
720 nr_ioapic_registers[apic], GFP_ATOMIC);
721 if (!ioapic_entries[apic])
722 goto nomem;
723 }
724
725 return ioapic_entries;
726
727nomem:
728 while (--apic >= 0)
729 kfree(ioapic_entries[apic]);
730 kfree(ioapic_entries);
731
732 return 0;
733}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200734
735/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700736 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200737 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700738int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200739{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200740 int apic, pin;
741
Fenghua Yub24696b2009-03-27 14:22:44 -0700742 if (!ioapic_entries)
743 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200744
745 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700746 if (!ioapic_entries[apic])
747 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200748
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700749 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700750 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200751 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700752 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400753
Ingo Molnar54168ed2008-08-20 09:07:45 +0200754 return 0;
755}
756
Fenghua Yub24696b2009-03-27 14:22:44 -0700757/*
758 * Mask all IO APIC entries.
759 */
760void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700761{
762 int apic, pin;
763
Fenghua Yub24696b2009-03-27 14:22:44 -0700764 if (!ioapic_entries)
765 return;
766
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700767 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700768 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700769 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700770
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700771 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
772 struct IO_APIC_route_entry entry;
773
Fenghua Yub24696b2009-03-27 14:22:44 -0700774 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700775 if (!entry.mask) {
776 entry.mask = 1;
777 ioapic_write_entry(apic, pin, entry);
778 }
779 }
780 }
781}
782
Fenghua Yub24696b2009-03-27 14:22:44 -0700783/*
784 * Restore IO APIC entries which was saved in ioapic_entries.
785 */
786int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200787{
788 int apic, pin;
789
Fenghua Yub24696b2009-03-27 14:22:44 -0700790 if (!ioapic_entries)
791 return -ENOMEM;
792
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400793 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700794 if (!ioapic_entries[apic])
795 return -ENOMEM;
796
Ingo Molnar54168ed2008-08-20 09:07:45 +0200797 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
798 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700799 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400800 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700801 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200802}
803
Fenghua Yub24696b2009-03-27 14:22:44 -0700804void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
805{
806 int apic;
807
808 for (apic = 0; apic < nr_ioapics; apic++)
809 kfree(ioapic_entries[apic]);
810
811 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200812}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814/*
815 * Find the IRQ entry number of a certain pin.
816 */
817static int find_irq_entry(int apic, int pin, int type)
818{
819 int i;
820
821 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530822 if (mp_irqs[i].irqtype == type &&
823 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
824 mp_irqs[i].dstapic == MP_APIC_ALL) &&
825 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return i;
827
828 return -1;
829}
830
831/*
832 * Find the pin to which IRQ[irq] (ISA) is connected
833 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800834static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 int i;
837
838 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530839 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300841 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530842 (mp_irqs[i].irqtype == type) &&
843 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530845 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 return -1;
848}
849
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800850static int __init find_isa_irq_apic(int irq, int type)
851{
852 int i;
853
854 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530855 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800856
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300857 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530858 (mp_irqs[i].irqtype == type) &&
859 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800860 break;
861 }
862 if (i < mp_irq_entries) {
863 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200864 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530865 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800866 return apic;
867 }
868 }
869
870 return -1;
871}
872
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300873#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/*
875 * EISA Edge/Level control register, ELCR
876 */
877static int EISA_ELCR(unsigned int irq)
878{
Yinghai Lu99d093d2008-12-05 18:58:32 -0800879 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 unsigned int port = 0x4d0 + (irq >> 3);
881 return (inb(port) >> (irq & 7)) & 1;
882 }
883 apic_printk(APIC_VERBOSE, KERN_INFO
884 "Broken MPtable reports ISA irq %d\n", irq);
885 return 0;
886}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200887
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300890/* ISA interrupts are always polarity zero edge triggered,
891 * when listed as conforming in the MP table. */
892
893#define default_ISA_trigger(idx) (0)
894#define default_ISA_polarity(idx) (0)
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/* EISA interrupts are always polarity zero and can be edge or level
897 * trigger depending on the ELCR value. If an interrupt is listed as
898 * EISA conforming in the MP table, that means its trigger type must
899 * be read in from the ELCR */
900
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530901#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300902#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904/* PCI interrupts are always polarity one level triggered,
905 * when listed as conforming in the MP table. */
906
907#define default_PCI_trigger(idx) (1)
908#define default_PCI_polarity(idx) (1)
909
910/* MCA interrupts are always polarity zero level triggered,
911 * when listed as conforming in the MP table. */
912
913#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300914#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Shaohua Li61fd47e2007-11-17 01:05:28 -0500916static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530918 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int polarity;
920
921 /*
922 * Determine IRQ line polarity (high active or low active):
923 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530924 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200926 case 0: /* conforms, ie. bus-type dependent polarity */
927 if (test_bit(bus, mp_bus_not_pci))
928 polarity = default_ISA_polarity(idx);
929 else
930 polarity = default_PCI_polarity(idx);
931 break;
932 case 1: /* high active */
933 {
934 polarity = 0;
935 break;
936 }
937 case 2: /* reserved */
938 {
939 printk(KERN_WARNING "broken BIOS!!\n");
940 polarity = 1;
941 break;
942 }
943 case 3: /* low active */
944 {
945 polarity = 1;
946 break;
947 }
948 default: /* invalid */
949 {
950 printk(KERN_WARNING "broken BIOS!!\n");
951 polarity = 1;
952 break;
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955 return polarity;
956}
957
958static int MPBIOS_trigger(int idx)
959{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530960 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 int trigger;
962
963 /*
964 * Determine IRQ trigger mode (edge or level sensitive):
965 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530966 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200968 case 0: /* conforms, ie. bus-type dependent */
969 if (test_bit(bus, mp_bus_not_pci))
970 trigger = default_ISA_trigger(idx);
971 else
972 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300973#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200974 switch (mp_bus_id_to_type[bus]) {
975 case MP_BUS_ISA: /* ISA pin */
976 {
977 /* set before the switch */
978 break;
979 }
980 case MP_BUS_EISA: /* EISA pin */
981 {
982 trigger = default_EISA_trigger(idx);
983 break;
984 }
985 case MP_BUS_PCI: /* PCI pin */
986 {
987 /* set before the switch */
988 break;
989 }
990 case MP_BUS_MCA: /* MCA pin */
991 {
992 trigger = default_MCA_trigger(idx);
993 break;
994 }
995 default:
996 {
997 printk(KERN_WARNING "broken BIOS!!\n");
998 trigger = 1;
999 break;
1000 }
1001 }
1002#endif
1003 break;
1004 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001005 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001006 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001007 break;
1008 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001009 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001010 {
1011 printk(KERN_WARNING "broken BIOS!!\n");
1012 trigger = 1;
1013 break;
1014 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001015 case 3: /* level */
1016 {
1017 trigger = 1;
1018 break;
1019 }
1020 default: /* invalid */
1021 {
1022 printk(KERN_WARNING "broken BIOS!!\n");
1023 trigger = 0;
1024 break;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 return trigger;
1028}
1029
1030static inline int irq_polarity(int idx)
1031{
1032 return MPBIOS_polarity(idx);
1033}
1034
1035static inline int irq_trigger(int idx)
1036{
1037 return MPBIOS_trigger(idx);
1038}
1039
Yinghai Luefa25592008-08-19 20:50:36 -07001040int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041static int pin_2_irq(int idx, int apic, int pin)
1042{
1043 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301044 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /*
1047 * Debugging check, we are in big trouble if this message pops up!
1048 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301049 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1051
Ingo Molnar54168ed2008-08-20 09:07:45 +02001052 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301053 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001054 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001055 /*
1056 * PCI IRQs are mapped in order
1057 */
1058 i = irq = 0;
1059 while (i < apic)
1060 irq += nr_ioapic_registers[i++];
1061 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001062 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001063 * For MPS mode, so far only needed by ES7000 platform
1064 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001065 if (ioapic_renumber_irq)
1066 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068
Ingo Molnar54168ed2008-08-20 09:07:45 +02001069#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /*
1071 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1072 */
1073 if ((pin >= 16) && (pin <= 23)) {
1074 if (pirq_entries[pin-16] != -1) {
1075 if (!pirq_entries[pin-16]) {
1076 apic_printk(APIC_VERBOSE, KERN_DEBUG
1077 "disabling PIRQ%d\n", pin-16);
1078 } else {
1079 irq = pirq_entries[pin-16];
1080 apic_printk(APIC_VERBOSE, KERN_DEBUG
1081 "using PIRQ%d -> IRQ %d\n",
1082 pin-16, irq);
1083 }
1084 }
1085 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001086#endif
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return irq;
1089}
1090
Yinghai Lue20c06f2009-05-06 10:08:22 -07001091/*
1092 * Find a specific PCI IRQ entry.
1093 * Not an __init, possibly needed by modules
1094 */
1095int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001096 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001097{
1098 int apic, i, best_guess = -1;
1099
1100 apic_printk(APIC_DEBUG,
1101 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1102 bus, slot, pin);
1103 if (test_bit(bus, mp_bus_not_pci)) {
1104 apic_printk(APIC_VERBOSE,
1105 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1106 return -1;
1107 }
1108 for (i = 0; i < mp_irq_entries; i++) {
1109 int lbus = mp_irqs[i].srcbus;
1110
1111 for (apic = 0; apic < nr_ioapics; apic++)
1112 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1113 mp_irqs[i].dstapic == MP_APIC_ALL)
1114 break;
1115
1116 if (!test_bit(lbus, mp_bus_not_pci) &&
1117 !mp_irqs[i].irqtype &&
1118 (bus == lbus) &&
1119 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1120 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1121
1122 if (!(apic || IO_APIC_IRQ(irq)))
1123 continue;
1124
1125 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lue5198072009-05-15 13:05:16 -07001126 set_io_apic_irq_attr(irq_attr, apic,
1127 mp_irqs[i].dstirq,
1128 irq_trigger(i),
1129 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001130 return irq;
1131 }
1132 /*
1133 * Use the first all-but-pin matching entry as a
1134 * best-guess fuzzy result for broken mptables.
1135 */
1136 if (best_guess < 0) {
Yinghai Lue5198072009-05-15 13:05:16 -07001137 set_io_apic_irq_attr(irq_attr, apic,
1138 mp_irqs[i].dstirq,
1139 irq_trigger(i),
1140 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001141 best_guess = irq;
1142 }
1143 }
1144 }
1145 return best_guess;
1146}
1147EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1148
Yinghai Lu497c9a12008-08-19 20:50:28 -07001149void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001151 /* Used to the online set of cpus does not change
1152 * during assign_irq_vector.
1153 */
1154 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
Yinghai Lu497c9a12008-08-19 20:50:28 -07001157void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001158{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001159 spin_unlock(&vector_lock);
1160}
1161
Mike Travise7986732008-12-16 17:33:52 -08001162static int
1163__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001164{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001165 /*
1166 * NOTE! The local APIC isn't very good at handling
1167 * multiple interrupts at the same interrupt level.
1168 * As the interrupt level is determined by taking the
1169 * vector number and shifting that right by 4, we
1170 * want to spread these out a bit so that they don't
1171 * all fall in the same interrupt level.
1172 *
1173 * Also, we've got to be careful not to trash gate
1174 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1175 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001176 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1177 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001178 int cpu, err;
1179 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001180
Ingo Molnar54168ed2008-08-20 09:07:45 +02001181 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1182 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001183
Mike Travis22f65d32008-12-16 17:33:56 -08001184 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1185 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001186
Ingo Molnar54168ed2008-08-20 09:07:45 +02001187 old_vector = cfg->vector;
1188 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001189 cpumask_and(tmp_mask, mask, cpu_online_mask);
1190 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1191 if (!cpumask_empty(tmp_mask)) {
1192 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001193 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001194 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001195 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001196
Mike Travise7986732008-12-16 17:33:52 -08001197 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001198 err = -ENOSPC;
1199 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001200 int new_cpu;
1201 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001202
Ingo Molnare2d40b12009-01-28 06:50:47 +01001203 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001204
Ingo Molnar54168ed2008-08-20 09:07:45 +02001205 vector = current_vector;
1206 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001207next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001208 vector += 8;
1209 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001210 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001211 offset = (offset + 1) % 8;
1212 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001213 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001214 if (unlikely(current_vector == vector))
1215 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001216
1217 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001218 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001219
Mike Travis22f65d32008-12-16 17:33:56 -08001220 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001221 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1222 goto next;
1223 /* Found one! */
1224 current_vector = vector;
1225 current_offset = offset;
1226 if (old_vector) {
1227 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001228 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001229 }
Mike Travis22f65d32008-12-16 17:33:56 -08001230 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001231 per_cpu(vector_irq, new_cpu)[vector] = irq;
1232 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001233 cpumask_copy(cfg->domain, tmp_mask);
1234 err = 0;
1235 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001236 }
Mike Travis22f65d32008-12-16 17:33:56 -08001237 free_cpumask_var(tmp_mask);
1238 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001239}
1240
Mike Travise7986732008-12-16 17:33:52 -08001241static int
1242assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001243{
1244 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001245 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001246
1247 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001248 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001249 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001250 return err;
1251}
1252
Yinghai Lu3145e942008-12-05 18:58:34 -08001253static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001254{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001255 int cpu, vector;
1256
Yinghai Lu497c9a12008-08-19 20:50:28 -07001257 BUG_ON(!cfg->vector);
1258
1259 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001260 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001261 per_cpu(vector_irq, cpu)[vector] = -1;
1262
1263 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001264 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001265
1266 if (likely(!cfg->move_in_progress))
1267 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001268 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001269 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1270 vector++) {
1271 if (per_cpu(vector_irq, cpu)[vector] != irq)
1272 continue;
1273 per_cpu(vector_irq, cpu)[vector] = -1;
1274 break;
1275 }
1276 }
1277 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001278}
1279
1280void __setup_vector_irq(int cpu)
1281{
1282 /* Initialize vector_irq on a new cpu */
1283 /* This function must be called with vector_lock held */
1284 int irq, vector;
1285 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001286 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001287
1288 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001289 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001290 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001291 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001292 continue;
1293 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001294 per_cpu(vector_irq, cpu)[vector] = irq;
1295 }
1296 /* Mark the free vectors */
1297 for (vector = 0; vector < NR_VECTORS; ++vector) {
1298 irq = per_cpu(vector_irq, cpu)[vector];
1299 if (irq < 0)
1300 continue;
1301
1302 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001303 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001304 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001305 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001306}
Glauber Costa3fde6902008-05-28 20:34:19 -07001307
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001308static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001309static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Ingo Molnar54168ed2008-08-20 09:07:45 +02001311#define IOAPIC_AUTO -1
1312#define IOAPIC_EDGE 0
1313#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001315#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001316static inline int IO_APIC_irq_trigger(int irq)
1317{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001318 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001319
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001320 for (apic = 0; apic < nr_ioapics; apic++) {
1321 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1322 idx = find_irq_entry(apic, pin, mp_INT);
1323 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1324 return irq_trigger(idx);
1325 }
1326 }
1327 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001328 * nonexistent IRQs are edge default
1329 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001330 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001331}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001332#else
1333static inline int IO_APIC_irq_trigger(int irq)
1334{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001335 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001336}
1337#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001338
Yinghai Lu3145e942008-12-05 18:58:34 -08001339static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Yinghai Lu199751d2008-08-19 20:50:27 -07001341
Jan Beulich6ebcc002006-06-26 13:56:46 +02001342 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001343 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001344 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001345 else
1346 desc->status &= ~IRQ_LEVEL;
1347
Ingo Molnar54168ed2008-08-20 09:07:45 +02001348 if (irq_remapped(irq)) {
1349 desc->status |= IRQ_MOVE_PCNTXT;
1350 if (trigger)
1351 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1352 handle_fasteoi_irq,
1353 "fasteoi");
1354 else
1355 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1356 handle_edge_irq, "edge");
1357 return;
1358 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001359
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001360 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1361 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001362 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001363 handle_fasteoi_irq,
1364 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001365 else
Ingo Molnara460e742006-10-17 00:10:03 -07001366 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001367 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001368}
1369
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001370int setup_ioapic_entry(int apic_id, int irq,
1371 struct IO_APIC_route_entry *entry,
1372 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001373 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001374{
1375 /*
1376 * add it to the IO-APIC irq-routing table:
1377 */
1378 memset(entry,0,sizeof(*entry));
1379
Ingo Molnar54168ed2008-08-20 09:07:45 +02001380 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001381 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001382 struct irte irte;
1383 struct IR_IO_APIC_route_entry *ir_entry =
1384 (struct IR_IO_APIC_route_entry *) entry;
1385 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001386
Ingo Molnar54168ed2008-08-20 09:07:45 +02001387 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001388 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001389
1390 index = alloc_irte(iommu, irq, 1);
1391 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001392 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001393
1394 memset(&irte, 0, sizeof(irte));
1395
1396 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001397 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001398 /*
1399 * Trigger mode in the IRTE will always be edge, and the
1400 * actual level or edge trigger will be setup in the IO-APIC
1401 * RTE. This will help simplify level triggered irq migration.
1402 * For more details, see the comments above explainig IO-APIC
1403 * irq migration in the presence of interrupt-remapping.
1404 */
1405 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001406 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001407 irte.vector = vector;
1408 irte.dest_id = IRTE_DEST(destination);
1409
Weidong Hanf007e992009-05-23 00:41:15 +08001410 /* Set source-id of interrupt request */
1411 set_ioapic_sid(&irte, apic_id);
1412
Ingo Molnar54168ed2008-08-20 09:07:45 +02001413 modify_irte(irq, &irte);
1414
1415 ir_entry->index2 = (index >> 15) & 0x1;
1416 ir_entry->zero = 0;
1417 ir_entry->format = 1;
1418 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001419 /*
1420 * IO-APIC RTE will be configured with virtual vector.
1421 * irq handler will do the explicit EOI to the io-apic.
1422 */
1423 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001424 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001425 entry->delivery_mode = apic->irq_delivery_mode;
1426 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001427 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001428 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001429 }
1430
1431 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001432 entry->trigger = trigger;
1433 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001434
1435 /* Mask level triggered irqs.
1436 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1437 */
1438 if (trigger)
1439 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001440 return 0;
1441}
1442
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001443static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001444 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001445{
1446 struct irq_cfg *cfg;
1447 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001448 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001449
1450 if (!IO_APIC_IRQ(irq))
1451 return;
1452
Yinghai Lu3145e942008-12-05 18:58:34 -08001453 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001454
Ingo Molnarfe402e12009-01-28 04:32:51 +01001455 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001456 return;
1457
Ingo Molnardebccb32009-01-28 15:20:18 +01001458 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001459
1460 apic_printk(APIC_VERBOSE,KERN_DEBUG
1461 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1462 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001463 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001464 irq, trigger, polarity);
1465
1466
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001467 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001468 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001469 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001470 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001471 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001472 return;
1473 }
1474
Yinghai Lu3145e942008-12-05 18:58:34 -08001475 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001476 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001477 disable_8259A_irq(irq);
1478
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001479 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Yinghai Lub9c61b702009-05-06 10:10:06 -07001482static struct {
1483 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1484} mp_ioapic_routing[MAX_IO_APICS];
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486static void __init setup_IO_APIC_irqs(void)
1487{
Yinghai Lub9c61b702009-05-06 10:10:06 -07001488 int apic_id = 0, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001489 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001490 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001491 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001492 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1495
Yinghai Lub9c61b702009-05-06 10:10:06 -07001496#ifdef CONFIG_ACPI
1497 if (!acpi_disabled && acpi_ioapic) {
1498 apic_id = mp_find_ioapic(0);
1499 if (apic_id < 0)
1500 apic_id = 0;
1501 }
1502#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Yinghai Lub9c61b702009-05-06 10:10:06 -07001504 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1505 idx = find_irq_entry(apic_id, pin, mp_INT);
1506 if (idx == -1) {
1507 if (!notcon) {
1508 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001509 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001510 KERN_DEBUG " %d-%d",
1511 mp_ioapics[apic_id].apicid, pin);
1512 } else
1513 apic_printk(APIC_VERBOSE, " %d-%d",
1514 mp_ioapics[apic_id].apicid, pin);
1515 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001516 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001517 if (notcon) {
1518 apic_printk(APIC_VERBOSE,
1519 " (apicid-pin) not connected\n");
1520 notcon = 0;
1521 }
1522
1523 irq = pin_2_irq(idx, apic_id, pin);
1524
1525 /*
1526 * Skip the timer IRQ if there's a quirk handler
1527 * installed and if it returns 1:
1528 */
1529 if (apic->multi_timer_check &&
1530 apic->multi_timer_check(apic_id, irq))
1531 continue;
1532
1533 desc = irq_to_desc_alloc_node(irq, node);
1534 if (!desc) {
1535 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1536 continue;
1537 }
1538 cfg = desc->chip_data;
1539 add_pin_to_irq_node(cfg, node, apic_id, pin);
Yinghai Lu4c6f18f2009-05-18 10:23:28 -07001540 /*
1541 * don't mark it in pin_programmed, so later acpi could
1542 * set it correctly when irq < 16
1543 */
Yinghai Lub9c61b702009-05-06 10:10:06 -07001544 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1545 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001548 if (notcon)
1549 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001550 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001554 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001556static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001557 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Ingo Molnar54168ed2008-08-20 09:07:45 +02001561 if (intr_remapping_enabled)
1562 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001563
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001564 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 /*
1567 * We use logical delivery to get the timer IRQ
1568 * to the first CPU.
1569 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001570 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001571 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001572 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001573 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 entry.polarity = 0;
1575 entry.trigger = 0;
1576 entry.vector = vector;
1577
1578 /*
1579 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001580 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001582 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /*
1585 * Add it to the IO-APIC irq-routing table:
1586 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001587 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001590
1591__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 int apic, i;
1594 union IO_APIC_reg_00 reg_00;
1595 union IO_APIC_reg_01 reg_01;
1596 union IO_APIC_reg_02 reg_02;
1597 union IO_APIC_reg_03 reg_03;
1598 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001599 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001600 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001601 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603 if (apic_verbosity == APIC_QUIET)
1604 return;
1605
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001606 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 for (i = 0; i < nr_ioapics; i++)
1608 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301609 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 /*
1612 * We are a bit conservative about what we expect. We have to
1613 * know about every hardware change ASAP.
1614 */
1615 printk(KERN_INFO "testing the IO APIC.......................\n");
1616
1617 for (apic = 0; apic < nr_ioapics; apic++) {
1618
1619 spin_lock_irqsave(&ioapic_lock, flags);
1620 reg_00.raw = io_apic_read(apic, 0);
1621 reg_01.raw = io_apic_read(apic, 1);
1622 if (reg_01.bits.version >= 0x10)
1623 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001624 if (reg_01.bits.version >= 0x20)
1625 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 spin_unlock_irqrestore(&ioapic_lock, flags);
1627
Ingo Molnar54168ed2008-08-20 09:07:45 +02001628 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301629 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1631 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1632 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1633 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Ingo Molnar54168ed2008-08-20 09:07:45 +02001635 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1639 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 /*
1642 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1643 * but the value of reg_02 is read as the previous read register
1644 * value, so ignore it if reg_02 == reg_01.
1645 */
1646 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1647 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1648 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
1651 /*
1652 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1653 * or reg_03, but the value of reg_0[23] is read as the previous read
1654 * register value, so ignore it if reg_03 == reg_0[12].
1655 */
1656 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1657 reg_03.raw != reg_01.raw) {
1658 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1659 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
1661
1662 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1663
Yinghai Lud83e94a2008-08-19 20:50:33 -07001664 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1665 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 for (i = 0; i <= reg_01.bits.entries; i++) {
1668 struct IO_APIC_route_entry entry;
1669
Andi Kleencf4c6a22006-09-26 10:52:30 +02001670 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Ingo Molnar54168ed2008-08-20 09:07:45 +02001672 printk(KERN_DEBUG " %02x %03X ",
1673 i,
1674 entry.dest
1675 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1678 entry.mask,
1679 entry.trigger,
1680 entry.irr,
1681 entry.polarity,
1682 entry.delivery_status,
1683 entry.dest_mode,
1684 entry.delivery_mode,
1685 entry.vector
1686 );
1687 }
1688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001690 for_each_irq_desc(irq, desc) {
1691 struct irq_pin_list *entry;
1692
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001693 cfg = desc->chip_data;
1694 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001695 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001697 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 for (;;) {
1699 printk("-> %d:%d", entry->apic, entry->pin);
1700 if (!entry->next)
1701 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001702 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704 printk("\n");
1705 }
1706
1707 printk(KERN_INFO ".................................... done.\n");
1708
1709 return;
1710}
1711
Ingo Molnar251e1e42009-07-02 08:54:01 +02001712__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001714 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 if (apic_verbosity == APIC_QUIET)
1717 return;
1718
Ingo Molnar251e1e42009-07-02 08:54:01 +02001719 printk(KERN_DEBUG);
1720
1721 for (i = 0; i < 8; i++)
1722 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1723
1724 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001727__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001729 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001730 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (apic_verbosity == APIC_QUIET)
1733 return;
1734
Ingo Molnar251e1e42009-07-02 08:54:01 +02001735 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001737 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001738 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 v = apic_read(APIC_LVR);
1740 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1741 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001742 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 v = apic_read(APIC_TASKPRI);
1745 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1746
Ingo Molnar54168ed2008-08-20 09:07:45 +02001747 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001748 if (!APIC_XAPIC(ver)) {
1749 v = apic_read(APIC_ARBPRI);
1750 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1751 v & APIC_ARBPRI_MASK);
1752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 v = apic_read(APIC_PROCPRI);
1754 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1755 }
1756
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001757 /*
1758 * Remote read supported only in the 82489DX and local APIC for
1759 * Pentium processors.
1760 */
1761 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1762 v = apic_read(APIC_RRR);
1763 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1764 }
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 v = apic_read(APIC_LDR);
1767 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001768 if (!x2apic_enabled()) {
1769 v = apic_read(APIC_DFR);
1770 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 v = apic_read(APIC_SPIV);
1773 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1774
1775 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001776 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001778 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001780 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Ingo Molnar54168ed2008-08-20 09:07:45 +02001782 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1783 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 v = apic_read(APIC_ESR);
1787 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1788 }
1789
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001790 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001791 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1792 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 v = apic_read(APIC_LVTT);
1795 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1796
1797 if (maxlvt > 3) { /* PC is LVT#4. */
1798 v = apic_read(APIC_LVTPC);
1799 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1800 }
1801 v = apic_read(APIC_LVT0);
1802 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1803 v = apic_read(APIC_LVT1);
1804 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1805
1806 if (maxlvt > 2) { /* ERR is LVT#3. */
1807 v = apic_read(APIC_LVTERR);
1808 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1809 }
1810
1811 v = apic_read(APIC_TMICT);
1812 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1813 v = apic_read(APIC_TMCCT);
1814 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1815 v = apic_read(APIC_TDCR);
1816 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001817
1818 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1819 v = apic_read(APIC_EFEAT);
1820 maxlvt = (v >> 16) & 0xff;
1821 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1822 v = apic_read(APIC_ECTRL);
1823 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1824 for (i = 0; i < maxlvt; i++) {
1825 v = apic_read(APIC_EILVTn(i));
1826 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1827 }
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 printk("\n");
1830}
1831
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001832__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001834 int cpu;
1835
1836 preempt_disable();
1837 for_each_online_cpu(cpu)
1838 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1839 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001842__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 unsigned int v;
1845 unsigned long flags;
1846
1847 if (apic_verbosity == APIC_QUIET)
1848 return;
1849
1850 printk(KERN_DEBUG "\nprinting PIC contents\n");
1851
1852 spin_lock_irqsave(&i8259A_lock, flags);
1853
1854 v = inb(0xa1) << 8 | inb(0x21);
1855 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1856
1857 v = inb(0xa0) << 8 | inb(0x20);
1858 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1859
Ingo Molnar54168ed2008-08-20 09:07:45 +02001860 outb(0x0b,0xa0);
1861 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001863 outb(0x0a,0xa0);
1864 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 spin_unlock_irqrestore(&i8259A_lock, flags);
1867
1868 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1869
1870 v = inb(0x4d1) << 8 | inb(0x4d0);
1871 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1872}
1873
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001874__apicdebuginit(int) print_all_ICs(void)
1875{
1876 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001877
1878 /* don't print out if apic is not there */
1879 if (!cpu_has_apic || disable_apic)
1880 return 0;
1881
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001882 print_all_local_APICs();
1883 print_IO_APIC();
1884
1885 return 0;
1886}
1887
1888fs_initcall(print_all_ICs);
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Yinghai Luefa25592008-08-19 20:50:36 -07001891/* Where if anywhere is the i8259 connect in external int mode */
1892static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1893
Ingo Molnar54168ed2008-08-20 09:07:45 +02001894void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001897 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001898 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 unsigned long flags;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /*
1902 * The number of IO-APIC IRQ registers (== #pins):
1903 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001904 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001906 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001908 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1909 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001910 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001911 int pin;
1912 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001913 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001914 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001915 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001916
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001917 /* If the interrupt line is enabled and in ExtInt mode
1918 * I have found the pin where the i8259 is connected.
1919 */
1920 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1921 ioapic_i8259.apic = apic;
1922 ioapic_i8259.pin = pin;
1923 goto found_i8259;
1924 }
1925 }
1926 }
1927 found_i8259:
1928 /* Look to see what if the MP table has reported the ExtINT */
1929 /* If we could not find the appropriate pin by looking at the ioapic
1930 * the i8259 probably is not connected the ioapic but give the
1931 * mptable a chance anyway.
1932 */
1933 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1934 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1935 /* Trust the MP table if nothing is setup in the hardware */
1936 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1937 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1938 ioapic_i8259.pin = i8259_pin;
1939 ioapic_i8259.apic = i8259_apic;
1940 }
1941 /* Complain if the MP table and the hardware disagree */
1942 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1943 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1944 {
1945 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
1947
1948 /*
1949 * Do not trust the IO-APIC being empty at bootup
1950 */
1951 clear_IO_APIC();
1952}
1953
1954/*
1955 * Not an __init, needed by the reboot code
1956 */
1957void disable_IO_APIC(void)
1958{
1959 /*
1960 * Clear the IO-APIC before rebooting:
1961 */
1962 clear_IO_APIC();
1963
Eric W. Biederman650927e2005-06-25 14:57:44 -07001964 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001965 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001966 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001967 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001968 *
1969 * With interrupt-remapping, for now we will use virtual wire A mode,
1970 * as virtual wire B is little complex (need to configure both
1971 * IOAPIC RTE aswell as interrupt-remapping table entry).
1972 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001973 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001974 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001975 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001976
1977 memset(&entry, 0, sizeof(entry));
1978 entry.mask = 0; /* Enabled */
1979 entry.trigger = 0; /* Edge */
1980 entry.irr = 0;
1981 entry.polarity = 0; /* High */
1982 entry.delivery_status = 0;
1983 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001984 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001985 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001986 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001987
1988 /*
1989 * Add it to the IO-APIC irq-routing table:
1990 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001991 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001992 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001993
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001994 /*
1995 * Use virtual wire A mode when interrupt remapping is enabled.
1996 */
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04001997 if (cpu_has_apic)
1998 disconnect_bsp_APIC(!intr_remapping_enabled &&
1999 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000}
2001
Ingo Molnar54168ed2008-08-20 09:07:45 +02002002#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003/*
2004 * function to set the IO-APIC physical IDs based on the
2005 * values stored in the MPC table.
2006 *
2007 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2008 */
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010static void __init setup_ioapic_ids_from_mpc(void)
2011{
2012 union IO_APIC_reg_00 reg_00;
2013 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002014 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 int i;
2016 unsigned char old_id;
2017 unsigned long flags;
2018
Yinghai Lua4dbc342008-07-25 02:14:28 -07002019 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002020 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002023 * Don't check I/O APIC IDs for xAPIC systems. They have
2024 * no meaning without the serial APIC bus.
2025 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002026 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2027 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002028 return;
2029 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 * This is broken; anything with a real cpu count has to
2031 * circumvent this idiocy regardless.
2032 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002033 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 /*
2036 * Set the IOAPIC ID to the value stored in the MPC table.
2037 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002038 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 /* Read the register 0 value */
2041 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002042 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002044
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002045 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002047 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002049 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2051 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002052 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /*
2056 * Sanity check, is the ID really free? Every APIC in a
2057 * system must have a unique ID or we get lots of nice
2058 * 'stuck on smp_invalidate_needed IPI wait' messages.
2059 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002060 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002061 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002063 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 for (i = 0; i < get_physical_broadcast(); i++)
2065 if (!physid_isset(i, phys_id_present_map))
2066 break;
2067 if (i >= get_physical_broadcast())
2068 panic("Max APIC ID exceeded!\n");
2069 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2070 i);
2071 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002072 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 } else {
2074 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002075 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 apic_printk(APIC_VERBOSE, "Setting %d in the "
2077 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002078 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2080 }
2081
2082
2083 /*
2084 * We need to adjust the IRQ routing table
2085 * if the ID changed.
2086 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002087 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302089 if (mp_irqs[i].dstapic == old_id)
2090 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002091 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 /*
2094 * Read the right value from the MPC table and
2095 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 apic_printk(APIC_VERBOSE, KERN_INFO
2098 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002099 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002101 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002103 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002104 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 /*
2107 * Sanity check
2108 */
2109 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002110 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002112 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 printk("could not set ID!\n");
2114 else
2115 apic_printk(APIC_VERBOSE, " ok.\n");
2116 }
2117}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002120int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002121
2122static int __init notimercheck(char *s)
2123{
2124 no_timer_check = 1;
2125 return 1;
2126}
2127__setup("no_timer_check", notimercheck);
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129/*
2130 * There is a nasty bug in some older SMP boards, their mptable lies
2131 * about the timer IRQ. We do the following to work around the situation:
2132 *
2133 * - timer IRQ defaults to IO-APIC IRQ
2134 * - if this function detects that timer IRQs are defunct, then we fall
2135 * back to ISA timer IRQs
2136 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002137static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002140 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Zachary Amsden8542b202006-12-07 02:14:09 +01002142 if (no_timer_check)
2143 return 1;
2144
Ingo Molnar4aae0702007-12-18 18:05:58 +01002145 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 local_irq_enable();
2147 /* Let ten ticks pass... */
2148 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002149 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /*
2152 * Expect a few ticks at least, to be sure some possible
2153 * glue logic does not lock up after one or two first
2154 * ticks in a non-ExtINT mode. Also the local APIC
2155 * might have cached one ExtINT interrupt. Finally, at
2156 * least one tick may be lost due to delays.
2157 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002158
2159 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002160 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return 0;
2163}
2164
2165/*
2166 * In the SMP+IOAPIC case it might happen that there are an unspecified
2167 * number of pending IRQ events unhandled. These cases are very rare,
2168 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2169 * better to do it this way as thus we do not have to be aware of
2170 * 'pending' interrupts in the IRQ path, except at this point.
2171 */
2172/*
2173 * Edge triggered needs to resend any interrupt
2174 * that was delayed but this is now handled in the device
2175 * independent code.
2176 */
2177
2178/*
2179 * Starting up a edge-triggered IO-APIC interrupt is
2180 * nasty - we need to make sure that we get the edge.
2181 * If it is already asserted for some reason, we need
2182 * return 1 to indicate that is was pending.
2183 *
2184 * This is not complete - we should be able to fake
2185 * an edge even if it isn't on the 8259A...
2186 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002187
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002188static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
2190 int was_pending = 0;
2191 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002192 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002195 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 disable_8259A_irq(irq);
2197 if (i8259A_irq_pending(irq))
2198 was_pending = 1;
2199 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002200 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002201 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 spin_unlock_irqrestore(&ioapic_lock, flags);
2203
2204 return was_pending;
2205}
2206
Ingo Molnar54168ed2008-08-20 09:07:45 +02002207#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002208static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002210
2211 struct irq_cfg *cfg = irq_cfg(irq);
2212 unsigned long flags;
2213
2214 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002215 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002216 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002217
2218 return 1;
2219}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002220#else
2221static int ioapic_retrigger_irq(unsigned int irq)
2222{
Ingo Molnardac5f412009-01-28 15:42:24 +01002223 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002224
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002225 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002226}
2227#endif
2228
2229/*
2230 * Level and edge triggered IO-APIC interrupts need different handling,
2231 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2232 * handled with the level-triggered descriptor, but that one has slightly
2233 * more overhead. Level-triggered interrupts cannot be handled with the
2234 * edge-triggered handler, without risking IRQ storms and other ugly
2235 * races.
2236 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002237
Yinghai Lu497c9a12008-08-19 20:50:28 -07002238#ifdef CONFIG_SMP
Gary Hadee85abf82009-04-08 14:07:25 -07002239static void send_cleanup_vector(struct irq_cfg *cfg)
2240{
2241 cpumask_var_t cleanup_mask;
2242
2243 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2244 unsigned int i;
2245 cfg->move_cleanup_count = 0;
2246 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2247 cfg->move_cleanup_count++;
2248 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2249 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2250 } else {
2251 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2252 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
2253 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2254 free_cpumask_var(cleanup_mask);
2255 }
2256 cfg->move_in_progress = 0;
2257}
2258
Ingo Molnar44204712009-05-01 19:02:50 +02002259static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002260{
2261 int apic, pin;
2262 struct irq_pin_list *entry;
2263 u8 vector = cfg->vector;
2264
2265 entry = cfg->irq_2_pin;
2266 for (;;) {
2267 unsigned int reg;
2268
2269 if (!entry)
2270 break;
2271
2272 apic = entry->apic;
2273 pin = entry->pin;
2274 /*
2275 * With interrupt-remapping, destination information comes
2276 * from interrupt-remapping table entry.
2277 */
2278 if (!irq_remapped(irq))
2279 io_apic_write(apic, 0x11 + pin*2, dest);
2280 reg = io_apic_read(apic, 0x10 + pin*2);
2281 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2282 reg |= vector;
2283 io_apic_modify(apic, 0x10 + pin*2, reg);
2284 if (!entry->next)
2285 break;
2286 entry = entry->next;
2287 }
2288}
2289
Ingo Molnar44204712009-05-01 19:02:50 +02002290static int
2291assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
2292
Gary Hadee85abf82009-04-08 14:07:25 -07002293/*
2294 * Either sets desc->affinity to a valid value, and returns
2295 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2296 * leaves desc->affinity untouched.
2297 */
2298static unsigned int
2299set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
2300{
2301 struct irq_cfg *cfg;
2302 unsigned int irq;
2303
2304 if (!cpumask_intersects(mask, cpu_online_mask))
2305 return BAD_APICID;
2306
2307 irq = desc->irq;
2308 cfg = desc->chip_data;
2309 if (assign_irq_vector(irq, cfg, mask))
2310 return BAD_APICID;
2311
Gary Hadee85abf82009-04-08 14:07:25 -07002312 cpumask_copy(desc->affinity, mask);
2313
2314 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2315}
2316
Ingo Molnar44204712009-05-01 19:02:50 +02002317static int
Gary Hadee85abf82009-04-08 14:07:25 -07002318set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2319{
2320 struct irq_cfg *cfg;
2321 unsigned long flags;
2322 unsigned int dest;
2323 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002324 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002325
2326 irq = desc->irq;
2327 cfg = desc->chip_data;
2328
2329 spin_lock_irqsave(&ioapic_lock, flags);
2330 dest = set_desc_affinity(desc, mask);
2331 if (dest != BAD_APICID) {
2332 /* Only the high 8 bits are valid. */
2333 dest = SET_APIC_LOGICAL_ID(dest);
2334 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar44204712009-05-01 19:02:50 +02002335 ret = 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002336 }
2337 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002338
2339 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002340}
2341
Ingo Molnar44204712009-05-01 19:02:50 +02002342static int
Gary Hadee85abf82009-04-08 14:07:25 -07002343set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2344{
2345 struct irq_desc *desc;
2346
2347 desc = irq_to_desc(irq);
2348
Ingo Molnar44204712009-05-01 19:02:50 +02002349 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002350}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002351
2352#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002353
2354/*
2355 * Migrate the IO-APIC irq in the presence of intr-remapping.
2356 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002357 * For both level and edge triggered, irq migration is a simple atomic
2358 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002359 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002360 * For level triggered, we eliminate the io-apic RTE modification (with the
2361 * updated vector information), by using a virtual vector (io-apic pin number).
2362 * Real vector that is used for interrupting cpu will be coming from
2363 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002364 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002365static int
Mike Travise7986732008-12-16 17:33:52 -08002366migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002367{
2368 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002369 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002370 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002371 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002372 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002373
Mike Travis22f65d32008-12-16 17:33:56 -08002374 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002375 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002376
Yinghai Lu3145e942008-12-05 18:58:34 -08002377 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002378 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002379 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002380
Yinghai Lu3145e942008-12-05 18:58:34 -08002381 cfg = desc->chip_data;
2382 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002383 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002384
Ingo Molnardebccb32009-01-28 15:20:18 +01002385 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386
Ingo Molnar54168ed2008-08-20 09:07:45 +02002387 irte.vector = cfg->vector;
2388 irte.dest_id = IRTE_DEST(dest);
2389
2390 /*
2391 * Modified the IRTE and flushes the Interrupt entry cache.
2392 */
2393 modify_irte(irq, &irte);
2394
Mike Travis22f65d32008-12-16 17:33:56 -08002395 if (cfg->move_in_progress)
2396 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002397
Mike Travis7f7ace02009-01-10 21:58:08 -08002398 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002399
2400 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002401}
2402
Ingo Molnar54168ed2008-08-20 09:07:45 +02002403/*
2404 * Migrates the IRQ destination in the process context.
2405 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002406static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302407 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002408{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002409 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002410}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002411static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302412 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002413{
2414 struct irq_desc *desc = irq_to_desc(irq);
2415
Yinghai Lud5dedd42009-04-27 17:59:21 -07002416 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002417}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002418#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002419static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002420 const struct cpumask *mask)
2421{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002422 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002423}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002424#endif
2425
Yinghai Lu497c9a12008-08-19 20:50:28 -07002426asmlinkage void smp_irq_move_cleanup_interrupt(void)
2427{
2428 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002429
Yinghai Lu497c9a12008-08-19 20:50:28 -07002430 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002431 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002432 irq_enter();
2433
2434 me = smp_processor_id();
2435 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2436 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002437 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002438 struct irq_desc *desc;
2439 struct irq_cfg *cfg;
2440 irq = __get_cpu_var(vector_irq)[vector];
2441
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002442 if (irq == -1)
2443 continue;
2444
Yinghai Lu497c9a12008-08-19 20:50:28 -07002445 desc = irq_to_desc(irq);
2446 if (!desc)
2447 continue;
2448
2449 cfg = irq_cfg(irq);
2450 spin_lock(&desc->lock);
2451 if (!cfg->move_cleanup_count)
2452 goto unlock;
2453
Mike Travis22f65d32008-12-16 17:33:56 -08002454 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002455 goto unlock;
2456
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002457 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2458 /*
2459 * Check if the vector that needs to be cleanedup is
2460 * registered at the cpu's IRR. If so, then this is not
2461 * the best time to clean it up. Lets clean it up in the
2462 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2463 * to myself.
2464 */
2465 if (irr & (1 << (vector % 32))) {
2466 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2467 goto unlock;
2468 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002469 __get_cpu_var(vector_irq)[vector] = -1;
2470 cfg->move_cleanup_count--;
2471unlock:
2472 spin_unlock(&desc->lock);
2473 }
2474
2475 irq_exit();
2476}
2477
Yinghai Lu3145e942008-12-05 18:58:34 -08002478static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002479{
Yinghai Lu3145e942008-12-05 18:58:34 -08002480 struct irq_desc *desc = *descp;
2481 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002482 unsigned vector, me;
2483
Yinghai Lufcef5912009-04-27 17:58:23 -07002484 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002485 return;
2486
2487 vector = ~get_irq_regs()->orig_ax;
2488 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002489
Yinghai Lufcef5912009-04-27 17:58:23 -07002490 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002491 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002492}
2493#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002494static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002495#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002496
Yinghai Lu1d025192008-08-19 20:50:34 -07002497static void ack_apic_edge(unsigned int irq)
2498{
Yinghai Lu3145e942008-12-05 18:58:34 -08002499 struct irq_desc *desc = irq_to_desc(irq);
2500
2501 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002502 move_native_irq(irq);
2503 ack_APIC_irq();
2504}
2505
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002506atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002507
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002508static void ack_apic_level(unsigned int irq)
2509{
Yinghai Lu3145e942008-12-05 18:58:34 -08002510 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002511 unsigned long v;
2512 int i;
Yinghai Lu3145e942008-12-05 18:58:34 -08002513 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002514 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002515
Yinghai Lu3145e942008-12-05 18:58:34 -08002516 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002517#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002518 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002519 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002520 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002521 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002522 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002523#endif
2524
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002525 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002526 * It appears there is an erratum which affects at least version 0x11
2527 * of I/O APIC (that's the 82093AA and cores integrated into various
2528 * chipsets). Under certain conditions a level-triggered interrupt is
2529 * erroneously delivered as edge-triggered one but the respective IRR
2530 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2531 * message but it will never arrive and further interrupts are blocked
2532 * from the source. The exact reason is so far unknown, but the
2533 * phenomenon was observed when two consecutive interrupt requests
2534 * from a given source get delivered to the same CPU and the source is
2535 * temporarily disabled in between.
2536 *
2537 * A workaround is to simulate an EOI message manually. We achieve it
2538 * by setting the trigger mode to edge and then to level when the edge
2539 * trigger mode gets detected in the TMR of a local APIC for a
2540 * level-triggered interrupt. We mask the source for the time of the
2541 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2542 * The idea is from Manfred Spraul. --macro
2543 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002544 cfg = desc->chip_data;
2545 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002546 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002547
Ingo Molnar54168ed2008-08-20 09:07:45 +02002548 /*
2549 * We must acknowledge the irq before we move it or the acknowledge will
2550 * not propagate properly.
2551 */
2552 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002553
Ingo Molnar54168ed2008-08-20 09:07:45 +02002554 /* Now we can move and renable the irq */
2555 if (unlikely(do_unmask_irq)) {
2556 /* Only migrate the irq if the ack has been received.
2557 *
2558 * On rare occasions the broadcast level triggered ack gets
2559 * delayed going to ioapics, and if we reprogram the
2560 * vector while Remote IRR is still set the irq will never
2561 * fire again.
2562 *
2563 * To prevent this scenario we read the Remote IRR bit
2564 * of the ioapic. This has two effects.
2565 * - On any sane system the read of the ioapic will
2566 * flush writes (and acks) going to the ioapic from
2567 * this cpu.
2568 * - We get to see if the ACK has actually been delivered.
2569 *
2570 * Based on failed experiments of reprogramming the
2571 * ioapic entry from outside of irq context starting
2572 * with masking the ioapic entry and then polling until
2573 * Remote IRR was clear before reprogramming the
2574 * ioapic I don't trust the Remote IRR bit to be
2575 * completey accurate.
2576 *
2577 * However there appears to be no other way to plug
2578 * this race, so if the Remote IRR bit is not
2579 * accurate and is causing problems then it is a hardware bug
2580 * and you can go talk to the chipset vendor about it.
2581 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002582 cfg = desc->chip_data;
2583 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002584 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002585 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002586 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002587
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002588 /* Tail end of version 0x11 I/O APIC bug workaround */
Yinghai Lu1d025192008-08-19 20:50:34 -07002589 if (!(v & (1 << (i & 0x1f)))) {
2590 atomic_inc(&irq_mis_count);
2591 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002592 __mask_and_edge_IO_APIC_irq(cfg);
2593 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002594 spin_unlock(&ioapic_lock);
2595 }
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002596}
Yinghai Lu1d025192008-08-19 20:50:34 -07002597
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002598#ifdef CONFIG_INTR_REMAP
Suresh Siddha25629d82009-04-20 13:02:28 -07002599static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2600{
2601 int apic, pin;
2602 struct irq_pin_list *entry;
2603
2604 entry = cfg->irq_2_pin;
2605 for (;;) {
2606
2607 if (!entry)
2608 break;
2609
2610 apic = entry->apic;
2611 pin = entry->pin;
2612 io_apic_eoi(apic, pin);
2613 entry = entry->next;
2614 }
2615}
2616
2617static void
2618eoi_ioapic_irq(struct irq_desc *desc)
2619{
2620 struct irq_cfg *cfg;
2621 unsigned long flags;
2622 unsigned int irq;
2623
2624 irq = desc->irq;
2625 cfg = desc->chip_data;
2626
2627 spin_lock_irqsave(&ioapic_lock, flags);
2628 __eoi_ioapic_irq(irq, cfg);
2629 spin_unlock_irqrestore(&ioapic_lock, flags);
2630}
2631
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002632static void ir_ack_apic_edge(unsigned int irq)
2633{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002634 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002635}
2636
2637static void ir_ack_apic_level(unsigned int irq)
2638{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002639 struct irq_desc *desc = irq_to_desc(irq);
2640
2641 ack_APIC_irq();
2642 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002643}
2644#endif /* CONFIG_INTR_REMAP */
2645
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002646static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002647 .name = "IO-APIC",
2648 .startup = startup_ioapic_irq,
2649 .mask = mask_IO_APIC_irq,
2650 .unmask = unmask_IO_APIC_irq,
2651 .ack = ack_apic_edge,
2652 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002653#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002654 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002655#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002656 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657};
2658
Ingo Molnar54168ed2008-08-20 09:07:45 +02002659static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002660 .name = "IR-IO-APIC",
2661 .startup = startup_ioapic_irq,
2662 .mask = mask_IO_APIC_irq,
2663 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302664#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002665 .ack = ir_ack_apic_edge,
2666 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002667#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002668 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002669#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302670#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002671 .retrigger = ioapic_retrigger_irq,
2672};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
2674static inline void init_IO_APIC_traps(void)
2675{
2676 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002677 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002678 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680 /*
2681 * NOTE! The local APIC isn't very good at handling
2682 * multiple interrupts at the same interrupt level.
2683 * As the interrupt level is determined by taking the
2684 * vector number and shifting that right by 4, we
2685 * want to spread these out a bit so that they don't
2686 * all fall in the same interrupt level.
2687 *
2688 * Also, we've got to be careful not to trash gate
2689 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2690 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002691 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002692 cfg = desc->chip_data;
2693 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 /*
2695 * Hmm.. We don't have an entry for this,
2696 * so default to an old-fashioned 8259
2697 * interrupt if we can..
2698 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002699 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002701 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002703 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 }
2705 }
2706}
2707
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002708/*
2709 * The local APIC irq-chip implementation:
2710 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002712static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
2714 unsigned long v;
2715
2716 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002717 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718}
2719
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002720static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002722 unsigned long v;
2723
2724 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002725 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
2727
Yinghai Lu3145e942008-12-05 18:58:34 -08002728static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002729{
2730 ack_APIC_irq();
2731}
2732
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002733static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002734 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002735 .mask = mask_lapic_irq,
2736 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002737 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738};
2739
Yinghai Lu3145e942008-12-05 18:58:34 -08002740static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002741{
Yinghai Lu08678b02008-08-19 20:50:05 -07002742 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002743 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2744 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002745}
2746
Jan Beuliche9427102008-01-30 13:31:24 +01002747static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002750 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 * We put the 8259A master into AEOI mode and
2752 * unmask on all local APICs LVT0 as NMI.
2753 *
2754 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2755 * is from Maciej W. Rozycki - so we do not have to EOI from
2756 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2759
Jan Beuliche9427102008-01-30 13:31:24 +01002760 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 apic_printk(APIC_VERBOSE, " done.\n");
2763}
2764
2765/*
2766 * This looks a bit hackish but it's about the only one way of sending
2767 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2768 * not support the ExtINT mode, unfortunately. We need to send these
2769 * cycles as some i82489DX-based boards have glue logic that keeps the
2770 * 8259A interrupt line asserted until INTA. --macro
2771 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002772static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002774 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 struct IO_APIC_route_entry entry0, entry1;
2776 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002778 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002779 if (pin == -1) {
2780 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002782 }
2783 apic = find_isa_irq_apic(8, mp_INT);
2784 if (apic == -1) {
2785 WARN_ON_ONCE(1);
2786 return;
2787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Andi Kleencf4c6a22006-09-26 10:52:30 +02002789 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002790 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 memset(&entry1, 0, sizeof(entry1));
2793
2794 entry1.dest_mode = 0; /* physical delivery */
2795 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002796 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 entry1.delivery_mode = dest_ExtINT;
2798 entry1.polarity = entry0.polarity;
2799 entry1.trigger = 0;
2800 entry1.vector = 0;
2801
Andi Kleencf4c6a22006-09-26 10:52:30 +02002802 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 save_control = CMOS_READ(RTC_CONTROL);
2805 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2806 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2807 RTC_FREQ_SELECT);
2808 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2809
2810 i = 100;
2811 while (i-- > 0) {
2812 mdelay(10);
2813 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2814 i -= 10;
2815 }
2816
2817 CMOS_WRITE(save_control, RTC_CONTROL);
2818 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002819 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Andi Kleencf4c6a22006-09-26 10:52:30 +02002821 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
Yinghai Luefa25592008-08-19 20:50:36 -07002824static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002825/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002826static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002827{
2828 disable_timer_pin_1 = 1;
2829 return 0;
2830}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002831early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002832
2833int timer_through_8259 __initdata;
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835/*
2836 * This code may look a bit paranoid, but it's supposed to cooperate with
2837 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2838 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2839 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002840 *
2841 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002843static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844{
Yinghai Lu3145e942008-12-05 18:58:34 -08002845 struct irq_desc *desc = irq_to_desc(0);
2846 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002847 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002848 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002849 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002850 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002851
2852 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 /*
2855 * get/set the timer IRQ vector:
2856 */
2857 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002858 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002861 * As IRQ0 is to be enabled in the 8259A, the virtual
2862 * wire has to be disabled in the local APIC. Also
2863 * timer interrupts need to be acknowledged manually in
2864 * the 8259A for the i82489DX when using the NMI
2865 * watchdog as that APIC treats NMIs as level-triggered.
2866 * The AEOI mode will finish them in the 8259A
2867 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002869 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002871#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002872 {
2873 unsigned int ver;
2874
2875 ver = apic_read(APIC_LVR);
2876 ver = GET_APIC_VERSION(ver);
2877 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2878 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002879#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002881 pin1 = find_isa_irq_pin(0, mp_INT);
2882 apic1 = find_isa_irq_apic(0, mp_INT);
2883 pin2 = ioapic_i8259.pin;
2884 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002886 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2887 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002888 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002890 /*
2891 * Some BIOS writers are clueless and report the ExtINTA
2892 * I/O APIC input from the cascaded 8259A as the timer
2893 * interrupt input. So just in case, if only one pin
2894 * was found above, try it both directly and through the
2895 * 8259A.
2896 */
2897 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002898 if (intr_remapping_enabled)
2899 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002900 pin1 = pin2;
2901 apic1 = apic2;
2902 no_pin1 = 1;
2903 } else if (pin2 == -1) {
2904 pin2 = pin1;
2905 apic2 = apic1;
2906 }
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (pin1 != -1) {
2909 /*
2910 * Ok, does IRQ0 through the IOAPIC work?
2911 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002912 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002913 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002914 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002915 } else {
2916 /* for edge trigger, setup_IO_APIC_irq already
2917 * leave it unmasked.
2918 * so only need to unmask if it is level-trigger
2919 * do we really have level trigger timer?
2920 */
2921 int idx;
2922 idx = find_irq_entry(apic1, pin1, mp_INT);
2923 if (idx != -1 && irq_trigger(idx))
2924 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (timer_irq_works()) {
2927 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 setup_nmi();
2929 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002931 if (disable_timer_pin_1 > 0)
2932 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002933 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002935 if (intr_remapping_enabled)
2936 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002937 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002938 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002939 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002940 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2941 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002943 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2944 "(IRQ0) through the 8259A ...\n");
2945 apic_printk(APIC_QUIET, KERN_INFO
2946 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 /*
2948 * legacy devices should be connected to IO APIC #0
2949 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002950 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002951 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002952 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002954 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002955 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002957 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002959 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002961 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 }
2963 /*
2964 * Cleanup, just in case ...
2965 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002966 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002967 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002968 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002969 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002973 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2974 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002975 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002977#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002978 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002981 apic_printk(APIC_QUIET, KERN_INFO
2982 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Yinghai Lu3145e942008-12-05 18:58:34 -08002984 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002985 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 enable_8259A_irq(0);
2987
2988 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002989 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002990 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002992 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002993 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002994 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002995 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002997 apic_printk(APIC_QUIET, KERN_INFO
2998 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 init_8259A(0);
3001 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003002 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 unlock_ExtINT_logic();
3005
3006 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003007 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003008 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003010 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003011 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003013 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003014out:
3015 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
3017
3018/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003019 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3020 * to devices. However there may be an I/O APIC pin available for
3021 * this interrupt regardless. The pin may be left unconnected, but
3022 * typically it will be reused as an ExtINT cascade interrupt for
3023 * the master 8259A. In the MPS case such a pin will normally be
3024 * reported as an ExtINT interrupt in the MP table. With ACPI
3025 * there is no provision for ExtINT interrupts, and in the absence
3026 * of an override it would be treated as an ordinary ISA I/O APIC
3027 * interrupt, that is edge-triggered and unmasked by default. We
3028 * used to do this, but it caused problems on some systems because
3029 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3030 * the same ExtINT cascade interrupt to drive the local APIC of the
3031 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3032 * the I/O APIC in all cases now. No actual device should request
3033 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 */
3035#define PIC_IRQS (1 << PIC_CASCADE_IR)
3036
3037void __init setup_IO_APIC(void)
3038{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003039
Ingo Molnar54168ed2008-08-20 09:07:45 +02003040 /*
3041 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3042 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003044 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Ingo Molnar54168ed2008-08-20 09:07:45 +02003046 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003047 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003048 * Set up IO-APIC IRQ routing.
3049 */
3050#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003051 if (!acpi_ioapic)
3052 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 sync_Arb_IDs();
3055 setup_IO_APIC_irqs();
3056 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003057 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
3060/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003061 * Called after all the initialization is done. If we didnt find any
3062 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065static int __init io_apic_bug_finalize(void)
3066{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003067 if (sis_apic_bug == -1)
3068 sis_apic_bug = 0;
3069 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070}
3071
3072late_initcall(io_apic_bug_finalize);
3073
3074struct sysfs_ioapic_data {
3075 struct sys_device dev;
3076 struct IO_APIC_route_entry entry[0];
3077};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003078static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Pavel Machek438510f2005-04-16 15:25:24 -07003080static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
3082 struct IO_APIC_route_entry *entry;
3083 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 data = container_of(dev, struct sysfs_ioapic_data, dev);
3087 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003088 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3089 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
3091 return 0;
3092}
3093
3094static int ioapic_resume(struct sys_device *dev)
3095{
3096 struct IO_APIC_route_entry *entry;
3097 struct sysfs_ioapic_data *data;
3098 unsigned long flags;
3099 union IO_APIC_reg_00 reg_00;
3100 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 data = container_of(dev, struct sysfs_ioapic_data, dev);
3103 entry = data->entry;
3104
3105 spin_lock_irqsave(&ioapic_lock, flags);
3106 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303107 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3108 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 io_apic_write(dev->id, 0, reg_00.raw);
3110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003112 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003113 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115 return 0;
3116}
3117
3118static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003119 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 .suspend = ioapic_suspend,
3121 .resume = ioapic_resume,
3122};
3123
3124static int __init ioapic_init_sysfs(void)
3125{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003126 struct sys_device * dev;
3127 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
3129 error = sysdev_class_register(&ioapic_sysdev_class);
3130 if (error)
3131 return error;
3132
Ingo Molnar54168ed2008-08-20 09:07:45 +02003133 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003134 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003136 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 if (!mp_ioapic_data[i]) {
3138 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3139 continue;
3140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003142 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 dev->cls = &ioapic_sysdev_class;
3144 error = sysdev_register(dev);
3145 if (error) {
3146 kfree(mp_ioapic_data[i]);
3147 mp_ioapic_data[i] = NULL;
3148 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3149 continue;
3150 }
3151 }
3152
3153 return 0;
3154}
3155
3156device_initcall(ioapic_init_sysfs);
3157
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003158static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003159/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003160 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003161 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003162unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003163{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003164 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003165 unsigned int irq;
3166 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003167 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003168 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003169 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003170
3171 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003172 if (irq_want < nr_irqs_gsi)
3173 irq_want = nr_irqs_gsi;
3174
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003175 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003176 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003177 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003178 if (!desc_new) {
3179 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003180 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003181 }
3182 cfg_new = desc_new->chip_data;
3183
3184 if (cfg_new->vector != 0)
3185 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003186
Yinghai Lu15e957d2009-04-30 01:17:50 -07003187 desc_new = move_irq_desc(desc_new, node);
Yinghai Lud047f53a2009-04-27 18:02:23 -07003188
Ingo Molnarfe402e12009-01-28 04:32:51 +01003189 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003190 irq = new;
3191 break;
3192 }
3193 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003194
Yinghai Lu199751d2008-08-19 20:50:27 -07003195 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003196 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003197 /* restore it, in case dynamic_irq_init clear it */
3198 if (desc_new)
3199 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003200 }
3201 return irq;
3202}
3203
Yinghai Lu199751d2008-08-19 20:50:27 -07003204int create_irq(void)
3205{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003206 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003207 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003208 int irq;
3209
Yinghai Lube5d5352008-12-05 18:58:33 -08003210 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003211 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003212
3213 if (irq == 0)
3214 irq = -1;
3215
3216 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003217}
3218
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003219void destroy_irq(unsigned int irq)
3220{
3221 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003222 struct irq_cfg *cfg;
3223 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003224
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003225 /* store it, in case dynamic_irq_cleanup clear it */
3226 desc = irq_to_desc(irq);
3227 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003228 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003229 /* connect back irq_cfg */
3230 if (desc)
3231 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003232
Ingo Molnar54168ed2008-08-20 09:07:45 +02003233 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003234 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003235 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003236 spin_unlock_irqrestore(&vector_lock, flags);
3237}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003238
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003239/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003240 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003241 */
3242#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003243static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003244{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003245 struct irq_cfg *cfg;
3246 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003247 unsigned dest;
3248
Jan Beulichf1182632009-01-14 12:27:35 +00003249 if (disable_apic)
3250 return -ENXIO;
3251
Yinghai Lu3145e942008-12-05 18:58:34 -08003252 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003253 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003254 if (err)
3255 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003256
Ingo Molnardebccb32009-01-28 15:20:18 +01003257 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003258
Ingo Molnar54168ed2008-08-20 09:07:45 +02003259 if (irq_remapped(irq)) {
3260 struct irte irte;
3261 int ir_index;
3262 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003263
Ingo Molnar54168ed2008-08-20 09:07:45 +02003264 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3265 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003266
Ingo Molnar54168ed2008-08-20 09:07:45 +02003267 memset (&irte, 0, sizeof(irte));
3268
3269 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003270 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003271 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003272 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003273 irte.vector = cfg->vector;
3274 irte.dest_id = IRTE_DEST(dest);
3275
Weidong Hanf007e992009-05-23 00:41:15 +08003276 /* Set source-id of interrupt request */
3277 set_msi_sid(&irte, pdev);
3278
Ingo Molnar54168ed2008-08-20 09:07:45 +02003279 modify_irte(irq, &irte);
3280
3281 msg->address_hi = MSI_ADDR_BASE_HI;
3282 msg->data = sub_handle;
3283 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3284 MSI_ADDR_IR_SHV |
3285 MSI_ADDR_IR_INDEX1(ir_index) |
3286 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003287 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003288 if (x2apic_enabled())
3289 msg->address_hi = MSI_ADDR_BASE_HI |
3290 MSI_ADDR_EXT_DEST_ID(dest);
3291 else
3292 msg->address_hi = MSI_ADDR_BASE_HI;
3293
Ingo Molnar54168ed2008-08-20 09:07:45 +02003294 msg->address_lo =
3295 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003296 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003297 MSI_ADDR_DEST_MODE_PHYSICAL:
3298 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003299 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003300 MSI_ADDR_REDIRECTION_CPU:
3301 MSI_ADDR_REDIRECTION_LOWPRI) |
3302 MSI_ADDR_DEST_ID(dest);
3303
3304 msg->data =
3305 MSI_DATA_TRIGGER_EDGE |
3306 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003307 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003308 MSI_DATA_DELIVERY_FIXED:
3309 MSI_DATA_DELIVERY_LOWPRI) |
3310 MSI_DATA_VECTOR(cfg->vector);
3311 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003312 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003313}
3314
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003315#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003316static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003317{
Yinghai Lu3145e942008-12-05 18:58:34 -08003318 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003319 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003320 struct msi_msg msg;
3321 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003322
Mike Travis22f65d32008-12-16 17:33:56 -08003323 dest = set_desc_affinity(desc, mask);
3324 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003325 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003326
Yinghai Lu3145e942008-12-05 18:58:34 -08003327 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003328
Yinghai Lu3145e942008-12-05 18:58:34 -08003329 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003330
3331 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003332 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003333 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3334 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3335
Yinghai Lu3145e942008-12-05 18:58:34 -08003336 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003337
3338 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003339}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003340#ifdef CONFIG_INTR_REMAP
3341/*
3342 * Migrate the MSI irq to another cpumask. This migration is
3343 * done in the process context using interrupt-remapping hardware.
3344 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003345static int
Mike Travise7986732008-12-16 17:33:52 -08003346ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003347{
Yinghai Lu3145e942008-12-05 18:58:34 -08003348 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003349 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003350 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003351 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003352
3353 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003354 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003355
Mike Travis22f65d32008-12-16 17:33:56 -08003356 dest = set_desc_affinity(desc, mask);
3357 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003358 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003359
Ingo Molnar54168ed2008-08-20 09:07:45 +02003360 irte.vector = cfg->vector;
3361 irte.dest_id = IRTE_DEST(dest);
3362
3363 /*
3364 * atomically update the IRTE with the new destination and vector.
3365 */
3366 modify_irte(irq, &irte);
3367
3368 /*
3369 * After this point, all the interrupts will start arriving
3370 * at the new destination. So, time to cleanup the previous
3371 * vector allocation.
3372 */
Mike Travis22f65d32008-12-16 17:33:56 -08003373 if (cfg->move_in_progress)
3374 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003375
3376 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003377}
Yinghai Lu3145e942008-12-05 18:58:34 -08003378
Ingo Molnar54168ed2008-08-20 09:07:45 +02003379#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003380#endif /* CONFIG_SMP */
3381
3382/*
3383 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3384 * which implement the MSI or MSI-X Capability Structure.
3385 */
3386static struct irq_chip msi_chip = {
3387 .name = "PCI-MSI",
3388 .unmask = unmask_msi_irq,
3389 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003390 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003391#ifdef CONFIG_SMP
3392 .set_affinity = set_msi_irq_affinity,
3393#endif
3394 .retrigger = ioapic_retrigger_irq,
3395};
3396
Ingo Molnar54168ed2008-08-20 09:07:45 +02003397static struct irq_chip msi_ir_chip = {
3398 .name = "IR-PCI-MSI",
3399 .unmask = unmask_msi_irq,
3400 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303401#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003402 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003403#ifdef CONFIG_SMP
3404 .set_affinity = ir_set_msi_irq_affinity,
3405#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303406#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003407 .retrigger = ioapic_retrigger_irq,
3408};
3409
3410/*
3411 * Map the PCI dev to the corresponding remapping hardware unit
3412 * and allocate 'nvec' consecutive interrupt-remapping table entries
3413 * in it.
3414 */
3415static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3416{
3417 struct intel_iommu *iommu;
3418 int index;
3419
3420 iommu = map_dev_to_ir(dev);
3421 if (!iommu) {
3422 printk(KERN_ERR
3423 "Unable to map PCI %s to iommu\n", pci_name(dev));
3424 return -ENOENT;
3425 }
3426
3427 index = alloc_irte(iommu, irq, nvec);
3428 if (index < 0) {
3429 printk(KERN_ERR
3430 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003431 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003432 return -ENOSPC;
3433 }
3434 return index;
3435}
Yinghai Lu1d025192008-08-19 20:50:34 -07003436
Yinghai Lu3145e942008-12-05 18:58:34 -08003437static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003438{
3439 int ret;
3440 struct msi_msg msg;
3441
3442 ret = msi_compose_msg(dev, irq, &msg);
3443 if (ret < 0)
3444 return ret;
3445
Yinghai Lu3145e942008-12-05 18:58:34 -08003446 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003447 write_msi_msg(irq, &msg);
3448
Ingo Molnar54168ed2008-08-20 09:07:45 +02003449 if (irq_remapped(irq)) {
3450 struct irq_desc *desc = irq_to_desc(irq);
3451 /*
3452 * irq migration in process context
3453 */
3454 desc->status |= IRQ_MOVE_PCNTXT;
3455 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3456 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003457 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003458
Yinghai Luc81bba42008-09-25 11:53:11 -07003459 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3460
Yinghai Lu1d025192008-08-19 20:50:34 -07003461 return 0;
3462}
3463
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003464int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3465{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003466 unsigned int irq;
3467 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003468 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003469 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003470 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003471 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003472 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003473
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003474 /* x86 doesn't support multiple MSI yet */
3475 if (type == PCI_CAP_ID_MSI && nvec > 1)
3476 return 1;
3477
Yinghai Lud047f53a2009-04-27 18:02:23 -07003478 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003479 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003480 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003481 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003482 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003483 if (irq == 0)
3484 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003485 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003486 if (!intr_remapping_enabled)
3487 goto no_ir;
3488
3489 if (!sub_handle) {
3490 /*
3491 * allocate the consecutive block of IRTE's
3492 * for 'nvec'
3493 */
3494 index = msi_alloc_irte(dev, irq, nvec);
3495 if (index < 0) {
3496 ret = index;
3497 goto error;
3498 }
3499 } else {
3500 iommu = map_dev_to_ir(dev);
3501 if (!iommu) {
3502 ret = -ENOENT;
3503 goto error;
3504 }
3505 /*
3506 * setup the mapping between the irq and the IRTE
3507 * base index, the sub_handle pointing to the
3508 * appropriate interrupt remap table entry.
3509 */
3510 set_irte_irq(irq, iommu, index, sub_handle);
3511 }
3512no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003513 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003514 if (ret < 0)
3515 goto error;
3516 sub_handle++;
3517 }
3518 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003519
3520error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521 destroy_irq(irq);
3522 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003523}
3524
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003525void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003526{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003527 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003528}
3529
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003530#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003531#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003532static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003533{
Yinghai Lu3145e942008-12-05 18:58:34 -08003534 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003535 struct irq_cfg *cfg;
3536 struct msi_msg msg;
3537 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003538
Mike Travis22f65d32008-12-16 17:33:56 -08003539 dest = set_desc_affinity(desc, mask);
3540 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003541 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003542
Yinghai Lu3145e942008-12-05 18:58:34 -08003543 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003544
3545 dmar_msi_read(irq, &msg);
3546
3547 msg.data &= ~MSI_DATA_VECTOR_MASK;
3548 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3549 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3550 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3551
3552 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003553
3554 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003555}
Yinghai Lu3145e942008-12-05 18:58:34 -08003556
Ingo Molnar54168ed2008-08-20 09:07:45 +02003557#endif /* CONFIG_SMP */
3558
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003559static struct irq_chip dmar_msi_type = {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003560 .name = "DMAR_MSI",
3561 .unmask = dmar_msi_unmask,
3562 .mask = dmar_msi_mask,
3563 .ack = ack_apic_edge,
3564#ifdef CONFIG_SMP
3565 .set_affinity = dmar_msi_set_affinity,
3566#endif
3567 .retrigger = ioapic_retrigger_irq,
3568};
3569
3570int arch_setup_dmar_msi(unsigned int irq)
3571{
3572 int ret;
3573 struct msi_msg msg;
3574
3575 ret = msi_compose_msg(NULL, irq, &msg);
3576 if (ret < 0)
3577 return ret;
3578 dmar_msi_write(irq, &msg);
3579 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3580 "edge");
3581 return 0;
3582}
3583#endif
3584
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003585#ifdef CONFIG_HPET_TIMER
3586
3587#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003588static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003589{
Yinghai Lu3145e942008-12-05 18:58:34 -08003590 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003591 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003592 struct msi_msg msg;
3593 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003594
Mike Travis22f65d32008-12-16 17:33:56 -08003595 dest = set_desc_affinity(desc, mask);
3596 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003597 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003598
Yinghai Lu3145e942008-12-05 18:58:34 -08003599 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003600
3601 hpet_msi_read(irq, &msg);
3602
3603 msg.data &= ~MSI_DATA_VECTOR_MASK;
3604 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3605 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3606 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3607
3608 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003609
3610 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003611}
Yinghai Lu3145e942008-12-05 18:58:34 -08003612
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003613#endif /* CONFIG_SMP */
3614
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003615static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003616 .name = "HPET_MSI",
3617 .unmask = hpet_msi_unmask,
3618 .mask = hpet_msi_mask,
3619 .ack = ack_apic_edge,
3620#ifdef CONFIG_SMP
3621 .set_affinity = hpet_msi_set_affinity,
3622#endif
3623 .retrigger = ioapic_retrigger_irq,
3624};
3625
3626int arch_setup_hpet_msi(unsigned int irq)
3627{
3628 int ret;
3629 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003630 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003631
3632 ret = msi_compose_msg(NULL, irq, &msg);
3633 if (ret < 0)
3634 return ret;
3635
3636 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003637 desc->status |= IRQ_MOVE_PCNTXT;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003638 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3639 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003640
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003641 return 0;
3642}
3643#endif
3644
Ingo Molnar54168ed2008-08-20 09:07:45 +02003645#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003646/*
3647 * Hypertransport interrupt support
3648 */
3649#ifdef CONFIG_HT_IRQ
3650
3651#ifdef CONFIG_SMP
3652
Yinghai Lu497c9a12008-08-19 20:50:28 -07003653static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003654{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003655 struct ht_irq_msg msg;
3656 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003657
Yinghai Lu497c9a12008-08-19 20:50:28 -07003658 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003659 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003660
Yinghai Lu497c9a12008-08-19 20:50:28 -07003661 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003662 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003663
Eric W. Biedermanec683072006-11-08 17:44:57 -08003664 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003665}
3666
Yinghai Lud5dedd42009-04-27 17:59:21 -07003667static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668{
Yinghai Lu3145e942008-12-05 18:58:34 -08003669 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003670 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003672
Mike Travis22f65d32008-12-16 17:33:56 -08003673 dest = set_desc_affinity(desc, mask);
3674 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003675 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003676
Yinghai Lu3145e942008-12-05 18:58:34 -08003677 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003678
Yinghai Lu497c9a12008-08-19 20:50:28 -07003679 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003680
3681 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003682}
Yinghai Lu3145e942008-12-05 18:58:34 -08003683
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003684#endif
3685
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003686static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003687 .name = "PCI-HT",
3688 .mask = mask_ht_irq,
3689 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003690 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003691#ifdef CONFIG_SMP
3692 .set_affinity = set_ht_irq_affinity,
3693#endif
3694 .retrigger = ioapic_retrigger_irq,
3695};
3696
3697int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3698{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003699 struct irq_cfg *cfg;
3700 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003701
Jan Beulichf1182632009-01-14 12:27:35 +00003702 if (disable_apic)
3703 return -ENXIO;
3704
Yinghai Lu3145e942008-12-05 18:58:34 -08003705 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003706 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003707 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003708 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003709 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003710
Ingo Molnardebccb32009-01-28 15:20:18 +01003711 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3712 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003713
Eric W. Biedermanec683072006-11-08 17:44:57 -08003714 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003715
Eric W. Biedermanec683072006-11-08 17:44:57 -08003716 msg.address_lo =
3717 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003718 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003719 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003720 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003721 HT_IRQ_LOW_DM_PHYSICAL :
3722 HT_IRQ_LOW_DM_LOGICAL) |
3723 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003724 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003725 HT_IRQ_LOW_MT_FIXED :
3726 HT_IRQ_LOW_MT_ARBITRATED) |
3727 HT_IRQ_LOW_IRQ_MASKED;
3728
Eric W. Biedermanec683072006-11-08 17:44:57 -08003729 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003730
Ingo Molnara460e742006-10-17 00:10:03 -07003731 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3732 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003733
3734 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003735 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003736 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003737}
3738#endif /* CONFIG_HT_IRQ */
3739
Nick Piggin03b48632009-01-20 04:36:04 +01003740#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003741/*
3742 * Re-target the irq to the specified CPU and enable the specified MMR located
3743 * on the specified blade to allow the sending of MSIs to the specified CPU.
3744 */
3745int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3746 unsigned long mmr_offset)
3747{
Mike Travis22f65d32008-12-16 17:33:56 -08003748 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003749 struct irq_cfg *cfg;
3750 int mmr_pnode;
3751 unsigned long mmr_value;
3752 struct uv_IO_APIC_route_entry *entry;
3753 unsigned long flags;
3754 int err;
3755
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003756 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3757
Yinghai Lu3145e942008-12-05 18:58:34 -08003758 cfg = irq_cfg(irq);
3759
Mike Travise7986732008-12-16 17:33:52 -08003760 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003761 if (err != 0)
3762 return err;
3763
3764 spin_lock_irqsave(&vector_lock, flags);
3765 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3766 irq_name);
3767 spin_unlock_irqrestore(&vector_lock, flags);
3768
Dean Nelson4173a0e2008-10-02 12:18:21 -05003769 mmr_value = 0;
3770 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003771 entry->vector = cfg->vector;
3772 entry->delivery_mode = apic->irq_delivery_mode;
3773 entry->dest_mode = apic->irq_dest_mode;
3774 entry->polarity = 0;
3775 entry->trigger = 0;
3776 entry->mask = 0;
3777 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003778
3779 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3780 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3781
3782 return irq;
3783}
3784
3785/*
3786 * Disable the specified MMR located on the specified blade so that MSIs are
3787 * longer allowed to be sent.
3788 */
3789void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3790{
3791 unsigned long mmr_value;
3792 struct uv_IO_APIC_route_entry *entry;
3793 int mmr_pnode;
3794
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003795 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3796
Dean Nelson4173a0e2008-10-02 12:18:21 -05003797 mmr_value = 0;
3798 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003799 entry->mask = 1;
3800
3801 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3802 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3803}
3804#endif /* CONFIG_X86_64 */
3805
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003806int __init io_apic_get_redir_entries (int ioapic)
3807{
3808 union IO_APIC_reg_01 reg_01;
3809 unsigned long flags;
3810
3811 spin_lock_irqsave(&ioapic_lock, flags);
3812 reg_01.raw = io_apic_read(ioapic, 1);
3813 spin_unlock_irqrestore(&ioapic_lock, flags);
3814
3815 return reg_01.bits.entries;
3816}
3817
Yinghai Lube5d5352008-12-05 18:58:33 -08003818void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003819{
Yinghai Lube5d5352008-12-05 18:58:33 -08003820 int nr = 0;
3821
Yinghai Lucc6c5002009-02-08 16:18:03 -08003822 nr = acpi_probe_gsi();
3823 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003824 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003825 } else {
3826 /* for acpi=off or acpi is not compiled in */
3827 int idx;
3828
3829 nr = 0;
3830 for (idx = 0; idx < nr_ioapics; idx++)
3831 nr += io_apic_get_redir_entries(idx) + 1;
3832
3833 if (nr > nr_irqs_gsi)
3834 nr_irqs_gsi = nr;
3835 }
3836
3837 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003838}
3839
Yinghai Lu4a046d12009-01-12 17:39:24 -08003840#ifdef CONFIG_SPARSE_IRQ
3841int __init arch_probe_nr_irqs(void)
3842{
3843 int nr;
3844
Yinghai Luf1ee5542009-02-08 16:18:03 -08003845 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3846 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003847
Yinghai Luf1ee5542009-02-08 16:18:03 -08003848 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3849#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3850 /*
3851 * for MSI and HT dyn irq
3852 */
3853 nr += nr_irqs_gsi * 16;
3854#endif
3855 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003856 nr_irqs = nr;
3857
3858 return 0;
3859}
3860#endif
3861
Yinghai Lue5198072009-05-15 13:05:16 -07003862static int __io_apic_set_pci_routing(struct device *dev, int irq,
3863 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003864{
3865 struct irq_desc *desc;
3866 struct irq_cfg *cfg;
3867 int node;
Yinghai Lue5198072009-05-15 13:05:16 -07003868 int ioapic, pin;
3869 int trigger, polarity;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003870
Yinghai Lue5198072009-05-15 13:05:16 -07003871 ioapic = irq_attr->ioapic;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003872 if (!IO_APIC_IRQ(irq)) {
3873 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3874 ioapic);
3875 return -EINVAL;
3876 }
3877
3878 if (dev)
3879 node = dev_to_node(dev);
3880 else
3881 node = cpu_to_node(boot_cpu_id);
3882
3883 desc = irq_to_desc_alloc_node(irq, node);
3884 if (!desc) {
3885 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3886 return 0;
3887 }
3888
Yinghai Lue5198072009-05-15 13:05:16 -07003889 pin = irq_attr->ioapic_pin;
3890 trigger = irq_attr->trigger;
3891 polarity = irq_attr->polarity;
3892
Yinghai Lu5ef21832009-05-06 10:08:50 -07003893 /*
3894 * IRQs < 16 are already in the irq_2_pin[] map
3895 */
3896 if (irq >= NR_IRQS_LEGACY) {
3897 cfg = desc->chip_data;
3898 add_pin_to_irq_node(cfg, node, ioapic, pin);
3899 }
3900
Yinghai Lue5198072009-05-15 13:05:16 -07003901 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003902
3903 return 0;
3904}
3905
Yinghai Lue5198072009-05-15 13:05:16 -07003906int io_apic_set_pci_routing(struct device *dev, int irq,
3907 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003908{
Yinghai Lue5198072009-05-15 13:05:16 -07003909 int ioapic, pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003910 /*
3911 * Avoid pin reprogramming. PRTs typically include entries
3912 * with redundant pin->gsi mappings (but unique PCI devices);
3913 * we only program the IOAPIC on the first.
3914 */
Yinghai Lue5198072009-05-15 13:05:16 -07003915 ioapic = irq_attr->ioapic;
3916 pin = irq_attr->ioapic_pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003917 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3918 pr_debug("Pin %d-%d already programmed\n",
3919 mp_ioapics[ioapic].apicid, pin);
3920 return 0;
3921 }
3922 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3923
Yinghai Lue5198072009-05-15 13:05:16 -07003924 return __io_apic_set_pci_routing(dev, irq, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003925}
3926
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003928 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 -------------------------------------------------------------------------- */
3930
Len Brown888ba6c2005-08-24 12:07:20 -04003931#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Ingo Molnar54168ed2008-08-20 09:07:45 +02003933#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003934int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935{
3936 union IO_APIC_reg_00 reg_00;
3937 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3938 physid_mask_t tmp;
3939 unsigned long flags;
3940 int i = 0;
3941
3942 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003943 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3944 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003946 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3948 * advantage of new APIC bus architecture.
3949 */
3950
3951 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003952 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 spin_lock_irqsave(&ioapic_lock, flags);
3955 reg_00.raw = io_apic_read(ioapic, 0);
3956 spin_unlock_irqrestore(&ioapic_lock, flags);
3957
3958 if (apic_id >= get_physical_broadcast()) {
3959 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3960 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3961 apic_id = reg_00.bits.ID;
3962 }
3963
3964 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003965 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 * 'stuck on smp_invalidate_needed IPI wait' messages.
3967 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003968 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
3970 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003971 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 break;
3973 }
3974
3975 if (i == get_physical_broadcast())
3976 panic("Max apic_id exceeded!\n");
3977
3978 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3979 "trying %d\n", ioapic, apic_id, i);
3980
3981 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Ingo Molnar80587142009-01-28 06:50:47 +01003984 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 physids_or(apic_id_map, apic_id_map, tmp);
3986
3987 if (reg_00.bits.ID != apic_id) {
3988 reg_00.bits.ID = apic_id;
3989
3990 spin_lock_irqsave(&ioapic_lock, flags);
3991 io_apic_write(ioapic, 0, reg_00.raw);
3992 reg_00.raw = io_apic_read(ioapic, 0);
3993 spin_unlock_irqrestore(&ioapic_lock, flags);
3994
3995 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003996 if (reg_00.bits.ID != apic_id) {
3997 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3998 return -1;
3999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 }
4001
4002 apic_printk(APIC_VERBOSE, KERN_INFO
4003 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
4004
4005 return apic_id;
4006}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00004007#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004009int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010{
4011 union IO_APIC_reg_01 reg_01;
4012 unsigned long flags;
4013
4014 spin_lock_irqsave(&ioapic_lock, flags);
4015 reg_01.raw = io_apic_read(ioapic, 1);
4016 spin_unlock_irqrestore(&ioapic_lock, flags);
4017
4018 return reg_01.bits.version;
4019}
4020
Shaohua Li61fd47e2007-11-17 01:05:28 -05004021int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4022{
4023 int i;
4024
4025 if (skip_ioapic_setup)
4026 return -1;
4027
4028 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304029 if (mp_irqs[i].irqtype == mp_INT &&
4030 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004031 break;
4032 if (i >= mp_irq_entries)
4033 return -1;
4034
4035 *trigger = irq_trigger(i);
4036 *polarity = irq_polarity(i);
4037 return 0;
4038}
4039
Len Brown888ba6c2005-08-24 12:07:20 -04004040#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004041
Yinghai Lu497c9a12008-08-19 20:50:28 -07004042/*
4043 * This function currently is only a helper for the i386 smp boot process where
4044 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004045 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004046 */
4047#ifdef CONFIG_SMP
4048void __init setup_ioapic_dest(void)
4049{
Yinghai Lub9c61b702009-05-06 10:10:06 -07004050 int pin, ioapic = 0, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004051 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004052 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004053
4054 if (skip_ioapic_setup == 1)
4055 return;
4056
Yinghai Lub9c61b702009-05-06 10:10:06 -07004057#ifdef CONFIG_ACPI
4058 if (!acpi_disabled && acpi_ioapic) {
4059 ioapic = mp_find_ioapic(0);
4060 if (ioapic < 0)
4061 ioapic = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004062 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07004063#endif
4064
4065 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4066 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4067 if (irq_entry == -1)
4068 continue;
4069 irq = pin_2_irq(irq_entry, ioapic, pin);
4070
4071 desc = irq_to_desc(irq);
4072
4073 /*
4074 * Honour affinities which have been set in early boot
4075 */
4076 if (desc->status &
4077 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4078 mask = desc->affinity;
4079 else
4080 mask = apic->target_cpus();
4081
4082 if (intr_remapping_enabled)
4083 set_ir_ioapic_affinity_irq_desc(desc, mask);
4084 else
4085 set_ioapic_affinity_irq_desc(desc, mask);
4086 }
4087
Yinghai Lu497c9a12008-08-19 20:50:28 -07004088}
4089#endif
4090
Ingo Molnar54168ed2008-08-20 09:07:45 +02004091#define IOAPIC_RESOURCE_NAME_SIZE 11
4092
4093static struct resource *ioapic_resources;
4094
4095static struct resource * __init ioapic_setup_resources(void)
4096{
4097 unsigned long n;
4098 struct resource *res;
4099 char *mem;
4100 int i;
4101
4102 if (nr_ioapics <= 0)
4103 return NULL;
4104
4105 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4106 n *= nr_ioapics;
4107
4108 mem = alloc_bootmem(n);
4109 res = (void *)mem;
4110
4111 if (mem != NULL) {
4112 mem += sizeof(struct resource) * nr_ioapics;
4113
4114 for (i = 0; i < nr_ioapics; i++) {
4115 res[i].name = mem;
4116 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4117 sprintf(mem, "IOAPIC %u", i);
4118 mem += IOAPIC_RESOURCE_NAME_SIZE;
4119 }
4120 }
4121
4122 ioapic_resources = res;
4123
4124 return res;
4125}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004126
Yinghai Luf3294a32008-06-27 01:41:56 -07004127void __init ioapic_init_mappings(void)
4128{
4129 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004130 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004131 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004132
Ingo Molnar54168ed2008-08-20 09:07:45 +02004133 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004134 for (i = 0; i < nr_ioapics; i++) {
4135 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304136 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004137#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004138 if (!ioapic_phys) {
4139 printk(KERN_ERR
4140 "WARNING: bogus zero IO-APIC "
4141 "address found in MPTABLE, "
4142 "disabling IO/APIC support!\n");
4143 smp_found_config = 0;
4144 skip_ioapic_setup = 1;
4145 goto fake_ioapic_page;
4146 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004147#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004148 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004149#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004150fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004151#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004152 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004153 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004154 ioapic_phys = __pa(ioapic_phys);
4155 }
4156 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004157 apic_printk(APIC_VERBOSE,
4158 "mapped IOAPIC to %08lx (%08lx)\n",
4159 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004160 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004161
Ingo Molnar54168ed2008-08-20 09:07:45 +02004162 if (ioapic_res != NULL) {
4163 ioapic_res->start = ioapic_phys;
4164 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4165 ioapic_res++;
4166 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004167 }
4168}
4169
Ingo Molnar54168ed2008-08-20 09:07:45 +02004170static int __init ioapic_insert_resources(void)
4171{
4172 int i;
4173 struct resource *r = ioapic_resources;
4174
4175 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004176 if (nr_ioapics > 0) {
4177 printk(KERN_ERR
4178 "IO APIC resources couldn't be allocated.\n");
4179 return -1;
4180 }
4181 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004182 }
4183
4184 for (i = 0; i < nr_ioapics; i++) {
4185 insert_resource(&iomem_resource, r);
4186 r++;
4187 }
4188
4189 return 0;
4190}
4191
4192/* Insert the IO APIC resources after PCI initialization has occured to handle
4193 * IO APICS that are mapped in on a BAR in PCI space. */
4194late_initcall(ioapic_insert_resources);