blob: b18a7734d689fb501724e56ed61cd3c6fbc7e728 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050062#include <asm/uv/uv_hub.h>
63#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar7b6aa332009-02-17 13:58:15 +010065#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067#define __apicdebuginit(type) static type __init
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020070 * Is the SiS APIC rmw bug present ?
71 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
73int sis_apic_bug = -1;
74
Yinghai Luefa25592008-08-19 20:50:36 -070075static DEFINE_SPINLOCK(ioapic_lock);
76static DEFINE_SPINLOCK(vector_lock);
77
Yinghai Luefa25592008-08-19 20:50:36 -070078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * # of IRQ routing registers
80 */
81int nr_ioapic_registers[MAX_IO_APICS];
82
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040083/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053084struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040085int nr_ioapics;
86
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040087/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053088struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040089
90/* # of MP IRQ source entries */
91int mp_irq_entries;
92
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040093#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
94int mp_bus_id_to_type[MAX_MP_BUSSES];
95#endif
96
97DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
98
Yinghai Luefa25592008-08-19 20:50:36 -070099int skip_ioapic_setup;
100
Ingo Molnar65a4e572009-01-31 03:36:17 +0100101void arch_disable_smp_support(void)
102{
103#ifdef CONFIG_PCI
104 noioapicquirk = 1;
105 noioapicreroute = -1;
106#endif
107 skip_ioapic_setup = 1;
108}
109
Ingo Molnar54168ed2008-08-20 09:07:45 +0200110static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700111{
112 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100113 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700114 return 0;
115}
116early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200117
Yinghai Lu0f978f42008-08-19 20:50:26 -0700118struct irq_pin_list;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * This is performance-critical, we want to do it O(1)
122 *
123 * the indexing order of this array favors 1:1 mappings
124 * between pins and IRQs.
125 */
126
Yinghai Lu0f978f42008-08-19 20:50:26 -0700127struct irq_pin_list {
128 int apic, pin;
129 struct irq_pin_list *next;
130};
Yinghai Lu301e6192008-08-19 20:50:02 -0700131
Yinghai 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;
392};
393
394static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
395{
396 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530397 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800398}
399
400static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
401{
402 struct io_apic __iomem *io_apic = io_apic_base(apic);
403 writel(reg, &io_apic->index);
404 return readl(&io_apic->data);
405}
406
407static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
408{
409 struct io_apic __iomem *io_apic = io_apic_base(apic);
410 writel(reg, &io_apic->index);
411 writel(value, &io_apic->data);
412}
413
414/*
415 * Re-write a value: to be used for read-modify-write
416 * cycles where the read already set up the index register.
417 *
418 * Older SiS APIC requires we rewrite the index register
419 */
420static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
421{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200422 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200423
424 if (sis_apic_bug)
425 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800426 writel(value, &io_apic->data);
427}
428
Yinghai Lu3145e942008-12-05 18:58:34 -0800429static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700430{
431 struct irq_pin_list *entry;
432 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700433
434 spin_lock_irqsave(&ioapic_lock, flags);
435 entry = cfg->irq_2_pin;
436 for (;;) {
437 unsigned int reg;
438 int pin;
439
440 if (!entry)
441 break;
442 pin = entry->pin;
443 reg = io_apic_read(entry->apic, 0x10 + pin*2);
444 /* Is the remote IRR bit set? */
445 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
446 spin_unlock_irqrestore(&ioapic_lock, flags);
447 return true;
448 }
449 if (!entry->next)
450 break;
451 entry = entry->next;
452 }
453 spin_unlock_irqrestore(&ioapic_lock, flags);
454
455 return false;
456}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700457
Andi Kleencf4c6a22006-09-26 10:52:30 +0200458union entry_union {
459 struct { u32 w1, w2; };
460 struct IO_APIC_route_entry entry;
461};
462
463static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
464{
465 union entry_union eu;
466 unsigned long flags;
467 spin_lock_irqsave(&ioapic_lock, flags);
468 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
469 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
470 spin_unlock_irqrestore(&ioapic_lock, flags);
471 return eu.entry;
472}
473
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800474/*
475 * When we write a new IO APIC routing entry, we need to write the high
476 * word first! If the mask bit in the low word is clear, we will enable
477 * the interrupt, and we need to make sure the entry is fully populated
478 * before that happens.
479 */
Andi Kleend15512f2006-12-07 02:14:07 +0100480static void
481__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
482{
483 union entry_union eu;
484 eu.entry = e;
485 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
486 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
487}
488
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800489void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200490{
491 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200492 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100493 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800494 spin_unlock_irqrestore(&ioapic_lock, flags);
495}
496
497/*
498 * When we mask an IO APIC routing entry, we need to write the low
499 * word first, in order to set the mask bit before we change the
500 * high bits!
501 */
502static void ioapic_mask_entry(int apic, int pin)
503{
504 unsigned long flags;
505 union entry_union eu = { .entry.mask = 1 };
506
507 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200508 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
509 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
510 spin_unlock_irqrestore(&ioapic_lock, flags);
511}
512
Yinghai Lu497c9a12008-08-19 20:50:28 -0700513#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -0800514static void send_cleanup_vector(struct irq_cfg *cfg)
515{
516 cpumask_var_t cleanup_mask;
517
518 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
519 unsigned int i;
520 cfg->move_cleanup_count = 0;
521 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
522 cfg->move_cleanup_count++;
523 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
Ingo Molnardac5f412009-01-28 15:42:24 +0100524 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800525 } else {
526 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
527 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
Ingo Molnardac5f412009-01-28 15:42:24 +0100528 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800529 free_cpumask_var(cleanup_mask);
530 }
531 cfg->move_in_progress = 0;
532}
533
Yinghai Lu3145e942008-12-05 18:58:34 -0800534static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700535{
536 int apic, pin;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700537 struct irq_pin_list *entry;
Yinghai Lu3145e942008-12-05 18:58:34 -0800538 u8 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700539
Yinghai Lu497c9a12008-08-19 20:50:28 -0700540 entry = cfg->irq_2_pin;
541 for (;;) {
542 unsigned int reg;
543
544 if (!entry)
545 break;
546
547 apic = entry->apic;
548 pin = entry->pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200549#ifdef CONFIG_INTR_REMAP
550 /*
551 * With interrupt-remapping, destination information comes
552 * from interrupt-remapping table entry.
553 */
554 if (!irq_remapped(irq))
555 io_apic_write(apic, 0x11 + pin*2, dest);
556#else
Yinghai Lu497c9a12008-08-19 20:50:28 -0700557 io_apic_write(apic, 0x11 + pin*2, dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200558#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -0700559 reg = io_apic_read(apic, 0x10 + pin*2);
560 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
561 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200562 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700563 if (!entry->next)
564 break;
565 entry = entry->next;
566 }
567}
Yinghai Luefa25592008-08-19 20:50:36 -0700568
Mike Travise7986732008-12-16 17:33:52 -0800569static int
570assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
Yinghai Luefa25592008-08-19 20:50:36 -0700571
Mike Travis22f65d32008-12-16 17:33:56 -0800572/*
Ingo Molnardebccb32009-01-28 15:20:18 +0100573 * Either sets desc->affinity to a valid value, and returns
574 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
575 * leaves desc->affinity untouched.
Mike Travis22f65d32008-12-16 17:33:56 -0800576 */
577static unsigned int
578set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700579{
580 struct irq_cfg *cfg;
Yinghai Lu3145e942008-12-05 18:58:34 -0800581 unsigned int irq;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700582
Rusty Russell0de26522008-12-13 21:20:26 +1030583 if (!cpumask_intersects(mask, cpu_online_mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800584 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700585
Yinghai Lu3145e942008-12-05 18:58:34 -0800586 irq = desc->irq;
587 cfg = desc->chip_data;
588 if (assign_irq_vector(irq, cfg, mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800589 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700590
Mike Travis7f7ace02009-01-10 21:58:08 -0800591 cpumask_and(desc->affinity, cfg->domain, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -0800592 set_extra_move_desc(desc, mask);
Ingo Molnardebccb32009-01-28 15:20:18 +0100593
594 return apic->cpu_mask_to_apicid_and(desc->affinity, cpu_online_mask);
Mike Travis22f65d32008-12-16 17:33:56 -0800595}
Yinghai Lu3145e942008-12-05 18:58:34 -0800596
Mike Travis22f65d32008-12-16 17:33:56 -0800597static void
598set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700599{
600 struct irq_cfg *cfg;
601 unsigned long flags;
602 unsigned int dest;
Mike Travis22f65d32008-12-16 17:33:56 -0800603 unsigned int irq;
604
605 irq = desc->irq;
606 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700607
608 spin_lock_irqsave(&ioapic_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -0800609 dest = set_desc_affinity(desc, mask);
610 if (dest != BAD_APICID) {
611 /* Only the high 8 bits are valid. */
612 dest = SET_APIC_LOGICAL_ID(dest);
613 __target_IO_APIC_irq(irq, dest, cfg);
614 }
Yinghai Lu497c9a12008-08-19 20:50:28 -0700615 spin_unlock_irqrestore(&ioapic_lock, flags);
616}
Yinghai Lu3145e942008-12-05 18:58:34 -0800617
Mike Travis22f65d32008-12-16 17:33:56 -0800618static void
619set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800620{
Yinghai Lu497c9a12008-08-19 20:50:28 -0700621 struct irq_desc *desc;
622
Yinghai Lu497c9a12008-08-19 20:50:28 -0700623 desc = irq_to_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800624
625 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700626}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700627#endif /* CONFIG_SMP */
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/*
630 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
631 * shared ISA-space IRQs, so we have to support them. We are super
632 * fast in the common case, and fast for shared ISA-space IRQs.
633 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800634static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700636 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Yinghai Lu0f978f42008-08-19 20:50:26 -0700638 entry = cfg->irq_2_pin;
639 if (!entry) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800640 entry = get_one_free_irq_2_pin(cpu);
641 if (!entry) {
642 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
643 apic, pin);
644 return;
645 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700646 cfg->irq_2_pin = entry;
647 entry->apic = apic;
648 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700649 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700651
652 while (entry->next) {
653 /* not again, please */
654 if (entry->apic == apic && entry->pin == pin)
655 return;
656
657 entry = entry->next;
658 }
659
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800660 entry->next = get_one_free_irq_2_pin(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700661 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 entry->apic = apic;
663 entry->pin = pin;
664}
665
666/*
667 * Reroute an IRQ to a different pin.
668 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800669static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int oldapic, int oldpin,
671 int newapic, int newpin)
672{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700673 struct irq_pin_list *entry = cfg->irq_2_pin;
674 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Yinghai Lu0f978f42008-08-19 20:50:26 -0700676 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (entry->apic == oldapic && entry->pin == oldpin) {
678 entry->apic = newapic;
679 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700680 replaced = 1;
681 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700683 }
684 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700686
687 /* why? call replace before add? */
688 if (!replaced)
Yinghai Lu3145e942008-12-05 18:58:34 -0800689 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Yinghai Lu3145e942008-12-05 18:58:34 -0800692static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400693 int mask_and, int mask_or,
694 void (*final)(struct irq_pin_list *entry))
695{
696 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400697 struct irq_pin_list *entry;
698
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400699 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
700 unsigned int reg;
701 pin = entry->pin;
702 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
703 reg &= mask_and;
704 reg |= mask_or;
705 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
706 if (final)
707 final(entry);
708 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700709}
710
Yinghai Lu3145e942008-12-05 18:58:34 -0800711static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400712{
Yinghai Lu3145e942008-12-05 18:58:34 -0800713 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400714}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700715
716#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530717static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700718{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400719 /*
720 * Synchronize the IO-APIC and the CPU by doing
721 * a dummy read from the IO-APIC
722 */
723 struct io_apic __iomem *io_apic;
724 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700725 readl(&io_apic->data);
726}
727
Yinghai Lu3145e942008-12-05 18:58:34 -0800728static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400729{
Yinghai Lu3145e942008-12-05 18:58:34 -0800730 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400731}
732#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800733static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400734{
Yinghai Lu3145e942008-12-05 18:58:34 -0800735 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400736}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700737
Yinghai Lu3145e942008-12-05 18:58:34 -0800738static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400739{
Yinghai Lu3145e942008-12-05 18:58:34 -0800740 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400741 IO_APIC_REDIR_MASKED, NULL);
742}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700743
Yinghai Lu3145e942008-12-05 18:58:34 -0800744static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400745{
Yinghai Lu3145e942008-12-05 18:58:34 -0800746 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400747 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
748}
749#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700750
Yinghai Lu3145e942008-12-05 18:58:34 -0800751static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Yinghai Lu3145e942008-12-05 18:58:34 -0800753 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 unsigned long flags;
755
Yinghai Lu3145e942008-12-05 18:58:34 -0800756 BUG_ON(!cfg);
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800759 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 spin_unlock_irqrestore(&ioapic_lock, flags);
761}
762
Yinghai Lu3145e942008-12-05 18:58:34 -0800763static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Yinghai Lu3145e942008-12-05 18:58:34 -0800765 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 unsigned long flags;
767
768 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800769 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 spin_unlock_irqrestore(&ioapic_lock, flags);
771}
772
Yinghai Lu3145e942008-12-05 18:58:34 -0800773static void mask_IO_APIC_irq(unsigned int irq)
774{
775 struct irq_desc *desc = irq_to_desc(irq);
776
777 mask_IO_APIC_irq_desc(desc);
778}
779static void unmask_IO_APIC_irq(unsigned int irq)
780{
781 struct irq_desc *desc = irq_to_desc(irq);
782
783 unmask_IO_APIC_irq_desc(desc);
784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
787{
788 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200791 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (entry.delivery_mode == dest_SMI)
793 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /*
795 * Disable it in the IO-APIC irq-routing table:
796 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800797 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Ingo Molnar54168ed2008-08-20 09:07:45 +0200800static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 int apic, pin;
803
804 for (apic = 0; apic < nr_ioapics; apic++)
805 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
806 clear_IO_APIC_pin(apic, pin);
807}
808
Ingo Molnar54168ed2008-08-20 09:07:45 +0200809#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/*
811 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
812 * specific CPU-side IRQs.
813 */
814
815#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800816static int pirq_entries[MAX_PIRQS] = {
817 [0 ... MAX_PIRQS - 1] = -1
818};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820static int __init ioapic_pirq_setup(char *str)
821{
822 int i, max;
823 int ints[MAX_PIRQS+1];
824
825 get_options(str, ARRAY_SIZE(ints), ints);
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 apic_printk(APIC_VERBOSE, KERN_INFO
828 "PIRQ redirection, working around broken MP-BIOS.\n");
829 max = MAX_PIRQS;
830 if (ints[0] < MAX_PIRQS)
831 max = ints[0];
832
833 for (i = 0; i < max; i++) {
834 apic_printk(APIC_VERBOSE, KERN_DEBUG
835 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
836 /*
837 * PIRQs are mapped upside down, usually.
838 */
839 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
840 }
841 return 1;
842}
843
844__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200845#endif /* CONFIG_X86_32 */
846
847#ifdef CONFIG_INTR_REMAP
848/* I/O APIC RTE contents at the OS boot up */
849static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
850
851/*
852 * Saves and masks all the unmasked IO-APIC RTE's
853 */
854int save_mask_IO_APIC_setup(void)
855{
856 union IO_APIC_reg_01 reg_01;
857 unsigned long flags;
858 int apic, pin;
859
860 /*
861 * The number of IO-APIC IRQ registers (== #pins):
862 */
863 for (apic = 0; apic < nr_ioapics; apic++) {
864 spin_lock_irqsave(&ioapic_lock, flags);
865 reg_01.raw = io_apic_read(apic, 1);
866 spin_unlock_irqrestore(&ioapic_lock, flags);
867 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
868 }
869
870 for (apic = 0; apic < nr_ioapics; apic++) {
871 early_ioapic_entries[apic] =
872 kzalloc(sizeof(struct IO_APIC_route_entry) *
873 nr_ioapic_registers[apic], GFP_KERNEL);
874 if (!early_ioapic_entries[apic])
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400875 goto nomem;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200876 }
877
878 for (apic = 0; apic < nr_ioapics; apic++)
879 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
880 struct IO_APIC_route_entry entry;
881
882 entry = early_ioapic_entries[apic][pin] =
883 ioapic_read_entry(apic, pin);
884 if (!entry.mask) {
885 entry.mask = 1;
886 ioapic_write_entry(apic, pin, entry);
887 }
888 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400889
Ingo Molnar54168ed2008-08-20 09:07:45 +0200890 return 0;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400891
892nomem:
Cyrill Gorcunovc1370b42008-09-23 23:00:02 +0400893 while (apic >= 0)
894 kfree(early_ioapic_entries[apic--]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400895 memset(early_ioapic_entries, 0,
896 ARRAY_SIZE(early_ioapic_entries));
897
898 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200899}
900
901void restore_IO_APIC_setup(void)
902{
903 int apic, pin;
904
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400905 for (apic = 0; apic < nr_ioapics; apic++) {
906 if (!early_ioapic_entries[apic])
907 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200908 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
909 ioapic_write_entry(apic, pin,
910 early_ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400911 kfree(early_ioapic_entries[apic]);
912 early_ioapic_entries[apic] = NULL;
913 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200914}
915
916void reinit_intr_remapped_IO_APIC(int intr_remapping)
917{
918 /*
919 * for now plain restore of previous settings.
920 * TBD: In the case of OS enabling interrupt-remapping,
921 * IO-APIC RTE's need to be setup to point to interrupt-remapping
922 * table entries. for now, do a plain restore, and wait for
923 * the setup_IO_APIC_irqs() to do proper initialization.
924 */
925 restore_IO_APIC_setup();
926}
927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929/*
930 * Find the IRQ entry number of a certain pin.
931 */
932static int find_irq_entry(int apic, int pin, int type)
933{
934 int i;
935
936 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530937 if (mp_irqs[i].irqtype == type &&
938 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
939 mp_irqs[i].dstapic == MP_APIC_ALL) &&
940 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return i;
942
943 return -1;
944}
945
946/*
947 * Find the pin to which IRQ[irq] (ISA) is connected
948 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800949static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 int i;
952
953 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530954 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300956 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530957 (mp_irqs[i].irqtype == type) &&
958 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530960 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962 return -1;
963}
964
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800965static int __init find_isa_irq_apic(int irq, int type)
966{
967 int i;
968
969 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530970 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800971
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300972 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530973 (mp_irqs[i].irqtype == type) &&
974 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800975 break;
976 }
977 if (i < mp_irq_entries) {
978 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200979 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530980 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800981 return apic;
982 }
983 }
984
985 return -1;
986}
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988/*
989 * Find a specific PCI IRQ entry.
990 * Not an __init, possibly needed by modules
991 */
992static int pin_2_irq(int idx, int apic, int pin);
993
994int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
995{
996 int apic, i, best_guess = -1;
997
Ingo Molnar54168ed2008-08-20 09:07:45 +0200998 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
999 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +04001000 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001001 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return -1;
1003 }
1004 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301005 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 for (apic = 0; apic < nr_ioapics; apic++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301008 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1009 mp_irqs[i].dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011
Alexey Starikovskiy47cab822008-03-20 14:54:30 +03001012 if (!test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301013 !mp_irqs[i].irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 (bus == lbus) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301015 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1016 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (!(apic || IO_APIC_IRQ(irq)))
1019 continue;
1020
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301021 if (pin == (mp_irqs[i].srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return irq;
1023 /*
1024 * Use the first all-but-pin matching entry as a
1025 * best-guess fuzzy result for broken mptables.
1026 */
1027 if (best_guess < 0)
1028 best_guess = irq;
1029 }
1030 }
1031 return best_guess;
1032}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001033
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001034EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001036#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
1038 * EISA Edge/Level control register, ELCR
1039 */
1040static int EISA_ELCR(unsigned int irq)
1041{
Yinghai Lu99d093d2008-12-05 18:58:32 -08001042 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 unsigned int port = 0x4d0 + (irq >> 3);
1044 return (inb(port) >> (irq & 7)) & 1;
1045 }
1046 apic_printk(APIC_VERBOSE, KERN_INFO
1047 "Broken MPtable reports ISA irq %d\n", irq);
1048 return 0;
1049}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001050
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001053/* ISA interrupts are always polarity zero edge triggered,
1054 * when listed as conforming in the MP table. */
1055
1056#define default_ISA_trigger(idx) (0)
1057#define default_ISA_polarity(idx) (0)
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/* EISA interrupts are always polarity zero and can be edge or level
1060 * trigger depending on the ELCR value. If an interrupt is listed as
1061 * EISA conforming in the MP table, that means its trigger type must
1062 * be read in from the ELCR */
1063
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301064#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001065#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067/* PCI interrupts are always polarity one level triggered,
1068 * when listed as conforming in the MP table. */
1069
1070#define default_PCI_trigger(idx) (1)
1071#define default_PCI_polarity(idx) (1)
1072
1073/* MCA interrupts are always polarity zero level triggered,
1074 * when listed as conforming in the MP table. */
1075
1076#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001077#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Shaohua Li61fd47e2007-11-17 01:05:28 -05001079static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301081 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 int polarity;
1083
1084 /*
1085 * Determine IRQ line polarity (high active or low active):
1086 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301087 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001089 case 0: /* conforms, ie. bus-type dependent polarity */
1090 if (test_bit(bus, mp_bus_not_pci))
1091 polarity = default_ISA_polarity(idx);
1092 else
1093 polarity = default_PCI_polarity(idx);
1094 break;
1095 case 1: /* high active */
1096 {
1097 polarity = 0;
1098 break;
1099 }
1100 case 2: /* reserved */
1101 {
1102 printk(KERN_WARNING "broken BIOS!!\n");
1103 polarity = 1;
1104 break;
1105 }
1106 case 3: /* low active */
1107 {
1108 polarity = 1;
1109 break;
1110 }
1111 default: /* invalid */
1112 {
1113 printk(KERN_WARNING "broken BIOS!!\n");
1114 polarity = 1;
1115 break;
1116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118 return polarity;
1119}
1120
1121static int MPBIOS_trigger(int idx)
1122{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301123 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 int trigger;
1125
1126 /*
1127 * Determine IRQ trigger mode (edge or level sensitive):
1128 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301129 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001131 case 0: /* conforms, ie. bus-type dependent */
1132 if (test_bit(bus, mp_bus_not_pci))
1133 trigger = default_ISA_trigger(idx);
1134 else
1135 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001136#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001137 switch (mp_bus_id_to_type[bus]) {
1138 case MP_BUS_ISA: /* ISA pin */
1139 {
1140 /* set before the switch */
1141 break;
1142 }
1143 case MP_BUS_EISA: /* EISA pin */
1144 {
1145 trigger = default_EISA_trigger(idx);
1146 break;
1147 }
1148 case MP_BUS_PCI: /* PCI pin */
1149 {
1150 /* set before the switch */
1151 break;
1152 }
1153 case MP_BUS_MCA: /* MCA pin */
1154 {
1155 trigger = default_MCA_trigger(idx);
1156 break;
1157 }
1158 default:
1159 {
1160 printk(KERN_WARNING "broken BIOS!!\n");
1161 trigger = 1;
1162 break;
1163 }
1164 }
1165#endif
1166 break;
1167 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001168 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001169 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001170 break;
1171 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001172 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001173 {
1174 printk(KERN_WARNING "broken BIOS!!\n");
1175 trigger = 1;
1176 break;
1177 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001178 case 3: /* level */
1179 {
1180 trigger = 1;
1181 break;
1182 }
1183 default: /* invalid */
1184 {
1185 printk(KERN_WARNING "broken BIOS!!\n");
1186 trigger = 0;
1187 break;
1188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190 return trigger;
1191}
1192
1193static inline int irq_polarity(int idx)
1194{
1195 return MPBIOS_polarity(idx);
1196}
1197
1198static inline int irq_trigger(int idx)
1199{
1200 return MPBIOS_trigger(idx);
1201}
1202
Yinghai Luefa25592008-08-19 20:50:36 -07001203int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204static int pin_2_irq(int idx, int apic, int pin)
1205{
1206 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301207 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 /*
1210 * Debugging check, we are in big trouble if this message pops up!
1211 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301212 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1214
Ingo Molnar54168ed2008-08-20 09:07:45 +02001215 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301216 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001217 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001218 /*
1219 * PCI IRQs are mapped in order
1220 */
1221 i = irq = 0;
1222 while (i < apic)
1223 irq += nr_ioapic_registers[i++];
1224 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001225 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001226 * For MPS mode, so far only needed by ES7000 platform
1227 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001228 if (ioapic_renumber_irq)
1229 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
Ingo Molnar54168ed2008-08-20 09:07:45 +02001232#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /*
1234 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1235 */
1236 if ((pin >= 16) && (pin <= 23)) {
1237 if (pirq_entries[pin-16] != -1) {
1238 if (!pirq_entries[pin-16]) {
1239 apic_printk(APIC_VERBOSE, KERN_DEBUG
1240 "disabling PIRQ%d\n", pin-16);
1241 } else {
1242 irq = pirq_entries[pin-16];
1243 apic_printk(APIC_VERBOSE, KERN_DEBUG
1244 "using PIRQ%d -> IRQ %d\n",
1245 pin-16, irq);
1246 }
1247 }
1248 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001249#endif
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return irq;
1252}
1253
Yinghai Lu497c9a12008-08-19 20:50:28 -07001254void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001256 /* Used to the online set of cpus does not change
1257 * during assign_irq_vector.
1258 */
1259 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
Yinghai Lu497c9a12008-08-19 20:50:28 -07001262void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001263{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001264 spin_unlock(&vector_lock);
1265}
1266
Mike Travise7986732008-12-16 17:33:52 -08001267static int
1268__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001269{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001270 /*
1271 * NOTE! The local APIC isn't very good at handling
1272 * multiple interrupts at the same interrupt level.
1273 * As the interrupt level is determined by taking the
1274 * vector number and shifting that right by 4, we
1275 * want to spread these out a bit so that they don't
1276 * all fall in the same interrupt level.
1277 *
1278 * Also, we've got to be careful not to trash gate
1279 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1280 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001281 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1282 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001283 int cpu, err;
1284 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001285
Ingo Molnar54168ed2008-08-20 09:07:45 +02001286 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1287 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001288
Mike Travis22f65d32008-12-16 17:33:56 -08001289 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1290 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001291
Ingo Molnar54168ed2008-08-20 09:07:45 +02001292 old_vector = cfg->vector;
1293 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001294 cpumask_and(tmp_mask, mask, cpu_online_mask);
1295 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1296 if (!cpumask_empty(tmp_mask)) {
1297 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001298 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001299 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001300 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001301
Mike Travise7986732008-12-16 17:33:52 -08001302 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001303 err = -ENOSPC;
1304 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001305 int new_cpu;
1306 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001307
Ingo Molnare2d40b12009-01-28 06:50:47 +01001308 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001309
Ingo Molnar54168ed2008-08-20 09:07:45 +02001310 vector = current_vector;
1311 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001312next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001313 vector += 8;
1314 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001315 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001316 offset = (offset + 1) % 8;
1317 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001318 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001319 if (unlikely(current_vector == vector))
1320 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001321
1322 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001323 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001324
Mike Travis22f65d32008-12-16 17:33:56 -08001325 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001326 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1327 goto next;
1328 /* Found one! */
1329 current_vector = vector;
1330 current_offset = offset;
1331 if (old_vector) {
1332 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001333 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001334 }
Mike Travis22f65d32008-12-16 17:33:56 -08001335 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001336 per_cpu(vector_irq, new_cpu)[vector] = irq;
1337 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001338 cpumask_copy(cfg->domain, tmp_mask);
1339 err = 0;
1340 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001341 }
Mike Travis22f65d32008-12-16 17:33:56 -08001342 free_cpumask_var(tmp_mask);
1343 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001344}
1345
Mike Travise7986732008-12-16 17:33:52 -08001346static int
1347assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001348{
1349 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001350 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001351
1352 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001353 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001354 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001355 return err;
1356}
1357
Yinghai Lu3145e942008-12-05 18:58:34 -08001358static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001359{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001360 int cpu, vector;
1361
Yinghai Lu497c9a12008-08-19 20:50:28 -07001362 BUG_ON(!cfg->vector);
1363
1364 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001365 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001366 per_cpu(vector_irq, cpu)[vector] = -1;
1367
1368 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001369 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001370
1371 if (likely(!cfg->move_in_progress))
1372 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001373 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001374 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1375 vector++) {
1376 if (per_cpu(vector_irq, cpu)[vector] != irq)
1377 continue;
1378 per_cpu(vector_irq, cpu)[vector] = -1;
1379 break;
1380 }
1381 }
1382 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001383}
1384
1385void __setup_vector_irq(int cpu)
1386{
1387 /* Initialize vector_irq on a new cpu */
1388 /* This function must be called with vector_lock held */
1389 int irq, vector;
1390 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001391 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001392
1393 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001394 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001395 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001396 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001397 continue;
1398 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001399 per_cpu(vector_irq, cpu)[vector] = irq;
1400 }
1401 /* Mark the free vectors */
1402 for (vector = 0; vector < NR_VECTORS; ++vector) {
1403 irq = per_cpu(vector_irq, cpu)[vector];
1404 if (irq < 0)
1405 continue;
1406
1407 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001408 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001409 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001410 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001411}
Glauber Costa3fde6902008-05-28 20:34:19 -07001412
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001413static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001414#ifdef CONFIG_INTR_REMAP
1415static struct irq_chip ir_ioapic_chip;
1416#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Ingo Molnar54168ed2008-08-20 09:07:45 +02001418#define IOAPIC_AUTO -1
1419#define IOAPIC_EDGE 0
1420#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001422#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001423static inline int IO_APIC_irq_trigger(int irq)
1424{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001425 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001426
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001427 for (apic = 0; apic < nr_ioapics; apic++) {
1428 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1429 idx = find_irq_entry(apic, pin, mp_INT);
1430 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1431 return irq_trigger(idx);
1432 }
1433 }
1434 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001435 * nonexistent IRQs are edge default
1436 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001437 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001438}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001439#else
1440static inline int IO_APIC_irq_trigger(int irq)
1441{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001442 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001443}
1444#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001445
Yinghai Lu3145e942008-12-05 18:58:34 -08001446static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Yinghai Lu199751d2008-08-19 20:50:27 -07001448
Jan Beulich6ebcc002006-06-26 13:56:46 +02001449 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001450 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001451 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001452 else
1453 desc->status &= ~IRQ_LEVEL;
1454
Ingo Molnar54168ed2008-08-20 09:07:45 +02001455#ifdef CONFIG_INTR_REMAP
1456 if (irq_remapped(irq)) {
1457 desc->status |= IRQ_MOVE_PCNTXT;
1458 if (trigger)
1459 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1460 handle_fasteoi_irq,
1461 "fasteoi");
1462 else
1463 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1464 handle_edge_irq, "edge");
1465 return;
1466 }
1467#endif
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001468 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1469 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001470 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001471 handle_fasteoi_irq,
1472 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001473 else
Ingo Molnara460e742006-10-17 00:10:03 -07001474 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001475 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001476}
1477
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001478int setup_ioapic_entry(int apic_id, int irq,
1479 struct IO_APIC_route_entry *entry,
1480 unsigned int destination, int trigger,
1481 int polarity, int vector)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001482{
1483 /*
1484 * add it to the IO-APIC irq-routing table:
1485 */
1486 memset(entry,0,sizeof(*entry));
1487
Ingo Molnar54168ed2008-08-20 09:07:45 +02001488#ifdef CONFIG_INTR_REMAP
1489 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001490 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001491 struct irte irte;
1492 struct IR_IO_APIC_route_entry *ir_entry =
1493 (struct IR_IO_APIC_route_entry *) entry;
1494 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001495
Ingo Molnar54168ed2008-08-20 09:07:45 +02001496 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001497 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001498
1499 index = alloc_irte(iommu, irq, 1);
1500 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001501 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001502
1503 memset(&irte, 0, sizeof(irte));
1504
1505 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001506 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001507 irte.trigger_mode = trigger;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001508 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001509 irte.vector = vector;
1510 irte.dest_id = IRTE_DEST(destination);
1511
1512 modify_irte(irq, &irte);
1513
1514 ir_entry->index2 = (index >> 15) & 0x1;
1515 ir_entry->zero = 0;
1516 ir_entry->format = 1;
1517 ir_entry->index = (index & 0x7fff);
1518 } else
1519#endif
1520 {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001521 entry->delivery_mode = apic->irq_delivery_mode;
1522 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001523 entry->dest = destination;
1524 }
1525
1526 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001527 entry->trigger = trigger;
1528 entry->polarity = polarity;
1529 entry->vector = vector;
1530
1531 /* Mask level triggered irqs.
1532 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1533 */
1534 if (trigger)
1535 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001536 return 0;
1537}
1538
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001539static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001540 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001541{
1542 struct irq_cfg *cfg;
1543 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001544 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001545
1546 if (!IO_APIC_IRQ(irq))
1547 return;
1548
Yinghai Lu3145e942008-12-05 18:58:34 -08001549 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001550
Ingo Molnarfe402e12009-01-28 04:32:51 +01001551 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001552 return;
1553
Ingo Molnardebccb32009-01-28 15:20:18 +01001554 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001555
1556 apic_printk(APIC_VERBOSE,KERN_DEBUG
1557 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1558 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001559 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001560 irq, trigger, polarity);
1561
1562
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001563 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Mike Travis22f65d32008-12-16 17:33:56 -08001564 dest, trigger, polarity, cfg->vector)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001565 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001566 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001567 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001568 return;
1569 }
1570
Yinghai Lu3145e942008-12-05 18:58:34 -08001571 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001572 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001573 disable_8259A_irq(irq);
1574
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001575 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
1578static void __init setup_IO_APIC_irqs(void)
1579{
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001580 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001581 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001582 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001583 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001584 int cpu = boot_cpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1587
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001588 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1589 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001591 idx = find_irq_entry(apic_id, pin, mp_INT);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001592 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001593 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001594 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001595 apic_printk(APIC_VERBOSE,
1596 KERN_DEBUG " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001597 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001598 } else
1599 apic_printk(APIC_VERBOSE, " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001600 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001601 continue;
1602 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001603 if (notcon) {
1604 apic_printk(APIC_VERBOSE,
1605 " (apicid-pin) not connected\n");
1606 notcon = 0;
1607 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001608
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001609 irq = pin_2_irq(idx, apic_id, pin);
Ingo Molnar33a201f2009-01-28 07:17:26 +01001610
1611 /*
1612 * Skip the timer IRQ if there's a quirk handler
1613 * installed and if it returns 1:
1614 */
1615 if (apic->multi_timer_check &&
1616 apic->multi_timer_check(apic_id, irq))
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001617 continue;
Ingo Molnar33a201f2009-01-28 07:17:26 +01001618
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001619 desc = irq_to_desc_alloc_cpu(irq, cpu);
1620 if (!desc) {
1621 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1622 continue;
1623 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001624 cfg = desc->chip_data;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001625 add_pin_to_irq_cpu(cfg, cpu, apic_id, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001626
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001627 setup_IO_APIC_irq(apic_id, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001628 irq_trigger(idx), irq_polarity(idx));
1629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001632 if (notcon)
1633 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001634 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001638 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001640static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001641 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Ingo Molnar54168ed2008-08-20 09:07:45 +02001645#ifdef CONFIG_INTR_REMAP
1646 if (intr_remapping_enabled)
1647 return;
1648#endif
1649
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001650 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /*
1653 * We use logical delivery to get the timer IRQ
1654 * to the first CPU.
1655 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001656 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001657 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001658 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001659 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 entry.polarity = 0;
1661 entry.trigger = 0;
1662 entry.vector = vector;
1663
1664 /*
1665 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001666 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001668 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 /*
1671 * Add it to the IO-APIC irq-routing table:
1672 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001673 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001676
1677__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 int apic, i;
1680 union IO_APIC_reg_00 reg_00;
1681 union IO_APIC_reg_01 reg_01;
1682 union IO_APIC_reg_02 reg_02;
1683 union IO_APIC_reg_03 reg_03;
1684 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001685 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001686 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001687 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 if (apic_verbosity == APIC_QUIET)
1690 return;
1691
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001692 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 for (i = 0; i < nr_ioapics; i++)
1694 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301695 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 /*
1698 * We are a bit conservative about what we expect. We have to
1699 * know about every hardware change ASAP.
1700 */
1701 printk(KERN_INFO "testing the IO APIC.......................\n");
1702
1703 for (apic = 0; apic < nr_ioapics; apic++) {
1704
1705 spin_lock_irqsave(&ioapic_lock, flags);
1706 reg_00.raw = io_apic_read(apic, 0);
1707 reg_01.raw = io_apic_read(apic, 1);
1708 if (reg_01.bits.version >= 0x10)
1709 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001710 if (reg_01.bits.version >= 0x20)
1711 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 spin_unlock_irqrestore(&ioapic_lock, flags);
1713
Ingo Molnar54168ed2008-08-20 09:07:45 +02001714 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301715 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1717 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1718 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1719 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Ingo Molnar54168ed2008-08-20 09:07:45 +02001721 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1725 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 /*
1728 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1729 * but the value of reg_02 is read as the previous read register
1730 * value, so ignore it if reg_02 == reg_01.
1731 */
1732 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1733 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1734 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 }
1736
1737 /*
1738 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1739 * or reg_03, but the value of reg_0[23] is read as the previous read
1740 * register value, so ignore it if reg_03 == reg_0[12].
1741 */
1742 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1743 reg_03.raw != reg_01.raw) {
1744 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1745 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747
1748 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1749
Yinghai Lud83e94a2008-08-19 20:50:33 -07001750 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1751 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 for (i = 0; i <= reg_01.bits.entries; i++) {
1754 struct IO_APIC_route_entry entry;
1755
Andi Kleencf4c6a22006-09-26 10:52:30 +02001756 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Ingo Molnar54168ed2008-08-20 09:07:45 +02001758 printk(KERN_DEBUG " %02x %03X ",
1759 i,
1760 entry.dest
1761 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1764 entry.mask,
1765 entry.trigger,
1766 entry.irr,
1767 entry.polarity,
1768 entry.delivery_status,
1769 entry.dest_mode,
1770 entry.delivery_mode,
1771 entry.vector
1772 );
1773 }
1774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001776 for_each_irq_desc(irq, desc) {
1777 struct irq_pin_list *entry;
1778
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001779 cfg = desc->chip_data;
1780 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001781 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001783 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 for (;;) {
1785 printk("-> %d:%d", entry->apic, entry->pin);
1786 if (!entry->next)
1787 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001788 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 }
1790 printk("\n");
1791 }
1792
1793 printk(KERN_INFO ".................................... done.\n");
1794
1795 return;
1796}
1797
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001798__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
1800 unsigned int v;
1801 int i, j;
1802
1803 if (apic_verbosity == APIC_QUIET)
1804 return;
1805
1806 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1807 for (i = 0; i < 8; i++) {
1808 v = apic_read(base + i*0x10);
1809 for (j = 0; j < 32; j++) {
1810 if (v & (1<<j))
1811 printk("1");
1812 else
1813 printk("0");
1814 }
1815 printk("\n");
1816 }
1817}
1818
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001819__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001822 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 if (apic_verbosity == APIC_QUIET)
1825 return;
1826
1827 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1828 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001829 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001830 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 v = apic_read(APIC_LVR);
1832 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1833 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001834 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 v = apic_read(APIC_TASKPRI);
1837 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1838
Ingo Molnar54168ed2008-08-20 09:07:45 +02001839 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001840 if (!APIC_XAPIC(ver)) {
1841 v = apic_read(APIC_ARBPRI);
1842 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1843 v & APIC_ARBPRI_MASK);
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 v = apic_read(APIC_PROCPRI);
1846 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1847 }
1848
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001849 /*
1850 * Remote read supported only in the 82489DX and local APIC for
1851 * Pentium processors.
1852 */
1853 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1854 v = apic_read(APIC_RRR);
1855 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1856 }
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 v = apic_read(APIC_LDR);
1859 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001860 if (!x2apic_enabled()) {
1861 v = apic_read(APIC_DFR);
1862 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 v = apic_read(APIC_SPIV);
1865 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1866
1867 printk(KERN_DEBUG "... APIC ISR field:\n");
1868 print_APIC_bitfield(APIC_ISR);
1869 printk(KERN_DEBUG "... APIC TMR field:\n");
1870 print_APIC_bitfield(APIC_TMR);
1871 printk(KERN_DEBUG "... APIC IRR field:\n");
1872 print_APIC_bitfield(APIC_IRR);
1873
Ingo Molnar54168ed2008-08-20 09:07:45 +02001874 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1875 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 v = apic_read(APIC_ESR);
1879 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1880 }
1881
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001882 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001883 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1884 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 v = apic_read(APIC_LVTT);
1887 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1888
1889 if (maxlvt > 3) { /* PC is LVT#4. */
1890 v = apic_read(APIC_LVTPC);
1891 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1892 }
1893 v = apic_read(APIC_LVT0);
1894 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1895 v = apic_read(APIC_LVT1);
1896 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1897
1898 if (maxlvt > 2) { /* ERR is LVT#3. */
1899 v = apic_read(APIC_LVTERR);
1900 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1901 }
1902
1903 v = apic_read(APIC_TMICT);
1904 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1905 v = apic_read(APIC_TMCCT);
1906 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1907 v = apic_read(APIC_TDCR);
1908 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1909 printk("\n");
1910}
1911
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001912__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001914 int cpu;
1915
1916 preempt_disable();
1917 for_each_online_cpu(cpu)
1918 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1919 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001922__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 unsigned int v;
1925 unsigned long flags;
1926
1927 if (apic_verbosity == APIC_QUIET)
1928 return;
1929
1930 printk(KERN_DEBUG "\nprinting PIC contents\n");
1931
1932 spin_lock_irqsave(&i8259A_lock, flags);
1933
1934 v = inb(0xa1) << 8 | inb(0x21);
1935 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1936
1937 v = inb(0xa0) << 8 | inb(0x20);
1938 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1939
Ingo Molnar54168ed2008-08-20 09:07:45 +02001940 outb(0x0b,0xa0);
1941 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001943 outb(0x0a,0xa0);
1944 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 spin_unlock_irqrestore(&i8259A_lock, flags);
1947
1948 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1949
1950 v = inb(0x4d1) << 8 | inb(0x4d0);
1951 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1952}
1953
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001954__apicdebuginit(int) print_all_ICs(void)
1955{
1956 print_PIC();
1957 print_all_local_APICs();
1958 print_IO_APIC();
1959
1960 return 0;
1961}
1962
1963fs_initcall(print_all_ICs);
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Yinghai Luefa25592008-08-19 20:50:36 -07001966/* Where if anywhere is the i8259 connect in external int mode */
1967static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1968
Ingo Molnar54168ed2008-08-20 09:07:45 +02001969void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001972 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001973 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 unsigned long flags;
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 /*
1977 * The number of IO-APIC IRQ registers (== #pins):
1978 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001979 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001981 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001983 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1984 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001985 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001986 int pin;
1987 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001988 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001989 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001990 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001991
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001992 /* If the interrupt line is enabled and in ExtInt mode
1993 * I have found the pin where the i8259 is connected.
1994 */
1995 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1996 ioapic_i8259.apic = apic;
1997 ioapic_i8259.pin = pin;
1998 goto found_i8259;
1999 }
2000 }
2001 }
2002 found_i8259:
2003 /* Look to see what if the MP table has reported the ExtINT */
2004 /* If we could not find the appropriate pin by looking at the ioapic
2005 * the i8259 probably is not connected the ioapic but give the
2006 * mptable a chance anyway.
2007 */
2008 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2009 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2010 /* Trust the MP table if nothing is setup in the hardware */
2011 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2012 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2013 ioapic_i8259.pin = i8259_pin;
2014 ioapic_i8259.apic = i8259_apic;
2015 }
2016 /* Complain if the MP table and the hardware disagree */
2017 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2018 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2019 {
2020 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022
2023 /*
2024 * Do not trust the IO-APIC being empty at bootup
2025 */
2026 clear_IO_APIC();
2027}
2028
2029/*
2030 * Not an __init, needed by the reboot code
2031 */
2032void disable_IO_APIC(void)
2033{
2034 /*
2035 * Clear the IO-APIC before rebooting:
2036 */
2037 clear_IO_APIC();
2038
Eric W. Biederman650927e2005-06-25 14:57:44 -07002039 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002040 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002041 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002042 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002043 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002044 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002045 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002046
2047 memset(&entry, 0, sizeof(entry));
2048 entry.mask = 0; /* Enabled */
2049 entry.trigger = 0; /* Edge */
2050 entry.irr = 0;
2051 entry.polarity = 0; /* High */
2052 entry.delivery_status = 0;
2053 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002054 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002055 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002056 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002057
2058 /*
2059 * Add it to the IO-APIC irq-routing table:
2060 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002061 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002062 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002063
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002064 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
2066
Ingo Molnar54168ed2008-08-20 09:07:45 +02002067#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/*
2069 * function to set the IO-APIC physical IDs based on the
2070 * values stored in the MPC table.
2071 *
2072 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2073 */
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075static void __init setup_ioapic_ids_from_mpc(void)
2076{
2077 union IO_APIC_reg_00 reg_00;
2078 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002079 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 int i;
2081 unsigned char old_id;
2082 unsigned long flags;
2083
Yinghai Lua4dbc342008-07-25 02:14:28 -07002084 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002085 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002088 * Don't check I/O APIC IDs for xAPIC systems. They have
2089 * no meaning without the serial APIC bus.
2090 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002091 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2092 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002093 return;
2094 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 * This is broken; anything with a real cpu count has to
2096 * circumvent this idiocy regardless.
2097 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002098 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /*
2101 * Set the IOAPIC ID to the value stored in the MPC table.
2102 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002103 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 /* Read the register 0 value */
2106 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002107 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002109
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002110 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002112 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002114 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2116 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002117 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 /*
2121 * Sanity check, is the ID really free? Every APIC in a
2122 * system must have a unique ID or we get lots of nice
2123 * 'stuck on smp_invalidate_needed IPI wait' messages.
2124 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002125 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002126 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002128 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 for (i = 0; i < get_physical_broadcast(); i++)
2130 if (!physid_isset(i, phys_id_present_map))
2131 break;
2132 if (i >= get_physical_broadcast())
2133 panic("Max APIC ID exceeded!\n");
2134 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2135 i);
2136 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002137 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 } else {
2139 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002140 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 apic_printk(APIC_VERBOSE, "Setting %d in the "
2142 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002143 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2145 }
2146
2147
2148 /*
2149 * We need to adjust the IRQ routing table
2150 * if the ID changed.
2151 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002152 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302154 if (mp_irqs[i].dstapic == old_id)
2155 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002156 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 /*
2159 * Read the right value from the MPC table and
2160 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 apic_printk(APIC_VERBOSE, KERN_INFO
2163 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002164 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002166 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002168 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002169 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 /*
2172 * Sanity check
2173 */
2174 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002175 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002177 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 printk("could not set ID!\n");
2179 else
2180 apic_printk(APIC_VERBOSE, " ok.\n");
2181 }
2182}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002185int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002186
2187static int __init notimercheck(char *s)
2188{
2189 no_timer_check = 1;
2190 return 1;
2191}
2192__setup("no_timer_check", notimercheck);
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194/*
2195 * There is a nasty bug in some older SMP boards, their mptable lies
2196 * about the timer IRQ. We do the following to work around the situation:
2197 *
2198 * - timer IRQ defaults to IO-APIC IRQ
2199 * - if this function detects that timer IRQs are defunct, then we fall
2200 * back to ISA timer IRQs
2201 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002202static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002205 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Zachary Amsden8542b202006-12-07 02:14:09 +01002207 if (no_timer_check)
2208 return 1;
2209
Ingo Molnar4aae0702007-12-18 18:05:58 +01002210 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 local_irq_enable();
2212 /* Let ten ticks pass... */
2213 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002214 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /*
2217 * Expect a few ticks at least, to be sure some possible
2218 * glue logic does not lock up after one or two first
2219 * ticks in a non-ExtINT mode. Also the local APIC
2220 * might have cached one ExtINT interrupt. Finally, at
2221 * least one tick may be lost due to delays.
2222 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002223
2224 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002225 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 return 0;
2228}
2229
2230/*
2231 * In the SMP+IOAPIC case it might happen that there are an unspecified
2232 * number of pending IRQ events unhandled. These cases are very rare,
2233 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2234 * better to do it this way as thus we do not have to be aware of
2235 * 'pending' interrupts in the IRQ path, except at this point.
2236 */
2237/*
2238 * Edge triggered needs to resend any interrupt
2239 * that was delayed but this is now handled in the device
2240 * independent code.
2241 */
2242
2243/*
2244 * Starting up a edge-triggered IO-APIC interrupt is
2245 * nasty - we need to make sure that we get the edge.
2246 * If it is already asserted for some reason, we need
2247 * return 1 to indicate that is was pending.
2248 *
2249 * This is not complete - we should be able to fake
2250 * an edge even if it isn't on the 8259A...
2251 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002252
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002253static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 int was_pending = 0;
2256 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002257 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002260 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 disable_8259A_irq(irq);
2262 if (i8259A_irq_pending(irq))
2263 was_pending = 1;
2264 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002265 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002266 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 spin_unlock_irqrestore(&ioapic_lock, flags);
2268
2269 return was_pending;
2270}
2271
Ingo Molnar54168ed2008-08-20 09:07:45 +02002272#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002273static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002275
2276 struct irq_cfg *cfg = irq_cfg(irq);
2277 unsigned long flags;
2278
2279 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002280 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002281 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002282
2283 return 1;
2284}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002285#else
2286static int ioapic_retrigger_irq(unsigned int irq)
2287{
Ingo Molnardac5f412009-01-28 15:42:24 +01002288 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002289
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002290 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002291}
2292#endif
2293
2294/*
2295 * Level and edge triggered IO-APIC interrupts need different handling,
2296 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2297 * handled with the level-triggered descriptor, but that one has slightly
2298 * more overhead. Level-triggered interrupts cannot be handled with the
2299 * edge-triggered handler, without risking IRQ storms and other ugly
2300 * races.
2301 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002302
Yinghai Lu497c9a12008-08-19 20:50:28 -07002303#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002304
2305#ifdef CONFIG_INTR_REMAP
2306static void ir_irq_migration(struct work_struct *work);
2307
2308static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration);
2309
2310/*
2311 * Migrate the IO-APIC irq in the presence of intr-remapping.
2312 *
2313 * For edge triggered, irq migration is a simple atomic update(of vector
2314 * and cpu destination) of IRTE and flush the hardware cache.
2315 *
2316 * For level triggered, we need to modify the io-apic RTE aswell with the update
2317 * vector information, along with modifying IRTE with vector and destination.
2318 * So irq migration for level triggered is little bit more complex compared to
2319 * edge triggered migration. But the good news is, we use the same algorithm
2320 * for level triggered migration as we have today, only difference being,
2321 * we now initiate the irq migration from process context instead of the
2322 * interrupt context.
2323 *
2324 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2325 * suppression) to the IO-APIC, level triggered irq migration will also be
2326 * as simple as edge triggered migration and we can do the irq migration
2327 * with a simple atomic update to IO-APIC RTE.
2328 */
Mike Travise7986732008-12-16 17:33:52 -08002329static void
2330migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002331{
2332 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002333 struct irte irte;
2334 int modify_ioapic_rte;
2335 unsigned int dest;
2336 unsigned long flags;
Yinghai Lu3145e942008-12-05 18:58:34 -08002337 unsigned int irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002338
Mike Travis22f65d32008-12-16 17:33:56 -08002339 if (!cpumask_intersects(mask, cpu_online_mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002340 return;
2341
Yinghai Lu3145e942008-12-05 18:58:34 -08002342 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002343 if (get_irte(irq, &irte))
2344 return;
2345
Yinghai Lu3145e942008-12-05 18:58:34 -08002346 cfg = desc->chip_data;
2347 if (assign_irq_vector(irq, cfg, mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002348 return;
2349
Yinghai Lu3145e942008-12-05 18:58:34 -08002350 set_extra_move_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002351
Ingo Molnardebccb32009-01-28 15:20:18 +01002352 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002353
Ingo Molnar54168ed2008-08-20 09:07:45 +02002354 modify_ioapic_rte = desc->status & IRQ_LEVEL;
2355 if (modify_ioapic_rte) {
2356 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08002357 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358 spin_unlock_irqrestore(&ioapic_lock, flags);
2359 }
2360
2361 irte.vector = cfg->vector;
2362 irte.dest_id = IRTE_DEST(dest);
2363
2364 /*
2365 * Modified the IRTE and flushes the Interrupt entry cache.
2366 */
2367 modify_irte(irq, &irte);
2368
Mike Travis22f65d32008-12-16 17:33:56 -08002369 if (cfg->move_in_progress)
2370 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002371
Mike Travis7f7ace02009-01-10 21:58:08 -08002372 cpumask_copy(desc->affinity, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002373}
2374
Yinghai Lu3145e942008-12-05 18:58:34 -08002375static int migrate_irq_remapped_level_desc(struct irq_desc *desc)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002376{
2377 int ret = -1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002378 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002379
Yinghai Lu3145e942008-12-05 18:58:34 -08002380 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002381
Yinghai Lu3145e942008-12-05 18:58:34 -08002382 if (io_apic_level_ack_pending(cfg)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002383 /*
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002384 * Interrupt in progress. Migrating irq now will change the
Ingo Molnar54168ed2008-08-20 09:07:45 +02002385 * vector information in the IO-APIC RTE and that will confuse
2386 * the EOI broadcast performed by cpu.
2387 * So, delay the irq migration to the next instance.
2388 */
2389 schedule_delayed_work(&ir_migration_work, 1);
2390 goto unmask;
2391 }
2392
2393 /* everthing is clear. we have right of way */
Mike Travis7f7ace02009-01-10 21:58:08 -08002394 migrate_ioapic_irq_desc(desc, desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002395
2396 ret = 0;
2397 desc->status &= ~IRQ_MOVE_PENDING;
Mike Travis7f7ace02009-01-10 21:58:08 -08002398 cpumask_clear(desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002399
2400unmask:
Yinghai Lu3145e942008-12-05 18:58:34 -08002401 unmask_IO_APIC_irq_desc(desc);
2402
Ingo Molnar54168ed2008-08-20 09:07:45 +02002403 return ret;
2404}
2405
2406static void ir_irq_migration(struct work_struct *work)
2407{
2408 unsigned int irq;
2409 struct irq_desc *desc;
2410
2411 for_each_irq_desc(irq, desc) {
2412 if (desc->status & IRQ_MOVE_PENDING) {
2413 unsigned long flags;
2414
2415 spin_lock_irqsave(&desc->lock, flags);
2416 if (!desc->chip->set_affinity ||
2417 !(desc->status & IRQ_MOVE_PENDING)) {
2418 desc->status &= ~IRQ_MOVE_PENDING;
2419 spin_unlock_irqrestore(&desc->lock, flags);
2420 continue;
2421 }
2422
Mike Travis7f7ace02009-01-10 21:58:08 -08002423 desc->chip->set_affinity(irq, desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002424 spin_unlock_irqrestore(&desc->lock, flags);
2425 }
2426 }
2427}
2428
2429/*
2430 * Migrates the IRQ destination in the process context.
2431 */
Rusty Russell968ea6d2008-12-13 21:55:51 +10302432static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2433 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002434{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002435 if (desc->status & IRQ_LEVEL) {
2436 desc->status |= IRQ_MOVE_PENDING;
Mike Travis7f7ace02009-01-10 21:58:08 -08002437 cpumask_copy(desc->pending_mask, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002438 migrate_irq_remapped_level_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002439 return;
2440 }
2441
Yinghai Lu3145e942008-12-05 18:58:34 -08002442 migrate_ioapic_irq_desc(desc, mask);
2443}
Rusty Russell0de26522008-12-13 21:20:26 +10302444static void set_ir_ioapic_affinity_irq(unsigned int irq,
2445 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002446{
2447 struct irq_desc *desc = irq_to_desc(irq);
2448
Yinghai Lu3145e942008-12-05 18:58:34 -08002449 set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002450}
2451#endif
2452
Yinghai Lu497c9a12008-08-19 20:50:28 -07002453asmlinkage void smp_irq_move_cleanup_interrupt(void)
2454{
2455 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002456
Yinghai Lu497c9a12008-08-19 20:50:28 -07002457 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002458 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002459 irq_enter();
2460
2461 me = smp_processor_id();
2462 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2463 unsigned int irq;
2464 struct irq_desc *desc;
2465 struct irq_cfg *cfg;
2466 irq = __get_cpu_var(vector_irq)[vector];
2467
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002468 if (irq == -1)
2469 continue;
2470
Yinghai Lu497c9a12008-08-19 20:50:28 -07002471 desc = irq_to_desc(irq);
2472 if (!desc)
2473 continue;
2474
2475 cfg = irq_cfg(irq);
2476 spin_lock(&desc->lock);
2477 if (!cfg->move_cleanup_count)
2478 goto unlock;
2479
Mike Travis22f65d32008-12-16 17:33:56 -08002480 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002481 goto unlock;
2482
2483 __get_cpu_var(vector_irq)[vector] = -1;
2484 cfg->move_cleanup_count--;
2485unlock:
2486 spin_unlock(&desc->lock);
2487 }
2488
2489 irq_exit();
2490}
2491
Yinghai Lu3145e942008-12-05 18:58:34 -08002492static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002493{
Yinghai Lu3145e942008-12-05 18:58:34 -08002494 struct irq_desc *desc = *descp;
2495 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002496 unsigned vector, me;
2497
Yinghai Lu48a1b102008-12-11 00:15:01 -08002498 if (likely(!cfg->move_in_progress)) {
2499#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2500 if (likely(!cfg->move_desc_pending))
2501 return;
2502
Yinghai Lub9098952008-12-19 13:48:34 -08002503 /* domain has not changed, but affinity did */
Yinghai Lu48a1b102008-12-11 00:15:01 -08002504 me = smp_processor_id();
Mike Travis7f7ace02009-01-10 21:58:08 -08002505 if (cpumask_test_cpu(me, desc->affinity)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002506 *descp = desc = move_irq_desc(desc, me);
2507 /* get the new one */
2508 cfg = desc->chip_data;
2509 cfg->move_desc_pending = 0;
2510 }
2511#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002512 return;
Yinghai Lu48a1b102008-12-11 00:15:01 -08002513 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002514
2515 vector = ~get_irq_regs()->orig_ax;
2516 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002517
2518 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002519#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2520 *descp = desc = move_irq_desc(desc, me);
2521 /* get the new one */
2522 cfg = desc->chip_data;
2523#endif
Mike Travis22f65d32008-12-16 17:33:56 -08002524 send_cleanup_vector(cfg);
Yinghai Lu10b888d2009-01-31 14:50:07 -08002525 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002526}
2527#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002528static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002529#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002530
Ingo Molnar54168ed2008-08-20 09:07:45 +02002531#ifdef CONFIG_INTR_REMAP
2532static void ack_x2apic_level(unsigned int irq)
2533{
2534 ack_x2APIC_irq();
2535}
2536
2537static void ack_x2apic_edge(unsigned int irq)
2538{
2539 ack_x2APIC_irq();
2540}
Yinghai Lu3145e942008-12-05 18:58:34 -08002541
Ingo Molnar54168ed2008-08-20 09:07:45 +02002542#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002543
Yinghai Lu1d025192008-08-19 20:50:34 -07002544static void ack_apic_edge(unsigned int irq)
2545{
Yinghai Lu3145e942008-12-05 18:58:34 -08002546 struct irq_desc *desc = irq_to_desc(irq);
2547
2548 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002549 move_native_irq(irq);
2550 ack_APIC_irq();
2551}
2552
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002553atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002554
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002555static void ack_apic_level(unsigned int irq)
2556{
Yinghai Lu3145e942008-12-05 18:58:34 -08002557 struct irq_desc *desc = irq_to_desc(irq);
2558
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002559#ifdef CONFIG_X86_32
2560 unsigned long v;
2561 int i;
2562#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002563 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002564 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002565
Yinghai Lu3145e942008-12-05 18:58:34 -08002566 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002567#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002568 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002569 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002570 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002571 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002572 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002573#endif
2574
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002575#ifdef CONFIG_X86_32
2576 /*
2577 * It appears there is an erratum which affects at least version 0x11
2578 * of I/O APIC (that's the 82093AA and cores integrated into various
2579 * chipsets). Under certain conditions a level-triggered interrupt is
2580 * erroneously delivered as edge-triggered one but the respective IRR
2581 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2582 * message but it will never arrive and further interrupts are blocked
2583 * from the source. The exact reason is so far unknown, but the
2584 * phenomenon was observed when two consecutive interrupt requests
2585 * from a given source get delivered to the same CPU and the source is
2586 * temporarily disabled in between.
2587 *
2588 * A workaround is to simulate an EOI message manually. We achieve it
2589 * by setting the trigger mode to edge and then to level when the edge
2590 * trigger mode gets detected in the TMR of a local APIC for a
2591 * level-triggered interrupt. We mask the source for the time of the
2592 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2593 * The idea is from Manfred Spraul. --macro
2594 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002595 cfg = desc->chip_data;
2596 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002597
2598 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2599#endif
2600
Ingo Molnar54168ed2008-08-20 09:07:45 +02002601 /*
2602 * We must acknowledge the irq before we move it or the acknowledge will
2603 * not propagate properly.
2604 */
2605 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002606
Ingo Molnar54168ed2008-08-20 09:07:45 +02002607 /* Now we can move and renable the irq */
2608 if (unlikely(do_unmask_irq)) {
2609 /* Only migrate the irq if the ack has been received.
2610 *
2611 * On rare occasions the broadcast level triggered ack gets
2612 * delayed going to ioapics, and if we reprogram the
2613 * vector while Remote IRR is still set the irq will never
2614 * fire again.
2615 *
2616 * To prevent this scenario we read the Remote IRR bit
2617 * of the ioapic. This has two effects.
2618 * - On any sane system the read of the ioapic will
2619 * flush writes (and acks) going to the ioapic from
2620 * this cpu.
2621 * - We get to see if the ACK has actually been delivered.
2622 *
2623 * Based on failed experiments of reprogramming the
2624 * ioapic entry from outside of irq context starting
2625 * with masking the ioapic entry and then polling until
2626 * Remote IRR was clear before reprogramming the
2627 * ioapic I don't trust the Remote IRR bit to be
2628 * completey accurate.
2629 *
2630 * However there appears to be no other way to plug
2631 * this race, so if the Remote IRR bit is not
2632 * accurate and is causing problems then it is a hardware bug
2633 * and you can go talk to the chipset vendor about it.
2634 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002635 cfg = desc->chip_data;
2636 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002637 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002638 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002639 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002640
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002641#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002642 if (!(v & (1 << (i & 0x1f)))) {
2643 atomic_inc(&irq_mis_count);
2644 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002645 __mask_and_edge_IO_APIC_irq(cfg);
2646 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002647 spin_unlock(&ioapic_lock);
2648 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002649#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002650}
Yinghai Lu1d025192008-08-19 20:50:34 -07002651
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002652static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002653 .name = "IO-APIC",
2654 .startup = startup_ioapic_irq,
2655 .mask = mask_IO_APIC_irq,
2656 .unmask = unmask_IO_APIC_irq,
2657 .ack = ack_apic_edge,
2658 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002659#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002660 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002661#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002662 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663};
2664
Ingo Molnar54168ed2008-08-20 09:07:45 +02002665#ifdef CONFIG_INTR_REMAP
2666static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002667 .name = "IR-IO-APIC",
2668 .startup = startup_ioapic_irq,
2669 .mask = mask_IO_APIC_irq,
2670 .unmask = unmask_IO_APIC_irq,
2671 .ack = ack_x2apic_edge,
2672 .eoi = ack_x2apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002673#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002674 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002675#endif
2676 .retrigger = ioapic_retrigger_irq,
2677};
2678#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680static inline void init_IO_APIC_traps(void)
2681{
2682 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002683 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002684 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 /*
2687 * NOTE! The local APIC isn't very good at handling
2688 * multiple interrupts at the same interrupt level.
2689 * As the interrupt level is determined by taking the
2690 * vector number and shifting that right by 4, we
2691 * want to spread these out a bit so that they don't
2692 * all fall in the same interrupt level.
2693 *
2694 * Also, we've got to be careful not to trash gate
2695 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2696 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002697 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002698 cfg = desc->chip_data;
2699 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 /*
2701 * Hmm.. We don't have an entry for this,
2702 * so default to an old-fashioned 8259
2703 * interrupt if we can..
2704 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002705 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002707 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002709 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
2711 }
2712}
2713
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002714/*
2715 * The local APIC irq-chip implementation:
2716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002718static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
2720 unsigned long v;
2721
2722 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002723 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002726static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002728 unsigned long v;
2729
2730 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002731 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732}
2733
Yinghai Lu3145e942008-12-05 18:58:34 -08002734static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002735{
2736 ack_APIC_irq();
2737}
2738
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002739static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002740 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002741 .mask = mask_lapic_irq,
2742 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002743 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744};
2745
Yinghai Lu3145e942008-12-05 18:58:34 -08002746static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002747{
Yinghai Lu08678b02008-08-19 20:50:05 -07002748 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002749 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2750 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002751}
2752
Jan Beuliche9427102008-01-30 13:31:24 +01002753static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
2755 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002756 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 * We put the 8259A master into AEOI mode and
2758 * unmask on all local APICs LVT0 as NMI.
2759 *
2760 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2761 * is from Maciej W. Rozycki - so we do not have to EOI from
2762 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002763 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2765
Jan Beuliche9427102008-01-30 13:31:24 +01002766 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 apic_printk(APIC_VERBOSE, " done.\n");
2769}
2770
2771/*
2772 * This looks a bit hackish but it's about the only one way of sending
2773 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2774 * not support the ExtINT mode, unfortunately. We need to send these
2775 * cycles as some i82489DX-based boards have glue logic that keeps the
2776 * 8259A interrupt line asserted until INTA. --macro
2777 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002778static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002780 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 struct IO_APIC_route_entry entry0, entry1;
2782 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002784 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002785 if (pin == -1) {
2786 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002788 }
2789 apic = find_isa_irq_apic(8, mp_INT);
2790 if (apic == -1) {
2791 WARN_ON_ONCE(1);
2792 return;
2793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Andi Kleencf4c6a22006-09-26 10:52:30 +02002795 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002796 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 memset(&entry1, 0, sizeof(entry1));
2799
2800 entry1.dest_mode = 0; /* physical delivery */
2801 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002802 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 entry1.delivery_mode = dest_ExtINT;
2804 entry1.polarity = entry0.polarity;
2805 entry1.trigger = 0;
2806 entry1.vector = 0;
2807
Andi Kleencf4c6a22006-09-26 10:52:30 +02002808 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 save_control = CMOS_READ(RTC_CONTROL);
2811 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2812 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2813 RTC_FREQ_SELECT);
2814 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2815
2816 i = 100;
2817 while (i-- > 0) {
2818 mdelay(10);
2819 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2820 i -= 10;
2821 }
2822
2823 CMOS_WRITE(save_control, RTC_CONTROL);
2824 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002825 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Andi Kleencf4c6a22006-09-26 10:52:30 +02002827 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
Yinghai Luefa25592008-08-19 20:50:36 -07002830static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002831/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002832static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002833{
2834 disable_timer_pin_1 = 1;
2835 return 0;
2836}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002837early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002838
2839int timer_through_8259 __initdata;
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841/*
2842 * This code may look a bit paranoid, but it's supposed to cooperate with
2843 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2844 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2845 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002846 *
2847 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002849static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
Yinghai Lu3145e942008-12-05 18:58:34 -08002851 struct irq_desc *desc = irq_to_desc(0);
2852 struct irq_cfg *cfg = desc->chip_data;
2853 int cpu = boot_cpu_id;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002854 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002855 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002856 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002857
2858 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /*
2861 * get/set the timer IRQ vector:
2862 */
2863 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002864 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002867 * As IRQ0 is to be enabled in the 8259A, the virtual
2868 * wire has to be disabled in the local APIC. Also
2869 * timer interrupts need to be acknowledged manually in
2870 * the 8259A for the i82489DX when using the NMI
2871 * watchdog as that APIC treats NMIs as level-triggered.
2872 * The AEOI mode will finish them in the 8259A
2873 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002875 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002877#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002878 {
2879 unsigned int ver;
2880
2881 ver = apic_read(APIC_LVR);
2882 ver = GET_APIC_VERSION(ver);
2883 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2884 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002885#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002887 pin1 = find_isa_irq_pin(0, mp_INT);
2888 apic1 = find_isa_irq_apic(0, mp_INT);
2889 pin2 = ioapic_i8259.pin;
2890 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002892 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2893 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002894 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002896 /*
2897 * Some BIOS writers are clueless and report the ExtINTA
2898 * I/O APIC input from the cascaded 8259A as the timer
2899 * interrupt input. So just in case, if only one pin
2900 * was found above, try it both directly and through the
2901 * 8259A.
2902 */
2903 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002904#ifdef CONFIG_INTR_REMAP
2905 if (intr_remapping_enabled)
2906 panic("BIOS bug: timer not connected to IO-APIC");
2907#endif
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002908 pin1 = pin2;
2909 apic1 = apic2;
2910 no_pin1 = 1;
2911 } else if (pin2 == -1) {
2912 pin2 = pin1;
2913 apic2 = apic1;
2914 }
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (pin1 != -1) {
2917 /*
2918 * Ok, does IRQ0 through the IOAPIC work?
2919 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002920 if (no_pin1) {
Yinghai Lu3145e942008-12-05 18:58:34 -08002921 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002922 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002923 } else {
2924 /* for edge trigger, setup_IO_APIC_irq already
2925 * leave it unmasked.
2926 * so only need to unmask if it is level-trigger
2927 * do we really have level trigger timer?
2928 */
2929 int idx;
2930 idx = find_irq_entry(apic1, pin1, mp_INT);
2931 if (idx != -1 && irq_trigger(idx))
2932 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 if (timer_irq_works()) {
2935 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 setup_nmi();
2937 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002939 if (disable_timer_pin_1 > 0)
2940 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002943#ifdef CONFIG_INTR_REMAP
2944 if (intr_remapping_enabled)
2945 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2946#endif
Yinghai Luf72dcca2009-02-08 16:18:03 -08002947 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002948 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002949 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002950 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2951 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002953 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2954 "(IRQ0) through the 8259A ...\n");
2955 apic_printk(APIC_QUIET, KERN_INFO
2956 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 /*
2958 * legacy devices should be connected to IO APIC #0
2959 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002960 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002961 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002962 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002964 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002965 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002967 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002969 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002971 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 }
2973 /*
2974 * Cleanup, just in case ...
2975 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002976 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002977 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002978 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002979 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
2982 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002983 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2984 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002985 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002987#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002988 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002989#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002991 apic_printk(APIC_QUIET, KERN_INFO
2992 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Yinghai Lu3145e942008-12-05 18:58:34 -08002994 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002995 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 enable_8259A_irq(0);
2997
2998 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002999 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003002 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003003 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003004 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003005 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003007 apic_printk(APIC_QUIET, KERN_INFO
3008 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 init_8259A(0);
3011 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003012 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 unlock_ExtINT_logic();
3015
3016 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003017 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003018 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003020 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003021 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003023 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003024out:
3025 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}
3027
3028/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003029 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3030 * to devices. However there may be an I/O APIC pin available for
3031 * this interrupt regardless. The pin may be left unconnected, but
3032 * typically it will be reused as an ExtINT cascade interrupt for
3033 * the master 8259A. In the MPS case such a pin will normally be
3034 * reported as an ExtINT interrupt in the MP table. With ACPI
3035 * there is no provision for ExtINT interrupts, and in the absence
3036 * of an override it would be treated as an ordinary ISA I/O APIC
3037 * interrupt, that is edge-triggered and unmasked by default. We
3038 * used to do this, but it caused problems on some systems because
3039 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3040 * the same ExtINT cascade interrupt to drive the local APIC of the
3041 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3042 * the I/O APIC in all cases now. No actual device should request
3043 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 */
3045#define PIC_IRQS (1 << PIC_CASCADE_IR)
3046
3047void __init setup_IO_APIC(void)
3048{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003049
Ingo Molnar54168ed2008-08-20 09:07:45 +02003050 /*
3051 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3052 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003054 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Ingo Molnar54168ed2008-08-20 09:07:45 +02003056 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003057 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003058 * Set up IO-APIC IRQ routing.
3059 */
3060#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003061 if (!acpi_ioapic)
3062 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 sync_Arb_IDs();
3065 setup_IO_APIC_irqs();
3066 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003067 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068}
3069
3070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003071 * Called after all the initialization is done. If we didnt find any
3072 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075static int __init io_apic_bug_finalize(void)
3076{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003077 if (sis_apic_bug == -1)
3078 sis_apic_bug = 0;
3079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080}
3081
3082late_initcall(io_apic_bug_finalize);
3083
3084struct sysfs_ioapic_data {
3085 struct sys_device dev;
3086 struct IO_APIC_route_entry entry[0];
3087};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003088static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Pavel Machek438510f2005-04-16 15:25:24 -07003090static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091{
3092 struct IO_APIC_route_entry *entry;
3093 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 data = container_of(dev, struct sysfs_ioapic_data, dev);
3097 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003098 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3099 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 return 0;
3102}
3103
3104static int ioapic_resume(struct sys_device *dev)
3105{
3106 struct IO_APIC_route_entry *entry;
3107 struct sysfs_ioapic_data *data;
3108 unsigned long flags;
3109 union IO_APIC_reg_00 reg_00;
3110 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 data = container_of(dev, struct sysfs_ioapic_data, dev);
3113 entry = data->entry;
3114
3115 spin_lock_irqsave(&ioapic_lock, flags);
3116 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303117 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3118 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 io_apic_write(dev->id, 0, reg_00.raw);
3120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003122 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003123 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125 return 0;
3126}
3127
3128static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003129 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 .suspend = ioapic_suspend,
3131 .resume = ioapic_resume,
3132};
3133
3134static int __init ioapic_init_sysfs(void)
3135{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003136 struct sys_device * dev;
3137 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 error = sysdev_class_register(&ioapic_sysdev_class);
3140 if (error)
3141 return error;
3142
Ingo Molnar54168ed2008-08-20 09:07:45 +02003143 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003144 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003146 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 if (!mp_ioapic_data[i]) {
3148 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3149 continue;
3150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003152 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 dev->cls = &ioapic_sysdev_class;
3154 error = sysdev_register(dev);
3155 if (error) {
3156 kfree(mp_ioapic_data[i]);
3157 mp_ioapic_data[i] = NULL;
3158 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3159 continue;
3160 }
3161 }
3162
3163 return 0;
3164}
3165
3166device_initcall(ioapic_init_sysfs);
3167
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003168static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003169/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003170 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003171 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003172unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003173{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003174 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003175 unsigned int irq;
3176 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003177 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003178 struct irq_cfg *cfg_new = NULL;
3179 int cpu = boot_cpu_id;
3180 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003181
3182 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003183 if (irq_want < nr_irqs_gsi)
3184 irq_want = nr_irqs_gsi;
3185
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003186 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003187 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003188 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3189 if (!desc_new) {
3190 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003191 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003192 }
3193 cfg_new = desc_new->chip_data;
3194
3195 if (cfg_new->vector != 0)
3196 continue;
Ingo Molnarfe402e12009-01-28 04:32:51 +01003197 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003198 irq = new;
3199 break;
3200 }
3201 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003202
Yinghai Lu199751d2008-08-19 20:50:27 -07003203 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003204 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003205 /* restore it, in case dynamic_irq_init clear it */
3206 if (desc_new)
3207 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003208 }
3209 return irq;
3210}
3211
Yinghai Lu199751d2008-08-19 20:50:27 -07003212int create_irq(void)
3213{
Yinghai Lube5d5352008-12-05 18:58:33 -08003214 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003215 int irq;
3216
Yinghai Lube5d5352008-12-05 18:58:33 -08003217 irq_want = nr_irqs_gsi;
3218 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003219
3220 if (irq == 0)
3221 irq = -1;
3222
3223 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003224}
3225
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003226void destroy_irq(unsigned int irq)
3227{
3228 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003229 struct irq_cfg *cfg;
3230 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003231
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003232 /* store it, in case dynamic_irq_cleanup clear it */
3233 desc = irq_to_desc(irq);
3234 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003235 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003236 /* connect back irq_cfg */
3237 if (desc)
3238 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003239
Ingo Molnar54168ed2008-08-20 09:07:45 +02003240#ifdef CONFIG_INTR_REMAP
3241 free_irte(irq);
3242#endif
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003243 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003244 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003245 spin_unlock_irqrestore(&vector_lock, flags);
3246}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003247
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003248/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003249 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003250 */
3251#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003252static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003253{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003254 struct irq_cfg *cfg;
3255 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003256 unsigned dest;
3257
Jan Beulichf1182632009-01-14 12:27:35 +00003258 if (disable_apic)
3259 return -ENXIO;
3260
Yinghai Lu3145e942008-12-05 18:58:34 -08003261 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003262 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003263 if (err)
3264 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003265
Ingo Molnardebccb32009-01-28 15:20:18 +01003266 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003267
Ingo Molnar54168ed2008-08-20 09:07:45 +02003268#ifdef CONFIG_INTR_REMAP
3269 if (irq_remapped(irq)) {
3270 struct irte irte;
3271 int ir_index;
3272 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003273
Ingo Molnar54168ed2008-08-20 09:07:45 +02003274 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3275 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003276
Ingo Molnar54168ed2008-08-20 09:07:45 +02003277 memset (&irte, 0, sizeof(irte));
3278
3279 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003280 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003281 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003282 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003283 irte.vector = cfg->vector;
3284 irte.dest_id = IRTE_DEST(dest);
3285
3286 modify_irte(irq, &irte);
3287
3288 msg->address_hi = MSI_ADDR_BASE_HI;
3289 msg->data = sub_handle;
3290 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3291 MSI_ADDR_IR_SHV |
3292 MSI_ADDR_IR_INDEX1(ir_index) |
3293 MSI_ADDR_IR_INDEX2(ir_index);
3294 } else
3295#endif
3296 {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003297 if (x2apic_enabled())
3298 msg->address_hi = MSI_ADDR_BASE_HI |
3299 MSI_ADDR_EXT_DEST_ID(dest);
3300 else
3301 msg->address_hi = MSI_ADDR_BASE_HI;
3302
Ingo Molnar54168ed2008-08-20 09:07:45 +02003303 msg->address_lo =
3304 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003305 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003306 MSI_ADDR_DEST_MODE_PHYSICAL:
3307 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003308 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003309 MSI_ADDR_REDIRECTION_CPU:
3310 MSI_ADDR_REDIRECTION_LOWPRI) |
3311 MSI_ADDR_DEST_ID(dest);
3312
3313 msg->data =
3314 MSI_DATA_TRIGGER_EDGE |
3315 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003316 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003317 MSI_DATA_DELIVERY_FIXED:
3318 MSI_DATA_DELIVERY_LOWPRI) |
3319 MSI_DATA_VECTOR(cfg->vector);
3320 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003321 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003322}
3323
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003324#ifdef CONFIG_SMP
Rusty Russell0de26522008-12-13 21:20:26 +10303325static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003326{
Yinghai Lu3145e942008-12-05 18:58:34 -08003327 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003328 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003329 struct msi_msg msg;
3330 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003331
Mike Travis22f65d32008-12-16 17:33:56 -08003332 dest = set_desc_affinity(desc, mask);
3333 if (dest == BAD_APICID)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003334 return;
3335
Yinghai Lu3145e942008-12-05 18:58:34 -08003336 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003337
Yinghai Lu3145e942008-12-05 18:58:34 -08003338 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003339
3340 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003341 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003342 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3343 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3344
Yinghai Lu3145e942008-12-05 18:58:34 -08003345 write_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003346}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003347#ifdef CONFIG_INTR_REMAP
3348/*
3349 * Migrate the MSI irq to another cpumask. This migration is
3350 * done in the process context using interrupt-remapping hardware.
3351 */
Mike Travise7986732008-12-16 17:33:52 -08003352static void
3353ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003354{
Yinghai Lu3145e942008-12-05 18:58:34 -08003355 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003356 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003357 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003358 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003359
3360 if (get_irte(irq, &irte))
3361 return;
3362
Mike Travis22f65d32008-12-16 17:33:56 -08003363 dest = set_desc_affinity(desc, mask);
3364 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003365 return;
3366
Ingo Molnar54168ed2008-08-20 09:07:45 +02003367 irte.vector = cfg->vector;
3368 irte.dest_id = IRTE_DEST(dest);
3369
3370 /*
3371 * atomically update the IRTE with the new destination and vector.
3372 */
3373 modify_irte(irq, &irte);
3374
3375 /*
3376 * After this point, all the interrupts will start arriving
3377 * at the new destination. So, time to cleanup the previous
3378 * vector allocation.
3379 */
Mike Travis22f65d32008-12-16 17:33:56 -08003380 if (cfg->move_in_progress)
3381 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003382}
Yinghai Lu3145e942008-12-05 18:58:34 -08003383
Ingo Molnar54168ed2008-08-20 09:07:45 +02003384#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003385#endif /* CONFIG_SMP */
3386
3387/*
3388 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3389 * which implement the MSI or MSI-X Capability Structure.
3390 */
3391static struct irq_chip msi_chip = {
3392 .name = "PCI-MSI",
3393 .unmask = unmask_msi_irq,
3394 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003395 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003396#ifdef CONFIG_SMP
3397 .set_affinity = set_msi_irq_affinity,
3398#endif
3399 .retrigger = ioapic_retrigger_irq,
3400};
3401
Ingo Molnar54168ed2008-08-20 09:07:45 +02003402#ifdef CONFIG_INTR_REMAP
3403static struct irq_chip msi_ir_chip = {
3404 .name = "IR-PCI-MSI",
3405 .unmask = unmask_msi_irq,
3406 .mask = mask_msi_irq,
3407 .ack = ack_x2apic_edge,
3408#ifdef CONFIG_SMP
3409 .set_affinity = ir_set_msi_irq_affinity,
3410#endif
3411 .retrigger = ioapic_retrigger_irq,
3412};
3413
3414/*
3415 * Map the PCI dev to the corresponding remapping hardware unit
3416 * and allocate 'nvec' consecutive interrupt-remapping table entries
3417 * in it.
3418 */
3419static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3420{
3421 struct intel_iommu *iommu;
3422 int index;
3423
3424 iommu = map_dev_to_ir(dev);
3425 if (!iommu) {
3426 printk(KERN_ERR
3427 "Unable to map PCI %s to iommu\n", pci_name(dev));
3428 return -ENOENT;
3429 }
3430
3431 index = alloc_irte(iommu, irq, nvec);
3432 if (index < 0) {
3433 printk(KERN_ERR
3434 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003435 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003436 return -ENOSPC;
3437 }
3438 return index;
3439}
3440#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07003441
Yinghai Lu3145e942008-12-05 18:58:34 -08003442static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003443{
3444 int ret;
3445 struct msi_msg msg;
3446
3447 ret = msi_compose_msg(dev, irq, &msg);
3448 if (ret < 0)
3449 return ret;
3450
Yinghai Lu3145e942008-12-05 18:58:34 -08003451 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003452 write_msi_msg(irq, &msg);
3453
Ingo Molnar54168ed2008-08-20 09:07:45 +02003454#ifdef CONFIG_INTR_REMAP
3455 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
3463#endif
3464 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003465
Yinghai Luc81bba42008-09-25 11:53:11 -07003466 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3467
Yinghai Lu1d025192008-08-19 20:50:34 -07003468 return 0;
3469}
3470
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003471int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3472{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003473 unsigned int irq;
3474 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003475 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003476 unsigned int irq_want;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003477
Ingo Molnar54168ed2008-08-20 09:07:45 +02003478#ifdef CONFIG_INTR_REMAP
3479 struct intel_iommu *iommu = 0;
3480 int index = 0;
3481#endif
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#ifdef CONFIG_INTR_REMAP
3491 if (!intr_remapping_enabled)
3492 goto no_ir;
3493
3494 if (!sub_handle) {
3495 /*
3496 * allocate the consecutive block of IRTE's
3497 * for 'nvec'
3498 */
3499 index = msi_alloc_irte(dev, irq, nvec);
3500 if (index < 0) {
3501 ret = index;
3502 goto error;
3503 }
3504 } else {
3505 iommu = map_dev_to_ir(dev);
3506 if (!iommu) {
3507 ret = -ENOENT;
3508 goto error;
3509 }
3510 /*
3511 * setup the mapping between the irq and the IRTE
3512 * base index, the sub_handle pointing to the
3513 * appropriate interrupt remap table entry.
3514 */
3515 set_irte_irq(irq, iommu, index, sub_handle);
3516 }
3517no_ir:
3518#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003519 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003520 if (ret < 0)
3521 goto error;
3522 sub_handle++;
3523 }
3524 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003525
3526error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003527 destroy_irq(irq);
3528 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003529}
3530
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003531void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003532{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003533 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003534}
3535
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003536#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003537#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003538static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003539{
Yinghai Lu3145e942008-12-05 18:58:34 -08003540 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003541 struct irq_cfg *cfg;
3542 struct msi_msg msg;
3543 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003544
Mike Travis22f65d32008-12-16 17:33:56 -08003545 dest = set_desc_affinity(desc, mask);
3546 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003547 return;
3548
Yinghai Lu3145e942008-12-05 18:58:34 -08003549 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003550
3551 dmar_msi_read(irq, &msg);
3552
3553 msg.data &= ~MSI_DATA_VECTOR_MASK;
3554 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3555 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3556 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3557
3558 dmar_msi_write(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003559}
Yinghai Lu3145e942008-12-05 18:58:34 -08003560
Ingo Molnar54168ed2008-08-20 09:07:45 +02003561#endif /* CONFIG_SMP */
3562
3563struct irq_chip dmar_msi_type = {
3564 .name = "DMAR_MSI",
3565 .unmask = dmar_msi_unmask,
3566 .mask = dmar_msi_mask,
3567 .ack = ack_apic_edge,
3568#ifdef CONFIG_SMP
3569 .set_affinity = dmar_msi_set_affinity,
3570#endif
3571 .retrigger = ioapic_retrigger_irq,
3572};
3573
3574int arch_setup_dmar_msi(unsigned int irq)
3575{
3576 int ret;
3577 struct msi_msg msg;
3578
3579 ret = msi_compose_msg(NULL, irq, &msg);
3580 if (ret < 0)
3581 return ret;
3582 dmar_msi_write(irq, &msg);
3583 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3584 "edge");
3585 return 0;
3586}
3587#endif
3588
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003589#ifdef CONFIG_HPET_TIMER
3590
3591#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003592static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003593{
Yinghai Lu3145e942008-12-05 18:58:34 -08003594 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003595 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003596 struct msi_msg msg;
3597 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003598
Mike Travis22f65d32008-12-16 17:33:56 -08003599 dest = set_desc_affinity(desc, mask);
3600 if (dest == BAD_APICID)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003601 return;
3602
Yinghai Lu3145e942008-12-05 18:58:34 -08003603 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003604
3605 hpet_msi_read(irq, &msg);
3606
3607 msg.data &= ~MSI_DATA_VECTOR_MASK;
3608 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3609 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3610 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3611
3612 hpet_msi_write(irq, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003613}
Yinghai Lu3145e942008-12-05 18:58:34 -08003614
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003615#endif /* CONFIG_SMP */
3616
3617struct irq_chip hpet_msi_type = {
3618 .name = "HPET_MSI",
3619 .unmask = hpet_msi_unmask,
3620 .mask = hpet_msi_mask,
3621 .ack = ack_apic_edge,
3622#ifdef CONFIG_SMP
3623 .set_affinity = hpet_msi_set_affinity,
3624#endif
3625 .retrigger = ioapic_retrigger_irq,
3626};
3627
3628int arch_setup_hpet_msi(unsigned int irq)
3629{
3630 int ret;
3631 struct msi_msg msg;
3632
3633 ret = msi_compose_msg(NULL, irq, &msg);
3634 if (ret < 0)
3635 return ret;
3636
3637 hpet_msi_write(irq, &msg);
3638 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3639 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003640
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003641 return 0;
3642}
3643#endif
3644
Ingo Molnar54168ed2008-08-20 09:07:45 +02003645#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003646/*
3647 * Hypertransport interrupt support
3648 */
3649#ifdef CONFIG_HT_IRQ
3650
3651#ifdef CONFIG_SMP
3652
Yinghai Lu497c9a12008-08-19 20:50:28 -07003653static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003654{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003655 struct ht_irq_msg msg;
3656 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003657
Yinghai Lu497c9a12008-08-19 20:50:28 -07003658 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003659 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003660
Yinghai Lu497c9a12008-08-19 20:50:28 -07003661 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003662 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003663
Eric W. Biedermanec683072006-11-08 17:44:57 -08003664 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003665}
3666
Mike Travis22f65d32008-12-16 17:33:56 -08003667static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668{
Yinghai Lu3145e942008-12-05 18:58:34 -08003669 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003670 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003672
Mike Travis22f65d32008-12-16 17:33:56 -08003673 dest = set_desc_affinity(desc, mask);
3674 if (dest == BAD_APICID)
Yinghai Lu497c9a12008-08-19 20:50:28 -07003675 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003676
Yinghai Lu3145e942008-12-05 18:58:34 -08003677 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003678
Yinghai Lu497c9a12008-08-19 20:50:28 -07003679 target_ht_irq(irq, dest, cfg->vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003680}
Yinghai Lu3145e942008-12-05 18:58:34 -08003681
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003682#endif
3683
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003684static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003685 .name = "PCI-HT",
3686 .mask = mask_ht_irq,
3687 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003688 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003689#ifdef CONFIG_SMP
3690 .set_affinity = set_ht_irq_affinity,
3691#endif
3692 .retrigger = ioapic_retrigger_irq,
3693};
3694
3695int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3696{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003697 struct irq_cfg *cfg;
3698 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003699
Jan Beulichf1182632009-01-14 12:27:35 +00003700 if (disable_apic)
3701 return -ENXIO;
3702
Yinghai Lu3145e942008-12-05 18:58:34 -08003703 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003704 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003705 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003706 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003707 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003708
Ingo Molnardebccb32009-01-28 15:20:18 +01003709 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3710 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003711
Eric W. Biedermanec683072006-11-08 17:44:57 -08003712 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003713
Eric W. Biedermanec683072006-11-08 17:44:57 -08003714 msg.address_lo =
3715 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003716 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003717 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003718 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003719 HT_IRQ_LOW_DM_PHYSICAL :
3720 HT_IRQ_LOW_DM_LOGICAL) |
3721 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003722 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003723 HT_IRQ_LOW_MT_FIXED :
3724 HT_IRQ_LOW_MT_ARBITRATED) |
3725 HT_IRQ_LOW_IRQ_MASKED;
3726
Eric W. Biedermanec683072006-11-08 17:44:57 -08003727 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003728
Ingo Molnara460e742006-10-17 00:10:03 -07003729 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3730 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003731
3732 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003733 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003734 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003735}
3736#endif /* CONFIG_HT_IRQ */
3737
Nick Piggin03b48632009-01-20 04:36:04 +01003738#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003739/*
3740 * Re-target the irq to the specified CPU and enable the specified MMR located
3741 * on the specified blade to allow the sending of MSIs to the specified CPU.
3742 */
3743int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3744 unsigned long mmr_offset)
3745{
Mike Travis22f65d32008-12-16 17:33:56 -08003746 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003747 struct irq_cfg *cfg;
3748 int mmr_pnode;
3749 unsigned long mmr_value;
3750 struct uv_IO_APIC_route_entry *entry;
3751 unsigned long flags;
3752 int err;
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;
3767 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3768
3769 entry->vector = cfg->vector;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003770 entry->delivery_mode = apic->irq_delivery_mode;
3771 entry->dest_mode = apic->irq_dest_mode;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003772 entry->polarity = 0;
3773 entry->trigger = 0;
3774 entry->mask = 0;
Ingo Molnardebccb32009-01-28 15:20:18 +01003775 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003776
3777 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3778 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3779
3780 return irq;
3781}
3782
3783/*
3784 * Disable the specified MMR located on the specified blade so that MSIs are
3785 * longer allowed to be sent.
3786 */
3787void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3788{
3789 unsigned long mmr_value;
3790 struct uv_IO_APIC_route_entry *entry;
3791 int mmr_pnode;
3792
3793 mmr_value = 0;
3794 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3795 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3796
3797 entry->mask = 1;
3798
3799 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3800 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3801}
3802#endif /* CONFIG_X86_64 */
3803
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003804int __init io_apic_get_redir_entries (int ioapic)
3805{
3806 union IO_APIC_reg_01 reg_01;
3807 unsigned long flags;
3808
3809 spin_lock_irqsave(&ioapic_lock, flags);
3810 reg_01.raw = io_apic_read(ioapic, 1);
3811 spin_unlock_irqrestore(&ioapic_lock, flags);
3812
3813 return reg_01.bits.entries;
3814}
3815
Yinghai Lube5d5352008-12-05 18:58:33 -08003816void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003817{
Yinghai Lube5d5352008-12-05 18:58:33 -08003818 int nr = 0;
3819
Yinghai Lucc6c5002009-02-08 16:18:03 -08003820 nr = acpi_probe_gsi();
3821 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003822 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003823 } else {
3824 /* for acpi=off or acpi is not compiled in */
3825 int idx;
3826
3827 nr = 0;
3828 for (idx = 0; idx < nr_ioapics; idx++)
3829 nr += io_apic_get_redir_entries(idx) + 1;
3830
3831 if (nr > nr_irqs_gsi)
3832 nr_irqs_gsi = nr;
3833 }
3834
3835 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003836}
3837
Yinghai Lu4a046d12009-01-12 17:39:24 -08003838#ifdef CONFIG_SPARSE_IRQ
3839int __init arch_probe_nr_irqs(void)
3840{
3841 int nr;
3842
Yinghai Luf1ee5542009-02-08 16:18:03 -08003843 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3844 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003845
Yinghai Luf1ee5542009-02-08 16:18:03 -08003846 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3847#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3848 /*
3849 * for MSI and HT dyn irq
3850 */
3851 nr += nr_irqs_gsi * 16;
3852#endif
3853 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003854 nr_irqs = nr;
3855
3856 return 0;
3857}
3858#endif
3859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003861 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 -------------------------------------------------------------------------- */
3863
Len Brown888ba6c2005-08-24 12:07:20 -04003864#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Ingo Molnar54168ed2008-08-20 09:07:45 +02003866#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003867int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868{
3869 union IO_APIC_reg_00 reg_00;
3870 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3871 physid_mask_t tmp;
3872 unsigned long flags;
3873 int i = 0;
3874
3875 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003876 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3877 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003879 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3881 * advantage of new APIC bus architecture.
3882 */
3883
3884 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003885 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887 spin_lock_irqsave(&ioapic_lock, flags);
3888 reg_00.raw = io_apic_read(ioapic, 0);
3889 spin_unlock_irqrestore(&ioapic_lock, flags);
3890
3891 if (apic_id >= get_physical_broadcast()) {
3892 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3893 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3894 apic_id = reg_00.bits.ID;
3895 }
3896
3897 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003898 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 * 'stuck on smp_invalidate_needed IPI wait' messages.
3900 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003901 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003904 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 break;
3906 }
3907
3908 if (i == get_physical_broadcast())
3909 panic("Max apic_id exceeded!\n");
3910
3911 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3912 "trying %d\n", ioapic, apic_id, i);
3913
3914 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Ingo Molnar80587142009-01-28 06:50:47 +01003917 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 physids_or(apic_id_map, apic_id_map, tmp);
3919
3920 if (reg_00.bits.ID != apic_id) {
3921 reg_00.bits.ID = apic_id;
3922
3923 spin_lock_irqsave(&ioapic_lock, flags);
3924 io_apic_write(ioapic, 0, reg_00.raw);
3925 reg_00.raw = io_apic_read(ioapic, 0);
3926 spin_unlock_irqrestore(&ioapic_lock, flags);
3927
3928 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003929 if (reg_00.bits.ID != apic_id) {
3930 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3931 return -1;
3932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 }
3934
3935 apic_printk(APIC_VERBOSE, KERN_INFO
3936 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3937
3938 return apic_id;
3939}
3940
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003941int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
3943 union IO_APIC_reg_01 reg_01;
3944 unsigned long flags;
3945
3946 spin_lock_irqsave(&ioapic_lock, flags);
3947 reg_01.raw = io_apic_read(ioapic, 1);
3948 spin_unlock_irqrestore(&ioapic_lock, flags);
3949
3950 return reg_01.bits.version;
3951}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003952#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Ingo Molnar54168ed2008-08-20 09:07:45 +02003954int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003956 struct irq_desc *desc;
3957 struct irq_cfg *cfg;
3958 int cpu = boot_cpu_id;
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003961 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 ioapic);
3963 return -EINVAL;
3964 }
3965
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003966 desc = irq_to_desc_alloc_cpu(irq, cpu);
3967 if (!desc) {
3968 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3969 return 0;
3970 }
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 * IRQs < 16 are already in the irq_2_pin[] map
3974 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003975 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003976 cfg = desc->chip_data;
Yinghai Lu3145e942008-12-05 18:58:34 -08003977 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Yinghai Lu3145e942008-12-05 18:58:34 -08003980 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
3982 return 0;
3983}
3984
Ingo Molnar54168ed2008-08-20 09:07:45 +02003985
Shaohua Li61fd47e2007-11-17 01:05:28 -05003986int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3987{
3988 int i;
3989
3990 if (skip_ioapic_setup)
3991 return -1;
3992
3993 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05303994 if (mp_irqs[i].irqtype == mp_INT &&
3995 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003996 break;
3997 if (i >= mp_irq_entries)
3998 return -1;
3999
4000 *trigger = irq_trigger(i);
4001 *polarity = irq_polarity(i);
4002 return 0;
4003}
4004
Len Brown888ba6c2005-08-24 12:07:20 -04004005#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004006
Yinghai Lu497c9a12008-08-19 20:50:28 -07004007/*
4008 * This function currently is only a helper for the i386 smp boot process where
4009 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004010 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004011 */
4012#ifdef CONFIG_SMP
4013void __init setup_ioapic_dest(void)
4014{
4015 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004016 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004017 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08004018 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004019
4020 if (skip_ioapic_setup == 1)
4021 return;
4022
4023 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4024 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4025 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4026 if (irq_entry == -1)
4027 continue;
4028 irq = pin_2_irq(irq_entry, ioapic, pin);
4029
4030 /* setup_IO_APIC_irqs could fail to get vector for some device
4031 * when you have too many devices, because at that time only boot
4032 * cpu is online.
4033 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004034 desc = irq_to_desc(irq);
4035 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004036 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08004037 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07004038 irq_trigger(irq_entry),
4039 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004040 continue;
4041
4042 }
4043
4044 /*
4045 * Honour affinities which have been set in early boot
4046 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004047 if (desc->status &
4048 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travis7f7ace02009-01-10 21:58:08 -08004049 mask = desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004050 else
Ingo Molnarfe402e12009-01-28 04:32:51 +01004051 mask = apic->target_cpus();
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004052
4053#ifdef CONFIG_INTR_REMAP
4054 if (intr_remapping_enabled)
Yinghai Lu3145e942008-12-05 18:58:34 -08004055 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004056 else
4057#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08004058 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004059 }
4060
4061 }
4062}
4063#endif
4064
Ingo Molnar54168ed2008-08-20 09:07:45 +02004065#define IOAPIC_RESOURCE_NAME_SIZE 11
4066
4067static struct resource *ioapic_resources;
4068
4069static struct resource * __init ioapic_setup_resources(void)
4070{
4071 unsigned long n;
4072 struct resource *res;
4073 char *mem;
4074 int i;
4075
4076 if (nr_ioapics <= 0)
4077 return NULL;
4078
4079 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4080 n *= nr_ioapics;
4081
4082 mem = alloc_bootmem(n);
4083 res = (void *)mem;
4084
4085 if (mem != NULL) {
4086 mem += sizeof(struct resource) * nr_ioapics;
4087
4088 for (i = 0; i < nr_ioapics; i++) {
4089 res[i].name = mem;
4090 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4091 sprintf(mem, "IOAPIC %u", i);
4092 mem += IOAPIC_RESOURCE_NAME_SIZE;
4093 }
4094 }
4095
4096 ioapic_resources = res;
4097
4098 return res;
4099}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004100
Yinghai Luf3294a32008-06-27 01:41:56 -07004101void __init ioapic_init_mappings(void)
4102{
4103 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004104 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004105 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004106
Ingo Molnar54168ed2008-08-20 09:07:45 +02004107 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004108 for (i = 0; i < nr_ioapics; i++) {
4109 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304110 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004111#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004112 if (!ioapic_phys) {
4113 printk(KERN_ERR
4114 "WARNING: bogus zero IO-APIC "
4115 "address found in MPTABLE, "
4116 "disabling IO/APIC support!\n");
4117 smp_found_config = 0;
4118 skip_ioapic_setup = 1;
4119 goto fake_ioapic_page;
4120 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004121#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004122 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004123#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004124fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004125#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004126 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004127 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004128 ioapic_phys = __pa(ioapic_phys);
4129 }
4130 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004131 apic_printk(APIC_VERBOSE,
4132 "mapped IOAPIC to %08lx (%08lx)\n",
4133 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004134 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004135
Ingo Molnar54168ed2008-08-20 09:07:45 +02004136 if (ioapic_res != NULL) {
4137 ioapic_res->start = ioapic_phys;
4138 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4139 ioapic_res++;
4140 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004141 }
4142}
4143
Ingo Molnar54168ed2008-08-20 09:07:45 +02004144static int __init ioapic_insert_resources(void)
4145{
4146 int i;
4147 struct resource *r = ioapic_resources;
4148
4149 if (!r) {
4150 printk(KERN_ERR
4151 "IO APIC resources could be not be allocated.\n");
4152 return -1;
4153 }
4154
4155 for (i = 0; i < nr_ioapics; i++) {
4156 insert_resource(&iomem_resource, r);
4157 r++;
4158 }
4159
4160 return 0;
4161}
4162
4163/* Insert the IO APIC resources after PCI initialization has occured to handle
4164 * IO APICS that are mapped in on a BAR in PCI space. */
4165late_initcall(ioapic_insert_resources);