blob: cf27795c641c8907efa4d06397c06bbd3116b7c5 [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 /*
558 * With interrupt-remapping, destination information comes
559 * from interrupt-remapping table entry.
560 */
561 if (!irq_remapped(irq))
562 io_apic_write(apic, 0x11 + pin*2, dest);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700563 reg = io_apic_read(apic, 0x10 + pin*2);
564 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
565 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200566 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700567 if (!entry->next)
568 break;
569 entry = entry->next;
570 }
571}
Yinghai Luefa25592008-08-19 20:50:36 -0700572
Mike Travise7986732008-12-16 17:33:52 -0800573static int
574assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
Yinghai Luefa25592008-08-19 20:50:36 -0700575
Mike Travis22f65d32008-12-16 17:33:56 -0800576/*
Ingo Molnardebccb32009-01-28 15:20:18 +0100577 * Either sets desc->affinity to a valid value, and returns
578 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
579 * leaves desc->affinity untouched.
Mike Travis22f65d32008-12-16 17:33:56 -0800580 */
581static unsigned int
582set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700583{
584 struct irq_cfg *cfg;
Yinghai Lu3145e942008-12-05 18:58:34 -0800585 unsigned int irq;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700586
Rusty Russell0de26522008-12-13 21:20:26 +1030587 if (!cpumask_intersects(mask, cpu_online_mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800588 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700589
Yinghai Lu3145e942008-12-05 18:58:34 -0800590 irq = desc->irq;
591 cfg = desc->chip_data;
592 if (assign_irq_vector(irq, cfg, mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800593 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700594
Mike Travis7f7ace02009-01-10 21:58:08 -0800595 cpumask_and(desc->affinity, cfg->domain, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -0800596 set_extra_move_desc(desc, mask);
Ingo Molnardebccb32009-01-28 15:20:18 +0100597
598 return apic->cpu_mask_to_apicid_and(desc->affinity, cpu_online_mask);
Mike Travis22f65d32008-12-16 17:33:56 -0800599}
Yinghai Lu3145e942008-12-05 18:58:34 -0800600
Mike Travis22f65d32008-12-16 17:33:56 -0800601static void
602set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700603{
604 struct irq_cfg *cfg;
605 unsigned long flags;
606 unsigned int dest;
Mike Travis22f65d32008-12-16 17:33:56 -0800607 unsigned int irq;
608
609 irq = desc->irq;
610 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700611
612 spin_lock_irqsave(&ioapic_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -0800613 dest = set_desc_affinity(desc, mask);
614 if (dest != BAD_APICID) {
615 /* Only the high 8 bits are valid. */
616 dest = SET_APIC_LOGICAL_ID(dest);
617 __target_IO_APIC_irq(irq, dest, cfg);
618 }
Yinghai Lu497c9a12008-08-19 20:50:28 -0700619 spin_unlock_irqrestore(&ioapic_lock, flags);
620}
Yinghai Lu3145e942008-12-05 18:58:34 -0800621
Mike Travis22f65d32008-12-16 17:33:56 -0800622static void
623set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800624{
Yinghai Lu497c9a12008-08-19 20:50:28 -0700625 struct irq_desc *desc;
626
Yinghai Lu497c9a12008-08-19 20:50:28 -0700627 desc = irq_to_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800628
629 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700630}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700631#endif /* CONFIG_SMP */
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/*
634 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
635 * shared ISA-space IRQs, so we have to support them. We are super
636 * fast in the common case, and fast for shared ISA-space IRQs.
637 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800638static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700640 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Yinghai Lu0f978f42008-08-19 20:50:26 -0700642 entry = cfg->irq_2_pin;
643 if (!entry) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800644 entry = get_one_free_irq_2_pin(cpu);
645 if (!entry) {
646 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
647 apic, pin);
648 return;
649 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700650 cfg->irq_2_pin = entry;
651 entry->apic = apic;
652 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700653 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700655
656 while (entry->next) {
657 /* not again, please */
658 if (entry->apic == apic && entry->pin == pin)
659 return;
660
661 entry = entry->next;
662 }
663
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800664 entry->next = get_one_free_irq_2_pin(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700665 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 entry->apic = apic;
667 entry->pin = pin;
668}
669
670/*
671 * Reroute an IRQ to a different pin.
672 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800673static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 int oldapic, int oldpin,
675 int newapic, int newpin)
676{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700677 struct irq_pin_list *entry = cfg->irq_2_pin;
678 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Yinghai Lu0f978f42008-08-19 20:50:26 -0700680 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (entry->apic == oldapic && entry->pin == oldpin) {
682 entry->apic = newapic;
683 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700684 replaced = 1;
685 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700687 }
688 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700690
691 /* why? call replace before add? */
692 if (!replaced)
Yinghai Lu3145e942008-12-05 18:58:34 -0800693 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Yinghai Lu3145e942008-12-05 18:58:34 -0800696static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400697 int mask_and, int mask_or,
698 void (*final)(struct irq_pin_list *entry))
699{
700 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400701 struct irq_pin_list *entry;
702
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400703 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
704 unsigned int reg;
705 pin = entry->pin;
706 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
707 reg &= mask_and;
708 reg |= mask_or;
709 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
710 if (final)
711 final(entry);
712 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700713}
714
Yinghai Lu3145e942008-12-05 18:58:34 -0800715static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400716{
Yinghai Lu3145e942008-12-05 18:58:34 -0800717 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400718}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700719
720#ifdef CONFIG_X86_64
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530721static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700722{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400723 /*
724 * Synchronize the IO-APIC and the CPU by doing
725 * a dummy read from the IO-APIC
726 */
727 struct io_apic __iomem *io_apic;
728 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700729 readl(&io_apic->data);
730}
731
Yinghai Lu3145e942008-12-05 18:58:34 -0800732static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400733{
Yinghai Lu3145e942008-12-05 18:58:34 -0800734 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400735}
736#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800737static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400738{
Yinghai Lu3145e942008-12-05 18:58:34 -0800739 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400740}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700741
Yinghai Lu3145e942008-12-05 18:58:34 -0800742static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400743{
Yinghai Lu3145e942008-12-05 18:58:34 -0800744 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400745 IO_APIC_REDIR_MASKED, NULL);
746}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700747
Yinghai Lu3145e942008-12-05 18:58:34 -0800748static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400749{
Yinghai Lu3145e942008-12-05 18:58:34 -0800750 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400751 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
752}
753#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700754
Yinghai Lu3145e942008-12-05 18:58:34 -0800755static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Yinghai Lu3145e942008-12-05 18:58:34 -0800757 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 unsigned long flags;
759
Yinghai Lu3145e942008-12-05 18:58:34 -0800760 BUG_ON(!cfg);
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800763 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 spin_unlock_irqrestore(&ioapic_lock, flags);
765}
766
Yinghai Lu3145e942008-12-05 18:58:34 -0800767static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Yinghai Lu3145e942008-12-05 18:58:34 -0800769 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 unsigned long flags;
771
772 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800773 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 spin_unlock_irqrestore(&ioapic_lock, flags);
775}
776
Yinghai Lu3145e942008-12-05 18:58:34 -0800777static void mask_IO_APIC_irq(unsigned int irq)
778{
779 struct irq_desc *desc = irq_to_desc(irq);
780
781 mask_IO_APIC_irq_desc(desc);
782}
783static void unmask_IO_APIC_irq(unsigned int irq)
784{
785 struct irq_desc *desc = irq_to_desc(irq);
786
787 unmask_IO_APIC_irq_desc(desc);
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
791{
792 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200795 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (entry.delivery_mode == dest_SMI)
797 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * Disable it in the IO-APIC irq-routing table:
800 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800801 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Ingo Molnar54168ed2008-08-20 09:07:45 +0200804static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 int apic, pin;
807
808 for (apic = 0; apic < nr_ioapics; apic++)
809 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
810 clear_IO_APIC_pin(apic, pin);
811}
812
Ingo Molnar54168ed2008-08-20 09:07:45 +0200813#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/*
815 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
816 * specific CPU-side IRQs.
817 */
818
819#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800820static int pirq_entries[MAX_PIRQS] = {
821 [0 ... MAX_PIRQS - 1] = -1
822};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824static int __init ioapic_pirq_setup(char *str)
825{
826 int i, max;
827 int ints[MAX_PIRQS+1];
828
829 get_options(str, ARRAY_SIZE(ints), ints);
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 apic_printk(APIC_VERBOSE, KERN_INFO
832 "PIRQ redirection, working around broken MP-BIOS.\n");
833 max = MAX_PIRQS;
834 if (ints[0] < MAX_PIRQS)
835 max = ints[0];
836
837 for (i = 0; i < max; i++) {
838 apic_printk(APIC_VERBOSE, KERN_DEBUG
839 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
840 /*
841 * PIRQs are mapped upside down, usually.
842 */
843 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
844 }
845 return 1;
846}
847
848__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200849#endif /* CONFIG_X86_32 */
850
851#ifdef CONFIG_INTR_REMAP
852/* I/O APIC RTE contents at the OS boot up */
853static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
854
855/*
856 * Saves and masks all the unmasked IO-APIC RTE's
857 */
858int save_mask_IO_APIC_setup(void)
859{
860 union IO_APIC_reg_01 reg_01;
861 unsigned long flags;
862 int apic, pin;
863
864 /*
865 * The number of IO-APIC IRQ registers (== #pins):
866 */
867 for (apic = 0; apic < nr_ioapics; apic++) {
868 spin_lock_irqsave(&ioapic_lock, flags);
869 reg_01.raw = io_apic_read(apic, 1);
870 spin_unlock_irqrestore(&ioapic_lock, flags);
871 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
872 }
873
874 for (apic = 0; apic < nr_ioapics; apic++) {
875 early_ioapic_entries[apic] =
876 kzalloc(sizeof(struct IO_APIC_route_entry) *
877 nr_ioapic_registers[apic], GFP_KERNEL);
878 if (!early_ioapic_entries[apic])
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400879 goto nomem;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200880 }
881
882 for (apic = 0; apic < nr_ioapics; apic++)
883 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
884 struct IO_APIC_route_entry entry;
885
886 entry = early_ioapic_entries[apic][pin] =
887 ioapic_read_entry(apic, pin);
888 if (!entry.mask) {
889 entry.mask = 1;
890 ioapic_write_entry(apic, pin, entry);
891 }
892 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400893
Ingo Molnar54168ed2008-08-20 09:07:45 +0200894 return 0;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400895
896nomem:
Cyrill Gorcunovc1370b42008-09-23 23:00:02 +0400897 while (apic >= 0)
898 kfree(early_ioapic_entries[apic--]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400899 memset(early_ioapic_entries, 0,
900 ARRAY_SIZE(early_ioapic_entries));
901
902 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200903}
904
905void restore_IO_APIC_setup(void)
906{
907 int apic, pin;
908
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400909 for (apic = 0; apic < nr_ioapics; apic++) {
910 if (!early_ioapic_entries[apic])
911 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200912 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
913 ioapic_write_entry(apic, pin,
914 early_ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400915 kfree(early_ioapic_entries[apic]);
916 early_ioapic_entries[apic] = NULL;
917 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200918}
919
920void reinit_intr_remapped_IO_APIC(int intr_remapping)
921{
922 /*
923 * for now plain restore of previous settings.
924 * TBD: In the case of OS enabling interrupt-remapping,
925 * IO-APIC RTE's need to be setup to point to interrupt-remapping
926 * table entries. for now, do a plain restore, and wait for
927 * the setup_IO_APIC_irqs() to do proper initialization.
928 */
929 restore_IO_APIC_setup();
930}
931#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933/*
934 * Find the IRQ entry number of a certain pin.
935 */
936static int find_irq_entry(int apic, int pin, int type)
937{
938 int i;
939
940 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530941 if (mp_irqs[i].irqtype == type &&
942 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
943 mp_irqs[i].dstapic == MP_APIC_ALL) &&
944 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return i;
946
947 return -1;
948}
949
950/*
951 * Find the pin to which IRQ[irq] (ISA) is connected
952 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800953static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 int i;
956
957 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530958 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300960 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530961 (mp_irqs[i].irqtype == type) &&
962 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530964 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966 return -1;
967}
968
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800969static int __init find_isa_irq_apic(int irq, int type)
970{
971 int i;
972
973 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530974 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800975
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300976 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530977 (mp_irqs[i].irqtype == type) &&
978 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800979 break;
980 }
981 if (i < mp_irq_entries) {
982 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200983 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530984 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800985 return apic;
986 }
987 }
988
989 return -1;
990}
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * Find a specific PCI IRQ entry.
994 * Not an __init, possibly needed by modules
995 */
996static int pin_2_irq(int idx, int apic, int pin);
997
998int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
999{
1000 int apic, i, best_guess = -1;
1001
Ingo Molnar54168ed2008-08-20 09:07:45 +02001002 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1003 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +04001004 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001005 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -1;
1007 }
1008 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301009 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 for (apic = 0; apic < nr_ioapics; apic++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301012 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1013 mp_irqs[i].dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 break;
1015
Alexey Starikovskiy47cab822008-03-20 14:54:30 +03001016 if (!test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301017 !mp_irqs[i].irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 (bus == lbus) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301019 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1020 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 if (!(apic || IO_APIC_IRQ(irq)))
1023 continue;
1024
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301025 if (pin == (mp_irqs[i].srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return irq;
1027 /*
1028 * Use the first all-but-pin matching entry as a
1029 * best-guess fuzzy result for broken mptables.
1030 */
1031 if (best_guess < 0)
1032 best_guess = irq;
1033 }
1034 }
1035 return best_guess;
1036}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001037
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001038EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001040#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
1042 * EISA Edge/Level control register, ELCR
1043 */
1044static int EISA_ELCR(unsigned int irq)
1045{
Yinghai Lu99d093d2008-12-05 18:58:32 -08001046 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 unsigned int port = 0x4d0 + (irq >> 3);
1048 return (inb(port) >> (irq & 7)) & 1;
1049 }
1050 apic_printk(APIC_VERBOSE, KERN_INFO
1051 "Broken MPtable reports ISA irq %d\n", irq);
1052 return 0;
1053}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001054
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001057/* ISA interrupts are always polarity zero edge triggered,
1058 * when listed as conforming in the MP table. */
1059
1060#define default_ISA_trigger(idx) (0)
1061#define default_ISA_polarity(idx) (0)
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/* EISA interrupts are always polarity zero and can be edge or level
1064 * trigger depending on the ELCR value. If an interrupt is listed as
1065 * EISA conforming in the MP table, that means its trigger type must
1066 * be read in from the ELCR */
1067
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301068#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001069#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071/* PCI interrupts are always polarity one level triggered,
1072 * when listed as conforming in the MP table. */
1073
1074#define default_PCI_trigger(idx) (1)
1075#define default_PCI_polarity(idx) (1)
1076
1077/* MCA interrupts are always polarity zero level triggered,
1078 * when listed as conforming in the MP table. */
1079
1080#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001081#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Shaohua Li61fd47e2007-11-17 01:05:28 -05001083static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301085 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 int polarity;
1087
1088 /*
1089 * Determine IRQ line polarity (high active or low active):
1090 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301091 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001093 case 0: /* conforms, ie. bus-type dependent polarity */
1094 if (test_bit(bus, mp_bus_not_pci))
1095 polarity = default_ISA_polarity(idx);
1096 else
1097 polarity = default_PCI_polarity(idx);
1098 break;
1099 case 1: /* high active */
1100 {
1101 polarity = 0;
1102 break;
1103 }
1104 case 2: /* reserved */
1105 {
1106 printk(KERN_WARNING "broken BIOS!!\n");
1107 polarity = 1;
1108 break;
1109 }
1110 case 3: /* low active */
1111 {
1112 polarity = 1;
1113 break;
1114 }
1115 default: /* invalid */
1116 {
1117 printk(KERN_WARNING "broken BIOS!!\n");
1118 polarity = 1;
1119 break;
1120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122 return polarity;
1123}
1124
1125static int MPBIOS_trigger(int idx)
1126{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301127 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 int trigger;
1129
1130 /*
1131 * Determine IRQ trigger mode (edge or level sensitive):
1132 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301133 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001135 case 0: /* conforms, ie. bus-type dependent */
1136 if (test_bit(bus, mp_bus_not_pci))
1137 trigger = default_ISA_trigger(idx);
1138 else
1139 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001140#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001141 switch (mp_bus_id_to_type[bus]) {
1142 case MP_BUS_ISA: /* ISA pin */
1143 {
1144 /* set before the switch */
1145 break;
1146 }
1147 case MP_BUS_EISA: /* EISA pin */
1148 {
1149 trigger = default_EISA_trigger(idx);
1150 break;
1151 }
1152 case MP_BUS_PCI: /* PCI pin */
1153 {
1154 /* set before the switch */
1155 break;
1156 }
1157 case MP_BUS_MCA: /* MCA pin */
1158 {
1159 trigger = default_MCA_trigger(idx);
1160 break;
1161 }
1162 default:
1163 {
1164 printk(KERN_WARNING "broken BIOS!!\n");
1165 trigger = 1;
1166 break;
1167 }
1168 }
1169#endif
1170 break;
1171 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001172 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001173 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001174 break;
1175 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001176 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001177 {
1178 printk(KERN_WARNING "broken BIOS!!\n");
1179 trigger = 1;
1180 break;
1181 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001182 case 3: /* level */
1183 {
1184 trigger = 1;
1185 break;
1186 }
1187 default: /* invalid */
1188 {
1189 printk(KERN_WARNING "broken BIOS!!\n");
1190 trigger = 0;
1191 break;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194 return trigger;
1195}
1196
1197static inline int irq_polarity(int idx)
1198{
1199 return MPBIOS_polarity(idx);
1200}
1201
1202static inline int irq_trigger(int idx)
1203{
1204 return MPBIOS_trigger(idx);
1205}
1206
Yinghai Luefa25592008-08-19 20:50:36 -07001207int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208static int pin_2_irq(int idx, int apic, int pin)
1209{
1210 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301211 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
1214 * Debugging check, we are in big trouble if this message pops up!
1215 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301216 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1218
Ingo Molnar54168ed2008-08-20 09:07:45 +02001219 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301220 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001221 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001222 /*
1223 * PCI IRQs are mapped in order
1224 */
1225 i = irq = 0;
1226 while (i < apic)
1227 irq += nr_ioapic_registers[i++];
1228 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001229 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001230 * For MPS mode, so far only needed by ES7000 platform
1231 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001232 if (ioapic_renumber_irq)
1233 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
Ingo Molnar54168ed2008-08-20 09:07:45 +02001236#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /*
1238 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1239 */
1240 if ((pin >= 16) && (pin <= 23)) {
1241 if (pirq_entries[pin-16] != -1) {
1242 if (!pirq_entries[pin-16]) {
1243 apic_printk(APIC_VERBOSE, KERN_DEBUG
1244 "disabling PIRQ%d\n", pin-16);
1245 } else {
1246 irq = pirq_entries[pin-16];
1247 apic_printk(APIC_VERBOSE, KERN_DEBUG
1248 "using PIRQ%d -> IRQ %d\n",
1249 pin-16, irq);
1250 }
1251 }
1252 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001253#endif
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return irq;
1256}
1257
Yinghai Lu497c9a12008-08-19 20:50:28 -07001258void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001260 /* Used to the online set of cpus does not change
1261 * during assign_irq_vector.
1262 */
1263 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
Yinghai Lu497c9a12008-08-19 20:50:28 -07001266void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001267{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001268 spin_unlock(&vector_lock);
1269}
1270
Mike Travise7986732008-12-16 17:33:52 -08001271static int
1272__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001273{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001274 /*
1275 * NOTE! The local APIC isn't very good at handling
1276 * multiple interrupts at the same interrupt level.
1277 * As the interrupt level is determined by taking the
1278 * vector number and shifting that right by 4, we
1279 * want to spread these out a bit so that they don't
1280 * all fall in the same interrupt level.
1281 *
1282 * Also, we've got to be careful not to trash gate
1283 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1284 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001285 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1286 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001287 int cpu, err;
1288 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001289
Ingo Molnar54168ed2008-08-20 09:07:45 +02001290 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1291 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001292
Mike Travis22f65d32008-12-16 17:33:56 -08001293 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1294 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001295
Ingo Molnar54168ed2008-08-20 09:07:45 +02001296 old_vector = cfg->vector;
1297 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001298 cpumask_and(tmp_mask, mask, cpu_online_mask);
1299 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1300 if (!cpumask_empty(tmp_mask)) {
1301 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001302 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001303 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001304 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001305
Mike Travise7986732008-12-16 17:33:52 -08001306 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001307 err = -ENOSPC;
1308 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001309 int new_cpu;
1310 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001311
Ingo Molnare2d40b12009-01-28 06:50:47 +01001312 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001313
Ingo Molnar54168ed2008-08-20 09:07:45 +02001314 vector = current_vector;
1315 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001316next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001317 vector += 8;
1318 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001319 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001320 offset = (offset + 1) % 8;
1321 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001322 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001323 if (unlikely(current_vector == vector))
1324 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001325
1326 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001327 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001328
Mike Travis22f65d32008-12-16 17:33:56 -08001329 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001330 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1331 goto next;
1332 /* Found one! */
1333 current_vector = vector;
1334 current_offset = offset;
1335 if (old_vector) {
1336 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001337 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001338 }
Mike Travis22f65d32008-12-16 17:33:56 -08001339 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001340 per_cpu(vector_irq, new_cpu)[vector] = irq;
1341 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001342 cpumask_copy(cfg->domain, tmp_mask);
1343 err = 0;
1344 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001345 }
Mike Travis22f65d32008-12-16 17:33:56 -08001346 free_cpumask_var(tmp_mask);
1347 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001348}
1349
Mike Travise7986732008-12-16 17:33:52 -08001350static int
1351assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001352{
1353 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001354 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001355
1356 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001357 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001358 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001359 return err;
1360}
1361
Yinghai Lu3145e942008-12-05 18:58:34 -08001362static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001363{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001364 int cpu, vector;
1365
Yinghai Lu497c9a12008-08-19 20:50:28 -07001366 BUG_ON(!cfg->vector);
1367
1368 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001369 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001370 per_cpu(vector_irq, cpu)[vector] = -1;
1371
1372 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001373 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001374
1375 if (likely(!cfg->move_in_progress))
1376 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001377 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001378 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1379 vector++) {
1380 if (per_cpu(vector_irq, cpu)[vector] != irq)
1381 continue;
1382 per_cpu(vector_irq, cpu)[vector] = -1;
1383 break;
1384 }
1385 }
1386 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001387}
1388
1389void __setup_vector_irq(int cpu)
1390{
1391 /* Initialize vector_irq on a new cpu */
1392 /* This function must be called with vector_lock held */
1393 int irq, vector;
1394 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001395 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001396
1397 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001398 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001399 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001400 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001401 continue;
1402 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001403 per_cpu(vector_irq, cpu)[vector] = irq;
1404 }
1405 /* Mark the free vectors */
1406 for (vector = 0; vector < NR_VECTORS; ++vector) {
1407 irq = per_cpu(vector_irq, cpu)[vector];
1408 if (irq < 0)
1409 continue;
1410
1411 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001412 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001413 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001414 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001415}
Glauber Costa3fde6902008-05-28 20:34:19 -07001416
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001417static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001418static struct irq_chip ir_ioapic_chip;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001419static struct irq_chip msi_ir_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Ingo Molnar54168ed2008-08-20 09:07:45 +02001421#define IOAPIC_AUTO -1
1422#define IOAPIC_EDGE 0
1423#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001425#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001426static inline int IO_APIC_irq_trigger(int irq)
1427{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001428 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001429
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001430 for (apic = 0; apic < nr_ioapics; apic++) {
1431 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1432 idx = find_irq_entry(apic, pin, mp_INT);
1433 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1434 return irq_trigger(idx);
1435 }
1436 }
1437 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001438 * nonexistent IRQs are edge default
1439 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001440 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001441}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001442#else
1443static inline int IO_APIC_irq_trigger(int irq)
1444{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001445 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001446}
1447#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001448
Yinghai Lu3145e942008-12-05 18:58:34 -08001449static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Yinghai Lu199751d2008-08-19 20:50:27 -07001451
Jan Beulich6ebcc002006-06-26 13:56:46 +02001452 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001453 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001454 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001455 else
1456 desc->status &= ~IRQ_LEVEL;
1457
Ingo Molnar54168ed2008-08-20 09:07:45 +02001458 if (irq_remapped(irq)) {
1459 desc->status |= IRQ_MOVE_PCNTXT;
1460 if (trigger)
1461 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1462 handle_fasteoi_irq,
1463 "fasteoi");
1464 else
1465 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1466 handle_edge_irq, "edge");
1467 return;
1468 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001469
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001470 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1471 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001472 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001473 handle_fasteoi_irq,
1474 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001475 else
Ingo Molnara460e742006-10-17 00:10:03 -07001476 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001477 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001478}
1479
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001480int setup_ioapic_entry(int apic_id, int irq,
1481 struct IO_APIC_route_entry *entry,
1482 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001483 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001484{
1485 /*
1486 * add it to the IO-APIC irq-routing table:
1487 */
1488 memset(entry,0,sizeof(*entry));
1489
Ingo Molnar54168ed2008-08-20 09:07:45 +02001490 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001491 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001492 struct irte irte;
1493 struct IR_IO_APIC_route_entry *ir_entry =
1494 (struct IR_IO_APIC_route_entry *) entry;
1495 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001496
Ingo Molnar54168ed2008-08-20 09:07:45 +02001497 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001498 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001499
1500 index = alloc_irte(iommu, irq, 1);
1501 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001502 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001503
1504 memset(&irte, 0, sizeof(irte));
1505
1506 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001507 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001508 /*
1509 * Trigger mode in the IRTE will always be edge, and the
1510 * actual level or edge trigger will be setup in the IO-APIC
1511 * RTE. This will help simplify level triggered irq migration.
1512 * For more details, see the comments above explainig IO-APIC
1513 * irq migration in the presence of interrupt-remapping.
1514 */
1515 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001516 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001517 irte.vector = vector;
1518 irte.dest_id = IRTE_DEST(destination);
1519
1520 modify_irte(irq, &irte);
1521
1522 ir_entry->index2 = (index >> 15) & 0x1;
1523 ir_entry->zero = 0;
1524 ir_entry->format = 1;
1525 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001526 /*
1527 * IO-APIC RTE will be configured with virtual vector.
1528 * irq handler will do the explicit EOI to the io-apic.
1529 */
1530 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001531 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001532 entry->delivery_mode = apic->irq_delivery_mode;
1533 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001534 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001535 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001536 }
1537
1538 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001539 entry->trigger = trigger;
1540 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001541
1542 /* Mask level triggered irqs.
1543 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1544 */
1545 if (trigger)
1546 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001547 return 0;
1548}
1549
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001550static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001551 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001552{
1553 struct irq_cfg *cfg;
1554 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001555 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001556
1557 if (!IO_APIC_IRQ(irq))
1558 return;
1559
Yinghai Lu3145e942008-12-05 18:58:34 -08001560 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001561
Ingo Molnarfe402e12009-01-28 04:32:51 +01001562 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001563 return;
1564
Ingo Molnardebccb32009-01-28 15:20:18 +01001565 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001566
1567 apic_printk(APIC_VERBOSE,KERN_DEBUG
1568 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1569 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001570 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001571 irq, trigger, polarity);
1572
1573
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001574 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001575 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001576 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001577 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001578 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001579 return;
1580 }
1581
Yinghai Lu3145e942008-12-05 18:58:34 -08001582 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001583 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001584 disable_8259A_irq(irq);
1585
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001586 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589static void __init setup_IO_APIC_irqs(void)
1590{
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001591 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001592 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001593 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001594 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001595 int cpu = boot_cpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1598
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001599 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1600 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001602 idx = find_irq_entry(apic_id, pin, mp_INT);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001603 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001604 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001605 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001606 apic_printk(APIC_VERBOSE,
1607 KERN_DEBUG " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001608 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001609 } else
1610 apic_printk(APIC_VERBOSE, " %d-%d",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001611 mp_ioapics[apic_id].apicid, pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001612 continue;
1613 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001614 if (notcon) {
1615 apic_printk(APIC_VERBOSE,
1616 " (apicid-pin) not connected\n");
1617 notcon = 0;
1618 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001619
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001620 irq = pin_2_irq(idx, apic_id, pin);
Ingo Molnar33a201f2009-01-28 07:17:26 +01001621
1622 /*
1623 * Skip the timer IRQ if there's a quirk handler
1624 * installed and if it returns 1:
1625 */
1626 if (apic->multi_timer_check &&
1627 apic->multi_timer_check(apic_id, irq))
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001628 continue;
Ingo Molnar33a201f2009-01-28 07:17:26 +01001629
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001630 desc = irq_to_desc_alloc_cpu(irq, cpu);
1631 if (!desc) {
1632 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1633 continue;
1634 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001635 cfg = desc->chip_data;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001636 add_pin_to_irq_cpu(cfg, cpu, apic_id, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001637
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001638 setup_IO_APIC_irq(apic_id, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001639 irq_trigger(idx), irq_polarity(idx));
1640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001643 if (notcon)
1644 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001645 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
1648/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001649 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001651static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001652 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
1654 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Ingo Molnar54168ed2008-08-20 09:07:45 +02001656 if (intr_remapping_enabled)
1657 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001658
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001659 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 /*
1662 * We use logical delivery to get the timer IRQ
1663 * to the first CPU.
1664 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001665 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001666 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001667 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001668 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 entry.polarity = 0;
1670 entry.trigger = 0;
1671 entry.vector = vector;
1672
1673 /*
1674 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001675 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001677 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 /*
1680 * Add it to the IO-APIC irq-routing table:
1681 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001682 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001685
1686__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
1688 int apic, i;
1689 union IO_APIC_reg_00 reg_00;
1690 union IO_APIC_reg_01 reg_01;
1691 union IO_APIC_reg_02 reg_02;
1692 union IO_APIC_reg_03 reg_03;
1693 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001694 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001695 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001696 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 if (apic_verbosity == APIC_QUIET)
1699 return;
1700
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001701 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 for (i = 0; i < nr_ioapics; i++)
1703 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301704 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 /*
1707 * We are a bit conservative about what we expect. We have to
1708 * know about every hardware change ASAP.
1709 */
1710 printk(KERN_INFO "testing the IO APIC.......................\n");
1711
1712 for (apic = 0; apic < nr_ioapics; apic++) {
1713
1714 spin_lock_irqsave(&ioapic_lock, flags);
1715 reg_00.raw = io_apic_read(apic, 0);
1716 reg_01.raw = io_apic_read(apic, 1);
1717 if (reg_01.bits.version >= 0x10)
1718 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001719 if (reg_01.bits.version >= 0x20)
1720 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 spin_unlock_irqrestore(&ioapic_lock, flags);
1722
Ingo Molnar54168ed2008-08-20 09:07:45 +02001723 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301724 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1726 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1727 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1728 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Ingo Molnar54168ed2008-08-20 09:07:45 +02001730 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1734 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 /*
1737 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1738 * but the value of reg_02 is read as the previous read register
1739 * value, so ignore it if reg_02 == reg_01.
1740 */
1741 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1742 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1743 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745
1746 /*
1747 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1748 * or reg_03, but the value of reg_0[23] is read as the previous read
1749 * register value, so ignore it if reg_03 == reg_0[12].
1750 */
1751 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1752 reg_03.raw != reg_01.raw) {
1753 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1754 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
1756
1757 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1758
Yinghai Lud83e94a2008-08-19 20:50:33 -07001759 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1760 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 for (i = 0; i <= reg_01.bits.entries; i++) {
1763 struct IO_APIC_route_entry entry;
1764
Andi Kleencf4c6a22006-09-26 10:52:30 +02001765 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Ingo Molnar54168ed2008-08-20 09:07:45 +02001767 printk(KERN_DEBUG " %02x %03X ",
1768 i,
1769 entry.dest
1770 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1773 entry.mask,
1774 entry.trigger,
1775 entry.irr,
1776 entry.polarity,
1777 entry.delivery_status,
1778 entry.dest_mode,
1779 entry.delivery_mode,
1780 entry.vector
1781 );
1782 }
1783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001785 for_each_irq_desc(irq, desc) {
1786 struct irq_pin_list *entry;
1787
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001788 cfg = desc->chip_data;
1789 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001790 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001792 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 for (;;) {
1794 printk("-> %d:%d", entry->apic, entry->pin);
1795 if (!entry->next)
1796 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001797 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799 printk("\n");
1800 }
1801
1802 printk(KERN_INFO ".................................... done.\n");
1803
1804 return;
1805}
1806
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001807__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 unsigned int v;
1810 int i, j;
1811
1812 if (apic_verbosity == APIC_QUIET)
1813 return;
1814
1815 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1816 for (i = 0; i < 8; i++) {
1817 v = apic_read(base + i*0x10);
1818 for (j = 0; j < 32; j++) {
1819 if (v & (1<<j))
1820 printk("1");
1821 else
1822 printk("0");
1823 }
1824 printk("\n");
1825 }
1826}
1827
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001828__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001831 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 if (apic_verbosity == APIC_QUIET)
1834 return;
1835
1836 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1837 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001838 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001839 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 v = apic_read(APIC_LVR);
1841 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1842 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001843 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 v = apic_read(APIC_TASKPRI);
1846 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1847
Ingo Molnar54168ed2008-08-20 09:07:45 +02001848 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001849 if (!APIC_XAPIC(ver)) {
1850 v = apic_read(APIC_ARBPRI);
1851 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1852 v & APIC_ARBPRI_MASK);
1853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 v = apic_read(APIC_PROCPRI);
1855 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1856 }
1857
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001858 /*
1859 * Remote read supported only in the 82489DX and local APIC for
1860 * Pentium processors.
1861 */
1862 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1863 v = apic_read(APIC_RRR);
1864 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1865 }
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 v = apic_read(APIC_LDR);
1868 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001869 if (!x2apic_enabled()) {
1870 v = apic_read(APIC_DFR);
1871 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 v = apic_read(APIC_SPIV);
1874 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1875
1876 printk(KERN_DEBUG "... APIC ISR field:\n");
1877 print_APIC_bitfield(APIC_ISR);
1878 printk(KERN_DEBUG "... APIC TMR field:\n");
1879 print_APIC_bitfield(APIC_TMR);
1880 printk(KERN_DEBUG "... APIC IRR field:\n");
1881 print_APIC_bitfield(APIC_IRR);
1882
Ingo Molnar54168ed2008-08-20 09:07:45 +02001883 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1884 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 v = apic_read(APIC_ESR);
1888 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1889 }
1890
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001891 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001892 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1893 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 v = apic_read(APIC_LVTT);
1896 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1897
1898 if (maxlvt > 3) { /* PC is LVT#4. */
1899 v = apic_read(APIC_LVTPC);
1900 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1901 }
1902 v = apic_read(APIC_LVT0);
1903 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1904 v = apic_read(APIC_LVT1);
1905 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1906
1907 if (maxlvt > 2) { /* ERR is LVT#3. */
1908 v = apic_read(APIC_LVTERR);
1909 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1910 }
1911
1912 v = apic_read(APIC_TMICT);
1913 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1914 v = apic_read(APIC_TMCCT);
1915 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1916 v = apic_read(APIC_TDCR);
1917 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1918 printk("\n");
1919}
1920
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001921__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001923 int cpu;
1924
1925 preempt_disable();
1926 for_each_online_cpu(cpu)
1927 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1928 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001931__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 unsigned int v;
1934 unsigned long flags;
1935
1936 if (apic_verbosity == APIC_QUIET)
1937 return;
1938
1939 printk(KERN_DEBUG "\nprinting PIC contents\n");
1940
1941 spin_lock_irqsave(&i8259A_lock, flags);
1942
1943 v = inb(0xa1) << 8 | inb(0x21);
1944 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1945
1946 v = inb(0xa0) << 8 | inb(0x20);
1947 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1948
Ingo Molnar54168ed2008-08-20 09:07:45 +02001949 outb(0x0b,0xa0);
1950 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001952 outb(0x0a,0xa0);
1953 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 spin_unlock_irqrestore(&i8259A_lock, flags);
1956
1957 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1958
1959 v = inb(0x4d1) << 8 | inb(0x4d0);
1960 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1961}
1962
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001963__apicdebuginit(int) print_all_ICs(void)
1964{
1965 print_PIC();
1966 print_all_local_APICs();
1967 print_IO_APIC();
1968
1969 return 0;
1970}
1971
1972fs_initcall(print_all_ICs);
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Yinghai Luefa25592008-08-19 20:50:36 -07001975/* Where if anywhere is the i8259 connect in external int mode */
1976static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1977
Ingo Molnar54168ed2008-08-20 09:07:45 +02001978void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001981 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001982 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 unsigned long flags;
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
1986 * The number of IO-APIC IRQ registers (== #pins):
1987 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001988 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001990 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001992 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1993 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001994 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001995 int pin;
1996 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001997 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001998 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001999 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002000
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002001 /* If the interrupt line is enabled and in ExtInt mode
2002 * I have found the pin where the i8259 is connected.
2003 */
2004 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
2005 ioapic_i8259.apic = apic;
2006 ioapic_i8259.pin = pin;
2007 goto found_i8259;
2008 }
2009 }
2010 }
2011 found_i8259:
2012 /* Look to see what if the MP table has reported the ExtINT */
2013 /* If we could not find the appropriate pin by looking at the ioapic
2014 * the i8259 probably is not connected the ioapic but give the
2015 * mptable a chance anyway.
2016 */
2017 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2018 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2019 /* Trust the MP table if nothing is setup in the hardware */
2020 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2021 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2022 ioapic_i8259.pin = i8259_pin;
2023 ioapic_i8259.apic = i8259_apic;
2024 }
2025 /* Complain if the MP table and the hardware disagree */
2026 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2027 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2028 {
2029 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031
2032 /*
2033 * Do not trust the IO-APIC being empty at bootup
2034 */
2035 clear_IO_APIC();
2036}
2037
2038/*
2039 * Not an __init, needed by the reboot code
2040 */
2041void disable_IO_APIC(void)
2042{
2043 /*
2044 * Clear the IO-APIC before rebooting:
2045 */
2046 clear_IO_APIC();
2047
Eric W. Biederman650927e2005-06-25 14:57:44 -07002048 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002049 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002050 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002051 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002052 *
2053 * With interrupt-remapping, for now we will use virtual wire A mode,
2054 * as virtual wire B is little complex (need to configure both
2055 * IOAPIC RTE aswell as interrupt-remapping table entry).
2056 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002057 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002058 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002059 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002060
2061 memset(&entry, 0, sizeof(entry));
2062 entry.mask = 0; /* Enabled */
2063 entry.trigger = 0; /* Edge */
2064 entry.irr = 0;
2065 entry.polarity = 0; /* High */
2066 entry.delivery_status = 0;
2067 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002068 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002069 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002070 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002071
2072 /*
2073 * Add it to the IO-APIC irq-routing table:
2074 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002075 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002076 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002077
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002078 /*
2079 * Use virtual wire A mode when interrupt remapping is enabled.
2080 */
2081 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
Ingo Molnar54168ed2008-08-20 09:07:45 +02002084#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085/*
2086 * function to set the IO-APIC physical IDs based on the
2087 * values stored in the MPC table.
2088 *
2089 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2090 */
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092static void __init setup_ioapic_ids_from_mpc(void)
2093{
2094 union IO_APIC_reg_00 reg_00;
2095 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002096 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 int i;
2098 unsigned char old_id;
2099 unsigned long flags;
2100
Yinghai Lua4dbc342008-07-25 02:14:28 -07002101 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002102 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002105 * Don't check I/O APIC IDs for xAPIC systems. They have
2106 * no meaning without the serial APIC bus.
2107 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002108 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2109 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002110 return;
2111 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 * This is broken; anything with a real cpu count has to
2113 * circumvent this idiocy regardless.
2114 */
Ingo Molnard190cb82009-01-28 06:50:47 +01002115 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 /*
2118 * Set the IOAPIC ID to the value stored in the MPC table.
2119 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002120 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /* Read the register 0 value */
2123 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002124 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002126
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002127 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002129 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002131 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2133 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002134 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /*
2138 * Sanity check, is the ID really free? Every APIC in a
2139 * system must have a unique ID or we get lots of nice
2140 * 'stuck on smp_invalidate_needed IPI wait' messages.
2141 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01002142 if (apic->check_apicid_used(phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002143 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002145 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 for (i = 0; i < get_physical_broadcast(); i++)
2147 if (!physid_isset(i, phys_id_present_map))
2148 break;
2149 if (i >= get_physical_broadcast())
2150 panic("Max APIC ID exceeded!\n");
2151 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2152 i);
2153 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002154 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 } else {
2156 physid_mask_t tmp;
Ingo Molnar80587142009-01-28 06:50:47 +01002157 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 apic_printk(APIC_VERBOSE, "Setting %d in the "
2159 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002160 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2162 }
2163
2164
2165 /*
2166 * We need to adjust the IRQ routing table
2167 * if the ID changed.
2168 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002169 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302171 if (mp_irqs[i].dstapic == old_id)
2172 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002173 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 /*
2176 * Read the right value from the MPC table and
2177 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 apic_printk(APIC_VERBOSE, KERN_INFO
2180 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002181 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002183 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002185 io_apic_write(apic_id, 0, reg_00.raw);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002186 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 /*
2189 * Sanity check
2190 */
2191 spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002192 reg_00.raw = io_apic_read(apic_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002194 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 printk("could not set ID!\n");
2196 else
2197 apic_printk(APIC_VERBOSE, " ok.\n");
2198 }
2199}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002202int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002203
2204static int __init notimercheck(char *s)
2205{
2206 no_timer_check = 1;
2207 return 1;
2208}
2209__setup("no_timer_check", notimercheck);
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211/*
2212 * There is a nasty bug in some older SMP boards, their mptable lies
2213 * about the timer IRQ. We do the following to work around the situation:
2214 *
2215 * - timer IRQ defaults to IO-APIC IRQ
2216 * - if this function detects that timer IRQs are defunct, then we fall
2217 * back to ISA timer IRQs
2218 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002219static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002222 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Zachary Amsden8542b202006-12-07 02:14:09 +01002224 if (no_timer_check)
2225 return 1;
2226
Ingo Molnar4aae0702007-12-18 18:05:58 +01002227 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 local_irq_enable();
2229 /* Let ten ticks pass... */
2230 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002231 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 /*
2234 * Expect a few ticks at least, to be sure some possible
2235 * glue logic does not lock up after one or two first
2236 * ticks in a non-ExtINT mode. Also the local APIC
2237 * might have cached one ExtINT interrupt. Finally, at
2238 * least one tick may be lost due to delays.
2239 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002240
2241 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002242 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return 0;
2245}
2246
2247/*
2248 * In the SMP+IOAPIC case it might happen that there are an unspecified
2249 * number of pending IRQ events unhandled. These cases are very rare,
2250 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2251 * better to do it this way as thus we do not have to be aware of
2252 * 'pending' interrupts in the IRQ path, except at this point.
2253 */
2254/*
2255 * Edge triggered needs to resend any interrupt
2256 * that was delayed but this is now handled in the device
2257 * independent code.
2258 */
2259
2260/*
2261 * Starting up a edge-triggered IO-APIC interrupt is
2262 * nasty - we need to make sure that we get the edge.
2263 * If it is already asserted for some reason, we need
2264 * return 1 to indicate that is was pending.
2265 *
2266 * This is not complete - we should be able to fake
2267 * an edge even if it isn't on the 8259A...
2268 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002269
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002270static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 int was_pending = 0;
2273 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002274 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002277 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 disable_8259A_irq(irq);
2279 if (i8259A_irq_pending(irq))
2280 was_pending = 1;
2281 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002282 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002283 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 spin_unlock_irqrestore(&ioapic_lock, flags);
2285
2286 return was_pending;
2287}
2288
Ingo Molnar54168ed2008-08-20 09:07:45 +02002289#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002290static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002292
2293 struct irq_cfg *cfg = irq_cfg(irq);
2294 unsigned long flags;
2295
2296 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002297 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002298 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002299
2300 return 1;
2301}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002302#else
2303static int ioapic_retrigger_irq(unsigned int irq)
2304{
Ingo Molnardac5f412009-01-28 15:42:24 +01002305 apic->send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002306
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002307 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002308}
2309#endif
2310
2311/*
2312 * Level and edge triggered IO-APIC interrupts need different handling,
2313 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2314 * handled with the level-triggered descriptor, but that one has slightly
2315 * more overhead. Level-triggered interrupts cannot be handled with the
2316 * edge-triggered handler, without risking IRQ storms and other ugly
2317 * races.
2318 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002319
Yinghai Lu497c9a12008-08-19 20:50:28 -07002320#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002321
2322#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002323
2324/*
2325 * Migrate the IO-APIC irq in the presence of intr-remapping.
2326 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002327 * For both level and edge triggered, irq migration is a simple atomic
2328 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002329 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002330 * For level triggered, we eliminate the io-apic RTE modification (with the
2331 * updated vector information), by using a virtual vector (io-apic pin number).
2332 * Real vector that is used for interrupting cpu will be coming from
2333 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002334 */
Mike Travise7986732008-12-16 17:33:52 -08002335static void
2336migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002337{
2338 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002339 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002340 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002341 unsigned int irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002342
Mike Travis22f65d32008-12-16 17:33:56 -08002343 if (!cpumask_intersects(mask, cpu_online_mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002344 return;
2345
Yinghai Lu3145e942008-12-05 18:58:34 -08002346 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002347 if (get_irte(irq, &irte))
2348 return;
2349
Yinghai Lu3145e942008-12-05 18:58:34 -08002350 cfg = desc->chip_data;
2351 if (assign_irq_vector(irq, cfg, mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002352 return;
2353
Yinghai Lu3145e942008-12-05 18:58:34 -08002354 set_extra_move_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002355
Ingo Molnardebccb32009-01-28 15:20:18 +01002356 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002357
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358 irte.vector = cfg->vector;
2359 irte.dest_id = IRTE_DEST(dest);
2360
2361 /*
2362 * Modified the IRTE and flushes the Interrupt entry cache.
2363 */
2364 modify_irte(irq, &irte);
2365
Mike Travis22f65d32008-12-16 17:33:56 -08002366 if (cfg->move_in_progress)
2367 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002368
Mike Travis7f7ace02009-01-10 21:58:08 -08002369 cpumask_copy(desc->affinity, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002370}
2371
Ingo Molnar54168ed2008-08-20 09:07:45 +02002372/*
2373 * Migrates the IRQ destination in the process context.
2374 */
Rusty Russell968ea6d2008-12-13 21:55:51 +10302375static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2376 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002377{
Yinghai Lu3145e942008-12-05 18:58:34 -08002378 migrate_ioapic_irq_desc(desc, mask);
2379}
Rusty Russell0de26522008-12-13 21:20:26 +10302380static void set_ir_ioapic_affinity_irq(unsigned int irq,
2381 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002382{
2383 struct irq_desc *desc = irq_to_desc(irq);
2384
Yinghai Lu3145e942008-12-05 18:58:34 -08002385 set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002387#else
2388static inline void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2389 const struct cpumask *mask)
2390{
2391}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392#endif
2393
Yinghai Lu497c9a12008-08-19 20:50:28 -07002394asmlinkage void smp_irq_move_cleanup_interrupt(void)
2395{
2396 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002397
Yinghai Lu497c9a12008-08-19 20:50:28 -07002398 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002399 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002400 irq_enter();
2401
2402 me = smp_processor_id();
2403 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2404 unsigned int irq;
2405 struct irq_desc *desc;
2406 struct irq_cfg *cfg;
2407 irq = __get_cpu_var(vector_irq)[vector];
2408
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002409 if (irq == -1)
2410 continue;
2411
Yinghai Lu497c9a12008-08-19 20:50:28 -07002412 desc = irq_to_desc(irq);
2413 if (!desc)
2414 continue;
2415
2416 cfg = irq_cfg(irq);
2417 spin_lock(&desc->lock);
2418 if (!cfg->move_cleanup_count)
2419 goto unlock;
2420
Mike Travis22f65d32008-12-16 17:33:56 -08002421 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002422 goto unlock;
2423
2424 __get_cpu_var(vector_irq)[vector] = -1;
2425 cfg->move_cleanup_count--;
2426unlock:
2427 spin_unlock(&desc->lock);
2428 }
2429
2430 irq_exit();
2431}
2432
Yinghai Lu3145e942008-12-05 18:58:34 -08002433static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002434{
Yinghai Lu3145e942008-12-05 18:58:34 -08002435 struct irq_desc *desc = *descp;
2436 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002437 unsigned vector, me;
2438
Yinghai Lu48a1b102008-12-11 00:15:01 -08002439 if (likely(!cfg->move_in_progress)) {
2440#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2441 if (likely(!cfg->move_desc_pending))
2442 return;
2443
Yinghai Lub9098952008-12-19 13:48:34 -08002444 /* domain has not changed, but affinity did */
Yinghai Lu48a1b102008-12-11 00:15:01 -08002445 me = smp_processor_id();
Mike Travis7f7ace02009-01-10 21:58:08 -08002446 if (cpumask_test_cpu(me, desc->affinity)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002447 *descp = desc = move_irq_desc(desc, me);
2448 /* get the new one */
2449 cfg = desc->chip_data;
2450 cfg->move_desc_pending = 0;
2451 }
2452#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002453 return;
Yinghai Lu48a1b102008-12-11 00:15:01 -08002454 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002455
2456 vector = ~get_irq_regs()->orig_ax;
2457 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002458
2459 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) {
Yinghai Lu48a1b102008-12-11 00:15:01 -08002460#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2461 *descp = desc = move_irq_desc(desc, me);
2462 /* get the new one */
2463 cfg = desc->chip_data;
2464#endif
Mike Travis22f65d32008-12-16 17:33:56 -08002465 send_cleanup_vector(cfg);
Yinghai Lu10b888d2009-01-31 14:50:07 -08002466 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002467}
2468#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002469static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002470#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002471
Ingo Molnar54168ed2008-08-20 09:07:45 +02002472#ifdef CONFIG_INTR_REMAP
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002473static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2474{
2475 int apic, pin;
2476 struct irq_pin_list *entry;
2477
2478 entry = cfg->irq_2_pin;
2479 for (;;) {
2480
2481 if (!entry)
2482 break;
2483
2484 apic = entry->apic;
2485 pin = entry->pin;
2486 io_apic_eoi(apic, pin);
2487 entry = entry->next;
2488 }
2489}
2490
2491static void
2492eoi_ioapic_irq(struct irq_desc *desc)
2493{
2494 struct irq_cfg *cfg;
2495 unsigned long flags;
2496 unsigned int irq;
2497
2498 irq = desc->irq;
2499 cfg = desc->chip_data;
2500
2501 spin_lock_irqsave(&ioapic_lock, flags);
2502 __eoi_ioapic_irq(irq, cfg);
2503 spin_unlock_irqrestore(&ioapic_lock, flags);
2504}
2505
Ingo Molnar54168ed2008-08-20 09:07:45 +02002506static void ack_x2apic_level(unsigned int irq)
2507{
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002508 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002509 ack_x2APIC_irq();
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002510 eoi_ioapic_irq(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002511}
2512
2513static void ack_x2apic_edge(unsigned int irq)
2514{
2515 ack_x2APIC_irq();
2516}
Yinghai Lu3145e942008-12-05 18:58:34 -08002517
Ingo Molnar54168ed2008-08-20 09:07:45 +02002518#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002519
Yinghai Lu1d025192008-08-19 20:50:34 -07002520static void ack_apic_edge(unsigned int irq)
2521{
Yinghai Lu3145e942008-12-05 18:58:34 -08002522 struct irq_desc *desc = irq_to_desc(irq);
2523
2524 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002525 move_native_irq(irq);
2526 ack_APIC_irq();
2527}
2528
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002529atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002530
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002531static void ack_apic_level(unsigned int irq)
2532{
Yinghai Lu3145e942008-12-05 18:58:34 -08002533 struct irq_desc *desc = irq_to_desc(irq);
2534
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002535#ifdef CONFIG_X86_32
2536 unsigned long v;
2537 int i;
2538#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002539 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002540 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002541
Yinghai Lu3145e942008-12-05 18:58:34 -08002542 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002543#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002544 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002545 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002546 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002547 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002548 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002549#endif
2550
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002551#ifdef CONFIG_X86_32
2552 /*
2553 * It appears there is an erratum which affects at least version 0x11
2554 * of I/O APIC (that's the 82093AA and cores integrated into various
2555 * chipsets). Under certain conditions a level-triggered interrupt is
2556 * erroneously delivered as edge-triggered one but the respective IRR
2557 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2558 * message but it will never arrive and further interrupts are blocked
2559 * from the source. The exact reason is so far unknown, but the
2560 * phenomenon was observed when two consecutive interrupt requests
2561 * from a given source get delivered to the same CPU and the source is
2562 * temporarily disabled in between.
2563 *
2564 * A workaround is to simulate an EOI message manually. We achieve it
2565 * by setting the trigger mode to edge and then to level when the edge
2566 * trigger mode gets detected in the TMR of a local APIC for a
2567 * level-triggered interrupt. We mask the source for the time of the
2568 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2569 * The idea is from Manfred Spraul. --macro
2570 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002571 cfg = desc->chip_data;
2572 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002573
2574 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2575#endif
2576
Ingo Molnar54168ed2008-08-20 09:07:45 +02002577 /*
2578 * We must acknowledge the irq before we move it or the acknowledge will
2579 * not propagate properly.
2580 */
2581 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002582
Ingo Molnar54168ed2008-08-20 09:07:45 +02002583 /* Now we can move and renable the irq */
2584 if (unlikely(do_unmask_irq)) {
2585 /* Only migrate the irq if the ack has been received.
2586 *
2587 * On rare occasions the broadcast level triggered ack gets
2588 * delayed going to ioapics, and if we reprogram the
2589 * vector while Remote IRR is still set the irq will never
2590 * fire again.
2591 *
2592 * To prevent this scenario we read the Remote IRR bit
2593 * of the ioapic. This has two effects.
2594 * - On any sane system the read of the ioapic will
2595 * flush writes (and acks) going to the ioapic from
2596 * this cpu.
2597 * - We get to see if the ACK has actually been delivered.
2598 *
2599 * Based on failed experiments of reprogramming the
2600 * ioapic entry from outside of irq context starting
2601 * with masking the ioapic entry and then polling until
2602 * Remote IRR was clear before reprogramming the
2603 * ioapic I don't trust the Remote IRR bit to be
2604 * completey accurate.
2605 *
2606 * However there appears to be no other way to plug
2607 * this race, so if the Remote IRR bit is not
2608 * accurate and is causing problems then it is a hardware bug
2609 * and you can go talk to the chipset vendor about it.
2610 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002611 cfg = desc->chip_data;
2612 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002613 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002614 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002615 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002616
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002617#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002618 if (!(v & (1 << (i & 0x1f)))) {
2619 atomic_inc(&irq_mis_count);
2620 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002621 __mask_and_edge_IO_APIC_irq(cfg);
2622 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002623 spin_unlock(&ioapic_lock);
2624 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002625#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002626}
Yinghai Lu1d025192008-08-19 20:50:34 -07002627
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002628static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002629 .name = "IO-APIC",
2630 .startup = startup_ioapic_irq,
2631 .mask = mask_IO_APIC_irq,
2632 .unmask = unmask_IO_APIC_irq,
2633 .ack = ack_apic_edge,
2634 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002635#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002636 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002637#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002638 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639};
2640
Ingo Molnar54168ed2008-08-20 09:07:45 +02002641#ifdef CONFIG_INTR_REMAP
2642static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002643 .name = "IR-IO-APIC",
2644 .startup = startup_ioapic_irq,
2645 .mask = mask_IO_APIC_irq,
2646 .unmask = unmask_IO_APIC_irq,
2647 .ack = ack_x2apic_edge,
2648 .eoi = ack_x2apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002649#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002650 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002651#endif
2652 .retrigger = ioapic_retrigger_irq,
2653};
2654#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656static inline void init_IO_APIC_traps(void)
2657{
2658 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002659 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002660 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 /*
2663 * NOTE! The local APIC isn't very good at handling
2664 * multiple interrupts at the same interrupt level.
2665 * As the interrupt level is determined by taking the
2666 * vector number and shifting that right by 4, we
2667 * want to spread these out a bit so that they don't
2668 * all fall in the same interrupt level.
2669 *
2670 * Also, we've got to be careful not to trash gate
2671 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2672 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002673 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002674 cfg = desc->chip_data;
2675 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /*
2677 * Hmm.. We don't have an entry for this,
2678 * so default to an old-fashioned 8259
2679 * interrupt if we can..
2680 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002681 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002683 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002685 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
2687 }
2688}
2689
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002690/*
2691 * The local APIC irq-chip implementation:
2692 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002694static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 unsigned long v;
2697
2698 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002699 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002702static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002704 unsigned long v;
2705
2706 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002707 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
Yinghai Lu3145e942008-12-05 18:58:34 -08002710static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002711{
2712 ack_APIC_irq();
2713}
2714
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002715static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002716 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002717 .mask = mask_lapic_irq,
2718 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002719 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720};
2721
Yinghai Lu3145e942008-12-05 18:58:34 -08002722static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002723{
Yinghai Lu08678b02008-08-19 20:50:05 -07002724 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002725 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2726 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002727}
2728
Jan Beuliche9427102008-01-30 13:31:24 +01002729static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
2731 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002732 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 * We put the 8259A master into AEOI mode and
2734 * unmask on all local APICs LVT0 as NMI.
2735 *
2736 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2737 * is from Maciej W. Rozycki - so we do not have to EOI from
2738 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002739 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2741
Jan Beuliche9427102008-01-30 13:31:24 +01002742 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744 apic_printk(APIC_VERBOSE, " done.\n");
2745}
2746
2747/*
2748 * This looks a bit hackish but it's about the only one way of sending
2749 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2750 * not support the ExtINT mode, unfortunately. We need to send these
2751 * cycles as some i82489DX-based boards have glue logic that keeps the
2752 * 8259A interrupt line asserted until INTA. --macro
2753 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002754static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002756 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 struct IO_APIC_route_entry entry0, entry1;
2758 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002760 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002761 if (pin == -1) {
2762 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002764 }
2765 apic = find_isa_irq_apic(8, mp_INT);
2766 if (apic == -1) {
2767 WARN_ON_ONCE(1);
2768 return;
2769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
Andi Kleencf4c6a22006-09-26 10:52:30 +02002771 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002772 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 memset(&entry1, 0, sizeof(entry1));
2775
2776 entry1.dest_mode = 0; /* physical delivery */
2777 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002778 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 entry1.delivery_mode = dest_ExtINT;
2780 entry1.polarity = entry0.polarity;
2781 entry1.trigger = 0;
2782 entry1.vector = 0;
2783
Andi Kleencf4c6a22006-09-26 10:52:30 +02002784 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 save_control = CMOS_READ(RTC_CONTROL);
2787 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2788 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2789 RTC_FREQ_SELECT);
2790 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2791
2792 i = 100;
2793 while (i-- > 0) {
2794 mdelay(10);
2795 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2796 i -= 10;
2797 }
2798
2799 CMOS_WRITE(save_control, RTC_CONTROL);
2800 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002801 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Andi Kleencf4c6a22006-09-26 10:52:30 +02002803 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
Yinghai Luefa25592008-08-19 20:50:36 -07002806static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002807/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002808static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002809{
2810 disable_timer_pin_1 = 1;
2811 return 0;
2812}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002813early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002814
2815int timer_through_8259 __initdata;
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817/*
2818 * This code may look a bit paranoid, but it's supposed to cooperate with
2819 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2820 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2821 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002822 *
2823 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002825static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
Yinghai Lu3145e942008-12-05 18:58:34 -08002827 struct irq_desc *desc = irq_to_desc(0);
2828 struct irq_cfg *cfg = desc->chip_data;
2829 int cpu = boot_cpu_id;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002830 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002831 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002832 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002833
2834 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 /*
2837 * get/set the timer IRQ vector:
2838 */
2839 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002840 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002843 * As IRQ0 is to be enabled in the 8259A, the virtual
2844 * wire has to be disabled in the local APIC. Also
2845 * timer interrupts need to be acknowledged manually in
2846 * the 8259A for the i82489DX when using the NMI
2847 * watchdog as that APIC treats NMIs as level-triggered.
2848 * The AEOI mode will finish them in the 8259A
2849 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002851 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002853#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002854 {
2855 unsigned int ver;
2856
2857 ver = apic_read(APIC_LVR);
2858 ver = GET_APIC_VERSION(ver);
2859 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2860 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002861#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002863 pin1 = find_isa_irq_pin(0, mp_INT);
2864 apic1 = find_isa_irq_apic(0, mp_INT);
2865 pin2 = ioapic_i8259.pin;
2866 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002868 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2869 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002870 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002872 /*
2873 * Some BIOS writers are clueless and report the ExtINTA
2874 * I/O APIC input from the cascaded 8259A as the timer
2875 * interrupt input. So just in case, if only one pin
2876 * was found above, try it both directly and through the
2877 * 8259A.
2878 */
2879 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002880 if (intr_remapping_enabled)
2881 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002882 pin1 = pin2;
2883 apic1 = apic2;
2884 no_pin1 = 1;
2885 } else if (pin2 == -1) {
2886 pin2 = pin1;
2887 apic2 = apic1;
2888 }
2889
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 if (pin1 != -1) {
2891 /*
2892 * Ok, does IRQ0 through the IOAPIC work?
2893 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002894 if (no_pin1) {
Yinghai Lu3145e942008-12-05 18:58:34 -08002895 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002896 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002897 } else {
2898 /* for edge trigger, setup_IO_APIC_irq already
2899 * leave it unmasked.
2900 * so only need to unmask if it is level-trigger
2901 * do we really have level trigger timer?
2902 */
2903 int idx;
2904 idx = find_irq_entry(apic1, pin1, mp_INT);
2905 if (idx != -1 && irq_trigger(idx))
2906 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (timer_irq_works()) {
2909 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 setup_nmi();
2911 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002913 if (disable_timer_pin_1 > 0)
2914 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002915 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002917 if (intr_remapping_enabled)
2918 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002919 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002920 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002921 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002922 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2923 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002925 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2926 "(IRQ0) through the 8259A ...\n");
2927 apic_printk(APIC_QUIET, KERN_INFO
2928 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 /*
2930 * legacy devices should be connected to IO APIC #0
2931 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002932 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002933 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002934 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002936 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002937 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002939 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002941 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002943 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 }
2945 /*
2946 * Cleanup, just in case ...
2947 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002948 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002949 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002950 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002951 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002955 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2956 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002957 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002959#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002960 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002961#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002963 apic_printk(APIC_QUIET, KERN_INFO
2964 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Yinghai Lu3145e942008-12-05 18:58:34 -08002966 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002967 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 enable_8259A_irq(0);
2969
2970 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002971 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002972 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002974 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002975 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002976 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002977 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002979 apic_printk(APIC_QUIET, KERN_INFO
2980 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 init_8259A(0);
2983 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002984 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 unlock_ExtINT_logic();
2987
2988 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002989 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002990 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002992 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002993 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002995 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002996out:
2997 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
3000/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003001 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3002 * to devices. However there may be an I/O APIC pin available for
3003 * this interrupt regardless. The pin may be left unconnected, but
3004 * typically it will be reused as an ExtINT cascade interrupt for
3005 * the master 8259A. In the MPS case such a pin will normally be
3006 * reported as an ExtINT interrupt in the MP table. With ACPI
3007 * there is no provision for ExtINT interrupts, and in the absence
3008 * of an override it would be treated as an ordinary ISA I/O APIC
3009 * interrupt, that is edge-triggered and unmasked by default. We
3010 * used to do this, but it caused problems on some systems because
3011 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3012 * the same ExtINT cascade interrupt to drive the local APIC of the
3013 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3014 * the I/O APIC in all cases now. No actual device should request
3015 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 */
3017#define PIC_IRQS (1 << PIC_CASCADE_IR)
3018
3019void __init setup_IO_APIC(void)
3020{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003021
Ingo Molnar54168ed2008-08-20 09:07:45 +02003022 /*
3023 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003026 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Ingo Molnar54168ed2008-08-20 09:07:45 +02003028 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003029 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003030 * Set up IO-APIC IRQ routing.
3031 */
3032#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003033 if (!acpi_ioapic)
3034 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003035#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 sync_Arb_IDs();
3037 setup_IO_APIC_irqs();
3038 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003039 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040}
3041
3042/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003043 * Called after all the initialization is done. If we didnt find any
3044 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047static int __init io_apic_bug_finalize(void)
3048{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003049 if (sis_apic_bug == -1)
3050 sis_apic_bug = 0;
3051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052}
3053
3054late_initcall(io_apic_bug_finalize);
3055
3056struct sysfs_ioapic_data {
3057 struct sys_device dev;
3058 struct IO_APIC_route_entry entry[0];
3059};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003060static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Pavel Machek438510f2005-04-16 15:25:24 -07003062static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064 struct IO_APIC_route_entry *entry;
3065 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003067
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 data = container_of(dev, struct sysfs_ioapic_data, dev);
3069 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003070 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3071 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
3073 return 0;
3074}
3075
3076static int ioapic_resume(struct sys_device *dev)
3077{
3078 struct IO_APIC_route_entry *entry;
3079 struct sysfs_ioapic_data *data;
3080 unsigned long flags;
3081 union IO_APIC_reg_00 reg_00;
3082 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 data = container_of(dev, struct sysfs_ioapic_data, dev);
3085 entry = data->entry;
3086
3087 spin_lock_irqsave(&ioapic_lock, flags);
3088 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303089 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3090 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 io_apic_write(dev->id, 0, reg_00.raw);
3092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003094 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003095 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 return 0;
3098}
3099
3100static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003101 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 .suspend = ioapic_suspend,
3103 .resume = ioapic_resume,
3104};
3105
3106static int __init ioapic_init_sysfs(void)
3107{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003108 struct sys_device * dev;
3109 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 error = sysdev_class_register(&ioapic_sysdev_class);
3112 if (error)
3113 return error;
3114
Ingo Molnar54168ed2008-08-20 09:07:45 +02003115 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003116 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003118 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (!mp_ioapic_data[i]) {
3120 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3121 continue;
3122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003124 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 dev->cls = &ioapic_sysdev_class;
3126 error = sysdev_register(dev);
3127 if (error) {
3128 kfree(mp_ioapic_data[i]);
3129 mp_ioapic_data[i] = NULL;
3130 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3131 continue;
3132 }
3133 }
3134
3135 return 0;
3136}
3137
3138device_initcall(ioapic_init_sysfs);
3139
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003140static int nr_irqs_gsi = NR_IRQS_LEGACY;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003141/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003142 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003143 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003144unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003145{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003146 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003147 unsigned int irq;
3148 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003149 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003150 struct irq_cfg *cfg_new = NULL;
3151 int cpu = boot_cpu_id;
3152 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003153
3154 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003155 if (irq_want < nr_irqs_gsi)
3156 irq_want = nr_irqs_gsi;
3157
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003158 spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003159 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003160 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3161 if (!desc_new) {
3162 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003163 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003164 }
3165 cfg_new = desc_new->chip_data;
3166
3167 if (cfg_new->vector != 0)
3168 continue;
Ingo Molnarfe402e12009-01-28 04:32:51 +01003169 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003170 irq = new;
3171 break;
3172 }
3173 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003174
Yinghai Lu199751d2008-08-19 20:50:27 -07003175 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003176 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003177 /* restore it, in case dynamic_irq_init clear it */
3178 if (desc_new)
3179 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003180 }
3181 return irq;
3182}
3183
Yinghai Lu199751d2008-08-19 20:50:27 -07003184int create_irq(void)
3185{
Yinghai Lube5d5352008-12-05 18:58:33 -08003186 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003187 int irq;
3188
Yinghai Lube5d5352008-12-05 18:58:33 -08003189 irq_want = nr_irqs_gsi;
3190 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003191
3192 if (irq == 0)
3193 irq = -1;
3194
3195 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003196}
3197
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003198void destroy_irq(unsigned int irq)
3199{
3200 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003201 struct irq_cfg *cfg;
3202 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003203
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003204 /* store it, in case dynamic_irq_cleanup clear it */
3205 desc = irq_to_desc(irq);
3206 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003207 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003208 /* connect back irq_cfg */
3209 if (desc)
3210 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003211
Ingo Molnar54168ed2008-08-20 09:07:45 +02003212 free_irte(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003213 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003214 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003215 spin_unlock_irqrestore(&vector_lock, flags);
3216}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003217
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003218/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003219 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003220 */
3221#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003222static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003223{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003224 struct irq_cfg *cfg;
3225 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003226 unsigned dest;
3227
Jan Beulichf1182632009-01-14 12:27:35 +00003228 if (disable_apic)
3229 return -ENXIO;
3230
Yinghai Lu3145e942008-12-05 18:58:34 -08003231 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003232 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003233 if (err)
3234 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003235
Ingo Molnardebccb32009-01-28 15:20:18 +01003236 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003237
Ingo Molnar54168ed2008-08-20 09:07:45 +02003238 if (irq_remapped(irq)) {
3239 struct irte irte;
3240 int ir_index;
3241 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003242
Ingo Molnar54168ed2008-08-20 09:07:45 +02003243 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3244 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003245
Ingo Molnar54168ed2008-08-20 09:07:45 +02003246 memset (&irte, 0, sizeof(irte));
3247
3248 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003249 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003250 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003251 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003252 irte.vector = cfg->vector;
3253 irte.dest_id = IRTE_DEST(dest);
3254
3255 modify_irte(irq, &irte);
3256
3257 msg->address_hi = MSI_ADDR_BASE_HI;
3258 msg->data = sub_handle;
3259 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3260 MSI_ADDR_IR_SHV |
3261 MSI_ADDR_IR_INDEX1(ir_index) |
3262 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003263 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003264 if (x2apic_enabled())
3265 msg->address_hi = MSI_ADDR_BASE_HI |
3266 MSI_ADDR_EXT_DEST_ID(dest);
3267 else
3268 msg->address_hi = MSI_ADDR_BASE_HI;
3269
Ingo Molnar54168ed2008-08-20 09:07:45 +02003270 msg->address_lo =
3271 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003272 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003273 MSI_ADDR_DEST_MODE_PHYSICAL:
3274 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003275 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003276 MSI_ADDR_REDIRECTION_CPU:
3277 MSI_ADDR_REDIRECTION_LOWPRI) |
3278 MSI_ADDR_DEST_ID(dest);
3279
3280 msg->data =
3281 MSI_DATA_TRIGGER_EDGE |
3282 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003283 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003284 MSI_DATA_DELIVERY_FIXED:
3285 MSI_DATA_DELIVERY_LOWPRI) |
3286 MSI_DATA_VECTOR(cfg->vector);
3287 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003288 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003289}
3290
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003291#ifdef CONFIG_SMP
Rusty Russell0de26522008-12-13 21:20:26 +10303292static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003293{
Yinghai Lu3145e942008-12-05 18:58:34 -08003294 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003295 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003296 struct msi_msg msg;
3297 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003298
Mike Travis22f65d32008-12-16 17:33:56 -08003299 dest = set_desc_affinity(desc, mask);
3300 if (dest == BAD_APICID)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003301 return;
3302
Yinghai Lu3145e942008-12-05 18:58:34 -08003303 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003304
Yinghai Lu3145e942008-12-05 18:58:34 -08003305 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003306
3307 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003308 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003309 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3310 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3311
Yinghai Lu3145e942008-12-05 18:58:34 -08003312 write_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003313}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003314#ifdef CONFIG_INTR_REMAP
3315/*
3316 * Migrate the MSI irq to another cpumask. This migration is
3317 * done in the process context using interrupt-remapping hardware.
3318 */
Mike Travise7986732008-12-16 17:33:52 -08003319static void
3320ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003321{
Yinghai Lu3145e942008-12-05 18:58:34 -08003322 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003323 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003324 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003325 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003326
3327 if (get_irte(irq, &irte))
3328 return;
3329
Mike Travis22f65d32008-12-16 17:33:56 -08003330 dest = set_desc_affinity(desc, mask);
3331 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003332 return;
3333
Ingo Molnar54168ed2008-08-20 09:07:45 +02003334 irte.vector = cfg->vector;
3335 irte.dest_id = IRTE_DEST(dest);
3336
3337 /*
3338 * atomically update the IRTE with the new destination and vector.
3339 */
3340 modify_irte(irq, &irte);
3341
3342 /*
3343 * After this point, all the interrupts will start arriving
3344 * at the new destination. So, time to cleanup the previous
3345 * vector allocation.
3346 */
Mike Travis22f65d32008-12-16 17:33:56 -08003347 if (cfg->move_in_progress)
3348 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003349}
Yinghai Lu3145e942008-12-05 18:58:34 -08003350
Ingo Molnar54168ed2008-08-20 09:07:45 +02003351#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003352#endif /* CONFIG_SMP */
3353
3354/*
3355 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3356 * which implement the MSI or MSI-X Capability Structure.
3357 */
3358static struct irq_chip msi_chip = {
3359 .name = "PCI-MSI",
3360 .unmask = unmask_msi_irq,
3361 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003362 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003363#ifdef CONFIG_SMP
3364 .set_affinity = set_msi_irq_affinity,
3365#endif
3366 .retrigger = ioapic_retrigger_irq,
3367};
3368
Ingo Molnar54168ed2008-08-20 09:07:45 +02003369#ifdef CONFIG_INTR_REMAP
3370static struct irq_chip msi_ir_chip = {
3371 .name = "IR-PCI-MSI",
3372 .unmask = unmask_msi_irq,
3373 .mask = mask_msi_irq,
3374 .ack = ack_x2apic_edge,
3375#ifdef CONFIG_SMP
3376 .set_affinity = ir_set_msi_irq_affinity,
3377#endif
3378 .retrigger = ioapic_retrigger_irq,
3379};
Suresh Siddha29b61be2009-03-16 17:05:02 -07003380#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003381
3382/*
3383 * Map the PCI dev to the corresponding remapping hardware unit
3384 * and allocate 'nvec' consecutive interrupt-remapping table entries
3385 * in it.
3386 */
3387static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3388{
3389 struct intel_iommu *iommu;
3390 int index;
3391
3392 iommu = map_dev_to_ir(dev);
3393 if (!iommu) {
3394 printk(KERN_ERR
3395 "Unable to map PCI %s to iommu\n", pci_name(dev));
3396 return -ENOENT;
3397 }
3398
3399 index = alloc_irte(iommu, irq, nvec);
3400 if (index < 0) {
3401 printk(KERN_ERR
3402 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003403 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003404 return -ENOSPC;
3405 }
3406 return index;
3407}
Yinghai Lu1d025192008-08-19 20:50:34 -07003408
Yinghai Lu3145e942008-12-05 18:58:34 -08003409static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003410{
3411 int ret;
3412 struct msi_msg msg;
3413
3414 ret = msi_compose_msg(dev, irq, &msg);
3415 if (ret < 0)
3416 return ret;
3417
Yinghai Lu3145e942008-12-05 18:58:34 -08003418 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003419 write_msi_msg(irq, &msg);
3420
Ingo Molnar54168ed2008-08-20 09:07:45 +02003421 if (irq_remapped(irq)) {
3422 struct irq_desc *desc = irq_to_desc(irq);
3423 /*
3424 * irq migration in process context
3425 */
3426 desc->status |= IRQ_MOVE_PCNTXT;
3427 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3428 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003429 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003430
Yinghai Luc81bba42008-09-25 11:53:11 -07003431 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3432
Yinghai Lu1d025192008-08-19 20:50:34 -07003433 return 0;
3434}
3435
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003436int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3437{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003438 unsigned int irq;
3439 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003440 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003441 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003442 struct intel_iommu *iommu = 0;
3443 int index = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003444
Yinghai Lube5d5352008-12-05 18:58:33 -08003445 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003446 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003447 list_for_each_entry(msidesc, &dev->msi_list, list) {
3448 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003449 if (irq == 0)
3450 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003451 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003452 if (!intr_remapping_enabled)
3453 goto no_ir;
3454
3455 if (!sub_handle) {
3456 /*
3457 * allocate the consecutive block of IRTE's
3458 * for 'nvec'
3459 */
3460 index = msi_alloc_irte(dev, irq, nvec);
3461 if (index < 0) {
3462 ret = index;
3463 goto error;
3464 }
3465 } else {
3466 iommu = map_dev_to_ir(dev);
3467 if (!iommu) {
3468 ret = -ENOENT;
3469 goto error;
3470 }
3471 /*
3472 * setup the mapping between the irq and the IRTE
3473 * base index, the sub_handle pointing to the
3474 * appropriate interrupt remap table entry.
3475 */
3476 set_irte_irq(irq, iommu, index, sub_handle);
3477 }
3478no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003479 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003480 if (ret < 0)
3481 goto error;
3482 sub_handle++;
3483 }
3484 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003485
3486error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003487 destroy_irq(irq);
3488 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003489}
3490
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003491void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003492{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003493 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003494}
3495
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003496#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003497#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003498static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003499{
Yinghai Lu3145e942008-12-05 18:58:34 -08003500 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003501 struct irq_cfg *cfg;
3502 struct msi_msg msg;
3503 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003504
Mike Travis22f65d32008-12-16 17:33:56 -08003505 dest = set_desc_affinity(desc, mask);
3506 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003507 return;
3508
Yinghai Lu3145e942008-12-05 18:58:34 -08003509 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003510
3511 dmar_msi_read(irq, &msg);
3512
3513 msg.data &= ~MSI_DATA_VECTOR_MASK;
3514 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3515 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3516 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3517
3518 dmar_msi_write(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003519}
Yinghai Lu3145e942008-12-05 18:58:34 -08003520
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521#endif /* CONFIG_SMP */
3522
3523struct irq_chip dmar_msi_type = {
3524 .name = "DMAR_MSI",
3525 .unmask = dmar_msi_unmask,
3526 .mask = dmar_msi_mask,
3527 .ack = ack_apic_edge,
3528#ifdef CONFIG_SMP
3529 .set_affinity = dmar_msi_set_affinity,
3530#endif
3531 .retrigger = ioapic_retrigger_irq,
3532};
3533
3534int arch_setup_dmar_msi(unsigned int irq)
3535{
3536 int ret;
3537 struct msi_msg msg;
3538
3539 ret = msi_compose_msg(NULL, irq, &msg);
3540 if (ret < 0)
3541 return ret;
3542 dmar_msi_write(irq, &msg);
3543 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3544 "edge");
3545 return 0;
3546}
3547#endif
3548
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003549#ifdef CONFIG_HPET_TIMER
3550
3551#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003552static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003553{
Yinghai Lu3145e942008-12-05 18:58:34 -08003554 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003555 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003556 struct msi_msg msg;
3557 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003558
Mike Travis22f65d32008-12-16 17:33:56 -08003559 dest = set_desc_affinity(desc, mask);
3560 if (dest == BAD_APICID)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003561 return;
3562
Yinghai Lu3145e942008-12-05 18:58:34 -08003563 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003564
3565 hpet_msi_read(irq, &msg);
3566
3567 msg.data &= ~MSI_DATA_VECTOR_MASK;
3568 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3569 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3570 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3571
3572 hpet_msi_write(irq, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003573}
Yinghai Lu3145e942008-12-05 18:58:34 -08003574
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003575#endif /* CONFIG_SMP */
3576
3577struct irq_chip hpet_msi_type = {
3578 .name = "HPET_MSI",
3579 .unmask = hpet_msi_unmask,
3580 .mask = hpet_msi_mask,
3581 .ack = ack_apic_edge,
3582#ifdef CONFIG_SMP
3583 .set_affinity = hpet_msi_set_affinity,
3584#endif
3585 .retrigger = ioapic_retrigger_irq,
3586};
3587
3588int arch_setup_hpet_msi(unsigned int irq)
3589{
3590 int ret;
3591 struct msi_msg msg;
3592
3593 ret = msi_compose_msg(NULL, irq, &msg);
3594 if (ret < 0)
3595 return ret;
3596
3597 hpet_msi_write(irq, &msg);
3598 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3599 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003600
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003601 return 0;
3602}
3603#endif
3604
Ingo Molnar54168ed2008-08-20 09:07:45 +02003605#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003606/*
3607 * Hypertransport interrupt support
3608 */
3609#ifdef CONFIG_HT_IRQ
3610
3611#ifdef CONFIG_SMP
3612
Yinghai Lu497c9a12008-08-19 20:50:28 -07003613static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003614{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003615 struct ht_irq_msg msg;
3616 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003617
Yinghai Lu497c9a12008-08-19 20:50:28 -07003618 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003619 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003620
Yinghai Lu497c9a12008-08-19 20:50:28 -07003621 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003622 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003623
Eric W. Biedermanec683072006-11-08 17:44:57 -08003624 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003625}
3626
Mike Travis22f65d32008-12-16 17:33:56 -08003627static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003628{
Yinghai Lu3145e942008-12-05 18:58:34 -08003629 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003630 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003631 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003632
Mike Travis22f65d32008-12-16 17:33:56 -08003633 dest = set_desc_affinity(desc, mask);
3634 if (dest == BAD_APICID)
Yinghai Lu497c9a12008-08-19 20:50:28 -07003635 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003636
Yinghai Lu3145e942008-12-05 18:58:34 -08003637 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003638
Yinghai Lu497c9a12008-08-19 20:50:28 -07003639 target_ht_irq(irq, dest, cfg->vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003640}
Yinghai Lu3145e942008-12-05 18:58:34 -08003641
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003642#endif
3643
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003644static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003645 .name = "PCI-HT",
3646 .mask = mask_ht_irq,
3647 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003648 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003649#ifdef CONFIG_SMP
3650 .set_affinity = set_ht_irq_affinity,
3651#endif
3652 .retrigger = ioapic_retrigger_irq,
3653};
3654
3655int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3656{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003657 struct irq_cfg *cfg;
3658 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003659
Jan Beulichf1182632009-01-14 12:27:35 +00003660 if (disable_apic)
3661 return -ENXIO;
3662
Yinghai Lu3145e942008-12-05 18:58:34 -08003663 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003664 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003665 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003666 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003667 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668
Ingo Molnardebccb32009-01-28 15:20:18 +01003669 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3670 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671
Eric W. Biedermanec683072006-11-08 17:44:57 -08003672 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003673
Eric W. Biedermanec683072006-11-08 17:44:57 -08003674 msg.address_lo =
3675 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003676 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003677 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003678 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003679 HT_IRQ_LOW_DM_PHYSICAL :
3680 HT_IRQ_LOW_DM_LOGICAL) |
3681 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003682 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003683 HT_IRQ_LOW_MT_FIXED :
3684 HT_IRQ_LOW_MT_ARBITRATED) |
3685 HT_IRQ_LOW_IRQ_MASKED;
3686
Eric W. Biedermanec683072006-11-08 17:44:57 -08003687 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003688
Ingo Molnara460e742006-10-17 00:10:03 -07003689 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3690 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003691
3692 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003693 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003694 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003695}
3696#endif /* CONFIG_HT_IRQ */
3697
Nick Piggin03b48632009-01-20 04:36:04 +01003698#ifdef CONFIG_X86_UV
Dean Nelson4173a0e2008-10-02 12:18:21 -05003699/*
3700 * Re-target the irq to the specified CPU and enable the specified MMR located
3701 * on the specified blade to allow the sending of MSIs to the specified CPU.
3702 */
3703int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3704 unsigned long mmr_offset)
3705{
Mike Travis22f65d32008-12-16 17:33:56 -08003706 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003707 struct irq_cfg *cfg;
3708 int mmr_pnode;
3709 unsigned long mmr_value;
3710 struct uv_IO_APIC_route_entry *entry;
3711 unsigned long flags;
3712 int err;
3713
Yinghai Lu3145e942008-12-05 18:58:34 -08003714 cfg = irq_cfg(irq);
3715
Mike Travise7986732008-12-16 17:33:52 -08003716 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003717 if (err != 0)
3718 return err;
3719
3720 spin_lock_irqsave(&vector_lock, flags);
3721 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3722 irq_name);
3723 spin_unlock_irqrestore(&vector_lock, flags);
3724
Dean Nelson4173a0e2008-10-02 12:18:21 -05003725 mmr_value = 0;
3726 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3727 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3728
3729 entry->vector = cfg->vector;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003730 entry->delivery_mode = apic->irq_delivery_mode;
3731 entry->dest_mode = apic->irq_dest_mode;
Dean Nelson4173a0e2008-10-02 12:18:21 -05003732 entry->polarity = 0;
3733 entry->trigger = 0;
3734 entry->mask = 0;
Ingo Molnardebccb32009-01-28 15:20:18 +01003735 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003736
3737 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3738 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3739
3740 return irq;
3741}
3742
3743/*
3744 * Disable the specified MMR located on the specified blade so that MSIs are
3745 * longer allowed to be sent.
3746 */
3747void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3748{
3749 unsigned long mmr_value;
3750 struct uv_IO_APIC_route_entry *entry;
3751 int mmr_pnode;
3752
3753 mmr_value = 0;
3754 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3755 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3756
3757 entry->mask = 1;
3758
3759 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3760 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3761}
3762#endif /* CONFIG_X86_64 */
3763
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003764int __init io_apic_get_redir_entries (int ioapic)
3765{
3766 union IO_APIC_reg_01 reg_01;
3767 unsigned long flags;
3768
3769 spin_lock_irqsave(&ioapic_lock, flags);
3770 reg_01.raw = io_apic_read(ioapic, 1);
3771 spin_unlock_irqrestore(&ioapic_lock, flags);
3772
3773 return reg_01.bits.entries;
3774}
3775
Yinghai Lube5d5352008-12-05 18:58:33 -08003776void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003777{
Yinghai Lube5d5352008-12-05 18:58:33 -08003778 int nr = 0;
3779
Yinghai Lucc6c5002009-02-08 16:18:03 -08003780 nr = acpi_probe_gsi();
3781 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003782 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003783 } else {
3784 /* for acpi=off or acpi is not compiled in */
3785 int idx;
3786
3787 nr = 0;
3788 for (idx = 0; idx < nr_ioapics; idx++)
3789 nr += io_apic_get_redir_entries(idx) + 1;
3790
3791 if (nr > nr_irqs_gsi)
3792 nr_irqs_gsi = nr;
3793 }
3794
3795 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003796}
3797
Yinghai Lu4a046d12009-01-12 17:39:24 -08003798#ifdef CONFIG_SPARSE_IRQ
3799int __init arch_probe_nr_irqs(void)
3800{
3801 int nr;
3802
Yinghai Luf1ee5542009-02-08 16:18:03 -08003803 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3804 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003805
Yinghai Luf1ee5542009-02-08 16:18:03 -08003806 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3807#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3808 /*
3809 * for MSI and HT dyn irq
3810 */
3811 nr += nr_irqs_gsi * 16;
3812#endif
3813 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003814 nr_irqs = nr;
3815
3816 return 0;
3817}
3818#endif
3819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003821 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 -------------------------------------------------------------------------- */
3823
Len Brown888ba6c2005-08-24 12:07:20 -04003824#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Ingo Molnar54168ed2008-08-20 09:07:45 +02003826#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003827int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
3829 union IO_APIC_reg_00 reg_00;
3830 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3831 physid_mask_t tmp;
3832 unsigned long flags;
3833 int i = 0;
3834
3835 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003836 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3837 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003839 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3841 * advantage of new APIC bus architecture.
3842 */
3843
3844 if (physids_empty(apic_id_map))
Ingo Molnard190cb82009-01-28 06:50:47 +01003845 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
3847 spin_lock_irqsave(&ioapic_lock, flags);
3848 reg_00.raw = io_apic_read(ioapic, 0);
3849 spin_unlock_irqrestore(&ioapic_lock, flags);
3850
3851 if (apic_id >= get_physical_broadcast()) {
3852 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3853 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3854 apic_id = reg_00.bits.ID;
3855 }
3856
3857 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003858 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 * 'stuck on smp_invalidate_needed IPI wait' messages.
3860 */
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003861 if (apic->check_apicid_used(apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
3863 for (i = 0; i < get_physical_broadcast(); i++) {
Ingo Molnard1d7cae2009-01-28 05:41:42 +01003864 if (!apic->check_apicid_used(apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 break;
3866 }
3867
3868 if (i == get_physical_broadcast())
3869 panic("Max apic_id exceeded!\n");
3870
3871 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3872 "trying %d\n", ioapic, apic_id, i);
3873
3874 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Ingo Molnar80587142009-01-28 06:50:47 +01003877 tmp = apic->apicid_to_cpu_present(apic_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 physids_or(apic_id_map, apic_id_map, tmp);
3879
3880 if (reg_00.bits.ID != apic_id) {
3881 reg_00.bits.ID = apic_id;
3882
3883 spin_lock_irqsave(&ioapic_lock, flags);
3884 io_apic_write(ioapic, 0, reg_00.raw);
3885 reg_00.raw = io_apic_read(ioapic, 0);
3886 spin_unlock_irqrestore(&ioapic_lock, flags);
3887
3888 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003889 if (reg_00.bits.ID != apic_id) {
3890 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3891 return -1;
3892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 }
3894
3895 apic_printk(APIC_VERBOSE, KERN_INFO
3896 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3897
3898 return apic_id;
3899}
3900
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003901int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{
3903 union IO_APIC_reg_01 reg_01;
3904 unsigned long flags;
3905
3906 spin_lock_irqsave(&ioapic_lock, flags);
3907 reg_01.raw = io_apic_read(ioapic, 1);
3908 spin_unlock_irqrestore(&ioapic_lock, flags);
3909
3910 return reg_01.bits.version;
3911}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003912#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Ingo Molnar54168ed2008-08-20 09:07:45 +02003914int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003916 struct irq_desc *desc;
3917 struct irq_cfg *cfg;
3918 int cpu = boot_cpu_id;
3919
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003921 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 ioapic);
3923 return -EINVAL;
3924 }
3925
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003926 desc = irq_to_desc_alloc_cpu(irq, cpu);
3927 if (!desc) {
3928 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3929 return 0;
3930 }
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 * IRQs < 16 are already in the irq_2_pin[] map
3934 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003935 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003936 cfg = desc->chip_data;
Yinghai Lu3145e942008-12-05 18:58:34 -08003937 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Yinghai Lu3145e942008-12-05 18:58:34 -08003940 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
3942 return 0;
3943}
3944
Ingo Molnar54168ed2008-08-20 09:07:45 +02003945
Shaohua Li61fd47e2007-11-17 01:05:28 -05003946int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3947{
3948 int i;
3949
3950 if (skip_ioapic_setup)
3951 return -1;
3952
3953 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05303954 if (mp_irqs[i].irqtype == mp_INT &&
3955 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003956 break;
3957 if (i >= mp_irq_entries)
3958 return -1;
3959
3960 *trigger = irq_trigger(i);
3961 *polarity = irq_polarity(i);
3962 return 0;
3963}
3964
Len Brown888ba6c2005-08-24 12:07:20 -04003965#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02003966
Yinghai Lu497c9a12008-08-19 20:50:28 -07003967/*
3968 * This function currently is only a helper for the i386 smp boot process where
3969 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01003970 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07003971 */
3972#ifdef CONFIG_SMP
3973void __init setup_ioapic_dest(void)
3974{
3975 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01003976 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003977 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08003978 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003979
3980 if (skip_ioapic_setup == 1)
3981 return;
3982
3983 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
3984 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
3985 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3986 if (irq_entry == -1)
3987 continue;
3988 irq = pin_2_irq(irq_entry, ioapic, pin);
3989
3990 /* setup_IO_APIC_irqs could fail to get vector for some device
3991 * when you have too many devices, because at that time only boot
3992 * cpu is online.
3993 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003994 desc = irq_to_desc(irq);
3995 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01003996 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08003997 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07003998 irq_trigger(irq_entry),
3999 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004000 continue;
4001
4002 }
4003
4004 /*
4005 * Honour affinities which have been set in early boot
4006 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004007 if (desc->status &
4008 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travis7f7ace02009-01-10 21:58:08 -08004009 mask = desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004010 else
Ingo Molnarfe402e12009-01-28 04:32:51 +01004011 mask = apic->target_cpus();
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004012
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004013 if (intr_remapping_enabled)
Yinghai Lu3145e942008-12-05 18:58:34 -08004014 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004015 else
Yinghai Lu3145e942008-12-05 18:58:34 -08004016 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004017 }
4018
4019 }
4020}
4021#endif
4022
Ingo Molnar54168ed2008-08-20 09:07:45 +02004023#define IOAPIC_RESOURCE_NAME_SIZE 11
4024
4025static struct resource *ioapic_resources;
4026
4027static struct resource * __init ioapic_setup_resources(void)
4028{
4029 unsigned long n;
4030 struct resource *res;
4031 char *mem;
4032 int i;
4033
4034 if (nr_ioapics <= 0)
4035 return NULL;
4036
4037 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4038 n *= nr_ioapics;
4039
4040 mem = alloc_bootmem(n);
4041 res = (void *)mem;
4042
4043 if (mem != NULL) {
4044 mem += sizeof(struct resource) * nr_ioapics;
4045
4046 for (i = 0; i < nr_ioapics; i++) {
4047 res[i].name = mem;
4048 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4049 sprintf(mem, "IOAPIC %u", i);
4050 mem += IOAPIC_RESOURCE_NAME_SIZE;
4051 }
4052 }
4053
4054 ioapic_resources = res;
4055
4056 return res;
4057}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004058
Yinghai Luf3294a32008-06-27 01:41:56 -07004059void __init ioapic_init_mappings(void)
4060{
4061 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004062 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004063 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004064
Ingo Molnar54168ed2008-08-20 09:07:45 +02004065 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004066 for (i = 0; i < nr_ioapics; i++) {
4067 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304068 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004069#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004070 if (!ioapic_phys) {
4071 printk(KERN_ERR
4072 "WARNING: bogus zero IO-APIC "
4073 "address found in MPTABLE, "
4074 "disabling IO/APIC support!\n");
4075 smp_found_config = 0;
4076 skip_ioapic_setup = 1;
4077 goto fake_ioapic_page;
4078 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004079#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004080 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004081#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004082fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004083#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004084 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004085 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004086 ioapic_phys = __pa(ioapic_phys);
4087 }
4088 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004089 apic_printk(APIC_VERBOSE,
4090 "mapped IOAPIC to %08lx (%08lx)\n",
4091 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004092 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004093
Ingo Molnar54168ed2008-08-20 09:07:45 +02004094 if (ioapic_res != NULL) {
4095 ioapic_res->start = ioapic_phys;
4096 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4097 ioapic_res++;
4098 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004099 }
4100}
4101
Ingo Molnar54168ed2008-08-20 09:07:45 +02004102static int __init ioapic_insert_resources(void)
4103{
4104 int i;
4105 struct resource *r = ioapic_resources;
4106
4107 if (!r) {
4108 printk(KERN_ERR
4109 "IO APIC resources could be not be allocated.\n");
4110 return -1;
4111 }
4112
4113 for (i = 0; i < nr_ioapics; i++) {
4114 insert_resource(&iomem_resource, r);
4115 r++;
4116 }
4117
4118 return 0;
4119}
4120
4121/* Insert the IO APIC resources after PCI initialization has occured to handle
4122 * IO APICS that are mapped in on a BAR in PCI space. */
4123late_initcall(ioapic_insert_resources);