blob: e074eac5bd35aed21d50ca56606c4dd6495b4e21 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050062#include <asm/uv/uv_hub.h>
63#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar7b6aa332009-02-17 13:58:15 +010065#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067#define __apicdebuginit(type) static type __init
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020070 * Is the SiS APIC rmw bug present ?
71 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
73int sis_apic_bug = -1;
74
Yinghai Luefa25592008-08-19 20:50:36 -070075static DEFINE_SPINLOCK(ioapic_lock);
76static DEFINE_SPINLOCK(vector_lock);
77
Yinghai Luefa25592008-08-19 20:50:36 -070078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * # of IRQ routing registers
80 */
81int nr_ioapic_registers[MAX_IO_APICS];
82
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040083/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053084struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040085int nr_ioapics;
86
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040087/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053088struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040089
90/* # of MP IRQ source entries */
91int mp_irq_entries;
92
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040093#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
94int mp_bus_id_to_type[MAX_MP_BUSSES];
95#endif
96
97DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
98
Yinghai Luefa25592008-08-19 20:50:36 -070099int skip_ioapic_setup;
100
Ingo Molnar65a4e572009-01-31 03:36:17 +0100101void arch_disable_smp_support(void)
102{
103#ifdef CONFIG_PCI
104 noioapicquirk = 1;
105 noioapicreroute = -1;
106#endif
107 skip_ioapic_setup = 1;
108}
109
Ingo Molnar54168ed2008-08-20 09:07:45 +0200110static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700111{
112 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100113 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700114 return 0;
115}
116early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200117
Yinghai Lu0f978f42008-08-19 20:50:26 -0700118struct irq_pin_list;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * This is performance-critical, we want to do it O(1)
122 *
123 * the indexing order of this array favors 1:1 mappings
124 * between pins and IRQs.
125 */
126
Yinghai Lu0f978f42008-08-19 20:50:26 -0700127struct irq_pin_list {
128 int apic, pin;
129 struct irq_pin_list *next;
130};
Yinghai Lu301e6192008-08-19 20:50:02 -0700131
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800132static struct irq_pin_list *get_one_free_irq_2_pin(int cpu)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 struct irq_pin_list *pin;
135 int node;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700136
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800137 node = cpu_to_node(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700138
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800139 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700140
Yinghai Lu0f978f42008-08-19 20:50:26 -0700141 return pin;
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144struct irq_cfg {
145 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800146 cpumask_var_t domain;
147 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800148 unsigned move_cleanup_count;
149 u8 vector;
150 u8 move_in_progress : 1;
Yinghai Lu48a1b102008-12-11 00:15:01 -0800151#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
152 u8 move_desc_pending : 1;
153#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800154};
155
156/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
157#ifdef CONFIG_SPARSE_IRQ
158static struct irq_cfg irq_cfgx[] = {
159#else
160static struct irq_cfg irq_cfgx[NR_IRQS] = {
161#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800162 [0] = { .vector = IRQ0_VECTOR, },
163 [1] = { .vector = IRQ1_VECTOR, },
164 [2] = { .vector = IRQ2_VECTOR, },
165 [3] = { .vector = IRQ3_VECTOR, },
166 [4] = { .vector = IRQ4_VECTOR, },
167 [5] = { .vector = IRQ5_VECTOR, },
168 [6] = { .vector = IRQ6_VECTOR, },
169 [7] = { .vector = IRQ7_VECTOR, },
170 [8] = { .vector = IRQ8_VECTOR, },
171 [9] = { .vector = IRQ9_VECTOR, },
172 [10] = { .vector = IRQ10_VECTOR, },
173 [11] = { .vector = IRQ11_VECTOR, },
174 [12] = { .vector = IRQ12_VECTOR, },
175 [13] = { .vector = IRQ13_VECTOR, },
176 [14] = { .vector = IRQ14_VECTOR, },
177 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800178};
179
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800180int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800181{
182 struct irq_cfg *cfg;
183 struct irq_desc *desc;
184 int count;
185 int i;
186
187 cfg = irq_cfgx;
188 count = ARRAY_SIZE(irq_cfgx);
189
190 for (i = 0; i < count; i++) {
191 desc = irq_to_desc(i);
192 desc->chip_data = &cfg[i];
Mike Travis22f65d32008-12-16 17:33:56 -0800193 alloc_bootmem_cpumask_var(&cfg[i].domain);
194 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
195 if (i < NR_IRQS_LEGACY)
196 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800197 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800198
199 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800200}
201
202#ifdef CONFIG_SPARSE_IRQ
203static struct irq_cfg *irq_cfg(unsigned int irq)
204{
205 struct irq_cfg *cfg = NULL;
206 struct irq_desc *desc;
207
208 desc = irq_to_desc(irq);
209 if (desc)
210 cfg = desc->chip_data;
211
212 return cfg;
213}
214
215static struct irq_cfg *get_one_free_irq_cfg(int cpu)
216{
217 struct irq_cfg *cfg;
218 int node;
219
220 node = cpu_to_node(cpu);
221
222 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800223 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800224 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800225 kfree(cfg);
226 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800227 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
228 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800229 free_cpumask_var(cfg->domain);
230 kfree(cfg);
231 cfg = NULL;
232 } else {
233 cpumask_clear(cfg->domain);
234 cpumask_clear(cfg->old_domain);
235 }
236 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800237
238 return cfg;
239}
240
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800241int arch_init_chip_data(struct irq_desc *desc, int cpu)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800242{
243 struct irq_cfg *cfg;
244
245 cfg = desc->chip_data;
246 if (!cfg) {
247 desc->chip_data = get_one_free_irq_cfg(cpu);
248 if (!desc->chip_data) {
249 printk(KERN_ERR "can not alloc irq_cfg\n");
250 BUG_ON(1);
251 }
252 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800253
254 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800255}
256
Yinghai Lu48a1b102008-12-11 00:15:01 -0800257#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
258
259static void
260init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu)
261{
262 struct irq_pin_list *old_entry, *head, *tail, *entry;
263
264 cfg->irq_2_pin = NULL;
265 old_entry = old_cfg->irq_2_pin;
266 if (!old_entry)
267 return;
268
269 entry = get_one_free_irq_2_pin(cpu);
270 if (!entry)
271 return;
272
273 entry->apic = old_entry->apic;
274 entry->pin = old_entry->pin;
275 head = entry;
276 tail = entry;
277 old_entry = old_entry->next;
278 while (old_entry) {
279 entry = get_one_free_irq_2_pin(cpu);
280 if (!entry) {
281 entry = head;
282 while (entry) {
283 head = entry->next;
284 kfree(entry);
285 entry = head;
286 }
287 /* still use the old one */
288 return;
289 }
290 entry->apic = old_entry->apic;
291 entry->pin = old_entry->pin;
292 tail->next = entry;
293 tail = entry;
294 old_entry = old_entry->next;
295 }
296
297 tail->next = NULL;
298 cfg->irq_2_pin = head;
299}
300
301static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
302{
303 struct irq_pin_list *entry, *next;
304
305 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
306 return;
307
308 entry = old_cfg->irq_2_pin;
309
310 while (entry) {
311 next = entry->next;
312 kfree(entry);
313 entry = next;
314 }
315 old_cfg->irq_2_pin = NULL;
316}
317
318void arch_init_copy_chip_data(struct irq_desc *old_desc,
319 struct irq_desc *desc, int cpu)
320{
321 struct irq_cfg *cfg;
322 struct irq_cfg *old_cfg;
323
324 cfg = get_one_free_irq_cfg(cpu);
325
326 if (!cfg)
327 return;
328
329 desc->chip_data = cfg;
330
331 old_cfg = old_desc->chip_data;
332
333 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
334
335 init_copy_irq_2_pin(old_cfg, cfg, cpu);
336}
337
338static void free_irq_cfg(struct irq_cfg *old_cfg)
339{
340 kfree(old_cfg);
341}
342
343void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
344{
345 struct irq_cfg *old_cfg, *cfg;
346
347 old_cfg = old_desc->chip_data;
348 cfg = desc->chip_data;
349
350 if (old_cfg == cfg)
351 return;
352
353 if (old_cfg) {
354 free_irq_2_pin(old_cfg, cfg);
355 free_irq_cfg(old_cfg);
356 old_desc->chip_data = NULL;
357 }
358}
359
Ingo Molnard733e002008-12-17 13:35:51 +0100360static void
361set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800362{
363 struct irq_cfg *cfg = desc->chip_data;
364
365 if (!cfg->move_in_progress) {
366 /* it means that domain is not changed */
Mike Travis7f7ace02009-01-10 21:58:08 -0800367 if (!cpumask_intersects(desc->affinity, mask))
Yinghai Lu48a1b102008-12-11 00:15:01 -0800368 cfg->move_desc_pending = 1;
369 }
370}
371#endif
372
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800373#else
374static struct irq_cfg *irq_cfg(unsigned int irq)
375{
376 return irq < nr_irqs ? irq_cfgx + irq : NULL;
377}
378
379#endif
380
Yinghai Lu48a1b102008-12-11 00:15:01 -0800381#ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC
Mike Travise7986732008-12-16 17:33:52 -0800382static inline void
383set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800384{
385}
Yinghai Lu48a1b102008-12-11 00:15:01 -0800386#endif
Yinghai Lu3145e942008-12-05 18:58:34 -0800387
Linus Torvalds130fe052006-11-01 09:11:00 -0800388struct io_apic {
389 unsigned int index;
390 unsigned int unused[3];
391 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700392 unsigned int unused2[11];
393 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800394};
395
396static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
397{
398 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530399 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800400}
401
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700402static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
403{
404 struct io_apic __iomem *io_apic = io_apic_base(apic);
405 writel(vector, &io_apic->eoi);
406}
407
Linus Torvalds130fe052006-11-01 09:11:00 -0800408static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
409{
410 struct io_apic __iomem *io_apic = io_apic_base(apic);
411 writel(reg, &io_apic->index);
412 return readl(&io_apic->data);
413}
414
415static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
416{
417 struct io_apic __iomem *io_apic = io_apic_base(apic);
418 writel(reg, &io_apic->index);
419 writel(value, &io_apic->data);
420}
421
422/*
423 * Re-write a value: to be used for read-modify-write
424 * cycles where the read already set up the index register.
425 *
426 * Older SiS APIC requires we rewrite the index register
427 */
428static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
429{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200430 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200431
432 if (sis_apic_bug)
433 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800434 writel(value, &io_apic->data);
435}
436
Yinghai Lu3145e942008-12-05 18:58:34 -0800437static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700438{
439 struct irq_pin_list *entry;
440 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700441
442 spin_lock_irqsave(&ioapic_lock, flags);
443 entry = cfg->irq_2_pin;
444 for (;;) {
445 unsigned int reg;
446 int pin;
447
448 if (!entry)
449 break;
450 pin = entry->pin;
451 reg = io_apic_read(entry->apic, 0x10 + pin*2);
452 /* Is the remote IRR bit set? */
453 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
454 spin_unlock_irqrestore(&ioapic_lock, flags);
455 return true;
456 }
457 if (!entry->next)
458 break;
459 entry = entry->next;
460 }
461 spin_unlock_irqrestore(&ioapic_lock, flags);
462
463 return false;
464}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700465
Andi Kleencf4c6a22006-09-26 10:52:30 +0200466union entry_union {
467 struct { u32 w1, w2; };
468 struct IO_APIC_route_entry entry;
469};
470
471static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
472{
473 union entry_union eu;
474 unsigned long flags;
475 spin_lock_irqsave(&ioapic_lock, flags);
476 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
477 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
478 spin_unlock_irqrestore(&ioapic_lock, flags);
479 return eu.entry;
480}
481
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800482/*
483 * When we write a new IO APIC routing entry, we need to write the high
484 * word first! If the mask bit in the low word is clear, we will enable
485 * the interrupt, and we need to make sure the entry is fully populated
486 * before that happens.
487 */
Andi Kleend15512f2006-12-07 02:14:07 +0100488static void
489__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
490{
491 union entry_union eu;
492 eu.entry = e;
493 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
494 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
495}
496
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800497void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200498{
499 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200500 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100501 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800502 spin_unlock_irqrestore(&ioapic_lock, flags);
503}
504
505/*
506 * When we mask an IO APIC routing entry, we need to write the low
507 * word first, in order to set the mask bit before we change the
508 * high bits!
509 */
510static void ioapic_mask_entry(int apic, int pin)
511{
512 unsigned long flags;
513 union entry_union eu = { .entry.mask = 1 };
514
515 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200516 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
517 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
518 spin_unlock_irqrestore(&ioapic_lock, flags);
519}
520
Yinghai Lu497c9a12008-08-19 20:50:28 -0700521#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -0800522static void send_cleanup_vector(struct irq_cfg *cfg)
523{
524 cpumask_var_t cleanup_mask;
525
526 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
527 unsigned int i;
528 cfg->move_cleanup_count = 0;
529 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
530 cfg->move_cleanup_count++;
531 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
Ingo Molnardac5f412009-01-28 15:42:24 +0100532 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800533 } else {
534 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
535 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
Ingo Molnardac5f412009-01-28 15:42:24 +0100536 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
Mike Travis22f65d32008-12-16 17:33:56 -0800537 free_cpumask_var(cleanup_mask);
538 }
539 cfg->move_in_progress = 0;
540}
541
Yinghai Lu3145e942008-12-05 18:58:34 -0800542static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700543{
544 int apic, pin;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700545 struct irq_pin_list *entry;
Yinghai Lu3145e942008-12-05 18:58:34 -0800546 u8 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700547
Yinghai Lu497c9a12008-08-19 20:50:28 -0700548 entry = cfg->irq_2_pin;
549 for (;;) {
550 unsigned int reg;
551
552 if (!entry)
553 break;
554
555 apic = entry->apic;
556 pin = entry->pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200557#ifdef CONFIG_INTR_REMAP
558 /*
559 * With interrupt-remapping, destination information comes
560 * from interrupt-remapping table entry.
561 */
562 if (!irq_remapped(irq))
563 io_apic_write(apic, 0x11 + pin*2, dest);
564#else
Yinghai Lu497c9a12008-08-19 20:50:28 -0700565 io_apic_write(apic, 0x11 + pin*2, dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200566#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -0700567 reg = io_apic_read(apic, 0x10 + pin*2);
568 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
569 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200570 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700571 if (!entry->next)
572 break;
573 entry = entry->next;
574 }
575}
Yinghai Luefa25592008-08-19 20:50:36 -0700576
Mike Travise7986732008-12-16 17:33:52 -0800577static int
578assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
Yinghai Luefa25592008-08-19 20:50:36 -0700579
Mike Travis22f65d32008-12-16 17:33:56 -0800580/*
Ingo Molnardebccb32009-01-28 15:20:18 +0100581 * Either sets desc->affinity to a valid value, and returns
582 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
583 * leaves desc->affinity untouched.
Mike Travis22f65d32008-12-16 17:33:56 -0800584 */
585static unsigned int
586set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700587{
588 struct irq_cfg *cfg;
Yinghai Lu3145e942008-12-05 18:58:34 -0800589 unsigned int irq;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700590
Rusty Russell0de26522008-12-13 21:20:26 +1030591 if (!cpumask_intersects(mask, cpu_online_mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800592 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700593
Yinghai Lu3145e942008-12-05 18:58:34 -0800594 irq = desc->irq;
595 cfg = desc->chip_data;
596 if (assign_irq_vector(irq, cfg, mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800597 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700598
Mike Travis7f7ace02009-01-10 21:58:08 -0800599 cpumask_and(desc->affinity, cfg->domain, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -0800600 set_extra_move_desc(desc, mask);
Ingo Molnardebccb32009-01-28 15:20:18 +0100601
602 return apic->cpu_mask_to_apicid_and(desc->affinity, cpu_online_mask);
Mike Travis22f65d32008-12-16 17:33:56 -0800603}
Yinghai Lu3145e942008-12-05 18:58:34 -0800604
Mike Travis22f65d32008-12-16 17:33:56 -0800605static void
606set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700607{
608 struct irq_cfg *cfg;
609 unsigned long flags;
610 unsigned int dest;
Mike Travis22f65d32008-12-16 17:33:56 -0800611 unsigned int irq;
612
613 irq = desc->irq;
614 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700615
616 spin_lock_irqsave(&ioapic_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -0800617 dest = set_desc_affinity(desc, mask);
618 if (dest != BAD_APICID) {
619 /* Only the high 8 bits are valid. */
620 dest = SET_APIC_LOGICAL_ID(dest);
621 __target_IO_APIC_irq(irq, dest, cfg);
622 }
Yinghai Lu497c9a12008-08-19 20:50:28 -0700623 spin_unlock_irqrestore(&ioapic_lock, flags);
624}
Yinghai Lu3145e942008-12-05 18:58:34 -0800625
Mike Travis22f65d32008-12-16 17:33:56 -0800626static void
627set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800628{
Yinghai Lu497c9a12008-08-19 20:50:28 -0700629 struct irq_desc *desc;
630
Yinghai Lu497c9a12008-08-19 20:50:28 -0700631 desc = irq_to_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800632
633 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700634}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700635#endif /* CONFIG_SMP */
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/*
638 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
639 * shared ISA-space IRQs, so we have to support them. We are super
640 * fast in the common case, and fast for shared ISA-space IRQs.
641 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800642static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700644 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Yinghai Lu0f978f42008-08-19 20:50:26 -0700646 entry = cfg->irq_2_pin;
647 if (!entry) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800648 entry = get_one_free_irq_2_pin(cpu);
649 if (!entry) {
650 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
651 apic, pin);
652 return;
653 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700654 cfg->irq_2_pin = entry;
655 entry->apic = apic;
656 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700657 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700659
660 while (entry->next) {
661 /* not again, please */
662 if (entry->apic == apic && entry->pin == pin)
663 return;
664
665 entry = entry->next;
666 }
667
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800668 entry->next = get_one_free_irq_2_pin(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700669 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 entry->apic = apic;
671 entry->pin = pin;
672}
673
674/*
675 * Reroute an IRQ to a different pin.
676 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800677static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 int oldapic, int oldpin,
679 int newapic, int newpin)
680{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700681 struct irq_pin_list *entry = cfg->irq_2_pin;
682 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Yinghai Lu0f978f42008-08-19 20:50:26 -0700684 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (entry->apic == oldapic && entry->pin == oldpin) {
686 entry->apic = newapic;
687 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700688 replaced = 1;
689 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700691 }
692 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700694
695 /* why? call replace before add? */
696 if (!replaced)
Yinghai Lu3145e942008-12-05 18:58:34 -0800697 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Yinghai Lu3145e942008-12-05 18:58:34 -0800700static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400701 int mask_and, int mask_or,
702 void (*final)(struct irq_pin_list *entry))
703{
704 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400705 struct irq_pin_list *entry;
706
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400707 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
708 unsigned int reg;
709 pin = entry->pin;
710 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
711 reg &= mask_and;
712 reg |= mask_or;
713 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
714 if (final)
715 final(entry);
716 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700717}
718
Yinghai Lu3145e942008-12-05 18:58:34 -0800719static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400720{
Yinghai Lu3145e942008-12-05 18:58:34 -0800721 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400722}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700723
724#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530725static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700726{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400727 /*
728 * Synchronize the IO-APIC and the CPU by doing
729 * a dummy read from the IO-APIC
730 */
731 struct io_apic __iomem *io_apic;
732 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700733 readl(&io_apic->data);
734}
735
Yinghai Lu3145e942008-12-05 18:58:34 -0800736static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400737{
Yinghai Lu3145e942008-12-05 18:58:34 -0800738 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400739}
740#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800741static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400742{
Yinghai Lu3145e942008-12-05 18:58:34 -0800743 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400744}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700745
Yinghai Lu3145e942008-12-05 18:58:34 -0800746static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400747{
Yinghai Lu3145e942008-12-05 18:58:34 -0800748 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400749 IO_APIC_REDIR_MASKED, NULL);
750}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700751
Yinghai Lu3145e942008-12-05 18:58:34 -0800752static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400753{
Yinghai Lu3145e942008-12-05 18:58:34 -0800754 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400755 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
756}
757#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700758
Yinghai Lu3145e942008-12-05 18:58:34 -0800759static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Yinghai Lu3145e942008-12-05 18:58:34 -0800761 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unsigned long flags;
763
Yinghai Lu3145e942008-12-05 18:58:34 -0800764 BUG_ON(!cfg);
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800767 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 spin_unlock_irqrestore(&ioapic_lock, flags);
769}
770
Yinghai Lu3145e942008-12-05 18:58:34 -0800771static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Yinghai Lu3145e942008-12-05 18:58:34 -0800773 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 unsigned long flags;
775
776 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800777 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 spin_unlock_irqrestore(&ioapic_lock, flags);
779}
780
Yinghai Lu3145e942008-12-05 18:58:34 -0800781static void mask_IO_APIC_irq(unsigned int irq)
782{
783 struct irq_desc *desc = irq_to_desc(irq);
784
785 mask_IO_APIC_irq_desc(desc);
786}
787static void unmask_IO_APIC_irq(unsigned int irq)
788{
789 struct irq_desc *desc = irq_to_desc(irq);
790
791 unmask_IO_APIC_irq_desc(desc);
792}
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
795{
796 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200799 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (entry.delivery_mode == dest_SMI)
801 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
803 * Disable it in the IO-APIC irq-routing table:
804 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800805 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Ingo Molnar54168ed2008-08-20 09:07:45 +0200808static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 int apic, pin;
811
812 for (apic = 0; apic < nr_ioapics; apic++)
813 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
814 clear_IO_APIC_pin(apic, pin);
815}
816
Ingo Molnar54168ed2008-08-20 09:07:45 +0200817#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818/*
819 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
820 * specific CPU-side IRQs.
821 */
822
823#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800824static int pirq_entries[MAX_PIRQS] = {
825 [0 ... MAX_PIRQS - 1] = -1
826};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static int __init ioapic_pirq_setup(char *str)
829{
830 int i, max;
831 int ints[MAX_PIRQS+1];
832
833 get_options(str, ARRAY_SIZE(ints), ints);
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 apic_printk(APIC_VERBOSE, KERN_INFO
836 "PIRQ redirection, working around broken MP-BIOS.\n");
837 max = MAX_PIRQS;
838 if (ints[0] < MAX_PIRQS)
839 max = ints[0];
840
841 for (i = 0; i < max; i++) {
842 apic_printk(APIC_VERBOSE, KERN_DEBUG
843 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
844 /*
845 * PIRQs are mapped upside down, usually.
846 */
847 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
848 }
849 return 1;
850}
851
852__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200853#endif /* CONFIG_X86_32 */
854
855#ifdef CONFIG_INTR_REMAP
856/* I/O APIC RTE contents at the OS boot up */
857static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
858
859/*
860 * Saves and masks all the unmasked IO-APIC RTE's
861 */
862int save_mask_IO_APIC_setup(void)
863{
864 union IO_APIC_reg_01 reg_01;
865 unsigned long flags;
866 int apic, pin;
867
868 /*
869 * The number of IO-APIC IRQ registers (== #pins):
870 */
871 for (apic = 0; apic < nr_ioapics; apic++) {
872 spin_lock_irqsave(&ioapic_lock, flags);
873 reg_01.raw = io_apic_read(apic, 1);
874 spin_unlock_irqrestore(&ioapic_lock, flags);
875 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
876 }
877
878 for (apic = 0; apic < nr_ioapics; apic++) {
879 early_ioapic_entries[apic] =
880 kzalloc(sizeof(struct IO_APIC_route_entry) *
881 nr_ioapic_registers[apic], GFP_KERNEL);
882 if (!early_ioapic_entries[apic])
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400883 goto nomem;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200884 }
885
886 for (apic = 0; apic < nr_ioapics; apic++)
887 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
888 struct IO_APIC_route_entry entry;
889
890 entry = early_ioapic_entries[apic][pin] =
891 ioapic_read_entry(apic, pin);
892 if (!entry.mask) {
893 entry.mask = 1;
894 ioapic_write_entry(apic, pin, entry);
895 }
896 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400897
Ingo Molnar54168ed2008-08-20 09:07:45 +0200898 return 0;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400899
900nomem:
Cyrill Gorcunovc1370b42008-09-23 23:00:02 +0400901 while (apic >= 0)
902 kfree(early_ioapic_entries[apic--]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400903 memset(early_ioapic_entries, 0,
904 ARRAY_SIZE(early_ioapic_entries));
905
906 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200907}
908
909void restore_IO_APIC_setup(void)
910{
911 int apic, pin;
912
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400913 for (apic = 0; apic < nr_ioapics; apic++) {
914 if (!early_ioapic_entries[apic])
915 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200916 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
917 ioapic_write_entry(apic, pin,
918 early_ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400919 kfree(early_ioapic_entries[apic]);
920 early_ioapic_entries[apic] = NULL;
921 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200922}
923
924void reinit_intr_remapped_IO_APIC(int intr_remapping)
925{
926 /*
927 * for now plain restore of previous settings.
928 * TBD: In the case of OS enabling interrupt-remapping,
929 * IO-APIC RTE's need to be setup to point to interrupt-remapping
930 * table entries. for now, do a plain restore, and wait for
931 * the setup_IO_APIC_irqs() to do proper initialization.
932 */
933 restore_IO_APIC_setup();
934}
935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/*
938 * Find the IRQ entry number of a certain pin.
939 */
940static int find_irq_entry(int apic, int pin, int type)
941{
942 int i;
943
944 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530945 if (mp_irqs[i].irqtype == type &&
946 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
947 mp_irqs[i].dstapic == MP_APIC_ALL) &&
948 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return i;
950
951 return -1;
952}
953
954/*
955 * Find the pin to which IRQ[irq] (ISA) is connected
956 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800957static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 int i;
960
961 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530962 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300964 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530965 (mp_irqs[i].irqtype == type) &&
966 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530968 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
970 return -1;
971}
972
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800973static int __init find_isa_irq_apic(int irq, int type)
974{
975 int i;
976
977 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530978 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800979
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300980 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530981 (mp_irqs[i].irqtype == type) &&
982 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800983 break;
984 }
985 if (i < mp_irq_entries) {
986 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200987 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530988 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800989 return apic;
990 }
991 }
992
993 return -1;
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * Find a specific PCI IRQ entry.
998 * Not an __init, possibly needed by modules
999 */
1000static int pin_2_irq(int idx, int apic, int pin);
1001
1002int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
1003{
1004 int apic, i, best_guess = -1;
1005
Ingo Molnar54168ed2008-08-20 09:07:45 +02001006 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1007 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +04001008 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001009 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return -1;
1011 }
1012 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301013 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 for (apic = 0; apic < nr_ioapics; apic++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301016 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1017 mp_irqs[i].dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 break;
1019
Alexey Starikovskiy47cab822008-03-20 14:54:30 +03001020 if (!test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301021 !mp_irqs[i].irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 (bus == lbus) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301023 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1024 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (!(apic || IO_APIC_IRQ(irq)))
1027 continue;
1028
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301029 if (pin == (mp_irqs[i].srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return irq;
1031 /*
1032 * Use the first all-but-pin matching entry as a
1033 * best-guess fuzzy result for broken mptables.
1034 */
1035 if (best_guess < 0)
1036 best_guess = irq;
1037 }
1038 }
1039 return best_guess;
1040}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001041
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001042EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001044#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
1046 * EISA Edge/Level control register, ELCR
1047 */
1048static int EISA_ELCR(unsigned int irq)
1049{
Yinghai Lu99d093d2008-12-05 18:58:32 -08001050 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 unsigned int port = 0x4d0 + (irq >> 3);
1052 return (inb(port) >> (irq & 7)) & 1;
1053 }
1054 apic_printk(APIC_VERBOSE, KERN_INFO
1055 "Broken MPtable reports ISA irq %d\n", irq);
1056 return 0;
1057}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001058
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001061/* ISA interrupts are always polarity zero edge triggered,
1062 * when listed as conforming in the MP table. */
1063
1064#define default_ISA_trigger(idx) (0)
1065#define default_ISA_polarity(idx) (0)
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/* EISA interrupts are always polarity zero and can be edge or level
1068 * trigger depending on the ELCR value. If an interrupt is listed as
1069 * EISA conforming in the MP table, that means its trigger type must
1070 * be read in from the ELCR */
1071
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301072#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001073#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075/* PCI interrupts are always polarity one level triggered,
1076 * when listed as conforming in the MP table. */
1077
1078#define default_PCI_trigger(idx) (1)
1079#define default_PCI_polarity(idx) (1)
1080
1081/* MCA interrupts are always polarity zero level triggered,
1082 * when listed as conforming in the MP table. */
1083
1084#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001085#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Shaohua Li61fd47e2007-11-17 01:05:28 -05001087static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301089 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int polarity;
1091
1092 /*
1093 * Determine IRQ line polarity (high active or low active):
1094 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301095 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001097 case 0: /* conforms, ie. bus-type dependent polarity */
1098 if (test_bit(bus, mp_bus_not_pci))
1099 polarity = default_ISA_polarity(idx);
1100 else
1101 polarity = default_PCI_polarity(idx);
1102 break;
1103 case 1: /* high active */
1104 {
1105 polarity = 0;
1106 break;
1107 }
1108 case 2: /* reserved */
1109 {
1110 printk(KERN_WARNING "broken BIOS!!\n");
1111 polarity = 1;
1112 break;
1113 }
1114 case 3: /* low active */
1115 {
1116 polarity = 1;
1117 break;
1118 }
1119 default: /* invalid */
1120 {
1121 printk(KERN_WARNING "broken BIOS!!\n");
1122 polarity = 1;
1123 break;
1124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 return polarity;
1127}
1128
1129static int MPBIOS_trigger(int idx)
1130{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301131 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 int trigger;
1133
1134 /*
1135 * Determine IRQ trigger mode (edge or level sensitive):
1136 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301137 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001139 case 0: /* conforms, ie. bus-type dependent */
1140 if (test_bit(bus, mp_bus_not_pci))
1141 trigger = default_ISA_trigger(idx);
1142 else
1143 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001144#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001145 switch (mp_bus_id_to_type[bus]) {
1146 case MP_BUS_ISA: /* ISA pin */
1147 {
1148 /* set before the switch */
1149 break;
1150 }
1151 case MP_BUS_EISA: /* EISA pin */
1152 {
1153 trigger = default_EISA_trigger(idx);
1154 break;
1155 }
1156 case MP_BUS_PCI: /* PCI pin */
1157 {
1158 /* set before the switch */
1159 break;
1160 }
1161 case MP_BUS_MCA: /* MCA pin */
1162 {
1163 trigger = default_MCA_trigger(idx);
1164 break;
1165 }
1166 default:
1167 {
1168 printk(KERN_WARNING "broken BIOS!!\n");
1169 trigger = 1;
1170 break;
1171 }
1172 }
1173#endif
1174 break;
1175 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001176 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001177 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001178 break;
1179 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001180 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001181 {
1182 printk(KERN_WARNING "broken BIOS!!\n");
1183 trigger = 1;
1184 break;
1185 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001186 case 3: /* level */
1187 {
1188 trigger = 1;
1189 break;
1190 }
1191 default: /* invalid */
1192 {
1193 printk(KERN_WARNING "broken BIOS!!\n");
1194 trigger = 0;
1195 break;
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198 return trigger;
1199}
1200
1201static inline int irq_polarity(int idx)
1202{
1203 return MPBIOS_polarity(idx);
1204}
1205
1206static inline int irq_trigger(int idx)
1207{
1208 return MPBIOS_trigger(idx);
1209}
1210
Yinghai Luefa25592008-08-19 20:50:36 -07001211int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212static int pin_2_irq(int idx, int apic, int pin)
1213{
1214 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301215 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /*
1218 * Debugging check, we are in big trouble if this message pops up!
1219 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301220 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1222
Ingo Molnar54168ed2008-08-20 09:07:45 +02001223 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301224 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001225 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001226 /*
1227 * PCI IRQs are mapped in order
1228 */
1229 i = irq = 0;
1230 while (i < apic)
1231 irq += nr_ioapic_registers[i++];
1232 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001233 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001234 * For MPS mode, so far only needed by ES7000 platform
1235 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001236 if (ioapic_renumber_irq)
1237 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Ingo Molnar54168ed2008-08-20 09:07:45 +02001240#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1243 */
1244 if ((pin >= 16) && (pin <= 23)) {
1245 if (pirq_entries[pin-16] != -1) {
1246 if (!pirq_entries[pin-16]) {
1247 apic_printk(APIC_VERBOSE, KERN_DEBUG
1248 "disabling PIRQ%d\n", pin-16);
1249 } else {
1250 irq = pirq_entries[pin-16];
1251 apic_printk(APIC_VERBOSE, KERN_DEBUG
1252 "using PIRQ%d -> IRQ %d\n",
1253 pin-16, irq);
1254 }
1255 }
1256 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001257#endif
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return irq;
1260}
1261
Yinghai Lu497c9a12008-08-19 20:50:28 -07001262void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001264 /* Used to the online set of cpus does not change
1265 * during assign_irq_vector.
1266 */
1267 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Yinghai Lu497c9a12008-08-19 20:50:28 -07001270void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001271{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001272 spin_unlock(&vector_lock);
1273}
1274
Mike Travise7986732008-12-16 17:33:52 -08001275static int
1276__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001277{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001278 /*
1279 * NOTE! The local APIC isn't very good at handling
1280 * multiple interrupts at the same interrupt level.
1281 * As the interrupt level is determined by taking the
1282 * vector number and shifting that right by 4, we
1283 * want to spread these out a bit so that they don't
1284 * all fall in the same interrupt level.
1285 *
1286 * Also, we've got to be careful not to trash gate
1287 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1288 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001289 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1290 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001291 int cpu, err;
1292 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001293
Ingo Molnar54168ed2008-08-20 09:07:45 +02001294 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1295 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001296
Mike Travis22f65d32008-12-16 17:33:56 -08001297 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1298 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001299
Ingo Molnar54168ed2008-08-20 09:07:45 +02001300 old_vector = cfg->vector;
1301 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001302 cpumask_and(tmp_mask, mask, cpu_online_mask);
1303 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1304 if (!cpumask_empty(tmp_mask)) {
1305 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001306 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001307 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001308 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001309
Mike Travise7986732008-12-16 17:33:52 -08001310 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001311 err = -ENOSPC;
1312 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001313 int new_cpu;
1314 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001315
Ingo Molnare2d40b12009-01-28 06:50:47 +01001316 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001317
Ingo Molnar54168ed2008-08-20 09:07:45 +02001318 vector = current_vector;
1319 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001320next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001321 vector += 8;
1322 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001323 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001324 offset = (offset + 1) % 8;
1325 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001326 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001327 if (unlikely(current_vector == vector))
1328 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001329
1330 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001331 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001332
Mike Travis22f65d32008-12-16 17:33:56 -08001333 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001334 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1335 goto next;
1336 /* Found one! */
1337 current_vector = vector;
1338 current_offset = offset;
1339 if (old_vector) {
1340 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001341 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001342 }
Mike Travis22f65d32008-12-16 17:33:56 -08001343 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001344 per_cpu(vector_irq, new_cpu)[vector] = irq;
1345 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001346 cpumask_copy(cfg->domain, tmp_mask);
1347 err = 0;
1348 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001349 }
Mike Travis22f65d32008-12-16 17:33:56 -08001350 free_cpumask_var(tmp_mask);
1351 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001352}
1353
Mike Travise7986732008-12-16 17:33:52 -08001354static int
1355assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001356{
1357 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001358 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001359
1360 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001361 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001362 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001363 return err;
1364}
1365
Yinghai Lu3145e942008-12-05 18:58:34 -08001366static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001367{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001368 int cpu, vector;
1369
Yinghai Lu497c9a12008-08-19 20:50:28 -07001370 BUG_ON(!cfg->vector);
1371
1372 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001373 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001374 per_cpu(vector_irq, cpu)[vector] = -1;
1375
1376 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001377 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001378
1379 if (likely(!cfg->move_in_progress))
1380 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001381 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001382 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1383 vector++) {
1384 if (per_cpu(vector_irq, cpu)[vector] != irq)
1385 continue;
1386 per_cpu(vector_irq, cpu)[vector] = -1;
1387 break;
1388 }
1389 }
1390 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001391}
1392
1393void __setup_vector_irq(int cpu)
1394{
1395 /* Initialize vector_irq on a new cpu */
1396 /* This function must be called with vector_lock held */
1397 int irq, vector;
1398 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001399 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001400
1401 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001402 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001403 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001404 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001405 continue;
1406 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001407 per_cpu(vector_irq, cpu)[vector] = irq;
1408 }
1409 /* Mark the free vectors */
1410 for (vector = 0; vector < NR_VECTORS; ++vector) {
1411 irq = per_cpu(vector_irq, cpu)[vector];
1412 if (irq < 0)
1413 continue;
1414
1415 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001416 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001417 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001418 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001419}
Glauber Costa3fde6902008-05-28 20:34:19 -07001420
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001421static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001422#ifdef CONFIG_INTR_REMAP
1423static struct irq_chip ir_ioapic_chip;
1424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Ingo Molnar54168ed2008-08-20 09:07:45 +02001426#define IOAPIC_AUTO -1
1427#define IOAPIC_EDGE 0
1428#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001430#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001431static inline int IO_APIC_irq_trigger(int irq)
1432{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001433 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001434
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001435 for (apic = 0; apic < nr_ioapics; apic++) {
1436 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1437 idx = find_irq_entry(apic, pin, mp_INT);
1438 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1439 return irq_trigger(idx);
1440 }
1441 }
1442 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001443 * nonexistent IRQs are edge default
1444 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001445 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001446}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001447#else
1448static inline int IO_APIC_irq_trigger(int irq)
1449{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001450 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001451}
1452#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001453
Yinghai Lu3145e942008-12-05 18:58:34 -08001454static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Yinghai Lu199751d2008-08-19 20:50:27 -07001456
Jan Beulich6ebcc002006-06-26 13:56:46 +02001457 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001458 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001459 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001460 else
1461 desc->status &= ~IRQ_LEVEL;
1462
Ingo Molnar54168ed2008-08-20 09:07:45 +02001463#ifdef CONFIG_INTR_REMAP
1464 if (irq_remapped(irq)) {
1465 desc->status |= IRQ_MOVE_PCNTXT;
1466 if (trigger)
1467 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1468 handle_fasteoi_irq,
1469 "fasteoi");
1470 else
1471 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1472 handle_edge_irq, "edge");
1473 return;
1474 }
1475#endif
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001476 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1477 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001478 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001479 handle_fasteoi_irq,
1480 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001481 else
Ingo Molnara460e742006-10-17 00:10:03 -07001482 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001483 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001484}
1485
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001486int setup_ioapic_entry(int apic_id, int irq,
1487 struct IO_APIC_route_entry *entry,
1488 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001489 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001490{
1491 /*
1492 * add it to the IO-APIC irq-routing table:
1493 */
1494 memset(entry,0,sizeof(*entry));
1495
Ingo Molnar54168ed2008-08-20 09:07:45 +02001496#ifdef CONFIG_INTR_REMAP
1497 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001498 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001499 struct irte irte;
1500 struct IR_IO_APIC_route_entry *ir_entry =
1501 (struct IR_IO_APIC_route_entry *) entry;
1502 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001503
Ingo Molnar54168ed2008-08-20 09:07:45 +02001504 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001505 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001506
1507 index = alloc_irte(iommu, irq, 1);
1508 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001509 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001510
1511 memset(&irte, 0, sizeof(irte));
1512
1513 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001514 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001515 /*
1516 * Trigger mode in the IRTE will always be edge, and the
1517 * actual level or edge trigger will be setup in the IO-APIC
1518 * RTE. This will help simplify level triggered irq migration.
1519 * For more details, see the comments above explainig IO-APIC
1520 * irq migration in the presence of interrupt-remapping.
1521 */
1522 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001523 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001524 irte.vector = vector;
1525 irte.dest_id = IRTE_DEST(destination);
1526
1527 modify_irte(irq, &irte);
1528
1529 ir_entry->index2 = (index >> 15) & 0x1;
1530 ir_entry->zero = 0;
1531 ir_entry->format = 1;
1532 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001533 /*
1534 * IO-APIC RTE will be configured with virtual vector.
1535 * irq handler will do the explicit EOI to the io-apic.
1536 */
1537 ir_entry->vector = pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001538 } else
1539#endif
1540 {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001541 entry->delivery_mode = apic->irq_delivery_mode;
1542 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001543 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001544 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001545 }
1546
1547 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001548 entry->trigger = trigger;
1549 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001550
1551 /* Mask level triggered irqs.
1552 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1553 */
1554 if (trigger)
1555 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001556 return 0;
1557}
1558
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001559static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001560 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001561{
1562 struct irq_cfg *cfg;
1563 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001564 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001565
1566 if (!IO_APIC_IRQ(irq))
1567 return;
1568
Yinghai Lu3145e942008-12-05 18:58:34 -08001569 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001570
Ingo Molnarfe402e12009-01-28 04:32:51 +01001571 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001572 return;
1573
Ingo Molnardebccb32009-01-28 15:20:18 +01001574 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001575
1576 apic_printk(APIC_VERBOSE,KERN_DEBUG
1577 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1578 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001579 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001580 irq, trigger, polarity);
1581
1582
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001583 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001584 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001585 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001586 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001587 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001588 return;
1589 }
1590
Yinghai Lu3145e942008-12-05 18:58:34 -08001591 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001592 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001593 disable_8259A_irq(irq);
1594
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001595 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598static void __init setup_IO_APIC_irqs(void)
1599{
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001600 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001601 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001602 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001603 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001604 int cpu = boot_cpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1607
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001608 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1609 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001611 idx = find_irq_entry(apic_id, pin, mp_INT);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001612 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001613 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001614 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001615 apic_printk(APIC_VERBOSE,
1616 KERN_DEBUG " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001617 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001618 } else
1619 apic_printk(APIC_VERBOSE, " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001620 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001621 continue;
1622 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001623 if (notcon) {
1624 apic_printk(APIC_VERBOSE,
1625 " (apicid-pin) not connected\n");
1626 notcon = 0;
1627 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001628
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001629 irq = pin_2_irq(idx, apic_id, pin);
Ingo Molnar33a201f2009-01-28 07:17:26 +01001630
1631 /*
1632 * Skip the timer IRQ if there's a quirk handler
1633 * installed and if it returns 1:
1634 */
1635 if (apic->multi_timer_check &&
1636 apic->multi_timer_check(apic_id, irq))
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001637 continue;
Ingo Molnar33a201f2009-01-28 07:17:26 +01001638
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001639 desc = irq_to_desc_alloc_cpu(irq, cpu);
1640 if (!desc) {
1641 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1642 continue;
1643 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001644 cfg = desc->chip_data;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001645 add_pin_to_irq_cpu(cfg, cpu, apic_id, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001646
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001647 setup_IO_APIC_irq(apic_id, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001648 irq_trigger(idx), irq_polarity(idx));
1649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001652 if (notcon)
1653 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001654 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
1657/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001658 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001660static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001661 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
1663 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Ingo Molnar54168ed2008-08-20 09:07:45 +02001665#ifdef CONFIG_INTR_REMAP
1666 if (intr_remapping_enabled)
1667 return;
1668#endif
1669
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001670 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 /*
1673 * We use logical delivery to get the timer IRQ
1674 * to the first CPU.
1675 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001676 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001677 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001678 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001679 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 entry.polarity = 0;
1681 entry.trigger = 0;
1682 entry.vector = vector;
1683
1684 /*
1685 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001686 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001688 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 /*
1691 * Add it to the IO-APIC irq-routing table:
1692 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001693 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001696
1697__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 int apic, i;
1700 union IO_APIC_reg_00 reg_00;
1701 union IO_APIC_reg_01 reg_01;
1702 union IO_APIC_reg_02 reg_02;
1703 union IO_APIC_reg_03 reg_03;
1704 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001705 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001706 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001707 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 if (apic_verbosity == APIC_QUIET)
1710 return;
1711
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001712 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 for (i = 0; i < nr_ioapics; i++)
1714 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301715 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 /*
1718 * We are a bit conservative about what we expect. We have to
1719 * know about every hardware change ASAP.
1720 */
1721 printk(KERN_INFO "testing the IO APIC.......................\n");
1722
1723 for (apic = 0; apic < nr_ioapics; apic++) {
1724
1725 spin_lock_irqsave(&ioapic_lock, flags);
1726 reg_00.raw = io_apic_read(apic, 0);
1727 reg_01.raw = io_apic_read(apic, 1);
1728 if (reg_01.bits.version >= 0x10)
1729 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001730 if (reg_01.bits.version >= 0x20)
1731 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 spin_unlock_irqrestore(&ioapic_lock, flags);
1733
Ingo Molnar54168ed2008-08-20 09:07:45 +02001734 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301735 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1737 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1738 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1739 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Ingo Molnar54168ed2008-08-20 09:07:45 +02001741 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1745 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 /*
1748 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1749 * but the value of reg_02 is read as the previous read register
1750 * value, so ignore it if reg_02 == reg_01.
1751 */
1752 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1753 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1754 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
1756
1757 /*
1758 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1759 * or reg_03, but the value of reg_0[23] is read as the previous read
1760 * register value, so ignore it if reg_03 == reg_0[12].
1761 */
1762 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1763 reg_03.raw != reg_01.raw) {
1764 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1765 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1769
Yinghai Lud83e94a2008-08-19 20:50:33 -07001770 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1771 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 for (i = 0; i <= reg_01.bits.entries; i++) {
1774 struct IO_APIC_route_entry entry;
1775
Andi Kleencf4c6a22006-09-26 10:52:30 +02001776 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Ingo Molnar54168ed2008-08-20 09:07:45 +02001778 printk(KERN_DEBUG " %02x %03X ",
1779 i,
1780 entry.dest
1781 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1784 entry.mask,
1785 entry.trigger,
1786 entry.irr,
1787 entry.polarity,
1788 entry.delivery_status,
1789 entry.dest_mode,
1790 entry.delivery_mode,
1791 entry.vector
1792 );
1793 }
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001796 for_each_irq_desc(irq, desc) {
1797 struct irq_pin_list *entry;
1798
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001799 cfg = desc->chip_data;
1800 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001801 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001803 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 for (;;) {
1805 printk("-> %d:%d", entry->apic, entry->pin);
1806 if (!entry->next)
1807 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001808 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810 printk("\n");
1811 }
1812
1813 printk(KERN_INFO ".................................... done.\n");
1814
1815 return;
1816}
1817
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001818__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 unsigned int v;
1821 int i, j;
1822
1823 if (apic_verbosity == APIC_QUIET)
1824 return;
1825
1826 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1827 for (i = 0; i < 8; i++) {
1828 v = apic_read(base + i*0x10);
1829 for (j = 0; j < 32; j++) {
1830 if (v & (1<<j))
1831 printk("1");
1832 else
1833 printk("0");
1834 }
1835 printk("\n");
1836 }
1837}
1838
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001839__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
1841 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001842 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 if (apic_verbosity == APIC_QUIET)
1845 return;
1846
1847 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1848 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001849 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001850 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 v = apic_read(APIC_LVR);
1852 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1853 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001854 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 v = apic_read(APIC_TASKPRI);
1857 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1858
Ingo Molnar54168ed2008-08-20 09:07:45 +02001859 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001860 if (!APIC_XAPIC(ver)) {
1861 v = apic_read(APIC_ARBPRI);
1862 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1863 v & APIC_ARBPRI_MASK);
1864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 v = apic_read(APIC_PROCPRI);
1866 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1867 }
1868
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001869 /*
1870 * Remote read supported only in the 82489DX and local APIC for
1871 * Pentium processors.
1872 */
1873 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1874 v = apic_read(APIC_RRR);
1875 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1876 }
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 v = apic_read(APIC_LDR);
1879 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001880 if (!x2apic_enabled()) {
1881 v = apic_read(APIC_DFR);
1882 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 v = apic_read(APIC_SPIV);
1885 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1886
1887 printk(KERN_DEBUG "... APIC ISR field:\n");
1888 print_APIC_bitfield(APIC_ISR);
1889 printk(KERN_DEBUG "... APIC TMR field:\n");
1890 print_APIC_bitfield(APIC_TMR);
1891 printk(KERN_DEBUG "... APIC IRR field:\n");
1892 print_APIC_bitfield(APIC_IRR);
1893
Ingo Molnar54168ed2008-08-20 09:07:45 +02001894 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1895 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 v = apic_read(APIC_ESR);
1899 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1900 }
1901
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001902 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001903 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1904 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 v = apic_read(APIC_LVTT);
1907 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1908
1909 if (maxlvt > 3) { /* PC is LVT#4. */
1910 v = apic_read(APIC_LVTPC);
1911 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1912 }
1913 v = apic_read(APIC_LVT0);
1914 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1915 v = apic_read(APIC_LVT1);
1916 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1917
1918 if (maxlvt > 2) { /* ERR is LVT#3. */
1919 v = apic_read(APIC_LVTERR);
1920 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1921 }
1922
1923 v = apic_read(APIC_TMICT);
1924 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1925 v = apic_read(APIC_TMCCT);
1926 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1927 v = apic_read(APIC_TDCR);
1928 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1929 printk("\n");
1930}
1931
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001932__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001934 int cpu;
1935
1936 preempt_disable();
1937 for_each_online_cpu(cpu)
1938 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1939 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001942__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 unsigned int v;
1945 unsigned long flags;
1946
1947 if (apic_verbosity == APIC_QUIET)
1948 return;
1949
1950 printk(KERN_DEBUG "\nprinting PIC contents\n");
1951
1952 spin_lock_irqsave(&i8259A_lock, flags);
1953
1954 v = inb(0xa1) << 8 | inb(0x21);
1955 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1956
1957 v = inb(0xa0) << 8 | inb(0x20);
1958 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1959
Ingo Molnar54168ed2008-08-20 09:07:45 +02001960 outb(0x0b,0xa0);
1961 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001963 outb(0x0a,0xa0);
1964 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 spin_unlock_irqrestore(&i8259A_lock, flags);
1967
1968 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1969
1970 v = inb(0x4d1) << 8 | inb(0x4d0);
1971 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1972}
1973
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001974__apicdebuginit(int) print_all_ICs(void)
1975{
1976 print_PIC();
1977 print_all_local_APICs();
1978 print_IO_APIC();
1979
1980 return 0;
1981}
1982
1983fs_initcall(print_all_ICs);
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Yinghai Luefa25592008-08-19 20:50:36 -07001986/* Where if anywhere is the i8259 connect in external int mode */
1987static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1988
Ingo Molnar54168ed2008-08-20 09:07:45 +02001989void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001992 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001993 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 unsigned long flags;
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 /*
1997 * The number of IO-APIC IRQ registers (== #pins):
1998 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001999 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002001 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002003 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
2004 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002005 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002006 int pin;
2007 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01002008 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002009 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02002010 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002011
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002012 /* If the interrupt line is enabled and in ExtInt mode
2013 * I have found the pin where the i8259 is connected.
2014 */
2015 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
2016 ioapic_i8259.apic = apic;
2017 ioapic_i8259.pin = pin;
2018 goto found_i8259;
2019 }
2020 }
2021 }
2022 found_i8259:
2023 /* Look to see what if the MP table has reported the ExtINT */
2024 /* If we could not find the appropriate pin by looking at the ioapic
2025 * the i8259 probably is not connected the ioapic but give the
2026 * mptable a chance anyway.
2027 */
2028 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2029 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2030 /* Trust the MP table if nothing is setup in the hardware */
2031 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2032 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2033 ioapic_i8259.pin = i8259_pin;
2034 ioapic_i8259.apic = i8259_apic;
2035 }
2036 /* Complain if the MP table and the hardware disagree */
2037 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2038 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2039 {
2040 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
2042
2043 /*
2044 * Do not trust the IO-APIC being empty at bootup
2045 */
2046 clear_IO_APIC();
2047}
2048
2049/*
2050 * Not an __init, needed by the reboot code
2051 */
2052void disable_IO_APIC(void)
2053{
2054 /*
2055 * Clear the IO-APIC before rebooting:
2056 */
2057 clear_IO_APIC();
2058
Eric W. Biederman650927e2005-06-25 14:57:44 -07002059 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002060 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002061 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002062 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002063 *
2064 * With interrupt-remapping, for now we will use virtual wire A mode,
2065 * as virtual wire B is little complex (need to configure both
2066 * IOAPIC RTE aswell as interrupt-remapping table entry).
2067 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002068 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002069 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002070 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002071
2072 memset(&entry, 0, sizeof(entry));
2073 entry.mask = 0; /* Enabled */
2074 entry.trigger = 0; /* Edge */
2075 entry.irr = 0;
2076 entry.polarity = 0; /* High */
2077 entry.delivery_status = 0;
2078 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002079 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002080 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002081 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002082
2083 /*
2084 * Add it to the IO-APIC irq-routing table:
2085 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002086 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002087 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002088
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002089 /*
2090 * Use virtual wire A mode when interrupt remapping is enabled.
2091 */
2092 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093}
2094
Ingo Molnar54168ed2008-08-20 09:07:45 +02002095#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096/*
2097 * function to set the IO-APIC physical IDs based on the
2098 * values stored in the MPC table.
2099 *
2100 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2101 */
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103static void __init setup_ioapic_ids_from_mpc(void)
2104{
2105 union IO_APIC_reg_00 reg_00;
2106 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002107 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 int i;
2109 unsigned char old_id;
2110 unsigned long flags;
2111
Yinghai Lua4dbc342008-07-25 02:14:28 -07002112 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002113 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002116 * Don't check I/O APIC IDs for xAPIC systems. They have
2117 * no meaning without the serial APIC bus.
2118 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002119 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2120 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002121 return;
2122 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 * This is broken; anything with a real cpu count has to
2124 * circumvent this idiocy regardless.
2125 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002126 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 /*
2129 * Set the IOAPIC ID to the value stored in the MPC table.
2130 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002131 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* Read the register 0 value */
2134 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002135 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002137
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002138 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002140 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002142 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2144 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002145 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 /*
2149 * Sanity check, is the ID really free? Every APIC in a
2150 * system must have a unique ID or we get lots of nice
2151 * 'stuck on smp_invalidate_needed IPI wait' messages.
2152 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002153 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002154 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002156 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 for (i = 0; i < get_physical_broadcast(); i++)
2158 if (!physid_isset(i, phys_id_present_map))
2159 break;
2160 if (i >= get_physical_broadcast())
2161 panic("Max APIC ID exceeded!\n");
2162 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2163 i);
2164 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002165 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 } else {
2167 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002168 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 apic_printk(APIC_VERBOSE, "Setting %d in the "
2170 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002171 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2173 }
2174
2175
2176 /*
2177 * We need to adjust the IRQ routing table
2178 * if the ID changed.
2179 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002180 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302182 if (mp_irqs[i].dstapic == old_id)
2183 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002184 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 /*
2187 * Read the right value from the MPC table and
2188 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 apic_printk(APIC_VERBOSE, KERN_INFO
2191 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002192 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002194 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002196 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002197 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 /*
2200 * Sanity check
2201 */
2202 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002203 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002205 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 printk("could not set ID!\n");
2207 else
2208 apic_printk(APIC_VERBOSE, " ok.\n");
2209 }
2210}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002213int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002214
2215static int __init notimercheck(char *s)
2216{
2217 no_timer_check = 1;
2218 return 1;
2219}
2220__setup("no_timer_check", notimercheck);
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/*
2223 * There is a nasty bug in some older SMP boards, their mptable lies
2224 * about the timer IRQ. We do the following to work around the situation:
2225 *
2226 * - timer IRQ defaults to IO-APIC IRQ
2227 * - if this function detects that timer IRQs are defunct, then we fall
2228 * back to ISA timer IRQs
2229 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002230static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002233 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Zachary Amsden8542b202006-12-07 02:14:09 +01002235 if (no_timer_check)
2236 return 1;
2237
Ingo Molnar4aae0702007-12-18 18:05:58 +01002238 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 local_irq_enable();
2240 /* Let ten ticks pass... */
2241 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002242 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 /*
2245 * Expect a few ticks at least, to be sure some possible
2246 * glue logic does not lock up after one or two first
2247 * ticks in a non-ExtINT mode. Also the local APIC
2248 * might have cached one ExtINT interrupt. Finally, at
2249 * least one tick may be lost due to delays.
2250 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002251
2252 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002253 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 return 0;
2256}
2257
2258/*
2259 * In the SMP+IOAPIC case it might happen that there are an unspecified
2260 * number of pending IRQ events unhandled. These cases are very rare,
2261 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2262 * better to do it this way as thus we do not have to be aware of
2263 * 'pending' interrupts in the IRQ path, except at this point.
2264 */
2265/*
2266 * Edge triggered needs to resend any interrupt
2267 * that was delayed but this is now handled in the device
2268 * independent code.
2269 */
2270
2271/*
2272 * Starting up a edge-triggered IO-APIC interrupt is
2273 * nasty - we need to make sure that we get the edge.
2274 * If it is already asserted for some reason, we need
2275 * return 1 to indicate that is was pending.
2276 *
2277 * This is not complete - we should be able to fake
2278 * an edge even if it isn't on the 8259A...
2279 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002280
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002281static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
2283 int was_pending = 0;
2284 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002285 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002288 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 disable_8259A_irq(irq);
2290 if (i8259A_irq_pending(irq))
2291 was_pending = 1;
2292 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002293 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002294 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 spin_unlock_irqrestore(&ioapic_lock, flags);
2296
2297 return was_pending;
2298}
2299
Ingo Molnar54168ed2008-08-20 09:07:45 +02002300#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002301static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002303
2304 struct irq_cfg *cfg = irq_cfg(irq);
2305 unsigned long flags;
2306
2307 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002308 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002309 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002310
2311 return 1;
2312}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002313#else
2314static int ioapic_retrigger_irq(unsigned int irq)
2315{
Ingo Molnardac5f412009-01-28 15:42:24 +01002316 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002317
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002318 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002319}
2320#endif
2321
2322/*
2323 * Level and edge triggered IO-APIC interrupts need different handling,
2324 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2325 * handled with the level-triggered descriptor, but that one has slightly
2326 * more overhead. Level-triggered interrupts cannot be handled with the
2327 * edge-triggered handler, without risking IRQ storms and other ugly
2328 * races.
2329 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002330
Yinghai Lu497c9a12008-08-19 20:50:28 -07002331#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002332
2333#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002334
2335/*
2336 * Migrate the IO-APIC irq in the presence of intr-remapping.
2337 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002338 * For both level and edge triggered, irq migration is a simple atomic
2339 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002340 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002341 * For level triggered, we eliminate the io-apic RTE modification (with the
2342 * updated vector information), by using a virtual vector (io-apic pin number).
2343 * Real vector that is used for interrupting cpu will be coming from
2344 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002345 */
Mike Travise7986732008-12-16 17:33:52 -08002346static void
2347migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002348{
2349 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002350 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002351 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002352 unsigned int irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002353
Mike Travis22f65d32008-12-16 17:33:56 -08002354 if (!cpumask_intersects(mask, cpu_online_mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002355 return;
2356
Yinghai Lu3145e942008-12-05 18:58:34 -08002357 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358 if (get_irte(irq, &irte))
2359 return;
2360
Yinghai Lu3145e942008-12-05 18:58:34 -08002361 cfg = desc->chip_data;
2362 if (assign_irq_vector(irq, cfg, mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002363 return;
2364
Yinghai Lu3145e942008-12-05 18:58:34 -08002365 set_extra_move_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002366
Ingo Molnardebccb32009-01-28 15:20:18 +01002367 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002368
Ingo Molnar54168ed2008-08-20 09:07:45 +02002369 irte.vector = cfg->vector;
2370 irte.dest_id = IRTE_DEST(dest);
2371
2372 /*
2373 * Modified the IRTE and flushes the Interrupt entry cache.
2374 */
2375 modify_irte(irq, &irte);
2376
Mike Travis22f65d32008-12-16 17:33:56 -08002377 if (cfg->move_in_progress)
2378 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002379
Mike Travis7f7ace02009-01-10 21:58:08 -08002380 cpumask_copy(desc->affinity, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002381}
2382
Ingo Molnar54168ed2008-08-20 09:07:45 +02002383/*
2384 * Migrates the IRQ destination in the process context.
2385 */
Rusty Russell968ea6d2008-12-13 21:55:51 +10302386static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2387 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002388{
Yinghai Lu3145e942008-12-05 18:58:34 -08002389 migrate_ioapic_irq_desc(desc, mask);
2390}
Rusty Russell0de26522008-12-13 21:20:26 +10302391static void set_ir_ioapic_affinity_irq(unsigned int irq,
2392 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002393{
2394 struct irq_desc *desc = irq_to_desc(irq);
2395
Yinghai Lu3145e942008-12-05 18:58:34 -08002396 set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002397}
2398#endif
2399
Yinghai Lu497c9a12008-08-19 20:50:28 -07002400asmlinkage void smp_irq_move_cleanup_interrupt(void)
2401{
2402 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002403
Yinghai Lu497c9a12008-08-19 20:50:28 -07002404 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002405 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002406 irq_enter();
2407
2408 me = smp_processor_id();
2409 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2410 unsigned int irq;
2411 struct irq_desc *desc;
2412 struct irq_cfg *cfg;
2413 irq = __get_cpu_var(vector_irq)[vector];
2414
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002415 if (irq == -1)
2416 continue;
2417
Yinghai Lu497c9a12008-08-19 20:50:28 -07002418 desc = irq_to_desc(irq);
2419 if (!desc)
2420 continue;
2421
2422 cfg = irq_cfg(irq);
2423 spin_lock(&desc->lock);
2424 if (!cfg->move_cleanup_count)
2425 goto unlock;
2426
Mike Travis22f65d32008-12-16 17:33:56 -08002427 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002428 goto unlock;
2429
2430 __get_cpu_var(vector_irq)[vector] = -1;
2431 cfg->move_cleanup_count--;
2432unlock:
2433 spin_unlock(&desc->lock);
2434 }
2435
2436 irq_exit();
2437}
2438
Yinghai Lu3145e942008-12-05 18:58:34 -08002439static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002440{
Yinghai Lu3145e942008-12-05 18:58:34 -08002441 struct irq_desc *desc = *descp;
2442 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002443 unsigned vector, me;
2444
Yinghai Lu48a1b102008-12-11 00:15:01 -08002445 if (likely(!cfg->move_in_progress)) {
2446#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2447 if (likely(!cfg->move_desc_pending))
2448 return;
2449
Yinghai Lub9098952008-12-19 13:48:34 -08002450 /* domain has not changed, but affinity did */
Yinghai Lu48a1b102008-12-11 00:15:01 -08002451 me = smp_processor_id();
Mike Travis7f7ace02009-01-10 21:58:08 -08002452 if (cpumask_test_cpu(me, desc->affinity)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002453 *descp = desc = move_irq_desc(desc, me);
2454 /* get the new one */
2455 cfg = desc->chip_data;
2456 cfg->move_desc_pending = 0;
2457 }
2458#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002459 return;
Yinghai Lu48a1b102008-12-11 00:15:01 -08002460 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002461
2462 vector = ~get_irq_regs()->orig_ax;
2463 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002464
2465 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002466#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2467 *descp = desc = move_irq_desc(desc, me);
2468 /* get the new one */
2469 cfg = desc->chip_data;
2470#endif
Mike Travis22f65d32008-12-16 17:33:56 -08002471 send_cleanup_vector(cfg);
Yinghai Lu10b888d2009-01-31 14:50:07 -08002472 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002473}
2474#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002475static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002476#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002477
Ingo Molnar54168ed2008-08-20 09:07:45 +02002478#ifdef CONFIG_INTR_REMAP
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002479static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2480{
2481 int apic, pin;
2482 struct irq_pin_list *entry;
2483
2484 entry = cfg->irq_2_pin;
2485 for (;;) {
2486
2487 if (!entry)
2488 break;
2489
2490 apic = entry->apic;
2491 pin = entry->pin;
2492 io_apic_eoi(apic, pin);
2493 entry = entry->next;
2494 }
2495}
2496
2497static void
2498eoi_ioapic_irq(struct irq_desc *desc)
2499{
2500 struct irq_cfg *cfg;
2501 unsigned long flags;
2502 unsigned int irq;
2503
2504 irq = desc->irq;
2505 cfg = desc->chip_data;
2506
2507 spin_lock_irqsave(&ioapic_lock, flags);
2508 __eoi_ioapic_irq(irq, cfg);
2509 spin_unlock_irqrestore(&ioapic_lock, flags);
2510}
2511
Ingo Molnar54168ed2008-08-20 09:07:45 +02002512static void ack_x2apic_level(unsigned int irq)
2513{
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002514 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002515 ack_x2APIC_irq();
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002516 eoi_ioapic_irq(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002517}
2518
2519static void ack_x2apic_edge(unsigned int irq)
2520{
2521 ack_x2APIC_irq();
2522}
Yinghai Lu3145e942008-12-05 18:58:34 -08002523
Ingo Molnar54168ed2008-08-20 09:07:45 +02002524#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002525
Yinghai Lu1d025192008-08-19 20:50:34 -07002526static void ack_apic_edge(unsigned int irq)
2527{
Yinghai Lu3145e942008-12-05 18:58:34 -08002528 struct irq_desc *desc = irq_to_desc(irq);
2529
2530 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002531 move_native_irq(irq);
2532 ack_APIC_irq();
2533}
2534
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002535atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002536
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002537static void ack_apic_level(unsigned int irq)
2538{
Yinghai Lu3145e942008-12-05 18:58:34 -08002539 struct irq_desc *desc = irq_to_desc(irq);
2540
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002541#ifdef CONFIG_X86_32
2542 unsigned long v;
2543 int i;
2544#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002545 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002546 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002547
Yinghai Lu3145e942008-12-05 18:58:34 -08002548 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002549#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002550 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002551 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002552 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002553 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002554 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002555#endif
2556
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002557#ifdef CONFIG_X86_32
2558 /*
2559 * It appears there is an erratum which affects at least version 0x11
2560 * of I/O APIC (that's the 82093AA and cores integrated into various
2561 * chipsets). Under certain conditions a level-triggered interrupt is
2562 * erroneously delivered as edge-triggered one but the respective IRR
2563 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2564 * message but it will never arrive and further interrupts are blocked
2565 * from the source. The exact reason is so far unknown, but the
2566 * phenomenon was observed when two consecutive interrupt requests
2567 * from a given source get delivered to the same CPU and the source is
2568 * temporarily disabled in between.
2569 *
2570 * A workaround is to simulate an EOI message manually. We achieve it
2571 * by setting the trigger mode to edge and then to level when the edge
2572 * trigger mode gets detected in the TMR of a local APIC for a
2573 * level-triggered interrupt. We mask the source for the time of the
2574 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2575 * The idea is from Manfred Spraul. --macro
2576 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002577 cfg = desc->chip_data;
2578 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002579
2580 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2581#endif
2582
Ingo Molnar54168ed2008-08-20 09:07:45 +02002583 /*
2584 * We must acknowledge the irq before we move it or the acknowledge will
2585 * not propagate properly.
2586 */
2587 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002588
Ingo Molnar54168ed2008-08-20 09:07:45 +02002589 /* Now we can move and renable the irq */
2590 if (unlikely(do_unmask_irq)) {
2591 /* Only migrate the irq if the ack has been received.
2592 *
2593 * On rare occasions the broadcast level triggered ack gets
2594 * delayed going to ioapics, and if we reprogram the
2595 * vector while Remote IRR is still set the irq will never
2596 * fire again.
2597 *
2598 * To prevent this scenario we read the Remote IRR bit
2599 * of the ioapic. This has two effects.
2600 * - On any sane system the read of the ioapic will
2601 * flush writes (and acks) going to the ioapic from
2602 * this cpu.
2603 * - We get to see if the ACK has actually been delivered.
2604 *
2605 * Based on failed experiments of reprogramming the
2606 * ioapic entry from outside of irq context starting
2607 * with masking the ioapic entry and then polling until
2608 * Remote IRR was clear before reprogramming the
2609 * ioapic I don't trust the Remote IRR bit to be
2610 * completey accurate.
2611 *
2612 * However there appears to be no other way to plug
2613 * this race, so if the Remote IRR bit is not
2614 * accurate and is causing problems then it is a hardware bug
2615 * and you can go talk to the chipset vendor about it.
2616 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002617 cfg = desc->chip_data;
2618 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002619 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002620 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002621 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002622
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002623#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002624 if (!(v & (1 << (i & 0x1f)))) {
2625 atomic_inc(&irq_mis_count);
2626 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002627 __mask_and_edge_IO_APIC_irq(cfg);
2628 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002629 spin_unlock(&ioapic_lock);
2630 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002631#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002632}
Yinghai Lu1d025192008-08-19 20:50:34 -07002633
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002634static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002635 .name = "IO-APIC",
2636 .startup = startup_ioapic_irq,
2637 .mask = mask_IO_APIC_irq,
2638 .unmask = unmask_IO_APIC_irq,
2639 .ack = ack_apic_edge,
2640 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002641#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002642 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002643#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002644 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645};
2646
Ingo Molnar54168ed2008-08-20 09:07:45 +02002647#ifdef CONFIG_INTR_REMAP
2648static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002649 .name = "IR-IO-APIC",
2650 .startup = startup_ioapic_irq,
2651 .mask = mask_IO_APIC_irq,
2652 .unmask = unmask_IO_APIC_irq,
2653 .ack = ack_x2apic_edge,
2654 .eoi = ack_x2apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002655#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002656 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002657#endif
2658 .retrigger = ioapic_retrigger_irq,
2659};
2660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662static inline void init_IO_APIC_traps(void)
2663{
2664 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002665 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002666 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 /*
2669 * NOTE! The local APIC isn't very good at handling
2670 * multiple interrupts at the same interrupt level.
2671 * As the interrupt level is determined by taking the
2672 * vector number and shifting that right by 4, we
2673 * want to spread these out a bit so that they don't
2674 * all fall in the same interrupt level.
2675 *
2676 * Also, we've got to be careful not to trash gate
2677 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2678 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002679 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002680 cfg = desc->chip_data;
2681 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 /*
2683 * Hmm.. We don't have an entry for this,
2684 * so default to an old-fashioned 8259
2685 * interrupt if we can..
2686 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002687 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002689 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002691 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 }
2693 }
2694}
2695
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002696/*
2697 * The local APIC irq-chip implementation:
2698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002700static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
2702 unsigned long v;
2703
2704 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002705 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706}
2707
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002708static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002710 unsigned long v;
2711
2712 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002713 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
2715
Yinghai Lu3145e942008-12-05 18:58:34 -08002716static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002717{
2718 ack_APIC_irq();
2719}
2720
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002721static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002722 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002723 .mask = mask_lapic_irq,
2724 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002725 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726};
2727
Yinghai Lu3145e942008-12-05 18:58:34 -08002728static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002729{
Yinghai Lu08678b02008-08-19 20:50:05 -07002730 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002731 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2732 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002733}
2734
Jan Beuliche9427102008-01-30 13:31:24 +01002735static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002738 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 * We put the 8259A master into AEOI mode and
2740 * unmask on all local APICs LVT0 as NMI.
2741 *
2742 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2743 * is from Maciej W. Rozycki - so we do not have to EOI from
2744 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002745 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2747
Jan Beuliche9427102008-01-30 13:31:24 +01002748 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 apic_printk(APIC_VERBOSE, " done.\n");
2751}
2752
2753/*
2754 * This looks a bit hackish but it's about the only one way of sending
2755 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2756 * not support the ExtINT mode, unfortunately. We need to send these
2757 * cycles as some i82489DX-based boards have glue logic that keeps the
2758 * 8259A interrupt line asserted until INTA. --macro
2759 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002760static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002762 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 struct IO_APIC_route_entry entry0, entry1;
2764 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002766 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002767 if (pin == -1) {
2768 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002770 }
2771 apic = find_isa_irq_apic(8, mp_INT);
2772 if (apic == -1) {
2773 WARN_ON_ONCE(1);
2774 return;
2775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Andi Kleencf4c6a22006-09-26 10:52:30 +02002777 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002778 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 memset(&entry1, 0, sizeof(entry1));
2781
2782 entry1.dest_mode = 0; /* physical delivery */
2783 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002784 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 entry1.delivery_mode = dest_ExtINT;
2786 entry1.polarity = entry0.polarity;
2787 entry1.trigger = 0;
2788 entry1.vector = 0;
2789
Andi Kleencf4c6a22006-09-26 10:52:30 +02002790 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 save_control = CMOS_READ(RTC_CONTROL);
2793 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2794 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2795 RTC_FREQ_SELECT);
2796 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2797
2798 i = 100;
2799 while (i-- > 0) {
2800 mdelay(10);
2801 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2802 i -= 10;
2803 }
2804
2805 CMOS_WRITE(save_control, RTC_CONTROL);
2806 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002807 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Andi Kleencf4c6a22006-09-26 10:52:30 +02002809 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
Yinghai Luefa25592008-08-19 20:50:36 -07002812static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002813/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002814static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002815{
2816 disable_timer_pin_1 = 1;
2817 return 0;
2818}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002819early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002820
2821int timer_through_8259 __initdata;
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823/*
2824 * This code may look a bit paranoid, but it's supposed to cooperate with
2825 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2826 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2827 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002828 *
2829 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002831static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Yinghai Lu3145e942008-12-05 18:58:34 -08002833 struct irq_desc *desc = irq_to_desc(0);
2834 struct irq_cfg *cfg = desc->chip_data;
2835 int cpu = boot_cpu_id;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002836 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002837 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002838 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002839
2840 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 /*
2843 * get/set the timer IRQ vector:
2844 */
2845 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002846 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002849 * As IRQ0 is to be enabled in the 8259A, the virtual
2850 * wire has to be disabled in the local APIC. Also
2851 * timer interrupts need to be acknowledged manually in
2852 * the 8259A for the i82489DX when using the NMI
2853 * watchdog as that APIC treats NMIs as level-triggered.
2854 * The AEOI mode will finish them in the 8259A
2855 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002857 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002859#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002860 {
2861 unsigned int ver;
2862
2863 ver = apic_read(APIC_LVR);
2864 ver = GET_APIC_VERSION(ver);
2865 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2866 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002869 pin1 = find_isa_irq_pin(0, mp_INT);
2870 apic1 = find_isa_irq_apic(0, mp_INT);
2871 pin2 = ioapic_i8259.pin;
2872 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002874 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2875 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002876 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002878 /*
2879 * Some BIOS writers are clueless and report the ExtINTA
2880 * I/O APIC input from the cascaded 8259A as the timer
2881 * interrupt input. So just in case, if only one pin
2882 * was found above, try it both directly and through the
2883 * 8259A.
2884 */
2885 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002886#ifdef CONFIG_INTR_REMAP
2887 if (intr_remapping_enabled)
2888 panic("BIOS bug: timer not connected to IO-APIC");
2889#endif
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002890 pin1 = pin2;
2891 apic1 = apic2;
2892 no_pin1 = 1;
2893 } else if (pin2 == -1) {
2894 pin2 = pin1;
2895 apic2 = apic1;
2896 }
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (pin1 != -1) {
2899 /*
2900 * Ok, does IRQ0 through the IOAPIC work?
2901 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002902 if (no_pin1) {
Yinghai Lu3145e942008-12-05 18:58:34 -08002903 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002904 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002905 } else {
2906 /* for edge trigger, setup_IO_APIC_irq already
2907 * leave it unmasked.
2908 * so only need to unmask if it is level-trigger
2909 * do we really have level trigger timer?
2910 */
2911 int idx;
2912 idx = find_irq_entry(apic1, pin1, mp_INT);
2913 if (idx != -1 && irq_trigger(idx))
2914 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (timer_irq_works()) {
2917 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 setup_nmi();
2919 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002921 if (disable_timer_pin_1 > 0)
2922 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002923 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002925#ifdef CONFIG_INTR_REMAP
2926 if (intr_remapping_enabled)
2927 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2928#endif
Yinghai Luf72dcca2009-02-08 16:18:03 -08002929 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002930 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002931 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002932 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2933 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002935 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2936 "(IRQ0) through the 8259A ...\n");
2937 apic_printk(APIC_QUIET, KERN_INFO
2938 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 /*
2940 * legacy devices should be connected to IO APIC #0
2941 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002942 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002943 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002944 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002946 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002947 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002949 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002951 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 /*
2956 * Cleanup, just in case ...
2957 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002958 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002959 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002960 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002961 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002965 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2966 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002967 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002969#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002970 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002971#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002973 apic_printk(APIC_QUIET, KERN_INFO
2974 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Yinghai Lu3145e942008-12-05 18:58:34 -08002976 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002977 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 enable_8259A_irq(0);
2979
2980 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002981 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002984 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002985 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002986 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002987 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002989 apic_printk(APIC_QUIET, KERN_INFO
2990 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 init_8259A(0);
2993 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002994 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 unlock_ExtINT_logic();
2997
2998 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002999 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003002 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003003 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003005 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003006out:
3007 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008}
3009
3010/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003011 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3012 * to devices. However there may be an I/O APIC pin available for
3013 * this interrupt regardless. The pin may be left unconnected, but
3014 * typically it will be reused as an ExtINT cascade interrupt for
3015 * the master 8259A. In the MPS case such a pin will normally be
3016 * reported as an ExtINT interrupt in the MP table. With ACPI
3017 * there is no provision for ExtINT interrupts, and in the absence
3018 * of an override it would be treated as an ordinary ISA I/O APIC
3019 * interrupt, that is edge-triggered and unmasked by default. We
3020 * used to do this, but it caused problems on some systems because
3021 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3022 * the same ExtINT cascade interrupt to drive the local APIC of the
3023 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3024 * the I/O APIC in all cases now. No actual device should request
3025 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 */
3027#define PIC_IRQS (1 << PIC_CASCADE_IR)
3028
3029void __init setup_IO_APIC(void)
3030{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003031
Ingo Molnar54168ed2008-08-20 09:07:45 +02003032 /*
3033 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003036 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Ingo Molnar54168ed2008-08-20 09:07:45 +02003038 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003039 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003040 * Set up IO-APIC IRQ routing.
3041 */
3042#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003043 if (!acpi_ioapic)
3044 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 sync_Arb_IDs();
3047 setup_IO_APIC_irqs();
3048 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003049 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050}
3051
3052/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003053 * Called after all the initialization is done. If we didnt find any
3054 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057static int __init io_apic_bug_finalize(void)
3058{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003059 if (sis_apic_bug == -1)
3060 sis_apic_bug = 0;
3061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
3064late_initcall(io_apic_bug_finalize);
3065
3066struct sysfs_ioapic_data {
3067 struct sys_device dev;
3068 struct IO_APIC_route_entry entry[0];
3069};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003070static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Pavel Machek438510f2005-04-16 15:25:24 -07003072static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
3074 struct IO_APIC_route_entry *entry;
3075 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 data = container_of(dev, struct sysfs_ioapic_data, dev);
3079 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003080 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3081 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 return 0;
3084}
3085
3086static int ioapic_resume(struct sys_device *dev)
3087{
3088 struct IO_APIC_route_entry *entry;
3089 struct sysfs_ioapic_data *data;
3090 unsigned long flags;
3091 union IO_APIC_reg_00 reg_00;
3092 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 data = container_of(dev, struct sysfs_ioapic_data, dev);
3095 entry = data->entry;
3096
3097 spin_lock_irqsave(&ioapic_lock, flags);
3098 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303099 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3100 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 io_apic_write(dev->id, 0, reg_00.raw);
3102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003104 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003105 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 return 0;
3108}
3109
3110static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003111 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 .suspend = ioapic_suspend,
3113 .resume = ioapic_resume,
3114};
3115
3116static int __init ioapic_init_sysfs(void)
3117{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003118 struct sys_device * dev;
3119 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 error = sysdev_class_register(&ioapic_sysdev_class);
3122 if (error)
3123 return error;
3124
Ingo Molnar54168ed2008-08-20 09:07:45 +02003125 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003126 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003128 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (!mp_ioapic_data[i]) {
3130 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3131 continue;
3132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003134 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 dev->cls = &ioapic_sysdev_class;
3136 error = sysdev_register(dev);
3137 if (error) {
3138 kfree(mp_ioapic_data[i]);
3139 mp_ioapic_data[i] = NULL;
3140 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3141 continue;
3142 }
3143 }
3144
3145 return 0;
3146}
3147
3148device_initcall(ioapic_init_sysfs);
3149
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003150static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003151/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003152 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003153 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003154unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003155{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003156 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003157 unsigned int irq;
3158 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003159 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003160 struct irq_cfg *cfg_new = NULL;
3161 int cpu = boot_cpu_id;
3162 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003163
3164 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003165 if (irq_want < nr_irqs_gsi)
3166 irq_want = nr_irqs_gsi;
3167
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003168 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003169 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003170 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3171 if (!desc_new) {
3172 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003173 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003174 }
3175 cfg_new = desc_new->chip_data;
3176
3177 if (cfg_new->vector != 0)
3178 continue;
Ingo Molnarfe402e12009-01-28 04:32:51 +01003179 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003180 irq = new;
3181 break;
3182 }
3183 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003184
Yinghai Lu199751d2008-08-19 20:50:27 -07003185 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003186 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003187 /* restore it, in case dynamic_irq_init clear it */
3188 if (desc_new)
3189 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003190 }
3191 return irq;
3192}
3193
Yinghai Lu199751d2008-08-19 20:50:27 -07003194int create_irq(void)
3195{
Yinghai Lube5d5352008-12-05 18:58:33 -08003196 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003197 int irq;
3198
Yinghai Lube5d5352008-12-05 18:58:33 -08003199 irq_want = nr_irqs_gsi;
3200 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003201
3202 if (irq == 0)
3203 irq = -1;
3204
3205 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003206}
3207
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003208void destroy_irq(unsigned int irq)
3209{
3210 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003211 struct irq_cfg *cfg;
3212 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003213
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003214 /* store it, in case dynamic_irq_cleanup clear it */
3215 desc = irq_to_desc(irq);
3216 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003217 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003218 /* connect back irq_cfg */
3219 if (desc)
3220 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003221
Ingo Molnar54168ed2008-08-20 09:07:45 +02003222#ifdef CONFIG_INTR_REMAP
3223 free_irte(irq);
3224#endif
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003225 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003226 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003227 spin_unlock_irqrestore(&vector_lock, flags);
3228}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003229
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003230/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003231 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003232 */
3233#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003234static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003235{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003236 struct irq_cfg *cfg;
3237 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003238 unsigned dest;
3239
Jan Beulichf1182632009-01-14 12:27:35 +00003240 if (disable_apic)
3241 return -ENXIO;
3242
Yinghai Lu3145e942008-12-05 18:58:34 -08003243 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003244 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003245 if (err)
3246 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003247
Ingo Molnardebccb32009-01-28 15:20:18 +01003248 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003249
Ingo Molnar54168ed2008-08-20 09:07:45 +02003250#ifdef CONFIG_INTR_REMAP
3251 if (irq_remapped(irq)) {
3252 struct irte irte;
3253 int ir_index;
3254 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003255
Ingo Molnar54168ed2008-08-20 09:07:45 +02003256 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3257 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003258
Ingo Molnar54168ed2008-08-20 09:07:45 +02003259 memset (&irte, 0, sizeof(irte));
3260
3261 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003262 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003263 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003264 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003265 irte.vector = cfg->vector;
3266 irte.dest_id = IRTE_DEST(dest);
3267
3268 modify_irte(irq, &irte);
3269
3270 msg->address_hi = MSI_ADDR_BASE_HI;
3271 msg->data = sub_handle;
3272 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3273 MSI_ADDR_IR_SHV |
3274 MSI_ADDR_IR_INDEX1(ir_index) |
3275 MSI_ADDR_IR_INDEX2(ir_index);
3276 } else
3277#endif
3278 {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003279 if (x2apic_enabled())
3280 msg->address_hi = MSI_ADDR_BASE_HI |
3281 MSI_ADDR_EXT_DEST_ID(dest);
3282 else
3283 msg->address_hi = MSI_ADDR_BASE_HI;
3284
Ingo Molnar54168ed2008-08-20 09:07:45 +02003285 msg->address_lo =
3286 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003287 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003288 MSI_ADDR_DEST_MODE_PHYSICAL:
3289 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003290 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003291 MSI_ADDR_REDIRECTION_CPU:
3292 MSI_ADDR_REDIRECTION_LOWPRI) |
3293 MSI_ADDR_DEST_ID(dest);
3294
3295 msg->data =
3296 MSI_DATA_TRIGGER_EDGE |
3297 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003298 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003299 MSI_DATA_DELIVERY_FIXED:
3300 MSI_DATA_DELIVERY_LOWPRI) |
3301 MSI_DATA_VECTOR(cfg->vector);
3302 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003303 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003304}
3305
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003306#ifdef CONFIG_SMP
Rusty Russell0de26522008-12-13 21:20:26 +10303307static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003308{
Yinghai Lu3145e942008-12-05 18:58:34 -08003309 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003310 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003311 struct msi_msg msg;
3312 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003313
Mike Travis22f65d32008-12-16 17:33:56 -08003314 dest = set_desc_affinity(desc, mask);
3315 if (dest == BAD_APICID)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003316 return;
3317
Yinghai Lu3145e942008-12-05 18:58:34 -08003318 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003319
Yinghai Lu3145e942008-12-05 18:58:34 -08003320 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003321
3322 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003323 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003324 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3325 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3326
Yinghai Lu3145e942008-12-05 18:58:34 -08003327 write_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003328}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003329#ifdef CONFIG_INTR_REMAP
3330/*
3331 * Migrate the MSI irq to another cpumask. This migration is
3332 * done in the process context using interrupt-remapping hardware.
3333 */
Mike Travise7986732008-12-16 17:33:52 -08003334static void
3335ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003336{
Yinghai Lu3145e942008-12-05 18:58:34 -08003337 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003338 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003339 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003340 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003341
3342 if (get_irte(irq, &irte))
3343 return;
3344
Mike Travis22f65d32008-12-16 17:33:56 -08003345 dest = set_desc_affinity(desc, mask);
3346 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003347 return;
3348
Ingo Molnar54168ed2008-08-20 09:07:45 +02003349 irte.vector = cfg->vector;
3350 irte.dest_id = IRTE_DEST(dest);
3351
3352 /*
3353 * atomically update the IRTE with the new destination and vector.
3354 */
3355 modify_irte(irq, &irte);
3356
3357 /*
3358 * After this point, all the interrupts will start arriving
3359 * at the new destination. So, time to cleanup the previous
3360 * vector allocation.
3361 */
Mike Travis22f65d32008-12-16 17:33:56 -08003362 if (cfg->move_in_progress)
3363 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003364}
Yinghai Lu3145e942008-12-05 18:58:34 -08003365
Ingo Molnar54168ed2008-08-20 09:07:45 +02003366#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003367#endif /* CONFIG_SMP */
3368
3369/*
3370 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3371 * which implement the MSI or MSI-X Capability Structure.
3372 */
3373static struct irq_chip msi_chip = {
3374 .name = "PCI-MSI",
3375 .unmask = unmask_msi_irq,
3376 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003377 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003378#ifdef CONFIG_SMP
3379 .set_affinity = set_msi_irq_affinity,
3380#endif
3381 .retrigger = ioapic_retrigger_irq,
3382};
3383
Ingo Molnar54168ed2008-08-20 09:07:45 +02003384#ifdef CONFIG_INTR_REMAP
3385static struct irq_chip msi_ir_chip = {
3386 .name = "IR-PCI-MSI",
3387 .unmask = unmask_msi_irq,
3388 .mask = mask_msi_irq,
3389 .ack = ack_x2apic_edge,
3390#ifdef CONFIG_SMP
3391 .set_affinity = ir_set_msi_irq_affinity,
3392#endif
3393 .retrigger = ioapic_retrigger_irq,
3394};
3395
3396/*
3397 * Map the PCI dev to the corresponding remapping hardware unit
3398 * and allocate 'nvec' consecutive interrupt-remapping table entries
3399 * in it.
3400 */
3401static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3402{
3403 struct intel_iommu *iommu;
3404 int index;
3405
3406 iommu = map_dev_to_ir(dev);
3407 if (!iommu) {
3408 printk(KERN_ERR
3409 "Unable to map PCI %s to iommu\n", pci_name(dev));
3410 return -ENOENT;
3411 }
3412
3413 index = alloc_irte(iommu, irq, nvec);
3414 if (index < 0) {
3415 printk(KERN_ERR
3416 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003417 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003418 return -ENOSPC;
3419 }
3420 return index;
3421}
3422#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07003423
Yinghai Lu3145e942008-12-05 18:58:34 -08003424static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003425{
3426 int ret;
3427 struct msi_msg msg;
3428
3429 ret = msi_compose_msg(dev, irq, &msg);
3430 if (ret < 0)
3431 return ret;
3432
Yinghai Lu3145e942008-12-05 18:58:34 -08003433 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003434 write_msi_msg(irq, &msg);
3435
Ingo Molnar54168ed2008-08-20 09:07:45 +02003436#ifdef CONFIG_INTR_REMAP
3437 if (irq_remapped(irq)) {
3438 struct irq_desc *desc = irq_to_desc(irq);
3439 /*
3440 * irq migration in process context
3441 */
3442 desc->status |= IRQ_MOVE_PCNTXT;
3443 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3444 } else
3445#endif
3446 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003447
Yinghai Luc81bba42008-09-25 11:53:11 -07003448 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3449
Yinghai Lu1d025192008-08-19 20:50:34 -07003450 return 0;
3451}
3452
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003453int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3454{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003455 unsigned int irq;
3456 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003457 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003458 unsigned int irq_want;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003459
Ingo Molnar54168ed2008-08-20 09:07:45 +02003460#ifdef CONFIG_INTR_REMAP
3461 struct intel_iommu *iommu = 0;
3462 int index = 0;
3463#endif
3464
Yinghai Lube5d5352008-12-05 18:58:33 -08003465 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003466 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003467 list_for_each_entry(msidesc, &dev->msi_list, list) {
3468 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003469 if (irq == 0)
3470 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003471 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472#ifdef CONFIG_INTR_REMAP
3473 if (!intr_remapping_enabled)
3474 goto no_ir;
3475
3476 if (!sub_handle) {
3477 /*
3478 * allocate the consecutive block of IRTE's
3479 * for 'nvec'
3480 */
3481 index = msi_alloc_irte(dev, irq, nvec);
3482 if (index < 0) {
3483 ret = index;
3484 goto error;
3485 }
3486 } else {
3487 iommu = map_dev_to_ir(dev);
3488 if (!iommu) {
3489 ret = -ENOENT;
3490 goto error;
3491 }
3492 /*
3493 * setup the mapping between the irq and the IRTE
3494 * base index, the sub_handle pointing to the
3495 * appropriate interrupt remap table entry.
3496 */
3497 set_irte_irq(irq, iommu, index, sub_handle);
3498 }
3499no_ir:
3500#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003501 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003502 if (ret < 0)
3503 goto error;
3504 sub_handle++;
3505 }
3506 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003507
3508error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003509 destroy_irq(irq);
3510 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003511}
3512
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003513void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003514{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003515 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003516}
3517
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003518#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003519#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003520static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521{
Yinghai Lu3145e942008-12-05 18:58:34 -08003522 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003523 struct irq_cfg *cfg;
3524 struct msi_msg msg;
3525 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003526
Mike Travis22f65d32008-12-16 17:33:56 -08003527 dest = set_desc_affinity(desc, mask);
3528 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003529 return;
3530
Yinghai Lu3145e942008-12-05 18:58:34 -08003531 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003532
3533 dmar_msi_read(irq, &msg);
3534
3535 msg.data &= ~MSI_DATA_VECTOR_MASK;
3536 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3537 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3538 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3539
3540 dmar_msi_write(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003541}
Yinghai Lu3145e942008-12-05 18:58:34 -08003542
Ingo Molnar54168ed2008-08-20 09:07:45 +02003543#endif /* CONFIG_SMP */
3544
3545struct irq_chip dmar_msi_type = {
3546 .name = "DMAR_MSI",
3547 .unmask = dmar_msi_unmask,
3548 .mask = dmar_msi_mask,
3549 .ack = ack_apic_edge,
3550#ifdef CONFIG_SMP
3551 .set_affinity = dmar_msi_set_affinity,
3552#endif
3553 .retrigger = ioapic_retrigger_irq,
3554};
3555
3556int arch_setup_dmar_msi(unsigned int irq)
3557{
3558 int ret;
3559 struct msi_msg msg;
3560
3561 ret = msi_compose_msg(NULL, irq, &msg);
3562 if (ret < 0)
3563 return ret;
3564 dmar_msi_write(irq, &msg);
3565 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3566 "edge");
3567 return 0;
3568}
3569#endif
3570
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003571#ifdef CONFIG_HPET_TIMER
3572
3573#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003574static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003575{
Yinghai Lu3145e942008-12-05 18:58:34 -08003576 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003577 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003578 struct msi_msg msg;
3579 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003580
Mike Travis22f65d32008-12-16 17:33:56 -08003581 dest = set_desc_affinity(desc, mask);
3582 if (dest == BAD_APICID)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003583 return;
3584
Yinghai Lu3145e942008-12-05 18:58:34 -08003585 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003586
3587 hpet_msi_read(irq, &msg);
3588
3589 msg.data &= ~MSI_DATA_VECTOR_MASK;
3590 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3591 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3592 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3593
3594 hpet_msi_write(irq, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003595}
Yinghai Lu3145e942008-12-05 18:58:34 -08003596
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003597#endif /* CONFIG_SMP */
3598
3599struct irq_chip hpet_msi_type = {
3600 .name = "HPET_MSI",
3601 .unmask = hpet_msi_unmask,
3602 .mask = hpet_msi_mask,
3603 .ack = ack_apic_edge,
3604#ifdef CONFIG_SMP
3605 .set_affinity = hpet_msi_set_affinity,
3606#endif
3607 .retrigger = ioapic_retrigger_irq,
3608};
3609
3610int arch_setup_hpet_msi(unsigned int irq)
3611{
3612 int ret;
3613 struct msi_msg msg;
3614
3615 ret = msi_compose_msg(NULL, irq, &msg);
3616 if (ret < 0)
3617 return ret;
3618
3619 hpet_msi_write(irq, &msg);
3620 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3621 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003622
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003623 return 0;
3624}
3625#endif
3626
Ingo Molnar54168ed2008-08-20 09:07:45 +02003627#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003628/*
3629 * Hypertransport interrupt support
3630 */
3631#ifdef CONFIG_HT_IRQ
3632
3633#ifdef CONFIG_SMP
3634
Yinghai Lu497c9a12008-08-19 20:50:28 -07003635static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003636{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003637 struct ht_irq_msg msg;
3638 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003639
Yinghai Lu497c9a12008-08-19 20:50:28 -07003640 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003641 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003642
Yinghai Lu497c9a12008-08-19 20:50:28 -07003643 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003644 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003645
Eric W. Biedermanec683072006-11-08 17:44:57 -08003646 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003647}
3648
Mike Travis22f65d32008-12-16 17:33:56 -08003649static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003650{
Yinghai Lu3145e942008-12-05 18:58:34 -08003651 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003652 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003653 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003654
Mike Travis22f65d32008-12-16 17:33:56 -08003655 dest = set_desc_affinity(desc, mask);
3656 if (dest == BAD_APICID)
Yinghai Lu497c9a12008-08-19 20:50:28 -07003657 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003658
Yinghai Lu3145e942008-12-05 18:58:34 -08003659 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003660
Yinghai Lu497c9a12008-08-19 20:50:28 -07003661 target_ht_irq(irq, dest, cfg->vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003662}
Yinghai Lu3145e942008-12-05 18:58:34 -08003663
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003664#endif
3665
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003666static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003667 .name = "PCI-HT",
3668 .mask = mask_ht_irq,
3669 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003670 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671#ifdef CONFIG_SMP
3672 .set_affinity = set_ht_irq_affinity,
3673#endif
3674 .retrigger = ioapic_retrigger_irq,
3675};
3676
3677int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3678{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003679 struct irq_cfg *cfg;
3680 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003681
Jan Beulichf1182632009-01-14 12:27:35 +00003682 if (disable_apic)
3683 return -ENXIO;
3684
Yinghai Lu3145e942008-12-05 18:58:34 -08003685 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003686 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003687 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003688 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003689 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003690
Ingo Molnardebccb32009-01-28 15:20:18 +01003691 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3692 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003693
Eric W. Biedermanec683072006-11-08 17:44:57 -08003694 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003695
Eric W. Biedermanec683072006-11-08 17:44:57 -08003696 msg.address_lo =
3697 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003698 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003699 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003700 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003701 HT_IRQ_LOW_DM_PHYSICAL :
3702 HT_IRQ_LOW_DM_LOGICAL) |
3703 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003704 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003705 HT_IRQ_LOW_MT_FIXED :
3706 HT_IRQ_LOW_MT_ARBITRATED) |
3707 HT_IRQ_LOW_IRQ_MASKED;
3708
Eric W. Biedermanec683072006-11-08 17:44:57 -08003709 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003710
Ingo Molnara460e742006-10-17 00:10:03 -07003711 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3712 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003713
3714 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003715 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003716 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003717}
3718#endif /* CONFIG_HT_IRQ */
3719
Nick Piggin03b48632009-01-20 04:36:04 +01003720#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003721/*
3722 * Re-target the irq to the specified CPU and enable the specified MMR located
3723 * on the specified blade to allow the sending of MSIs to the specified CPU.
3724 */
3725int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3726 unsigned long mmr_offset)
3727{
Mike Travis22f65d32008-12-16 17:33:56 -08003728 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003729 struct irq_cfg *cfg;
3730 int mmr_pnode;
3731 unsigned long mmr_value;
3732 struct uv_IO_APIC_route_entry *entry;
3733 unsigned long flags;
3734 int err;
3735
Yinghai Lu3145e942008-12-05 18:58:34 -08003736 cfg = irq_cfg(irq);
3737
Mike Travise7986732008-12-16 17:33:52 -08003738 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003739 if (err != 0)
3740 return err;
3741
3742 spin_lock_irqsave(&vector_lock, flags);
3743 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3744 irq_name);
3745 spin_unlock_irqrestore(&vector_lock, flags);
3746
Dean Nelson4173a0e2008-10-02 12:18:21 -05003747 mmr_value = 0;
3748 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3749 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3750
3751 entry->vector = cfg->vector;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003752 entry->delivery_mode = apic->irq_delivery_mode;
3753 entry->dest_mode = apic->irq_dest_mode;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003754 entry->polarity = 0;
3755 entry->trigger = 0;
3756 entry->mask = 0;
Ingo Molnardebccb32009-01-28 15:20:18 +01003757 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003758
3759 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3760 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3761
3762 return irq;
3763}
3764
3765/*
3766 * Disable the specified MMR located on the specified blade so that MSIs are
3767 * longer allowed to be sent.
3768 */
3769void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3770{
3771 unsigned long mmr_value;
3772 struct uv_IO_APIC_route_entry *entry;
3773 int mmr_pnode;
3774
3775 mmr_value = 0;
3776 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3777 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3778
3779 entry->mask = 1;
3780
3781 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3782 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3783}
3784#endif /* CONFIG_X86_64 */
3785
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003786int __init io_apic_get_redir_entries (int ioapic)
3787{
3788 union IO_APIC_reg_01 reg_01;
3789 unsigned long flags;
3790
3791 spin_lock_irqsave(&ioapic_lock, flags);
3792 reg_01.raw = io_apic_read(ioapic, 1);
3793 spin_unlock_irqrestore(&ioapic_lock, flags);
3794
3795 return reg_01.bits.entries;
3796}
3797
Yinghai Lube5d5352008-12-05 18:58:33 -08003798void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003799{
Yinghai Lube5d5352008-12-05 18:58:33 -08003800 int nr = 0;
3801
Yinghai Lucc6c5002009-02-08 16:18:03 -08003802 nr = acpi_probe_gsi();
3803 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003804 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003805 } else {
3806 /* for acpi=off or acpi is not compiled in */
3807 int idx;
3808
3809 nr = 0;
3810 for (idx = 0; idx < nr_ioapics; idx++)
3811 nr += io_apic_get_redir_entries(idx) + 1;
3812
3813 if (nr > nr_irqs_gsi)
3814 nr_irqs_gsi = nr;
3815 }
3816
3817 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003818}
3819
Yinghai Lu4a046d12009-01-12 17:39:24 -08003820#ifdef CONFIG_SPARSE_IRQ
3821int __init arch_probe_nr_irqs(void)
3822{
3823 int nr;
3824
Yinghai Luf1ee5542009-02-08 16:18:03 -08003825 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3826 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003827
Yinghai Luf1ee5542009-02-08 16:18:03 -08003828 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3829#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3830 /*
3831 * for MSI and HT dyn irq
3832 */
3833 nr += nr_irqs_gsi * 16;
3834#endif
3835 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003836 nr_irqs = nr;
3837
3838 return 0;
3839}
3840#endif
3841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003843 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 -------------------------------------------------------------------------- */
3845
Len Brown888ba6c2005-08-24 12:07:20 -04003846#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Ingo Molnar54168ed2008-08-20 09:07:45 +02003848#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003849int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850{
3851 union IO_APIC_reg_00 reg_00;
3852 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3853 physid_mask_t tmp;
3854 unsigned long flags;
3855 int i = 0;
3856
3857 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003858 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3859 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003861 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3863 * advantage of new APIC bus architecture.
3864 */
3865
3866 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003867 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869 spin_lock_irqsave(&ioapic_lock, flags);
3870 reg_00.raw = io_apic_read(ioapic, 0);
3871 spin_unlock_irqrestore(&ioapic_lock, flags);
3872
3873 if (apic_id >= get_physical_broadcast()) {
3874 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3875 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3876 apic_id = reg_00.bits.ID;
3877 }
3878
3879 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003880 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 * 'stuck on smp_invalidate_needed IPI wait' messages.
3882 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003883 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
3885 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003886 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 break;
3888 }
3889
3890 if (i == get_physical_broadcast())
3891 panic("Max apic_id exceeded!\n");
3892
3893 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3894 "trying %d\n", ioapic, apic_id, i);
3895
3896 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Ingo Molnar80587142009-01-28 06:50:47 +01003899 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 physids_or(apic_id_map, apic_id_map, tmp);
3901
3902 if (reg_00.bits.ID != apic_id) {
3903 reg_00.bits.ID = apic_id;
3904
3905 spin_lock_irqsave(&ioapic_lock, flags);
3906 io_apic_write(ioapic, 0, reg_00.raw);
3907 reg_00.raw = io_apic_read(ioapic, 0);
3908 spin_unlock_irqrestore(&ioapic_lock, flags);
3909
3910 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003911 if (reg_00.bits.ID != apic_id) {
3912 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3913 return -1;
3914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 }
3916
3917 apic_printk(APIC_VERBOSE, KERN_INFO
3918 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3919
3920 return apic_id;
3921}
3922
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003923int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
3925 union IO_APIC_reg_01 reg_01;
3926 unsigned long flags;
3927
3928 spin_lock_irqsave(&ioapic_lock, flags);
3929 reg_01.raw = io_apic_read(ioapic, 1);
3930 spin_unlock_irqrestore(&ioapic_lock, flags);
3931
3932 return reg_01.bits.version;
3933}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003934#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Ingo Molnar54168ed2008-08-20 09:07:45 +02003936int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003938 struct irq_desc *desc;
3939 struct irq_cfg *cfg;
3940 int cpu = boot_cpu_id;
3941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003943 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 ioapic);
3945 return -EINVAL;
3946 }
3947
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003948 desc = irq_to_desc_alloc_cpu(irq, cpu);
3949 if (!desc) {
3950 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3951 return 0;
3952 }
3953
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 * IRQs < 16 are already in the irq_2_pin[] map
3956 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003957 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003958 cfg = desc->chip_data;
Yinghai Lu3145e942008-12-05 18:58:34 -08003959 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Yinghai Lu3145e942008-12-05 18:58:34 -08003962 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964 return 0;
3965}
3966
Ingo Molnar54168ed2008-08-20 09:07:45 +02003967
Shaohua Li61fd47e2007-11-17 01:05:28 -05003968int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3969{
3970 int i;
3971
3972 if (skip_ioapic_setup)
3973 return -1;
3974
3975 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05303976 if (mp_irqs[i].irqtype == mp_INT &&
3977 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003978 break;
3979 if (i >= mp_irq_entries)
3980 return -1;
3981
3982 *trigger = irq_trigger(i);
3983 *polarity = irq_polarity(i);
3984 return 0;
3985}
3986
Len Brown888ba6c2005-08-24 12:07:20 -04003987#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02003988
Yinghai Lu497c9a12008-08-19 20:50:28 -07003989/*
3990 * This function currently is only a helper for the i386 smp boot process where
3991 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01003992 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07003993 */
3994#ifdef CONFIG_SMP
3995void __init setup_ioapic_dest(void)
3996{
3997 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01003998 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003999 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08004000 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004001
4002 if (skip_ioapic_setup == 1)
4003 return;
4004
4005 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4006 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4007 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4008 if (irq_entry == -1)
4009 continue;
4010 irq = pin_2_irq(irq_entry, ioapic, pin);
4011
4012 /* setup_IO_APIC_irqs could fail to get vector for some device
4013 * when you have too many devices, because at that time only boot
4014 * cpu is online.
4015 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004016 desc = irq_to_desc(irq);
4017 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004018 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08004019 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07004020 irq_trigger(irq_entry),
4021 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004022 continue;
4023
4024 }
4025
4026 /*
4027 * Honour affinities which have been set in early boot
4028 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004029 if (desc->status &
4030 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travis7f7ace02009-01-10 21:58:08 -08004031 mask = desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004032 else
Ingo Molnarfe402e12009-01-28 04:32:51 +01004033 mask = apic->target_cpus();
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004034
4035#ifdef CONFIG_INTR_REMAP
4036 if (intr_remapping_enabled)
Yinghai Lu3145e942008-12-05 18:58:34 -08004037 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004038 else
4039#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08004040 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004041 }
4042
4043 }
4044}
4045#endif
4046
Ingo Molnar54168ed2008-08-20 09:07:45 +02004047#define IOAPIC_RESOURCE_NAME_SIZE 11
4048
4049static struct resource *ioapic_resources;
4050
4051static struct resource * __init ioapic_setup_resources(void)
4052{
4053 unsigned long n;
4054 struct resource *res;
4055 char *mem;
4056 int i;
4057
4058 if (nr_ioapics <= 0)
4059 return NULL;
4060
4061 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4062 n *= nr_ioapics;
4063
4064 mem = alloc_bootmem(n);
4065 res = (void *)mem;
4066
4067 if (mem != NULL) {
4068 mem += sizeof(struct resource) * nr_ioapics;
4069
4070 for (i = 0; i < nr_ioapics; i++) {
4071 res[i].name = mem;
4072 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4073 sprintf(mem, "IOAPIC %u", i);
4074 mem += IOAPIC_RESOURCE_NAME_SIZE;
4075 }
4076 }
4077
4078 ioapic_resources = res;
4079
4080 return res;
4081}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004082
Yinghai Luf3294a32008-06-27 01:41:56 -07004083void __init ioapic_init_mappings(void)
4084{
4085 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004086 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004087 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004088
Ingo Molnar54168ed2008-08-20 09:07:45 +02004089 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004090 for (i = 0; i < nr_ioapics; i++) {
4091 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304092 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004093#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004094 if (!ioapic_phys) {
4095 printk(KERN_ERR
4096 "WARNING: bogus zero IO-APIC "
4097 "address found in MPTABLE, "
4098 "disabling IO/APIC support!\n");
4099 smp_found_config = 0;
4100 skip_ioapic_setup = 1;
4101 goto fake_ioapic_page;
4102 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004103#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004104 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004105#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004106fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004107#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004108 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004109 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004110 ioapic_phys = __pa(ioapic_phys);
4111 }
4112 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004113 apic_printk(APIC_VERBOSE,
4114 "mapped IOAPIC to %08lx (%08lx)\n",
4115 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004116 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004117
Ingo Molnar54168ed2008-08-20 09:07:45 +02004118 if (ioapic_res != NULL) {
4119 ioapic_res->start = ioapic_phys;
4120 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4121 ioapic_res++;
4122 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004123 }
4124}
4125
Ingo Molnar54168ed2008-08-20 09:07:45 +02004126static int __init ioapic_insert_resources(void)
4127{
4128 int i;
4129 struct resource *r = ioapic_resources;
4130
4131 if (!r) {
4132 printk(KERN_ERR
4133 "IO APIC resources could be not be allocated.\n");
4134 return -1;
4135 }
4136
4137 for (i = 0; i < nr_ioapics; i++) {
4138 insert_resource(&iomem_resource, r);
4139 r++;
4140 }
4141
4142 return 0;
4143}
4144
4145/* Insert the IO APIC resources after PCI initialization has occured to handle
4146 * IO APICS that are mapped in on a BAR in PCI space. */
4147late_initcall(ioapic_insert_resources);