blob: 9cd4806cdf5f6f04b992ae16041df9d2ed5a5ac2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050062#include <asm/uv/uv_hub.h>
63#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar7b6aa332009-02-17 13:58:15 +010065#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067#define __apicdebuginit(type) static type __init
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020070 * Is the SiS APIC rmw bug present ?
71 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
73int sis_apic_bug = -1;
74
Yinghai Luefa25592008-08-19 20:50:36 -070075static DEFINE_SPINLOCK(ioapic_lock);
76static DEFINE_SPINLOCK(vector_lock);
77
Yinghai Luefa25592008-08-19 20:50:36 -070078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * # of IRQ routing registers
80 */
81int nr_ioapic_registers[MAX_IO_APICS];
82
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040083/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053084struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040085int nr_ioapics;
86
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040087/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053088struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040089
90/* # of MP IRQ source entries */
91int mp_irq_entries;
92
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040093#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
94int mp_bus_id_to_type[MAX_MP_BUSSES];
95#endif
96
97DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
98
Yinghai Luefa25592008-08-19 20:50:36 -070099int skip_ioapic_setup;
100
Ingo Molnar65a4e572009-01-31 03:36:17 +0100101void arch_disable_smp_support(void)
102{
103#ifdef CONFIG_PCI
104 noioapicquirk = 1;
105 noioapicreroute = -1;
106#endif
107 skip_ioapic_setup = 1;
108}
109
Ingo Molnar54168ed2008-08-20 09:07:45 +0200110static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700111{
112 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100113 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700114 return 0;
115}
116early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200117
Yinghai Lu0f978f42008-08-19 20:50:26 -0700118struct irq_pin_list;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * This is performance-critical, we want to do it O(1)
122 *
123 * the indexing order of this array favors 1:1 mappings
124 * between pins and IRQs.
125 */
126
Yinghai Lu0f978f42008-08-19 20:50:26 -0700127struct irq_pin_list {
128 int apic, pin;
129 struct irq_pin_list *next;
130};
Yinghai Lu301e6192008-08-19 20:50:02 -0700131
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700132static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700135
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800136 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700137
Yinghai Lu0f978f42008-08-19 20:50:26 -0700138 return pin;
139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800141struct irq_cfg {
142 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800143 cpumask_var_t domain;
144 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145 unsigned move_cleanup_count;
146 u8 vector;
147 u8 move_in_progress : 1;
148};
149
150/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
151#ifdef CONFIG_SPARSE_IRQ
152static struct irq_cfg irq_cfgx[] = {
153#else
154static struct irq_cfg irq_cfgx[NR_IRQS] = {
155#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800156 [0] = { .vector = IRQ0_VECTOR, },
157 [1] = { .vector = IRQ1_VECTOR, },
158 [2] = { .vector = IRQ2_VECTOR, },
159 [3] = { .vector = IRQ3_VECTOR, },
160 [4] = { .vector = IRQ4_VECTOR, },
161 [5] = { .vector = IRQ5_VECTOR, },
162 [6] = { .vector = IRQ6_VECTOR, },
163 [7] = { .vector = IRQ7_VECTOR, },
164 [8] = { .vector = IRQ8_VECTOR, },
165 [9] = { .vector = IRQ9_VECTOR, },
166 [10] = { .vector = IRQ10_VECTOR, },
167 [11] = { .vector = IRQ11_VECTOR, },
168 [12] = { .vector = IRQ12_VECTOR, },
169 [13] = { .vector = IRQ13_VECTOR, },
170 [14] = { .vector = IRQ14_VECTOR, },
171 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800172};
173
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800174int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800175{
176 struct irq_cfg *cfg;
177 struct irq_desc *desc;
178 int count;
179 int i;
180
181 cfg = irq_cfgx;
182 count = ARRAY_SIZE(irq_cfgx);
183
184 for (i = 0; i < count; i++) {
185 desc = irq_to_desc(i);
186 desc->chip_data = &cfg[i];
Mike Travis22f65d32008-12-16 17:33:56 -0800187 alloc_bootmem_cpumask_var(&cfg[i].domain);
188 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
189 if (i < NR_IRQS_LEGACY)
190 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800191 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800192
193 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800194}
195
196#ifdef CONFIG_SPARSE_IRQ
197static struct irq_cfg *irq_cfg(unsigned int irq)
198{
199 struct irq_cfg *cfg = NULL;
200 struct irq_desc *desc;
201
202 desc = irq_to_desc(irq);
203 if (desc)
204 cfg = desc->chip_data;
205
206 return cfg;
207}
208
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700209static struct irq_cfg *get_one_free_irq_cfg(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800210{
211 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800212
213 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800214 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800215 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800216 kfree(cfg);
217 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800218 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
219 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800220 free_cpumask_var(cfg->domain);
221 kfree(cfg);
222 cfg = NULL;
223 } else {
224 cpumask_clear(cfg->domain);
225 cpumask_clear(cfg->old_domain);
226 }
227 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800228
229 return cfg;
230}
231
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700232int arch_init_chip_data(struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800233{
234 struct irq_cfg *cfg;
235
236 cfg = desc->chip_data;
237 if (!cfg) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700238 desc->chip_data = get_one_free_irq_cfg(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800239 if (!desc->chip_data) {
240 printk(KERN_ERR "can not alloc irq_cfg\n");
241 BUG_ON(1);
242 }
243 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800244
245 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800246}
247
Yinghai Lufcef5912009-04-27 17:58:23 -0700248/* for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800249static void
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700250init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800251{
252 struct irq_pin_list *old_entry, *head, *tail, *entry;
253
254 cfg->irq_2_pin = NULL;
255 old_entry = old_cfg->irq_2_pin;
256 if (!old_entry)
257 return;
258
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700259 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800260 if (!entry)
261 return;
262
263 entry->apic = old_entry->apic;
264 entry->pin = old_entry->pin;
265 head = entry;
266 tail = entry;
267 old_entry = old_entry->next;
268 while (old_entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700269 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800270 if (!entry) {
271 entry = head;
272 while (entry) {
273 head = entry->next;
274 kfree(entry);
275 entry = head;
276 }
277 /* still use the old one */
278 return;
279 }
280 entry->apic = old_entry->apic;
281 entry->pin = old_entry->pin;
282 tail->next = entry;
283 tail = entry;
284 old_entry = old_entry->next;
285 }
286
287 tail->next = NULL;
288 cfg->irq_2_pin = head;
289}
290
291static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
292{
293 struct irq_pin_list *entry, *next;
294
295 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
296 return;
297
298 entry = old_cfg->irq_2_pin;
299
300 while (entry) {
301 next = entry->next;
302 kfree(entry);
303 entry = next;
304 }
305 old_cfg->irq_2_pin = NULL;
306}
307
308void arch_init_copy_chip_data(struct irq_desc *old_desc,
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700309 struct irq_desc *desc, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800310{
311 struct irq_cfg *cfg;
312 struct irq_cfg *old_cfg;
313
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700314 cfg = get_one_free_irq_cfg(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800315
316 if (!cfg)
317 return;
318
319 desc->chip_data = cfg;
320
321 old_cfg = old_desc->chip_data;
322
323 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
324
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700325 init_copy_irq_2_pin(old_cfg, cfg, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800326}
327
328static void free_irq_cfg(struct irq_cfg *old_cfg)
329{
330 kfree(old_cfg);
331}
332
333void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
334{
335 struct irq_cfg *old_cfg, *cfg;
336
337 old_cfg = old_desc->chip_data;
338 cfg = desc->chip_data;
339
340 if (old_cfg == cfg)
341 return;
342
343 if (old_cfg) {
344 free_irq_2_pin(old_cfg, cfg);
345 free_irq_cfg(old_cfg);
346 old_desc->chip_data = NULL;
347 }
348}
Yinghai Lufcef5912009-04-27 17:58:23 -0700349/* end for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800350
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800351#else
352static struct irq_cfg *irq_cfg(unsigned int irq)
353{
354 return irq < nr_irqs ? irq_cfgx + irq : NULL;
355}
356
357#endif
358
Linus Torvalds130fe052006-11-01 09:11:00 -0800359struct io_apic {
360 unsigned int index;
361 unsigned int unused[3];
362 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700363 unsigned int unused2[11];
364 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800365};
366
367static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
368{
369 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530370 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800371}
372
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700373static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
374{
375 struct io_apic __iomem *io_apic = io_apic_base(apic);
376 writel(vector, &io_apic->eoi);
377}
378
Linus Torvalds130fe052006-11-01 09:11:00 -0800379static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
380{
381 struct io_apic __iomem *io_apic = io_apic_base(apic);
382 writel(reg, &io_apic->index);
383 return readl(&io_apic->data);
384}
385
386static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
387{
388 struct io_apic __iomem *io_apic = io_apic_base(apic);
389 writel(reg, &io_apic->index);
390 writel(value, &io_apic->data);
391}
392
393/*
394 * Re-write a value: to be used for read-modify-write
395 * cycles where the read already set up the index register.
396 *
397 * Older SiS APIC requires we rewrite the index register
398 */
399static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
400{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200401 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200402
403 if (sis_apic_bug)
404 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800405 writel(value, &io_apic->data);
406}
407
Yinghai Lu3145e942008-12-05 18:58:34 -0800408static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700409{
410 struct irq_pin_list *entry;
411 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700412
413 spin_lock_irqsave(&ioapic_lock, flags);
414 entry = cfg->irq_2_pin;
415 for (;;) {
416 unsigned int reg;
417 int pin;
418
419 if (!entry)
420 break;
421 pin = entry->pin;
422 reg = io_apic_read(entry->apic, 0x10 + pin*2);
423 /* Is the remote IRR bit set? */
424 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
425 spin_unlock_irqrestore(&ioapic_lock, flags);
426 return true;
427 }
428 if (!entry->next)
429 break;
430 entry = entry->next;
431 }
432 spin_unlock_irqrestore(&ioapic_lock, flags);
433
434 return false;
435}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700436
Andi Kleencf4c6a22006-09-26 10:52:30 +0200437union entry_union {
438 struct { u32 w1, w2; };
439 struct IO_APIC_route_entry entry;
440};
441
442static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
443{
444 union entry_union eu;
445 unsigned long flags;
446 spin_lock_irqsave(&ioapic_lock, flags);
447 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
448 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
449 spin_unlock_irqrestore(&ioapic_lock, flags);
450 return eu.entry;
451}
452
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800453/*
454 * When we write a new IO APIC routing entry, we need to write the high
455 * word first! If the mask bit in the low word is clear, we will enable
456 * the interrupt, and we need to make sure the entry is fully populated
457 * before that happens.
458 */
Andi Kleend15512f2006-12-07 02:14:07 +0100459static void
460__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
461{
462 union entry_union eu;
463 eu.entry = e;
464 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
465 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
466}
467
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800468void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200469{
470 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200471 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100472 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800473 spin_unlock_irqrestore(&ioapic_lock, flags);
474}
475
476/*
477 * When we mask an IO APIC routing entry, we need to write the low
478 * word first, in order to set the mask bit before we change the
479 * high bits!
480 */
481static void ioapic_mask_entry(int apic, int pin)
482{
483 unsigned long flags;
484 union entry_union eu = { .entry.mask = 1 };
485
486 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200487 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
488 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
489 spin_unlock_irqrestore(&ioapic_lock, flags);
490}
491
Yinghai Lu497c9a12008-08-19 20:50:28 -0700492#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -0800493static void send_cleanup_vector(struct irq_cfg *cfg)
494{
495 cpumask_var_t cleanup_mask;
496
497 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
498 unsigned int i;
499 cfg->move_cleanup_count = 0;
500 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
501 cfg->move_cleanup_count++;
502 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
Ingo Molnardac5f412009-01-28 15:42:24 +0100503 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800504 } else {
505 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
506 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
Ingo Molnardac5f412009-01-28 15:42:24 +0100507 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800508 free_cpumask_var(cleanup_mask);
509 }
510 cfg->move_in_progress = 0;
511}
512
Yinghai Lu3145e942008-12-05 18:58:34 -0800513static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700514{
515 int apic, pin;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700516 struct irq_pin_list *entry;
Yinghai Lu3145e942008-12-05 18:58:34 -0800517 u8 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700518
Yinghai Lu497c9a12008-08-19 20:50:28 -0700519 entry = cfg->irq_2_pin;
520 for (;;) {
521 unsigned int reg;
522
523 if (!entry)
524 break;
525
526 apic = entry->apic;
527 pin = entry->pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200528 /*
529 * With interrupt-remapping, destination information comes
530 * from interrupt-remapping table entry.
531 */
532 if (!irq_remapped(irq))
533 io_apic_write(apic, 0x11 + pin*2, dest);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700534 reg = io_apic_read(apic, 0x10 + pin*2);
535 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
536 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200537 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700538 if (!entry->next)
539 break;
540 entry = entry->next;
541 }
542}
Yinghai Luefa25592008-08-19 20:50:36 -0700543
Mike Travise7986732008-12-16 17:33:52 -0800544static int
545assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
Yinghai Luefa25592008-08-19 20:50:36 -0700546
Mike Travis22f65d32008-12-16 17:33:56 -0800547/*
Ingo Molnardebccb32009-01-28 15:20:18 +0100548 * Either sets desc->affinity to a valid value, and returns
549 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
550 * leaves desc->affinity untouched.
Mike Travis22f65d32008-12-16 17:33:56 -0800551 */
552static unsigned int
553set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700554{
555 struct irq_cfg *cfg;
Yinghai Lu3145e942008-12-05 18:58:34 -0800556 unsigned int irq;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700557
Rusty Russell0de26522008-12-13 21:20:26 +1030558 if (!cpumask_intersects(mask, cpu_online_mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800559 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700560
Yinghai Lu3145e942008-12-05 18:58:34 -0800561 irq = desc->irq;
562 cfg = desc->chip_data;
563 if (assign_irq_vector(irq, cfg, mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800564 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700565
Rusty Russelle06b1b52009-03-24 14:17:19 -0700566 cpumask_copy(desc->affinity, mask);
567
568 return apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
Mike Travis22f65d32008-12-16 17:33:56 -0800569}
Yinghai Lu3145e942008-12-05 18:58:34 -0800570
Yinghai Lud5dedd42009-04-27 17:59:21 -0700571static int
Mike Travis22f65d32008-12-16 17:33:56 -0800572set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700573{
574 struct irq_cfg *cfg;
575 unsigned long flags;
576 unsigned int dest;
Mike Travis22f65d32008-12-16 17:33:56 -0800577 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -0700578 int ret = -1;
Mike Travis22f65d32008-12-16 17:33:56 -0800579
580 irq = desc->irq;
581 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700582
583 spin_lock_irqsave(&ioapic_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -0800584 dest = set_desc_affinity(desc, mask);
585 if (dest != BAD_APICID) {
586 /* Only the high 8 bits are valid. */
587 dest = SET_APIC_LOGICAL_ID(dest);
588 __target_IO_APIC_irq(irq, dest, cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700589 ret = 0;
Mike Travis22f65d32008-12-16 17:33:56 -0800590 }
Yinghai Lu497c9a12008-08-19 20:50:28 -0700591 spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700592
593 return ret;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700594}
Yinghai Lu3145e942008-12-05 18:58:34 -0800595
Yinghai Lud5dedd42009-04-27 17:59:21 -0700596static int
Mike Travis22f65d32008-12-16 17:33:56 -0800597set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800598{
Yinghai Lu497c9a12008-08-19 20:50:28 -0700599 struct irq_desc *desc;
600
Yinghai Lu497c9a12008-08-19 20:50:28 -0700601 desc = irq_to_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800602
Yinghai Lud5dedd42009-04-27 17:59:21 -0700603 return set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700604}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700605#endif /* CONFIG_SMP */
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/*
608 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
609 * shared ISA-space IRQs, so we have to support them. We are super
610 * fast in the common case, and fast for shared ISA-space IRQs.
611 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700612static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700614 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Yinghai Lu0f978f42008-08-19 20:50:26 -0700616 entry = cfg->irq_2_pin;
617 if (!entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700618 entry = get_one_free_irq_2_pin(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800619 if (!entry) {
620 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
621 apic, pin);
622 return;
623 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700624 cfg->irq_2_pin = entry;
625 entry->apic = apic;
626 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700627 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700629
630 while (entry->next) {
631 /* not again, please */
632 if (entry->apic == apic && entry->pin == pin)
633 return;
634
635 entry = entry->next;
636 }
637
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700638 entry->next = get_one_free_irq_2_pin(node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700639 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 entry->apic = apic;
641 entry->pin = pin;
642}
643
644/*
645 * Reroute an IRQ to a different pin.
646 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700647static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int oldapic, int oldpin,
649 int newapic, int newpin)
650{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700651 struct irq_pin_list *entry = cfg->irq_2_pin;
652 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Yinghai Lu0f978f42008-08-19 20:50:26 -0700654 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (entry->apic == oldapic && entry->pin == oldpin) {
656 entry->apic = newapic;
657 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700658 replaced = 1;
659 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700661 }
662 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700664
665 /* why? call replace before add? */
666 if (!replaced)
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700667 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Yinghai Lu3145e942008-12-05 18:58:34 -0800670static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400671 int mask_and, int mask_or,
672 void (*final)(struct irq_pin_list *entry))
673{
674 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400675 struct irq_pin_list *entry;
676
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400677 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
678 unsigned int reg;
679 pin = entry->pin;
680 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
681 reg &= mask_and;
682 reg |= mask_or;
683 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
684 if (final)
685 final(entry);
686 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700687}
688
Yinghai Lu3145e942008-12-05 18:58:34 -0800689static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400690{
Yinghai Lu3145e942008-12-05 18:58:34 -0800691 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400692}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700693
694#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530695static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700696{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400697 /*
698 * Synchronize the IO-APIC and the CPU by doing
699 * a dummy read from the IO-APIC
700 */
701 struct io_apic __iomem *io_apic;
702 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700703 readl(&io_apic->data);
704}
705
Yinghai Lu3145e942008-12-05 18:58:34 -0800706static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400707{
Yinghai Lu3145e942008-12-05 18:58:34 -0800708 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400709}
710#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800711static void __mask_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, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400714}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700715
Yinghai Lu3145e942008-12-05 18:58:34 -0800716static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400717{
Yinghai Lu3145e942008-12-05 18:58:34 -0800718 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400719 IO_APIC_REDIR_MASKED, NULL);
720}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700721
Yinghai Lu3145e942008-12-05 18:58:34 -0800722static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400723{
Yinghai Lu3145e942008-12-05 18:58:34 -0800724 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400725 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
726}
727#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700728
Yinghai Lu3145e942008-12-05 18:58:34 -0800729static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Yinghai Lu3145e942008-12-05 18:58:34 -0800731 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 unsigned long flags;
733
Yinghai Lu3145e942008-12-05 18:58:34 -0800734 BUG_ON(!cfg);
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800737 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_unlock_irqrestore(&ioapic_lock, flags);
739}
740
Yinghai Lu3145e942008-12-05 18:58:34 -0800741static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Yinghai Lu3145e942008-12-05 18:58:34 -0800743 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 unsigned long flags;
745
746 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800747 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 spin_unlock_irqrestore(&ioapic_lock, flags);
749}
750
Yinghai Lu3145e942008-12-05 18:58:34 -0800751static void mask_IO_APIC_irq(unsigned int irq)
752{
753 struct irq_desc *desc = irq_to_desc(irq);
754
755 mask_IO_APIC_irq_desc(desc);
756}
757static void unmask_IO_APIC_irq(unsigned int irq)
758{
759 struct irq_desc *desc = irq_to_desc(irq);
760
761 unmask_IO_APIC_irq_desc(desc);
762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
765{
766 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200769 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (entry.delivery_mode == dest_SMI)
771 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /*
773 * Disable it in the IO-APIC irq-routing table:
774 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800775 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Ingo Molnar54168ed2008-08-20 09:07:45 +0200778static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 int apic, pin;
781
782 for (apic = 0; apic < nr_ioapics; apic++)
783 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
784 clear_IO_APIC_pin(apic, pin);
785}
786
Ingo Molnar54168ed2008-08-20 09:07:45 +0200787#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/*
789 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
790 * specific CPU-side IRQs.
791 */
792
793#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800794static int pirq_entries[MAX_PIRQS] = {
795 [0 ... MAX_PIRQS - 1] = -1
796};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798static int __init ioapic_pirq_setup(char *str)
799{
800 int i, max;
801 int ints[MAX_PIRQS+1];
802
803 get_options(str, ARRAY_SIZE(ints), ints);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 apic_printk(APIC_VERBOSE, KERN_INFO
806 "PIRQ redirection, working around broken MP-BIOS.\n");
807 max = MAX_PIRQS;
808 if (ints[0] < MAX_PIRQS)
809 max = ints[0];
810
811 for (i = 0; i < max; i++) {
812 apic_printk(APIC_VERBOSE, KERN_DEBUG
813 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
814 /*
815 * PIRQs are mapped upside down, usually.
816 */
817 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
818 }
819 return 1;
820}
821
822__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200823#endif /* CONFIG_X86_32 */
824
825#ifdef CONFIG_INTR_REMAP
Fenghua Yub24696b2009-03-27 14:22:44 -0700826struct IO_APIC_route_entry **alloc_ioapic_entries(void)
827{
828 int apic;
829 struct IO_APIC_route_entry **ioapic_entries;
830
831 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
832 GFP_ATOMIC);
833 if (!ioapic_entries)
834 return 0;
835
836 for (apic = 0; apic < nr_ioapics; apic++) {
837 ioapic_entries[apic] =
838 kzalloc(sizeof(struct IO_APIC_route_entry) *
839 nr_ioapic_registers[apic], GFP_ATOMIC);
840 if (!ioapic_entries[apic])
841 goto nomem;
842 }
843
844 return ioapic_entries;
845
846nomem:
847 while (--apic >= 0)
848 kfree(ioapic_entries[apic]);
849 kfree(ioapic_entries);
850
851 return 0;
852}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200853
854/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700855 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200856 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700857int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200858{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200859 int apic, pin;
860
Fenghua Yub24696b2009-03-27 14:22:44 -0700861 if (!ioapic_entries)
862 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200863
864 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700865 if (!ioapic_entries[apic])
866 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200867
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700868 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700869 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200870 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700871 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400872
Ingo Molnar54168ed2008-08-20 09:07:45 +0200873 return 0;
874}
875
Fenghua Yub24696b2009-03-27 14:22:44 -0700876/*
877 * Mask all IO APIC entries.
878 */
879void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700880{
881 int apic, pin;
882
Fenghua Yub24696b2009-03-27 14:22:44 -0700883 if (!ioapic_entries)
884 return;
885
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700886 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700887 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700888 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700889
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700890 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
891 struct IO_APIC_route_entry entry;
892
Fenghua Yub24696b2009-03-27 14:22:44 -0700893 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700894 if (!entry.mask) {
895 entry.mask = 1;
896 ioapic_write_entry(apic, pin, entry);
897 }
898 }
899 }
900}
901
Fenghua Yub24696b2009-03-27 14:22:44 -0700902/*
903 * Restore IO APIC entries which was saved in ioapic_entries.
904 */
905int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200906{
907 int apic, pin;
908
Fenghua Yub24696b2009-03-27 14:22:44 -0700909 if (!ioapic_entries)
910 return -ENOMEM;
911
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400912 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700913 if (!ioapic_entries[apic])
914 return -ENOMEM;
915
Ingo Molnar54168ed2008-08-20 09:07:45 +0200916 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
917 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700918 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400919 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700920 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200921}
922
Fenghua Yub24696b2009-03-27 14:22:44 -0700923void reinit_intr_remapped_IO_APIC(int intr_remapping,
924 struct IO_APIC_route_entry **ioapic_entries)
925
Ingo Molnar54168ed2008-08-20 09:07:45 +0200926{
927 /*
928 * for now plain restore of previous settings.
929 * TBD: In the case of OS enabling interrupt-remapping,
930 * IO-APIC RTE's need to be setup to point to interrupt-remapping
931 * table entries. for now, do a plain restore, and wait for
932 * the setup_IO_APIC_irqs() to do proper initialization.
933 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700934 restore_IO_APIC_setup(ioapic_entries);
935}
936
937void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
938{
939 int apic;
940
941 for (apic = 0; apic < nr_ioapics; apic++)
942 kfree(ioapic_entries[apic]);
943
944 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200945}
946#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948/*
949 * Find the IRQ entry number of a certain pin.
950 */
951static int find_irq_entry(int apic, int pin, int type)
952{
953 int i;
954
955 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530956 if (mp_irqs[i].irqtype == type &&
957 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
958 mp_irqs[i].dstapic == MP_APIC_ALL) &&
959 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return i;
961
962 return -1;
963}
964
965/*
966 * Find the pin to which IRQ[irq] (ISA) is connected
967 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800968static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 int i;
971
972 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530973 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300975 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530976 (mp_irqs[i].irqtype == type) &&
977 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530979 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 return -1;
982}
983
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800984static int __init find_isa_irq_apic(int irq, int type)
985{
986 int i;
987
988 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530989 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800990
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300991 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530992 (mp_irqs[i].irqtype == type) &&
993 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800994 break;
995 }
996 if (i < mp_irq_entries) {
997 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200998 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530999 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001000 return apic;
1001 }
1002 }
1003
1004 return -1;
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * Find a specific PCI IRQ entry.
1009 * Not an __init, possibly needed by modules
1010 */
1011static int pin_2_irq(int idx, int apic, int pin);
1012
1013int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
1014{
1015 int apic, i, best_guess = -1;
1016
Ingo Molnar54168ed2008-08-20 09:07:45 +02001017 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1018 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +04001019 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001020 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return -1;
1022 }
1023 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301024 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 for (apic = 0; apic < nr_ioapics; apic++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301027 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1028 mp_irqs[i].dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 break;
1030
Alexey Starikovskiy47cab822008-03-20 14:54:30 +03001031 if (!test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301032 !mp_irqs[i].irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 (bus == lbus) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301034 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1035 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!(apic || IO_APIC_IRQ(irq)))
1038 continue;
1039
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301040 if (pin == (mp_irqs[i].srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return irq;
1042 /*
1043 * Use the first all-but-pin matching entry as a
1044 * best-guess fuzzy result for broken mptables.
1045 */
1046 if (best_guess < 0)
1047 best_guess = irq;
1048 }
1049 }
1050 return best_guess;
1051}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001052
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001053EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001055#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056/*
1057 * EISA Edge/Level control register, ELCR
1058 */
1059static int EISA_ELCR(unsigned int irq)
1060{
Yinghai Lu99d093d2008-12-05 18:58:32 -08001061 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 unsigned int port = 0x4d0 + (irq >> 3);
1063 return (inb(port) >> (irq & 7)) & 1;
1064 }
1065 apic_printk(APIC_VERBOSE, KERN_INFO
1066 "Broken MPtable reports ISA irq %d\n", irq);
1067 return 0;
1068}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001069
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001070#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001072/* ISA interrupts are always polarity zero edge triggered,
1073 * when listed as conforming in the MP table. */
1074
1075#define default_ISA_trigger(idx) (0)
1076#define default_ISA_polarity(idx) (0)
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078/* EISA interrupts are always polarity zero and can be edge or level
1079 * trigger depending on the ELCR value. If an interrupt is listed as
1080 * EISA conforming in the MP table, that means its trigger type must
1081 * be read in from the ELCR */
1082
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301083#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001084#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086/* PCI interrupts are always polarity one level triggered,
1087 * when listed as conforming in the MP table. */
1088
1089#define default_PCI_trigger(idx) (1)
1090#define default_PCI_polarity(idx) (1)
1091
1092/* MCA interrupts are always polarity zero level triggered,
1093 * when listed as conforming in the MP table. */
1094
1095#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001096#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Shaohua Li61fd47e2007-11-17 01:05:28 -05001098static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301100 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 int polarity;
1102
1103 /*
1104 * Determine IRQ line polarity (high active or low active):
1105 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301106 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001108 case 0: /* conforms, ie. bus-type dependent polarity */
1109 if (test_bit(bus, mp_bus_not_pci))
1110 polarity = default_ISA_polarity(idx);
1111 else
1112 polarity = default_PCI_polarity(idx);
1113 break;
1114 case 1: /* high active */
1115 {
1116 polarity = 0;
1117 break;
1118 }
1119 case 2: /* reserved */
1120 {
1121 printk(KERN_WARNING "broken BIOS!!\n");
1122 polarity = 1;
1123 break;
1124 }
1125 case 3: /* low active */
1126 {
1127 polarity = 1;
1128 break;
1129 }
1130 default: /* invalid */
1131 {
1132 printk(KERN_WARNING "broken BIOS!!\n");
1133 polarity = 1;
1134 break;
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 return polarity;
1138}
1139
1140static int MPBIOS_trigger(int idx)
1141{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301142 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int trigger;
1144
1145 /*
1146 * Determine IRQ trigger mode (edge or level sensitive):
1147 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301148 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001150 case 0: /* conforms, ie. bus-type dependent */
1151 if (test_bit(bus, mp_bus_not_pci))
1152 trigger = default_ISA_trigger(idx);
1153 else
1154 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001155#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001156 switch (mp_bus_id_to_type[bus]) {
1157 case MP_BUS_ISA: /* ISA pin */
1158 {
1159 /* set before the switch */
1160 break;
1161 }
1162 case MP_BUS_EISA: /* EISA pin */
1163 {
1164 trigger = default_EISA_trigger(idx);
1165 break;
1166 }
1167 case MP_BUS_PCI: /* PCI pin */
1168 {
1169 /* set before the switch */
1170 break;
1171 }
1172 case MP_BUS_MCA: /* MCA pin */
1173 {
1174 trigger = default_MCA_trigger(idx);
1175 break;
1176 }
1177 default:
1178 {
1179 printk(KERN_WARNING "broken BIOS!!\n");
1180 trigger = 1;
1181 break;
1182 }
1183 }
1184#endif
1185 break;
1186 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001187 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001188 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001189 break;
1190 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001191 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001192 {
1193 printk(KERN_WARNING "broken BIOS!!\n");
1194 trigger = 1;
1195 break;
1196 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001197 case 3: /* level */
1198 {
1199 trigger = 1;
1200 break;
1201 }
1202 default: /* invalid */
1203 {
1204 printk(KERN_WARNING "broken BIOS!!\n");
1205 trigger = 0;
1206 break;
1207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209 return trigger;
1210}
1211
1212static inline int irq_polarity(int idx)
1213{
1214 return MPBIOS_polarity(idx);
1215}
1216
1217static inline int irq_trigger(int idx)
1218{
1219 return MPBIOS_trigger(idx);
1220}
1221
Yinghai Luefa25592008-08-19 20:50:36 -07001222int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223static int pin_2_irq(int idx, int apic, int pin)
1224{
1225 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301226 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 /*
1229 * Debugging check, we are in big trouble if this message pops up!
1230 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301231 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1233
Ingo Molnar54168ed2008-08-20 09:07:45 +02001234 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301235 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001236 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001237 /*
1238 * PCI IRQs are mapped in order
1239 */
1240 i = irq = 0;
1241 while (i < apic)
1242 irq += nr_ioapic_registers[i++];
1243 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001244 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001245 * For MPS mode, so far only needed by ES7000 platform
1246 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001247 if (ioapic_renumber_irq)
1248 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
Ingo Molnar54168ed2008-08-20 09:07:45 +02001251#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1254 */
1255 if ((pin >= 16) && (pin <= 23)) {
1256 if (pirq_entries[pin-16] != -1) {
1257 if (!pirq_entries[pin-16]) {
1258 apic_printk(APIC_VERBOSE, KERN_DEBUG
1259 "disabling PIRQ%d\n", pin-16);
1260 } else {
1261 irq = pirq_entries[pin-16];
1262 apic_printk(APIC_VERBOSE, KERN_DEBUG
1263 "using PIRQ%d -> IRQ %d\n",
1264 pin-16, irq);
1265 }
1266 }
1267 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001268#endif
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return irq;
1271}
1272
Yinghai Lu497c9a12008-08-19 20:50:28 -07001273void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001275 /* Used to the online set of cpus does not change
1276 * during assign_irq_vector.
1277 */
1278 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Yinghai Lu497c9a12008-08-19 20:50:28 -07001281void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001282{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001283 spin_unlock(&vector_lock);
1284}
1285
Mike Travise7986732008-12-16 17:33:52 -08001286static int
1287__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001288{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001289 /*
1290 * NOTE! The local APIC isn't very good at handling
1291 * multiple interrupts at the same interrupt level.
1292 * As the interrupt level is determined by taking the
1293 * vector number and shifting that right by 4, we
1294 * want to spread these out a bit so that they don't
1295 * all fall in the same interrupt level.
1296 *
1297 * Also, we've got to be careful not to trash gate
1298 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1299 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001300 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1301 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001302 int cpu, err;
1303 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001304
Ingo Molnar54168ed2008-08-20 09:07:45 +02001305 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1306 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001307
Mike Travis22f65d32008-12-16 17:33:56 -08001308 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1309 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001310
Ingo Molnar54168ed2008-08-20 09:07:45 +02001311 old_vector = cfg->vector;
1312 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001313 cpumask_and(tmp_mask, mask, cpu_online_mask);
1314 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1315 if (!cpumask_empty(tmp_mask)) {
1316 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001317 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001318 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001319 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001320
Mike Travise7986732008-12-16 17:33:52 -08001321 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001322 err = -ENOSPC;
1323 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001324 int new_cpu;
1325 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001326
Ingo Molnare2d40b12009-01-28 06:50:47 +01001327 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001328
Ingo Molnar54168ed2008-08-20 09:07:45 +02001329 vector = current_vector;
1330 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001331next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001332 vector += 8;
1333 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001334 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001335 offset = (offset + 1) % 8;
1336 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001337 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001338 if (unlikely(current_vector == vector))
1339 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001340
1341 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001342 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001343
Mike Travis22f65d32008-12-16 17:33:56 -08001344 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001345 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1346 goto next;
1347 /* Found one! */
1348 current_vector = vector;
1349 current_offset = offset;
1350 if (old_vector) {
1351 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001352 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001353 }
Mike Travis22f65d32008-12-16 17:33:56 -08001354 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001355 per_cpu(vector_irq, new_cpu)[vector] = irq;
1356 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001357 cpumask_copy(cfg->domain, tmp_mask);
1358 err = 0;
1359 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001360 }
Mike Travis22f65d32008-12-16 17:33:56 -08001361 free_cpumask_var(tmp_mask);
1362 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001363}
1364
Mike Travise7986732008-12-16 17:33:52 -08001365static int
1366assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001367{
1368 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001369 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001370
1371 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001372 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001373 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001374 return err;
1375}
1376
Yinghai Lu3145e942008-12-05 18:58:34 -08001377static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001378{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001379 int cpu, vector;
1380
Yinghai Lu497c9a12008-08-19 20:50:28 -07001381 BUG_ON(!cfg->vector);
1382
1383 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001384 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001385 per_cpu(vector_irq, cpu)[vector] = -1;
1386
1387 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001388 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001389
1390 if (likely(!cfg->move_in_progress))
1391 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001392 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001393 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1394 vector++) {
1395 if (per_cpu(vector_irq, cpu)[vector] != irq)
1396 continue;
1397 per_cpu(vector_irq, cpu)[vector] = -1;
1398 break;
1399 }
1400 }
1401 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001402}
1403
1404void __setup_vector_irq(int cpu)
1405{
1406 /* Initialize vector_irq on a new cpu */
1407 /* This function must be called with vector_lock held */
1408 int irq, vector;
1409 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001410 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001411
1412 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001413 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001414 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001415 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001416 continue;
1417 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001418 per_cpu(vector_irq, cpu)[vector] = irq;
1419 }
1420 /* Mark the free vectors */
1421 for (vector = 0; vector < NR_VECTORS; ++vector) {
1422 irq = per_cpu(vector_irq, cpu)[vector];
1423 if (irq < 0)
1424 continue;
1425
1426 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001427 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001428 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001429 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001430}
Glauber Costa3fde6902008-05-28 20:34:19 -07001431
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001432static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001433static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Ingo Molnar54168ed2008-08-20 09:07:45 +02001435#define IOAPIC_AUTO -1
1436#define IOAPIC_EDGE 0
1437#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001439#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001440static inline int IO_APIC_irq_trigger(int irq)
1441{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001442 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001443
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001444 for (apic = 0; apic < nr_ioapics; apic++) {
1445 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1446 idx = find_irq_entry(apic, pin, mp_INT);
1447 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1448 return irq_trigger(idx);
1449 }
1450 }
1451 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001452 * nonexistent IRQs are edge default
1453 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001454 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001455}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001456#else
1457static inline int IO_APIC_irq_trigger(int irq)
1458{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001459 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001460}
1461#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001462
Yinghai Lu3145e942008-12-05 18:58:34 -08001463static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Yinghai Lu199751d2008-08-19 20:50:27 -07001465
Jan Beulich6ebcc002006-06-26 13:56:46 +02001466 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001467 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001468 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001469 else
1470 desc->status &= ~IRQ_LEVEL;
1471
Ingo Molnar54168ed2008-08-20 09:07:45 +02001472 if (irq_remapped(irq)) {
1473 desc->status |= IRQ_MOVE_PCNTXT;
1474 if (trigger)
1475 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1476 handle_fasteoi_irq,
1477 "fasteoi");
1478 else
1479 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1480 handle_edge_irq, "edge");
1481 return;
1482 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001483
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001484 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1485 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001486 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001487 handle_fasteoi_irq,
1488 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001489 else
Ingo Molnara460e742006-10-17 00:10:03 -07001490 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001491 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001492}
1493
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001494int setup_ioapic_entry(int apic_id, int irq,
1495 struct IO_APIC_route_entry *entry,
1496 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001497 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001498{
1499 /*
1500 * add it to the IO-APIC irq-routing table:
1501 */
1502 memset(entry,0,sizeof(*entry));
1503
Ingo Molnar54168ed2008-08-20 09:07:45 +02001504 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001505 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001506 struct irte irte;
1507 struct IR_IO_APIC_route_entry *ir_entry =
1508 (struct IR_IO_APIC_route_entry *) entry;
1509 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001510
Ingo Molnar54168ed2008-08-20 09:07:45 +02001511 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001512 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001513
1514 index = alloc_irte(iommu, irq, 1);
1515 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001516 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001517
1518 memset(&irte, 0, sizeof(irte));
1519
1520 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001521 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001522 /*
1523 * Trigger mode in the IRTE will always be edge, and the
1524 * actual level or edge trigger will be setup in the IO-APIC
1525 * RTE. This will help simplify level triggered irq migration.
1526 * For more details, see the comments above explainig IO-APIC
1527 * irq migration in the presence of interrupt-remapping.
1528 */
1529 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001530 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001531 irte.vector = vector;
1532 irte.dest_id = IRTE_DEST(destination);
1533
1534 modify_irte(irq, &irte);
1535
1536 ir_entry->index2 = (index >> 15) & 0x1;
1537 ir_entry->zero = 0;
1538 ir_entry->format = 1;
1539 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001540 /*
1541 * IO-APIC RTE will be configured with virtual vector.
1542 * irq handler will do the explicit EOI to the io-apic.
1543 */
1544 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001545 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001546 entry->delivery_mode = apic->irq_delivery_mode;
1547 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001548 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001549 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001550 }
1551
1552 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001553 entry->trigger = trigger;
1554 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001555
1556 /* Mask level triggered irqs.
1557 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1558 */
1559 if (trigger)
1560 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001561 return 0;
1562}
1563
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001564static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001565 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001566{
1567 struct irq_cfg *cfg;
1568 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001569 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001570
1571 if (!IO_APIC_IRQ(irq))
1572 return;
1573
Yinghai Lu3145e942008-12-05 18:58:34 -08001574 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001575
Ingo Molnarfe402e12009-01-28 04:32:51 +01001576 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001577 return;
1578
Ingo Molnardebccb32009-01-28 15:20:18 +01001579 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001580
1581 apic_printk(APIC_VERBOSE,KERN_DEBUG
1582 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1583 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001584 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001585 irq, trigger, polarity);
1586
1587
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001588 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001589 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001590 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001591 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001592 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001593 return;
1594 }
1595
Yinghai Lu3145e942008-12-05 18:58:34 -08001596 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001597 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001598 disable_8259A_irq(irq);
1599
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001600 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
1603static void __init setup_IO_APIC_irqs(void)
1604{
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001605 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001606 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001607 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001608 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001609 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1612
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001613 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1614 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001616 idx = find_irq_entry(apic_id, pin, mp_INT);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001617 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001618 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001619 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001620 apic_printk(APIC_VERBOSE,
1621 KERN_DEBUG " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001622 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001623 } else
1624 apic_printk(APIC_VERBOSE, " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001625 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001626 continue;
1627 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001628 if (notcon) {
1629 apic_printk(APIC_VERBOSE,
1630 " (apicid-pin) not connected\n");
1631 notcon = 0;
1632 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001633
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001634 irq = pin_2_irq(idx, apic_id, pin);
Ingo Molnar33a201f2009-01-28 07:17:26 +01001635
1636 /*
1637 * Skip the timer IRQ if there's a quirk handler
1638 * installed and if it returns 1:
1639 */
1640 if (apic->multi_timer_check &&
1641 apic->multi_timer_check(apic_id, irq))
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001642 continue;
Ingo Molnar33a201f2009-01-28 07:17:26 +01001643
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001644 desc = irq_to_desc_alloc_node(irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001645 if (!desc) {
1646 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1647 continue;
1648 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001649 cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001650 add_pin_to_irq_node(cfg, node, apic_id, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001651
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001652 setup_IO_APIC_irq(apic_id, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001653 irq_trigger(idx), irq_polarity(idx));
1654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
1656
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001657 if (notcon)
1658 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001659 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
1662/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001663 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001665static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001666 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Ingo Molnar54168ed2008-08-20 09:07:45 +02001670 if (intr_remapping_enabled)
1671 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001672
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001673 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /*
1676 * We use logical delivery to get the timer IRQ
1677 * to the first CPU.
1678 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001679 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001680 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001681 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001682 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 entry.polarity = 0;
1684 entry.trigger = 0;
1685 entry.vector = vector;
1686
1687 /*
1688 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001689 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001691 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 /*
1694 * Add it to the IO-APIC irq-routing table:
1695 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001696 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001699
1700__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 int apic, i;
1703 union IO_APIC_reg_00 reg_00;
1704 union IO_APIC_reg_01 reg_01;
1705 union IO_APIC_reg_02 reg_02;
1706 union IO_APIC_reg_03 reg_03;
1707 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001708 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001709 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001710 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 if (apic_verbosity == APIC_QUIET)
1713 return;
1714
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001715 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 for (i = 0; i < nr_ioapics; i++)
1717 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301718 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 /*
1721 * We are a bit conservative about what we expect. We have to
1722 * know about every hardware change ASAP.
1723 */
1724 printk(KERN_INFO "testing the IO APIC.......................\n");
1725
1726 for (apic = 0; apic < nr_ioapics; apic++) {
1727
1728 spin_lock_irqsave(&ioapic_lock, flags);
1729 reg_00.raw = io_apic_read(apic, 0);
1730 reg_01.raw = io_apic_read(apic, 1);
1731 if (reg_01.bits.version >= 0x10)
1732 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001733 if (reg_01.bits.version >= 0x20)
1734 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 spin_unlock_irqrestore(&ioapic_lock, flags);
1736
Ingo Molnar54168ed2008-08-20 09:07:45 +02001737 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301738 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1740 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1741 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1742 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Ingo Molnar54168ed2008-08-20 09:07:45 +02001744 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1748 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 /*
1751 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1752 * but the value of reg_02 is read as the previous read register
1753 * value, so ignore it if reg_02 == reg_01.
1754 */
1755 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1756 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1757 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759
1760 /*
1761 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1762 * or reg_03, but the value of reg_0[23] is read as the previous read
1763 * register value, so ignore it if reg_03 == reg_0[12].
1764 */
1765 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1766 reg_03.raw != reg_01.raw) {
1767 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1768 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770
1771 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1772
Yinghai Lud83e94a2008-08-19 20:50:33 -07001773 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1774 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 for (i = 0; i <= reg_01.bits.entries; i++) {
1777 struct IO_APIC_route_entry entry;
1778
Andi Kleencf4c6a22006-09-26 10:52:30 +02001779 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Ingo Molnar54168ed2008-08-20 09:07:45 +02001781 printk(KERN_DEBUG " %02x %03X ",
1782 i,
1783 entry.dest
1784 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1787 entry.mask,
1788 entry.trigger,
1789 entry.irr,
1790 entry.polarity,
1791 entry.delivery_status,
1792 entry.dest_mode,
1793 entry.delivery_mode,
1794 entry.vector
1795 );
1796 }
1797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001799 for_each_irq_desc(irq, desc) {
1800 struct irq_pin_list *entry;
1801
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001802 cfg = desc->chip_data;
1803 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001804 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001806 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 for (;;) {
1808 printk("-> %d:%d", entry->apic, entry->pin);
1809 if (!entry->next)
1810 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001811 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813 printk("\n");
1814 }
1815
1816 printk(KERN_INFO ".................................... done.\n");
1817
1818 return;
1819}
1820
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001821__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 unsigned int v;
1824 int i, j;
1825
1826 if (apic_verbosity == APIC_QUIET)
1827 return;
1828
1829 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1830 for (i = 0; i < 8; i++) {
1831 v = apic_read(base + i*0x10);
1832 for (j = 0; j < 32; j++) {
1833 if (v & (1<<j))
1834 printk("1");
1835 else
1836 printk("0");
1837 }
1838 printk("\n");
1839 }
1840}
1841
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001842__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
1844 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001845 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 if (apic_verbosity == APIC_QUIET)
1848 return;
1849
1850 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1851 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001852 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001853 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 v = apic_read(APIC_LVR);
1855 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1856 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001857 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 v = apic_read(APIC_TASKPRI);
1860 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1861
Ingo Molnar54168ed2008-08-20 09:07:45 +02001862 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001863 if (!APIC_XAPIC(ver)) {
1864 v = apic_read(APIC_ARBPRI);
1865 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1866 v & APIC_ARBPRI_MASK);
1867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 v = apic_read(APIC_PROCPRI);
1869 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1870 }
1871
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001872 /*
1873 * Remote read supported only in the 82489DX and local APIC for
1874 * Pentium processors.
1875 */
1876 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1877 v = apic_read(APIC_RRR);
1878 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1879 }
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 v = apic_read(APIC_LDR);
1882 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001883 if (!x2apic_enabled()) {
1884 v = apic_read(APIC_DFR);
1885 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 v = apic_read(APIC_SPIV);
1888 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1889
1890 printk(KERN_DEBUG "... APIC ISR field:\n");
1891 print_APIC_bitfield(APIC_ISR);
1892 printk(KERN_DEBUG "... APIC TMR field:\n");
1893 print_APIC_bitfield(APIC_TMR);
1894 printk(KERN_DEBUG "... APIC IRR field:\n");
1895 print_APIC_bitfield(APIC_IRR);
1896
Ingo Molnar54168ed2008-08-20 09:07:45 +02001897 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1898 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 v = apic_read(APIC_ESR);
1902 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1903 }
1904
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001905 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001906 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1907 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 v = apic_read(APIC_LVTT);
1910 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1911
1912 if (maxlvt > 3) { /* PC is LVT#4. */
1913 v = apic_read(APIC_LVTPC);
1914 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1915 }
1916 v = apic_read(APIC_LVT0);
1917 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1918 v = apic_read(APIC_LVT1);
1919 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1920
1921 if (maxlvt > 2) { /* ERR is LVT#3. */
1922 v = apic_read(APIC_LVTERR);
1923 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1924 }
1925
1926 v = apic_read(APIC_TMICT);
1927 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1928 v = apic_read(APIC_TMCCT);
1929 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1930 v = apic_read(APIC_TDCR);
1931 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1932 printk("\n");
1933}
1934
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001935__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001937 int cpu;
1938
1939 preempt_disable();
1940 for_each_online_cpu(cpu)
1941 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1942 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001945__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 unsigned int v;
1948 unsigned long flags;
1949
1950 if (apic_verbosity == APIC_QUIET)
1951 return;
1952
1953 printk(KERN_DEBUG "\nprinting PIC contents\n");
1954
1955 spin_lock_irqsave(&i8259A_lock, flags);
1956
1957 v = inb(0xa1) << 8 | inb(0x21);
1958 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1959
1960 v = inb(0xa0) << 8 | inb(0x20);
1961 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1962
Ingo Molnar54168ed2008-08-20 09:07:45 +02001963 outb(0x0b,0xa0);
1964 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001966 outb(0x0a,0xa0);
1967 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 spin_unlock_irqrestore(&i8259A_lock, flags);
1970
1971 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1972
1973 v = inb(0x4d1) << 8 | inb(0x4d0);
1974 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1975}
1976
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001977__apicdebuginit(int) print_all_ICs(void)
1978{
1979 print_PIC();
1980 print_all_local_APICs();
1981 print_IO_APIC();
1982
1983 return 0;
1984}
1985
1986fs_initcall(print_all_ICs);
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Yinghai Luefa25592008-08-19 20:50:36 -07001989/* Where if anywhere is the i8259 connect in external int mode */
1990static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1991
Ingo Molnar54168ed2008-08-20 09:07:45 +02001992void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001995 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001996 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 unsigned long flags;
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 /*
2000 * The number of IO-APIC IRQ registers (== #pins):
2001 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002002 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002004 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002006 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
2007 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002008 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002009 int pin;
2010 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01002011 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002012 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02002013 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002014
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002015 /* If the interrupt line is enabled and in ExtInt mode
2016 * I have found the pin where the i8259 is connected.
2017 */
2018 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
2019 ioapic_i8259.apic = apic;
2020 ioapic_i8259.pin = pin;
2021 goto found_i8259;
2022 }
2023 }
2024 }
2025 found_i8259:
2026 /* Look to see what if the MP table has reported the ExtINT */
2027 /* If we could not find the appropriate pin by looking at the ioapic
2028 * the i8259 probably is not connected the ioapic but give the
2029 * mptable a chance anyway.
2030 */
2031 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2032 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2033 /* Trust the MP table if nothing is setup in the hardware */
2034 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2035 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2036 ioapic_i8259.pin = i8259_pin;
2037 ioapic_i8259.apic = i8259_apic;
2038 }
2039 /* Complain if the MP table and the hardware disagree */
2040 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2041 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2042 {
2043 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045
2046 /*
2047 * Do not trust the IO-APIC being empty at bootup
2048 */
2049 clear_IO_APIC();
2050}
2051
2052/*
2053 * Not an __init, needed by the reboot code
2054 */
2055void disable_IO_APIC(void)
2056{
2057 /*
2058 * Clear the IO-APIC before rebooting:
2059 */
2060 clear_IO_APIC();
2061
Eric W. Biederman650927e2005-06-25 14:57:44 -07002062 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002063 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002064 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002065 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002066 *
2067 * With interrupt-remapping, for now we will use virtual wire A mode,
2068 * as virtual wire B is little complex (need to configure both
2069 * IOAPIC RTE aswell as interrupt-remapping table entry).
2070 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002071 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002072 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002073 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002074
2075 memset(&entry, 0, sizeof(entry));
2076 entry.mask = 0; /* Enabled */
2077 entry.trigger = 0; /* Edge */
2078 entry.irr = 0;
2079 entry.polarity = 0; /* High */
2080 entry.delivery_status = 0;
2081 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002082 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002083 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002084 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002085
2086 /*
2087 * Add it to the IO-APIC irq-routing table:
2088 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002089 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002090 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002091
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002092 /*
2093 * Use virtual wire A mode when interrupt remapping is enabled.
2094 */
2095 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Ingo Molnar54168ed2008-08-20 09:07:45 +02002098#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099/*
2100 * function to set the IO-APIC physical IDs based on the
2101 * values stored in the MPC table.
2102 *
2103 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2104 */
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106static void __init setup_ioapic_ids_from_mpc(void)
2107{
2108 union IO_APIC_reg_00 reg_00;
2109 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002110 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 int i;
2112 unsigned char old_id;
2113 unsigned long flags;
2114
Yinghai Lua4dbc342008-07-25 02:14:28 -07002115 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002116 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002119 * Don't check I/O APIC IDs for xAPIC systems. They have
2120 * no meaning without the serial APIC bus.
2121 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002122 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2123 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002124 return;
2125 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 * This is broken; anything with a real cpu count has to
2127 * circumvent this idiocy regardless.
2128 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002129 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 /*
2132 * Set the IOAPIC ID to the value stored in the MPC table.
2133 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002134 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /* Read the register 0 value */
2137 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002138 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002140
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002141 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002143 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002145 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2147 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002148 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 /*
2152 * Sanity check, is the ID really free? Every APIC in a
2153 * system must have a unique ID or we get lots of nice
2154 * 'stuck on smp_invalidate_needed IPI wait' messages.
2155 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002156 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002157 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002159 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 for (i = 0; i < get_physical_broadcast(); i++)
2161 if (!physid_isset(i, phys_id_present_map))
2162 break;
2163 if (i >= get_physical_broadcast())
2164 panic("Max APIC ID exceeded!\n");
2165 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2166 i);
2167 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002168 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 } else {
2170 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002171 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 apic_printk(APIC_VERBOSE, "Setting %d in the "
2173 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002174 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2176 }
2177
2178
2179 /*
2180 * We need to adjust the IRQ routing table
2181 * if the ID changed.
2182 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002183 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302185 if (mp_irqs[i].dstapic == old_id)
2186 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002187 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /*
2190 * Read the right value from the MPC table and
2191 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 apic_printk(APIC_VERBOSE, KERN_INFO
2194 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002195 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002197 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002199 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002200 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 /*
2203 * Sanity check
2204 */
2205 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002206 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002208 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 printk("could not set ID!\n");
2210 else
2211 apic_printk(APIC_VERBOSE, " ok.\n");
2212 }
2213}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002216int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002217
2218static int __init notimercheck(char *s)
2219{
2220 no_timer_check = 1;
2221 return 1;
2222}
2223__setup("no_timer_check", notimercheck);
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225/*
2226 * There is a nasty bug in some older SMP boards, their mptable lies
2227 * about the timer IRQ. We do the following to work around the situation:
2228 *
2229 * - timer IRQ defaults to IO-APIC IRQ
2230 * - if this function detects that timer IRQs are defunct, then we fall
2231 * back to ISA timer IRQs
2232 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002233static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002236 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Zachary Amsden8542b202006-12-07 02:14:09 +01002238 if (no_timer_check)
2239 return 1;
2240
Ingo Molnar4aae0702007-12-18 18:05:58 +01002241 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 local_irq_enable();
2243 /* Let ten ticks pass... */
2244 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002245 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 /*
2248 * Expect a few ticks at least, to be sure some possible
2249 * glue logic does not lock up after one or two first
2250 * ticks in a non-ExtINT mode. Also the local APIC
2251 * might have cached one ExtINT interrupt. Finally, at
2252 * least one tick may be lost due to delays.
2253 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002254
2255 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002256 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return 0;
2259}
2260
2261/*
2262 * In the SMP+IOAPIC case it might happen that there are an unspecified
2263 * number of pending IRQ events unhandled. These cases are very rare,
2264 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2265 * better to do it this way as thus we do not have to be aware of
2266 * 'pending' interrupts in the IRQ path, except at this point.
2267 */
2268/*
2269 * Edge triggered needs to resend any interrupt
2270 * that was delayed but this is now handled in the device
2271 * independent code.
2272 */
2273
2274/*
2275 * Starting up a edge-triggered IO-APIC interrupt is
2276 * nasty - we need to make sure that we get the edge.
2277 * If it is already asserted for some reason, we need
2278 * return 1 to indicate that is was pending.
2279 *
2280 * This is not complete - we should be able to fake
2281 * an edge even if it isn't on the 8259A...
2282 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002283
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002284static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285{
2286 int was_pending = 0;
2287 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002288 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002291 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 disable_8259A_irq(irq);
2293 if (i8259A_irq_pending(irq))
2294 was_pending = 1;
2295 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002296 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002297 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 spin_unlock_irqrestore(&ioapic_lock, flags);
2299
2300 return was_pending;
2301}
2302
Ingo Molnar54168ed2008-08-20 09:07:45 +02002303#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002304static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002306
2307 struct irq_cfg *cfg = irq_cfg(irq);
2308 unsigned long flags;
2309
2310 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002311 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002312 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002313
2314 return 1;
2315}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002316#else
2317static int ioapic_retrigger_irq(unsigned int irq)
2318{
Ingo Molnardac5f412009-01-28 15:42:24 +01002319 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002320
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002321 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002322}
2323#endif
2324
2325/*
2326 * Level and edge triggered IO-APIC interrupts need different handling,
2327 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2328 * handled with the level-triggered descriptor, but that one has slightly
2329 * more overhead. Level-triggered interrupts cannot be handled with the
2330 * edge-triggered handler, without risking IRQ storms and other ugly
2331 * races.
2332 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002333
Yinghai Lu497c9a12008-08-19 20:50:28 -07002334#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002335
2336#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002337
2338/*
2339 * Migrate the IO-APIC irq in the presence of intr-remapping.
2340 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002341 * For both level and edge triggered, irq migration is a simple atomic
2342 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002343 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002344 * For level triggered, we eliminate the io-apic RTE modification (with the
2345 * updated vector information), by using a virtual vector (io-apic pin number).
2346 * Real vector that is used for interrupting cpu will be coming from
2347 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002348 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002349static int
Mike Travise7986732008-12-16 17:33:52 -08002350migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002351{
2352 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002353 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002354 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002355 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002356 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002357
Mike Travis22f65d32008-12-16 17:33:56 -08002358 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002359 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002360
Yinghai Lu3145e942008-12-05 18:58:34 -08002361 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002362 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002363 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002364
Yinghai Lu3145e942008-12-05 18:58:34 -08002365 cfg = desc->chip_data;
2366 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002367 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002368
Ingo Molnardebccb32009-01-28 15:20:18 +01002369 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002370
Ingo Molnar54168ed2008-08-20 09:07:45 +02002371 irte.vector = cfg->vector;
2372 irte.dest_id = IRTE_DEST(dest);
2373
2374 /*
2375 * Modified the IRTE and flushes the Interrupt entry cache.
2376 */
2377 modify_irte(irq, &irte);
2378
Mike Travis22f65d32008-12-16 17:33:56 -08002379 if (cfg->move_in_progress)
2380 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002381
Mike Travis7f7ace02009-01-10 21:58:08 -08002382 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002383
2384 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002385}
2386
Ingo Molnar54168ed2008-08-20 09:07:45 +02002387/*
2388 * Migrates the IRQ destination in the process context.
2389 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002390static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302391 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002393 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002394}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002395static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302396 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002397{
2398 struct irq_desc *desc = irq_to_desc(irq);
2399
Yinghai Lud5dedd42009-04-27 17:59:21 -07002400 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002401}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002402#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002403static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002404 const struct cpumask *mask)
2405{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002406 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002407}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002408#endif
2409
Yinghai Lu497c9a12008-08-19 20:50:28 -07002410asmlinkage void smp_irq_move_cleanup_interrupt(void)
2411{
2412 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002413
Yinghai Lu497c9a12008-08-19 20:50:28 -07002414 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002415 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002416 irq_enter();
2417
2418 me = smp_processor_id();
2419 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2420 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002421 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002422 struct irq_desc *desc;
2423 struct irq_cfg *cfg;
2424 irq = __get_cpu_var(vector_irq)[vector];
2425
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002426 if (irq == -1)
2427 continue;
2428
Yinghai Lu497c9a12008-08-19 20:50:28 -07002429 desc = irq_to_desc(irq);
2430 if (!desc)
2431 continue;
2432
2433 cfg = irq_cfg(irq);
2434 spin_lock(&desc->lock);
2435 if (!cfg->move_cleanup_count)
2436 goto unlock;
2437
Mike Travis22f65d32008-12-16 17:33:56 -08002438 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002439 goto unlock;
2440
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002441 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2442 /*
2443 * Check if the vector that needs to be cleanedup is
2444 * registered at the cpu's IRR. If so, then this is not
2445 * the best time to clean it up. Lets clean it up in the
2446 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2447 * to myself.
2448 */
2449 if (irr & (1 << (vector % 32))) {
2450 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2451 goto unlock;
2452 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002453 __get_cpu_var(vector_irq)[vector] = -1;
2454 cfg->move_cleanup_count--;
2455unlock:
2456 spin_unlock(&desc->lock);
2457 }
2458
2459 irq_exit();
2460}
2461
Yinghai Lu3145e942008-12-05 18:58:34 -08002462static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002463{
Yinghai Lu3145e942008-12-05 18:58:34 -08002464 struct irq_desc *desc = *descp;
2465 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002466 unsigned vector, me;
2467
Yinghai Lufcef5912009-04-27 17:58:23 -07002468 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002469 return;
2470
2471 vector = ~get_irq_regs()->orig_ax;
2472 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002473
Yinghai Lufcef5912009-04-27 17:58:23 -07002474 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002475 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002476}
2477#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002478static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002479#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002480
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002481static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2482{
2483 int apic, pin;
2484 struct irq_pin_list *entry;
2485
2486 entry = cfg->irq_2_pin;
2487 for (;;) {
2488
2489 if (!entry)
2490 break;
2491
2492 apic = entry->apic;
2493 pin = entry->pin;
2494 io_apic_eoi(apic, pin);
2495 entry = entry->next;
2496 }
2497}
2498
2499static void
2500eoi_ioapic_irq(struct irq_desc *desc)
2501{
2502 struct irq_cfg *cfg;
2503 unsigned long flags;
2504 unsigned int irq;
2505
2506 irq = desc->irq;
2507 cfg = desc->chip_data;
2508
2509 spin_lock_irqsave(&ioapic_lock, flags);
2510 __eoi_ioapic_irq(irq, cfg);
2511 spin_unlock_irqrestore(&ioapic_lock, flags);
2512}
2513
Weidong Han746cddd2009-04-10 17:17:17 +08002514#ifdef CONFIG_X86_X2APIC
Ingo Molnar54168ed2008-08-20 09:07:45 +02002515static void ack_x2apic_level(unsigned int irq)
2516{
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002517 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002518 ack_x2APIC_irq();
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002519 eoi_ioapic_irq(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002520}
2521
2522static void ack_x2apic_edge(unsigned int irq)
2523{
2524 ack_x2APIC_irq();
2525}
2526#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002527
Yinghai Lu1d025192008-08-19 20:50:34 -07002528static void ack_apic_edge(unsigned int irq)
2529{
Yinghai Lu3145e942008-12-05 18:58:34 -08002530 struct irq_desc *desc = irq_to_desc(irq);
2531
2532 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002533 move_native_irq(irq);
2534 ack_APIC_irq();
2535}
2536
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002537atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002538
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002539static void ack_apic_level(unsigned int irq)
2540{
Yinghai Lu3145e942008-12-05 18:58:34 -08002541 struct irq_desc *desc = irq_to_desc(irq);
2542
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002543#ifdef CONFIG_X86_32
2544 unsigned long v;
2545 int i;
2546#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002547 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002548 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002549
Yinghai Lu3145e942008-12-05 18:58:34 -08002550 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002551#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002552 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002553 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002554 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002555 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002556 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002557#endif
2558
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002559#ifdef CONFIG_X86_32
2560 /*
2561 * It appears there is an erratum which affects at least version 0x11
2562 * of I/O APIC (that's the 82093AA and cores integrated into various
2563 * chipsets). Under certain conditions a level-triggered interrupt is
2564 * erroneously delivered as edge-triggered one but the respective IRR
2565 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2566 * message but it will never arrive and further interrupts are blocked
2567 * from the source. The exact reason is so far unknown, but the
2568 * phenomenon was observed when two consecutive interrupt requests
2569 * from a given source get delivered to the same CPU and the source is
2570 * temporarily disabled in between.
2571 *
2572 * A workaround is to simulate an EOI message manually. We achieve it
2573 * by setting the trigger mode to edge and then to level when the edge
2574 * trigger mode gets detected in the TMR of a local APIC for a
2575 * level-triggered interrupt. We mask the source for the time of the
2576 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2577 * The idea is from Manfred Spraul. --macro
2578 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002579 cfg = desc->chip_data;
2580 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002581
2582 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2583#endif
2584
Ingo Molnar54168ed2008-08-20 09:07:45 +02002585 /*
2586 * We must acknowledge the irq before we move it or the acknowledge will
2587 * not propagate properly.
2588 */
2589 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002590
Weidong Han746cddd2009-04-10 17:17:17 +08002591 if (irq_remapped(irq))
2592 eoi_ioapic_irq(desc);
2593
Ingo Molnar54168ed2008-08-20 09:07:45 +02002594 /* Now we can move and renable the irq */
2595 if (unlikely(do_unmask_irq)) {
2596 /* Only migrate the irq if the ack has been received.
2597 *
2598 * On rare occasions the broadcast level triggered ack gets
2599 * delayed going to ioapics, and if we reprogram the
2600 * vector while Remote IRR is still set the irq will never
2601 * fire again.
2602 *
2603 * To prevent this scenario we read the Remote IRR bit
2604 * of the ioapic. This has two effects.
2605 * - On any sane system the read of the ioapic will
2606 * flush writes (and acks) going to the ioapic from
2607 * this cpu.
2608 * - We get to see if the ACK has actually been delivered.
2609 *
2610 * Based on failed experiments of reprogramming the
2611 * ioapic entry from outside of irq context starting
2612 * with masking the ioapic entry and then polling until
2613 * Remote IRR was clear before reprogramming the
2614 * ioapic I don't trust the Remote IRR bit to be
2615 * completey accurate.
2616 *
2617 * However there appears to be no other way to plug
2618 * this race, so if the Remote IRR bit is not
2619 * accurate and is causing problems then it is a hardware bug
2620 * and you can go talk to the chipset vendor about it.
2621 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002622 cfg = desc->chip_data;
2623 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002624 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002625 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002626 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002627
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002628#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002629 if (!(v & (1 << (i & 0x1f)))) {
2630 atomic_inc(&irq_mis_count);
2631 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002632 __mask_and_edge_IO_APIC_irq(cfg);
2633 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002634 spin_unlock(&ioapic_lock);
2635 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002636#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002637}
Yinghai Lu1d025192008-08-19 20:50:34 -07002638
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002639#ifdef CONFIG_INTR_REMAP
2640static void ir_ack_apic_edge(unsigned int irq)
2641{
2642#ifdef CONFIG_X86_X2APIC
2643 if (x2apic_enabled())
2644 return ack_x2apic_edge(irq);
2645#endif
2646 return ack_apic_edge(irq);
2647}
2648
2649static void ir_ack_apic_level(unsigned int irq)
2650{
2651#ifdef CONFIG_X86_X2APIC
2652 if (x2apic_enabled())
2653 return ack_x2apic_level(irq);
2654#endif
2655 return ack_apic_level(irq);
2656}
2657#endif /* CONFIG_INTR_REMAP */
2658
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002659static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002660 .name = "IO-APIC",
2661 .startup = startup_ioapic_irq,
2662 .mask = mask_IO_APIC_irq,
2663 .unmask = unmask_IO_APIC_irq,
2664 .ack = ack_apic_edge,
2665 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002666#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002667 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002668#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002669 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670};
2671
Ingo Molnar54168ed2008-08-20 09:07:45 +02002672static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002673 .name = "IR-IO-APIC",
2674 .startup = startup_ioapic_irq,
2675 .mask = mask_IO_APIC_irq,
2676 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302677#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002678 .ack = ir_ack_apic_edge,
2679 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002680#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002681 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002682#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302683#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002684 .retrigger = ioapic_retrigger_irq,
2685};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687static inline void init_IO_APIC_traps(void)
2688{
2689 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002690 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002691 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 /*
2694 * NOTE! The local APIC isn't very good at handling
2695 * multiple interrupts at the same interrupt level.
2696 * As the interrupt level is determined by taking the
2697 * vector number and shifting that right by 4, we
2698 * want to spread these out a bit so that they don't
2699 * all fall in the same interrupt level.
2700 *
2701 * Also, we've got to be careful not to trash gate
2702 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2703 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002704 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002705 cfg = desc->chip_data;
2706 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /*
2708 * Hmm.. We don't have an entry for this,
2709 * so default to an old-fashioned 8259
2710 * interrupt if we can..
2711 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002712 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002714 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002716 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718 }
2719}
2720
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002721/*
2722 * The local APIC irq-chip implementation:
2723 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002725static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
2727 unsigned long v;
2728
2729 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002730 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002733static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002735 unsigned long v;
2736
2737 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002738 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
2740
Yinghai Lu3145e942008-12-05 18:58:34 -08002741static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002742{
2743 ack_APIC_irq();
2744}
2745
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002746static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002747 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002748 .mask = mask_lapic_irq,
2749 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002750 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751};
2752
Yinghai Lu3145e942008-12-05 18:58:34 -08002753static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002754{
Yinghai Lu08678b02008-08-19 20:50:05 -07002755 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002756 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2757 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002758}
2759
Jan Beuliche9427102008-01-30 13:31:24 +01002760static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
2762 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002763 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 * We put the 8259A master into AEOI mode and
2765 * unmask on all local APICs LVT0 as NMI.
2766 *
2767 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2768 * is from Maciej W. Rozycki - so we do not have to EOI from
2769 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002770 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2772
Jan Beuliche9427102008-01-30 13:31:24 +01002773 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 apic_printk(APIC_VERBOSE, " done.\n");
2776}
2777
2778/*
2779 * This looks a bit hackish but it's about the only one way of sending
2780 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2781 * not support the ExtINT mode, unfortunately. We need to send these
2782 * cycles as some i82489DX-based boards have glue logic that keeps the
2783 * 8259A interrupt line asserted until INTA. --macro
2784 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002785static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002787 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 struct IO_APIC_route_entry entry0, entry1;
2789 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002791 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002792 if (pin == -1) {
2793 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002795 }
2796 apic = find_isa_irq_apic(8, mp_INT);
2797 if (apic == -1) {
2798 WARN_ON_ONCE(1);
2799 return;
2800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Andi Kleencf4c6a22006-09-26 10:52:30 +02002802 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002803 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 memset(&entry1, 0, sizeof(entry1));
2806
2807 entry1.dest_mode = 0; /* physical delivery */
2808 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002809 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 entry1.delivery_mode = dest_ExtINT;
2811 entry1.polarity = entry0.polarity;
2812 entry1.trigger = 0;
2813 entry1.vector = 0;
2814
Andi Kleencf4c6a22006-09-26 10:52:30 +02002815 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 save_control = CMOS_READ(RTC_CONTROL);
2818 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2819 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2820 RTC_FREQ_SELECT);
2821 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2822
2823 i = 100;
2824 while (i-- > 0) {
2825 mdelay(10);
2826 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2827 i -= 10;
2828 }
2829
2830 CMOS_WRITE(save_control, RTC_CONTROL);
2831 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002832 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Andi Kleencf4c6a22006-09-26 10:52:30 +02002834 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
Yinghai Luefa25592008-08-19 20:50:36 -07002837static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002838/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002839static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002840{
2841 disable_timer_pin_1 = 1;
2842 return 0;
2843}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002844early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002845
2846int timer_through_8259 __initdata;
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848/*
2849 * This code may look a bit paranoid, but it's supposed to cooperate with
2850 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2851 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2852 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002853 *
2854 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002856static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Yinghai Lu3145e942008-12-05 18:58:34 -08002858 struct irq_desc *desc = irq_to_desc(0);
2859 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002860 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002861 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002862 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002863 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002864
2865 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 /*
2868 * get/set the timer IRQ vector:
2869 */
2870 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002871 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002874 * As IRQ0 is to be enabled in the 8259A, the virtual
2875 * wire has to be disabled in the local APIC. Also
2876 * timer interrupts need to be acknowledged manually in
2877 * the 8259A for the i82489DX when using the NMI
2878 * watchdog as that APIC treats NMIs as level-triggered.
2879 * The AEOI mode will finish them in the 8259A
2880 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002882 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002884#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002885 {
2886 unsigned int ver;
2887
2888 ver = apic_read(APIC_LVR);
2889 ver = GET_APIC_VERSION(ver);
2890 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2891 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002892#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002894 pin1 = find_isa_irq_pin(0, mp_INT);
2895 apic1 = find_isa_irq_apic(0, mp_INT);
2896 pin2 = ioapic_i8259.pin;
2897 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002899 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2900 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002901 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002903 /*
2904 * Some BIOS writers are clueless and report the ExtINTA
2905 * I/O APIC input from the cascaded 8259A as the timer
2906 * interrupt input. So just in case, if only one pin
2907 * was found above, try it both directly and through the
2908 * 8259A.
2909 */
2910 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002911 if (intr_remapping_enabled)
2912 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002913 pin1 = pin2;
2914 apic1 = apic2;
2915 no_pin1 = 1;
2916 } else if (pin2 == -1) {
2917 pin2 = pin1;
2918 apic2 = apic1;
2919 }
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 if (pin1 != -1) {
2922 /*
2923 * Ok, does IRQ0 through the IOAPIC work?
2924 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002925 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002926 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002927 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002928 } else {
2929 /* for edge trigger, setup_IO_APIC_irq already
2930 * leave it unmasked.
2931 * so only need to unmask if it is level-trigger
2932 * do we really have level trigger timer?
2933 */
2934 int idx;
2935 idx = find_irq_entry(apic1, pin1, mp_INT);
2936 if (idx != -1 && irq_trigger(idx))
2937 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 if (timer_irq_works()) {
2940 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 setup_nmi();
2942 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002944 if (disable_timer_pin_1 > 0)
2945 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002946 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002948 if (intr_remapping_enabled)
2949 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002950 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002951 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002952 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002953 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2954 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002956 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2957 "(IRQ0) through the 8259A ...\n");
2958 apic_printk(APIC_QUIET, KERN_INFO
2959 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 /*
2961 * legacy devices should be connected to IO APIC #0
2962 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002963 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002964 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002965 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002967 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002968 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002970 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002972 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002974 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 }
2976 /*
2977 * Cleanup, just in case ...
2978 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002979 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002980 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002981 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002982 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002986 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2987 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002988 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002990#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002991 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002992#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002994 apic_printk(APIC_QUIET, KERN_INFO
2995 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Yinghai Lu3145e942008-12-05 18:58:34 -08002997 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002998 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 enable_8259A_irq(0);
3000
3001 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003002 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003003 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003005 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003006 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003007 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003008 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003010 apic_printk(APIC_QUIET, KERN_INFO
3011 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 init_8259A(0);
3014 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003015 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
3017 unlock_ExtINT_logic();
3018
3019 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003020 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003023 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003024 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003026 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003027out:
3028 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029}
3030
3031/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003032 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3033 * to devices. However there may be an I/O APIC pin available for
3034 * this interrupt regardless. The pin may be left unconnected, but
3035 * typically it will be reused as an ExtINT cascade interrupt for
3036 * the master 8259A. In the MPS case such a pin will normally be
3037 * reported as an ExtINT interrupt in the MP table. With ACPI
3038 * there is no provision for ExtINT interrupts, and in the absence
3039 * of an override it would be treated as an ordinary ISA I/O APIC
3040 * interrupt, that is edge-triggered and unmasked by default. We
3041 * used to do this, but it caused problems on some systems because
3042 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3043 * the same ExtINT cascade interrupt to drive the local APIC of the
3044 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3045 * the I/O APIC in all cases now. No actual device should request
3046 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 */
3048#define PIC_IRQS (1 << PIC_CASCADE_IR)
3049
3050void __init setup_IO_APIC(void)
3051{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003052
Ingo Molnar54168ed2008-08-20 09:07:45 +02003053 /*
3054 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003057 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Ingo Molnar54168ed2008-08-20 09:07:45 +02003059 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003060 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003061 * Set up IO-APIC IRQ routing.
3062 */
3063#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003064 if (!acpi_ioapic)
3065 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 sync_Arb_IDs();
3068 setup_IO_APIC_irqs();
3069 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003070 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
3072
3073/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003074 * Called after all the initialization is done. If we didnt find any
3075 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078static int __init io_apic_bug_finalize(void)
3079{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003080 if (sis_apic_bug == -1)
3081 sis_apic_bug = 0;
3082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
3085late_initcall(io_apic_bug_finalize);
3086
3087struct sysfs_ioapic_data {
3088 struct sys_device dev;
3089 struct IO_APIC_route_entry entry[0];
3090};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003091static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Pavel Machek438510f2005-04-16 15:25:24 -07003093static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
3095 struct IO_APIC_route_entry *entry;
3096 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 data = container_of(dev, struct sysfs_ioapic_data, dev);
3100 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003101 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3102 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
3104 return 0;
3105}
3106
3107static int ioapic_resume(struct sys_device *dev)
3108{
3109 struct IO_APIC_route_entry *entry;
3110 struct sysfs_ioapic_data *data;
3111 unsigned long flags;
3112 union IO_APIC_reg_00 reg_00;
3113 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 data = container_of(dev, struct sysfs_ioapic_data, dev);
3116 entry = data->entry;
3117
3118 spin_lock_irqsave(&ioapic_lock, flags);
3119 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303120 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3121 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 io_apic_write(dev->id, 0, reg_00.raw);
3123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003125 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003126 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 return 0;
3129}
3130
3131static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003132 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 .suspend = ioapic_suspend,
3134 .resume = ioapic_resume,
3135};
3136
3137static int __init ioapic_init_sysfs(void)
3138{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003139 struct sys_device * dev;
3140 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 error = sysdev_class_register(&ioapic_sysdev_class);
3143 if (error)
3144 return error;
3145
Ingo Molnar54168ed2008-08-20 09:07:45 +02003146 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003147 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003149 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (!mp_ioapic_data[i]) {
3151 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3152 continue;
3153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003155 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 dev->cls = &ioapic_sysdev_class;
3157 error = sysdev_register(dev);
3158 if (error) {
3159 kfree(mp_ioapic_data[i]);
3160 mp_ioapic_data[i] = NULL;
3161 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3162 continue;
3163 }
3164 }
3165
3166 return 0;
3167}
3168
3169device_initcall(ioapic_init_sysfs);
3170
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003171static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003172/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003173 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003174 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003175unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003176{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003177 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003178 unsigned int irq;
3179 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003180 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003181 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003182 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003183
3184 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003185 if (irq_want < nr_irqs_gsi)
3186 irq_want = nr_irqs_gsi;
3187
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003188 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003189 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003190 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003191 if (!desc_new) {
3192 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003193 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003194 }
3195 cfg_new = desc_new->chip_data;
3196
3197 if (cfg_new->vector != 0)
3198 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003199
3200#ifdef CONFIG_NUMA_IRQ_DESC
3201 /* different node ?*/
3202 if (desc_new->node != node)
3203 desc = move_irq_desc(desc, node);
3204#endif
3205
Ingo Molnarfe402e12009-01-28 04:32:51 +01003206 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003207 irq = new;
3208 break;
3209 }
3210 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003211
Yinghai Lu199751d2008-08-19 20:50:27 -07003212 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003213 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003214 /* restore it, in case dynamic_irq_init clear it */
3215 if (desc_new)
3216 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003217 }
3218 return irq;
3219}
3220
Yinghai Lu199751d2008-08-19 20:50:27 -07003221int create_irq(void)
3222{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003223 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003224 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003225 int irq;
3226
Yinghai Lube5d5352008-12-05 18:58:33 -08003227 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003228 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003229
3230 if (irq == 0)
3231 irq = -1;
3232
3233 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003234}
3235
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003236void destroy_irq(unsigned int irq)
3237{
3238 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003239 struct irq_cfg *cfg;
3240 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003241
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003242 /* store it, in case dynamic_irq_cleanup clear it */
3243 desc = irq_to_desc(irq);
3244 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003245 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003246 /* connect back irq_cfg */
3247 if (desc)
3248 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003249
Ingo Molnar54168ed2008-08-20 09:07:45 +02003250 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003251 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003252 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003253 spin_unlock_irqrestore(&vector_lock, flags);
3254}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003255
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003256/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003257 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003258 */
3259#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003260static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003261{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003262 struct irq_cfg *cfg;
3263 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003264 unsigned dest;
3265
Jan Beulichf1182632009-01-14 12:27:35 +00003266 if (disable_apic)
3267 return -ENXIO;
3268
Yinghai Lu3145e942008-12-05 18:58:34 -08003269 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003270 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003271 if (err)
3272 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003273
Ingo Molnardebccb32009-01-28 15:20:18 +01003274 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003275
Ingo Molnar54168ed2008-08-20 09:07:45 +02003276 if (irq_remapped(irq)) {
3277 struct irte irte;
3278 int ir_index;
3279 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003280
Ingo Molnar54168ed2008-08-20 09:07:45 +02003281 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3282 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003283
Ingo Molnar54168ed2008-08-20 09:07:45 +02003284 memset (&irte, 0, sizeof(irte));
3285
3286 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003287 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003288 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003289 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003290 irte.vector = cfg->vector;
3291 irte.dest_id = IRTE_DEST(dest);
3292
3293 modify_irte(irq, &irte);
3294
3295 msg->address_hi = MSI_ADDR_BASE_HI;
3296 msg->data = sub_handle;
3297 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3298 MSI_ADDR_IR_SHV |
3299 MSI_ADDR_IR_INDEX1(ir_index) |
3300 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003301 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003302 if (x2apic_enabled())
3303 msg->address_hi = MSI_ADDR_BASE_HI |
3304 MSI_ADDR_EXT_DEST_ID(dest);
3305 else
3306 msg->address_hi = MSI_ADDR_BASE_HI;
3307
Ingo Molnar54168ed2008-08-20 09:07:45 +02003308 msg->address_lo =
3309 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003310 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003311 MSI_ADDR_DEST_MODE_PHYSICAL:
3312 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003313 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003314 MSI_ADDR_REDIRECTION_CPU:
3315 MSI_ADDR_REDIRECTION_LOWPRI) |
3316 MSI_ADDR_DEST_ID(dest);
3317
3318 msg->data =
3319 MSI_DATA_TRIGGER_EDGE |
3320 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003321 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003322 MSI_DATA_DELIVERY_FIXED:
3323 MSI_DATA_DELIVERY_LOWPRI) |
3324 MSI_DATA_VECTOR(cfg->vector);
3325 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003326 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003327}
3328
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003329#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003330static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003331{
Yinghai Lu3145e942008-12-05 18:58:34 -08003332 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003333 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003334 struct msi_msg msg;
3335 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003336
Mike Travis22f65d32008-12-16 17:33:56 -08003337 dest = set_desc_affinity(desc, mask);
3338 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003339 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003340
Yinghai Lu3145e942008-12-05 18:58:34 -08003341 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003342
Yinghai Lu3145e942008-12-05 18:58:34 -08003343 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003344
3345 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003346 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003347 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3348 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3349
Yinghai Lu3145e942008-12-05 18:58:34 -08003350 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003351
3352 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003353}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003354#ifdef CONFIG_INTR_REMAP
3355/*
3356 * Migrate the MSI irq to another cpumask. This migration is
3357 * done in the process context using interrupt-remapping hardware.
3358 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003359static int
Mike Travise7986732008-12-16 17:33:52 -08003360ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003361{
Yinghai Lu3145e942008-12-05 18:58:34 -08003362 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003363 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003364 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003365 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003366
3367 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003368 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003369
Mike Travis22f65d32008-12-16 17:33:56 -08003370 dest = set_desc_affinity(desc, mask);
3371 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003372 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003373
Ingo Molnar54168ed2008-08-20 09:07:45 +02003374 irte.vector = cfg->vector;
3375 irte.dest_id = IRTE_DEST(dest);
3376
3377 /*
3378 * atomically update the IRTE with the new destination and vector.
3379 */
3380 modify_irte(irq, &irte);
3381
3382 /*
3383 * After this point, all the interrupts will start arriving
3384 * at the new destination. So, time to cleanup the previous
3385 * vector allocation.
3386 */
Mike Travis22f65d32008-12-16 17:33:56 -08003387 if (cfg->move_in_progress)
3388 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003389
3390 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003391}
Yinghai Lu3145e942008-12-05 18:58:34 -08003392
Ingo Molnar54168ed2008-08-20 09:07:45 +02003393#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003394#endif /* CONFIG_SMP */
3395
3396/*
3397 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3398 * which implement the MSI or MSI-X Capability Structure.
3399 */
3400static struct irq_chip msi_chip = {
3401 .name = "PCI-MSI",
3402 .unmask = unmask_msi_irq,
3403 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003404 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003405#ifdef CONFIG_SMP
3406 .set_affinity = set_msi_irq_affinity,
3407#endif
3408 .retrigger = ioapic_retrigger_irq,
3409};
3410
Ingo Molnar54168ed2008-08-20 09:07:45 +02003411static struct irq_chip msi_ir_chip = {
3412 .name = "IR-PCI-MSI",
3413 .unmask = unmask_msi_irq,
3414 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303415#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003416 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003417#ifdef CONFIG_SMP
3418 .set_affinity = ir_set_msi_irq_affinity,
3419#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303420#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003421 .retrigger = ioapic_retrigger_irq,
3422};
3423
3424/*
3425 * Map the PCI dev to the corresponding remapping hardware unit
3426 * and allocate 'nvec' consecutive interrupt-remapping table entries
3427 * in it.
3428 */
3429static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3430{
3431 struct intel_iommu *iommu;
3432 int index;
3433
3434 iommu = map_dev_to_ir(dev);
3435 if (!iommu) {
3436 printk(KERN_ERR
3437 "Unable to map PCI %s to iommu\n", pci_name(dev));
3438 return -ENOENT;
3439 }
3440
3441 index = alloc_irte(iommu, irq, nvec);
3442 if (index < 0) {
3443 printk(KERN_ERR
3444 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003445 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003446 return -ENOSPC;
3447 }
3448 return index;
3449}
Yinghai Lu1d025192008-08-19 20:50:34 -07003450
Yinghai Lu3145e942008-12-05 18:58:34 -08003451static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003452{
3453 int ret;
3454 struct msi_msg msg;
3455
3456 ret = msi_compose_msg(dev, irq, &msg);
3457 if (ret < 0)
3458 return ret;
3459
Yinghai Lu3145e942008-12-05 18:58:34 -08003460 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003461 write_msi_msg(irq, &msg);
3462
Ingo Molnar54168ed2008-08-20 09:07:45 +02003463 if (irq_remapped(irq)) {
3464 struct irq_desc *desc = irq_to_desc(irq);
3465 /*
3466 * irq migration in process context
3467 */
3468 desc->status |= IRQ_MOVE_PCNTXT;
3469 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3470 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003471 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003472
Yinghai Luc81bba42008-09-25 11:53:11 -07003473 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3474
Yinghai Lu1d025192008-08-19 20:50:34 -07003475 return 0;
3476}
3477
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003478int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3479{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003480 unsigned int irq;
3481 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003482 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003483 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003484 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003485 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003486 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003487
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003488 /* x86 doesn't support multiple MSI yet */
3489 if (type == PCI_CAP_ID_MSI && nvec > 1)
3490 return 1;
3491
Yinghai Lud047f53a2009-04-27 18:02:23 -07003492 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003493 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003494 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003495 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003496 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003497 if (irq == 0)
3498 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003499 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003500 if (!intr_remapping_enabled)
3501 goto no_ir;
3502
3503 if (!sub_handle) {
3504 /*
3505 * allocate the consecutive block of IRTE's
3506 * for 'nvec'
3507 */
3508 index = msi_alloc_irte(dev, irq, nvec);
3509 if (index < 0) {
3510 ret = index;
3511 goto error;
3512 }
3513 } else {
3514 iommu = map_dev_to_ir(dev);
3515 if (!iommu) {
3516 ret = -ENOENT;
3517 goto error;
3518 }
3519 /*
3520 * setup the mapping between the irq and the IRTE
3521 * base index, the sub_handle pointing to the
3522 * appropriate interrupt remap table entry.
3523 */
3524 set_irte_irq(irq, iommu, index, sub_handle);
3525 }
3526no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003527 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003528 if (ret < 0)
3529 goto error;
3530 sub_handle++;
3531 }
3532 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003533
3534error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003535 destroy_irq(irq);
3536 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003537}
3538
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003539void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003540{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003541 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003542}
3543
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003544#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003545#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003546static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003547{
Yinghai Lu3145e942008-12-05 18:58:34 -08003548 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003549 struct irq_cfg *cfg;
3550 struct msi_msg msg;
3551 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003552
Mike Travis22f65d32008-12-16 17:33:56 -08003553 dest = set_desc_affinity(desc, mask);
3554 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003555 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003556
Yinghai Lu3145e942008-12-05 18:58:34 -08003557 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003558
3559 dmar_msi_read(irq, &msg);
3560
3561 msg.data &= ~MSI_DATA_VECTOR_MASK;
3562 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3563 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3564 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3565
3566 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003567
3568 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003569}
Yinghai Lu3145e942008-12-05 18:58:34 -08003570
Ingo Molnar54168ed2008-08-20 09:07:45 +02003571#endif /* CONFIG_SMP */
3572
3573struct irq_chip dmar_msi_type = {
3574 .name = "DMAR_MSI",
3575 .unmask = dmar_msi_unmask,
3576 .mask = dmar_msi_mask,
3577 .ack = ack_apic_edge,
3578#ifdef CONFIG_SMP
3579 .set_affinity = dmar_msi_set_affinity,
3580#endif
3581 .retrigger = ioapic_retrigger_irq,
3582};
3583
3584int arch_setup_dmar_msi(unsigned int irq)
3585{
3586 int ret;
3587 struct msi_msg msg;
3588
3589 ret = msi_compose_msg(NULL, irq, &msg);
3590 if (ret < 0)
3591 return ret;
3592 dmar_msi_write(irq, &msg);
3593 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3594 "edge");
3595 return 0;
3596}
3597#endif
3598
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003599#ifdef CONFIG_HPET_TIMER
3600
3601#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003602static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003603{
Yinghai Lu3145e942008-12-05 18:58:34 -08003604 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003605 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003606 struct msi_msg msg;
3607 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003608
Mike Travis22f65d32008-12-16 17:33:56 -08003609 dest = set_desc_affinity(desc, mask);
3610 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003611 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003612
Yinghai Lu3145e942008-12-05 18:58:34 -08003613 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003614
3615 hpet_msi_read(irq, &msg);
3616
3617 msg.data &= ~MSI_DATA_VECTOR_MASK;
3618 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3619 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3620 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3621
3622 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003623
3624 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003625}
Yinghai Lu3145e942008-12-05 18:58:34 -08003626
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003627#endif /* CONFIG_SMP */
3628
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003629static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003630 .name = "HPET_MSI",
3631 .unmask = hpet_msi_unmask,
3632 .mask = hpet_msi_mask,
3633 .ack = ack_apic_edge,
3634#ifdef CONFIG_SMP
3635 .set_affinity = hpet_msi_set_affinity,
3636#endif
3637 .retrigger = ioapic_retrigger_irq,
3638};
3639
3640int arch_setup_hpet_msi(unsigned int irq)
3641{
3642 int ret;
3643 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003644 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003645
3646 ret = msi_compose_msg(NULL, irq, &msg);
3647 if (ret < 0)
3648 return ret;
3649
3650 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003651 desc->status |= IRQ_MOVE_PCNTXT;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003652 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3653 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003654
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003655 return 0;
3656}
3657#endif
3658
Ingo Molnar54168ed2008-08-20 09:07:45 +02003659#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003660/*
3661 * Hypertransport interrupt support
3662 */
3663#ifdef CONFIG_HT_IRQ
3664
3665#ifdef CONFIG_SMP
3666
Yinghai Lu497c9a12008-08-19 20:50:28 -07003667static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003669 struct ht_irq_msg msg;
3670 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671
Yinghai Lu497c9a12008-08-19 20:50:28 -07003672 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003673 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003674
Yinghai Lu497c9a12008-08-19 20:50:28 -07003675 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003676 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003677
Eric W. Biedermanec683072006-11-08 17:44:57 -08003678 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003679}
3680
Yinghai Lud5dedd42009-04-27 17:59:21 -07003681static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003682{
Yinghai Lu3145e942008-12-05 18:58:34 -08003683 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003684 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003685 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003686
Mike Travis22f65d32008-12-16 17:33:56 -08003687 dest = set_desc_affinity(desc, mask);
3688 if (dest == BAD_APICID)
Yinghai Lud5dedd42009-04-27 17:59:21 -07003689 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003690
Yinghai Lu3145e942008-12-05 18:58:34 -08003691 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003692
Yinghai Lu497c9a12008-08-19 20:50:28 -07003693 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003694
3695 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003696}
Yinghai Lu3145e942008-12-05 18:58:34 -08003697
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003698#endif
3699
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003700static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003701 .name = "PCI-HT",
3702 .mask = mask_ht_irq,
3703 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003704 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003705#ifdef CONFIG_SMP
3706 .set_affinity = set_ht_irq_affinity,
3707#endif
3708 .retrigger = ioapic_retrigger_irq,
3709};
3710
3711int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3712{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003713 struct irq_cfg *cfg;
3714 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003715
Jan Beulichf1182632009-01-14 12:27:35 +00003716 if (disable_apic)
3717 return -ENXIO;
3718
Yinghai Lu3145e942008-12-05 18:58:34 -08003719 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003720 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003721 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003722 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003723 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003724
Ingo Molnardebccb32009-01-28 15:20:18 +01003725 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3726 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003727
Eric W. Biedermanec683072006-11-08 17:44:57 -08003728 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003729
Eric W. Biedermanec683072006-11-08 17:44:57 -08003730 msg.address_lo =
3731 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003732 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003733 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003734 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003735 HT_IRQ_LOW_DM_PHYSICAL :
3736 HT_IRQ_LOW_DM_LOGICAL) |
3737 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003738 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003739 HT_IRQ_LOW_MT_FIXED :
3740 HT_IRQ_LOW_MT_ARBITRATED) |
3741 HT_IRQ_LOW_IRQ_MASKED;
3742
Eric W. Biedermanec683072006-11-08 17:44:57 -08003743 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003744
Ingo Molnara460e742006-10-17 00:10:03 -07003745 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3746 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003747
3748 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003749 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003750 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003751}
3752#endif /* CONFIG_HT_IRQ */
3753
Nick Piggin03b48632009-01-20 04:36:04 +01003754#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003755/*
3756 * Re-target the irq to the specified CPU and enable the specified MMR located
3757 * on the specified blade to allow the sending of MSIs to the specified CPU.
3758 */
3759int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3760 unsigned long mmr_offset)
3761{
Mike Travis22f65d32008-12-16 17:33:56 -08003762 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003763 struct irq_cfg *cfg;
3764 int mmr_pnode;
3765 unsigned long mmr_value;
3766 struct uv_IO_APIC_route_entry *entry;
3767 unsigned long flags;
3768 int err;
3769
Yinghai Lu3145e942008-12-05 18:58:34 -08003770 cfg = irq_cfg(irq);
3771
Mike Travise7986732008-12-16 17:33:52 -08003772 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003773 if (err != 0)
3774 return err;
3775
3776 spin_lock_irqsave(&vector_lock, flags);
3777 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3778 irq_name);
3779 spin_unlock_irqrestore(&vector_lock, flags);
3780
Dean Nelson4173a0e2008-10-02 12:18:21 -05003781 mmr_value = 0;
3782 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3783 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3784
3785 entry->vector = cfg->vector;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003786 entry->delivery_mode = apic->irq_delivery_mode;
3787 entry->dest_mode = apic->irq_dest_mode;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003788 entry->polarity = 0;
3789 entry->trigger = 0;
3790 entry->mask = 0;
Ingo Molnardebccb32009-01-28 15:20:18 +01003791 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003792
3793 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3794 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3795
3796 return irq;
3797}
3798
3799/*
3800 * Disable the specified MMR located on the specified blade so that MSIs are
3801 * longer allowed to be sent.
3802 */
3803void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3804{
3805 unsigned long mmr_value;
3806 struct uv_IO_APIC_route_entry *entry;
3807 int mmr_pnode;
3808
3809 mmr_value = 0;
3810 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3811 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3812
3813 entry->mask = 1;
3814
3815 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3816 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3817}
3818#endif /* CONFIG_X86_64 */
3819
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003820int __init io_apic_get_redir_entries (int ioapic)
3821{
3822 union IO_APIC_reg_01 reg_01;
3823 unsigned long flags;
3824
3825 spin_lock_irqsave(&ioapic_lock, flags);
3826 reg_01.raw = io_apic_read(ioapic, 1);
3827 spin_unlock_irqrestore(&ioapic_lock, flags);
3828
3829 return reg_01.bits.entries;
3830}
3831
Yinghai Lube5d5352008-12-05 18:58:33 -08003832void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003833{
Yinghai Lube5d5352008-12-05 18:58:33 -08003834 int nr = 0;
3835
Yinghai Lucc6c5002009-02-08 16:18:03 -08003836 nr = acpi_probe_gsi();
3837 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003838 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003839 } else {
3840 /* for acpi=off or acpi is not compiled in */
3841 int idx;
3842
3843 nr = 0;
3844 for (idx = 0; idx < nr_ioapics; idx++)
3845 nr += io_apic_get_redir_entries(idx) + 1;
3846
3847 if (nr > nr_irqs_gsi)
3848 nr_irqs_gsi = nr;
3849 }
3850
3851 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003852}
3853
Yinghai Lu4a046d12009-01-12 17:39:24 -08003854#ifdef CONFIG_SPARSE_IRQ
3855int __init arch_probe_nr_irqs(void)
3856{
3857 int nr;
3858
Yinghai Luf1ee5542009-02-08 16:18:03 -08003859 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3860 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003861
Yinghai Luf1ee5542009-02-08 16:18:03 -08003862 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3863#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3864 /*
3865 * for MSI and HT dyn irq
3866 */
3867 nr += nr_irqs_gsi * 16;
3868#endif
3869 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003870 nr_irqs = nr;
3871
3872 return 0;
3873}
3874#endif
3875
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003877 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 -------------------------------------------------------------------------- */
3879
Len Brown888ba6c2005-08-24 12:07:20 -04003880#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Ingo Molnar54168ed2008-08-20 09:07:45 +02003882#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003883int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884{
3885 union IO_APIC_reg_00 reg_00;
3886 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3887 physid_mask_t tmp;
3888 unsigned long flags;
3889 int i = 0;
3890
3891 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003892 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3893 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003895 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3897 * advantage of new APIC bus architecture.
3898 */
3899
3900 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003901 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 spin_lock_irqsave(&ioapic_lock, flags);
3904 reg_00.raw = io_apic_read(ioapic, 0);
3905 spin_unlock_irqrestore(&ioapic_lock, flags);
3906
3907 if (apic_id >= get_physical_broadcast()) {
3908 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3909 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3910 apic_id = reg_00.bits.ID;
3911 }
3912
3913 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003914 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 * 'stuck on smp_invalidate_needed IPI wait' messages.
3916 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003917 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
3919 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003920 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 break;
3922 }
3923
3924 if (i == get_physical_broadcast())
3925 panic("Max apic_id exceeded!\n");
3926
3927 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3928 "trying %d\n", ioapic, apic_id, i);
3929
3930 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Ingo Molnar80587142009-01-28 06:50:47 +01003933 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 physids_or(apic_id_map, apic_id_map, tmp);
3935
3936 if (reg_00.bits.ID != apic_id) {
3937 reg_00.bits.ID = apic_id;
3938
3939 spin_lock_irqsave(&ioapic_lock, flags);
3940 io_apic_write(ioapic, 0, reg_00.raw);
3941 reg_00.raw = io_apic_read(ioapic, 0);
3942 spin_unlock_irqrestore(&ioapic_lock, flags);
3943
3944 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003945 if (reg_00.bits.ID != apic_id) {
3946 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3947 return -1;
3948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 }
3950
3951 apic_printk(APIC_VERBOSE, KERN_INFO
3952 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3953
3954 return apic_id;
3955}
3956
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003957int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958{
3959 union IO_APIC_reg_01 reg_01;
3960 unsigned long flags;
3961
3962 spin_lock_irqsave(&ioapic_lock, flags);
3963 reg_01.raw = io_apic_read(ioapic, 1);
3964 spin_unlock_irqrestore(&ioapic_lock, flags);
3965
3966 return reg_01.bits.version;
3967}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003968#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Yinghai Lua2f809b2009-04-27 18:01:20 -07003970int io_apic_set_pci_routing(struct device *dev, int ioapic, int pin, int irq,
3971 int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003973 struct irq_desc *desc;
3974 struct irq_cfg *cfg;
Yinghai Lu024154c2009-04-27 18:01:50 -07003975 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003978 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 ioapic);
3980 return -EINVAL;
3981 }
3982
Yinghai Lu024154c2009-04-27 18:01:50 -07003983 if (dev)
3984 node = dev_to_node(dev);
3985 else
3986 node = cpu_to_node(boot_cpu_id);
3987
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003988 desc = irq_to_desc_alloc_node(irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003989 if (!desc) {
3990 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3991 return 0;
3992 }
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 * IRQs < 16 are already in the irq_2_pin[] map
3996 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003997 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003998 cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003999 add_pin_to_irq_node(cfg, node, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Yinghai Lu3145e942008-12-05 18:58:34 -08004002 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
4004 return 0;
4005}
4006
Ingo Molnar54168ed2008-08-20 09:07:45 +02004007
Shaohua Li61fd47e2007-11-17 01:05:28 -05004008int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4009{
4010 int i;
4011
4012 if (skip_ioapic_setup)
4013 return -1;
4014
4015 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304016 if (mp_irqs[i].irqtype == mp_INT &&
4017 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004018 break;
4019 if (i >= mp_irq_entries)
4020 return -1;
4021
4022 *trigger = irq_trigger(i);
4023 *polarity = irq_polarity(i);
4024 return 0;
4025}
4026
Len Brown888ba6c2005-08-24 12:07:20 -04004027#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004028
Yinghai Lu497c9a12008-08-19 20:50:28 -07004029/*
4030 * This function currently is only a helper for the i386 smp boot process where
4031 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004032 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004033 */
4034#ifdef CONFIG_SMP
4035void __init setup_ioapic_dest(void)
4036{
4037 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004038 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004039 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08004040 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004041
4042 if (skip_ioapic_setup == 1)
4043 return;
4044
4045 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4046 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4047 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4048 if (irq_entry == -1)
4049 continue;
4050 irq = pin_2_irq(irq_entry, ioapic, pin);
4051
4052 /* setup_IO_APIC_irqs could fail to get vector for some device
4053 * when you have too many devices, because at that time only boot
4054 * cpu is online.
4055 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004056 desc = irq_to_desc(irq);
4057 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004058 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08004059 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07004060 irq_trigger(irq_entry),
4061 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004062 continue;
4063
4064 }
4065
4066 /*
4067 * Honour affinities which have been set in early boot
4068 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004069 if (desc->status &
4070 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travis7f7ace02009-01-10 21:58:08 -08004071 mask = desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004072 else
Ingo Molnarfe402e12009-01-28 04:32:51 +01004073 mask = apic->target_cpus();
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004074
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004075 if (intr_remapping_enabled)
Yinghai Lu3145e942008-12-05 18:58:34 -08004076 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004077 else
Yinghai Lu3145e942008-12-05 18:58:34 -08004078 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004079 }
4080
4081 }
4082}
4083#endif
4084
Ingo Molnar54168ed2008-08-20 09:07:45 +02004085#define IOAPIC_RESOURCE_NAME_SIZE 11
4086
4087static struct resource *ioapic_resources;
4088
4089static struct resource * __init ioapic_setup_resources(void)
4090{
4091 unsigned long n;
4092 struct resource *res;
4093 char *mem;
4094 int i;
4095
4096 if (nr_ioapics <= 0)
4097 return NULL;
4098
4099 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4100 n *= nr_ioapics;
4101
4102 mem = alloc_bootmem(n);
4103 res = (void *)mem;
4104
4105 if (mem != NULL) {
4106 mem += sizeof(struct resource) * nr_ioapics;
4107
4108 for (i = 0; i < nr_ioapics; i++) {
4109 res[i].name = mem;
4110 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4111 sprintf(mem, "IOAPIC %u", i);
4112 mem += IOAPIC_RESOURCE_NAME_SIZE;
4113 }
4114 }
4115
4116 ioapic_resources = res;
4117
4118 return res;
4119}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004120
Yinghai Luf3294a32008-06-27 01:41:56 -07004121void __init ioapic_init_mappings(void)
4122{
4123 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004124 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004125 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004126
Ingo Molnar54168ed2008-08-20 09:07:45 +02004127 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004128 for (i = 0; i < nr_ioapics; i++) {
4129 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304130 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004131#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004132 if (!ioapic_phys) {
4133 printk(KERN_ERR
4134 "WARNING: bogus zero IO-APIC "
4135 "address found in MPTABLE, "
4136 "disabling IO/APIC support!\n");
4137 smp_found_config = 0;
4138 skip_ioapic_setup = 1;
4139 goto fake_ioapic_page;
4140 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004141#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004142 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004143#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004144fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004145#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004146 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004147 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004148 ioapic_phys = __pa(ioapic_phys);
4149 }
4150 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004151 apic_printk(APIC_VERBOSE,
4152 "mapped IOAPIC to %08lx (%08lx)\n",
4153 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004154 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004155
Ingo Molnar54168ed2008-08-20 09:07:45 +02004156 if (ioapic_res != NULL) {
4157 ioapic_res->start = ioapic_phys;
4158 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4159 ioapic_res++;
4160 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004161 }
4162}
4163
Ingo Molnar54168ed2008-08-20 09:07:45 +02004164static int __init ioapic_insert_resources(void)
4165{
4166 int i;
4167 struct resource *r = ioapic_resources;
4168
4169 if (!r) {
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004170 if (nr_ioapics > 0) {
4171 printk(KERN_ERR
4172 "IO APIC resources couldn't be allocated.\n");
4173 return -1;
4174 }
4175 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004176 }
4177
4178 for (i = 0; i < nr_ioapics; i++) {
4179 insert_resource(&iomem_resource, r);
4180 r++;
4181 }
4182
4183 return 0;
4184}
4185
4186/* Insert the IO APIC resources after PCI initialization has occured to handle
4187 * IO APICS that are mapped in on a BAR in PCI space. */
4188late_initcall(ioapic_insert_resources);