blob: 5d5f4120c743637063420c5c2b9e9e61660f61b4 [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>
Dean Nelson4173a0e2008-10-02 12:18:21 -050062#include <asm/uv/uv_hub.h>
63#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar7b6aa332009-02-17 13:58:15 +010065#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067#define __apicdebuginit(type) static type __init
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020070 * Is the SiS APIC rmw bug present ?
71 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
73int sis_apic_bug = -1;
74
Yinghai Luefa25592008-08-19 20:50:36 -070075static DEFINE_SPINLOCK(ioapic_lock);
76static DEFINE_SPINLOCK(vector_lock);
77
Yinghai Luefa25592008-08-19 20:50:36 -070078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * # of IRQ routing registers
80 */
81int nr_ioapic_registers[MAX_IO_APICS];
82
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040083/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053084struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040085int nr_ioapics;
86
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040087/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053088struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040089
90/* # of MP IRQ source entries */
91int mp_irq_entries;
92
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040093#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
94int mp_bus_id_to_type[MAX_MP_BUSSES];
95#endif
96
97DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
98
Yinghai Luefa25592008-08-19 20:50:36 -070099int skip_ioapic_setup;
100
Ingo Molnar65a4e572009-01-31 03:36:17 +0100101void arch_disable_smp_support(void)
102{
103#ifdef CONFIG_PCI
104 noioapicquirk = 1;
105 noioapicreroute = -1;
106#endif
107 skip_ioapic_setup = 1;
108}
109
Ingo Molnar54168ed2008-08-20 09:07:45 +0200110static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700111{
112 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100113 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700114 return 0;
115}
116early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200117
Yinghai Lu0f978f42008-08-19 20:50:26 -0700118struct irq_pin_list;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * This is performance-critical, we want to do it O(1)
122 *
123 * the indexing order of this array favors 1:1 mappings
124 * between pins and IRQs.
125 */
126
Yinghai Lu0f978f42008-08-19 20:50:26 -0700127struct irq_pin_list {
128 int apic, pin;
129 struct irq_pin_list *next;
130};
Yinghai Lu301e6192008-08-19 20:50:02 -0700131
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700132static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700135
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800136 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700137
Yinghai Lu0f978f42008-08-19 20:50:26 -0700138 return pin;
139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800141struct irq_cfg {
142 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800143 cpumask_var_t domain;
144 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145 unsigned move_cleanup_count;
146 u8 vector;
147 u8 move_in_progress : 1;
148};
149
150/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
151#ifdef CONFIG_SPARSE_IRQ
152static struct irq_cfg irq_cfgx[] = {
153#else
154static struct irq_cfg irq_cfgx[NR_IRQS] = {
155#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800156 [0] = { .vector = IRQ0_VECTOR, },
157 [1] = { .vector = IRQ1_VECTOR, },
158 [2] = { .vector = IRQ2_VECTOR, },
159 [3] = { .vector = IRQ3_VECTOR, },
160 [4] = { .vector = IRQ4_VECTOR, },
161 [5] = { .vector = IRQ5_VECTOR, },
162 [6] = { .vector = IRQ6_VECTOR, },
163 [7] = { .vector = IRQ7_VECTOR, },
164 [8] = { .vector = IRQ8_VECTOR, },
165 [9] = { .vector = IRQ9_VECTOR, },
166 [10] = { .vector = IRQ10_VECTOR, },
167 [11] = { .vector = IRQ11_VECTOR, },
168 [12] = { .vector = IRQ12_VECTOR, },
169 [13] = { .vector = IRQ13_VECTOR, },
170 [14] = { .vector = IRQ14_VECTOR, },
171 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800172};
173
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800174int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800175{
176 struct irq_cfg *cfg;
177 struct irq_desc *desc;
178 int count;
179 int i;
180
181 cfg = irq_cfgx;
182 count = ARRAY_SIZE(irq_cfgx);
183
184 for (i = 0; i < count; i++) {
185 desc = irq_to_desc(i);
186 desc->chip_data = &cfg[i];
Mike Travis22f65d32008-12-16 17:33:56 -0800187 alloc_bootmem_cpumask_var(&cfg[i].domain);
188 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
189 if (i < NR_IRQS_LEGACY)
190 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800191 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800192
193 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800194}
195
196#ifdef CONFIG_SPARSE_IRQ
197static struct irq_cfg *irq_cfg(unsigned int irq)
198{
199 struct irq_cfg *cfg = NULL;
200 struct irq_desc *desc;
201
202 desc = irq_to_desc(irq);
203 if (desc)
204 cfg = desc->chip_data;
205
206 return cfg;
207}
208
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700209static struct irq_cfg *get_one_free_irq_cfg(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800210{
211 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800212
213 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800214 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800215 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800216 kfree(cfg);
217 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800218 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
219 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800220 free_cpumask_var(cfg->domain);
221 kfree(cfg);
222 cfg = NULL;
223 } else {
224 cpumask_clear(cfg->domain);
225 cpumask_clear(cfg->old_domain);
226 }
227 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800228
229 return cfg;
230}
231
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700232int arch_init_chip_data(struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800233{
234 struct irq_cfg *cfg;
235
236 cfg = desc->chip_data;
237 if (!cfg) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700238 desc->chip_data = get_one_free_irq_cfg(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800239 if (!desc->chip_data) {
240 printk(KERN_ERR "can not alloc irq_cfg\n");
241 BUG_ON(1);
242 }
243 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800244
245 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800246}
247
Yinghai Lufcef5912009-04-27 17:58:23 -0700248/* for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800249static void
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700250init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800251{
252 struct irq_pin_list *old_entry, *head, *tail, *entry;
253
254 cfg->irq_2_pin = NULL;
255 old_entry = old_cfg->irq_2_pin;
256 if (!old_entry)
257 return;
258
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700259 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800260 if (!entry)
261 return;
262
263 entry->apic = old_entry->apic;
264 entry->pin = old_entry->pin;
265 head = entry;
266 tail = entry;
267 old_entry = old_entry->next;
268 while (old_entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700269 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800270 if (!entry) {
271 entry = head;
272 while (entry) {
273 head = entry->next;
274 kfree(entry);
275 entry = head;
276 }
277 /* still use the old one */
278 return;
279 }
280 entry->apic = old_entry->apic;
281 entry->pin = old_entry->pin;
282 tail->next = entry;
283 tail = entry;
284 old_entry = old_entry->next;
285 }
286
287 tail->next = NULL;
288 cfg->irq_2_pin = head;
289}
290
291static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
292{
293 struct irq_pin_list *entry, *next;
294
295 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
296 return;
297
298 entry = old_cfg->irq_2_pin;
299
300 while (entry) {
301 next = entry->next;
302 kfree(entry);
303 entry = next;
304 }
305 old_cfg->irq_2_pin = NULL;
306}
307
308void arch_init_copy_chip_data(struct irq_desc *old_desc,
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700309 struct irq_desc *desc, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800310{
311 struct irq_cfg *cfg;
312 struct irq_cfg *old_cfg;
313
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700314 cfg = get_one_free_irq_cfg(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800315
316 if (!cfg)
317 return;
318
319 desc->chip_data = cfg;
320
321 old_cfg = old_desc->chip_data;
322
323 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
324
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700325 init_copy_irq_2_pin(old_cfg, cfg, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800326}
327
328static void free_irq_cfg(struct irq_cfg *old_cfg)
329{
330 kfree(old_cfg);
331}
332
333void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
334{
335 struct irq_cfg *old_cfg, *cfg;
336
337 old_cfg = old_desc->chip_data;
338 cfg = desc->chip_data;
339
340 if (old_cfg == cfg)
341 return;
342
343 if (old_cfg) {
344 free_irq_2_pin(old_cfg, cfg);
345 free_irq_cfg(old_cfg);
346 old_desc->chip_data = NULL;
347 }
348}
Yinghai Lufcef5912009-04-27 17:58:23 -0700349/* end for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800350
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800351#else
352static struct irq_cfg *irq_cfg(unsigned int irq)
353{
354 return irq < nr_irqs ? irq_cfgx + irq : NULL;
355}
356
357#endif
358
Linus Torvalds130fe052006-11-01 09:11:00 -0800359struct io_apic {
360 unsigned int index;
361 unsigned int unused[3];
362 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700363 unsigned int unused2[11];
364 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800365};
366
367static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
368{
369 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530370 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800371}
372
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700373static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
374{
375 struct io_apic __iomem *io_apic = io_apic_base(apic);
376 writel(vector, &io_apic->eoi);
377}
378
Linus Torvalds130fe052006-11-01 09:11:00 -0800379static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
380{
381 struct io_apic __iomem *io_apic = io_apic_base(apic);
382 writel(reg, &io_apic->index);
383 return readl(&io_apic->data);
384}
385
386static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
387{
388 struct io_apic __iomem *io_apic = io_apic_base(apic);
389 writel(reg, &io_apic->index);
390 writel(value, &io_apic->data);
391}
392
393/*
394 * Re-write a value: to be used for read-modify-write
395 * cycles where the read already set up the index register.
396 *
397 * Older SiS APIC requires we rewrite the index register
398 */
399static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
400{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200401 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200402
403 if (sis_apic_bug)
404 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800405 writel(value, &io_apic->data);
406}
407
Yinghai Lu3145e942008-12-05 18:58:34 -0800408static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700409{
410 struct irq_pin_list *entry;
411 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700412
413 spin_lock_irqsave(&ioapic_lock, flags);
414 entry = cfg->irq_2_pin;
415 for (;;) {
416 unsigned int reg;
417 int pin;
418
419 if (!entry)
420 break;
421 pin = entry->pin;
422 reg = io_apic_read(entry->apic, 0x10 + pin*2);
423 /* Is the remote IRR bit set? */
424 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
425 spin_unlock_irqrestore(&ioapic_lock, flags);
426 return true;
427 }
428 if (!entry->next)
429 break;
430 entry = entry->next;
431 }
432 spin_unlock_irqrestore(&ioapic_lock, flags);
433
434 return false;
435}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700436
Andi Kleencf4c6a22006-09-26 10:52:30 +0200437union entry_union {
438 struct { u32 w1, w2; };
439 struct IO_APIC_route_entry entry;
440};
441
442static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
443{
444 union entry_union eu;
445 unsigned long flags;
446 spin_lock_irqsave(&ioapic_lock, flags);
447 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
448 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
449 spin_unlock_irqrestore(&ioapic_lock, flags);
450 return eu.entry;
451}
452
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800453/*
454 * When we write a new IO APIC routing entry, we need to write the high
455 * word first! If the mask bit in the low word is clear, we will enable
456 * the interrupt, and we need to make sure the entry is fully populated
457 * before that happens.
458 */
Andi Kleend15512f2006-12-07 02:14:07 +0100459static void
460__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
461{
462 union entry_union eu;
463 eu.entry = e;
464 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
465 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
466}
467
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800468void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200469{
470 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200471 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100472 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800473 spin_unlock_irqrestore(&ioapic_lock, flags);
474}
475
476/*
477 * When we mask an IO APIC routing entry, we need to write the low
478 * word first, in order to set the mask bit before we change the
479 * high bits!
480 */
481static void ioapic_mask_entry(int apic, int pin)
482{
483 unsigned long flags;
484 union entry_union eu = { .entry.mask = 1 };
485
486 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200487 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
488 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
489 spin_unlock_irqrestore(&ioapic_lock, flags);
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/*
493 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
494 * shared ISA-space IRQs, so we have to support them. We are super
495 * fast in the common case, and fast for shared ISA-space IRQs.
496 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700497static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700499 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Yinghai Lu0f978f42008-08-19 20:50:26 -0700501 entry = cfg->irq_2_pin;
502 if (!entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700503 entry = get_one_free_irq_2_pin(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800504 if (!entry) {
505 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
506 apic, pin);
507 return;
508 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700509 cfg->irq_2_pin = entry;
510 entry->apic = apic;
511 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700514
515 while (entry->next) {
516 /* not again, please */
517 if (entry->apic == apic && entry->pin == pin)
518 return;
519
520 entry = entry->next;
521 }
522
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700523 entry->next = get_one_free_irq_2_pin(node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700524 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 entry->apic = apic;
526 entry->pin = pin;
527}
528
529/*
530 * Reroute an IRQ to a different pin.
531 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700532static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int oldapic, int oldpin,
534 int newapic, int newpin)
535{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700536 struct irq_pin_list *entry = cfg->irq_2_pin;
537 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Yinghai Lu0f978f42008-08-19 20:50:26 -0700539 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (entry->apic == oldapic && entry->pin == oldpin) {
541 entry->apic = newapic;
542 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700543 replaced = 1;
544 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700546 }
547 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700549
550 /* why? call replace before add? */
551 if (!replaced)
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700552 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Yinghai Lu3145e942008-12-05 18:58:34 -0800555static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400556 int mask_and, int mask_or,
557 void (*final)(struct irq_pin_list *entry))
558{
559 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400560 struct irq_pin_list *entry;
561
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400562 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
563 unsigned int reg;
564 pin = entry->pin;
565 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
566 reg &= mask_and;
567 reg |= mask_or;
568 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
569 if (final)
570 final(entry);
571 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700572}
573
Yinghai Lu3145e942008-12-05 18:58:34 -0800574static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400575{
Yinghai Lu3145e942008-12-05 18:58:34 -0800576 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400577}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700578
579#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530580static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700581{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400582 /*
583 * Synchronize the IO-APIC and the CPU by doing
584 * a dummy read from the IO-APIC
585 */
586 struct io_apic __iomem *io_apic;
587 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700588 readl(&io_apic->data);
589}
590
Yinghai Lu3145e942008-12-05 18:58:34 -0800591static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400592{
Yinghai Lu3145e942008-12-05 18:58:34 -0800593 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400594}
595#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800596static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400597{
Yinghai Lu3145e942008-12-05 18:58:34 -0800598 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400599}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700600
Yinghai Lu3145e942008-12-05 18:58:34 -0800601static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400602{
Yinghai Lu3145e942008-12-05 18:58:34 -0800603 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400604 IO_APIC_REDIR_MASKED, NULL);
605}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700606
Yinghai Lu3145e942008-12-05 18:58:34 -0800607static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400608{
Yinghai Lu3145e942008-12-05 18:58:34 -0800609 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400610 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
611}
612#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700613
Yinghai Lu3145e942008-12-05 18:58:34 -0800614static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Yinghai Lu3145e942008-12-05 18:58:34 -0800616 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 unsigned long flags;
618
Yinghai Lu3145e942008-12-05 18:58:34 -0800619 BUG_ON(!cfg);
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800622 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 spin_unlock_irqrestore(&ioapic_lock, flags);
624}
625
Yinghai Lu3145e942008-12-05 18:58:34 -0800626static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Yinghai Lu3145e942008-12-05 18:58:34 -0800628 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 unsigned long flags;
630
631 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800632 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 spin_unlock_irqrestore(&ioapic_lock, flags);
634}
635
Yinghai Lu3145e942008-12-05 18:58:34 -0800636static void mask_IO_APIC_irq(unsigned int irq)
637{
638 struct irq_desc *desc = irq_to_desc(irq);
639
640 mask_IO_APIC_irq_desc(desc);
641}
642static void unmask_IO_APIC_irq(unsigned int irq)
643{
644 struct irq_desc *desc = irq_to_desc(irq);
645
646 unmask_IO_APIC_irq_desc(desc);
647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
650{
651 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200654 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (entry.delivery_mode == dest_SMI)
656 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * Disable it in the IO-APIC irq-routing table:
659 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800660 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Ingo Molnar54168ed2008-08-20 09:07:45 +0200663static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 int apic, pin;
666
667 for (apic = 0; apic < nr_ioapics; apic++)
668 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
669 clear_IO_APIC_pin(apic, pin);
670}
671
Ingo Molnar54168ed2008-08-20 09:07:45 +0200672#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/*
674 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
675 * specific CPU-side IRQs.
676 */
677
678#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800679static int pirq_entries[MAX_PIRQS] = {
680 [0 ... MAX_PIRQS - 1] = -1
681};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static int __init ioapic_pirq_setup(char *str)
684{
685 int i, max;
686 int ints[MAX_PIRQS+1];
687
688 get_options(str, ARRAY_SIZE(ints), ints);
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 apic_printk(APIC_VERBOSE, KERN_INFO
691 "PIRQ redirection, working around broken MP-BIOS.\n");
692 max = MAX_PIRQS;
693 if (ints[0] < MAX_PIRQS)
694 max = ints[0];
695
696 for (i = 0; i < max; i++) {
697 apic_printk(APIC_VERBOSE, KERN_DEBUG
698 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
699 /*
700 * PIRQs are mapped upside down, usually.
701 */
702 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
703 }
704 return 1;
705}
706
707__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200708#endif /* CONFIG_X86_32 */
709
Fenghua Yub24696b2009-03-27 14:22:44 -0700710struct IO_APIC_route_entry **alloc_ioapic_entries(void)
711{
712 int apic;
713 struct IO_APIC_route_entry **ioapic_entries;
714
715 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
716 GFP_ATOMIC);
717 if (!ioapic_entries)
718 return 0;
719
720 for (apic = 0; apic < nr_ioapics; apic++) {
721 ioapic_entries[apic] =
722 kzalloc(sizeof(struct IO_APIC_route_entry) *
723 nr_ioapic_registers[apic], GFP_ATOMIC);
724 if (!ioapic_entries[apic])
725 goto nomem;
726 }
727
728 return ioapic_entries;
729
730nomem:
731 while (--apic >= 0)
732 kfree(ioapic_entries[apic]);
733 kfree(ioapic_entries);
734
735 return 0;
736}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200737
738/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700739 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200740 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700741int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200742{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200743 int apic, pin;
744
Fenghua Yub24696b2009-03-27 14:22:44 -0700745 if (!ioapic_entries)
746 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200747
748 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700749 if (!ioapic_entries[apic])
750 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200751
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700752 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700753 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200754 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700755 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400756
Ingo Molnar54168ed2008-08-20 09:07:45 +0200757 return 0;
758}
759
Fenghua Yub24696b2009-03-27 14:22:44 -0700760/*
761 * Mask all IO APIC entries.
762 */
763void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700764{
765 int apic, pin;
766
Fenghua Yub24696b2009-03-27 14:22:44 -0700767 if (!ioapic_entries)
768 return;
769
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700770 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700771 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700772 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700773
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700774 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
775 struct IO_APIC_route_entry entry;
776
Fenghua Yub24696b2009-03-27 14:22:44 -0700777 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700778 if (!entry.mask) {
779 entry.mask = 1;
780 ioapic_write_entry(apic, pin, entry);
781 }
782 }
783 }
784}
785
Fenghua Yub24696b2009-03-27 14:22:44 -0700786/*
787 * Restore IO APIC entries which was saved in ioapic_entries.
788 */
789int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200790{
791 int apic, pin;
792
Fenghua Yub24696b2009-03-27 14:22:44 -0700793 if (!ioapic_entries)
794 return -ENOMEM;
795
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400796 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700797 if (!ioapic_entries[apic])
798 return -ENOMEM;
799
Ingo Molnar54168ed2008-08-20 09:07:45 +0200800 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
801 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700802 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400803 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700804 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200805}
806
Fenghua Yub24696b2009-03-27 14:22:44 -0700807void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
808{
809 int apic;
810
811 for (apic = 0; apic < nr_ioapics; apic++)
812 kfree(ioapic_entries[apic]);
813
814 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200815}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817/*
818 * Find the IRQ entry number of a certain pin.
819 */
820static int find_irq_entry(int apic, int pin, int type)
821{
822 int i;
823
824 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530825 if (mp_irqs[i].irqtype == type &&
826 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
827 mp_irqs[i].dstapic == MP_APIC_ALL) &&
828 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return i;
830
831 return -1;
832}
833
834/*
835 * Find the pin to which IRQ[irq] (ISA) is connected
836 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800837static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 int i;
840
841 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530842 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300844 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530845 (mp_irqs[i].irqtype == type) &&
846 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530848 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 return -1;
851}
852
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800853static int __init find_isa_irq_apic(int irq, int type)
854{
855 int i;
856
857 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530858 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800859
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300860 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530861 (mp_irqs[i].irqtype == type) &&
862 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800863 break;
864 }
865 if (i < mp_irq_entries) {
866 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200867 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530868 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800869 return apic;
870 }
871 }
872
873 return -1;
874}
875
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300876#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/*
878 * EISA Edge/Level control register, ELCR
879 */
880static int EISA_ELCR(unsigned int irq)
881{
Yinghai Lu99d093d2008-12-05 18:58:32 -0800882 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 unsigned int port = 0x4d0 + (irq >> 3);
884 return (inb(port) >> (irq & 7)) & 1;
885 }
886 apic_printk(APIC_VERBOSE, KERN_INFO
887 "Broken MPtable reports ISA irq %d\n", irq);
888 return 0;
889}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200890
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300891#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300893/* ISA interrupts are always polarity zero edge triggered,
894 * when listed as conforming in the MP table. */
895
896#define default_ISA_trigger(idx) (0)
897#define default_ISA_polarity(idx) (0)
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899/* EISA interrupts are always polarity zero and can be edge or level
900 * trigger depending on the ELCR value. If an interrupt is listed as
901 * EISA conforming in the MP table, that means its trigger type must
902 * be read in from the ELCR */
903
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530904#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300905#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907/* PCI interrupts are always polarity one level triggered,
908 * when listed as conforming in the MP table. */
909
910#define default_PCI_trigger(idx) (1)
911#define default_PCI_polarity(idx) (1)
912
913/* MCA interrupts are always polarity zero level triggered,
914 * when listed as conforming in the MP table. */
915
916#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300917#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Shaohua Li61fd47e2007-11-17 01:05:28 -0500919static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530921 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 int polarity;
923
924 /*
925 * Determine IRQ line polarity (high active or low active):
926 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530927 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200929 case 0: /* conforms, ie. bus-type dependent polarity */
930 if (test_bit(bus, mp_bus_not_pci))
931 polarity = default_ISA_polarity(idx);
932 else
933 polarity = default_PCI_polarity(idx);
934 break;
935 case 1: /* high active */
936 {
937 polarity = 0;
938 break;
939 }
940 case 2: /* reserved */
941 {
942 printk(KERN_WARNING "broken BIOS!!\n");
943 polarity = 1;
944 break;
945 }
946 case 3: /* low active */
947 {
948 polarity = 1;
949 break;
950 }
951 default: /* invalid */
952 {
953 printk(KERN_WARNING "broken BIOS!!\n");
954 polarity = 1;
955 break;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 return polarity;
959}
960
961static int MPBIOS_trigger(int idx)
962{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530963 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 int trigger;
965
966 /*
967 * Determine IRQ trigger mode (edge or level sensitive):
968 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530969 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200971 case 0: /* conforms, ie. bus-type dependent */
972 if (test_bit(bus, mp_bus_not_pci))
973 trigger = default_ISA_trigger(idx);
974 else
975 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300976#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200977 switch (mp_bus_id_to_type[bus]) {
978 case MP_BUS_ISA: /* ISA pin */
979 {
980 /* set before the switch */
981 break;
982 }
983 case MP_BUS_EISA: /* EISA pin */
984 {
985 trigger = default_EISA_trigger(idx);
986 break;
987 }
988 case MP_BUS_PCI: /* PCI pin */
989 {
990 /* set before the switch */
991 break;
992 }
993 case MP_BUS_MCA: /* MCA pin */
994 {
995 trigger = default_MCA_trigger(idx);
996 break;
997 }
998 default:
999 {
1000 printk(KERN_WARNING "broken BIOS!!\n");
1001 trigger = 1;
1002 break;
1003 }
1004 }
1005#endif
1006 break;
1007 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001008 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001009 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001010 break;
1011 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001012 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001013 {
1014 printk(KERN_WARNING "broken BIOS!!\n");
1015 trigger = 1;
1016 break;
1017 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001018 case 3: /* level */
1019 {
1020 trigger = 1;
1021 break;
1022 }
1023 default: /* invalid */
1024 {
1025 printk(KERN_WARNING "broken BIOS!!\n");
1026 trigger = 0;
1027 break;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 return trigger;
1031}
1032
1033static inline int irq_polarity(int idx)
1034{
1035 return MPBIOS_polarity(idx);
1036}
1037
1038static inline int irq_trigger(int idx)
1039{
1040 return MPBIOS_trigger(idx);
1041}
1042
Yinghai Luefa25592008-08-19 20:50:36 -07001043int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044static int pin_2_irq(int idx, int apic, int pin)
1045{
1046 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301047 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 /*
1050 * Debugging check, we are in big trouble if this message pops up!
1051 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301052 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1054
Ingo Molnar54168ed2008-08-20 09:07:45 +02001055 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301056 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001057 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001058 /*
1059 * PCI IRQs are mapped in order
1060 */
1061 i = irq = 0;
1062 while (i < apic)
1063 irq += nr_ioapic_registers[i++];
1064 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001065 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001066 * For MPS mode, so far only needed by ES7000 platform
1067 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001068 if (ioapic_renumber_irq)
1069 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
1071
Ingo Molnar54168ed2008-08-20 09:07:45 +02001072#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /*
1074 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1075 */
1076 if ((pin >= 16) && (pin <= 23)) {
1077 if (pirq_entries[pin-16] != -1) {
1078 if (!pirq_entries[pin-16]) {
1079 apic_printk(APIC_VERBOSE, KERN_DEBUG
1080 "disabling PIRQ%d\n", pin-16);
1081 } else {
1082 irq = pirq_entries[pin-16];
1083 apic_printk(APIC_VERBOSE, KERN_DEBUG
1084 "using PIRQ%d -> IRQ %d\n",
1085 pin-16, irq);
1086 }
1087 }
1088 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001089#endif
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return irq;
1092}
1093
Yinghai Lue20c06f2009-05-06 10:08:22 -07001094/*
1095 * Find a specific PCI IRQ entry.
1096 * Not an __init, possibly needed by modules
1097 */
1098int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
1099 int *ioapic, int *ioapic_pin,
1100 int *trigger, int *polarity)
1101{
1102 int apic, i, best_guess = -1;
1103
1104 apic_printk(APIC_DEBUG,
1105 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1106 bus, slot, pin);
1107 if (test_bit(bus, mp_bus_not_pci)) {
1108 apic_printk(APIC_VERBOSE,
1109 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1110 return -1;
1111 }
1112 for (i = 0; i < mp_irq_entries; i++) {
1113 int lbus = mp_irqs[i].srcbus;
1114
1115 for (apic = 0; apic < nr_ioapics; apic++)
1116 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1117 mp_irqs[i].dstapic == MP_APIC_ALL)
1118 break;
1119
1120 if (!test_bit(lbus, mp_bus_not_pci) &&
1121 !mp_irqs[i].irqtype &&
1122 (bus == lbus) &&
1123 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1124 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1125
1126 if (!(apic || IO_APIC_IRQ(irq)))
1127 continue;
1128
1129 if (pin == (mp_irqs[i].srcbusirq & 3)) {
1130 *ioapic = apic;
1131 *ioapic_pin = mp_irqs[i].dstirq;
1132 *trigger = irq_trigger(i);
1133 *polarity = irq_polarity(i);
1134 return irq;
1135 }
1136 /*
1137 * Use the first all-but-pin matching entry as a
1138 * best-guess fuzzy result for broken mptables.
1139 */
1140 if (best_guess < 0) {
1141 *ioapic = apic;
1142 *ioapic_pin = mp_irqs[i].dstirq;
1143 *trigger = irq_trigger(i);
1144 *polarity = irq_polarity(i);
1145 best_guess = irq;
1146 }
1147 }
1148 }
1149 return best_guess;
1150}
1151EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1152
Yinghai Lu497c9a12008-08-19 20:50:28 -07001153void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001155 /* Used to the online set of cpus does not change
1156 * during assign_irq_vector.
1157 */
1158 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Yinghai Lu497c9a12008-08-19 20:50:28 -07001161void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001162{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001163 spin_unlock(&vector_lock);
1164}
1165
Mike Travise7986732008-12-16 17:33:52 -08001166static int
1167__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001168{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001169 /*
1170 * NOTE! The local APIC isn't very good at handling
1171 * multiple interrupts at the same interrupt level.
1172 * As the interrupt level is determined by taking the
1173 * vector number and shifting that right by 4, we
1174 * want to spread these out a bit so that they don't
1175 * all fall in the same interrupt level.
1176 *
1177 * Also, we've got to be careful not to trash gate
1178 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1179 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001180 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1181 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001182 int cpu, err;
1183 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001184
Ingo Molnar54168ed2008-08-20 09:07:45 +02001185 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1186 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001187
Mike Travis22f65d32008-12-16 17:33:56 -08001188 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1189 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001190
Ingo Molnar54168ed2008-08-20 09:07:45 +02001191 old_vector = cfg->vector;
1192 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001193 cpumask_and(tmp_mask, mask, cpu_online_mask);
1194 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1195 if (!cpumask_empty(tmp_mask)) {
1196 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001197 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001198 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001199 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001200
Mike Travise7986732008-12-16 17:33:52 -08001201 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001202 err = -ENOSPC;
1203 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001204 int new_cpu;
1205 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001206
Ingo Molnare2d40b12009-01-28 06:50:47 +01001207 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001208
Ingo Molnar54168ed2008-08-20 09:07:45 +02001209 vector = current_vector;
1210 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001211next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001212 vector += 8;
1213 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001214 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001215 offset = (offset + 1) % 8;
1216 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001217 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001218 if (unlikely(current_vector == vector))
1219 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001220
1221 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001222 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001223
Mike Travis22f65d32008-12-16 17:33:56 -08001224 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001225 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1226 goto next;
1227 /* Found one! */
1228 current_vector = vector;
1229 current_offset = offset;
1230 if (old_vector) {
1231 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001232 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001233 }
Mike Travis22f65d32008-12-16 17:33:56 -08001234 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001235 per_cpu(vector_irq, new_cpu)[vector] = irq;
1236 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001237 cpumask_copy(cfg->domain, tmp_mask);
1238 err = 0;
1239 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001240 }
Mike Travis22f65d32008-12-16 17:33:56 -08001241 free_cpumask_var(tmp_mask);
1242 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001243}
1244
Mike Travise7986732008-12-16 17:33:52 -08001245static int
1246assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001247{
1248 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001249 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001250
1251 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001252 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001253 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001254 return err;
1255}
1256
Yinghai Lu3145e942008-12-05 18:58:34 -08001257static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001258{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001259 int cpu, vector;
1260
Yinghai Lu497c9a12008-08-19 20:50:28 -07001261 BUG_ON(!cfg->vector);
1262
1263 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001264 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001265 per_cpu(vector_irq, cpu)[vector] = -1;
1266
1267 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001268 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001269
1270 if (likely(!cfg->move_in_progress))
1271 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001272 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001273 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1274 vector++) {
1275 if (per_cpu(vector_irq, cpu)[vector] != irq)
1276 continue;
1277 per_cpu(vector_irq, cpu)[vector] = -1;
1278 break;
1279 }
1280 }
1281 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001282}
1283
1284void __setup_vector_irq(int cpu)
1285{
1286 /* Initialize vector_irq on a new cpu */
1287 /* This function must be called with vector_lock held */
1288 int irq, vector;
1289 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001290 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001291
1292 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001293 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001294 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001295 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001296 continue;
1297 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001298 per_cpu(vector_irq, cpu)[vector] = irq;
1299 }
1300 /* Mark the free vectors */
1301 for (vector = 0; vector < NR_VECTORS; ++vector) {
1302 irq = per_cpu(vector_irq, cpu)[vector];
1303 if (irq < 0)
1304 continue;
1305
1306 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001307 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001308 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001309 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001310}
Glauber Costa3fde6902008-05-28 20:34:19 -07001311
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001312static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001313static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Ingo Molnar54168ed2008-08-20 09:07:45 +02001315#define IOAPIC_AUTO -1
1316#define IOAPIC_EDGE 0
1317#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001319#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001320static inline int IO_APIC_irq_trigger(int irq)
1321{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001322 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001323
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001324 for (apic = 0; apic < nr_ioapics; apic++) {
1325 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1326 idx = find_irq_entry(apic, pin, mp_INT);
1327 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1328 return irq_trigger(idx);
1329 }
1330 }
1331 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001332 * nonexistent IRQs are edge default
1333 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001334 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001335}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001336#else
1337static inline int IO_APIC_irq_trigger(int irq)
1338{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001339 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001340}
1341#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001342
Yinghai Lu3145e942008-12-05 18:58:34 -08001343static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Yinghai Lu199751d2008-08-19 20:50:27 -07001345
Jan Beulich6ebcc002006-06-26 13:56:46 +02001346 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001347 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001348 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001349 else
1350 desc->status &= ~IRQ_LEVEL;
1351
Ingo Molnar54168ed2008-08-20 09:07:45 +02001352 if (irq_remapped(irq)) {
1353 desc->status |= IRQ_MOVE_PCNTXT;
1354 if (trigger)
1355 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1356 handle_fasteoi_irq,
1357 "fasteoi");
1358 else
1359 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1360 handle_edge_irq, "edge");
1361 return;
1362 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001363
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001364 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1365 trigger == IOAPIC_LEVEL)
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_fasteoi_irq,
1368 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001369 else
Ingo Molnara460e742006-10-17 00:10:03 -07001370 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001371 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001372}
1373
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001374int setup_ioapic_entry(int apic_id, int irq,
1375 struct IO_APIC_route_entry *entry,
1376 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001377 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001378{
1379 /*
1380 * add it to the IO-APIC irq-routing table:
1381 */
1382 memset(entry,0,sizeof(*entry));
1383
Ingo Molnar54168ed2008-08-20 09:07:45 +02001384 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001385 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001386 struct irte irte;
1387 struct IR_IO_APIC_route_entry *ir_entry =
1388 (struct IR_IO_APIC_route_entry *) entry;
1389 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001390
Ingo Molnar54168ed2008-08-20 09:07:45 +02001391 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001392 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001393
1394 index = alloc_irte(iommu, irq, 1);
1395 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001396 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001397
1398 memset(&irte, 0, sizeof(irte));
1399
1400 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001401 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001402 /*
1403 * Trigger mode in the IRTE will always be edge, and the
1404 * actual level or edge trigger will be setup in the IO-APIC
1405 * RTE. This will help simplify level triggered irq migration.
1406 * For more details, see the comments above explainig IO-APIC
1407 * irq migration in the presence of interrupt-remapping.
1408 */
1409 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001410 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001411 irte.vector = vector;
1412 irte.dest_id = IRTE_DEST(destination);
1413
1414 modify_irte(irq, &irte);
1415
1416 ir_entry->index2 = (index >> 15) & 0x1;
1417 ir_entry->zero = 0;
1418 ir_entry->format = 1;
1419 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001420 /*
1421 * IO-APIC RTE will be configured with virtual vector.
1422 * irq handler will do the explicit EOI to the io-apic.
1423 */
1424 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001425 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001426 entry->delivery_mode = apic->irq_delivery_mode;
1427 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001428 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001429 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001430 }
1431
1432 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001433 entry->trigger = trigger;
1434 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001435
1436 /* Mask level triggered irqs.
1437 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1438 */
1439 if (trigger)
1440 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001441 return 0;
1442}
1443
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001444static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001445 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001446{
1447 struct irq_cfg *cfg;
1448 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001449 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001450
1451 if (!IO_APIC_IRQ(irq))
1452 return;
1453
Yinghai Lu3145e942008-12-05 18:58:34 -08001454 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001455
Ingo Molnarfe402e12009-01-28 04:32:51 +01001456 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001457 return;
1458
Ingo Molnardebccb32009-01-28 15:20:18 +01001459 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001460
1461 apic_printk(APIC_VERBOSE,KERN_DEBUG
1462 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1463 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001464 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001465 irq, trigger, polarity);
1466
1467
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001468 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001469 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001470 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001471 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001472 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001473 return;
1474 }
1475
Yinghai Lu3145e942008-12-05 18:58:34 -08001476 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001477 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001478 disable_8259A_irq(irq);
1479
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001480 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
Yinghai Lub9c61b702009-05-06 10:10:06 -07001483static struct {
1484 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1485} mp_ioapic_routing[MAX_IO_APICS];
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487static void __init setup_IO_APIC_irqs(void)
1488{
Yinghai Lub9c61b702009-05-06 10:10:06 -07001489 int apic_id = 0, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001490 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001491 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001492 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001493 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1496
Yinghai Lub9c61b702009-05-06 10:10:06 -07001497#ifdef CONFIG_ACPI
1498 if (!acpi_disabled && acpi_ioapic) {
1499 apic_id = mp_find_ioapic(0);
1500 if (apic_id < 0)
1501 apic_id = 0;
1502 }
1503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Yinghai Lub9c61b702009-05-06 10:10:06 -07001505 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1506 idx = find_irq_entry(apic_id, pin, mp_INT);
1507 if (idx == -1) {
1508 if (!notcon) {
1509 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001510 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001511 KERN_DEBUG " %d-%d",
1512 mp_ioapics[apic_id].apicid, pin);
1513 } else
1514 apic_printk(APIC_VERBOSE, " %d-%d",
1515 mp_ioapics[apic_id].apicid, pin);
1516 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001517 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001518 if (notcon) {
1519 apic_printk(APIC_VERBOSE,
1520 " (apicid-pin) not connected\n");
1521 notcon = 0;
1522 }
1523
1524 irq = pin_2_irq(idx, apic_id, pin);
1525
1526 /*
1527 * Skip the timer IRQ if there's a quirk handler
1528 * installed and if it returns 1:
1529 */
1530 if (apic->multi_timer_check &&
1531 apic->multi_timer_check(apic_id, irq))
1532 continue;
1533
1534 desc = irq_to_desc_alloc_node(irq, node);
1535 if (!desc) {
1536 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1537 continue;
1538 }
1539 cfg = desc->chip_data;
1540 add_pin_to_irq_node(cfg, node, apic_id, pin);
1541 set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed);
1542 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1543 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
1545
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001546 if (notcon)
1547 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001548 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
1551/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001552 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001554static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001555 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
1557 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Ingo Molnar54168ed2008-08-20 09:07:45 +02001559 if (intr_remapping_enabled)
1560 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001561
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001562 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 /*
1565 * We use logical delivery to get the timer IRQ
1566 * to the first CPU.
1567 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001568 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001569 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001570 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001571 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 entry.polarity = 0;
1573 entry.trigger = 0;
1574 entry.vector = vector;
1575
1576 /*
1577 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001578 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001580 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 /*
1583 * Add it to the IO-APIC irq-routing table:
1584 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001585 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001588
1589__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 int apic, i;
1592 union IO_APIC_reg_00 reg_00;
1593 union IO_APIC_reg_01 reg_01;
1594 union IO_APIC_reg_02 reg_02;
1595 union IO_APIC_reg_03 reg_03;
1596 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001597 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001598 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001599 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 if (apic_verbosity == APIC_QUIET)
1602 return;
1603
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001604 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 for (i = 0; i < nr_ioapics; i++)
1606 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301607 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 /*
1610 * We are a bit conservative about what we expect. We have to
1611 * know about every hardware change ASAP.
1612 */
1613 printk(KERN_INFO "testing the IO APIC.......................\n");
1614
1615 for (apic = 0; apic < nr_ioapics; apic++) {
1616
1617 spin_lock_irqsave(&ioapic_lock, flags);
1618 reg_00.raw = io_apic_read(apic, 0);
1619 reg_01.raw = io_apic_read(apic, 1);
1620 if (reg_01.bits.version >= 0x10)
1621 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001622 if (reg_01.bits.version >= 0x20)
1623 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 spin_unlock_irqrestore(&ioapic_lock, flags);
1625
Ingo Molnar54168ed2008-08-20 09:07:45 +02001626 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301627 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1629 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1630 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1631 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Ingo Molnar54168ed2008-08-20 09:07:45 +02001633 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1637 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 /*
1640 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1641 * but the value of reg_02 is read as the previous read register
1642 * value, so ignore it if reg_02 == reg_01.
1643 */
1644 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1645 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1646 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648
1649 /*
1650 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1651 * or reg_03, but the value of reg_0[23] is read as the previous read
1652 * register value, so ignore it if reg_03 == reg_0[12].
1653 */
1654 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1655 reg_03.raw != reg_01.raw) {
1656 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1657 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
1660 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1661
Yinghai Lud83e94a2008-08-19 20:50:33 -07001662 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1663 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 for (i = 0; i <= reg_01.bits.entries; i++) {
1666 struct IO_APIC_route_entry entry;
1667
Andi Kleencf4c6a22006-09-26 10:52:30 +02001668 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Ingo Molnar54168ed2008-08-20 09:07:45 +02001670 printk(KERN_DEBUG " %02x %03X ",
1671 i,
1672 entry.dest
1673 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1676 entry.mask,
1677 entry.trigger,
1678 entry.irr,
1679 entry.polarity,
1680 entry.delivery_status,
1681 entry.dest_mode,
1682 entry.delivery_mode,
1683 entry.vector
1684 );
1685 }
1686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001688 for_each_irq_desc(irq, desc) {
1689 struct irq_pin_list *entry;
1690
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001691 cfg = desc->chip_data;
1692 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001693 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001695 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 for (;;) {
1697 printk("-> %d:%d", entry->apic, entry->pin);
1698 if (!entry->next)
1699 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001700 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 }
1702 printk("\n");
1703 }
1704
1705 printk(KERN_INFO ".................................... done.\n");
1706
1707 return;
1708}
1709
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001710__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
1712 unsigned int v;
1713 int i, j;
1714
1715 if (apic_verbosity == APIC_QUIET)
1716 return;
1717
1718 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1719 for (i = 0; i < 8; i++) {
1720 v = apic_read(base + i*0x10);
1721 for (j = 0; j < 32; j++) {
1722 if (v & (1<<j))
1723 printk("1");
1724 else
1725 printk("0");
1726 }
1727 printk("\n");
1728 }
1729}
1730
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001731__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732{
1733 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001734 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 if (apic_verbosity == APIC_QUIET)
1737 return;
1738
1739 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1740 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001741 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001742 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 v = apic_read(APIC_LVR);
1744 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1745 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001746 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 v = apic_read(APIC_TASKPRI);
1749 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1750
Ingo Molnar54168ed2008-08-20 09:07:45 +02001751 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001752 if (!APIC_XAPIC(ver)) {
1753 v = apic_read(APIC_ARBPRI);
1754 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1755 v & APIC_ARBPRI_MASK);
1756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 v = apic_read(APIC_PROCPRI);
1758 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1759 }
1760
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001761 /*
1762 * Remote read supported only in the 82489DX and local APIC for
1763 * Pentium processors.
1764 */
1765 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1766 v = apic_read(APIC_RRR);
1767 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1768 }
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 v = apic_read(APIC_LDR);
1771 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001772 if (!x2apic_enabled()) {
1773 v = apic_read(APIC_DFR);
1774 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 v = apic_read(APIC_SPIV);
1777 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1778
1779 printk(KERN_DEBUG "... APIC ISR field:\n");
1780 print_APIC_bitfield(APIC_ISR);
1781 printk(KERN_DEBUG "... APIC TMR field:\n");
1782 print_APIC_bitfield(APIC_TMR);
1783 printk(KERN_DEBUG "... APIC IRR field:\n");
1784 print_APIC_bitfield(APIC_IRR);
1785
Ingo Molnar54168ed2008-08-20 09:07:45 +02001786 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1787 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 v = apic_read(APIC_ESR);
1791 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1792 }
1793
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001794 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001795 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1796 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 v = apic_read(APIC_LVTT);
1799 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1800
1801 if (maxlvt > 3) { /* PC is LVT#4. */
1802 v = apic_read(APIC_LVTPC);
1803 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1804 }
1805 v = apic_read(APIC_LVT0);
1806 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1807 v = apic_read(APIC_LVT1);
1808 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1809
1810 if (maxlvt > 2) { /* ERR is LVT#3. */
1811 v = apic_read(APIC_LVTERR);
1812 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1813 }
1814
1815 v = apic_read(APIC_TMICT);
1816 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1817 v = apic_read(APIC_TMCCT);
1818 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1819 v = apic_read(APIC_TDCR);
1820 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1821 printk("\n");
1822}
1823
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001824__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001826 int cpu;
1827
1828 preempt_disable();
1829 for_each_online_cpu(cpu)
1830 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1831 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001834__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 unsigned int v;
1837 unsigned long flags;
1838
1839 if (apic_verbosity == APIC_QUIET)
1840 return;
1841
1842 printk(KERN_DEBUG "\nprinting PIC contents\n");
1843
1844 spin_lock_irqsave(&i8259A_lock, flags);
1845
1846 v = inb(0xa1) << 8 | inb(0x21);
1847 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1848
1849 v = inb(0xa0) << 8 | inb(0x20);
1850 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1851
Ingo Molnar54168ed2008-08-20 09:07:45 +02001852 outb(0x0b,0xa0);
1853 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001855 outb(0x0a,0xa0);
1856 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 spin_unlock_irqrestore(&i8259A_lock, flags);
1859
1860 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1861
1862 v = inb(0x4d1) << 8 | inb(0x4d0);
1863 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1864}
1865
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001866__apicdebuginit(int) print_all_ICs(void)
1867{
1868 print_PIC();
1869 print_all_local_APICs();
1870 print_IO_APIC();
1871
1872 return 0;
1873}
1874
1875fs_initcall(print_all_ICs);
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Yinghai Luefa25592008-08-19 20:50:36 -07001878/* Where if anywhere is the i8259 connect in external int mode */
1879static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1880
Ingo Molnar54168ed2008-08-20 09:07:45 +02001881void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001884 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001885 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 unsigned long flags;
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 /*
1889 * The number of IO-APIC IRQ registers (== #pins):
1890 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001891 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001893 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001895 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1896 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001897 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001898 int pin;
1899 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001900 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001901 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001902 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001903
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001904 /* If the interrupt line is enabled and in ExtInt mode
1905 * I have found the pin where the i8259 is connected.
1906 */
1907 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1908 ioapic_i8259.apic = apic;
1909 ioapic_i8259.pin = pin;
1910 goto found_i8259;
1911 }
1912 }
1913 }
1914 found_i8259:
1915 /* Look to see what if the MP table has reported the ExtINT */
1916 /* If we could not find the appropriate pin by looking at the ioapic
1917 * the i8259 probably is not connected the ioapic but give the
1918 * mptable a chance anyway.
1919 */
1920 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1921 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1922 /* Trust the MP table if nothing is setup in the hardware */
1923 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1924 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1925 ioapic_i8259.pin = i8259_pin;
1926 ioapic_i8259.apic = i8259_apic;
1927 }
1928 /* Complain if the MP table and the hardware disagree */
1929 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1930 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1931 {
1932 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934
1935 /*
1936 * Do not trust the IO-APIC being empty at bootup
1937 */
1938 clear_IO_APIC();
1939}
1940
1941/*
1942 * Not an __init, needed by the reboot code
1943 */
1944void disable_IO_APIC(void)
1945{
1946 /*
1947 * Clear the IO-APIC before rebooting:
1948 */
1949 clear_IO_APIC();
1950
Eric W. Biederman650927e2005-06-25 14:57:44 -07001951 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001952 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001953 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001954 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001955 *
1956 * With interrupt-remapping, for now we will use virtual wire A mode,
1957 * as virtual wire B is little complex (need to configure both
1958 * IOAPIC RTE aswell as interrupt-remapping table entry).
1959 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001960 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001961 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001962 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001963
1964 memset(&entry, 0, sizeof(entry));
1965 entry.mask = 0; /* Enabled */
1966 entry.trigger = 0; /* Edge */
1967 entry.irr = 0;
1968 entry.polarity = 0; /* High */
1969 entry.delivery_status = 0;
1970 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001971 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001972 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001973 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001974
1975 /*
1976 * Add it to the IO-APIC irq-routing table:
1977 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001978 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001979 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001980
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001981 /*
1982 * Use virtual wire A mode when interrupt remapping is enabled.
1983 */
1984 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
1986
Ingo Molnar54168ed2008-08-20 09:07:45 +02001987#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988/*
1989 * function to set the IO-APIC physical IDs based on the
1990 * values stored in the MPC table.
1991 *
1992 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1993 */
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995static void __init setup_ioapic_ids_from_mpc(void)
1996{
1997 union IO_APIC_reg_00 reg_00;
1998 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001999 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 int i;
2001 unsigned char old_id;
2002 unsigned long flags;
2003
Yinghai Lua4dbc342008-07-25 02:14:28 -07002004 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002005 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002008 * Don't check I/O APIC IDs for xAPIC systems. They have
2009 * no meaning without the serial APIC bus.
2010 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002011 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2012 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002013 return;
2014 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 * This is broken; anything with a real cpu count has to
2016 * circumvent this idiocy regardless.
2017 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002018 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 /*
2021 * Set the IOAPIC ID to the value stored in the MPC table.
2022 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002023 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 /* Read the register 0 value */
2026 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002027 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002029
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002030 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002032 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002034 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2036 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002037 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 /*
2041 * Sanity check, is the ID really free? Every APIC in a
2042 * system must have a unique ID or we get lots of nice
2043 * 'stuck on smp_invalidate_needed IPI wait' messages.
2044 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002045 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002046 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002048 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 for (i = 0; i < get_physical_broadcast(); i++)
2050 if (!physid_isset(i, phys_id_present_map))
2051 break;
2052 if (i >= get_physical_broadcast())
2053 panic("Max APIC ID exceeded!\n");
2054 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2055 i);
2056 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002057 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 } else {
2059 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002060 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 apic_printk(APIC_VERBOSE, "Setting %d in the "
2062 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002063 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2065 }
2066
2067
2068 /*
2069 * We need to adjust the IRQ routing table
2070 * if the ID changed.
2071 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002072 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302074 if (mp_irqs[i].dstapic == old_id)
2075 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002076 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 /*
2079 * Read the right value from the MPC table and
2080 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002081 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 apic_printk(APIC_VERBOSE, KERN_INFO
2083 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002084 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002086 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002088 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002089 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 /*
2092 * Sanity check
2093 */
2094 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002095 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002097 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 printk("could not set ID!\n");
2099 else
2100 apic_printk(APIC_VERBOSE, " ok.\n");
2101 }
2102}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002105int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002106
2107static int __init notimercheck(char *s)
2108{
2109 no_timer_check = 1;
2110 return 1;
2111}
2112__setup("no_timer_check", notimercheck);
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114/*
2115 * There is a nasty bug in some older SMP boards, their mptable lies
2116 * about the timer IRQ. We do the following to work around the situation:
2117 *
2118 * - timer IRQ defaults to IO-APIC IRQ
2119 * - if this function detects that timer IRQs are defunct, then we fall
2120 * back to ISA timer IRQs
2121 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002122static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002125 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Zachary Amsden8542b202006-12-07 02:14:09 +01002127 if (no_timer_check)
2128 return 1;
2129
Ingo Molnar4aae0702007-12-18 18:05:58 +01002130 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 local_irq_enable();
2132 /* Let ten ticks pass... */
2133 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002134 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /*
2137 * Expect a few ticks at least, to be sure some possible
2138 * glue logic does not lock up after one or two first
2139 * ticks in a non-ExtINT mode. Also the local APIC
2140 * might have cached one ExtINT interrupt. Finally, at
2141 * least one tick may be lost due to delays.
2142 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002143
2144 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002145 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return 0;
2148}
2149
2150/*
2151 * In the SMP+IOAPIC case it might happen that there are an unspecified
2152 * number of pending IRQ events unhandled. These cases are very rare,
2153 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2154 * better to do it this way as thus we do not have to be aware of
2155 * 'pending' interrupts in the IRQ path, except at this point.
2156 */
2157/*
2158 * Edge triggered needs to resend any interrupt
2159 * that was delayed but this is now handled in the device
2160 * independent code.
2161 */
2162
2163/*
2164 * Starting up a edge-triggered IO-APIC interrupt is
2165 * nasty - we need to make sure that we get the edge.
2166 * If it is already asserted for some reason, we need
2167 * return 1 to indicate that is was pending.
2168 *
2169 * This is not complete - we should be able to fake
2170 * an edge even if it isn't on the 8259A...
2171 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002172
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002173static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 int was_pending = 0;
2176 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002177 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002180 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 disable_8259A_irq(irq);
2182 if (i8259A_irq_pending(irq))
2183 was_pending = 1;
2184 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002185 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002186 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 spin_unlock_irqrestore(&ioapic_lock, flags);
2188
2189 return was_pending;
2190}
2191
Ingo Molnar54168ed2008-08-20 09:07:45 +02002192#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002193static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002195
2196 struct irq_cfg *cfg = irq_cfg(irq);
2197 unsigned long flags;
2198
2199 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002200 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002201 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002202
2203 return 1;
2204}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002205#else
2206static int ioapic_retrigger_irq(unsigned int irq)
2207{
Ingo Molnardac5f412009-01-28 15:42:24 +01002208 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002209
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002210 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002211}
2212#endif
2213
2214/*
2215 * Level and edge triggered IO-APIC interrupts need different handling,
2216 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2217 * handled with the level-triggered descriptor, but that one has slightly
2218 * more overhead. Level-triggered interrupts cannot be handled with the
2219 * edge-triggered handler, without risking IRQ storms and other ugly
2220 * races.
2221 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002222
Yinghai Lu497c9a12008-08-19 20:50:28 -07002223#ifdef CONFIG_SMP
Gary Hadee85abf82009-04-08 14:07:25 -07002224static void send_cleanup_vector(struct irq_cfg *cfg)
2225{
2226 cpumask_var_t cleanup_mask;
2227
2228 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2229 unsigned int i;
2230 cfg->move_cleanup_count = 0;
2231 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2232 cfg->move_cleanup_count++;
2233 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2234 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2235 } else {
2236 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2237 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
2238 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2239 free_cpumask_var(cleanup_mask);
2240 }
2241 cfg->move_in_progress = 0;
2242}
2243
Ingo Molnar44204712009-05-01 19:02:50 +02002244static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002245{
2246 int apic, pin;
2247 struct irq_pin_list *entry;
2248 u8 vector = cfg->vector;
2249
2250 entry = cfg->irq_2_pin;
2251 for (;;) {
2252 unsigned int reg;
2253
2254 if (!entry)
2255 break;
2256
2257 apic = entry->apic;
2258 pin = entry->pin;
2259 /*
2260 * With interrupt-remapping, destination information comes
2261 * from interrupt-remapping table entry.
2262 */
2263 if (!irq_remapped(irq))
2264 io_apic_write(apic, 0x11 + pin*2, dest);
2265 reg = io_apic_read(apic, 0x10 + pin*2);
2266 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2267 reg |= vector;
2268 io_apic_modify(apic, 0x10 + pin*2, reg);
2269 if (!entry->next)
2270 break;
2271 entry = entry->next;
2272 }
2273}
2274
Ingo Molnar44204712009-05-01 19:02:50 +02002275static int
2276assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
2277
Gary Hadee85abf82009-04-08 14:07:25 -07002278/*
2279 * Either sets desc->affinity to a valid value, and returns
2280 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2281 * leaves desc->affinity untouched.
2282 */
2283static unsigned int
2284set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
2285{
2286 struct irq_cfg *cfg;
2287 unsigned int irq;
2288
2289 if (!cpumask_intersects(mask, cpu_online_mask))
2290 return BAD_APICID;
2291
2292 irq = desc->irq;
2293 cfg = desc->chip_data;
2294 if (assign_irq_vector(irq, cfg, mask))
2295 return BAD_APICID;
2296
Gary Hadee85abf82009-04-08 14:07:25 -07002297 cpumask_copy(desc->affinity, mask);
2298
2299 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2300}
2301
Ingo Molnar44204712009-05-01 19:02:50 +02002302static int
Gary Hadee85abf82009-04-08 14:07:25 -07002303set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2304{
2305 struct irq_cfg *cfg;
2306 unsigned long flags;
2307 unsigned int dest;
2308 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002309 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002310
2311 irq = desc->irq;
2312 cfg = desc->chip_data;
2313
2314 spin_lock_irqsave(&ioapic_lock, flags);
2315 dest = set_desc_affinity(desc, mask);
2316 if (dest != BAD_APICID) {
2317 /* Only the high 8 bits are valid. */
2318 dest = SET_APIC_LOGICAL_ID(dest);
2319 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar44204712009-05-01 19:02:50 +02002320 ret = 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002321 }
2322 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002323
2324 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002325}
2326
Ingo Molnar44204712009-05-01 19:02:50 +02002327static int
Gary Hadee85abf82009-04-08 14:07:25 -07002328set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2329{
2330 struct irq_desc *desc;
2331
2332 desc = irq_to_desc(irq);
2333
Ingo Molnar44204712009-05-01 19:02:50 +02002334 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002335}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002336
2337#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002338
2339/*
2340 * Migrate the IO-APIC irq in the presence of intr-remapping.
2341 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002342 * For both level and edge triggered, irq migration is a simple atomic
2343 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002344 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002345 * For level triggered, we eliminate the io-apic RTE modification (with the
2346 * updated vector information), by using a virtual vector (io-apic pin number).
2347 * Real vector that is used for interrupting cpu will be coming from
2348 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002349 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002350static int
Mike Travise7986732008-12-16 17:33:52 -08002351migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002352{
2353 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002354 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002355 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002356 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002357 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358
Mike Travis22f65d32008-12-16 17:33:56 -08002359 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002360 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002361
Yinghai Lu3145e942008-12-05 18:58:34 -08002362 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002363 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002364 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002365
Yinghai Lu3145e942008-12-05 18:58:34 -08002366 cfg = desc->chip_data;
2367 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002368 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002369
Ingo Molnardebccb32009-01-28 15:20:18 +01002370 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002371
Ingo Molnar54168ed2008-08-20 09:07:45 +02002372 irte.vector = cfg->vector;
2373 irte.dest_id = IRTE_DEST(dest);
2374
2375 /*
2376 * Modified the IRTE and flushes the Interrupt entry cache.
2377 */
2378 modify_irte(irq, &irte);
2379
Mike Travis22f65d32008-12-16 17:33:56 -08002380 if (cfg->move_in_progress)
2381 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002382
Mike Travis7f7ace02009-01-10 21:58:08 -08002383 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002384
2385 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386}
2387
Ingo Molnar54168ed2008-08-20 09:07:45 +02002388/*
2389 * Migrates the IRQ destination in the process context.
2390 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002391static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302392 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002393{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002394 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002395}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002396static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302397 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002398{
2399 struct irq_desc *desc = irq_to_desc(irq);
2400
Yinghai Lud5dedd42009-04-27 17:59:21 -07002401 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002402}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002403#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002404static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002405 const struct cpumask *mask)
2406{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002407 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002408}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002409#endif
2410
Yinghai Lu497c9a12008-08-19 20:50:28 -07002411asmlinkage void smp_irq_move_cleanup_interrupt(void)
2412{
2413 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002414
Yinghai Lu497c9a12008-08-19 20:50:28 -07002415 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002416 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002417 irq_enter();
2418
2419 me = smp_processor_id();
2420 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2421 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002422 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002423 struct irq_desc *desc;
2424 struct irq_cfg *cfg;
2425 irq = __get_cpu_var(vector_irq)[vector];
2426
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002427 if (irq == -1)
2428 continue;
2429
Yinghai Lu497c9a12008-08-19 20:50:28 -07002430 desc = irq_to_desc(irq);
2431 if (!desc)
2432 continue;
2433
2434 cfg = irq_cfg(irq);
2435 spin_lock(&desc->lock);
2436 if (!cfg->move_cleanup_count)
2437 goto unlock;
2438
Mike Travis22f65d32008-12-16 17:33:56 -08002439 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002440 goto unlock;
2441
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002442 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2443 /*
2444 * Check if the vector that needs to be cleanedup is
2445 * registered at the cpu's IRR. If so, then this is not
2446 * the best time to clean it up. Lets clean it up in the
2447 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2448 * to myself.
2449 */
2450 if (irr & (1 << (vector % 32))) {
2451 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2452 goto unlock;
2453 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002454 __get_cpu_var(vector_irq)[vector] = -1;
2455 cfg->move_cleanup_count--;
2456unlock:
2457 spin_unlock(&desc->lock);
2458 }
2459
2460 irq_exit();
2461}
2462
Yinghai Lu3145e942008-12-05 18:58:34 -08002463static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002464{
Yinghai Lu3145e942008-12-05 18:58:34 -08002465 struct irq_desc *desc = *descp;
2466 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002467 unsigned vector, me;
2468
Yinghai Lufcef5912009-04-27 17:58:23 -07002469 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002470 return;
2471
2472 vector = ~get_irq_regs()->orig_ax;
2473 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002474
Yinghai Lufcef5912009-04-27 17:58:23 -07002475 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002476 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002477}
2478#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002479static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002480#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002481
Yinghai Lu1d025192008-08-19 20:50:34 -07002482static void ack_apic_edge(unsigned int irq)
2483{
Yinghai Lu3145e942008-12-05 18:58:34 -08002484 struct irq_desc *desc = irq_to_desc(irq);
2485
2486 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002487 move_native_irq(irq);
2488 ack_APIC_irq();
2489}
2490
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002491atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002492
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002493static void ack_apic_level(unsigned int irq)
2494{
Yinghai Lu3145e942008-12-05 18:58:34 -08002495 struct irq_desc *desc = irq_to_desc(irq);
2496
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002497#ifdef CONFIG_X86_32
2498 unsigned long v;
2499 int i;
2500#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002501 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002502 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002503
Yinghai Lu3145e942008-12-05 18:58:34 -08002504 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002505#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002506 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002507 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002508 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002509 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002510 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002511#endif
2512
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002513#ifdef CONFIG_X86_32
2514 /*
2515 * It appears there is an erratum which affects at least version 0x11
2516 * of I/O APIC (that's the 82093AA and cores integrated into various
2517 * chipsets). Under certain conditions a level-triggered interrupt is
2518 * erroneously delivered as edge-triggered one but the respective IRR
2519 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2520 * message but it will never arrive and further interrupts are blocked
2521 * from the source. The exact reason is so far unknown, but the
2522 * phenomenon was observed when two consecutive interrupt requests
2523 * from a given source get delivered to the same CPU and the source is
2524 * temporarily disabled in between.
2525 *
2526 * A workaround is to simulate an EOI message manually. We achieve it
2527 * by setting the trigger mode to edge and then to level when the edge
2528 * trigger mode gets detected in the TMR of a local APIC for a
2529 * level-triggered interrupt. We mask the source for the time of the
2530 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2531 * The idea is from Manfred Spraul. --macro
2532 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002533 cfg = desc->chip_data;
2534 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002535
2536 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2537#endif
2538
Ingo Molnar54168ed2008-08-20 09:07:45 +02002539 /*
2540 * We must acknowledge the irq before we move it or the acknowledge will
2541 * not propagate properly.
2542 */
2543 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002544
Ingo Molnar54168ed2008-08-20 09:07:45 +02002545 /* Now we can move and renable the irq */
2546 if (unlikely(do_unmask_irq)) {
2547 /* Only migrate the irq if the ack has been received.
2548 *
2549 * On rare occasions the broadcast level triggered ack gets
2550 * delayed going to ioapics, and if we reprogram the
2551 * vector while Remote IRR is still set the irq will never
2552 * fire again.
2553 *
2554 * To prevent this scenario we read the Remote IRR bit
2555 * of the ioapic. This has two effects.
2556 * - On any sane system the read of the ioapic will
2557 * flush writes (and acks) going to the ioapic from
2558 * this cpu.
2559 * - We get to see if the ACK has actually been delivered.
2560 *
2561 * Based on failed experiments of reprogramming the
2562 * ioapic entry from outside of irq context starting
2563 * with masking the ioapic entry and then polling until
2564 * Remote IRR was clear before reprogramming the
2565 * ioapic I don't trust the Remote IRR bit to be
2566 * completey accurate.
2567 *
2568 * However there appears to be no other way to plug
2569 * this race, so if the Remote IRR bit is not
2570 * accurate and is causing problems then it is a hardware bug
2571 * and you can go talk to the chipset vendor about it.
2572 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002573 cfg = desc->chip_data;
2574 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002575 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002576 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002577 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002578
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002579#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002580 if (!(v & (1 << (i & 0x1f)))) {
2581 atomic_inc(&irq_mis_count);
2582 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002583 __mask_and_edge_IO_APIC_irq(cfg);
2584 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002585 spin_unlock(&ioapic_lock);
2586 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002587#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002588}
Yinghai Lu1d025192008-08-19 20:50:34 -07002589
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002590#ifdef CONFIG_INTR_REMAP
Suresh Siddha25629d82009-04-20 13:02:28 -07002591static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2592{
2593 int apic, pin;
2594 struct irq_pin_list *entry;
2595
2596 entry = cfg->irq_2_pin;
2597 for (;;) {
2598
2599 if (!entry)
2600 break;
2601
2602 apic = entry->apic;
2603 pin = entry->pin;
2604 io_apic_eoi(apic, pin);
2605 entry = entry->next;
2606 }
2607}
2608
2609static void
2610eoi_ioapic_irq(struct irq_desc *desc)
2611{
2612 struct irq_cfg *cfg;
2613 unsigned long flags;
2614 unsigned int irq;
2615
2616 irq = desc->irq;
2617 cfg = desc->chip_data;
2618
2619 spin_lock_irqsave(&ioapic_lock, flags);
2620 __eoi_ioapic_irq(irq, cfg);
2621 spin_unlock_irqrestore(&ioapic_lock, flags);
2622}
2623
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002624static void ir_ack_apic_edge(unsigned int irq)
2625{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002626 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002627}
2628
2629static void ir_ack_apic_level(unsigned int irq)
2630{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002631 struct irq_desc *desc = irq_to_desc(irq);
2632
2633 ack_APIC_irq();
2634 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002635}
2636#endif /* CONFIG_INTR_REMAP */
2637
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002638static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002639 .name = "IO-APIC",
2640 .startup = startup_ioapic_irq,
2641 .mask = mask_IO_APIC_irq,
2642 .unmask = unmask_IO_APIC_irq,
2643 .ack = ack_apic_edge,
2644 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002645#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002646 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002647#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002648 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649};
2650
Ingo Molnar54168ed2008-08-20 09:07:45 +02002651static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002652 .name = "IR-IO-APIC",
2653 .startup = startup_ioapic_irq,
2654 .mask = mask_IO_APIC_irq,
2655 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302656#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002657 .ack = ir_ack_apic_edge,
2658 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002659#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002660 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002661#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302662#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002663 .retrigger = ioapic_retrigger_irq,
2664};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666static inline void init_IO_APIC_traps(void)
2667{
2668 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002669 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002670 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 /*
2673 * NOTE! The local APIC isn't very good at handling
2674 * multiple interrupts at the same interrupt level.
2675 * As the interrupt level is determined by taking the
2676 * vector number and shifting that right by 4, we
2677 * want to spread these out a bit so that they don't
2678 * all fall in the same interrupt level.
2679 *
2680 * Also, we've got to be careful not to trash gate
2681 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2682 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002683 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002684 cfg = desc->chip_data;
2685 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /*
2687 * Hmm.. We don't have an entry for this,
2688 * so default to an old-fashioned 8259
2689 * interrupt if we can..
2690 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002691 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002693 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002695 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697 }
2698}
2699
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002700/*
2701 * The local APIC irq-chip implementation:
2702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002704static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 unsigned long v;
2707
2708 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002709 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002712static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002714 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
Yinghai Lu3145e942008-12-05 18:58:34 -08002720static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002721{
2722 ack_APIC_irq();
2723}
2724
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002725static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002726 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002727 .mask = mask_lapic_irq,
2728 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002729 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730};
2731
Yinghai Lu3145e942008-12-05 18:58:34 -08002732static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002733{
Yinghai Lu08678b02008-08-19 20:50:05 -07002734 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002735 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2736 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002737}
2738
Jan Beuliche9427102008-01-30 13:31:24 +01002739static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
2741 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002742 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 * We put the 8259A master into AEOI mode and
2744 * unmask on all local APICs LVT0 as NMI.
2745 *
2746 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2747 * is from Maciej W. Rozycki - so we do not have to EOI from
2748 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002749 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2751
Jan Beuliche9427102008-01-30 13:31:24 +01002752 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 apic_printk(APIC_VERBOSE, " done.\n");
2755}
2756
2757/*
2758 * This looks a bit hackish but it's about the only one way of sending
2759 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2760 * not support the ExtINT mode, unfortunately. We need to send these
2761 * cycles as some i82489DX-based boards have glue logic that keeps the
2762 * 8259A interrupt line asserted until INTA. --macro
2763 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002764static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002766 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 struct IO_APIC_route_entry entry0, entry1;
2768 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002770 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002771 if (pin == -1) {
2772 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002774 }
2775 apic = find_isa_irq_apic(8, mp_INT);
2776 if (apic == -1) {
2777 WARN_ON_ONCE(1);
2778 return;
2779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Andi Kleencf4c6a22006-09-26 10:52:30 +02002781 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002782 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 memset(&entry1, 0, sizeof(entry1));
2785
2786 entry1.dest_mode = 0; /* physical delivery */
2787 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002788 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 entry1.delivery_mode = dest_ExtINT;
2790 entry1.polarity = entry0.polarity;
2791 entry1.trigger = 0;
2792 entry1.vector = 0;
2793
Andi Kleencf4c6a22006-09-26 10:52:30 +02002794 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 save_control = CMOS_READ(RTC_CONTROL);
2797 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2798 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2799 RTC_FREQ_SELECT);
2800 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2801
2802 i = 100;
2803 while (i-- > 0) {
2804 mdelay(10);
2805 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2806 i -= 10;
2807 }
2808
2809 CMOS_WRITE(save_control, RTC_CONTROL);
2810 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002811 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Andi Kleencf4c6a22006-09-26 10:52:30 +02002813 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
Yinghai Luefa25592008-08-19 20:50:36 -07002816static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002817/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002818static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002819{
2820 disable_timer_pin_1 = 1;
2821 return 0;
2822}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002823early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002824
2825int timer_through_8259 __initdata;
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827/*
2828 * This code may look a bit paranoid, but it's supposed to cooperate with
2829 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2830 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2831 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002832 *
2833 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002835static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Yinghai Lu3145e942008-12-05 18:58:34 -08002837 struct irq_desc *desc = irq_to_desc(0);
2838 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002839 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002840 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002841 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002842 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002843
2844 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 /*
2847 * get/set the timer IRQ vector:
2848 */
2849 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002850 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002853 * As IRQ0 is to be enabled in the 8259A, the virtual
2854 * wire has to be disabled in the local APIC. Also
2855 * timer interrupts need to be acknowledged manually in
2856 * the 8259A for the i82489DX when using the NMI
2857 * watchdog as that APIC treats NMIs as level-triggered.
2858 * The AEOI mode will finish them in the 8259A
2859 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002861 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002863#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002864 {
2865 unsigned int ver;
2866
2867 ver = apic_read(APIC_LVR);
2868 ver = GET_APIC_VERSION(ver);
2869 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2870 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002873 pin1 = find_isa_irq_pin(0, mp_INT);
2874 apic1 = find_isa_irq_apic(0, mp_INT);
2875 pin2 = ioapic_i8259.pin;
2876 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002878 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2879 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002880 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002882 /*
2883 * Some BIOS writers are clueless and report the ExtINTA
2884 * I/O APIC input from the cascaded 8259A as the timer
2885 * interrupt input. So just in case, if only one pin
2886 * was found above, try it both directly and through the
2887 * 8259A.
2888 */
2889 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002890 if (intr_remapping_enabled)
2891 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002892 pin1 = pin2;
2893 apic1 = apic2;
2894 no_pin1 = 1;
2895 } else if (pin2 == -1) {
2896 pin2 = pin1;
2897 apic2 = apic1;
2898 }
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (pin1 != -1) {
2901 /*
2902 * Ok, does IRQ0 through the IOAPIC work?
2903 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002904 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002905 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002906 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002907 } else {
2908 /* for edge trigger, setup_IO_APIC_irq already
2909 * leave it unmasked.
2910 * so only need to unmask if it is level-trigger
2911 * do we really have level trigger timer?
2912 */
2913 int idx;
2914 idx = find_irq_entry(apic1, pin1, mp_INT);
2915 if (idx != -1 && irq_trigger(idx))
2916 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 if (timer_irq_works()) {
2919 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 setup_nmi();
2921 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002923 if (disable_timer_pin_1 > 0)
2924 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002925 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002927 if (intr_remapping_enabled)
2928 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002929 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002930 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002931 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002932 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2933 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002935 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2936 "(IRQ0) through the 8259A ...\n");
2937 apic_printk(APIC_QUIET, KERN_INFO
2938 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 /*
2940 * legacy devices should be connected to IO APIC #0
2941 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002942 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002943 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002944 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002946 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002947 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002949 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002951 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 /*
2956 * Cleanup, just in case ...
2957 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002958 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002959 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002960 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002961 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002965 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2966 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002967 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002969#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002970 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002971#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002973 apic_printk(APIC_QUIET, KERN_INFO
2974 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Yinghai Lu3145e942008-12-05 18:58:34 -08002976 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002977 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 enable_8259A_irq(0);
2979
2980 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002981 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002984 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002985 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002986 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002987 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002989 apic_printk(APIC_QUIET, KERN_INFO
2990 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 init_8259A(0);
2993 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002994 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 unlock_ExtINT_logic();
2997
2998 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002999 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003002 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003003 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003005 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003006out:
3007 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008}
3009
3010/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003011 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3012 * to devices. However there may be an I/O APIC pin available for
3013 * this interrupt regardless. The pin may be left unconnected, but
3014 * typically it will be reused as an ExtINT cascade interrupt for
3015 * the master 8259A. In the MPS case such a pin will normally be
3016 * reported as an ExtINT interrupt in the MP table. With ACPI
3017 * there is no provision for ExtINT interrupts, and in the absence
3018 * of an override it would be treated as an ordinary ISA I/O APIC
3019 * interrupt, that is edge-triggered and unmasked by default. We
3020 * used to do this, but it caused problems on some systems because
3021 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3022 * the same ExtINT cascade interrupt to drive the local APIC of the
3023 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3024 * the I/O APIC in all cases now. No actual device should request
3025 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 */
3027#define PIC_IRQS (1 << PIC_CASCADE_IR)
3028
3029void __init setup_IO_APIC(void)
3030{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003031
Ingo Molnar54168ed2008-08-20 09:07:45 +02003032 /*
3033 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003036 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Ingo Molnar54168ed2008-08-20 09:07:45 +02003038 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003039 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003040 * Set up IO-APIC IRQ routing.
3041 */
3042#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003043 if (!acpi_ioapic)
3044 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 sync_Arb_IDs();
3047 setup_IO_APIC_irqs();
3048 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003049 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050}
3051
3052/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003053 * Called after all the initialization is done. If we didnt find any
3054 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057static int __init io_apic_bug_finalize(void)
3058{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003059 if (sis_apic_bug == -1)
3060 sis_apic_bug = 0;
3061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
3064late_initcall(io_apic_bug_finalize);
3065
3066struct sysfs_ioapic_data {
3067 struct sys_device dev;
3068 struct IO_APIC_route_entry entry[0];
3069};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003070static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Pavel Machek438510f2005-04-16 15:25:24 -07003072static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
3074 struct IO_APIC_route_entry *entry;
3075 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 data = container_of(dev, struct sysfs_ioapic_data, dev);
3079 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003080 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3081 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 return 0;
3084}
3085
3086static int ioapic_resume(struct sys_device *dev)
3087{
3088 struct IO_APIC_route_entry *entry;
3089 struct sysfs_ioapic_data *data;
3090 unsigned long flags;
3091 union IO_APIC_reg_00 reg_00;
3092 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 data = container_of(dev, struct sysfs_ioapic_data, dev);
3095 entry = data->entry;
3096
3097 spin_lock_irqsave(&ioapic_lock, flags);
3098 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303099 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3100 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 io_apic_write(dev->id, 0, reg_00.raw);
3102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003104 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003105 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 return 0;
3108}
3109
3110static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003111 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 .suspend = ioapic_suspend,
3113 .resume = ioapic_resume,
3114};
3115
3116static int __init ioapic_init_sysfs(void)
3117{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003118 struct sys_device * dev;
3119 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 error = sysdev_class_register(&ioapic_sysdev_class);
3122 if (error)
3123 return error;
3124
Ingo Molnar54168ed2008-08-20 09:07:45 +02003125 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003126 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003128 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (!mp_ioapic_data[i]) {
3130 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3131 continue;
3132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003134 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 dev->cls = &ioapic_sysdev_class;
3136 error = sysdev_register(dev);
3137 if (error) {
3138 kfree(mp_ioapic_data[i]);
3139 mp_ioapic_data[i] = NULL;
3140 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3141 continue;
3142 }
3143 }
3144
3145 return 0;
3146}
3147
3148device_initcall(ioapic_init_sysfs);
3149
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003150static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003151/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003152 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003153 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003154unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003155{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003156 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003157 unsigned int irq;
3158 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003159 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003160 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003161 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003162
3163 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003164 if (irq_want < nr_irqs_gsi)
3165 irq_want = nr_irqs_gsi;
3166
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003167 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003168 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003169 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003170 if (!desc_new) {
3171 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003172 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003173 }
3174 cfg_new = desc_new->chip_data;
3175
3176 if (cfg_new->vector != 0)
3177 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003178
Yinghai Lu15e957d2009-04-30 01:17:50 -07003179 desc_new = move_irq_desc(desc_new, node);
Yinghai Lud047f53a2009-04-27 18:02:23 -07003180
Ingo Molnarfe402e12009-01-28 04:32:51 +01003181 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003182 irq = new;
3183 break;
3184 }
3185 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003186
Yinghai Lu199751d2008-08-19 20:50:27 -07003187 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003188 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003189 /* restore it, in case dynamic_irq_init clear it */
3190 if (desc_new)
3191 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003192 }
3193 return irq;
3194}
3195
Yinghai Lu199751d2008-08-19 20:50:27 -07003196int create_irq(void)
3197{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003198 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003199 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003200 int irq;
3201
Yinghai Lube5d5352008-12-05 18:58:33 -08003202 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003203 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003204
3205 if (irq == 0)
3206 irq = -1;
3207
3208 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003209}
3210
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003211void destroy_irq(unsigned int irq)
3212{
3213 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003214 struct irq_cfg *cfg;
3215 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003216
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003217 /* store it, in case dynamic_irq_cleanup clear it */
3218 desc = irq_to_desc(irq);
3219 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003220 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003221 /* connect back irq_cfg */
3222 if (desc)
3223 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003224
Ingo Molnar54168ed2008-08-20 09:07:45 +02003225 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003226 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003227 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003228 spin_unlock_irqrestore(&vector_lock, flags);
3229}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003230
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003231/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003232 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003233 */
3234#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003235static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003236{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003237 struct irq_cfg *cfg;
3238 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003239 unsigned dest;
3240
Jan Beulichf1182632009-01-14 12:27:35 +00003241 if (disable_apic)
3242 return -ENXIO;
3243
Yinghai Lu3145e942008-12-05 18:58:34 -08003244 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003245 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003246 if (err)
3247 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003248
Ingo Molnardebccb32009-01-28 15:20:18 +01003249 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003250
Ingo Molnar54168ed2008-08-20 09:07:45 +02003251 if (irq_remapped(irq)) {
3252 struct irte irte;
3253 int ir_index;
3254 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003255
Ingo Molnar54168ed2008-08-20 09:07:45 +02003256 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3257 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003258
Ingo Molnar54168ed2008-08-20 09:07:45 +02003259 memset (&irte, 0, sizeof(irte));
3260
3261 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003262 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003263 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003264 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003265 irte.vector = cfg->vector;
3266 irte.dest_id = IRTE_DEST(dest);
3267
3268 modify_irte(irq, &irte);
3269
3270 msg->address_hi = MSI_ADDR_BASE_HI;
3271 msg->data = sub_handle;
3272 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3273 MSI_ADDR_IR_SHV |
3274 MSI_ADDR_IR_INDEX1(ir_index) |
3275 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003276 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003277 if (x2apic_enabled())
3278 msg->address_hi = MSI_ADDR_BASE_HI |
3279 MSI_ADDR_EXT_DEST_ID(dest);
3280 else
3281 msg->address_hi = MSI_ADDR_BASE_HI;
3282
Ingo Molnar54168ed2008-08-20 09:07:45 +02003283 msg->address_lo =
3284 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003285 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003286 MSI_ADDR_DEST_MODE_PHYSICAL:
3287 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003288 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003289 MSI_ADDR_REDIRECTION_CPU:
3290 MSI_ADDR_REDIRECTION_LOWPRI) |
3291 MSI_ADDR_DEST_ID(dest);
3292
3293 msg->data =
3294 MSI_DATA_TRIGGER_EDGE |
3295 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003296 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003297 MSI_DATA_DELIVERY_FIXED:
3298 MSI_DATA_DELIVERY_LOWPRI) |
3299 MSI_DATA_VECTOR(cfg->vector);
3300 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003301 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003302}
3303
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003304#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003305static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003306{
Yinghai Lu3145e942008-12-05 18:58:34 -08003307 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003308 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003309 struct msi_msg msg;
3310 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003311
Mike Travis22f65d32008-12-16 17:33:56 -08003312 dest = set_desc_affinity(desc, mask);
3313 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003314 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003315
Yinghai Lu3145e942008-12-05 18:58:34 -08003316 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003317
Yinghai Lu3145e942008-12-05 18:58:34 -08003318 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003319
3320 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003321 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003322 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3323 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3324
Yinghai Lu3145e942008-12-05 18:58:34 -08003325 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003326
3327 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003328}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003329#ifdef CONFIG_INTR_REMAP
3330/*
3331 * Migrate the MSI irq to another cpumask. This migration is
3332 * done in the process context using interrupt-remapping hardware.
3333 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003334static int
Mike Travise7986732008-12-16 17:33:52 -08003335ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003336{
Yinghai Lu3145e942008-12-05 18:58:34 -08003337 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003338 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003339 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003340 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003341
3342 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003343 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003344
Mike Travis22f65d32008-12-16 17:33:56 -08003345 dest = set_desc_affinity(desc, mask);
3346 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003347 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003348
Ingo Molnar54168ed2008-08-20 09:07:45 +02003349 irte.vector = cfg->vector;
3350 irte.dest_id = IRTE_DEST(dest);
3351
3352 /*
3353 * atomically update the IRTE with the new destination and vector.
3354 */
3355 modify_irte(irq, &irte);
3356
3357 /*
3358 * After this point, all the interrupts will start arriving
3359 * at the new destination. So, time to cleanup the previous
3360 * vector allocation.
3361 */
Mike Travis22f65d32008-12-16 17:33:56 -08003362 if (cfg->move_in_progress)
3363 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003364
3365 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003366}
Yinghai Lu3145e942008-12-05 18:58:34 -08003367
Ingo Molnar54168ed2008-08-20 09:07:45 +02003368#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003369#endif /* CONFIG_SMP */
3370
3371/*
3372 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3373 * which implement the MSI or MSI-X Capability Structure.
3374 */
3375static struct irq_chip msi_chip = {
3376 .name = "PCI-MSI",
3377 .unmask = unmask_msi_irq,
3378 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003379 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003380#ifdef CONFIG_SMP
3381 .set_affinity = set_msi_irq_affinity,
3382#endif
3383 .retrigger = ioapic_retrigger_irq,
3384};
3385
Ingo Molnar54168ed2008-08-20 09:07:45 +02003386static struct irq_chip msi_ir_chip = {
3387 .name = "IR-PCI-MSI",
3388 .unmask = unmask_msi_irq,
3389 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303390#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003391 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003392#ifdef CONFIG_SMP
3393 .set_affinity = ir_set_msi_irq_affinity,
3394#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303395#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003396 .retrigger = ioapic_retrigger_irq,
3397};
3398
3399/*
3400 * Map the PCI dev to the corresponding remapping hardware unit
3401 * and allocate 'nvec' consecutive interrupt-remapping table entries
3402 * in it.
3403 */
3404static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3405{
3406 struct intel_iommu *iommu;
3407 int index;
3408
3409 iommu = map_dev_to_ir(dev);
3410 if (!iommu) {
3411 printk(KERN_ERR
3412 "Unable to map PCI %s to iommu\n", pci_name(dev));
3413 return -ENOENT;
3414 }
3415
3416 index = alloc_irte(iommu, irq, nvec);
3417 if (index < 0) {
3418 printk(KERN_ERR
3419 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003420 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003421 return -ENOSPC;
3422 }
3423 return index;
3424}
Yinghai Lu1d025192008-08-19 20:50:34 -07003425
Yinghai Lu3145e942008-12-05 18:58:34 -08003426static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003427{
3428 int ret;
3429 struct msi_msg msg;
3430
3431 ret = msi_compose_msg(dev, irq, &msg);
3432 if (ret < 0)
3433 return ret;
3434
Yinghai Lu3145e942008-12-05 18:58:34 -08003435 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003436 write_msi_msg(irq, &msg);
3437
Ingo Molnar54168ed2008-08-20 09:07:45 +02003438 if (irq_remapped(irq)) {
3439 struct irq_desc *desc = irq_to_desc(irq);
3440 /*
3441 * irq migration in process context
3442 */
3443 desc->status |= IRQ_MOVE_PCNTXT;
3444 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3445 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003446 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003447
Yinghai Luc81bba42008-09-25 11:53:11 -07003448 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3449
Yinghai Lu1d025192008-08-19 20:50:34 -07003450 return 0;
3451}
3452
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003453int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3454{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003455 unsigned int irq;
3456 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003457 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003458 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003459 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003460 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003461 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003462
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003463 /* x86 doesn't support multiple MSI yet */
3464 if (type == PCI_CAP_ID_MSI && nvec > 1)
3465 return 1;
3466
Yinghai Lud047f53a2009-04-27 18:02:23 -07003467 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003468 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003469 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003470 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003471 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472 if (irq == 0)
3473 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003474 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003475 if (!intr_remapping_enabled)
3476 goto no_ir;
3477
3478 if (!sub_handle) {
3479 /*
3480 * allocate the consecutive block of IRTE's
3481 * for 'nvec'
3482 */
3483 index = msi_alloc_irte(dev, irq, nvec);
3484 if (index < 0) {
3485 ret = index;
3486 goto error;
3487 }
3488 } else {
3489 iommu = map_dev_to_ir(dev);
3490 if (!iommu) {
3491 ret = -ENOENT;
3492 goto error;
3493 }
3494 /*
3495 * setup the mapping between the irq and the IRTE
3496 * base index, the sub_handle pointing to the
3497 * appropriate interrupt remap table entry.
3498 */
3499 set_irte_irq(irq, iommu, index, sub_handle);
3500 }
3501no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003502 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003503 if (ret < 0)
3504 goto error;
3505 sub_handle++;
3506 }
3507 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003508
3509error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003510 destroy_irq(irq);
3511 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003512}
3513
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003514void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003515{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003516 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003517}
3518
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003519#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003520#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003521static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003522{
Yinghai Lu3145e942008-12-05 18:58:34 -08003523 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003524 struct irq_cfg *cfg;
3525 struct msi_msg msg;
3526 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003527
Mike Travis22f65d32008-12-16 17:33:56 -08003528 dest = set_desc_affinity(desc, mask);
3529 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003530 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003531
Yinghai Lu3145e942008-12-05 18:58:34 -08003532 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003533
3534 dmar_msi_read(irq, &msg);
3535
3536 msg.data &= ~MSI_DATA_VECTOR_MASK;
3537 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3538 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3539 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3540
3541 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003542
3543 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003544}
Yinghai Lu3145e942008-12-05 18:58:34 -08003545
Ingo Molnar54168ed2008-08-20 09:07:45 +02003546#endif /* CONFIG_SMP */
3547
3548struct irq_chip dmar_msi_type = {
3549 .name = "DMAR_MSI",
3550 .unmask = dmar_msi_unmask,
3551 .mask = dmar_msi_mask,
3552 .ack = ack_apic_edge,
3553#ifdef CONFIG_SMP
3554 .set_affinity = dmar_msi_set_affinity,
3555#endif
3556 .retrigger = ioapic_retrigger_irq,
3557};
3558
3559int arch_setup_dmar_msi(unsigned int irq)
3560{
3561 int ret;
3562 struct msi_msg msg;
3563
3564 ret = msi_compose_msg(NULL, irq, &msg);
3565 if (ret < 0)
3566 return ret;
3567 dmar_msi_write(irq, &msg);
3568 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3569 "edge");
3570 return 0;
3571}
3572#endif
3573
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003574#ifdef CONFIG_HPET_TIMER
3575
3576#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003577static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003578{
Yinghai Lu3145e942008-12-05 18:58:34 -08003579 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003580 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003581 struct msi_msg msg;
3582 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003583
Mike Travis22f65d32008-12-16 17:33:56 -08003584 dest = set_desc_affinity(desc, mask);
3585 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003586 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003587
Yinghai Lu3145e942008-12-05 18:58:34 -08003588 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003589
3590 hpet_msi_read(irq, &msg);
3591
3592 msg.data &= ~MSI_DATA_VECTOR_MASK;
3593 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3594 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3595 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3596
3597 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003598
3599 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003600}
Yinghai Lu3145e942008-12-05 18:58:34 -08003601
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003602#endif /* CONFIG_SMP */
3603
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003604static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003605 .name = "HPET_MSI",
3606 .unmask = hpet_msi_unmask,
3607 .mask = hpet_msi_mask,
3608 .ack = ack_apic_edge,
3609#ifdef CONFIG_SMP
3610 .set_affinity = hpet_msi_set_affinity,
3611#endif
3612 .retrigger = ioapic_retrigger_irq,
3613};
3614
3615int arch_setup_hpet_msi(unsigned int irq)
3616{
3617 int ret;
3618 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003619 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003620
3621 ret = msi_compose_msg(NULL, irq, &msg);
3622 if (ret < 0)
3623 return ret;
3624
3625 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003626 desc->status |= IRQ_MOVE_PCNTXT;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003627 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3628 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003629
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003630 return 0;
3631}
3632#endif
3633
Ingo Molnar54168ed2008-08-20 09:07:45 +02003634#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003635/*
3636 * Hypertransport interrupt support
3637 */
3638#ifdef CONFIG_HT_IRQ
3639
3640#ifdef CONFIG_SMP
3641
Yinghai Lu497c9a12008-08-19 20:50:28 -07003642static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003643{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003644 struct ht_irq_msg msg;
3645 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003646
Yinghai Lu497c9a12008-08-19 20:50:28 -07003647 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003648 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003649
Yinghai Lu497c9a12008-08-19 20:50:28 -07003650 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003651 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003652
Eric W. Biedermanec683072006-11-08 17:44:57 -08003653 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003654}
3655
Yinghai Lud5dedd42009-04-27 17:59:21 -07003656static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003657{
Yinghai Lu3145e942008-12-05 18:58:34 -08003658 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003659 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003660 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003661
Mike Travis22f65d32008-12-16 17:33:56 -08003662 dest = set_desc_affinity(desc, mask);
3663 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003664 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003665
Yinghai Lu3145e942008-12-05 18:58:34 -08003666 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003667
Yinghai Lu497c9a12008-08-19 20:50:28 -07003668 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003669
3670 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671}
Yinghai Lu3145e942008-12-05 18:58:34 -08003672
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003673#endif
3674
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003675static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003676 .name = "PCI-HT",
3677 .mask = mask_ht_irq,
3678 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003679 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003680#ifdef CONFIG_SMP
3681 .set_affinity = set_ht_irq_affinity,
3682#endif
3683 .retrigger = ioapic_retrigger_irq,
3684};
3685
3686int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3687{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003688 struct irq_cfg *cfg;
3689 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003690
Jan Beulichf1182632009-01-14 12:27:35 +00003691 if (disable_apic)
3692 return -ENXIO;
3693
Yinghai Lu3145e942008-12-05 18:58:34 -08003694 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003695 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003696 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003697 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003698 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003699
Ingo Molnardebccb32009-01-28 15:20:18 +01003700 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3701 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003702
Eric W. Biedermanec683072006-11-08 17:44:57 -08003703 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003704
Eric W. Biedermanec683072006-11-08 17:44:57 -08003705 msg.address_lo =
3706 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003707 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003708 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003709 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003710 HT_IRQ_LOW_DM_PHYSICAL :
3711 HT_IRQ_LOW_DM_LOGICAL) |
3712 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003713 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003714 HT_IRQ_LOW_MT_FIXED :
3715 HT_IRQ_LOW_MT_ARBITRATED) |
3716 HT_IRQ_LOW_IRQ_MASKED;
3717
Eric W. Biedermanec683072006-11-08 17:44:57 -08003718 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003719
Ingo Molnara460e742006-10-17 00:10:03 -07003720 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3721 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003722
3723 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003724 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003725 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003726}
3727#endif /* CONFIG_HT_IRQ */
3728
Nick Piggin03b48632009-01-20 04:36:04 +01003729#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003730/*
3731 * Re-target the irq to the specified CPU and enable the specified MMR located
3732 * on the specified blade to allow the sending of MSIs to the specified CPU.
3733 */
3734int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3735 unsigned long mmr_offset)
3736{
Mike Travis22f65d32008-12-16 17:33:56 -08003737 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003738 struct irq_cfg *cfg;
3739 int mmr_pnode;
3740 unsigned long mmr_value;
3741 struct uv_IO_APIC_route_entry *entry;
3742 unsigned long flags;
3743 int err;
3744
Yinghai Lu3145e942008-12-05 18:58:34 -08003745 cfg = irq_cfg(irq);
3746
Mike Travise7986732008-12-16 17:33:52 -08003747 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003748 if (err != 0)
3749 return err;
3750
3751 spin_lock_irqsave(&vector_lock, flags);
3752 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3753 irq_name);
3754 spin_unlock_irqrestore(&vector_lock, flags);
3755
Dean Nelson4173a0e2008-10-02 12:18:21 -05003756 mmr_value = 0;
3757 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3758 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3759
3760 entry->vector = cfg->vector;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003761 entry->delivery_mode = apic->irq_delivery_mode;
3762 entry->dest_mode = apic->irq_dest_mode;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003763 entry->polarity = 0;
3764 entry->trigger = 0;
3765 entry->mask = 0;
Ingo Molnardebccb32009-01-28 15:20:18 +01003766 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003767
3768 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3769 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3770
3771 return irq;
3772}
3773
3774/*
3775 * Disable the specified MMR located on the specified blade so that MSIs are
3776 * longer allowed to be sent.
3777 */
3778void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3779{
3780 unsigned long mmr_value;
3781 struct uv_IO_APIC_route_entry *entry;
3782 int mmr_pnode;
3783
3784 mmr_value = 0;
3785 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3786 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3787
3788 entry->mask = 1;
3789
3790 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3791 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3792}
3793#endif /* CONFIG_X86_64 */
3794
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003795int __init io_apic_get_redir_entries (int ioapic)
3796{
3797 union IO_APIC_reg_01 reg_01;
3798 unsigned long flags;
3799
3800 spin_lock_irqsave(&ioapic_lock, flags);
3801 reg_01.raw = io_apic_read(ioapic, 1);
3802 spin_unlock_irqrestore(&ioapic_lock, flags);
3803
3804 return reg_01.bits.entries;
3805}
3806
Yinghai Lube5d5352008-12-05 18:58:33 -08003807void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003808{
Yinghai Lube5d5352008-12-05 18:58:33 -08003809 int nr = 0;
3810
Yinghai Lucc6c5002009-02-08 16:18:03 -08003811 nr = acpi_probe_gsi();
3812 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003813 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003814 } else {
3815 /* for acpi=off or acpi is not compiled in */
3816 int idx;
3817
3818 nr = 0;
3819 for (idx = 0; idx < nr_ioapics; idx++)
3820 nr += io_apic_get_redir_entries(idx) + 1;
3821
3822 if (nr > nr_irqs_gsi)
3823 nr_irqs_gsi = nr;
3824 }
3825
3826 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003827}
3828
Yinghai Lu4a046d12009-01-12 17:39:24 -08003829#ifdef CONFIG_SPARSE_IRQ
3830int __init arch_probe_nr_irqs(void)
3831{
3832 int nr;
3833
Yinghai Luf1ee5542009-02-08 16:18:03 -08003834 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3835 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003836
Yinghai Luf1ee5542009-02-08 16:18:03 -08003837 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3838#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3839 /*
3840 * for MSI and HT dyn irq
3841 */
3842 nr += nr_irqs_gsi * 16;
3843#endif
3844 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003845 nr_irqs = nr;
3846
3847 return 0;
3848}
3849#endif
3850
Yinghai Lu5ef21832009-05-06 10:08:50 -07003851static int __io_apic_set_pci_routing(struct device *dev, int ioapic, int pin, int irq,
3852 int triggering, int polarity)
3853{
3854 struct irq_desc *desc;
3855 struct irq_cfg *cfg;
3856 int node;
3857
3858 if (!IO_APIC_IRQ(irq)) {
3859 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3860 ioapic);
3861 return -EINVAL;
3862 }
3863
3864 if (dev)
3865 node = dev_to_node(dev);
3866 else
3867 node = cpu_to_node(boot_cpu_id);
3868
3869 desc = irq_to_desc_alloc_node(irq, node);
3870 if (!desc) {
3871 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3872 return 0;
3873 }
3874
3875 /*
3876 * IRQs < 16 are already in the irq_2_pin[] map
3877 */
3878 if (irq >= NR_IRQS_LEGACY) {
3879 cfg = desc->chip_data;
3880 add_pin_to_irq_node(cfg, node, ioapic, pin);
3881 }
3882
3883 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
3884
3885 return 0;
3886}
3887
Yinghai Lu5ef21832009-05-06 10:08:50 -07003888int io_apic_set_pci_routing(struct device *dev, int ioapic, int pin, int irq,
3889 int triggering, int polarity)
3890{
3891
3892 /*
3893 * Avoid pin reprogramming. PRTs typically include entries
3894 * with redundant pin->gsi mappings (but unique PCI devices);
3895 * we only program the IOAPIC on the first.
3896 */
3897 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3898 pr_debug("Pin %d-%d already programmed\n",
3899 mp_ioapics[ioapic].apicid, pin);
3900 return 0;
3901 }
3902 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3903
3904 return __io_apic_set_pci_routing(dev, ioapic, pin, irq,
3905 triggering, polarity);
3906}
3907
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003909 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 -------------------------------------------------------------------------- */
3911
Len Brown888ba6c2005-08-24 12:07:20 -04003912#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Ingo Molnar54168ed2008-08-20 09:07:45 +02003914#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003915int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916{
3917 union IO_APIC_reg_00 reg_00;
3918 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3919 physid_mask_t tmp;
3920 unsigned long flags;
3921 int i = 0;
3922
3923 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003924 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3925 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003927 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3929 * advantage of new APIC bus architecture.
3930 */
3931
3932 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003933 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
3935 spin_lock_irqsave(&ioapic_lock, flags);
3936 reg_00.raw = io_apic_read(ioapic, 0);
3937 spin_unlock_irqrestore(&ioapic_lock, flags);
3938
3939 if (apic_id >= get_physical_broadcast()) {
3940 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3941 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3942 apic_id = reg_00.bits.ID;
3943 }
3944
3945 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003946 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 * 'stuck on smp_invalidate_needed IPI wait' messages.
3948 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003949 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003952 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 break;
3954 }
3955
3956 if (i == get_physical_broadcast())
3957 panic("Max apic_id exceeded!\n");
3958
3959 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3960 "trying %d\n", ioapic, apic_id, i);
3961
3962 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Ingo Molnar80587142009-01-28 06:50:47 +01003965 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 physids_or(apic_id_map, apic_id_map, tmp);
3967
3968 if (reg_00.bits.ID != apic_id) {
3969 reg_00.bits.ID = apic_id;
3970
3971 spin_lock_irqsave(&ioapic_lock, flags);
3972 io_apic_write(ioapic, 0, reg_00.raw);
3973 reg_00.raw = io_apic_read(ioapic, 0);
3974 spin_unlock_irqrestore(&ioapic_lock, flags);
3975
3976 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003977 if (reg_00.bits.ID != apic_id) {
3978 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3979 return -1;
3980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 }
3982
3983 apic_printk(APIC_VERBOSE, KERN_INFO
3984 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3985
3986 return apic_id;
3987}
3988
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003989int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990{
3991 union IO_APIC_reg_01 reg_01;
3992 unsigned long flags;
3993
3994 spin_lock_irqsave(&ioapic_lock, flags);
3995 reg_01.raw = io_apic_read(ioapic, 1);
3996 spin_unlock_irqrestore(&ioapic_lock, flags);
3997
3998 return reg_01.bits.version;
3999}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004000#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Shaohua Li61fd47e2007-11-17 01:05:28 -05004002int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4003{
4004 int i;
4005
4006 if (skip_ioapic_setup)
4007 return -1;
4008
4009 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304010 if (mp_irqs[i].irqtype == mp_INT &&
4011 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004012 break;
4013 if (i >= mp_irq_entries)
4014 return -1;
4015
4016 *trigger = irq_trigger(i);
4017 *polarity = irq_polarity(i);
4018 return 0;
4019}
4020
Len Brown888ba6c2005-08-24 12:07:20 -04004021#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004022
Yinghai Lu497c9a12008-08-19 20:50:28 -07004023/*
4024 * This function currently is only a helper for the i386 smp boot process where
4025 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004026 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004027 */
4028#ifdef CONFIG_SMP
4029void __init setup_ioapic_dest(void)
4030{
Yinghai Lub9c61b702009-05-06 10:10:06 -07004031 int pin, ioapic = 0, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004032 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004033 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004034
4035 if (skip_ioapic_setup == 1)
4036 return;
4037
Yinghai Lub9c61b702009-05-06 10:10:06 -07004038#ifdef CONFIG_ACPI
4039 if (!acpi_disabled && acpi_ioapic) {
4040 ioapic = mp_find_ioapic(0);
4041 if (ioapic < 0)
4042 ioapic = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004043 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07004044#endif
4045
4046 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4047 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4048 if (irq_entry == -1)
4049 continue;
4050 irq = pin_2_irq(irq_entry, ioapic, pin);
4051
4052 desc = irq_to_desc(irq);
4053
4054 /*
4055 * Honour affinities which have been set in early boot
4056 */
4057 if (desc->status &
4058 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4059 mask = desc->affinity;
4060 else
4061 mask = apic->target_cpus();
4062
4063 if (intr_remapping_enabled)
4064 set_ir_ioapic_affinity_irq_desc(desc, mask);
4065 else
4066 set_ioapic_affinity_irq_desc(desc, mask);
4067 }
4068
Yinghai Lu497c9a12008-08-19 20:50:28 -07004069}
4070#endif
4071
Ingo Molnar54168ed2008-08-20 09:07:45 +02004072#define IOAPIC_RESOURCE_NAME_SIZE 11
4073
4074static struct resource *ioapic_resources;
4075
4076static struct resource * __init ioapic_setup_resources(void)
4077{
4078 unsigned long n;
4079 struct resource *res;
4080 char *mem;
4081 int i;
4082
4083 if (nr_ioapics <= 0)
4084 return NULL;
4085
4086 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4087 n *= nr_ioapics;
4088
4089 mem = alloc_bootmem(n);
4090 res = (void *)mem;
4091
4092 if (mem != NULL) {
4093 mem += sizeof(struct resource) * nr_ioapics;
4094
4095 for (i = 0; i < nr_ioapics; i++) {
4096 res[i].name = mem;
4097 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4098 sprintf(mem, "IOAPIC %u", i);
4099 mem += IOAPIC_RESOURCE_NAME_SIZE;
4100 }
4101 }
4102
4103 ioapic_resources = res;
4104
4105 return res;
4106}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004107
Yinghai Luf3294a32008-06-27 01:41:56 -07004108void __init ioapic_init_mappings(void)
4109{
4110 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004111 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004112 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004113
Ingo Molnar54168ed2008-08-20 09:07:45 +02004114 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004115 for (i = 0; i < nr_ioapics; i++) {
4116 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304117 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004118#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004119 if (!ioapic_phys) {
4120 printk(KERN_ERR
4121 "WARNING: bogus zero IO-APIC "
4122 "address found in MPTABLE, "
4123 "disabling IO/APIC support!\n");
4124 smp_found_config = 0;
4125 skip_ioapic_setup = 1;
4126 goto fake_ioapic_page;
4127 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004128#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004129 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004130#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004131fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004132#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004133 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004134 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004135 ioapic_phys = __pa(ioapic_phys);
4136 }
4137 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004138 apic_printk(APIC_VERBOSE,
4139 "mapped IOAPIC to %08lx (%08lx)\n",
4140 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004141 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004142
Ingo Molnar54168ed2008-08-20 09:07:45 +02004143 if (ioapic_res != NULL) {
4144 ioapic_res->start = ioapic_phys;
4145 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4146 ioapic_res++;
4147 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004148 }
4149}
4150
Ingo Molnar54168ed2008-08-20 09:07:45 +02004151static int __init ioapic_insert_resources(void)
4152{
4153 int i;
4154 struct resource *r = ioapic_resources;
4155
4156 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004157 if (nr_ioapics > 0) {
4158 printk(KERN_ERR
4159 "IO APIC resources couldn't be allocated.\n");
4160 return -1;
4161 }
4162 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004163 }
4164
4165 for (i = 0; i < nr_ioapics; i++) {
4166 insert_resource(&iomem_resource, r);
4167 r++;
4168 }
4169
4170 return 0;
4171}
4172
4173/* Insert the IO APIC resources after PCI initialization has occured to handle
4174 * IO APICS that are mapped in on a BAR in PCI space. */
4175late_initcall(ioapic_insert_resources);