blob: a80335ba12ccbbf20f0e0abd68268ca7f59720ba [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 Rajputb5ba7e6d2009-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 Lu0b8f1ef2008-12-05 18:58:31 -0800132static struct irq_pin_list *get_one_free_irq_2_pin(int cpu)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 struct irq_pin_list *pin;
135 int node;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700136
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800137 node = cpu_to_node(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700138
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800139 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700140
Yinghai Lu0f978f42008-08-19 20:50:26 -0700141 return pin;
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144struct irq_cfg {
145 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800146 cpumask_var_t domain;
147 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800148 unsigned move_cleanup_count;
149 u8 vector;
150 u8 move_in_progress : 1;
Yinghai Lu48a1b102008-12-11 00:15:01 -0800151#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
152 u8 move_desc_pending : 1;
153#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800154};
155
156/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
157#ifdef CONFIG_SPARSE_IRQ
158static struct irq_cfg irq_cfgx[] = {
159#else
160static struct irq_cfg irq_cfgx[NR_IRQS] = {
161#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800162 [0] = { .vector = IRQ0_VECTOR, },
163 [1] = { .vector = IRQ1_VECTOR, },
164 [2] = { .vector = IRQ2_VECTOR, },
165 [3] = { .vector = IRQ3_VECTOR, },
166 [4] = { .vector = IRQ4_VECTOR, },
167 [5] = { .vector = IRQ5_VECTOR, },
168 [6] = { .vector = IRQ6_VECTOR, },
169 [7] = { .vector = IRQ7_VECTOR, },
170 [8] = { .vector = IRQ8_VECTOR, },
171 [9] = { .vector = IRQ9_VECTOR, },
172 [10] = { .vector = IRQ10_VECTOR, },
173 [11] = { .vector = IRQ11_VECTOR, },
174 [12] = { .vector = IRQ12_VECTOR, },
175 [13] = { .vector = IRQ13_VECTOR, },
176 [14] = { .vector = IRQ14_VECTOR, },
177 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800178};
179
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800180int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800181{
182 struct irq_cfg *cfg;
183 struct irq_desc *desc;
184 int count;
185 int i;
186
187 cfg = irq_cfgx;
188 count = ARRAY_SIZE(irq_cfgx);
189
190 for (i = 0; i < count; i++) {
191 desc = irq_to_desc(i);
192 desc->chip_data = &cfg[i];
Mike Travis22f65d32008-12-16 17:33:56 -0800193 alloc_bootmem_cpumask_var(&cfg[i].domain);
194 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
195 if (i < NR_IRQS_LEGACY)
196 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800197 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800198
199 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800200}
201
202#ifdef CONFIG_SPARSE_IRQ
203static struct irq_cfg *irq_cfg(unsigned int irq)
204{
205 struct irq_cfg *cfg = NULL;
206 struct irq_desc *desc;
207
208 desc = irq_to_desc(irq);
209 if (desc)
210 cfg = desc->chip_data;
211
212 return cfg;
213}
214
215static struct irq_cfg *get_one_free_irq_cfg(int cpu)
216{
217 struct irq_cfg *cfg;
218 int node;
219
220 node = cpu_to_node(cpu);
221
222 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800223 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800224 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800225 kfree(cfg);
226 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800227 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
228 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800229 free_cpumask_var(cfg->domain);
230 kfree(cfg);
231 cfg = NULL;
232 } else {
233 cpumask_clear(cfg->domain);
234 cpumask_clear(cfg->old_domain);
235 }
236 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800237
238 return cfg;
239}
240
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800241int arch_init_chip_data(struct irq_desc *desc, int cpu)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800242{
243 struct irq_cfg *cfg;
244
245 cfg = desc->chip_data;
246 if (!cfg) {
247 desc->chip_data = get_one_free_irq_cfg(cpu);
248 if (!desc->chip_data) {
249 printk(KERN_ERR "can not alloc irq_cfg\n");
250 BUG_ON(1);
251 }
252 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800253
254 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800255}
256
Yinghai Lu48a1b102008-12-11 00:15:01 -0800257#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
258
259static void
260init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu)
261{
262 struct irq_pin_list *old_entry, *head, *tail, *entry;
263
264 cfg->irq_2_pin = NULL;
265 old_entry = old_cfg->irq_2_pin;
266 if (!old_entry)
267 return;
268
269 entry = get_one_free_irq_2_pin(cpu);
270 if (!entry)
271 return;
272
273 entry->apic = old_entry->apic;
274 entry->pin = old_entry->pin;
275 head = entry;
276 tail = entry;
277 old_entry = old_entry->next;
278 while (old_entry) {
279 entry = get_one_free_irq_2_pin(cpu);
280 if (!entry) {
281 entry = head;
282 while (entry) {
283 head = entry->next;
284 kfree(entry);
285 entry = head;
286 }
287 /* still use the old one */
288 return;
289 }
290 entry->apic = old_entry->apic;
291 entry->pin = old_entry->pin;
292 tail->next = entry;
293 tail = entry;
294 old_entry = old_entry->next;
295 }
296
297 tail->next = NULL;
298 cfg->irq_2_pin = head;
299}
300
301static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
302{
303 struct irq_pin_list *entry, *next;
304
305 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
306 return;
307
308 entry = old_cfg->irq_2_pin;
309
310 while (entry) {
311 next = entry->next;
312 kfree(entry);
313 entry = next;
314 }
315 old_cfg->irq_2_pin = NULL;
316}
317
318void arch_init_copy_chip_data(struct irq_desc *old_desc,
319 struct irq_desc *desc, int cpu)
320{
321 struct irq_cfg *cfg;
322 struct irq_cfg *old_cfg;
323
324 cfg = get_one_free_irq_cfg(cpu);
325
326 if (!cfg)
327 return;
328
329 desc->chip_data = cfg;
330
331 old_cfg = old_desc->chip_data;
332
333 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
334
335 init_copy_irq_2_pin(old_cfg, cfg, cpu);
336}
337
338static void free_irq_cfg(struct irq_cfg *old_cfg)
339{
340 kfree(old_cfg);
341}
342
343void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
344{
345 struct irq_cfg *old_cfg, *cfg;
346
347 old_cfg = old_desc->chip_data;
348 cfg = desc->chip_data;
349
350 if (old_cfg == cfg)
351 return;
352
353 if (old_cfg) {
354 free_irq_2_pin(old_cfg, cfg);
355 free_irq_cfg(old_cfg);
356 old_desc->chip_data = NULL;
357 }
358}
359
Ingo Molnard733e002008-12-17 13:35:51 +0100360static void
361set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800362{
363 struct irq_cfg *cfg = desc->chip_data;
364
365 if (!cfg->move_in_progress) {
366 /* it means that domain is not changed */
Mike Travis7f7ace02009-01-10 21:58:08 -0800367 if (!cpumask_intersects(desc->affinity, mask))
Yinghai Lu48a1b102008-12-11 00:15:01 -0800368 cfg->move_desc_pending = 1;
369 }
370}
371#endif
372
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800373#else
374static struct irq_cfg *irq_cfg(unsigned int irq)
375{
376 return irq < nr_irqs ? irq_cfgx + irq : NULL;
377}
378
379#endif
380
Yinghai Lu48a1b102008-12-11 00:15:01 -0800381#ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC
Mike Travise7986732008-12-16 17:33:52 -0800382static inline void
383set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800384{
385}
Yinghai Lu48a1b102008-12-11 00:15:01 -0800386#endif
Yinghai Lu3145e942008-12-05 18:58:34 -0800387
Linus Torvalds130fe052006-11-01 09:11:00 -0800388struct io_apic {
389 unsigned int index;
390 unsigned int unused[3];
391 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700392 unsigned int unused2[11];
393 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800394};
395
396static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
397{
398 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +0530399 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800400}
401
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700402static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
403{
404 struct io_apic __iomem *io_apic = io_apic_base(apic);
405 writel(vector, &io_apic->eoi);
406}
407
Linus Torvalds130fe052006-11-01 09:11:00 -0800408static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
409{
410 struct io_apic __iomem *io_apic = io_apic_base(apic);
411 writel(reg, &io_apic->index);
412 return readl(&io_apic->data);
413}
414
415static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
416{
417 struct io_apic __iomem *io_apic = io_apic_base(apic);
418 writel(reg, &io_apic->index);
419 writel(value, &io_apic->data);
420}
421
422/*
423 * Re-write a value: to be used for read-modify-write
424 * cycles where the read already set up the index register.
425 *
426 * Older SiS APIC requires we rewrite the index register
427 */
428static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
429{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200430 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200431
432 if (sis_apic_bug)
433 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800434 writel(value, &io_apic->data);
435}
436
Yinghai Lu3145e942008-12-05 18:58:34 -0800437static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700438{
439 struct irq_pin_list *entry;
440 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700441
442 spin_lock_irqsave(&ioapic_lock, flags);
443 entry = cfg->irq_2_pin;
444 for (;;) {
445 unsigned int reg;
446 int pin;
447
448 if (!entry)
449 break;
450 pin = entry->pin;
451 reg = io_apic_read(entry->apic, 0x10 + pin*2);
452 /* Is the remote IRR bit set? */
453 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
454 spin_unlock_irqrestore(&ioapic_lock, flags);
455 return true;
456 }
457 if (!entry->next)
458 break;
459 entry = entry->next;
460 }
461 spin_unlock_irqrestore(&ioapic_lock, flags);
462
463 return false;
464}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700465
Andi Kleencf4c6a22006-09-26 10:52:30 +0200466union entry_union {
467 struct { u32 w1, w2; };
468 struct IO_APIC_route_entry entry;
469};
470
471static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
472{
473 union entry_union eu;
474 unsigned long flags;
475 spin_lock_irqsave(&ioapic_lock, flags);
476 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
477 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
478 spin_unlock_irqrestore(&ioapic_lock, flags);
479 return eu.entry;
480}
481
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800482/*
483 * When we write a new IO APIC routing entry, we need to write the high
484 * word first! If the mask bit in the low word is clear, we will enable
485 * the interrupt, and we need to make sure the entry is fully populated
486 * before that happens.
487 */
Andi Kleend15512f2006-12-07 02:14:07 +0100488static void
489__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
490{
491 union entry_union eu;
492 eu.entry = e;
493 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
494 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
495}
496
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800497void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200498{
499 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200500 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100501 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800502 spin_unlock_irqrestore(&ioapic_lock, flags);
503}
504
505/*
506 * When we mask an IO APIC routing entry, we need to write the low
507 * word first, in order to set the mask bit before we change the
508 * high bits!
509 */
510static void ioapic_mask_entry(int apic, int pin)
511{
512 unsigned long flags;
513 union entry_union eu = { .entry.mask = 1 };
514
515 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200516 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
517 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
518 spin_unlock_irqrestore(&ioapic_lock, flags);
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
523 * shared ISA-space IRQs, so we have to support them. We are super
524 * fast in the common case, and fast for shared ISA-space IRQs.
525 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800526static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700528 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Yinghai Lu0f978f42008-08-19 20:50:26 -0700530 entry = cfg->irq_2_pin;
531 if (!entry) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800532 entry = get_one_free_irq_2_pin(cpu);
533 if (!entry) {
534 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
535 apic, pin);
536 return;
537 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700538 cfg->irq_2_pin = entry;
539 entry->apic = apic;
540 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700541 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700543
544 while (entry->next) {
545 /* not again, please */
546 if (entry->apic == apic && entry->pin == pin)
547 return;
548
549 entry = entry->next;
550 }
551
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800552 entry->next = get_one_free_irq_2_pin(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700553 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 entry->apic = apic;
555 entry->pin = pin;
556}
557
558/*
559 * Reroute an IRQ to a different pin.
560 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800561static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int oldapic, int oldpin,
563 int newapic, int newpin)
564{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700565 struct irq_pin_list *entry = cfg->irq_2_pin;
566 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Yinghai Lu0f978f42008-08-19 20:50:26 -0700568 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (entry->apic == oldapic && entry->pin == oldpin) {
570 entry->apic = newapic;
571 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700572 replaced = 1;
573 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700575 }
576 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700578
579 /* why? call replace before add? */
580 if (!replaced)
Yinghai Lu3145e942008-12-05 18:58:34 -0800581 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Yinghai Lu3145e942008-12-05 18:58:34 -0800584static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400585 int mask_and, int mask_or,
586 void (*final)(struct irq_pin_list *entry))
587{
588 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400589 struct irq_pin_list *entry;
590
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400591 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
592 unsigned int reg;
593 pin = entry->pin;
594 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
595 reg &= mask_and;
596 reg |= mask_or;
597 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
598 if (final)
599 final(entry);
600 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700601}
602
Yinghai Lu3145e942008-12-05 18:58:34 -0800603static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400604{
Yinghai Lu3145e942008-12-05 18:58:34 -0800605 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400606}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700607
608#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530609static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700610{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400611 /*
612 * Synchronize the IO-APIC and the CPU by doing
613 * a dummy read from the IO-APIC
614 */
615 struct io_apic __iomem *io_apic;
616 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700617 readl(&io_apic->data);
618}
619
Yinghai Lu3145e942008-12-05 18:58:34 -0800620static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400621{
Yinghai Lu3145e942008-12-05 18:58:34 -0800622 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400623}
624#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800625static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400626{
Yinghai Lu3145e942008-12-05 18:58:34 -0800627 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400628}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700629
Yinghai Lu3145e942008-12-05 18:58:34 -0800630static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400631{
Yinghai Lu3145e942008-12-05 18:58:34 -0800632 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400633 IO_APIC_REDIR_MASKED, NULL);
634}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700635
Yinghai Lu3145e942008-12-05 18:58:34 -0800636static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400637{
Yinghai Lu3145e942008-12-05 18:58:34 -0800638 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400639 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
640}
641#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700642
Yinghai Lu3145e942008-12-05 18:58:34 -0800643static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Yinghai Lu3145e942008-12-05 18:58:34 -0800645 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned long flags;
647
Yinghai Lu3145e942008-12-05 18:58:34 -0800648 BUG_ON(!cfg);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800651 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 spin_unlock_irqrestore(&ioapic_lock, flags);
653}
654
Yinghai Lu3145e942008-12-05 18:58:34 -0800655static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Yinghai Lu3145e942008-12-05 18:58:34 -0800657 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 unsigned long flags;
659
660 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800661 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 spin_unlock_irqrestore(&ioapic_lock, flags);
663}
664
Yinghai Lu3145e942008-12-05 18:58:34 -0800665static void mask_IO_APIC_irq(unsigned int irq)
666{
667 struct irq_desc *desc = irq_to_desc(irq);
668
669 mask_IO_APIC_irq_desc(desc);
670}
671static void unmask_IO_APIC_irq(unsigned int irq)
672{
673 struct irq_desc *desc = irq_to_desc(irq);
674
675 unmask_IO_APIC_irq_desc(desc);
676}
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
679{
680 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200683 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (entry.delivery_mode == dest_SMI)
685 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * Disable it in the IO-APIC irq-routing table:
688 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800689 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Ingo Molnar54168ed2008-08-20 09:07:45 +0200692static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 int apic, pin;
695
696 for (apic = 0; apic < nr_ioapics; apic++)
697 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
698 clear_IO_APIC_pin(apic, pin);
699}
700
Ingo Molnar54168ed2008-08-20 09:07:45 +0200701#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702/*
703 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
704 * specific CPU-side IRQs.
705 */
706
707#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800708static int pirq_entries[MAX_PIRQS] = {
709 [0 ... MAX_PIRQS - 1] = -1
710};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712static int __init ioapic_pirq_setup(char *str)
713{
714 int i, max;
715 int ints[MAX_PIRQS+1];
716
717 get_options(str, ARRAY_SIZE(ints), ints);
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 apic_printk(APIC_VERBOSE, KERN_INFO
720 "PIRQ redirection, working around broken MP-BIOS.\n");
721 max = MAX_PIRQS;
722 if (ints[0] < MAX_PIRQS)
723 max = ints[0];
724
725 for (i = 0; i < max; i++) {
726 apic_printk(APIC_VERBOSE, KERN_DEBUG
727 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
728 /*
729 * PIRQs are mapped upside down, usually.
730 */
731 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
732 }
733 return 1;
734}
735
736__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200737#endif /* CONFIG_X86_32 */
738
Fenghua Yub24696b2009-03-27 14:22:44 -0700739struct IO_APIC_route_entry **alloc_ioapic_entries(void)
740{
741 int apic;
742 struct IO_APIC_route_entry **ioapic_entries;
743
744 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
745 GFP_ATOMIC);
746 if (!ioapic_entries)
747 return 0;
748
749 for (apic = 0; apic < nr_ioapics; apic++) {
750 ioapic_entries[apic] =
751 kzalloc(sizeof(struct IO_APIC_route_entry) *
752 nr_ioapic_registers[apic], GFP_ATOMIC);
753 if (!ioapic_entries[apic])
754 goto nomem;
755 }
756
757 return ioapic_entries;
758
759nomem:
760 while (--apic >= 0)
761 kfree(ioapic_entries[apic]);
762 kfree(ioapic_entries);
763
764 return 0;
765}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200766
767/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700768 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200769 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700770int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200771{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200772 int apic, pin;
773
Fenghua Yub24696b2009-03-27 14:22:44 -0700774 if (!ioapic_entries)
775 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200776
777 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700778 if (!ioapic_entries[apic])
779 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200780
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700781 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700782 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200783 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700784 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400785
Ingo Molnar54168ed2008-08-20 09:07:45 +0200786 return 0;
787}
788
Fenghua Yub24696b2009-03-27 14:22:44 -0700789/*
790 * Mask all IO APIC entries.
791 */
792void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700793{
794 int apic, pin;
795
Fenghua Yub24696b2009-03-27 14:22:44 -0700796 if (!ioapic_entries)
797 return;
798
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700799 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700800 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700801 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700802
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700803 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
804 struct IO_APIC_route_entry entry;
805
Fenghua Yub24696b2009-03-27 14:22:44 -0700806 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700807 if (!entry.mask) {
808 entry.mask = 1;
809 ioapic_write_entry(apic, pin, entry);
810 }
811 }
812 }
813}
814
Fenghua Yub24696b2009-03-27 14:22:44 -0700815/*
816 * Restore IO APIC entries which was saved in ioapic_entries.
817 */
818int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200819{
820 int apic, pin;
821
Fenghua Yub24696b2009-03-27 14:22:44 -0700822 if (!ioapic_entries)
823 return -ENOMEM;
824
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400825 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700826 if (!ioapic_entries[apic])
827 return -ENOMEM;
828
Ingo Molnar54168ed2008-08-20 09:07:45 +0200829 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
830 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700831 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400832 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700833 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200834}
835
Fenghua Yub24696b2009-03-27 14:22:44 -0700836void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
837{
838 int apic;
839
840 for (apic = 0; apic < nr_ioapics; apic++)
841 kfree(ioapic_entries[apic]);
842
843 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200844}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846/*
847 * Find the IRQ entry number of a certain pin.
848 */
849static int find_irq_entry(int apic, int pin, int type)
850{
851 int i;
852
853 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530854 if (mp_irqs[i].irqtype == type &&
855 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
856 mp_irqs[i].dstapic == MP_APIC_ALL) &&
857 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return i;
859
860 return -1;
861}
862
863/*
864 * Find the pin to which IRQ[irq] (ISA) is connected
865 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800866static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 int i;
869
870 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530871 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300873 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530874 (mp_irqs[i].irqtype == type) &&
875 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530877 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879 return -1;
880}
881
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800882static int __init find_isa_irq_apic(int irq, int type)
883{
884 int i;
885
886 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530887 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800888
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300889 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530890 (mp_irqs[i].irqtype == type) &&
891 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800892 break;
893 }
894 if (i < mp_irq_entries) {
895 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200896 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530897 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800898 return apic;
899 }
900 }
901
902 return -1;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/*
906 * Find a specific PCI IRQ entry.
907 * Not an __init, possibly needed by modules
908 */
909static int pin_2_irq(int idx, int apic, int pin);
910
911int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
912{
913 int apic, i, best_guess = -1;
914
Ingo Molnar54168ed2008-08-20 09:07:45 +0200915 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
916 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +0400917 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200918 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return -1;
920 }
921 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530922 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 for (apic = 0; apic < nr_ioapics; apic++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530925 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
926 mp_irqs[i].dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
928
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300929 if (!test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530930 !mp_irqs[i].irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 (bus == lbus) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530932 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
933 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (!(apic || IO_APIC_IRQ(irq)))
936 continue;
937
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530938 if (pin == (mp_irqs[i].srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return irq;
940 /*
941 * Use the first all-but-pin matching entry as a
942 * best-guess fuzzy result for broken mptables.
943 */
944 if (best_guess < 0)
945 best_guess = irq;
946 }
947 }
948 return best_guess;
949}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200950
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700951EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300953#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954/*
955 * EISA Edge/Level control register, ELCR
956 */
957static int EISA_ELCR(unsigned int irq)
958{
Yinghai Lu99d093d2008-12-05 18:58:32 -0800959 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 unsigned int port = 0x4d0 + (irq >> 3);
961 return (inb(port) >> (irq & 7)) & 1;
962 }
963 apic_printk(APIC_VERBOSE, KERN_INFO
964 "Broken MPtable reports ISA irq %d\n", irq);
965 return 0;
966}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200967
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300968#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300970/* ISA interrupts are always polarity zero edge triggered,
971 * when listed as conforming in the MP table. */
972
973#define default_ISA_trigger(idx) (0)
974#define default_ISA_polarity(idx) (0)
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976/* EISA interrupts are always polarity zero and can be edge or level
977 * trigger depending on the ELCR value. If an interrupt is listed as
978 * EISA conforming in the MP table, that means its trigger type must
979 * be read in from the ELCR */
980
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530981#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300982#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984/* PCI interrupts are always polarity one level triggered,
985 * when listed as conforming in the MP table. */
986
987#define default_PCI_trigger(idx) (1)
988#define default_PCI_polarity(idx) (1)
989
990/* MCA interrupts are always polarity zero level triggered,
991 * when listed as conforming in the MP table. */
992
993#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300994#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Shaohua Li61fd47e2007-11-17 01:05:28 -0500996static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530998 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 int polarity;
1000
1001 /*
1002 * Determine IRQ line polarity (high active or low active):
1003 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301004 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001006 case 0: /* conforms, ie. bus-type dependent polarity */
1007 if (test_bit(bus, mp_bus_not_pci))
1008 polarity = default_ISA_polarity(idx);
1009 else
1010 polarity = default_PCI_polarity(idx);
1011 break;
1012 case 1: /* high active */
1013 {
1014 polarity = 0;
1015 break;
1016 }
1017 case 2: /* reserved */
1018 {
1019 printk(KERN_WARNING "broken BIOS!!\n");
1020 polarity = 1;
1021 break;
1022 }
1023 case 3: /* low active */
1024 {
1025 polarity = 1;
1026 break;
1027 }
1028 default: /* invalid */
1029 {
1030 printk(KERN_WARNING "broken BIOS!!\n");
1031 polarity = 1;
1032 break;
1033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 return polarity;
1036}
1037
1038static int MPBIOS_trigger(int idx)
1039{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301040 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 int trigger;
1042
1043 /*
1044 * Determine IRQ trigger mode (edge or level sensitive):
1045 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301046 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001048 case 0: /* conforms, ie. bus-type dependent */
1049 if (test_bit(bus, mp_bus_not_pci))
1050 trigger = default_ISA_trigger(idx);
1051 else
1052 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001053#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001054 switch (mp_bus_id_to_type[bus]) {
1055 case MP_BUS_ISA: /* ISA pin */
1056 {
1057 /* set before the switch */
1058 break;
1059 }
1060 case MP_BUS_EISA: /* EISA pin */
1061 {
1062 trigger = default_EISA_trigger(idx);
1063 break;
1064 }
1065 case MP_BUS_PCI: /* PCI pin */
1066 {
1067 /* set before the switch */
1068 break;
1069 }
1070 case MP_BUS_MCA: /* MCA pin */
1071 {
1072 trigger = default_MCA_trigger(idx);
1073 break;
1074 }
1075 default:
1076 {
1077 printk(KERN_WARNING "broken BIOS!!\n");
1078 trigger = 1;
1079 break;
1080 }
1081 }
1082#endif
1083 break;
1084 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001085 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001086 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001087 break;
1088 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001089 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001090 {
1091 printk(KERN_WARNING "broken BIOS!!\n");
1092 trigger = 1;
1093 break;
1094 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001095 case 3: /* level */
1096 {
1097 trigger = 1;
1098 break;
1099 }
1100 default: /* invalid */
1101 {
1102 printk(KERN_WARNING "broken BIOS!!\n");
1103 trigger = 0;
1104 break;
1105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107 return trigger;
1108}
1109
1110static inline int irq_polarity(int idx)
1111{
1112 return MPBIOS_polarity(idx);
1113}
1114
1115static inline int irq_trigger(int idx)
1116{
1117 return MPBIOS_trigger(idx);
1118}
1119
Yinghai Luefa25592008-08-19 20:50:36 -07001120int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121static int pin_2_irq(int idx, int apic, int pin)
1122{
1123 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301124 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 /*
1127 * Debugging check, we are in big trouble if this message pops up!
1128 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301129 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1131
Ingo Molnar54168ed2008-08-20 09:07:45 +02001132 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301133 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001134 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001135 /*
1136 * PCI IRQs are mapped in order
1137 */
1138 i = irq = 0;
1139 while (i < apic)
1140 irq += nr_ioapic_registers[i++];
1141 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001142 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001143 * For MPS mode, so far only needed by ES7000 platform
1144 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001145 if (ioapic_renumber_irq)
1146 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Ingo Molnar54168ed2008-08-20 09:07:45 +02001149#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 /*
1151 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1152 */
1153 if ((pin >= 16) && (pin <= 23)) {
1154 if (pirq_entries[pin-16] != -1) {
1155 if (!pirq_entries[pin-16]) {
1156 apic_printk(APIC_VERBOSE, KERN_DEBUG
1157 "disabling PIRQ%d\n", pin-16);
1158 } else {
1159 irq = pirq_entries[pin-16];
1160 apic_printk(APIC_VERBOSE, KERN_DEBUG
1161 "using PIRQ%d -> IRQ %d\n",
1162 pin-16, irq);
1163 }
1164 }
1165 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001166#endif
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return irq;
1169}
1170
Yinghai Lu497c9a12008-08-19 20:50:28 -07001171void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001173 /* Used to the online set of cpus does not change
1174 * during assign_irq_vector.
1175 */
1176 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Yinghai Lu497c9a12008-08-19 20:50:28 -07001179void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001180{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001181 spin_unlock(&vector_lock);
1182}
1183
Mike Travise7986732008-12-16 17:33:52 -08001184static int
1185__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001186{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001187 /*
1188 * NOTE! The local APIC isn't very good at handling
1189 * multiple interrupts at the same interrupt level.
1190 * As the interrupt level is determined by taking the
1191 * vector number and shifting that right by 4, we
1192 * want to spread these out a bit so that they don't
1193 * all fall in the same interrupt level.
1194 *
1195 * Also, we've got to be careful not to trash gate
1196 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1197 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001198 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1199 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001200 int cpu, err;
1201 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001202
Ingo Molnar54168ed2008-08-20 09:07:45 +02001203 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1204 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001205
Mike Travis22f65d32008-12-16 17:33:56 -08001206 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1207 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001208
Ingo Molnar54168ed2008-08-20 09:07:45 +02001209 old_vector = cfg->vector;
1210 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001211 cpumask_and(tmp_mask, mask, cpu_online_mask);
1212 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1213 if (!cpumask_empty(tmp_mask)) {
1214 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001215 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001216 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001217 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001218
Mike Travise7986732008-12-16 17:33:52 -08001219 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001220 err = -ENOSPC;
1221 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001222 int new_cpu;
1223 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001224
Ingo Molnare2d40b12009-01-28 06:50:47 +01001225 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001226
Ingo Molnar54168ed2008-08-20 09:07:45 +02001227 vector = current_vector;
1228 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001229next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001230 vector += 8;
1231 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001232 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001233 offset = (offset + 1) % 8;
1234 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001235 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001236 if (unlikely(current_vector == vector))
1237 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001238
1239 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001240 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001241
Mike Travis22f65d32008-12-16 17:33:56 -08001242 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001243 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1244 goto next;
1245 /* Found one! */
1246 current_vector = vector;
1247 current_offset = offset;
1248 if (old_vector) {
1249 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001250 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001251 }
Mike Travis22f65d32008-12-16 17:33:56 -08001252 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001253 per_cpu(vector_irq, new_cpu)[vector] = irq;
1254 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001255 cpumask_copy(cfg->domain, tmp_mask);
1256 err = 0;
1257 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001258 }
Mike Travis22f65d32008-12-16 17:33:56 -08001259 free_cpumask_var(tmp_mask);
1260 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001261}
1262
Mike Travise7986732008-12-16 17:33:52 -08001263static int
1264assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001265{
1266 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001267 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001268
1269 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001270 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001271 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001272 return err;
1273}
1274
Yinghai Lu3145e942008-12-05 18:58:34 -08001275static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001276{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001277 int cpu, vector;
1278
Yinghai Lu497c9a12008-08-19 20:50:28 -07001279 BUG_ON(!cfg->vector);
1280
1281 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001282 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001283 per_cpu(vector_irq, cpu)[vector] = -1;
1284
1285 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001286 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001287
1288 if (likely(!cfg->move_in_progress))
1289 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001290 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001291 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1292 vector++) {
1293 if (per_cpu(vector_irq, cpu)[vector] != irq)
1294 continue;
1295 per_cpu(vector_irq, cpu)[vector] = -1;
1296 break;
1297 }
1298 }
1299 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001300}
1301
1302void __setup_vector_irq(int cpu)
1303{
1304 /* Initialize vector_irq on a new cpu */
1305 /* This function must be called with vector_lock held */
1306 int irq, vector;
1307 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001308 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001309
1310 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001311 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001312 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001313 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001314 continue;
1315 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001316 per_cpu(vector_irq, cpu)[vector] = irq;
1317 }
1318 /* Mark the free vectors */
1319 for (vector = 0; vector < NR_VECTORS; ++vector) {
1320 irq = per_cpu(vector_irq, cpu)[vector];
1321 if (irq < 0)
1322 continue;
1323
1324 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001325 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001326 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001327 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001328}
Glauber Costa3fde6902008-05-28 20:34:19 -07001329
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001330static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001331static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Ingo Molnar54168ed2008-08-20 09:07:45 +02001333#define IOAPIC_AUTO -1
1334#define IOAPIC_EDGE 0
1335#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001337#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001338static inline int IO_APIC_irq_trigger(int irq)
1339{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001340 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001341
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001342 for (apic = 0; apic < nr_ioapics; apic++) {
1343 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1344 idx = find_irq_entry(apic, pin, mp_INT);
1345 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1346 return irq_trigger(idx);
1347 }
1348 }
1349 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001350 * nonexistent IRQs are edge default
1351 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001352 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001353}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001354#else
1355static inline int IO_APIC_irq_trigger(int irq)
1356{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001357 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001358}
1359#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001360
Yinghai Lu3145e942008-12-05 18:58:34 -08001361static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Yinghai Lu199751d2008-08-19 20:50:27 -07001363
Jan Beulich6ebcc002006-06-26 13:56:46 +02001364 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001365 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001366 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001367 else
1368 desc->status &= ~IRQ_LEVEL;
1369
Ingo Molnar54168ed2008-08-20 09:07:45 +02001370 if (irq_remapped(irq)) {
1371 desc->status |= IRQ_MOVE_PCNTXT;
1372 if (trigger)
1373 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1374 handle_fasteoi_irq,
1375 "fasteoi");
1376 else
1377 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1378 handle_edge_irq, "edge");
1379 return;
1380 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001381
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001382 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1383 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001384 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001385 handle_fasteoi_irq,
1386 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001387 else
Ingo Molnara460e742006-10-17 00:10:03 -07001388 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001389 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001390}
1391
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001392int setup_ioapic_entry(int apic_id, int irq,
1393 struct IO_APIC_route_entry *entry,
1394 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001395 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001396{
1397 /*
1398 * add it to the IO-APIC irq-routing table:
1399 */
1400 memset(entry,0,sizeof(*entry));
1401
Ingo Molnar54168ed2008-08-20 09:07:45 +02001402 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001403 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001404 struct irte irte;
1405 struct IR_IO_APIC_route_entry *ir_entry =
1406 (struct IR_IO_APIC_route_entry *) entry;
1407 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001408
Ingo Molnar54168ed2008-08-20 09:07:45 +02001409 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001410 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001411
1412 index = alloc_irte(iommu, irq, 1);
1413 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001414 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001415
1416 memset(&irte, 0, sizeof(irte));
1417
1418 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001419 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001420 /*
1421 * Trigger mode in the IRTE will always be edge, and the
1422 * actual level or edge trigger will be setup in the IO-APIC
1423 * RTE. This will help simplify level triggered irq migration.
1424 * For more details, see the comments above explainig IO-APIC
1425 * irq migration in the presence of interrupt-remapping.
1426 */
1427 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001428 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001429 irte.vector = vector;
1430 irte.dest_id = IRTE_DEST(destination);
1431
1432 modify_irte(irq, &irte);
1433
1434 ir_entry->index2 = (index >> 15) & 0x1;
1435 ir_entry->zero = 0;
1436 ir_entry->format = 1;
1437 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001438 /*
1439 * IO-APIC RTE will be configured with virtual vector.
1440 * irq handler will do the explicit EOI to the io-apic.
1441 */
1442 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001443 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001444 entry->delivery_mode = apic->irq_delivery_mode;
1445 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001446 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001447 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001448 }
1449
1450 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001451 entry->trigger = trigger;
1452 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001453
1454 /* Mask level triggered irqs.
1455 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1456 */
1457 if (trigger)
1458 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001459 return 0;
1460}
1461
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001462static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001463 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001464{
1465 struct irq_cfg *cfg;
1466 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001467 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001468
1469 if (!IO_APIC_IRQ(irq))
1470 return;
1471
Yinghai Lu3145e942008-12-05 18:58:34 -08001472 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001473
Ingo Molnarfe402e12009-01-28 04:32:51 +01001474 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001475 return;
1476
Ingo Molnardebccb32009-01-28 15:20:18 +01001477 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001478
1479 apic_printk(APIC_VERBOSE,KERN_DEBUG
1480 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1481 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001482 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001483 irq, trigger, polarity);
1484
1485
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001486 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001487 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001488 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001489 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001490 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001491 return;
1492 }
1493
Yinghai Lu3145e942008-12-05 18:58:34 -08001494 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001495 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001496 disable_8259A_irq(irq);
1497
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001498 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
1501static void __init setup_IO_APIC_irqs(void)
1502{
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001503 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001504 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001505 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001506 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001507 int cpu = boot_cpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1510
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001511 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1512 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001514 idx = find_irq_entry(apic_id, pin, mp_INT);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001515 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001516 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001517 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001518 apic_printk(APIC_VERBOSE,
1519 KERN_DEBUG " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001520 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001521 } else
1522 apic_printk(APIC_VERBOSE, " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001523 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001524 continue;
1525 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001526 if (notcon) {
1527 apic_printk(APIC_VERBOSE,
1528 " (apicid-pin) not connected\n");
1529 notcon = 0;
1530 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001531
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001532 irq = pin_2_irq(idx, apic_id, pin);
Ingo Molnar33a201f2009-01-28 07:17:26 +01001533
1534 /*
1535 * Skip the timer IRQ if there's a quirk handler
1536 * installed and if it returns 1:
1537 */
1538 if (apic->multi_timer_check &&
1539 apic->multi_timer_check(apic_id, irq))
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001540 continue;
Ingo Molnar33a201f2009-01-28 07:17:26 +01001541
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001542 desc = irq_to_desc_alloc_cpu(irq, cpu);
1543 if (!desc) {
1544 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1545 continue;
1546 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001547 cfg = desc->chip_data;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001548 add_pin_to_irq_cpu(cfg, cpu, apic_id, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001549
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001550 setup_IO_APIC_irq(apic_id, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001551 irq_trigger(idx), irq_polarity(idx));
1552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001555 if (notcon)
1556 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001557 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
1560/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001561 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001563static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001564 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Ingo Molnar54168ed2008-08-20 09:07:45 +02001568 if (intr_remapping_enabled)
1569 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001570
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001571 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 /*
1574 * We use logical delivery to get the timer IRQ
1575 * to the first CPU.
1576 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001577 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001578 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001579 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001580 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 entry.polarity = 0;
1582 entry.trigger = 0;
1583 entry.vector = vector;
1584
1585 /*
1586 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001587 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001589 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /*
1592 * Add it to the IO-APIC irq-routing table:
1593 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001594 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001597
1598__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 int apic, i;
1601 union IO_APIC_reg_00 reg_00;
1602 union IO_APIC_reg_01 reg_01;
1603 union IO_APIC_reg_02 reg_02;
1604 union IO_APIC_reg_03 reg_03;
1605 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001606 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001607 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001608 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 if (apic_verbosity == APIC_QUIET)
1611 return;
1612
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001613 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 for (i = 0; i < nr_ioapics; i++)
1615 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05301616 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 /*
1619 * We are a bit conservative about what we expect. We have to
1620 * know about every hardware change ASAP.
1621 */
1622 printk(KERN_INFO "testing the IO APIC.......................\n");
1623
1624 for (apic = 0; apic < nr_ioapics; apic++) {
1625
1626 spin_lock_irqsave(&ioapic_lock, flags);
1627 reg_00.raw = io_apic_read(apic, 0);
1628 reg_01.raw = io_apic_read(apic, 1);
1629 if (reg_01.bits.version >= 0x10)
1630 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001631 if (reg_01.bits.version >= 0x20)
1632 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 spin_unlock_irqrestore(&ioapic_lock, flags);
1634
Ingo Molnar54168ed2008-08-20 09:07:45 +02001635 printk("\n");
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05301636 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1638 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1639 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1640 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Ingo Molnar54168ed2008-08-20 09:07:45 +02001642 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1646 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /*
1649 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1650 * but the value of reg_02 is read as the previous read register
1651 * value, so ignore it if reg_02 == reg_01.
1652 */
1653 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1654 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1655 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
1658 /*
1659 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1660 * or reg_03, but the value of reg_0[23] is read as the previous read
1661 * register value, so ignore it if reg_03 == reg_0[12].
1662 */
1663 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1664 reg_03.raw != reg_01.raw) {
1665 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1666 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
1668
1669 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1670
Yinghai Lud83e94a2008-08-19 20:50:33 -07001671 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1672 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 for (i = 0; i <= reg_01.bits.entries; i++) {
1675 struct IO_APIC_route_entry entry;
1676
Andi Kleencf4c6a22006-09-26 10:52:30 +02001677 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Ingo Molnar54168ed2008-08-20 09:07:45 +02001679 printk(KERN_DEBUG " %02x %03X ",
1680 i,
1681 entry.dest
1682 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1685 entry.mask,
1686 entry.trigger,
1687 entry.irr,
1688 entry.polarity,
1689 entry.delivery_status,
1690 entry.dest_mode,
1691 entry.delivery_mode,
1692 entry.vector
1693 );
1694 }
1695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001697 for_each_irq_desc(irq, desc) {
1698 struct irq_pin_list *entry;
1699
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001700 cfg = desc->chip_data;
1701 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001702 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001704 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 for (;;) {
1706 printk("-> %d:%d", entry->apic, entry->pin);
1707 if (!entry->next)
1708 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001709 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 printk("\n");
1712 }
1713
1714 printk(KERN_INFO ".................................... done.\n");
1715
1716 return;
1717}
1718
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001719__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
1721 unsigned int v;
1722 int i, j;
1723
1724 if (apic_verbosity == APIC_QUIET)
1725 return;
1726
1727 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1728 for (i = 0; i < 8; i++) {
1729 v = apic_read(base + i*0x10);
1730 for (j = 0; j < 32; j++) {
1731 if (v & (1<<j))
1732 printk("1");
1733 else
1734 printk("0");
1735 }
1736 printk("\n");
1737 }
1738}
1739
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001740__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001743 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 if (apic_verbosity == APIC_QUIET)
1746 return;
1747
1748 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1749 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001750 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001751 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 v = apic_read(APIC_LVR);
1753 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1754 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001755 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 v = apic_read(APIC_TASKPRI);
1758 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1759
Ingo Molnar54168ed2008-08-20 09:07:45 +02001760 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001761 if (!APIC_XAPIC(ver)) {
1762 v = apic_read(APIC_ARBPRI);
1763 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1764 v & APIC_ARBPRI_MASK);
1765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 v = apic_read(APIC_PROCPRI);
1767 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1768 }
1769
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001770 /*
1771 * Remote read supported only in the 82489DX and local APIC for
1772 * Pentium processors.
1773 */
1774 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1775 v = apic_read(APIC_RRR);
1776 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1777 }
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 v = apic_read(APIC_LDR);
1780 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001781 if (!x2apic_enabled()) {
1782 v = apic_read(APIC_DFR);
1783 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 v = apic_read(APIC_SPIV);
1786 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1787
1788 printk(KERN_DEBUG "... APIC ISR field:\n");
1789 print_APIC_bitfield(APIC_ISR);
1790 printk(KERN_DEBUG "... APIC TMR field:\n");
1791 print_APIC_bitfield(APIC_TMR);
1792 printk(KERN_DEBUG "... APIC IRR field:\n");
1793 print_APIC_bitfield(APIC_IRR);
1794
Ingo Molnar54168ed2008-08-20 09:07:45 +02001795 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1796 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 v = apic_read(APIC_ESR);
1800 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1801 }
1802
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001803 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001804 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1805 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 v = apic_read(APIC_LVTT);
1808 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1809
1810 if (maxlvt > 3) { /* PC is LVT#4. */
1811 v = apic_read(APIC_LVTPC);
1812 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1813 }
1814 v = apic_read(APIC_LVT0);
1815 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1816 v = apic_read(APIC_LVT1);
1817 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1818
1819 if (maxlvt > 2) { /* ERR is LVT#3. */
1820 v = apic_read(APIC_LVTERR);
1821 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1822 }
1823
1824 v = apic_read(APIC_TMICT);
1825 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1826 v = apic_read(APIC_TMCCT);
1827 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1828 v = apic_read(APIC_TDCR);
1829 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1830 printk("\n");
1831}
1832
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001833__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001835 int cpu;
1836
1837 preempt_disable();
1838 for_each_online_cpu(cpu)
1839 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1840 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001843__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 unsigned int v;
1846 unsigned long flags;
1847
1848 if (apic_verbosity == APIC_QUIET)
1849 return;
1850
1851 printk(KERN_DEBUG "\nprinting PIC contents\n");
1852
1853 spin_lock_irqsave(&i8259A_lock, flags);
1854
1855 v = inb(0xa1) << 8 | inb(0x21);
1856 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1857
1858 v = inb(0xa0) << 8 | inb(0x20);
1859 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1860
Ingo Molnar54168ed2008-08-20 09:07:45 +02001861 outb(0x0b,0xa0);
1862 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001864 outb(0x0a,0xa0);
1865 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 spin_unlock_irqrestore(&i8259A_lock, flags);
1868
1869 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1870
1871 v = inb(0x4d1) << 8 | inb(0x4d0);
1872 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1873}
1874
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001875__apicdebuginit(int) print_all_ICs(void)
1876{
1877 print_PIC();
1878 print_all_local_APICs();
1879 print_IO_APIC();
1880
1881 return 0;
1882}
1883
1884fs_initcall(print_all_ICs);
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Yinghai Luefa25592008-08-19 20:50:36 -07001887/* Where if anywhere is the i8259 connect in external int mode */
1888static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1889
Ingo Molnar54168ed2008-08-20 09:07:45 +02001890void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
1892 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001893 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001894 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 unsigned long flags;
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /*
1898 * The number of IO-APIC IRQ registers (== #pins):
1899 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001900 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001902 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001904 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1905 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001906 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001907 int pin;
1908 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001909 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001910 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001911 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001912
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001913 /* If the interrupt line is enabled and in ExtInt mode
1914 * I have found the pin where the i8259 is connected.
1915 */
1916 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1917 ioapic_i8259.apic = apic;
1918 ioapic_i8259.pin = pin;
1919 goto found_i8259;
1920 }
1921 }
1922 }
1923 found_i8259:
1924 /* Look to see what if the MP table has reported the ExtINT */
1925 /* If we could not find the appropriate pin by looking at the ioapic
1926 * the i8259 probably is not connected the ioapic but give the
1927 * mptable a chance anyway.
1928 */
1929 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1930 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1931 /* Trust the MP table if nothing is setup in the hardware */
1932 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1933 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1934 ioapic_i8259.pin = i8259_pin;
1935 ioapic_i8259.apic = i8259_apic;
1936 }
1937 /* Complain if the MP table and the hardware disagree */
1938 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1939 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1940 {
1941 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943
1944 /*
1945 * Do not trust the IO-APIC being empty at bootup
1946 */
1947 clear_IO_APIC();
1948}
1949
1950/*
1951 * Not an __init, needed by the reboot code
1952 */
1953void disable_IO_APIC(void)
1954{
1955 /*
1956 * Clear the IO-APIC before rebooting:
1957 */
1958 clear_IO_APIC();
1959
Eric W. Biederman650927e2005-06-25 14:57:44 -07001960 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001961 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001962 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001963 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001964 *
1965 * With interrupt-remapping, for now we will use virtual wire A mode,
1966 * as virtual wire B is little complex (need to configure both
1967 * IOAPIC RTE aswell as interrupt-remapping table entry).
1968 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001969 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001970 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001971 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001972
1973 memset(&entry, 0, sizeof(entry));
1974 entry.mask = 0; /* Enabled */
1975 entry.trigger = 0; /* Edge */
1976 entry.irr = 0;
1977 entry.polarity = 0; /* High */
1978 entry.delivery_status = 0;
1979 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001980 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001981 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001982 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001983
1984 /*
1985 * Add it to the IO-APIC irq-routing table:
1986 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001987 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001988 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001989
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07001990 /*
1991 * Use virtual wire A mode when interrupt remapping is enabled.
1992 */
1993 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
Ingo Molnar54168ed2008-08-20 09:07:45 +02001996#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997/*
1998 * function to set the IO-APIC physical IDs based on the
1999 * values stored in the MPC table.
2000 *
2001 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2002 */
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004static void __init setup_ioapic_ids_from_mpc(void)
2005{
2006 union IO_APIC_reg_00 reg_00;
2007 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002008 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 int i;
2010 unsigned char old_id;
2011 unsigned long flags;
2012
Yinghai Lua4dbc342008-07-25 02:14:28 -07002013 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002014 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002017 * Don't check I/O APIC IDs for xAPIC systems. They have
2018 * no meaning without the serial APIC bus.
2019 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002020 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2021 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002022 return;
2023 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 * This is broken; anything with a real cpu count has to
2025 * circumvent this idiocy regardless.
2026 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002027 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 /*
2030 * Set the IOAPIC ID to the value stored in the MPC table.
2031 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002032 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* Read the register 0 value */
2035 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002036 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002038
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002039 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002041 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002043 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2045 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002046 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /*
2050 * Sanity check, is the ID really free? Every APIC in a
2051 * system must have a unique ID or we get lots of nice
2052 * 'stuck on smp_invalidate_needed IPI wait' messages.
2053 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002054 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002055 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002057 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 for (i = 0; i < get_physical_broadcast(); i++)
2059 if (!physid_isset(i, phys_id_present_map))
2060 break;
2061 if (i >= get_physical_broadcast())
2062 panic("Max APIC ID exceeded!\n");
2063 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2064 i);
2065 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002066 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 } else {
2068 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002069 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 apic_printk(APIC_VERBOSE, "Setting %d in the "
2071 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002072 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2074 }
2075
2076
2077 /*
2078 * We need to adjust the IRQ routing table
2079 * if the ID changed.
2080 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002081 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302083 if (mp_irqs[i].dstapic == old_id)
2084 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002085 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 /*
2088 * Read the right value from the MPC table and
2089 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 apic_printk(APIC_VERBOSE, KERN_INFO
2092 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002093 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002095 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002097 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002098 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /*
2101 * Sanity check
2102 */
2103 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002104 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002106 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 printk("could not set ID!\n");
2108 else
2109 apic_printk(APIC_VERBOSE, " ok.\n");
2110 }
2111}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002114int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002115
2116static int __init notimercheck(char *s)
2117{
2118 no_timer_check = 1;
2119 return 1;
2120}
2121__setup("no_timer_check", notimercheck);
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123/*
2124 * There is a nasty bug in some older SMP boards, their mptable lies
2125 * about the timer IRQ. We do the following to work around the situation:
2126 *
2127 * - timer IRQ defaults to IO-APIC IRQ
2128 * - if this function detects that timer IRQs are defunct, then we fall
2129 * back to ISA timer IRQs
2130 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002131static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002134 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Zachary Amsden8542b202006-12-07 02:14:09 +01002136 if (no_timer_check)
2137 return 1;
2138
Ingo Molnar4aae0702007-12-18 18:05:58 +01002139 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 local_irq_enable();
2141 /* Let ten ticks pass... */
2142 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002143 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /*
2146 * Expect a few ticks at least, to be sure some possible
2147 * glue logic does not lock up after one or two first
2148 * ticks in a non-ExtINT mode. Also the local APIC
2149 * might have cached one ExtINT interrupt. Finally, at
2150 * least one tick may be lost due to delays.
2151 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002152
2153 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002154 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
2157}
2158
2159/*
2160 * In the SMP+IOAPIC case it might happen that there are an unspecified
2161 * number of pending IRQ events unhandled. These cases are very rare,
2162 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2163 * better to do it this way as thus we do not have to be aware of
2164 * 'pending' interrupts in the IRQ path, except at this point.
2165 */
2166/*
2167 * Edge triggered needs to resend any interrupt
2168 * that was delayed but this is now handled in the device
2169 * independent code.
2170 */
2171
2172/*
2173 * Starting up a edge-triggered IO-APIC interrupt is
2174 * nasty - we need to make sure that we get the edge.
2175 * If it is already asserted for some reason, we need
2176 * return 1 to indicate that is was pending.
2177 *
2178 * This is not complete - we should be able to fake
2179 * an edge even if it isn't on the 8259A...
2180 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002181
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002182static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 int was_pending = 0;
2185 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002186 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002189 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 disable_8259A_irq(irq);
2191 if (i8259A_irq_pending(irq))
2192 was_pending = 1;
2193 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002194 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002195 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 spin_unlock_irqrestore(&ioapic_lock, flags);
2197
2198 return was_pending;
2199}
2200
Ingo Molnar54168ed2008-08-20 09:07:45 +02002201#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002202static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002204
2205 struct irq_cfg *cfg = irq_cfg(irq);
2206 unsigned long flags;
2207
2208 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002209 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002210 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002211
2212 return 1;
2213}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002214#else
2215static int ioapic_retrigger_irq(unsigned int irq)
2216{
Ingo Molnardac5f412009-01-28 15:42:24 +01002217 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002218
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002219 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002220}
2221#endif
2222
2223/*
2224 * Level and edge triggered IO-APIC interrupts need different handling,
2225 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2226 * handled with the level-triggered descriptor, but that one has slightly
2227 * more overhead. Level-triggered interrupts cannot be handled with the
2228 * edge-triggered handler, without risking IRQ storms and other ugly
2229 * races.
2230 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002231
Yinghai Lu497c9a12008-08-19 20:50:28 -07002232#ifdef CONFIG_SMP
Gary Hadee85abf82009-04-08 14:07:25 -07002233static void send_cleanup_vector(struct irq_cfg *cfg)
2234{
2235 cpumask_var_t cleanup_mask;
2236
2237 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2238 unsigned int i;
2239 cfg->move_cleanup_count = 0;
2240 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2241 cfg->move_cleanup_count++;
2242 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2243 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2244 } else {
2245 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2246 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
2247 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2248 free_cpumask_var(cleanup_mask);
2249 }
2250 cfg->move_in_progress = 0;
2251}
2252
2253static void
2254__target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
2255{
2256 int apic, pin;
2257 struct irq_pin_list *entry;
2258 u8 vector = cfg->vector;
2259
2260 entry = cfg->irq_2_pin;
2261 for (;;) {
2262 unsigned int reg;
2263
2264 if (!entry)
2265 break;
2266
2267 apic = entry->apic;
2268 pin = entry->pin;
2269 /*
2270 * With interrupt-remapping, destination information comes
2271 * from interrupt-remapping table entry.
2272 */
2273 if (!irq_remapped(irq))
2274 io_apic_write(apic, 0x11 + pin*2, dest);
2275 reg = io_apic_read(apic, 0x10 + pin*2);
2276 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2277 reg |= vector;
2278 io_apic_modify(apic, 0x10 + pin*2, reg);
2279 if (!entry->next)
2280 break;
2281 entry = entry->next;
2282 }
2283}
2284
2285/*
2286 * Either sets desc->affinity to a valid value, and returns
2287 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2288 * leaves desc->affinity untouched.
2289 */
2290static unsigned int
2291set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
2292{
2293 struct irq_cfg *cfg;
2294 unsigned int irq;
2295
2296 if (!cpumask_intersects(mask, cpu_online_mask))
2297 return BAD_APICID;
2298
2299 irq = desc->irq;
2300 cfg = desc->chip_data;
2301 if (assign_irq_vector(irq, cfg, mask))
2302 return BAD_APICID;
2303
2304 /* check that before desc->addinity get updated */
2305 set_extra_move_desc(desc, mask);
2306
2307 cpumask_copy(desc->affinity, mask);
2308
2309 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2310}
2311
2312static void
2313set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2314{
2315 struct irq_cfg *cfg;
2316 unsigned long flags;
2317 unsigned int dest;
2318 unsigned int irq;
2319
2320 irq = desc->irq;
2321 cfg = desc->chip_data;
2322
2323 spin_lock_irqsave(&ioapic_lock, flags);
2324 dest = set_desc_affinity(desc, mask);
2325 if (dest != BAD_APICID) {
2326 /* Only the high 8 bits are valid. */
2327 dest = SET_APIC_LOGICAL_ID(dest);
2328 __target_IO_APIC_irq(irq, dest, cfg);
2329 }
2330 spin_unlock_irqrestore(&ioapic_lock, flags);
2331}
2332
2333static void
2334set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2335{
2336 struct irq_desc *desc;
2337
2338 desc = irq_to_desc(irq);
2339
2340 set_ioapic_affinity_irq_desc(desc, mask);
2341}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002342
2343#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002344
2345/*
2346 * Migrate the IO-APIC irq in the presence of intr-remapping.
2347 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002348 * For both level and edge triggered, irq migration is a simple atomic
2349 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002350 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002351 * For level triggered, we eliminate the io-apic RTE modification (with the
2352 * updated vector information), by using a virtual vector (io-apic pin number).
2353 * Real vector that is used for interrupting cpu will be coming from
2354 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002355 */
Mike Travise7986732008-12-16 17:33:52 -08002356static void
2357migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358{
2359 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002360 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002361 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002362 unsigned int irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002363
Mike Travis22f65d32008-12-16 17:33:56 -08002364 if (!cpumask_intersects(mask, cpu_online_mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002365 return;
2366
Yinghai Lu3145e942008-12-05 18:58:34 -08002367 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002368 if (get_irte(irq, &irte))
2369 return;
2370
Yinghai Lu3145e942008-12-05 18:58:34 -08002371 cfg = desc->chip_data;
2372 if (assign_irq_vector(irq, cfg, mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002373 return;
2374
Yinghai Lu3145e942008-12-05 18:58:34 -08002375 set_extra_move_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002376
Ingo Molnardebccb32009-01-28 15:20:18 +01002377 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002378
Ingo Molnar54168ed2008-08-20 09:07:45 +02002379 irte.vector = cfg->vector;
2380 irte.dest_id = IRTE_DEST(dest);
2381
2382 /*
2383 * Modified the IRTE and flushes the Interrupt entry cache.
2384 */
2385 modify_irte(irq, &irte);
2386
Mike Travis22f65d32008-12-16 17:33:56 -08002387 if (cfg->move_in_progress)
2388 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002389
Mike Travis7f7ace02009-01-10 21:58:08 -08002390 cpumask_copy(desc->affinity, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002391}
2392
Ingo Molnar54168ed2008-08-20 09:07:45 +02002393/*
2394 * Migrates the IRQ destination in the process context.
2395 */
Rusty Russell968ea6d2008-12-13 21:55:51 +10302396static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2397 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002398{
Yinghai Lu3145e942008-12-05 18:58:34 -08002399 migrate_ioapic_irq_desc(desc, mask);
2400}
Rusty Russell0de26522008-12-13 21:20:26 +10302401static void set_ir_ioapic_affinity_irq(unsigned int irq,
2402 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002403{
2404 struct irq_desc *desc = irq_to_desc(irq);
2405
Yinghai Lu3145e942008-12-05 18:58:34 -08002406 set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002407}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002408#else
2409static inline void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2410 const struct cpumask *mask)
2411{
2412}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002413#endif
2414
Yinghai Lu497c9a12008-08-19 20:50:28 -07002415asmlinkage void smp_irq_move_cleanup_interrupt(void)
2416{
2417 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002418
Yinghai Lu497c9a12008-08-19 20:50:28 -07002419 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002420 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002421 irq_enter();
2422
2423 me = smp_processor_id();
2424 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2425 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002426 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002427 struct irq_desc *desc;
2428 struct irq_cfg *cfg;
2429 irq = __get_cpu_var(vector_irq)[vector];
2430
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002431 if (irq == -1)
2432 continue;
2433
Yinghai Lu497c9a12008-08-19 20:50:28 -07002434 desc = irq_to_desc(irq);
2435 if (!desc)
2436 continue;
2437
2438 cfg = irq_cfg(irq);
2439 spin_lock(&desc->lock);
2440 if (!cfg->move_cleanup_count)
2441 goto unlock;
2442
Mike Travis22f65d32008-12-16 17:33:56 -08002443 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002444 goto unlock;
2445
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002446 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2447 /*
2448 * Check if the vector that needs to be cleanedup is
2449 * registered at the cpu's IRR. If so, then this is not
2450 * the best time to clean it up. Lets clean it up in the
2451 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2452 * to myself.
2453 */
2454 if (irr & (1 << (vector % 32))) {
2455 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2456 goto unlock;
2457 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002458 __get_cpu_var(vector_irq)[vector] = -1;
2459 cfg->move_cleanup_count--;
2460unlock:
2461 spin_unlock(&desc->lock);
2462 }
2463
2464 irq_exit();
2465}
2466
Yinghai Lu3145e942008-12-05 18:58:34 -08002467static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002468{
Yinghai Lu3145e942008-12-05 18:58:34 -08002469 struct irq_desc *desc = *descp;
2470 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002471 unsigned vector, me;
2472
Yinghai Lu48a1b102008-12-11 00:15:01 -08002473 if (likely(!cfg->move_in_progress)) {
2474#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2475 if (likely(!cfg->move_desc_pending))
2476 return;
2477
Yinghai Lub9098952008-12-19 13:48:34 -08002478 /* domain has not changed, but affinity did */
Yinghai Lu48a1b102008-12-11 00:15:01 -08002479 me = smp_processor_id();
Mike Travis7f7ace02009-01-10 21:58:08 -08002480 if (cpumask_test_cpu(me, desc->affinity)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002481 *descp = desc = move_irq_desc(desc, me);
2482 /* get the new one */
2483 cfg = desc->chip_data;
2484 cfg->move_desc_pending = 0;
2485 }
2486#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002487 return;
Yinghai Lu48a1b102008-12-11 00:15:01 -08002488 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002489
2490 vector = ~get_irq_regs()->orig_ax;
2491 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002492
2493 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002494#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2495 *descp = desc = move_irq_desc(desc, me);
2496 /* get the new one */
2497 cfg = desc->chip_data;
2498#endif
Mike Travis22f65d32008-12-16 17:33:56 -08002499 send_cleanup_vector(cfg);
Yinghai Lu10b888d2009-01-31 14:50:07 -08002500 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002501}
2502#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002503static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002504#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002505
Yinghai Lu1d025192008-08-19 20:50:34 -07002506static void ack_apic_edge(unsigned int irq)
2507{
Yinghai Lu3145e942008-12-05 18:58:34 -08002508 struct irq_desc *desc = irq_to_desc(irq);
2509
2510 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002511 move_native_irq(irq);
2512 ack_APIC_irq();
2513}
2514
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002515atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002516
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002517static void ack_apic_level(unsigned int irq)
2518{
Yinghai Lu3145e942008-12-05 18:58:34 -08002519 struct irq_desc *desc = irq_to_desc(irq);
2520
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002521#ifdef CONFIG_X86_32
2522 unsigned long v;
2523 int i;
2524#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002525 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002526 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002527
Yinghai Lu3145e942008-12-05 18:58:34 -08002528 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002529#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002530 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002531 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002532 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002533 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002534 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002535#endif
2536
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002537#ifdef CONFIG_X86_32
2538 /*
2539 * It appears there is an erratum which affects at least version 0x11
2540 * of I/O APIC (that's the 82093AA and cores integrated into various
2541 * chipsets). Under certain conditions a level-triggered interrupt is
2542 * erroneously delivered as edge-triggered one but the respective IRR
2543 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2544 * message but it will never arrive and further interrupts are blocked
2545 * from the source. The exact reason is so far unknown, but the
2546 * phenomenon was observed when two consecutive interrupt requests
2547 * from a given source get delivered to the same CPU and the source is
2548 * temporarily disabled in between.
2549 *
2550 * A workaround is to simulate an EOI message manually. We achieve it
2551 * by setting the trigger mode to edge and then to level when the edge
2552 * trigger mode gets detected in the TMR of a local APIC for a
2553 * level-triggered interrupt. We mask the source for the time of the
2554 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2555 * The idea is from Manfred Spraul. --macro
2556 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002557 cfg = desc->chip_data;
2558 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002559
2560 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2561#endif
2562
Ingo Molnar54168ed2008-08-20 09:07:45 +02002563 /*
2564 * We must acknowledge the irq before we move it or the acknowledge will
2565 * not propagate properly.
2566 */
2567 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002568
Ingo Molnar54168ed2008-08-20 09:07:45 +02002569 /* Now we can move and renable the irq */
2570 if (unlikely(do_unmask_irq)) {
2571 /* Only migrate the irq if the ack has been received.
2572 *
2573 * On rare occasions the broadcast level triggered ack gets
2574 * delayed going to ioapics, and if we reprogram the
2575 * vector while Remote IRR is still set the irq will never
2576 * fire again.
2577 *
2578 * To prevent this scenario we read the Remote IRR bit
2579 * of the ioapic. This has two effects.
2580 * - On any sane system the read of the ioapic will
2581 * flush writes (and acks) going to the ioapic from
2582 * this cpu.
2583 * - We get to see if the ACK has actually been delivered.
2584 *
2585 * Based on failed experiments of reprogramming the
2586 * ioapic entry from outside of irq context starting
2587 * with masking the ioapic entry and then polling until
2588 * Remote IRR was clear before reprogramming the
2589 * ioapic I don't trust the Remote IRR bit to be
2590 * completey accurate.
2591 *
2592 * However there appears to be no other way to plug
2593 * this race, so if the Remote IRR bit is not
2594 * accurate and is causing problems then it is a hardware bug
2595 * and you can go talk to the chipset vendor about it.
2596 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002597 cfg = desc->chip_data;
2598 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002599 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002600 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002601 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002602
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002603#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002604 if (!(v & (1 << (i & 0x1f)))) {
2605 atomic_inc(&irq_mis_count);
2606 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002607 __mask_and_edge_IO_APIC_irq(cfg);
2608 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002609 spin_unlock(&ioapic_lock);
2610 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002611#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002612}
Yinghai Lu1d025192008-08-19 20:50:34 -07002613
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002614#ifdef CONFIG_INTR_REMAP
Suresh Siddha25629d82009-04-20 13:02:28 -07002615static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2616{
2617 int apic, pin;
2618 struct irq_pin_list *entry;
2619
2620 entry = cfg->irq_2_pin;
2621 for (;;) {
2622
2623 if (!entry)
2624 break;
2625
2626 apic = entry->apic;
2627 pin = entry->pin;
2628 io_apic_eoi(apic, pin);
2629 entry = entry->next;
2630 }
2631}
2632
2633static void
2634eoi_ioapic_irq(struct irq_desc *desc)
2635{
2636 struct irq_cfg *cfg;
2637 unsigned long flags;
2638 unsigned int irq;
2639
2640 irq = desc->irq;
2641 cfg = desc->chip_data;
2642
2643 spin_lock_irqsave(&ioapic_lock, flags);
2644 __eoi_ioapic_irq(irq, cfg);
2645 spin_unlock_irqrestore(&ioapic_lock, flags);
2646}
2647
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002648static void ir_ack_apic_edge(unsigned int irq)
2649{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002650 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002651}
2652
2653static void ir_ack_apic_level(unsigned int irq)
2654{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002655 struct irq_desc *desc = irq_to_desc(irq);
2656
2657 ack_APIC_irq();
2658 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002659}
2660#endif /* CONFIG_INTR_REMAP */
2661
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002662static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002663 .name = "IO-APIC",
2664 .startup = startup_ioapic_irq,
2665 .mask = mask_IO_APIC_irq,
2666 .unmask = unmask_IO_APIC_irq,
2667 .ack = ack_apic_edge,
2668 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002669#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002670 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002671#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002672 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673};
2674
Ingo Molnar54168ed2008-08-20 09:07:45 +02002675static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002676 .name = "IR-IO-APIC",
2677 .startup = startup_ioapic_irq,
2678 .mask = mask_IO_APIC_irq,
2679 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302680#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002681 .ack = ir_ack_apic_edge,
2682 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002683#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002684 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002685#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302686#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002687 .retrigger = ioapic_retrigger_irq,
2688};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690static inline void init_IO_APIC_traps(void)
2691{
2692 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002693 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002694 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696 /*
2697 * NOTE! The local APIC isn't very good at handling
2698 * multiple interrupts at the same interrupt level.
2699 * As the interrupt level is determined by taking the
2700 * vector number and shifting that right by 4, we
2701 * want to spread these out a bit so that they don't
2702 * all fall in the same interrupt level.
2703 *
2704 * Also, we've got to be careful not to trash gate
2705 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2706 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002707 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002708 cfg = desc->chip_data;
2709 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 /*
2711 * Hmm.. We don't have an entry for this,
2712 * so default to an old-fashioned 8259
2713 * interrupt if we can..
2714 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002715 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002717 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002719 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721 }
2722}
2723
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002724/*
2725 * The local APIC irq-chip implementation:
2726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002728static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729{
2730 unsigned long v;
2731
2732 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002733 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734}
2735
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002736static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002738 unsigned long v;
2739
2740 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002741 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Yinghai Lu3145e942008-12-05 18:58:34 -08002744static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002745{
2746 ack_APIC_irq();
2747}
2748
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002749static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002750 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002751 .mask = mask_lapic_irq,
2752 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002753 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754};
2755
Yinghai Lu3145e942008-12-05 18:58:34 -08002756static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002757{
Yinghai Lu08678b02008-08-19 20:50:05 -07002758 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002759 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2760 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002761}
2762
Jan Beuliche9427102008-01-30 13:31:24 +01002763static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
2765 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002766 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 * We put the 8259A master into AEOI mode and
2768 * unmask on all local APICs LVT0 as NMI.
2769 *
2770 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2771 * is from Maciej W. Rozycki - so we do not have to EOI from
2772 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002773 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2775
Jan Beuliche9427102008-01-30 13:31:24 +01002776 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 apic_printk(APIC_VERBOSE, " done.\n");
2779}
2780
2781/*
2782 * This looks a bit hackish but it's about the only one way of sending
2783 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2784 * not support the ExtINT mode, unfortunately. We need to send these
2785 * cycles as some i82489DX-based boards have glue logic that keeps the
2786 * 8259A interrupt line asserted until INTA. --macro
2787 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002788static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002790 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 struct IO_APIC_route_entry entry0, entry1;
2792 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002794 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002795 if (pin == -1) {
2796 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002798 }
2799 apic = find_isa_irq_apic(8, mp_INT);
2800 if (apic == -1) {
2801 WARN_ON_ONCE(1);
2802 return;
2803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Andi Kleencf4c6a22006-09-26 10:52:30 +02002805 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002806 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 memset(&entry1, 0, sizeof(entry1));
2809
2810 entry1.dest_mode = 0; /* physical delivery */
2811 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002812 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 entry1.delivery_mode = dest_ExtINT;
2814 entry1.polarity = entry0.polarity;
2815 entry1.trigger = 0;
2816 entry1.vector = 0;
2817
Andi Kleencf4c6a22006-09-26 10:52:30 +02002818 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820 save_control = CMOS_READ(RTC_CONTROL);
2821 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2822 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2823 RTC_FREQ_SELECT);
2824 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2825
2826 i = 100;
2827 while (i-- > 0) {
2828 mdelay(10);
2829 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2830 i -= 10;
2831 }
2832
2833 CMOS_WRITE(save_control, RTC_CONTROL);
2834 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002835 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Andi Kleencf4c6a22006-09-26 10:52:30 +02002837 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
Yinghai Luefa25592008-08-19 20:50:36 -07002840static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002841/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002842static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002843{
2844 disable_timer_pin_1 = 1;
2845 return 0;
2846}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002847early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002848
2849int timer_through_8259 __initdata;
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851/*
2852 * This code may look a bit paranoid, but it's supposed to cooperate with
2853 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2854 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2855 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002856 *
2857 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002859static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
Yinghai Lu3145e942008-12-05 18:58:34 -08002861 struct irq_desc *desc = irq_to_desc(0);
2862 struct irq_cfg *cfg = desc->chip_data;
2863 int cpu = boot_cpu_id;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002864 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002865 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002866 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002867
2868 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 /*
2871 * get/set the timer IRQ vector:
2872 */
2873 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002874 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002877 * As IRQ0 is to be enabled in the 8259A, the virtual
2878 * wire has to be disabled in the local APIC. Also
2879 * timer interrupts need to be acknowledged manually in
2880 * the 8259A for the i82489DX when using the NMI
2881 * watchdog as that APIC treats NMIs as level-triggered.
2882 * The AEOI mode will finish them in the 8259A
2883 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002885 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002887#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002888 {
2889 unsigned int ver;
2890
2891 ver = apic_read(APIC_LVR);
2892 ver = GET_APIC_VERSION(ver);
2893 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2894 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002897 pin1 = find_isa_irq_pin(0, mp_INT);
2898 apic1 = find_isa_irq_apic(0, mp_INT);
2899 pin2 = ioapic_i8259.pin;
2900 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002902 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2903 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002904 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002906 /*
2907 * Some BIOS writers are clueless and report the ExtINTA
2908 * I/O APIC input from the cascaded 8259A as the timer
2909 * interrupt input. So just in case, if only one pin
2910 * was found above, try it both directly and through the
2911 * 8259A.
2912 */
2913 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002914 if (intr_remapping_enabled)
2915 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002916 pin1 = pin2;
2917 apic1 = apic2;
2918 no_pin1 = 1;
2919 } else if (pin2 == -1) {
2920 pin2 = pin1;
2921 apic2 = apic1;
2922 }
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (pin1 != -1) {
2925 /*
2926 * Ok, does IRQ0 through the IOAPIC work?
2927 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002928 if (no_pin1) {
Yinghai Lu3145e942008-12-05 18:58:34 -08002929 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002930 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002931 } else {
2932 /* for edge trigger, setup_IO_APIC_irq already
2933 * leave it unmasked.
2934 * so only need to unmask if it is level-trigger
2935 * do we really have level trigger timer?
2936 */
2937 int idx;
2938 idx = find_irq_entry(apic1, pin1, mp_INT);
2939 if (idx != -1 && irq_trigger(idx))
2940 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 if (timer_irq_works()) {
2943 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 setup_nmi();
2945 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002947 if (disable_timer_pin_1 > 0)
2948 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002949 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002951 if (intr_remapping_enabled)
2952 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002953 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002954 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002955 if (!no_pin1)
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002956 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2957 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002959 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2960 "(IRQ0) through the 8259A ...\n");
2961 apic_printk(APIC_QUIET, KERN_INFO
2962 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 /*
2964 * legacy devices should be connected to IO APIC #0
2965 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002966 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002967 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002968 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002970 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002971 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002973 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002975 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002977 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
2979 /*
2980 * Cleanup, just in case ...
2981 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002982 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002983 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002984 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002985 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002989 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2990 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002991 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002993#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002994 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002995#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002997 apic_printk(APIC_QUIET, KERN_INFO
2998 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Yinghai Lu3145e942008-12-05 18:58:34 -08003000 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003001 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 enable_8259A_irq(0);
3003
3004 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003005 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003006 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003008 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003009 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003010 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003011 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003013 apic_printk(APIC_QUIET, KERN_INFO
3014 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 init_8259A(0);
3017 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003018 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
3020 unlock_ExtINT_logic();
3021
3022 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003023 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003024 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003026 local_irq_disable();
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003027 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003029 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003030out:
3031 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032}
3033
3034/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003035 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3036 * to devices. However there may be an I/O APIC pin available for
3037 * this interrupt regardless. The pin may be left unconnected, but
3038 * typically it will be reused as an ExtINT cascade interrupt for
3039 * the master 8259A. In the MPS case such a pin will normally be
3040 * reported as an ExtINT interrupt in the MP table. With ACPI
3041 * there is no provision for ExtINT interrupts, and in the absence
3042 * of an override it would be treated as an ordinary ISA I/O APIC
3043 * interrupt, that is edge-triggered and unmasked by default. We
3044 * used to do this, but it caused problems on some systems because
3045 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3046 * the same ExtINT cascade interrupt to drive the local APIC of the
3047 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3048 * the I/O APIC in all cases now. No actual device should request
3049 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 */
3051#define PIC_IRQS (1 << PIC_CASCADE_IR)
3052
3053void __init setup_IO_APIC(void)
3054{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003055
Ingo Molnar54168ed2008-08-20 09:07:45 +02003056 /*
3057 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3058 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003060 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Ingo Molnar54168ed2008-08-20 09:07:45 +02003062 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003063 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003064 * Set up IO-APIC IRQ routing.
3065 */
3066#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003067 if (!acpi_ioapic)
3068 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003069#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 sync_Arb_IDs();
3071 setup_IO_APIC_irqs();
3072 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003073 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003077 * Called after all the initialization is done. If we didnt find any
3078 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081static int __init io_apic_bug_finalize(void)
3082{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003083 if (sis_apic_bug == -1)
3084 sis_apic_bug = 0;
3085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
3088late_initcall(io_apic_bug_finalize);
3089
3090struct sysfs_ioapic_data {
3091 struct sys_device dev;
3092 struct IO_APIC_route_entry entry[0];
3093};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003094static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Pavel Machek438510f2005-04-16 15:25:24 -07003096static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
3098 struct IO_APIC_route_entry *entry;
3099 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 data = container_of(dev, struct sysfs_ioapic_data, dev);
3103 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003104 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3105 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 return 0;
3108}
3109
3110static int ioapic_resume(struct sys_device *dev)
3111{
3112 struct IO_APIC_route_entry *entry;
3113 struct sysfs_ioapic_data *data;
3114 unsigned long flags;
3115 union IO_APIC_reg_00 reg_00;
3116 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 data = container_of(dev, struct sysfs_ioapic_data, dev);
3119 entry = data->entry;
3120
3121 spin_lock_irqsave(&ioapic_lock, flags);
3122 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05303123 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3124 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 io_apic_write(dev->id, 0, reg_00.raw);
3126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003128 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003129 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131 return 0;
3132}
3133
3134static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +01003135 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 .suspend = ioapic_suspend,
3137 .resume = ioapic_resume,
3138};
3139
3140static int __init ioapic_init_sysfs(void)
3141{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003142 struct sys_device * dev;
3143 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 error = sysdev_class_register(&ioapic_sysdev_class);
3146 if (error)
3147 return error;
3148
Ingo Molnar54168ed2008-08-20 09:07:45 +02003149 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003150 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003152 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if (!mp_ioapic_data[i]) {
3154 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3155 continue;
3156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003158 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 dev->cls = &ioapic_sysdev_class;
3160 error = sysdev_register(dev);
3161 if (error) {
3162 kfree(mp_ioapic_data[i]);
3163 mp_ioapic_data[i] = NULL;
3164 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3165 continue;
3166 }
3167 }
3168
3169 return 0;
3170}
3171
3172device_initcall(ioapic_init_sysfs);
3173
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003174static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003175/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003176 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003177 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003178unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003179{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003180 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003181 unsigned int irq;
3182 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003183 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003184 struct irq_cfg *cfg_new = NULL;
3185 int cpu = boot_cpu_id;
3186 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003187
3188 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003189 if (irq_want < nr_irqs_gsi)
3190 irq_want = nr_irqs_gsi;
3191
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003192 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003193 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003194 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3195 if (!desc_new) {
3196 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003197 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003198 }
3199 cfg_new = desc_new->chip_data;
3200
3201 if (cfg_new->vector != 0)
3202 continue;
Ingo Molnarfe402e12009-01-28 04:32:51 +01003203 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003204 irq = new;
3205 break;
3206 }
3207 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003208
Yinghai Lu199751d2008-08-19 20:50:27 -07003209 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003210 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003211 /* restore it, in case dynamic_irq_init clear it */
3212 if (desc_new)
3213 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003214 }
3215 return irq;
3216}
3217
Yinghai Lu199751d2008-08-19 20:50:27 -07003218int create_irq(void)
3219{
Yinghai Lube5d5352008-12-05 18:58:33 -08003220 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003221 int irq;
3222
Yinghai Lube5d5352008-12-05 18:58:33 -08003223 irq_want = nr_irqs_gsi;
3224 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003225
3226 if (irq == 0)
3227 irq = -1;
3228
3229 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003230}
3231
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003232void destroy_irq(unsigned int irq)
3233{
3234 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003235 struct irq_cfg *cfg;
3236 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003237
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003238 /* store it, in case dynamic_irq_cleanup clear it */
3239 desc = irq_to_desc(irq);
3240 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003241 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003242 /* connect back irq_cfg */
3243 if (desc)
3244 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003245
Ingo Molnar54168ed2008-08-20 09:07:45 +02003246 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003247 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003248 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003249 spin_unlock_irqrestore(&vector_lock, flags);
3250}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003251
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003252/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003253 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003254 */
3255#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003256static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003257{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003258 struct irq_cfg *cfg;
3259 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003260 unsigned dest;
3261
Jan Beulichf1182632009-01-14 12:27:35 +00003262 if (disable_apic)
3263 return -ENXIO;
3264
Yinghai Lu3145e942008-12-05 18:58:34 -08003265 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003266 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003267 if (err)
3268 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003269
Ingo Molnardebccb32009-01-28 15:20:18 +01003270 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003271
Ingo Molnar54168ed2008-08-20 09:07:45 +02003272 if (irq_remapped(irq)) {
3273 struct irte irte;
3274 int ir_index;
3275 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003276
Ingo Molnar54168ed2008-08-20 09:07:45 +02003277 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3278 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003279
Ingo Molnar54168ed2008-08-20 09:07:45 +02003280 memset (&irte, 0, sizeof(irte));
3281
3282 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003283 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003284 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003285 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003286 irte.vector = cfg->vector;
3287 irte.dest_id = IRTE_DEST(dest);
3288
3289 modify_irte(irq, &irte);
3290
3291 msg->address_hi = MSI_ADDR_BASE_HI;
3292 msg->data = sub_handle;
3293 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3294 MSI_ADDR_IR_SHV |
3295 MSI_ADDR_IR_INDEX1(ir_index) |
3296 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003297 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003298 if (x2apic_enabled())
3299 msg->address_hi = MSI_ADDR_BASE_HI |
3300 MSI_ADDR_EXT_DEST_ID(dest);
3301 else
3302 msg->address_hi = MSI_ADDR_BASE_HI;
3303
Ingo Molnar54168ed2008-08-20 09:07:45 +02003304 msg->address_lo =
3305 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003306 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003307 MSI_ADDR_DEST_MODE_PHYSICAL:
3308 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003309 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003310 MSI_ADDR_REDIRECTION_CPU:
3311 MSI_ADDR_REDIRECTION_LOWPRI) |
3312 MSI_ADDR_DEST_ID(dest);
3313
3314 msg->data =
3315 MSI_DATA_TRIGGER_EDGE |
3316 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003317 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003318 MSI_DATA_DELIVERY_FIXED:
3319 MSI_DATA_DELIVERY_LOWPRI) |
3320 MSI_DATA_VECTOR(cfg->vector);
3321 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003322 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003323}
3324
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003325#ifdef CONFIG_SMP
Rusty Russell0de26522008-12-13 21:20:26 +10303326static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003327{
Yinghai Lu3145e942008-12-05 18:58:34 -08003328 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003329 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003330 struct msi_msg msg;
3331 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003332
Mike Travis22f65d32008-12-16 17:33:56 -08003333 dest = set_desc_affinity(desc, mask);
3334 if (dest == BAD_APICID)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003335 return;
3336
Yinghai Lu3145e942008-12-05 18:58:34 -08003337 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003338
Yinghai Lu3145e942008-12-05 18:58:34 -08003339 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003340
3341 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003342 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003343 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3344 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3345
Yinghai Lu3145e942008-12-05 18:58:34 -08003346 write_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003347}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003348#ifdef CONFIG_INTR_REMAP
3349/*
3350 * Migrate the MSI irq to another cpumask. This migration is
3351 * done in the process context using interrupt-remapping hardware.
3352 */
Mike Travise7986732008-12-16 17:33:52 -08003353static void
3354ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003355{
Yinghai Lu3145e942008-12-05 18:58:34 -08003356 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003357 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003358 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003359 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003360
3361 if (get_irte(irq, &irte))
3362 return;
3363
Mike Travis22f65d32008-12-16 17:33:56 -08003364 dest = set_desc_affinity(desc, mask);
3365 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003366 return;
3367
Ingo Molnar54168ed2008-08-20 09:07:45 +02003368 irte.vector = cfg->vector;
3369 irte.dest_id = IRTE_DEST(dest);
3370
3371 /*
3372 * atomically update the IRTE with the new destination and vector.
3373 */
3374 modify_irte(irq, &irte);
3375
3376 /*
3377 * After this point, all the interrupts will start arriving
3378 * at the new destination. So, time to cleanup the previous
3379 * vector allocation.
3380 */
Mike Travis22f65d32008-12-16 17:33:56 -08003381 if (cfg->move_in_progress)
3382 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003383}
Yinghai Lu3145e942008-12-05 18:58:34 -08003384
Ingo Molnar54168ed2008-08-20 09:07:45 +02003385#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003386#endif /* CONFIG_SMP */
3387
3388/*
3389 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3390 * which implement the MSI or MSI-X Capability Structure.
3391 */
3392static struct irq_chip msi_chip = {
3393 .name = "PCI-MSI",
3394 .unmask = unmask_msi_irq,
3395 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003396 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003397#ifdef CONFIG_SMP
3398 .set_affinity = set_msi_irq_affinity,
3399#endif
3400 .retrigger = ioapic_retrigger_irq,
3401};
3402
Ingo Molnar54168ed2008-08-20 09:07:45 +02003403static struct irq_chip msi_ir_chip = {
3404 .name = "IR-PCI-MSI",
3405 .unmask = unmask_msi_irq,
3406 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303407#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003408 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003409#ifdef CONFIG_SMP
3410 .set_affinity = ir_set_msi_irq_affinity,
3411#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303412#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003413 .retrigger = ioapic_retrigger_irq,
3414};
3415
3416/*
3417 * Map the PCI dev to the corresponding remapping hardware unit
3418 * and allocate 'nvec' consecutive interrupt-remapping table entries
3419 * in it.
3420 */
3421static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3422{
3423 struct intel_iommu *iommu;
3424 int index;
3425
3426 iommu = map_dev_to_ir(dev);
3427 if (!iommu) {
3428 printk(KERN_ERR
3429 "Unable to map PCI %s to iommu\n", pci_name(dev));
3430 return -ENOENT;
3431 }
3432
3433 index = alloc_irte(iommu, irq, nvec);
3434 if (index < 0) {
3435 printk(KERN_ERR
3436 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003437 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003438 return -ENOSPC;
3439 }
3440 return index;
3441}
Yinghai Lu1d025192008-08-19 20:50:34 -07003442
Yinghai Lu3145e942008-12-05 18:58:34 -08003443static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003444{
3445 int ret;
3446 struct msi_msg msg;
3447
3448 ret = msi_compose_msg(dev, irq, &msg);
3449 if (ret < 0)
3450 return ret;
3451
Yinghai Lu3145e942008-12-05 18:58:34 -08003452 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003453 write_msi_msg(irq, &msg);
3454
Ingo Molnar54168ed2008-08-20 09:07:45 +02003455 if (irq_remapped(irq)) {
3456 struct irq_desc *desc = irq_to_desc(irq);
3457 /*
3458 * irq migration in process context
3459 */
3460 desc->status |= IRQ_MOVE_PCNTXT;
3461 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3462 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003463 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003464
Yinghai Luc81bba42008-09-25 11:53:11 -07003465 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3466
Yinghai Lu1d025192008-08-19 20:50:34 -07003467 return 0;
3468}
3469
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003470int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3471{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472 unsigned int irq;
3473 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003474 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003475 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003476 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003477 int index = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003478
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003479 /* x86 doesn't support multiple MSI yet */
3480 if (type == PCI_CAP_ID_MSI && nvec > 1)
3481 return 1;
3482
Yinghai Lube5d5352008-12-05 18:58:33 -08003483 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003484 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003485 list_for_each_entry(msidesc, &dev->msi_list, list) {
3486 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003487 if (irq == 0)
3488 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003489 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003490 if (!intr_remapping_enabled)
3491 goto no_ir;
3492
3493 if (!sub_handle) {
3494 /*
3495 * allocate the consecutive block of IRTE's
3496 * for 'nvec'
3497 */
3498 index = msi_alloc_irte(dev, irq, nvec);
3499 if (index < 0) {
3500 ret = index;
3501 goto error;
3502 }
3503 } else {
3504 iommu = map_dev_to_ir(dev);
3505 if (!iommu) {
3506 ret = -ENOENT;
3507 goto error;
3508 }
3509 /*
3510 * setup the mapping between the irq and the IRTE
3511 * base index, the sub_handle pointing to the
3512 * appropriate interrupt remap table entry.
3513 */
3514 set_irte_irq(irq, iommu, index, sub_handle);
3515 }
3516no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003517 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003518 if (ret < 0)
3519 goto error;
3520 sub_handle++;
3521 }
3522 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003523
3524error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003525 destroy_irq(irq);
3526 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003527}
3528
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003529void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003530{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003531 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003532}
3533
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003534#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003535#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003536static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003537{
Yinghai Lu3145e942008-12-05 18:58:34 -08003538 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003539 struct irq_cfg *cfg;
3540 struct msi_msg msg;
3541 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003542
Mike Travis22f65d32008-12-16 17:33:56 -08003543 dest = set_desc_affinity(desc, mask);
3544 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003545 return;
3546
Yinghai Lu3145e942008-12-05 18:58:34 -08003547 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003548
3549 dmar_msi_read(irq, &msg);
3550
3551 msg.data &= ~MSI_DATA_VECTOR_MASK;
3552 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3553 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3554 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3555
3556 dmar_msi_write(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003557}
Yinghai Lu3145e942008-12-05 18:58:34 -08003558
Ingo Molnar54168ed2008-08-20 09:07:45 +02003559#endif /* CONFIG_SMP */
3560
3561struct irq_chip dmar_msi_type = {
3562 .name = "DMAR_MSI",
3563 .unmask = dmar_msi_unmask,
3564 .mask = dmar_msi_mask,
3565 .ack = ack_apic_edge,
3566#ifdef CONFIG_SMP
3567 .set_affinity = dmar_msi_set_affinity,
3568#endif
3569 .retrigger = ioapic_retrigger_irq,
3570};
3571
3572int arch_setup_dmar_msi(unsigned int irq)
3573{
3574 int ret;
3575 struct msi_msg msg;
3576
3577 ret = msi_compose_msg(NULL, irq, &msg);
3578 if (ret < 0)
3579 return ret;
3580 dmar_msi_write(irq, &msg);
3581 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3582 "edge");
3583 return 0;
3584}
3585#endif
3586
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003587#ifdef CONFIG_HPET_TIMER
3588
3589#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003590static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003591{
Yinghai Lu3145e942008-12-05 18:58:34 -08003592 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003593 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003594 struct msi_msg msg;
3595 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003596
Mike Travis22f65d32008-12-16 17:33:56 -08003597 dest = set_desc_affinity(desc, mask);
3598 if (dest == BAD_APICID)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003599 return;
3600
Yinghai Lu3145e942008-12-05 18:58:34 -08003601 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003602
3603 hpet_msi_read(irq, &msg);
3604
3605 msg.data &= ~MSI_DATA_VECTOR_MASK;
3606 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3607 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3608 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3609
3610 hpet_msi_write(irq, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003611}
Yinghai Lu3145e942008-12-05 18:58:34 -08003612
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003613#endif /* CONFIG_SMP */
3614
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003615static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003616 .name = "HPET_MSI",
3617 .unmask = hpet_msi_unmask,
3618 .mask = hpet_msi_mask,
3619 .ack = ack_apic_edge,
3620#ifdef CONFIG_SMP
3621 .set_affinity = hpet_msi_set_affinity,
3622#endif
3623 .retrigger = ioapic_retrigger_irq,
3624};
3625
3626int arch_setup_hpet_msi(unsigned int irq)
3627{
3628 int ret;
3629 struct msi_msg msg;
3630
3631 ret = msi_compose_msg(NULL, irq, &msg);
3632 if (ret < 0)
3633 return ret;
3634
3635 hpet_msi_write(irq, &msg);
3636 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3637 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003638
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003639 return 0;
3640}
3641#endif
3642
Ingo Molnar54168ed2008-08-20 09:07:45 +02003643#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003644/*
3645 * Hypertransport interrupt support
3646 */
3647#ifdef CONFIG_HT_IRQ
3648
3649#ifdef CONFIG_SMP
3650
Yinghai Lu497c9a12008-08-19 20:50:28 -07003651static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003652{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003653 struct ht_irq_msg msg;
3654 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003655
Yinghai Lu497c9a12008-08-19 20:50:28 -07003656 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003657 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003658
Yinghai Lu497c9a12008-08-19 20:50:28 -07003659 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003660 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003661
Eric W. Biedermanec683072006-11-08 17:44:57 -08003662 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003663}
3664
Mike Travis22f65d32008-12-16 17:33:56 -08003665static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003666{
Yinghai Lu3145e942008-12-05 18:58:34 -08003667 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003668 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003669 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003670
Mike Travis22f65d32008-12-16 17:33:56 -08003671 dest = set_desc_affinity(desc, mask);
3672 if (dest == BAD_APICID)
Yinghai Lu497c9a12008-08-19 20:50:28 -07003673 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003674
Yinghai Lu3145e942008-12-05 18:58:34 -08003675 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003676
Yinghai Lu497c9a12008-08-19 20:50:28 -07003677 target_ht_irq(irq, dest, cfg->vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003678}
Yinghai Lu3145e942008-12-05 18:58:34 -08003679
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003680#endif
3681
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003682static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003683 .name = "PCI-HT",
3684 .mask = mask_ht_irq,
3685 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003686 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003687#ifdef CONFIG_SMP
3688 .set_affinity = set_ht_irq_affinity,
3689#endif
3690 .retrigger = ioapic_retrigger_irq,
3691};
3692
3693int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3694{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003695 struct irq_cfg *cfg;
3696 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003697
Jan Beulichf1182632009-01-14 12:27:35 +00003698 if (disable_apic)
3699 return -ENXIO;
3700
Yinghai Lu3145e942008-12-05 18:58:34 -08003701 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003702 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003703 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003704 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003705 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003706
Ingo Molnardebccb32009-01-28 15:20:18 +01003707 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3708 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003709
Eric W. Biedermanec683072006-11-08 17:44:57 -08003710 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003711
Eric W. Biedermanec683072006-11-08 17:44:57 -08003712 msg.address_lo =
3713 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003714 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003715 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003716 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003717 HT_IRQ_LOW_DM_PHYSICAL :
3718 HT_IRQ_LOW_DM_LOGICAL) |
3719 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003720 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003721 HT_IRQ_LOW_MT_FIXED :
3722 HT_IRQ_LOW_MT_ARBITRATED) |
3723 HT_IRQ_LOW_IRQ_MASKED;
3724
Eric W. Biedermanec683072006-11-08 17:44:57 -08003725 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003726
Ingo Molnara460e742006-10-17 00:10:03 -07003727 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3728 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003729
3730 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003731 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003732 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003733}
3734#endif /* CONFIG_HT_IRQ */
3735
Nick Piggin03b48632009-01-20 04:36:04 +01003736#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003737/*
3738 * Re-target the irq to the specified CPU and enable the specified MMR located
3739 * on the specified blade to allow the sending of MSIs to the specified CPU.
3740 */
3741int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3742 unsigned long mmr_offset)
3743{
Mike Travis22f65d32008-12-16 17:33:56 -08003744 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003745 struct irq_cfg *cfg;
3746 int mmr_pnode;
3747 unsigned long mmr_value;
3748 struct uv_IO_APIC_route_entry *entry;
3749 unsigned long flags;
3750 int err;
3751
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003752 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3753
Yinghai Lu3145e942008-12-05 18:58:34 -08003754 cfg = irq_cfg(irq);
3755
Mike Travise7986732008-12-16 17:33:52 -08003756 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003757 if (err != 0)
3758 return err;
3759
3760 spin_lock_irqsave(&vector_lock, flags);
3761 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3762 irq_name);
3763 spin_unlock_irqrestore(&vector_lock, flags);
3764
Dean Nelson4173a0e2008-10-02 12:18:21 -05003765 mmr_value = 0;
3766 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003767 entry->vector = cfg->vector;
3768 entry->delivery_mode = apic->irq_delivery_mode;
3769 entry->dest_mode = apic->irq_dest_mode;
3770 entry->polarity = 0;
3771 entry->trigger = 0;
3772 entry->mask = 0;
3773 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003774
3775 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3776 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3777
3778 return irq;
3779}
3780
3781/*
3782 * Disable the specified MMR located on the specified blade so that MSIs are
3783 * longer allowed to be sent.
3784 */
3785void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3786{
3787 unsigned long mmr_value;
3788 struct uv_IO_APIC_route_entry *entry;
3789 int mmr_pnode;
3790
Cyrill Gorcunov1cbac972009-05-02 13:39:56 +04003791 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3792
Dean Nelson4173a0e2008-10-02 12:18:21 -05003793 mmr_value = 0;
3794 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003795 entry->mask = 1;
3796
3797 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3798 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3799}
3800#endif /* CONFIG_X86_64 */
3801
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003802int __init io_apic_get_redir_entries (int ioapic)
3803{
3804 union IO_APIC_reg_01 reg_01;
3805 unsigned long flags;
3806
3807 spin_lock_irqsave(&ioapic_lock, flags);
3808 reg_01.raw = io_apic_read(ioapic, 1);
3809 spin_unlock_irqrestore(&ioapic_lock, flags);
3810
3811 return reg_01.bits.entries;
3812}
3813
Yinghai Lube5d5352008-12-05 18:58:33 -08003814void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003815{
Yinghai Lube5d5352008-12-05 18:58:33 -08003816 int nr = 0;
3817
Yinghai Lucc6c5002009-02-08 16:18:03 -08003818 nr = acpi_probe_gsi();
3819 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003820 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003821 } else {
3822 /* for acpi=off or acpi is not compiled in */
3823 int idx;
3824
3825 nr = 0;
3826 for (idx = 0; idx < nr_ioapics; idx++)
3827 nr += io_apic_get_redir_entries(idx) + 1;
3828
3829 if (nr > nr_irqs_gsi)
3830 nr_irqs_gsi = nr;
3831 }
3832
3833 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003834}
3835
Yinghai Lu4a046d12009-01-12 17:39:24 -08003836#ifdef CONFIG_SPARSE_IRQ
3837int __init arch_probe_nr_irqs(void)
3838{
3839 int nr;
3840
Yinghai Luf1ee5542009-02-08 16:18:03 -08003841 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3842 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003843
Yinghai Luf1ee5542009-02-08 16:18:03 -08003844 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3845#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3846 /*
3847 * for MSI and HT dyn irq
3848 */
3849 nr += nr_irqs_gsi * 16;
3850#endif
3851 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003852 nr_irqs = nr;
3853
3854 return 0;
3855}
3856#endif
3857
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003859 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 -------------------------------------------------------------------------- */
3861
Len Brown888ba6c2005-08-24 12:07:20 -04003862#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Ingo Molnar54168ed2008-08-20 09:07:45 +02003864#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003865int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866{
3867 union IO_APIC_reg_00 reg_00;
3868 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3869 physid_mask_t tmp;
3870 unsigned long flags;
3871 int i = 0;
3872
3873 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003874 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3875 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003877 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3879 * advantage of new APIC bus architecture.
3880 */
3881
3882 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003883 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
3885 spin_lock_irqsave(&ioapic_lock, flags);
3886 reg_00.raw = io_apic_read(ioapic, 0);
3887 spin_unlock_irqrestore(&ioapic_lock, flags);
3888
3889 if (apic_id >= get_physical_broadcast()) {
3890 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3891 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3892 apic_id = reg_00.bits.ID;
3893 }
3894
3895 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003896 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 * 'stuck on smp_invalidate_needed IPI wait' messages.
3898 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003899 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
3901 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003902 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 break;
3904 }
3905
3906 if (i == get_physical_broadcast())
3907 panic("Max apic_id exceeded!\n");
3908
3909 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3910 "trying %d\n", ioapic, apic_id, i);
3911
3912 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Ingo Molnar80587142009-01-28 06:50:47 +01003915 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 physids_or(apic_id_map, apic_id_map, tmp);
3917
3918 if (reg_00.bits.ID != apic_id) {
3919 reg_00.bits.ID = apic_id;
3920
3921 spin_lock_irqsave(&ioapic_lock, flags);
3922 io_apic_write(ioapic, 0, reg_00.raw);
3923 reg_00.raw = io_apic_read(ioapic, 0);
3924 spin_unlock_irqrestore(&ioapic_lock, flags);
3925
3926 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003927 if (reg_00.bits.ID != apic_id) {
3928 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3929 return -1;
3930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 }
3932
3933 apic_printk(APIC_VERBOSE, KERN_INFO
3934 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3935
3936 return apic_id;
3937}
3938
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003939int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
3941 union IO_APIC_reg_01 reg_01;
3942 unsigned long flags;
3943
3944 spin_lock_irqsave(&ioapic_lock, flags);
3945 reg_01.raw = io_apic_read(ioapic, 1);
3946 spin_unlock_irqrestore(&ioapic_lock, flags);
3947
3948 return reg_01.bits.version;
3949}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003950#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Ingo Molnar54168ed2008-08-20 09:07:45 +02003952int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003954 struct irq_desc *desc;
3955 struct irq_cfg *cfg;
3956 int cpu = boot_cpu_id;
3957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003959 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 ioapic);
3961 return -EINVAL;
3962 }
3963
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003964 desc = irq_to_desc_alloc_cpu(irq, cpu);
3965 if (!desc) {
3966 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3967 return 0;
3968 }
3969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 * IRQs < 16 are already in the irq_2_pin[] map
3972 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003973 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003974 cfg = desc->chip_data;
Yinghai Lu3145e942008-12-05 18:58:34 -08003975 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Yinghai Lu3145e942008-12-05 18:58:34 -08003978 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
3980 return 0;
3981}
3982
Ingo Molnar54168ed2008-08-20 09:07:45 +02003983
Shaohua Li61fd47e2007-11-17 01:05:28 -05003984int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3985{
3986 int i;
3987
3988 if (skip_ioapic_setup)
3989 return -1;
3990
3991 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05303992 if (mp_irqs[i].irqtype == mp_INT &&
3993 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003994 break;
3995 if (i >= mp_irq_entries)
3996 return -1;
3997
3998 *trigger = irq_trigger(i);
3999 *polarity = irq_polarity(i);
4000 return 0;
4001}
4002
Len Brown888ba6c2005-08-24 12:07:20 -04004003#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004004
Yinghai Lu497c9a12008-08-19 20:50:28 -07004005/*
4006 * This function currently is only a helper for the i386 smp boot process where
4007 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004008 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004009 */
4010#ifdef CONFIG_SMP
4011void __init setup_ioapic_dest(void)
4012{
4013 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004014 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004015 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08004016 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004017
4018 if (skip_ioapic_setup == 1)
4019 return;
4020
4021 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4022 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4023 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4024 if (irq_entry == -1)
4025 continue;
4026 irq = pin_2_irq(irq_entry, ioapic, pin);
4027
4028 /* setup_IO_APIC_irqs could fail to get vector for some device
4029 * when you have too many devices, because at that time only boot
4030 * cpu is online.
4031 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004032 desc = irq_to_desc(irq);
4033 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004034 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08004035 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07004036 irq_trigger(irq_entry),
4037 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004038 continue;
4039
4040 }
4041
4042 /*
4043 * Honour affinities which have been set in early boot
4044 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004045 if (desc->status &
4046 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travis7f7ace02009-01-10 21:58:08 -08004047 mask = desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004048 else
Ingo Molnarfe402e12009-01-28 04:32:51 +01004049 mask = apic->target_cpus();
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004050
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004051 if (intr_remapping_enabled)
Yinghai Lu3145e942008-12-05 18:58:34 -08004052 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004053 else
Yinghai Lu3145e942008-12-05 18:58:34 -08004054 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004055 }
4056
4057 }
4058}
4059#endif
4060
Ingo Molnar54168ed2008-08-20 09:07:45 +02004061#define IOAPIC_RESOURCE_NAME_SIZE 11
4062
4063static struct resource *ioapic_resources;
4064
4065static struct resource * __init ioapic_setup_resources(void)
4066{
4067 unsigned long n;
4068 struct resource *res;
4069 char *mem;
4070 int i;
4071
4072 if (nr_ioapics <= 0)
4073 return NULL;
4074
4075 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4076 n *= nr_ioapics;
4077
4078 mem = alloc_bootmem(n);
4079 res = (void *)mem;
4080
4081 if (mem != NULL) {
4082 mem += sizeof(struct resource) * nr_ioapics;
4083
4084 for (i = 0; i < nr_ioapics; i++) {
4085 res[i].name = mem;
4086 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4087 sprintf(mem, "IOAPIC %u", i);
4088 mem += IOAPIC_RESOURCE_NAME_SIZE;
4089 }
4090 }
4091
4092 ioapic_resources = res;
4093
4094 return res;
4095}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004096
Yinghai Luf3294a32008-06-27 01:41:56 -07004097void __init ioapic_init_mappings(void)
4098{
4099 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004100 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004101 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004102
Ingo Molnar54168ed2008-08-20 09:07:45 +02004103 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004104 for (i = 0; i < nr_ioapics; i++) {
4105 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e6d2009-01-12 17:46:17 +05304106 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004107#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004108 if (!ioapic_phys) {
4109 printk(KERN_ERR
4110 "WARNING: bogus zero IO-APIC "
4111 "address found in MPTABLE, "
4112 "disabling IO/APIC support!\n");
4113 smp_found_config = 0;
4114 skip_ioapic_setup = 1;
4115 goto fake_ioapic_page;
4116 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004117#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004118 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004119#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004120fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004121#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004122 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004123 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004124 ioapic_phys = __pa(ioapic_phys);
4125 }
4126 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004127 apic_printk(APIC_VERBOSE,
4128 "mapped IOAPIC to %08lx (%08lx)\n",
4129 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004130 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004131
Ingo Molnar54168ed2008-08-20 09:07:45 +02004132 if (ioapic_res != NULL) {
4133 ioapic_res->start = ioapic_phys;
4134 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4135 ioapic_res++;
4136 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004137 }
4138}
4139
Ingo Molnar54168ed2008-08-20 09:07:45 +02004140static int __init ioapic_insert_resources(void)
4141{
4142 int i;
4143 struct resource *r = ioapic_resources;
4144
4145 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004146 if (nr_ioapics > 0) {
4147 printk(KERN_ERR
4148 "IO APIC resources couldn't be allocated.\n");
4149 return -1;
4150 }
4151 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004152 }
4153
4154 for (i = 0; i < nr_ioapics; i++) {
4155 insert_resource(&iomem_resource, r);
4156 r++;
4157 }
4158
4159 return 0;
4160}
4161
4162/* Insert the IO APIC resources after PCI initialization has occured to handle
4163 * IO APICS that are mapped in on a BAR in PCI space. */
4164late_initcall(ioapic_insert_resources);