blob: a25c3f76b8ac20604795235f28cdc6d49ad0dec3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
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>
49#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070050#include <asm/proto.h>
51#include <asm/acpi.h>
52#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070054#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020055#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070056#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070057#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070058#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070059#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070060#include <asm/hpet.h>
Dean Nelson4173a0e2008-10-02 12:18:21 -050061#include <asm/uv/uv_hub.h>
62#include <asm/uv/uv_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Yinghai Lu497c9a12008-08-19 20:50:28 -070064#include <mach_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020066#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010068#define __apicdebuginit(type) static type __init
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020071 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int sis_apic_bug = -1;
75
Yinghai Luefa25592008-08-19 20:50:36 -070076static DEFINE_SPINLOCK(ioapic_lock);
77static DEFINE_SPINLOCK(vector_lock);
78
Yinghai Luefa25592008-08-19 20:50:36 -070079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * # of IRQ routing registers
81 */
82int nr_ioapic_registers[MAX_IO_APICS];
83
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040084/* I/O APIC entries */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +040085struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040086int nr_ioapics;
87
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040088/* MP IRQ source entries */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +040089struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040090
91/* # of MP IRQ source entries */
92int mp_irq_entries;
93
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040094#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
95int mp_bus_id_to_type[MAX_MP_BUSSES];
96#endif
97
98DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
99
Yinghai Luefa25592008-08-19 20:50:36 -0700100int skip_ioapic_setup;
101
Ingo Molnar54168ed2008-08-20 09:07:45 +0200102static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700103{
104 /* disable IO-APIC */
105 disable_ioapic_setup();
106 return 0;
107}
108early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200109
Yinghai Lu0f978f42008-08-19 20:50:26 -0700110struct irq_pin_list;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200111
112/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * This is performance-critical, we want to do it O(1)
114 *
115 * the indexing order of this array favors 1:1 mappings
116 * between pins and IRQs.
117 */
118
Yinghai Lu0f978f42008-08-19 20:50:26 -0700119struct irq_pin_list {
120 int apic, pin;
121 struct irq_pin_list *next;
122};
Yinghai Lu301e6192008-08-19 20:50:02 -0700123
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800124static struct irq_pin_list *get_one_free_irq_2_pin(int cpu)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700125{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800126 struct irq_pin_list *pin;
127 int node;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700128
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800129 node = cpu_to_node(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700130
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800131 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
132 printk(KERN_DEBUG " alloc irq_2_pin on cpu %d node %d\n", cpu, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133
Yinghai Lu0f978f42008-08-19 20:50:26 -0700134 return pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700135}
136
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800137struct irq_cfg {
138 struct irq_pin_list *irq_2_pin;
Mike Travis22f65d32008-12-16 17:33:56 -0800139 cpumask_var_t domain;
140 cpumask_var_t old_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800141 unsigned move_cleanup_count;
142 u8 vector;
143 u8 move_in_progress : 1;
Yinghai Lu48a1b102008-12-11 00:15:01 -0800144#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
145 u8 move_desc_pending : 1;
146#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800147};
148
149/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
150#ifdef CONFIG_SPARSE_IRQ
151static struct irq_cfg irq_cfgx[] = {
152#else
153static struct irq_cfg irq_cfgx[NR_IRQS] = {
154#endif
Mike Travis22f65d32008-12-16 17:33:56 -0800155 [0] = { .vector = IRQ0_VECTOR, },
156 [1] = { .vector = IRQ1_VECTOR, },
157 [2] = { .vector = IRQ2_VECTOR, },
158 [3] = { .vector = IRQ3_VECTOR, },
159 [4] = { .vector = IRQ4_VECTOR, },
160 [5] = { .vector = IRQ5_VECTOR, },
161 [6] = { .vector = IRQ6_VECTOR, },
162 [7] = { .vector = IRQ7_VECTOR, },
163 [8] = { .vector = IRQ8_VECTOR, },
164 [9] = { .vector = IRQ9_VECTOR, },
165 [10] = { .vector = IRQ10_VECTOR, },
166 [11] = { .vector = IRQ11_VECTOR, },
167 [12] = { .vector = IRQ12_VECTOR, },
168 [13] = { .vector = IRQ13_VECTOR, },
169 [14] = { .vector = IRQ14_VECTOR, },
170 [15] = { .vector = IRQ15_VECTOR, },
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800171};
172
173void __init arch_early_irq_init(void)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700174{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800175 struct irq_cfg *cfg;
176 struct irq_desc *desc;
177 int count;
178 int i;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700179
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800180 cfg = irq_cfgx;
181 count = ARRAY_SIZE(irq_cfgx);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700182
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800183 for (i = 0; i < count; i++) {
184 desc = irq_to_desc(i);
185 desc->chip_data = &cfg[i];
Mike Travis22f65d32008-12-16 17:33:56 -0800186 alloc_bootmem_cpumask_var(&cfg[i].domain);
187 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
188 if (i < NR_IRQS_LEGACY)
189 cpumask_setall(cfg[i].domain);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800190 }
191}
192
193#ifdef CONFIG_SPARSE_IRQ
194static struct irq_cfg *irq_cfg(unsigned int irq)
195{
196 struct irq_cfg *cfg = NULL;
197 struct irq_desc *desc;
198
199 desc = irq_to_desc(irq);
200 if (desc)
201 cfg = desc->chip_data;
202
203 return cfg;
204}
205
206static struct irq_cfg *get_one_free_irq_cfg(int cpu)
207{
208 struct irq_cfg *cfg;
209 int node;
210
211 node = cpu_to_node(cpu);
212
213 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800214 if (cfg) {
Mike Travis80855f72008-12-31 18:08:47 -0800215 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800216 kfree(cfg);
217 cfg = NULL;
Mike Travis80855f72008-12-31 18:08:47 -0800218 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
219 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800220 free_cpumask_var(cfg->domain);
221 kfree(cfg);
222 cfg = NULL;
223 } else {
224 cpumask_clear(cfg->domain);
225 cpumask_clear(cfg->old_domain);
226 }
227 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800228 printk(KERN_DEBUG " alloc irq_cfg on cpu %d node %d\n", cpu, node);
229
230 return cfg;
231}
232
233void arch_init_chip_data(struct irq_desc *desc, int cpu)
234{
235 struct irq_cfg *cfg;
236
237 cfg = desc->chip_data;
238 if (!cfg) {
239 desc->chip_data = get_one_free_irq_cfg(cpu);
240 if (!desc->chip_data) {
241 printk(KERN_ERR "can not alloc irq_cfg\n");
242 BUG_ON(1);
243 }
244 }
245}
246
Yinghai Lu48a1b102008-12-11 00:15:01 -0800247#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
248
249static void
250init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu)
251{
252 struct irq_pin_list *old_entry, *head, *tail, *entry;
253
254 cfg->irq_2_pin = NULL;
255 old_entry = old_cfg->irq_2_pin;
256 if (!old_entry)
257 return;
258
259 entry = get_one_free_irq_2_pin(cpu);
260 if (!entry)
261 return;
262
263 entry->apic = old_entry->apic;
264 entry->pin = old_entry->pin;
265 head = entry;
266 tail = entry;
267 old_entry = old_entry->next;
268 while (old_entry) {
269 entry = get_one_free_irq_2_pin(cpu);
270 if (!entry) {
271 entry = head;
272 while (entry) {
273 head = entry->next;
274 kfree(entry);
275 entry = head;
276 }
277 /* still use the old one */
278 return;
279 }
280 entry->apic = old_entry->apic;
281 entry->pin = old_entry->pin;
282 tail->next = entry;
283 tail = entry;
284 old_entry = old_entry->next;
285 }
286
287 tail->next = NULL;
288 cfg->irq_2_pin = head;
289}
290
291static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
292{
293 struct irq_pin_list *entry, *next;
294
295 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
296 return;
297
298 entry = old_cfg->irq_2_pin;
299
300 while (entry) {
301 next = entry->next;
302 kfree(entry);
303 entry = next;
304 }
305 old_cfg->irq_2_pin = NULL;
306}
307
308void arch_init_copy_chip_data(struct irq_desc *old_desc,
309 struct irq_desc *desc, int cpu)
310{
311 struct irq_cfg *cfg;
312 struct irq_cfg *old_cfg;
313
314 cfg = get_one_free_irq_cfg(cpu);
315
316 if (!cfg)
317 return;
318
319 desc->chip_data = cfg;
320
321 old_cfg = old_desc->chip_data;
322
323 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
324
325 init_copy_irq_2_pin(old_cfg, cfg, cpu);
326}
327
328static void free_irq_cfg(struct irq_cfg *old_cfg)
329{
330 kfree(old_cfg);
331}
332
333void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
334{
335 struct irq_cfg *old_cfg, *cfg;
336
337 old_cfg = old_desc->chip_data;
338 cfg = desc->chip_data;
339
340 if (old_cfg == cfg)
341 return;
342
343 if (old_cfg) {
344 free_irq_2_pin(old_cfg, cfg);
345 free_irq_cfg(old_cfg);
346 old_desc->chip_data = NULL;
347 }
348}
349
Ingo Molnard733e002008-12-17 13:35:51 +0100350static void
351set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800352{
353 struct irq_cfg *cfg = desc->chip_data;
354
355 if (!cfg->move_in_progress) {
356 /* it means that domain is not changed */
Ingo Molnard733e002008-12-17 13:35:51 +0100357 if (!cpumask_intersects(&desc->affinity, mask))
Yinghai Lu48a1b102008-12-11 00:15:01 -0800358 cfg->move_desc_pending = 1;
359 }
360}
361#endif
362
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800363#else
364static struct irq_cfg *irq_cfg(unsigned int irq)
365{
366 return irq < nr_irqs ? irq_cfgx + irq : NULL;
367}
368
369#endif
370
Yinghai Lu48a1b102008-12-11 00:15:01 -0800371#ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC
Mike Travise7986732008-12-16 17:33:52 -0800372static inline void
373set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800374{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700375}
Yinghai Lu48a1b102008-12-11 00:15:01 -0800376#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Linus Torvalds130fe052006-11-01 09:11:00 -0800378struct io_apic {
379 unsigned int index;
380 unsigned int unused[3];
381 unsigned int data;
382};
383
384static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
385{
386 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400387 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800388}
389
390static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
391{
392 struct io_apic __iomem *io_apic = io_apic_base(apic);
393 writel(reg, &io_apic->index);
394 return readl(&io_apic->data);
395}
396
397static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
398{
399 struct io_apic __iomem *io_apic = io_apic_base(apic);
400 writel(reg, &io_apic->index);
401 writel(value, &io_apic->data);
402}
403
404/*
405 * Re-write a value: to be used for read-modify-write
406 * cycles where the read already set up the index register.
407 *
408 * Older SiS APIC requires we rewrite the index register
409 */
410static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
411{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200412 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200413
414 if (sis_apic_bug)
415 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800416 writel(value, &io_apic->data);
417}
418
Yinghai Lu3145e942008-12-05 18:58:34 -0800419static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700420{
421 struct irq_pin_list *entry;
422 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700423
424 spin_lock_irqsave(&ioapic_lock, flags);
425 entry = cfg->irq_2_pin;
426 for (;;) {
427 unsigned int reg;
428 int pin;
429
430 if (!entry)
431 break;
432 pin = entry->pin;
433 reg = io_apic_read(entry->apic, 0x10 + pin*2);
434 /* Is the remote IRR bit set? */
435 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
436 spin_unlock_irqrestore(&ioapic_lock, flags);
437 return true;
438 }
439 if (!entry->next)
440 break;
441 entry = entry->next;
442 }
443 spin_unlock_irqrestore(&ioapic_lock, flags);
444
445 return false;
446}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700447
Andi Kleencf4c6a22006-09-26 10:52:30 +0200448union entry_union {
449 struct { u32 w1, w2; };
450 struct IO_APIC_route_entry entry;
451};
452
453static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
454{
455 union entry_union eu;
456 unsigned long flags;
457 spin_lock_irqsave(&ioapic_lock, flags);
458 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
459 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
460 spin_unlock_irqrestore(&ioapic_lock, flags);
461 return eu.entry;
462}
463
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800464/*
465 * When we write a new IO APIC routing entry, we need to write the high
466 * word first! If the mask bit in the low word is clear, we will enable
467 * the interrupt, and we need to make sure the entry is fully populated
468 * before that happens.
469 */
Andi Kleend15512f2006-12-07 02:14:07 +0100470static void
471__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
472{
473 union entry_union eu;
474 eu.entry = e;
475 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
476 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
477}
478
Andi Kleencf4c6a22006-09-26 10:52:30 +0200479static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
480{
481 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200482 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100483 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800484 spin_unlock_irqrestore(&ioapic_lock, flags);
485}
486
487/*
488 * When we mask an IO APIC routing entry, we need to write the low
489 * word first, in order to set the mask bit before we change the
490 * high bits!
491 */
492static void ioapic_mask_entry(int apic, int pin)
493{
494 unsigned long flags;
495 union entry_union eu = { .entry.mask = 1 };
496
497 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200498 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
499 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
500 spin_unlock_irqrestore(&ioapic_lock, flags);
501}
502
Yinghai Lu497c9a12008-08-19 20:50:28 -0700503#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -0800504static void send_cleanup_vector(struct irq_cfg *cfg)
505{
506 cpumask_var_t cleanup_mask;
507
508 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
509 unsigned int i;
510 cfg->move_cleanup_count = 0;
511 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
512 cfg->move_cleanup_count++;
513 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
514 send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
515 } else {
516 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
517 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
518 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
519 free_cpumask_var(cleanup_mask);
520 }
521 cfg->move_in_progress = 0;
522}
523
Yinghai Lu3145e942008-12-05 18:58:34 -0800524static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700525{
526 int apic, pin;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700527 struct irq_pin_list *entry;
Yinghai Lu3145e942008-12-05 18:58:34 -0800528 u8 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700529
Yinghai Lu497c9a12008-08-19 20:50:28 -0700530 entry = cfg->irq_2_pin;
531 for (;;) {
532 unsigned int reg;
533
534 if (!entry)
535 break;
536
537 apic = entry->apic;
538 pin = entry->pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200539#ifdef CONFIG_INTR_REMAP
540 /*
541 * With interrupt-remapping, destination information comes
542 * from interrupt-remapping table entry.
543 */
544 if (!irq_remapped(irq))
545 io_apic_write(apic, 0x11 + pin*2, dest);
546#else
Yinghai Lu497c9a12008-08-19 20:50:28 -0700547 io_apic_write(apic, 0x11 + pin*2, dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200548#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -0700549 reg = io_apic_read(apic, 0x10 + pin*2);
550 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
551 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200552 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700553 if (!entry->next)
554 break;
555 entry = entry->next;
556 }
557}
Yinghai Luefa25592008-08-19 20:50:36 -0700558
Mike Travise7986732008-12-16 17:33:52 -0800559static int
560assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
Yinghai Luefa25592008-08-19 20:50:36 -0700561
Mike Travis22f65d32008-12-16 17:33:56 -0800562/*
563 * Either sets desc->affinity to a valid value, and returns cpu_mask_to_apicid
564 * of that, or returns BAD_APICID and leaves desc->affinity untouched.
565 */
566static unsigned int
567set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -0700568{
569 struct irq_cfg *cfg;
Yinghai Lu3145e942008-12-05 18:58:34 -0800570 unsigned int irq;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700571
Rusty Russell0de26522008-12-13 21:20:26 +1030572 if (!cpumask_intersects(mask, cpu_online_mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800573 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700574
Yinghai Lu3145e942008-12-05 18:58:34 -0800575 irq = desc->irq;
576 cfg = desc->chip_data;
Mike Travise7986732008-12-16 17:33:52 -0800577 if (assign_irq_vector(irq, cfg, mask))
Mike Travis22f65d32008-12-16 17:33:56 -0800578 return BAD_APICID;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700579
Mike Travis22f65d32008-12-16 17:33:56 -0800580 cpumask_and(&desc->affinity, cfg->domain, mask);
Mike Travise7986732008-12-16 17:33:52 -0800581 set_extra_move_desc(desc, mask);
Mike Travis22f65d32008-12-16 17:33:56 -0800582 return cpu_mask_to_apicid_and(&desc->affinity, cpu_online_mask);
583}
Yinghai Lu3145e942008-12-05 18:58:34 -0800584
Mike Travis22f65d32008-12-16 17:33:56 -0800585static void
586set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
587{
588 struct irq_cfg *cfg;
589 unsigned long flags;
590 unsigned int dest;
591 unsigned int irq;
592
593 irq = desc->irq;
594 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700595
596 spin_lock_irqsave(&ioapic_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -0800597 dest = set_desc_affinity(desc, mask);
598 if (dest != BAD_APICID) {
599 /* Only the high 8 bits are valid. */
600 dest = SET_APIC_LOGICAL_ID(dest);
601 __target_IO_APIC_irq(irq, dest, cfg);
602 }
Yinghai Lu497c9a12008-08-19 20:50:28 -0700603 spin_unlock_irqrestore(&ioapic_lock, flags);
604}
Yinghai Lu3145e942008-12-05 18:58:34 -0800605
Mike Travis22f65d32008-12-16 17:33:56 -0800606static void
607set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -0800608{
609 struct irq_desc *desc;
610
611 desc = irq_to_desc(irq);
612
613 set_ioapic_affinity_irq_desc(desc, mask);
614}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700615#endif /* CONFIG_SMP */
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*
618 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
619 * shared ISA-space IRQs, so we have to support them. We are super
620 * fast in the common case, and fast for shared ISA-space IRQs.
621 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800622static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700624 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Yinghai Lu0f978f42008-08-19 20:50:26 -0700626 entry = cfg->irq_2_pin;
627 if (!entry) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800628 entry = get_one_free_irq_2_pin(cpu);
629 if (!entry) {
630 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
631 apic, pin);
632 return;
633 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700634 cfg->irq_2_pin = entry;
635 entry->apic = apic;
636 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700637 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700639
640 while (entry->next) {
641 /* not again, please */
642 if (entry->apic == apic && entry->pin == pin)
643 return;
644
645 entry = entry->next;
646 }
647
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800648 entry->next = get_one_free_irq_2_pin(cpu);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700649 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 entry->apic = apic;
651 entry->pin = pin;
652}
653
654/*
655 * Reroute an IRQ to a different pin.
656 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800657static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 int oldapic, int oldpin,
659 int newapic, int newpin)
660{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700661 struct irq_pin_list *entry = cfg->irq_2_pin;
662 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Yinghai Lu0f978f42008-08-19 20:50:26 -0700664 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (entry->apic == oldapic && entry->pin == oldpin) {
666 entry->apic = newapic;
667 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700668 replaced = 1;
669 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700671 }
672 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700674
675 /* why? call replace before add? */
676 if (!replaced)
Yinghai Lu3145e942008-12-05 18:58:34 -0800677 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Yinghai Lu3145e942008-12-05 18:58:34 -0800680static inline void io_apic_modify_irq(struct irq_cfg *cfg,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400681 int mask_and, int mask_or,
682 void (*final)(struct irq_pin_list *entry))
683{
684 int pin;
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400685 struct irq_pin_list *entry;
686
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400687 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
688 unsigned int reg;
689 pin = entry->pin;
690 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
691 reg &= mask_and;
692 reg |= mask_or;
693 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
694 if (final)
695 final(entry);
696 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700697}
698
Yinghai Lu3145e942008-12-05 18:58:34 -0800699static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400700{
Yinghai Lu3145e942008-12-05 18:58:34 -0800701 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400702}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700703
704#ifdef CONFIG_X86_64
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400705void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700706{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400707 /*
708 * Synchronize the IO-APIC and the CPU by doing
709 * a dummy read from the IO-APIC
710 */
711 struct io_apic __iomem *io_apic;
712 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700713 readl(&io_apic->data);
714}
715
Yinghai Lu3145e942008-12-05 18:58:34 -0800716static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400717{
Yinghai Lu3145e942008-12-05 18:58:34 -0800718 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400719}
720#else /* CONFIG_X86_32 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800721static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400722{
Yinghai Lu3145e942008-12-05 18:58:34 -0800723 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400724}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700725
Yinghai Lu3145e942008-12-05 18:58:34 -0800726static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400727{
Yinghai Lu3145e942008-12-05 18:58:34 -0800728 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400729 IO_APIC_REDIR_MASKED, NULL);
730}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700731
Yinghai Lu3145e942008-12-05 18:58:34 -0800732static void __unmask_and_level_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, ~IO_APIC_REDIR_MASKED,
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400735 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
736}
737#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700738
Yinghai Lu3145e942008-12-05 18:58:34 -0800739static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Yinghai Lu3145e942008-12-05 18:58:34 -0800741 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 unsigned long flags;
743
Yinghai Lu3145e942008-12-05 18:58:34 -0800744 BUG_ON(!cfg);
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800747 __mask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 spin_unlock_irqrestore(&ioapic_lock, flags);
749}
750
Yinghai Lu3145e942008-12-05 18:58:34 -0800751static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Yinghai Lu3145e942008-12-05 18:58:34 -0800753 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 unsigned long flags;
755
756 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800757 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 spin_unlock_irqrestore(&ioapic_lock, flags);
759}
760
Yinghai Lu3145e942008-12-05 18:58:34 -0800761static void mask_IO_APIC_irq(unsigned int irq)
762{
763 struct irq_desc *desc = irq_to_desc(irq);
764
765 mask_IO_APIC_irq_desc(desc);
766}
767static void unmask_IO_APIC_irq(unsigned int irq)
768{
769 struct irq_desc *desc = irq_to_desc(irq);
770
771 unmask_IO_APIC_irq_desc(desc);
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
775{
776 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200779 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (entry.delivery_mode == dest_SMI)
781 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * Disable it in the IO-APIC irq-routing table:
784 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800785 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Ingo Molnar54168ed2008-08-20 09:07:45 +0200788static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 int apic, pin;
791
792 for (apic = 0; apic < nr_ioapics; apic++)
793 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
794 clear_IO_APIC_pin(apic, pin);
795}
796
Ingo Molnar54168ed2008-08-20 09:07:45 +0200797#if !defined(CONFIG_SMP) && defined(CONFIG_X86_32)
Harvey Harrison75604d72008-01-30 13:31:17 +0100798void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 unsigned int cfg;
801
802 /*
803 * Wait for idle.
804 */
805 apic_wait_icr_idle();
806 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
807 /*
808 * Send the IPI. The write to APIC_ICR fires this off.
809 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100810 apic_write(APIC_ICR, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200812#endif /* !CONFIG_SMP && CONFIG_X86_32*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Ingo Molnar54168ed2008-08-20 09:07:45 +0200814#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815/*
816 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
817 * specific CPU-side IRQs.
818 */
819
820#define MAX_PIRQS 8
821static int pirq_entries [MAX_PIRQS];
822static int pirqs_enabled;
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
831 for (i = 0; i < MAX_PIRQS; i++)
832 pirq_entries[i] = -1;
833
834 pirqs_enabled = 1;
835 apic_printk(APIC_VERBOSE, KERN_INFO
836 "PIRQ redirection, working around broken MP-BIOS.\n");
837 max = MAX_PIRQS;
838 if (ints[0] < MAX_PIRQS)
839 max = ints[0];
840
841 for (i = 0; i < max; i++) {
842 apic_printk(APIC_VERBOSE, KERN_DEBUG
843 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
844 /*
845 * PIRQs are mapped upside down, usually.
846 */
847 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
848 }
849 return 1;
850}
851
852__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200853#endif /* CONFIG_X86_32 */
854
855#ifdef CONFIG_INTR_REMAP
856/* I/O APIC RTE contents at the OS boot up */
857static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
858
859/*
860 * Saves and masks all the unmasked IO-APIC RTE's
861 */
862int save_mask_IO_APIC_setup(void)
863{
864 union IO_APIC_reg_01 reg_01;
865 unsigned long flags;
866 int apic, pin;
867
868 /*
869 * The number of IO-APIC IRQ registers (== #pins):
870 */
871 for (apic = 0; apic < nr_ioapics; apic++) {
872 spin_lock_irqsave(&ioapic_lock, flags);
873 reg_01.raw = io_apic_read(apic, 1);
874 spin_unlock_irqrestore(&ioapic_lock, flags);
875 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
876 }
877
878 for (apic = 0; apic < nr_ioapics; apic++) {
879 early_ioapic_entries[apic] =
880 kzalloc(sizeof(struct IO_APIC_route_entry) *
881 nr_ioapic_registers[apic], GFP_KERNEL);
882 if (!early_ioapic_entries[apic])
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400883 goto nomem;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200884 }
885
886 for (apic = 0; apic < nr_ioapics; apic++)
887 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
888 struct IO_APIC_route_entry entry;
889
890 entry = early_ioapic_entries[apic][pin] =
891 ioapic_read_entry(apic, pin);
892 if (!entry.mask) {
893 entry.mask = 1;
894 ioapic_write_entry(apic, pin, entry);
895 }
896 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400897
Ingo Molnar54168ed2008-08-20 09:07:45 +0200898 return 0;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400899
900nomem:
Cyrill Gorcunovc1370b42008-09-23 23:00:02 +0400901 while (apic >= 0)
902 kfree(early_ioapic_entries[apic--]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400903 memset(early_ioapic_entries, 0,
904 ARRAY_SIZE(early_ioapic_entries));
905
906 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200907}
908
909void restore_IO_APIC_setup(void)
910{
911 int apic, pin;
912
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400913 for (apic = 0; apic < nr_ioapics; apic++) {
914 if (!early_ioapic_entries[apic])
915 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200916 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
917 ioapic_write_entry(apic, pin,
918 early_ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400919 kfree(early_ioapic_entries[apic]);
920 early_ioapic_entries[apic] = NULL;
921 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200922}
923
924void reinit_intr_remapped_IO_APIC(int intr_remapping)
925{
926 /*
927 * for now plain restore of previous settings.
928 * TBD: In the case of OS enabling interrupt-remapping,
929 * IO-APIC RTE's need to be setup to point to interrupt-remapping
930 * table entries. for now, do a plain restore, and wait for
931 * the setup_IO_APIC_irqs() to do proper initialization.
932 */
933 restore_IO_APIC_setup();
934}
935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/*
938 * Find the IRQ entry number of a certain pin.
939 */
940static int find_irq_entry(int apic, int pin, int type)
941{
942 int i;
943
944 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400945 if (mp_irqs[i].mp_irqtype == type &&
946 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
947 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
948 mp_irqs[i].mp_dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return i;
950
951 return -1;
952}
953
954/*
955 * Find the pin to which IRQ[irq] (ISA) is connected
956 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800957static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 int i;
960
961 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400962 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300964 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400965 (mp_irqs[i].mp_irqtype == type) &&
966 (mp_irqs[i].mp_srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400968 return mp_irqs[i].mp_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
970 return -1;
971}
972
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800973static int __init find_isa_irq_apic(int irq, int type)
974{
975 int i;
976
977 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400978 int lbus = mp_irqs[i].mp_srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800979
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300980 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400981 (mp_irqs[i].mp_irqtype == type) &&
982 (mp_irqs[i].mp_srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800983 break;
984 }
985 if (i < mp_irq_entries) {
986 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200987 for(apic = 0; apic < nr_ioapics; apic++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400988 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800989 return apic;
990 }
991 }
992
993 return -1;
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * Find a specific PCI IRQ entry.
998 * Not an __init, possibly needed by modules
999 */
1000static int pin_2_irq(int idx, int apic, int pin);
1001
1002int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
1003{
1004 int apic, i, best_guess = -1;
1005
Ingo Molnar54168ed2008-08-20 09:07:45 +02001006 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1007 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +04001008 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001009 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return -1;
1011 }
1012 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001013 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 for (apic = 0; apic < nr_ioapics; apic++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001016 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
1017 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 break;
1019
Alexey Starikovskiy47cab822008-03-20 14:54:30 +03001020 if (!test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001021 !mp_irqs[i].mp_irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 (bus == lbus) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001023 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001024 int irq = pin_2_irq(i,apic,mp_irqs[i].mp_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (!(apic || IO_APIC_IRQ(irq)))
1027 continue;
1028
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001029 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return irq;
1031 /*
1032 * Use the first all-but-pin matching entry as a
1033 * best-guess fuzzy result for broken mptables.
1034 */
1035 if (best_guess < 0)
1036 best_guess = irq;
1037 }
1038 }
1039 return best_guess;
1040}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001041
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001042EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001044#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
1046 * EISA Edge/Level control register, ELCR
1047 */
1048static int EISA_ELCR(unsigned int irq)
1049{
Yinghai Lu99d093d2008-12-05 18:58:32 -08001050 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 unsigned int port = 0x4d0 + (irq >> 3);
1052 return (inb(port) >> (irq & 7)) & 1;
1053 }
1054 apic_printk(APIC_VERBOSE, KERN_INFO
1055 "Broken MPtable reports ISA irq %d\n", irq);
1056 return 0;
1057}
Ingo Molnar54168ed2008-08-20 09:07:45 +02001058
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001061/* ISA interrupts are always polarity zero edge triggered,
1062 * when listed as conforming in the MP table. */
1063
1064#define default_ISA_trigger(idx) (0)
1065#define default_ISA_polarity(idx) (0)
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/* EISA interrupts are always polarity zero and can be edge or level
1068 * trigger depending on the ELCR value. If an interrupt is listed as
1069 * EISA conforming in the MP table, that means its trigger type must
1070 * be read in from the ELCR */
1071
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001072#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001073#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075/* PCI interrupts are always polarity one level triggered,
1076 * when listed as conforming in the MP table. */
1077
1078#define default_PCI_trigger(idx) (1)
1079#define default_PCI_polarity(idx) (1)
1080
1081/* MCA interrupts are always polarity zero level triggered,
1082 * when listed as conforming in the MP table. */
1083
1084#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001085#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Shaohua Li61fd47e2007-11-17 01:05:28 -05001087static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001089 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int polarity;
1091
1092 /*
1093 * Determine IRQ line polarity (high active or low active):
1094 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001095 switch (mp_irqs[idx].mp_irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001097 case 0: /* conforms, ie. bus-type dependent polarity */
1098 if (test_bit(bus, mp_bus_not_pci))
1099 polarity = default_ISA_polarity(idx);
1100 else
1101 polarity = default_PCI_polarity(idx);
1102 break;
1103 case 1: /* high active */
1104 {
1105 polarity = 0;
1106 break;
1107 }
1108 case 2: /* reserved */
1109 {
1110 printk(KERN_WARNING "broken BIOS!!\n");
1111 polarity = 1;
1112 break;
1113 }
1114 case 3: /* low active */
1115 {
1116 polarity = 1;
1117 break;
1118 }
1119 default: /* invalid */
1120 {
1121 printk(KERN_WARNING "broken BIOS!!\n");
1122 polarity = 1;
1123 break;
1124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 return polarity;
1127}
1128
1129static int MPBIOS_trigger(int idx)
1130{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001131 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 int trigger;
1133
1134 /*
1135 * Determine IRQ trigger mode (edge or level sensitive):
1136 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001137 switch ((mp_irqs[idx].mp_irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001139 case 0: /* conforms, ie. bus-type dependent */
1140 if (test_bit(bus, mp_bus_not_pci))
1141 trigger = default_ISA_trigger(idx);
1142 else
1143 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001144#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001145 switch (mp_bus_id_to_type[bus]) {
1146 case MP_BUS_ISA: /* ISA pin */
1147 {
1148 /* set before the switch */
1149 break;
1150 }
1151 case MP_BUS_EISA: /* EISA pin */
1152 {
1153 trigger = default_EISA_trigger(idx);
1154 break;
1155 }
1156 case MP_BUS_PCI: /* PCI pin */
1157 {
1158 /* set before the switch */
1159 break;
1160 }
1161 case MP_BUS_MCA: /* MCA pin */
1162 {
1163 trigger = default_MCA_trigger(idx);
1164 break;
1165 }
1166 default:
1167 {
1168 printk(KERN_WARNING "broken BIOS!!\n");
1169 trigger = 1;
1170 break;
1171 }
1172 }
1173#endif
1174 break;
1175 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001176 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001177 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001178 break;
1179 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001180 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001181 {
1182 printk(KERN_WARNING "broken BIOS!!\n");
1183 trigger = 1;
1184 break;
1185 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001186 case 3: /* level */
1187 {
1188 trigger = 1;
1189 break;
1190 }
1191 default: /* invalid */
1192 {
1193 printk(KERN_WARNING "broken BIOS!!\n");
1194 trigger = 0;
1195 break;
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198 return trigger;
1199}
1200
1201static inline int irq_polarity(int idx)
1202{
1203 return MPBIOS_polarity(idx);
1204}
1205
1206static inline int irq_trigger(int idx)
1207{
1208 return MPBIOS_trigger(idx);
1209}
1210
Yinghai Luefa25592008-08-19 20:50:36 -07001211int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212static int pin_2_irq(int idx, int apic, int pin)
1213{
1214 int irq, i;
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001215 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /*
1218 * Debugging check, we are in big trouble if this message pops up!
1219 */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001220 if (mp_irqs[idx].mp_dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1222
Ingo Molnar54168ed2008-08-20 09:07:45 +02001223 if (test_bit(bus, mp_bus_not_pci)) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001224 irq = mp_irqs[idx].mp_srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001225 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001226 /*
1227 * PCI IRQs are mapped in order
1228 */
1229 i = irq = 0;
1230 while (i < apic)
1231 irq += nr_ioapic_registers[i++];
1232 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001233 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001234 * For MPS mode, so far only needed by ES7000 platform
1235 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001236 if (ioapic_renumber_irq)
1237 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Ingo Molnar54168ed2008-08-20 09:07:45 +02001240#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1243 */
1244 if ((pin >= 16) && (pin <= 23)) {
1245 if (pirq_entries[pin-16] != -1) {
1246 if (!pirq_entries[pin-16]) {
1247 apic_printk(APIC_VERBOSE, KERN_DEBUG
1248 "disabling PIRQ%d\n", pin-16);
1249 } else {
1250 irq = pirq_entries[pin-16];
1251 apic_printk(APIC_VERBOSE, KERN_DEBUG
1252 "using PIRQ%d -> IRQ %d\n",
1253 pin-16, irq);
1254 }
1255 }
1256 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001257#endif
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return irq;
1260}
1261
Yinghai Lu497c9a12008-08-19 20:50:28 -07001262void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001264 /* Used to the online set of cpus does not change
1265 * during assign_irq_vector.
1266 */
1267 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Yinghai Lu497c9a12008-08-19 20:50:28 -07001270void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001271{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001272 spin_unlock(&vector_lock);
1273}
1274
Mike Travise7986732008-12-16 17:33:52 -08001275static int
1276__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001277{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001278 /*
1279 * NOTE! The local APIC isn't very good at handling
1280 * multiple interrupts at the same interrupt level.
1281 * As the interrupt level is determined by taking the
1282 * vector number and shifting that right by 4, we
1283 * want to spread these out a bit so that they don't
1284 * all fall in the same interrupt level.
1285 *
1286 * Also, we've got to be careful not to trash gate
1287 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1288 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001289 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1290 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001291 int cpu, err;
1292 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001293
Ingo Molnar54168ed2008-08-20 09:07:45 +02001294 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1295 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001296
Mike Travis22f65d32008-12-16 17:33:56 -08001297 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1298 return -ENOMEM;
1299
Ingo Molnar54168ed2008-08-20 09:07:45 +02001300 old_vector = cfg->vector;
1301 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001302 cpumask_and(tmp_mask, mask, cpu_online_mask);
1303 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1304 if (!cpumask_empty(tmp_mask)) {
1305 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001306 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001307 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001308 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001309
Mike Travise7986732008-12-16 17:33:52 -08001310 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001311 err = -ENOSPC;
1312 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001313 int new_cpu;
1314 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001315
Mike Travis22f65d32008-12-16 17:33:56 -08001316 vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001317
Ingo Molnar54168ed2008-08-20 09:07:45 +02001318 vector = current_vector;
1319 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001320next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001321 vector += 8;
1322 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001323 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001324 offset = (offset + 1) % 8;
1325 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001326 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001327 if (unlikely(current_vector == vector))
1328 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001329
1330 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001331 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001332
Mike Travis22f65d32008-12-16 17:33:56 -08001333 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001334 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1335 goto next;
1336 /* Found one! */
1337 current_vector = vector;
1338 current_offset = offset;
1339 if (old_vector) {
1340 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001341 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001342 }
Mike Travis22f65d32008-12-16 17:33:56 -08001343 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001344 per_cpu(vector_irq, new_cpu)[vector] = irq;
1345 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001346 cpumask_copy(cfg->domain, tmp_mask);
1347 err = 0;
1348 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001349 }
Mike Travis22f65d32008-12-16 17:33:56 -08001350 free_cpumask_var(tmp_mask);
1351 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001352}
1353
Mike Travise7986732008-12-16 17:33:52 -08001354static int
1355assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001356{
1357 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001358 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001359
1360 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001361 err = __assign_irq_vector(irq, cfg, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001362 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001363 return err;
1364}
1365
Yinghai Lu3145e942008-12-05 18:58:34 -08001366static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001367{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001368 int cpu, vector;
1369
Yinghai Lu497c9a12008-08-19 20:50:28 -07001370 BUG_ON(!cfg->vector);
1371
1372 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001373 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001374 per_cpu(vector_irq, cpu)[vector] = -1;
1375
1376 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001377 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001378
1379 if (likely(!cfg->move_in_progress))
1380 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001381 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001382 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1383 vector++) {
1384 if (per_cpu(vector_irq, cpu)[vector] != irq)
1385 continue;
1386 per_cpu(vector_irq, cpu)[vector] = -1;
1387 break;
1388 }
1389 }
1390 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001391}
1392
1393void __setup_vector_irq(int cpu)
1394{
1395 /* Initialize vector_irq on a new cpu */
1396 /* This function must be called with vector_lock held */
1397 int irq, vector;
1398 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001399 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001400
1401 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001402 for_each_irq_desc(irq, desc) {
1403 if (!desc)
1404 continue;
1405 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001406 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001407 continue;
1408 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001409 per_cpu(vector_irq, cpu)[vector] = irq;
1410 }
1411 /* Mark the free vectors */
1412 for (vector = 0; vector < NR_VECTORS; ++vector) {
1413 irq = per_cpu(vector_irq, cpu)[vector];
1414 if (irq < 0)
1415 continue;
1416
1417 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001418 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001419 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001420 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001421}
Glauber Costa3fde6902008-05-28 20:34:19 -07001422
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001423static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001424#ifdef CONFIG_INTR_REMAP
1425static struct irq_chip ir_ioapic_chip;
1426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Ingo Molnar54168ed2008-08-20 09:07:45 +02001428#define IOAPIC_AUTO -1
1429#define IOAPIC_EDGE 0
1430#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001432#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001433static inline int IO_APIC_irq_trigger(int irq)
1434{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001435 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001436
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001437 for (apic = 0; apic < nr_ioapics; apic++) {
1438 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1439 idx = find_irq_entry(apic, pin, mp_INT);
1440 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1441 return irq_trigger(idx);
1442 }
1443 }
1444 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001445 * nonexistent IRQs are edge default
1446 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001447 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001448}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001449#else
1450static inline int IO_APIC_irq_trigger(int irq)
1451{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001452 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001453}
1454#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001455
Yinghai Lu3145e942008-12-05 18:58:34 -08001456static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Yinghai Lu199751d2008-08-19 20:50:27 -07001458
Jan Beulich6ebcc002006-06-26 13:56:46 +02001459 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001460 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001461 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001462 else
1463 desc->status &= ~IRQ_LEVEL;
1464
Ingo Molnar54168ed2008-08-20 09:07:45 +02001465#ifdef CONFIG_INTR_REMAP
1466 if (irq_remapped(irq)) {
1467 desc->status |= IRQ_MOVE_PCNTXT;
1468 if (trigger)
1469 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1470 handle_fasteoi_irq,
1471 "fasteoi");
1472 else
1473 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1474 handle_edge_irq, "edge");
1475 return;
1476 }
1477#endif
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001478 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1479 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001480 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001481 handle_fasteoi_irq,
1482 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001483 else
Ingo Molnara460e742006-10-17 00:10:03 -07001484 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001485 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001486}
1487
1488static int setup_ioapic_entry(int apic, int irq,
1489 struct IO_APIC_route_entry *entry,
1490 unsigned int destination, int trigger,
1491 int polarity, int vector)
1492{
1493 /*
1494 * add it to the IO-APIC irq-routing table:
1495 */
1496 memset(entry,0,sizeof(*entry));
1497
Ingo Molnar54168ed2008-08-20 09:07:45 +02001498#ifdef CONFIG_INTR_REMAP
1499 if (intr_remapping_enabled) {
1500 struct intel_iommu *iommu = map_ioapic_to_ir(apic);
1501 struct irte irte;
1502 struct IR_IO_APIC_route_entry *ir_entry =
1503 (struct IR_IO_APIC_route_entry *) entry;
1504 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001505
Ingo Molnar54168ed2008-08-20 09:07:45 +02001506 if (!iommu)
1507 panic("No mapping iommu for ioapic %d\n", apic);
1508
1509 index = alloc_irte(iommu, irq, 1);
1510 if (index < 0)
1511 panic("Failed to allocate IRTE for ioapic %d\n", apic);
1512
1513 memset(&irte, 0, sizeof(irte));
1514
1515 irte.present = 1;
1516 irte.dst_mode = INT_DEST_MODE;
1517 irte.trigger_mode = trigger;
1518 irte.dlvry_mode = INT_DELIVERY_MODE;
1519 irte.vector = vector;
1520 irte.dest_id = IRTE_DEST(destination);
1521
1522 modify_irte(irq, &irte);
1523
1524 ir_entry->index2 = (index >> 15) & 0x1;
1525 ir_entry->zero = 0;
1526 ir_entry->format = 1;
1527 ir_entry->index = (index & 0x7fff);
1528 } else
1529#endif
1530 {
1531 entry->delivery_mode = INT_DELIVERY_MODE;
1532 entry->dest_mode = INT_DEST_MODE;
1533 entry->dest = destination;
1534 }
1535
1536 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001537 entry->trigger = trigger;
1538 entry->polarity = polarity;
1539 entry->vector = vector;
1540
1541 /* Mask level triggered irqs.
1542 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1543 */
1544 if (trigger)
1545 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001546 return 0;
1547}
1548
Yinghai Lu3145e942008-12-05 18:58:34 -08001549static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001550 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001551{
1552 struct irq_cfg *cfg;
1553 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001554 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001555
1556 if (!IO_APIC_IRQ(irq))
1557 return;
1558
Yinghai Lu3145e942008-12-05 18:58:34 -08001559 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001560
Mike Travis22f65d32008-12-16 17:33:56 -08001561 if (assign_irq_vector(irq, cfg, TARGET_CPUS))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001562 return;
1563
Mike Travis22f65d32008-12-16 17:33:56 -08001564 dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001565
1566 apic_printk(APIC_VERBOSE,KERN_DEBUG
1567 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1568 "IRQ %d Mode:%i Active:%i)\n",
1569 apic, mp_ioapics[apic].mp_apicid, pin, cfg->vector,
1570 irq, trigger, polarity);
1571
1572
1573 if (setup_ioapic_entry(mp_ioapics[apic].mp_apicid, irq, &entry,
Mike Travis22f65d32008-12-16 17:33:56 -08001574 dest, trigger, polarity, cfg->vector)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001575 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1576 mp_ioapics[apic].mp_apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001577 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001578 return;
1579 }
1580
Yinghai Lu3145e942008-12-05 18:58:34 -08001581 ioapic_register_intr(irq, desc, trigger);
Yinghai Lu99d093d2008-12-05 18:58:32 -08001582 if (irq < NR_IRQS_LEGACY)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001583 disable_8259A_irq(irq);
1584
1585 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
1588static void __init setup_IO_APIC_irqs(void)
1589{
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001590 int apic, pin, idx, irq;
1591 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001592 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001593 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001594 int cpu = boot_cpu_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1597
1598 for (apic = 0; apic < nr_ioapics; apic++) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001599 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001601 idx = find_irq_entry(apic, pin, mp_INT);
1602 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001603 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001604 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001605 apic_printk(APIC_VERBOSE,
1606 KERN_DEBUG " %d-%d",
1607 mp_ioapics[apic].mp_apicid,
1608 pin);
1609 } else
1610 apic_printk(APIC_VERBOSE, " %d-%d",
1611 mp_ioapics[apic].mp_apicid,
1612 pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001613 continue;
1614 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001615 if (notcon) {
1616 apic_printk(APIC_VERBOSE,
1617 " (apicid-pin) not connected\n");
1618 notcon = 0;
1619 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001620
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001621 irq = pin_2_irq(idx, apic, pin);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001622#ifdef CONFIG_X86_32
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001623 if (multi_timer_check(apic, irq))
1624 continue;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001625#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001626 desc = irq_to_desc_alloc_cpu(irq, cpu);
1627 if (!desc) {
1628 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1629 continue;
1630 }
Yinghai Lu3145e942008-12-05 18:58:34 -08001631 cfg = desc->chip_data;
1632 add_pin_to_irq_cpu(cfg, cpu, apic, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001633
Yinghai Lu3145e942008-12-05 18:58:34 -08001634 setup_IO_APIC_irq(apic, pin, irq, desc,
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001635 irq_trigger(idx), irq_polarity(idx));
1636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001639 if (notcon)
1640 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001641 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001645 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001647static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1648 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Ingo Molnar54168ed2008-08-20 09:07:45 +02001652#ifdef CONFIG_INTR_REMAP
1653 if (intr_remapping_enabled)
1654 return;
1655#endif
1656
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001657 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 /*
1660 * We use logical delivery to get the timer IRQ
1661 * to the first CPU.
1662 */
1663 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001664 entry.mask = 1; /* mask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07001665 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 entry.delivery_mode = INT_DELIVERY_MODE;
1667 entry.polarity = 0;
1668 entry.trigger = 0;
1669 entry.vector = vector;
1670
1671 /*
1672 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001673 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001675 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 /*
1678 * Add it to the IO-APIC irq-routing table:
1679 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001680 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001683
1684__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 int apic, i;
1687 union IO_APIC_reg_00 reg_00;
1688 union IO_APIC_reg_01 reg_01;
1689 union IO_APIC_reg_02 reg_02;
1690 union IO_APIC_reg_03 reg_03;
1691 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001692 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001693 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001694 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 if (apic_verbosity == APIC_QUIET)
1697 return;
1698
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001699 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 for (i = 0; i < nr_ioapics; i++)
1701 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001702 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 /*
1705 * We are a bit conservative about what we expect. We have to
1706 * know about every hardware change ASAP.
1707 */
1708 printk(KERN_INFO "testing the IO APIC.......................\n");
1709
1710 for (apic = 0; apic < nr_ioapics; apic++) {
1711
1712 spin_lock_irqsave(&ioapic_lock, flags);
1713 reg_00.raw = io_apic_read(apic, 0);
1714 reg_01.raw = io_apic_read(apic, 1);
1715 if (reg_01.bits.version >= 0x10)
1716 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001717 if (reg_01.bits.version >= 0x20)
1718 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 spin_unlock_irqrestore(&ioapic_lock, flags);
1720
Ingo Molnar54168ed2008-08-20 09:07:45 +02001721 printk("\n");
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001722 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1724 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1725 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1726 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Ingo Molnar54168ed2008-08-20 09:07:45 +02001728 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1732 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 /*
1735 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1736 * but the value of reg_02 is read as the previous read register
1737 * value, so ignore it if reg_02 == reg_01.
1738 */
1739 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1740 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1741 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743
1744 /*
1745 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1746 * or reg_03, but the value of reg_0[23] is read as the previous read
1747 * register value, so ignore it if reg_03 == reg_0[12].
1748 */
1749 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1750 reg_03.raw != reg_01.raw) {
1751 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1752 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754
1755 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1756
Yinghai Lud83e94a2008-08-19 20:50:33 -07001757 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1758 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 for (i = 0; i <= reg_01.bits.entries; i++) {
1761 struct IO_APIC_route_entry entry;
1762
Andi Kleencf4c6a22006-09-26 10:52:30 +02001763 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Ingo Molnar54168ed2008-08-20 09:07:45 +02001765 printk(KERN_DEBUG " %02x %03X ",
1766 i,
1767 entry.dest
1768 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1771 entry.mask,
1772 entry.trigger,
1773 entry.irr,
1774 entry.polarity,
1775 entry.delivery_status,
1776 entry.dest_mode,
1777 entry.delivery_mode,
1778 entry.vector
1779 );
1780 }
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001783 for_each_irq_desc(irq, desc) {
1784 struct irq_pin_list *entry;
1785
1786 if (!desc)
1787 continue;
1788 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
Ingo Molnar54168ed2008-08-20 09:07:45 +02001985#ifdef CONFIG_X86_32
1986 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (!pirqs_enabled)
1988 for (i = 0; i < MAX_PIRQS; i++)
1989 pirq_entries[i] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001990#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 /*
1993 * The number of IO-APIC IRQ registers (== #pins):
1994 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001995 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001997 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001999 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
2000 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002001 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002002 int pin;
2003 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01002004 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002005 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02002006 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002007
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002008 /* If the interrupt line is enabled and in ExtInt mode
2009 * I have found the pin where the i8259 is connected.
2010 */
2011 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
2012 ioapic_i8259.apic = apic;
2013 ioapic_i8259.pin = pin;
2014 goto found_i8259;
2015 }
2016 }
2017 }
2018 found_i8259:
2019 /* Look to see what if the MP table has reported the ExtINT */
2020 /* If we could not find the appropriate pin by looking at the ioapic
2021 * the i8259 probably is not connected the ioapic but give the
2022 * mptable a chance anyway.
2023 */
2024 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2025 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2026 /* Trust the MP table if nothing is setup in the hardware */
2027 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2028 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2029 ioapic_i8259.pin = i8259_pin;
2030 ioapic_i8259.apic = i8259_apic;
2031 }
2032 /* Complain if the MP table and the hardware disagree */
2033 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2034 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2035 {
2036 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
2039 /*
2040 * Do not trust the IO-APIC being empty at bootup
2041 */
2042 clear_IO_APIC();
2043}
2044
2045/*
2046 * Not an __init, needed by the reboot code
2047 */
2048void disable_IO_APIC(void)
2049{
2050 /*
2051 * Clear the IO-APIC before rebooting:
2052 */
2053 clear_IO_APIC();
2054
Eric W. Biederman650927e2005-06-25 14:57:44 -07002055 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002056 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002057 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002058 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002059 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002060 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002061 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002062
2063 memset(&entry, 0, sizeof(entry));
2064 entry.mask = 0; /* Enabled */
2065 entry.trigger = 0; /* Edge */
2066 entry.irr = 0;
2067 entry.polarity = 0; /* High */
2068 entry.delivery_status = 0;
2069 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002070 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002071 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002072 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002073
2074 /*
2075 * Add it to the IO-APIC irq-routing table:
2076 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002077 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002078 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002079
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002080 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Ingo Molnar54168ed2008-08-20 09:07:45 +02002083#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084/*
2085 * function to set the IO-APIC physical IDs based on the
2086 * values stored in the MPC table.
2087 *
2088 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2089 */
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091static void __init setup_ioapic_ids_from_mpc(void)
2092{
2093 union IO_APIC_reg_00 reg_00;
2094 physid_mask_t phys_id_present_map;
2095 int apic;
2096 int i;
2097 unsigned char old_id;
2098 unsigned long flags;
2099
Yinghai Lua4dbc342008-07-25 02:14:28 -07002100 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002101 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002104 * Don't check I/O APIC IDs for xAPIC systems. They have
2105 * no meaning without the serial APIC bus.
2106 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002107 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2108 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002109 return;
2110 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 * This is broken; anything with a real cpu count has to
2112 * circumvent this idiocy regardless.
2113 */
2114 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
2115
2116 /*
2117 * Set the IOAPIC ID to the value stored in the MPC table.
2118 */
2119 for (apic = 0; apic < nr_ioapics; apic++) {
2120
2121 /* Read the register 0 value */
2122 spin_lock_irqsave(&ioapic_lock, flags);
2123 reg_00.raw = io_apic_read(apic, 0);
2124 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002125
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002126 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002128 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002130 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2132 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002133 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /*
2137 * Sanity check, is the ID really free? Every APIC in a
2138 * system must have a unique ID or we get lots of nice
2139 * 'stuck on smp_invalidate_needed IPI wait' messages.
2140 */
2141 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002142 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002144 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 for (i = 0; i < get_physical_broadcast(); i++)
2146 if (!physid_isset(i, phys_id_present_map))
2147 break;
2148 if (i >= get_physical_broadcast())
2149 panic("Max APIC ID exceeded!\n");
2150 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2151 i);
2152 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002153 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 } else {
2155 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002156 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 apic_printk(APIC_VERBOSE, "Setting %d in the "
2158 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002159 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2161 }
2162
2163
2164 /*
2165 * We need to adjust the IRQ routing table
2166 * if the ID changed.
2167 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002168 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002170 if (mp_irqs[i].mp_dstapic == old_id)
2171 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002172 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 /*
2175 * Read the right value from the MPC table and
2176 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 apic_printk(APIC_VERBOSE, KERN_INFO
2179 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002180 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002182 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002184 io_apic_write(apic, 0, reg_00.raw);
2185 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 /*
2188 * Sanity check
2189 */
2190 spin_lock_irqsave(&ioapic_lock, flags);
2191 reg_00.raw = io_apic_read(apic, 0);
2192 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002193 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 printk("could not set ID!\n");
2195 else
2196 apic_printk(APIC_VERBOSE, " ok.\n");
2197 }
2198}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002201int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002202
2203static int __init notimercheck(char *s)
2204{
2205 no_timer_check = 1;
2206 return 1;
2207}
2208__setup("no_timer_check", notimercheck);
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/*
2211 * There is a nasty bug in some older SMP boards, their mptable lies
2212 * about the timer IRQ. We do the following to work around the situation:
2213 *
2214 * - timer IRQ defaults to IO-APIC IRQ
2215 * - if this function detects that timer IRQs are defunct, then we fall
2216 * back to ISA timer IRQs
2217 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002218static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002221 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Zachary Amsden8542b202006-12-07 02:14:09 +01002223 if (no_timer_check)
2224 return 1;
2225
Ingo Molnar4aae0702007-12-18 18:05:58 +01002226 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 local_irq_enable();
2228 /* Let ten ticks pass... */
2229 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002230 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 /*
2233 * Expect a few ticks at least, to be sure some possible
2234 * glue logic does not lock up after one or two first
2235 * ticks in a non-ExtINT mode. Also the local APIC
2236 * might have cached one ExtINT interrupt. Finally, at
2237 * least one tick may be lost due to delays.
2238 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002239
2240 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002241 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return 0;
2244}
2245
2246/*
2247 * In the SMP+IOAPIC case it might happen that there are an unspecified
2248 * number of pending IRQ events unhandled. These cases are very rare,
2249 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2250 * better to do it this way as thus we do not have to be aware of
2251 * 'pending' interrupts in the IRQ path, except at this point.
2252 */
2253/*
2254 * Edge triggered needs to resend any interrupt
2255 * that was delayed but this is now handled in the device
2256 * independent code.
2257 */
2258
2259/*
2260 * Starting up a edge-triggered IO-APIC interrupt is
2261 * nasty - we need to make sure that we get the edge.
2262 * If it is already asserted for some reason, we need
2263 * return 1 to indicate that is was pending.
2264 *
2265 * This is not complete - we should be able to fake
2266 * an edge even if it isn't on the 8259A...
2267 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002268
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002269static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 int was_pending = 0;
2272 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002273 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu99d093d2008-12-05 18:58:32 -08002276 if (irq < NR_IRQS_LEGACY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 disable_8259A_irq(irq);
2278 if (i8259A_irq_pending(irq))
2279 was_pending = 1;
2280 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002281 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002282 __unmask_IO_APIC_irq(cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 spin_unlock_irqrestore(&ioapic_lock, flags);
2284
2285 return was_pending;
2286}
2287
Ingo Molnar54168ed2008-08-20 09:07:45 +02002288#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002289static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002291
2292 struct irq_cfg *cfg = irq_cfg(irq);
2293 unsigned long flags;
2294
2295 spin_lock_irqsave(&vector_lock, flags);
Mike Travis22f65d32008-12-16 17:33:56 -08002296 send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002297 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002298
2299 return 1;
2300}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002301#else
2302static int ioapic_retrigger_irq(unsigned int irq)
2303{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002304 send_IPI_self(irq_cfg(irq)->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002305
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002306 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002307}
2308#endif
2309
2310/*
2311 * Level and edge triggered IO-APIC interrupts need different handling,
2312 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2313 * handled with the level-triggered descriptor, but that one has slightly
2314 * more overhead. Level-triggered interrupts cannot be handled with the
2315 * edge-triggered handler, without risking IRQ storms and other ugly
2316 * races.
2317 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002318
Yinghai Lu497c9a12008-08-19 20:50:28 -07002319#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002320
2321#ifdef CONFIG_INTR_REMAP
2322static void ir_irq_migration(struct work_struct *work);
2323
2324static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration);
2325
2326/*
2327 * Migrate the IO-APIC irq in the presence of intr-remapping.
2328 *
2329 * For edge triggered, irq migration is a simple atomic update(of vector
2330 * and cpu destination) of IRTE and flush the hardware cache.
2331 *
2332 * For level triggered, we need to modify the io-apic RTE aswell with the update
2333 * vector information, along with modifying IRTE with vector and destination.
2334 * So irq migration for level triggered is little bit more complex compared to
2335 * edge triggered migration. But the good news is, we use the same algorithm
2336 * for level triggered migration as we have today, only difference being,
2337 * we now initiate the irq migration from process context instead of the
2338 * interrupt context.
2339 *
2340 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2341 * suppression) to the IO-APIC, level triggered irq migration will also be
2342 * as simple as edge triggered migration and we can do the irq migration
2343 * with a simple atomic update to IO-APIC RTE.
2344 */
Mike Travise7986732008-12-16 17:33:52 -08002345static void
2346migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002347{
2348 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002349 struct irte irte;
2350 int modify_ioapic_rte;
2351 unsigned int dest;
2352 unsigned long flags;
Yinghai Lu3145e942008-12-05 18:58:34 -08002353 unsigned int irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002354
Mike Travis22f65d32008-12-16 17:33:56 -08002355 if (!cpumask_intersects(mask, cpu_online_mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002356 return;
2357
Yinghai Lu3145e942008-12-05 18:58:34 -08002358 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002359 if (get_irte(irq, &irte))
2360 return;
2361
Yinghai Lu3145e942008-12-05 18:58:34 -08002362 cfg = desc->chip_data;
2363 if (assign_irq_vector(irq, cfg, mask))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002364 return;
2365
Yinghai Lu3145e942008-12-05 18:58:34 -08002366 set_extra_move_desc(desc, mask);
2367
Mike Travis22f65d32008-12-16 17:33:56 -08002368 dest = cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002369
Ingo Molnar54168ed2008-08-20 09:07:45 +02002370 modify_ioapic_rte = desc->status & IRQ_LEVEL;
2371 if (modify_ioapic_rte) {
2372 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08002373 __target_IO_APIC_irq(irq, dest, cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002374 spin_unlock_irqrestore(&ioapic_lock, flags);
2375 }
2376
2377 irte.vector = cfg->vector;
2378 irte.dest_id = IRTE_DEST(dest);
2379
2380 /*
2381 * Modified the IRTE and flushes the Interrupt entry cache.
2382 */
2383 modify_irte(irq, &irte);
2384
Mike Travis22f65d32008-12-16 17:33:56 -08002385 if (cfg->move_in_progress)
2386 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002387
Mike Travis22f65d32008-12-16 17:33:56 -08002388 cpumask_copy(&desc->affinity, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002389}
2390
Yinghai Lu3145e942008-12-05 18:58:34 -08002391static int migrate_irq_remapped_level_desc(struct irq_desc *desc)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392{
2393 int ret = -1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002394 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002395
Yinghai Lu3145e942008-12-05 18:58:34 -08002396 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002397
Yinghai Lu3145e942008-12-05 18:58:34 -08002398 if (io_apic_level_ack_pending(cfg)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002399 /*
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002400 * Interrupt in progress. Migrating irq now will change the
Ingo Molnar54168ed2008-08-20 09:07:45 +02002401 * vector information in the IO-APIC RTE and that will confuse
2402 * the EOI broadcast performed by cpu.
2403 * So, delay the irq migration to the next instance.
2404 */
2405 schedule_delayed_work(&ir_migration_work, 1);
2406 goto unmask;
2407 }
2408
2409 /* everthing is clear. we have right of way */
Mike Travise7986732008-12-16 17:33:52 -08002410 migrate_ioapic_irq_desc(desc, &desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002411
2412 ret = 0;
2413 desc->status &= ~IRQ_MOVE_PENDING;
Mike Travis22f65d32008-12-16 17:33:56 -08002414 cpumask_clear(&desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002415
2416unmask:
Yinghai Lu3145e942008-12-05 18:58:34 -08002417 unmask_IO_APIC_irq_desc(desc);
2418
Ingo Molnar54168ed2008-08-20 09:07:45 +02002419 return ret;
2420}
2421
2422static void ir_irq_migration(struct work_struct *work)
2423{
2424 unsigned int irq;
2425 struct irq_desc *desc;
2426
2427 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002428 if (!desc)
2429 continue;
2430
Ingo Molnar54168ed2008-08-20 09:07:45 +02002431 if (desc->status & IRQ_MOVE_PENDING) {
2432 unsigned long flags;
2433
2434 spin_lock_irqsave(&desc->lock, flags);
2435 if (!desc->chip->set_affinity ||
2436 !(desc->status & IRQ_MOVE_PENDING)) {
2437 desc->status &= ~IRQ_MOVE_PENDING;
2438 spin_unlock_irqrestore(&desc->lock, flags);
2439 continue;
2440 }
2441
Rusty Russell0de26522008-12-13 21:20:26 +10302442 desc->chip->set_affinity(irq, &desc->pending_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002443 spin_unlock_irqrestore(&desc->lock, flags);
2444 }
2445 }
2446}
2447
2448/*
2449 * Migrates the IRQ destination in the process context.
2450 */
Rusty Russell968ea6d2008-12-13 21:55:51 +10302451static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2452 const struct cpumask *mask)
Yinghai Lu3145e942008-12-05 18:58:34 -08002453{
2454 if (desc->status & IRQ_LEVEL) {
2455 desc->status |= IRQ_MOVE_PENDING;
Rusty Russell968ea6d2008-12-13 21:55:51 +10302456 cpumask_copy(&desc->pending_mask, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002457 migrate_irq_remapped_level_desc(desc);
2458 return;
2459 }
2460
Mike Travise7986732008-12-16 17:33:52 -08002461 migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002462}
Rusty Russell0de26522008-12-13 21:20:26 +10302463static void set_ir_ioapic_affinity_irq(unsigned int irq,
2464 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002465{
2466 struct irq_desc *desc = irq_to_desc(irq);
2467
Yinghai Lu3145e942008-12-05 18:58:34 -08002468 set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002469}
2470#endif
2471
Yinghai Lu497c9a12008-08-19 20:50:28 -07002472asmlinkage void smp_irq_move_cleanup_interrupt(void)
2473{
2474 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002475
Yinghai Lu497c9a12008-08-19 20:50:28 -07002476 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002477 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002478 irq_enter();
2479
2480 me = smp_processor_id();
2481 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2482 unsigned int irq;
2483 struct irq_desc *desc;
2484 struct irq_cfg *cfg;
2485 irq = __get_cpu_var(vector_irq)[vector];
2486
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002487 if (irq == -1)
2488 continue;
2489
Yinghai Lu497c9a12008-08-19 20:50:28 -07002490 desc = irq_to_desc(irq);
2491 if (!desc)
2492 continue;
2493
2494 cfg = irq_cfg(irq);
2495 spin_lock(&desc->lock);
2496 if (!cfg->move_cleanup_count)
2497 goto unlock;
2498
Mike Travis22f65d32008-12-16 17:33:56 -08002499 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002500 goto unlock;
2501
2502 __get_cpu_var(vector_irq)[vector] = -1;
2503 cfg->move_cleanup_count--;
2504unlock:
2505 spin_unlock(&desc->lock);
2506 }
2507
2508 irq_exit();
2509}
2510
Yinghai Lu3145e942008-12-05 18:58:34 -08002511static void irq_complete_move(struct irq_desc **descp)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002512{
Yinghai Lu3145e942008-12-05 18:58:34 -08002513 struct irq_desc *desc = *descp;
2514 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002515 unsigned vector, me;
2516
Yinghai Lu48a1b102008-12-11 00:15:01 -08002517 if (likely(!cfg->move_in_progress)) {
2518#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2519 if (likely(!cfg->move_desc_pending))
2520 return;
2521
Yinghai Lub9098952008-12-19 13:48:34 -08002522 /* domain has not changed, but affinity did */
Yinghai Lu48a1b102008-12-11 00:15:01 -08002523 me = smp_processor_id();
2524 if (cpu_isset(me, desc->affinity)) {
2525 *descp = desc = move_irq_desc(desc, me);
2526 /* get the new one */
2527 cfg = desc->chip_data;
2528 cfg->move_desc_pending = 0;
2529 }
2530#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002531 return;
Yinghai Lu48a1b102008-12-11 00:15:01 -08002532 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002533
2534 vector = ~get_irq_regs()->orig_ax;
2535 me = smp_processor_id();
Yinghai Lu48a1b102008-12-11 00:15:01 -08002536#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2537 *descp = desc = move_irq_desc(desc, me);
2538 /* get the new one */
2539 cfg = desc->chip_data;
2540#endif
2541
Mike Travis22f65d32008-12-16 17:33:56 -08002542 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
2543 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002544}
2545#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002546static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002547#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002548
Ingo Molnar54168ed2008-08-20 09:07:45 +02002549#ifdef CONFIG_INTR_REMAP
2550static void ack_x2apic_level(unsigned int irq)
2551{
2552 ack_x2APIC_irq();
2553}
2554
2555static void ack_x2apic_edge(unsigned int irq)
2556{
2557 ack_x2APIC_irq();
2558}
Yinghai Lu3145e942008-12-05 18:58:34 -08002559
Ingo Molnar54168ed2008-08-20 09:07:45 +02002560#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002561
Yinghai Lu1d025192008-08-19 20:50:34 -07002562static void ack_apic_edge(unsigned int irq)
2563{
Yinghai Lu3145e942008-12-05 18:58:34 -08002564 struct irq_desc *desc = irq_to_desc(irq);
2565
2566 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002567 move_native_irq(irq);
2568 ack_APIC_irq();
2569}
2570
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002571atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002572
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002573static void ack_apic_level(unsigned int irq)
2574{
Yinghai Lu3145e942008-12-05 18:58:34 -08002575 struct irq_desc *desc = irq_to_desc(irq);
2576
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002577#ifdef CONFIG_X86_32
2578 unsigned long v;
2579 int i;
2580#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002581 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002582 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002583
Yinghai Lu3145e942008-12-05 18:58:34 -08002584 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002585#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002586 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002587 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002588 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002589 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002590 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002591#endif
2592
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002593#ifdef CONFIG_X86_32
2594 /*
2595 * It appears there is an erratum which affects at least version 0x11
2596 * of I/O APIC (that's the 82093AA and cores integrated into various
2597 * chipsets). Under certain conditions a level-triggered interrupt is
2598 * erroneously delivered as edge-triggered one but the respective IRR
2599 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2600 * message but it will never arrive and further interrupts are blocked
2601 * from the source. The exact reason is so far unknown, but the
2602 * phenomenon was observed when two consecutive interrupt requests
2603 * from a given source get delivered to the same CPU and the source is
2604 * temporarily disabled in between.
2605 *
2606 * A workaround is to simulate an EOI message manually. We achieve it
2607 * by setting the trigger mode to edge and then to level when the edge
2608 * trigger mode gets detected in the TMR of a local APIC for a
2609 * level-triggered interrupt. We mask the source for the time of the
2610 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2611 * The idea is from Manfred Spraul. --macro
2612 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002613 cfg = desc->chip_data;
2614 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002615
2616 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2617#endif
2618
Ingo Molnar54168ed2008-08-20 09:07:45 +02002619 /*
2620 * We must acknowledge the irq before we move it or the acknowledge will
2621 * not propagate properly.
2622 */
2623 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002624
Ingo Molnar54168ed2008-08-20 09:07:45 +02002625 /* Now we can move and renable the irq */
2626 if (unlikely(do_unmask_irq)) {
2627 /* Only migrate the irq if the ack has been received.
2628 *
2629 * On rare occasions the broadcast level triggered ack gets
2630 * delayed going to ioapics, and if we reprogram the
2631 * vector while Remote IRR is still set the irq will never
2632 * fire again.
2633 *
2634 * To prevent this scenario we read the Remote IRR bit
2635 * of the ioapic. This has two effects.
2636 * - On any sane system the read of the ioapic will
2637 * flush writes (and acks) going to the ioapic from
2638 * this cpu.
2639 * - We get to see if the ACK has actually been delivered.
2640 *
2641 * Based on failed experiments of reprogramming the
2642 * ioapic entry from outside of irq context starting
2643 * with masking the ioapic entry and then polling until
2644 * Remote IRR was clear before reprogramming the
2645 * ioapic I don't trust the Remote IRR bit to be
2646 * completey accurate.
2647 *
2648 * However there appears to be no other way to plug
2649 * this race, so if the Remote IRR bit is not
2650 * accurate and is causing problems then it is a hardware bug
2651 * and you can go talk to the chipset vendor about it.
2652 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002653 cfg = desc->chip_data;
2654 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002655 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002656 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002657 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002658
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002659#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002660 if (!(v & (1 << (i & 0x1f)))) {
2661 atomic_inc(&irq_mis_count);
2662 spin_lock(&ioapic_lock);
Yinghai Lu3145e942008-12-05 18:58:34 -08002663 __mask_and_edge_IO_APIC_irq(cfg);
2664 __unmask_and_level_IO_APIC_irq(cfg);
Yinghai Lu1d025192008-08-19 20:50:34 -07002665 spin_unlock(&ioapic_lock);
2666 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002667#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002668}
Yinghai Lu1d025192008-08-19 20:50:34 -07002669
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002670static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002671 .name = "IO-APIC",
2672 .startup = startup_ioapic_irq,
2673 .mask = mask_IO_APIC_irq,
2674 .unmask = unmask_IO_APIC_irq,
2675 .ack = ack_apic_edge,
2676 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002677#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002678 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002679#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002680 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681};
2682
Ingo Molnar54168ed2008-08-20 09:07:45 +02002683#ifdef CONFIG_INTR_REMAP
2684static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002685 .name = "IR-IO-APIC",
2686 .startup = startup_ioapic_irq,
2687 .mask = mask_IO_APIC_irq,
2688 .unmask = unmask_IO_APIC_irq,
2689 .ack = ack_x2apic_edge,
2690 .eoi = ack_x2apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002691#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002692 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002693#endif
2694 .retrigger = ioapic_retrigger_irq,
2695};
2696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
2698static inline void init_IO_APIC_traps(void)
2699{
2700 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002701 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002702 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 /*
2705 * NOTE! The local APIC isn't very good at handling
2706 * multiple interrupts at the same interrupt level.
2707 * As the interrupt level is determined by taking the
2708 * vector number and shifting that right by 4, we
2709 * want to spread these out a bit so that they don't
2710 * all fall in the same interrupt level.
2711 *
2712 * Also, we've got to be careful not to trash gate
2713 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2714 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002715 for_each_irq_desc(irq, desc) {
2716 if (!desc)
2717 continue;
2718
2719 cfg = desc->chip_data;
2720 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 /*
2722 * Hmm.. We don't have an entry for this,
2723 * so default to an old-fashioned 8259
2724 * interrupt if we can..
2725 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08002726 if (irq < NR_IRQS_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002728 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002730 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
2732 }
2733}
2734
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002735/*
2736 * The local APIC irq-chip implementation:
2737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002739static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
2741 unsigned long v;
2742
2743 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002744 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002747static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002749 unsigned long v;
2750
2751 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002752 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
2754
Yinghai Lu3145e942008-12-05 18:58:34 -08002755static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002756{
2757 ack_APIC_irq();
2758}
2759
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002760static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002761 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002762 .mask = mask_lapic_irq,
2763 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002764 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765};
2766
Yinghai Lu3145e942008-12-05 18:58:34 -08002767static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002768{
Yinghai Lu08678b02008-08-19 20:50:05 -07002769 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002770 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2771 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002772}
2773
Jan Beuliche9427102008-01-30 13:31:24 +01002774static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
2776 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002777 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 * We put the 8259A master into AEOI mode and
2779 * unmask on all local APICs LVT0 as NMI.
2780 *
2781 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2782 * is from Maciej W. Rozycki - so we do not have to EOI from
2783 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2786
Jan Beuliche9427102008-01-30 13:31:24 +01002787 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 apic_printk(APIC_VERBOSE, " done.\n");
2790}
2791
2792/*
2793 * This looks a bit hackish but it's about the only one way of sending
2794 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2795 * not support the ExtINT mode, unfortunately. We need to send these
2796 * cycles as some i82489DX-based boards have glue logic that keeps the
2797 * 8259A interrupt line asserted until INTA. --macro
2798 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002799static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002801 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 struct IO_APIC_route_entry entry0, entry1;
2803 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002805 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002806 if (pin == -1) {
2807 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002809 }
2810 apic = find_isa_irq_apic(8, mp_INT);
2811 if (apic == -1) {
2812 WARN_ON_ONCE(1);
2813 return;
2814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Andi Kleencf4c6a22006-09-26 10:52:30 +02002816 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002817 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 memset(&entry1, 0, sizeof(entry1));
2820
2821 entry1.dest_mode = 0; /* physical delivery */
2822 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002823 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 entry1.delivery_mode = dest_ExtINT;
2825 entry1.polarity = entry0.polarity;
2826 entry1.trigger = 0;
2827 entry1.vector = 0;
2828
Andi Kleencf4c6a22006-09-26 10:52:30 +02002829 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 save_control = CMOS_READ(RTC_CONTROL);
2832 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2833 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2834 RTC_FREQ_SELECT);
2835 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2836
2837 i = 100;
2838 while (i-- > 0) {
2839 mdelay(10);
2840 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2841 i -= 10;
2842 }
2843
2844 CMOS_WRITE(save_control, RTC_CONTROL);
2845 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002846 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Andi Kleencf4c6a22006-09-26 10:52:30 +02002848 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849}
2850
Yinghai Luefa25592008-08-19 20:50:36 -07002851static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002852/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002853static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002854{
2855 disable_timer_pin_1 = 1;
2856 return 0;
2857}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002858early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002859
2860int timer_through_8259 __initdata;
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862/*
2863 * This code may look a bit paranoid, but it's supposed to cooperate with
2864 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2865 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2866 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002867 *
2868 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002870static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
Yinghai Lu3145e942008-12-05 18:58:34 -08002872 struct irq_desc *desc = irq_to_desc(0);
2873 struct irq_cfg *cfg = desc->chip_data;
2874 int cpu = boot_cpu_id;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002875 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002876 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002877 unsigned int ver;
2878 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002879
2880 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002881
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002882 ver = apic_read(APIC_LVR);
2883 ver = GET_APIC_VERSION(ver);
Ingo Molnar6e908942008-03-21 14:32:36 +01002884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 /*
2886 * get/set the timer IRQ vector:
2887 */
2888 disable_8259A_irq(0);
Yinghai Lu3145e942008-12-05 18:58:34 -08002889 assign_irq_vector(0, cfg, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002892 * As IRQ0 is to be enabled in the 8259A, the virtual
2893 * wire has to be disabled in the local APIC. Also
2894 * timer interrupts need to be acknowledged manually in
2895 * the 8259A for the i82489DX when using the NMI
2896 * watchdog as that APIC treats NMIs as level-triggered.
2897 * The AEOI mode will finish them in the 8259A
2898 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002900 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002902#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002903 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Ingo Molnar54168ed2008-08-20 09:07:45 +02002904#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002906 pin1 = find_isa_irq_pin(0, mp_INT);
2907 apic1 = find_isa_irq_apic(0, mp_INT);
2908 pin2 = ioapic_i8259.pin;
2909 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002911 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2912 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002913 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002915 /*
2916 * Some BIOS writers are clueless and report the ExtINTA
2917 * I/O APIC input from the cascaded 8259A as the timer
2918 * interrupt input. So just in case, if only one pin
2919 * was found above, try it both directly and through the
2920 * 8259A.
2921 */
2922 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002923#ifdef CONFIG_INTR_REMAP
2924 if (intr_remapping_enabled)
2925 panic("BIOS bug: timer not connected to IO-APIC");
2926#endif
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002927 pin1 = pin2;
2928 apic1 = apic2;
2929 no_pin1 = 1;
2930 } else if (pin2 == -1) {
2931 pin2 = pin1;
2932 apic2 = apic1;
2933 }
2934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (pin1 != -1) {
2936 /*
2937 * Ok, does IRQ0 through the IOAPIC work?
2938 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002939 if (no_pin1) {
Yinghai Lu3145e942008-12-05 18:58:34 -08002940 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002941 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002942 }
Yinghai Lu3145e942008-12-05 18:58:34 -08002943 unmask_IO_APIC_irq_desc(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 if (timer_irq_works()) {
2945 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 setup_nmi();
2947 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002949 if (disable_timer_pin_1 > 0)
2950 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002951 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002953#ifdef CONFIG_INTR_REMAP
2954 if (intr_remapping_enabled)
2955 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2956#endif
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002957 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002958 if (!no_pin1)
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002959 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2960 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002962 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2963 "(IRQ0) through the 8259A ...\n");
2964 apic_printk(APIC_QUIET, KERN_INFO
2965 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 /*
2967 * legacy devices should be connected to IO APIC #0
2968 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002969 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002970 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Yinghai Lu3145e942008-12-05 18:58:34 -08002971 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002972 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002974 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002975 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002977 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002979 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002981 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 }
2983 /*
2984 * Cleanup, just in case ...
2985 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002986 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002987 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002988 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002992 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2993 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002994 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002996#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002997 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002998#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003000 apic_printk(APIC_QUIET, KERN_INFO
3001 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Yinghai Lu3145e942008-12-05 18:58:34 -08003003 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003004 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 enable_8259A_irq(0);
3006
3007 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003008 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003009 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003011 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003012 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003013 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003015 apic_printk(APIC_QUIET, KERN_INFO
3016 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 init_8259A(0);
3019 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003020 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
3022 unlock_ExtINT_logic();
3023
3024 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003025 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003026 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 }
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003028 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01003030 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003031out:
3032 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
3035/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003036 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3037 * to devices. However there may be an I/O APIC pin available for
3038 * this interrupt regardless. The pin may be left unconnected, but
3039 * typically it will be reused as an ExtINT cascade interrupt for
3040 * the master 8259A. In the MPS case such a pin will normally be
3041 * reported as an ExtINT interrupt in the MP table. With ACPI
3042 * there is no provision for ExtINT interrupts, and in the absence
3043 * of an override it would be treated as an ordinary ISA I/O APIC
3044 * interrupt, that is edge-triggered and unmasked by default. We
3045 * used to do this, but it caused problems on some systems because
3046 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3047 * the same ExtINT cascade interrupt to drive the local APIC of the
3048 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3049 * the I/O APIC in all cases now. No actual device should request
3050 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 */
3052#define PIC_IRQS (1 << PIC_CASCADE_IR)
3053
3054void __init setup_IO_APIC(void)
3055{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003056
3057#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 enable_IO_APIC();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003059#else
3060 /*
3061 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3062 */
3063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003065 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Ingo Molnar54168ed2008-08-20 09:07:45 +02003067 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003068 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003069 * Set up IO-APIC IRQ routing.
3070 */
3071#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003072 if (!acpi_ioapic)
3073 setup_ioapic_ids_from_mpc();
Ingo Molnar54168ed2008-08-20 09:07:45 +02003074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 sync_Arb_IDs();
3076 setup_IO_APIC_irqs();
3077 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08003078 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
3081/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003082 * Called after all the initialization is done. If we didnt find any
3083 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086static int __init io_apic_bug_finalize(void)
3087{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003088 if (sis_apic_bug == -1)
3089 sis_apic_bug = 0;
3090 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091}
3092
3093late_initcall(io_apic_bug_finalize);
3094
3095struct sysfs_ioapic_data {
3096 struct sys_device dev;
3097 struct IO_APIC_route_entry entry[0];
3098};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003099static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Pavel Machek438510f2005-04-16 15:25:24 -07003101static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103 struct IO_APIC_route_entry *entry;
3104 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 data = container_of(dev, struct sysfs_ioapic_data, dev);
3108 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003109 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3110 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
3112 return 0;
3113}
3114
3115static int ioapic_resume(struct sys_device *dev)
3116{
3117 struct IO_APIC_route_entry *entry;
3118 struct sysfs_ioapic_data *data;
3119 unsigned long flags;
3120 union IO_APIC_reg_00 reg_00;
3121 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 data = container_of(dev, struct sysfs_ioapic_data, dev);
3124 entry = data->entry;
3125
3126 spin_lock_irqsave(&ioapic_lock, flags);
3127 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04003128 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
3129 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 io_apic_write(dev->id, 0, reg_00.raw);
3131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003133 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003134 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136 return 0;
3137}
3138
3139static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003140 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 .suspend = ioapic_suspend,
3142 .resume = ioapic_resume,
3143};
3144
3145static int __init ioapic_init_sysfs(void)
3146{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003147 struct sys_device * dev;
3148 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150 error = sysdev_class_register(&ioapic_sysdev_class);
3151 if (error)
3152 return error;
3153
Ingo Molnar54168ed2008-08-20 09:07:45 +02003154 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003155 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003157 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 if (!mp_ioapic_data[i]) {
3159 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3160 continue;
3161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003163 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 dev->cls = &ioapic_sysdev_class;
3165 error = sysdev_register(dev);
3166 if (error) {
3167 kfree(mp_ioapic_data[i]);
3168 mp_ioapic_data[i] = NULL;
3169 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3170 continue;
3171 }
3172 }
3173
3174 return 0;
3175}
3176
3177device_initcall(ioapic_init_sysfs);
3178
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003179/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003180 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003181 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003182unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003183{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003184 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003185 unsigned int irq;
3186 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003187 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003188 struct irq_cfg *cfg_new = NULL;
3189 int cpu = boot_cpu_id;
3190 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003191
3192 irq = 0;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003193 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lube5d5352008-12-05 18:58:33 -08003194 for (new = irq_want; new < NR_IRQS; new++) {
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003195 if (platform_legacy_irq(new))
3196 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003197
3198 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3199 if (!desc_new) {
3200 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003201 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003202 }
3203 cfg_new = desc_new->chip_data;
3204
3205 if (cfg_new->vector != 0)
3206 continue;
Yinghai Lu3145e942008-12-05 18:58:34 -08003207 if (__assign_irq_vector(new, cfg_new, TARGET_CPUS) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003208 irq = new;
3209 break;
3210 }
3211 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003212
Yinghai Lu199751d2008-08-19 20:50:27 -07003213 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003214 dynamic_irq_init(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003215 /* restore it, in case dynamic_irq_init clear it */
3216 if (desc_new)
3217 desc_new->chip_data = cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003218 }
3219 return irq;
3220}
3221
Yinghai Lube5d5352008-12-05 18:58:33 -08003222static int nr_irqs_gsi = NR_IRQS_LEGACY;
Yinghai Lu199751d2008-08-19 20:50:27 -07003223int create_irq(void)
3224{
Yinghai Lube5d5352008-12-05 18:58:33 -08003225 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003226 int irq;
3227
Yinghai Lube5d5352008-12-05 18:58:33 -08003228 irq_want = nr_irqs_gsi;
3229 irq = create_irq_nr(irq_want);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003230
3231 if (irq == 0)
3232 irq = -1;
3233
3234 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003235}
3236
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003237void destroy_irq(unsigned int irq)
3238{
3239 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003240 struct irq_cfg *cfg;
3241 struct irq_desc *desc;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003242
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003243 /* store it, in case dynamic_irq_cleanup clear it */
3244 desc = irq_to_desc(irq);
3245 cfg = desc->chip_data;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003246 dynamic_irq_cleanup(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003247 /* connect back irq_cfg */
3248 if (desc)
3249 desc->chip_data = cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003250
Ingo Molnar54168ed2008-08-20 09:07:45 +02003251#ifdef CONFIG_INTR_REMAP
3252 free_irte(irq);
3253#endif
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003254 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08003255 __clear_irq_vector(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003256 spin_unlock_irqrestore(&vector_lock, flags);
3257}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003258
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003259/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003260 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003261 */
3262#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003263static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003264{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003265 struct irq_cfg *cfg;
3266 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003267 unsigned dest;
3268
Yinghai Lu3145e942008-12-05 18:58:34 -08003269 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08003270 err = assign_irq_vector(irq, cfg, TARGET_CPUS);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003271 if (err)
3272 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003273
Mike Travis22f65d32008-12-16 17:33:56 -08003274 dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003275
Ingo Molnar54168ed2008-08-20 09:07:45 +02003276#ifdef CONFIG_INTR_REMAP
3277 if (irq_remapped(irq)) {
3278 struct irte irte;
3279 int ir_index;
3280 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003281
Ingo Molnar54168ed2008-08-20 09:07:45 +02003282 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3283 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003284
Ingo Molnar54168ed2008-08-20 09:07:45 +02003285 memset (&irte, 0, sizeof(irte));
3286
3287 irte.present = 1;
3288 irte.dst_mode = INT_DEST_MODE;
3289 irte.trigger_mode = 0; /* edge */
3290 irte.dlvry_mode = INT_DELIVERY_MODE;
3291 irte.vector = cfg->vector;
3292 irte.dest_id = IRTE_DEST(dest);
3293
3294 modify_irte(irq, &irte);
3295
3296 msg->address_hi = MSI_ADDR_BASE_HI;
3297 msg->data = sub_handle;
3298 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3299 MSI_ADDR_IR_SHV |
3300 MSI_ADDR_IR_INDEX1(ir_index) |
3301 MSI_ADDR_IR_INDEX2(ir_index);
3302 } else
3303#endif
3304 {
3305 msg->address_hi = MSI_ADDR_BASE_HI;
3306 msg->address_lo =
3307 MSI_ADDR_BASE_LO |
3308 ((INT_DEST_MODE == 0) ?
3309 MSI_ADDR_DEST_MODE_PHYSICAL:
3310 MSI_ADDR_DEST_MODE_LOGICAL) |
3311 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3312 MSI_ADDR_REDIRECTION_CPU:
3313 MSI_ADDR_REDIRECTION_LOWPRI) |
3314 MSI_ADDR_DEST_ID(dest);
3315
3316 msg->data =
3317 MSI_DATA_TRIGGER_EDGE |
3318 MSI_DATA_LEVEL_ASSERT |
3319 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3320 MSI_DATA_DELIVERY_FIXED:
3321 MSI_DATA_DELIVERY_LOWPRI) |
3322 MSI_DATA_VECTOR(cfg->vector);
3323 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003324 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003325}
3326
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003327#ifdef CONFIG_SMP
Rusty Russell0de26522008-12-13 21:20:26 +10303328static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003329{
Yinghai Lu3145e942008-12-05 18:58:34 -08003330 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003331 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003332 struct msi_msg msg;
3333 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003334
Mike Travis22f65d32008-12-16 17:33:56 -08003335 dest = set_desc_affinity(desc, mask);
3336 if (dest == BAD_APICID)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003337 return;
3338
Yinghai Lu3145e942008-12-05 18:58:34 -08003339 cfg = desc->chip_data;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003340
Yinghai Lu3145e942008-12-05 18:58:34 -08003341 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003342
3343 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003344 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003345 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3346 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3347
Yinghai Lu3145e942008-12-05 18:58:34 -08003348 write_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003349}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003350#ifdef CONFIG_INTR_REMAP
3351/*
3352 * Migrate the MSI irq to another cpumask. This migration is
3353 * done in the process context using interrupt-remapping hardware.
3354 */
Mike Travise7986732008-12-16 17:33:52 -08003355static void
3356ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003357{
Yinghai Lu3145e942008-12-05 18:58:34 -08003358 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003359 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003360 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003361 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003362
Ingo Molnar54168ed2008-08-20 09:07:45 +02003363 if (get_irte(irq, &irte))
3364 return;
3365
Mike Travis22f65d32008-12-16 17:33:56 -08003366 dest = set_desc_affinity(desc, mask);
3367 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003368 return;
3369
Ingo Molnar54168ed2008-08-20 09:07:45 +02003370 irte.vector = cfg->vector;
3371 irte.dest_id = IRTE_DEST(dest);
3372
3373 /*
3374 * atomically update the IRTE with the new destination and vector.
3375 */
3376 modify_irte(irq, &irte);
3377
3378 /*
3379 * After this point, all the interrupts will start arriving
3380 * at the new destination. So, time to cleanup the previous
3381 * vector allocation.
3382 */
Mike Travis22f65d32008-12-16 17:33:56 -08003383 if (cfg->move_in_progress)
3384 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003385}
Yinghai Lu3145e942008-12-05 18:58:34 -08003386
Ingo Molnar54168ed2008-08-20 09:07:45 +02003387#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003388#endif /* CONFIG_SMP */
3389
3390/*
3391 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3392 * which implement the MSI or MSI-X Capability Structure.
3393 */
3394static struct irq_chip msi_chip = {
3395 .name = "PCI-MSI",
3396 .unmask = unmask_msi_irq,
3397 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003398 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003399#ifdef CONFIG_SMP
3400 .set_affinity = set_msi_irq_affinity,
3401#endif
3402 .retrigger = ioapic_retrigger_irq,
3403};
3404
Ingo Molnar54168ed2008-08-20 09:07:45 +02003405#ifdef CONFIG_INTR_REMAP
3406static struct irq_chip msi_ir_chip = {
3407 .name = "IR-PCI-MSI",
3408 .unmask = unmask_msi_irq,
3409 .mask = mask_msi_irq,
3410 .ack = ack_x2apic_edge,
3411#ifdef CONFIG_SMP
3412 .set_affinity = ir_set_msi_irq_affinity,
3413#endif
3414 .retrigger = ioapic_retrigger_irq,
3415};
3416
3417/*
3418 * Map the PCI dev to the corresponding remapping hardware unit
3419 * and allocate 'nvec' consecutive interrupt-remapping table entries
3420 * in it.
3421 */
3422static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3423{
3424 struct intel_iommu *iommu;
3425 int index;
3426
3427 iommu = map_dev_to_ir(dev);
3428 if (!iommu) {
3429 printk(KERN_ERR
3430 "Unable to map PCI %s to iommu\n", pci_name(dev));
3431 return -ENOENT;
3432 }
3433
3434 index = alloc_irte(iommu, irq, nvec);
3435 if (index < 0) {
3436 printk(KERN_ERR
3437 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003438 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003439 return -ENOSPC;
3440 }
3441 return index;
3442}
3443#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07003444
Yinghai Lu3145e942008-12-05 18:58:34 -08003445static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003446{
3447 int ret;
3448 struct msi_msg msg;
3449
3450 ret = msi_compose_msg(dev, irq, &msg);
3451 if (ret < 0)
3452 return ret;
3453
Yinghai Lu3145e942008-12-05 18:58:34 -08003454 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003455 write_msi_msg(irq, &msg);
3456
Ingo Molnar54168ed2008-08-20 09:07:45 +02003457#ifdef CONFIG_INTR_REMAP
3458 if (irq_remapped(irq)) {
3459 struct irq_desc *desc = irq_to_desc(irq);
3460 /*
3461 * irq migration in process context
3462 */
3463 desc->status |= IRQ_MOVE_PCNTXT;
3464 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3465 } else
3466#endif
3467 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003468
Yinghai Luc81bba42008-09-25 11:53:11 -07003469 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3470
Yinghai Lu1d025192008-08-19 20:50:34 -07003471 return 0;
3472}
3473
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003474int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003475{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003476 unsigned int irq;
3477 int ret;
Yinghai Lu199751d2008-08-19 20:50:27 -07003478 unsigned int irq_want;
3479
Yinghai Lube5d5352008-12-05 18:58:33 -08003480 irq_want = nr_irqs_gsi;
Yinghai Lu199751d2008-08-19 20:50:27 -07003481 irq = create_irq_nr(irq_want);
Yinghai Lu199751d2008-08-19 20:50:27 -07003482 if (irq == 0)
3483 return -1;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003484
Ingo Molnar54168ed2008-08-20 09:07:45 +02003485#ifdef CONFIG_INTR_REMAP
3486 if (!intr_remapping_enabled)
3487 goto no_ir;
3488
3489 ret = msi_alloc_irte(dev, irq, 1);
3490 if (ret < 0)
3491 goto error;
3492no_ir:
3493#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003494 ret = setup_msi_irq(dev, msidesc, irq);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003495 if (ret < 0) {
3496 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003497 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003498 }
Michael Ellerman7fe37302007-04-18 19:39:21 +10003499 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003500
3501#ifdef CONFIG_INTR_REMAP
3502error:
3503 destroy_irq(irq);
3504 return ret;
3505#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003506}
3507
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003508int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3509{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003510 unsigned int irq;
3511 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003512 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003513 unsigned int irq_want;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003514
Ingo Molnar54168ed2008-08-20 09:07:45 +02003515#ifdef CONFIG_INTR_REMAP
3516 struct intel_iommu *iommu = 0;
3517 int index = 0;
3518#endif
3519
Yinghai Lube5d5352008-12-05 18:58:33 -08003520 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003522 list_for_each_entry(msidesc, &dev->msi_list, list) {
3523 irq = create_irq_nr(irq_want);
Yinghai Lube5d5352008-12-05 18:58:33 -08003524 irq_want++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003525 if (irq == 0)
3526 return -1;
3527#ifdef CONFIG_INTR_REMAP
3528 if (!intr_remapping_enabled)
3529 goto no_ir;
3530
3531 if (!sub_handle) {
3532 /*
3533 * allocate the consecutive block of IRTE's
3534 * for 'nvec'
3535 */
3536 index = msi_alloc_irte(dev, irq, nvec);
3537 if (index < 0) {
3538 ret = index;
3539 goto error;
3540 }
3541 } else {
3542 iommu = map_dev_to_ir(dev);
3543 if (!iommu) {
3544 ret = -ENOENT;
3545 goto error;
3546 }
3547 /*
3548 * setup the mapping between the irq and the IRTE
3549 * base index, the sub_handle pointing to the
3550 * appropriate interrupt remap table entry.
3551 */
3552 set_irte_irq(irq, iommu, index, sub_handle);
3553 }
3554no_ir:
3555#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003556 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003557 if (ret < 0)
3558 goto error;
3559 sub_handle++;
3560 }
3561 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003562
3563error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003564 destroy_irq(irq);
3565 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003566}
3567
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003568void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003569{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003570 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003571}
3572
Ingo Molnar54168ed2008-08-20 09:07:45 +02003573#ifdef CONFIG_DMAR
3574#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003575static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003576{
Yinghai Lu3145e942008-12-05 18:58:34 -08003577 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003578 struct irq_cfg *cfg;
3579 struct msi_msg msg;
3580 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003581
Mike Travis22f65d32008-12-16 17:33:56 -08003582 dest = set_desc_affinity(desc, mask);
3583 if (dest == BAD_APICID)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003584 return;
3585
Yinghai Lu3145e942008-12-05 18:58:34 -08003586 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003587
3588 dmar_msi_read(irq, &msg);
3589
3590 msg.data &= ~MSI_DATA_VECTOR_MASK;
3591 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3592 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3593 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3594
3595 dmar_msi_write(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003596}
Yinghai Lu3145e942008-12-05 18:58:34 -08003597
Ingo Molnar54168ed2008-08-20 09:07:45 +02003598#endif /* CONFIG_SMP */
3599
3600struct irq_chip dmar_msi_type = {
3601 .name = "DMAR_MSI",
3602 .unmask = dmar_msi_unmask,
3603 .mask = dmar_msi_mask,
3604 .ack = ack_apic_edge,
3605#ifdef CONFIG_SMP
3606 .set_affinity = dmar_msi_set_affinity,
3607#endif
3608 .retrigger = ioapic_retrigger_irq,
3609};
3610
3611int arch_setup_dmar_msi(unsigned int irq)
3612{
3613 int ret;
3614 struct msi_msg msg;
3615
3616 ret = msi_compose_msg(NULL, irq, &msg);
3617 if (ret < 0)
3618 return ret;
3619 dmar_msi_write(irq, &msg);
3620 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3621 "edge");
3622 return 0;
3623}
3624#endif
3625
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003626#ifdef CONFIG_HPET_TIMER
3627
3628#ifdef CONFIG_SMP
Mike Travis22f65d32008-12-16 17:33:56 -08003629static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003630{
Yinghai Lu3145e942008-12-05 18:58:34 -08003631 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003632 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003633 struct msi_msg msg;
3634 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003635
Mike Travis22f65d32008-12-16 17:33:56 -08003636 dest = set_desc_affinity(desc, mask);
3637 if (dest == BAD_APICID)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003638 return;
3639
Yinghai Lu3145e942008-12-05 18:58:34 -08003640 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003641
3642 hpet_msi_read(irq, &msg);
3643
3644 msg.data &= ~MSI_DATA_VECTOR_MASK;
3645 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3646 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3647 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3648
3649 hpet_msi_write(irq, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003650}
Yinghai Lu3145e942008-12-05 18:58:34 -08003651
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003652#endif /* CONFIG_SMP */
3653
3654struct irq_chip hpet_msi_type = {
3655 .name = "HPET_MSI",
3656 .unmask = hpet_msi_unmask,
3657 .mask = hpet_msi_mask,
3658 .ack = ack_apic_edge,
3659#ifdef CONFIG_SMP
3660 .set_affinity = hpet_msi_set_affinity,
3661#endif
3662 .retrigger = ioapic_retrigger_irq,
3663};
3664
3665int arch_setup_hpet_msi(unsigned int irq)
3666{
3667 int ret;
3668 struct msi_msg msg;
3669
3670 ret = msi_compose_msg(NULL, irq, &msg);
3671 if (ret < 0)
3672 return ret;
3673
3674 hpet_msi_write(irq, &msg);
3675 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3676 "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003677
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003678 return 0;
3679}
3680#endif
3681
Ingo Molnar54168ed2008-08-20 09:07:45 +02003682#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003683/*
3684 * Hypertransport interrupt support
3685 */
3686#ifdef CONFIG_HT_IRQ
3687
3688#ifdef CONFIG_SMP
3689
Yinghai Lu497c9a12008-08-19 20:50:28 -07003690static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003691{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003692 struct ht_irq_msg msg;
3693 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003694
Yinghai Lu497c9a12008-08-19 20:50:28 -07003695 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003696 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003697
Yinghai Lu497c9a12008-08-19 20:50:28 -07003698 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003699 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003700
Eric W. Biedermanec683072006-11-08 17:44:57 -08003701 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003702}
3703
Mike Travis22f65d32008-12-16 17:33:56 -08003704static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003705{
Yinghai Lu3145e942008-12-05 18:58:34 -08003706 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003707 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003708 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003709
Mike Travis22f65d32008-12-16 17:33:56 -08003710 dest = set_desc_affinity(desc, mask);
3711 if (dest == BAD_APICID)
Yinghai Lu497c9a12008-08-19 20:50:28 -07003712 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003713
Yinghai Lu3145e942008-12-05 18:58:34 -08003714 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003715
Yinghai Lu497c9a12008-08-19 20:50:28 -07003716 target_ht_irq(irq, dest, cfg->vector);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003717}
Yinghai Lu3145e942008-12-05 18:58:34 -08003718
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003719#endif
3720
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003721static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003722 .name = "PCI-HT",
3723 .mask = mask_ht_irq,
3724 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003725 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003726#ifdef CONFIG_SMP
3727 .set_affinity = set_ht_irq_affinity,
3728#endif
3729 .retrigger = ioapic_retrigger_irq,
3730};
3731
3732int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3733{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003734 struct irq_cfg *cfg;
3735 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003736
Yinghai Lu3145e942008-12-05 18:58:34 -08003737 cfg = irq_cfg(irq);
Mike Travise7986732008-12-16 17:33:52 -08003738 err = assign_irq_vector(irq, cfg, TARGET_CPUS);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003739 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003740 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003741 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003742
Mike Travis22f65d32008-12-16 17:33:56 -08003743 dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003744
Eric W. Biedermanec683072006-11-08 17:44:57 -08003745 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003746
Eric W. Biedermanec683072006-11-08 17:44:57 -08003747 msg.address_lo =
3748 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003749 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003750 HT_IRQ_LOW_VECTOR(cfg->vector) |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003751 ((INT_DEST_MODE == 0) ?
3752 HT_IRQ_LOW_DM_PHYSICAL :
3753 HT_IRQ_LOW_DM_LOGICAL) |
3754 HT_IRQ_LOW_RQEOI_EDGE |
3755 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3756 HT_IRQ_LOW_MT_FIXED :
3757 HT_IRQ_LOW_MT_ARBITRATED) |
3758 HT_IRQ_LOW_IRQ_MASKED;
3759
Eric W. Biedermanec683072006-11-08 17:44:57 -08003760 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003761
Ingo Molnara460e742006-10-17 00:10:03 -07003762 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3763 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003764
3765 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003766 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003767 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003768}
3769#endif /* CONFIG_HT_IRQ */
3770
Dean Nelson4173a0e2008-10-02 12:18:21 -05003771#ifdef CONFIG_X86_64
3772/*
3773 * Re-target the irq to the specified CPU and enable the specified MMR located
3774 * on the specified blade to allow the sending of MSIs to the specified CPU.
3775 */
3776int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3777 unsigned long mmr_offset)
3778{
Mike Travis22f65d32008-12-16 17:33:56 -08003779 const struct cpumask *eligible_cpu = cpumask_of(cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003780 struct irq_cfg *cfg;
3781 int mmr_pnode;
3782 unsigned long mmr_value;
3783 struct uv_IO_APIC_route_entry *entry;
3784 unsigned long flags;
3785 int err;
3786
Yinghai Lu3145e942008-12-05 18:58:34 -08003787 cfg = irq_cfg(irq);
3788
Mike Travise7986732008-12-16 17:33:52 -08003789 err = assign_irq_vector(irq, cfg, eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003790 if (err != 0)
3791 return err;
3792
3793 spin_lock_irqsave(&vector_lock, flags);
3794 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3795 irq_name);
3796 spin_unlock_irqrestore(&vector_lock, flags);
3797
Dean Nelson4173a0e2008-10-02 12:18:21 -05003798 mmr_value = 0;
3799 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3800 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3801
3802 entry->vector = cfg->vector;
3803 entry->delivery_mode = INT_DELIVERY_MODE;
3804 entry->dest_mode = INT_DEST_MODE;
3805 entry->polarity = 0;
3806 entry->trigger = 0;
3807 entry->mask = 0;
Mike Travise7986732008-12-16 17:33:52 -08003808 entry->dest = cpu_mask_to_apicid(eligible_cpu);
Dean Nelson4173a0e2008-10-02 12:18:21 -05003809
3810 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3811 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3812
3813 return irq;
3814}
3815
3816/*
3817 * Disable the specified MMR located on the specified blade so that MSIs are
3818 * longer allowed to be sent.
3819 */
3820void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3821{
3822 unsigned long mmr_value;
3823 struct uv_IO_APIC_route_entry *entry;
3824 int mmr_pnode;
3825
3826 mmr_value = 0;
3827 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3828 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3829
3830 entry->mask = 1;
3831
3832 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3833 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3834}
3835#endif /* CONFIG_X86_64 */
3836
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003837int __init io_apic_get_redir_entries (int ioapic)
3838{
3839 union IO_APIC_reg_01 reg_01;
3840 unsigned long flags;
3841
3842 spin_lock_irqsave(&ioapic_lock, flags);
3843 reg_01.raw = io_apic_read(ioapic, 1);
3844 spin_unlock_irqrestore(&ioapic_lock, flags);
3845
3846 return reg_01.bits.entries;
3847}
3848
Yinghai Lube5d5352008-12-05 18:58:33 -08003849void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003850{
Yinghai Lube5d5352008-12-05 18:58:33 -08003851 int idx;
3852 int nr = 0;
3853
3854 for (idx = 0; idx < nr_ioapics; idx++)
3855 nr += io_apic_get_redir_entries(idx) + 1;
3856
3857 if (nr > nr_irqs_gsi)
3858 nr_irqs_gsi = nr;
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003859}
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003862 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 -------------------------------------------------------------------------- */
3864
Len Brown888ba6c2005-08-24 12:07:20 -04003865#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Ingo Molnar54168ed2008-08-20 09:07:45 +02003867#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003868int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869{
3870 union IO_APIC_reg_00 reg_00;
3871 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3872 physid_mask_t tmp;
3873 unsigned long flags;
3874 int i = 0;
3875
3876 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003877 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3878 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003880 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3882 * advantage of new APIC bus architecture.
3883 */
3884
3885 if (physids_empty(apic_id_map))
3886 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
3887
3888 spin_lock_irqsave(&ioapic_lock, flags);
3889 reg_00.raw = io_apic_read(ioapic, 0);
3890 spin_unlock_irqrestore(&ioapic_lock, flags);
3891
3892 if (apic_id >= get_physical_broadcast()) {
3893 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3894 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3895 apic_id = reg_00.bits.ID;
3896 }
3897
3898 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003899 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 * 'stuck on smp_invalidate_needed IPI wait' messages.
3901 */
3902 if (check_apicid_used(apic_id_map, apic_id)) {
3903
3904 for (i = 0; i < get_physical_broadcast(); i++) {
3905 if (!check_apicid_used(apic_id_map, i))
3906 break;
3907 }
3908
3909 if (i == get_physical_broadcast())
3910 panic("Max apic_id exceeded!\n");
3911
3912 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3913 "trying %d\n", ioapic, apic_id, i);
3914
3915 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
3918 tmp = apicid_to_cpu_present(apic_id);
3919 physids_or(apic_id_map, apic_id_map, tmp);
3920
3921 if (reg_00.bits.ID != apic_id) {
3922 reg_00.bits.ID = apic_id;
3923
3924 spin_lock_irqsave(&ioapic_lock, flags);
3925 io_apic_write(ioapic, 0, reg_00.raw);
3926 reg_00.raw = io_apic_read(ioapic, 0);
3927 spin_unlock_irqrestore(&ioapic_lock, flags);
3928
3929 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003930 if (reg_00.bits.ID != apic_id) {
3931 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3932 return -1;
3933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 }
3935
3936 apic_printk(APIC_VERBOSE, KERN_INFO
3937 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3938
3939 return apic_id;
3940}
3941
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003942int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
3944 union IO_APIC_reg_01 reg_01;
3945 unsigned long flags;
3946
3947 spin_lock_irqsave(&ioapic_lock, flags);
3948 reg_01.raw = io_apic_read(ioapic, 1);
3949 spin_unlock_irqrestore(&ioapic_lock, flags);
3950
3951 return reg_01.bits.version;
3952}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Ingo Molnar54168ed2008-08-20 09:07:45 +02003955int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003957 struct irq_desc *desc;
3958 struct irq_cfg *cfg;
3959 int cpu = boot_cpu_id;
3960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003962 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 ioapic);
3964 return -EINVAL;
3965 }
3966
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003967 desc = irq_to_desc_alloc_cpu(irq, cpu);
3968 if (!desc) {
3969 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3970 return 0;
3971 }
3972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 * IRQs < 16 are already in the irq_2_pin[] map
3975 */
Yinghai Lu99d093d2008-12-05 18:58:32 -08003976 if (irq >= NR_IRQS_LEGACY) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003977 cfg = desc->chip_data;
Yinghai Lu3145e942008-12-05 18:58:34 -08003978 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
Yinghai Lu3145e942008-12-05 18:58:34 -08003981 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 return 0;
3984}
3985
Ingo Molnar54168ed2008-08-20 09:07:45 +02003986
Shaohua Li61fd47e2007-11-17 01:05:28 -05003987int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3988{
3989 int i;
3990
3991 if (skip_ioapic_setup)
3992 return -1;
3993
3994 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04003995 if (mp_irqs[i].mp_irqtype == mp_INT &&
3996 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003997 break;
3998 if (i >= mp_irq_entries)
3999 return -1;
4000
4001 *trigger = irq_trigger(i);
4002 *polarity = irq_polarity(i);
4003 return 0;
4004}
4005
Len Brown888ba6c2005-08-24 12:07:20 -04004006#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02004007
Yinghai Lu497c9a12008-08-19 20:50:28 -07004008/*
4009 * This function currently is only a helper for the i386 smp boot process where
4010 * we need to reprogram the ioredtbls to cater for the cpus which have come online
4011 * so mask in all cases should simply be TARGET_CPUS
4012 */
4013#ifdef CONFIG_SMP
4014void __init setup_ioapic_dest(void)
4015{
4016 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004017 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004018 struct irq_cfg *cfg;
Mike Travis22f65d32008-12-16 17:33:56 -08004019 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004020
4021 if (skip_ioapic_setup == 1)
4022 return;
4023
4024 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4025 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4026 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4027 if (irq_entry == -1)
4028 continue;
4029 irq = pin_2_irq(irq_entry, ioapic, pin);
4030
4031 /* setup_IO_APIC_irqs could fail to get vector for some device
4032 * when you have too many devices, because at that time only boot
4033 * cpu is online.
4034 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08004035 desc = irq_to_desc(irq);
4036 cfg = desc->chip_data;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004037 if (!cfg->vector) {
Yinghai Lu3145e942008-12-05 18:58:34 -08004038 setup_IO_APIC_irq(ioapic, pin, irq, desc,
Yinghai Lu497c9a12008-08-19 20:50:28 -07004039 irq_trigger(irq_entry),
4040 irq_polarity(irq_entry));
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004041 continue;
4042
4043 }
4044
4045 /*
4046 * Honour affinities which have been set in early boot
4047 */
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004048 if (desc->status &
4049 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
Mike Travise7986732008-12-16 17:33:52 -08004050 mask = &desc->affinity;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004051 else
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004052 mask = TARGET_CPUS;
4053
4054#ifdef CONFIG_INTR_REMAP
4055 if (intr_remapping_enabled)
Mike Travise7986732008-12-16 17:33:52 -08004056 set_ir_ioapic_affinity_irq_desc(desc, mask);
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004057 else
4058#endif
Mike Travise7986732008-12-16 17:33:52 -08004059 set_ioapic_affinity_irq_desc(desc, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07004060 }
4061
4062 }
4063}
4064#endif
4065
Ingo Molnar54168ed2008-08-20 09:07:45 +02004066#define IOAPIC_RESOURCE_NAME_SIZE 11
4067
4068static struct resource *ioapic_resources;
4069
4070static struct resource * __init ioapic_setup_resources(void)
4071{
4072 unsigned long n;
4073 struct resource *res;
4074 char *mem;
4075 int i;
4076
4077 if (nr_ioapics <= 0)
4078 return NULL;
4079
4080 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4081 n *= nr_ioapics;
4082
4083 mem = alloc_bootmem(n);
4084 res = (void *)mem;
4085
4086 if (mem != NULL) {
4087 mem += sizeof(struct resource) * nr_ioapics;
4088
4089 for (i = 0; i < nr_ioapics; i++) {
4090 res[i].name = mem;
4091 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4092 sprintf(mem, "IOAPIC %u", i);
4093 mem += IOAPIC_RESOURCE_NAME_SIZE;
4094 }
4095 }
4096
4097 ioapic_resources = res;
4098
4099 return res;
4100}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004101
Yinghai Luf3294a32008-06-27 01:41:56 -07004102void __init ioapic_init_mappings(void)
4103{
4104 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004105 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004106 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004107
Ingo Molnar54168ed2008-08-20 09:07:45 +02004108 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07004109 for (i = 0; i < nr_ioapics; i++) {
4110 if (smp_found_config) {
4111 ioapic_phys = mp_ioapics[i].mp_apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004112#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004113 if (!ioapic_phys) {
4114 printk(KERN_ERR
4115 "WARNING: bogus zero IO-APIC "
4116 "address found in MPTABLE, "
4117 "disabling IO/APIC support!\n");
4118 smp_found_config = 0;
4119 skip_ioapic_setup = 1;
4120 goto fake_ioapic_page;
4121 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004122#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004123 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004124#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004125fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004126#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004127 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004128 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004129 ioapic_phys = __pa(ioapic_phys);
4130 }
4131 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02004132 apic_printk(APIC_VERBOSE,
4133 "mapped IOAPIC to %08lx (%08lx)\n",
4134 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004135 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004136
Ingo Molnar54168ed2008-08-20 09:07:45 +02004137 if (ioapic_res != NULL) {
4138 ioapic_res->start = ioapic_phys;
4139 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4140 ioapic_res++;
4141 }
Yinghai Luf3294a32008-06-27 01:41:56 -07004142 }
4143}
4144
Ingo Molnar54168ed2008-08-20 09:07:45 +02004145static int __init ioapic_insert_resources(void)
4146{
4147 int i;
4148 struct resource *r = ioapic_resources;
4149
4150 if (!r) {
4151 printk(KERN_ERR
4152 "IO APIC resources could be not be allocated.\n");
4153 return -1;
4154 }
4155
4156 for (i = 0; i < nr_ioapics; i++) {
4157 insert_resource(&iomem_resource, r);
4158 r++;
4159 }
4160
4161 return 0;
4162}
4163
4164/* Insert the IO APIC resources after PCI initialization has occured to handle
4165 * IO APICS that are mapped in on a BAR in PCI space. */
4166late_initcall(ioapic_insert_resources);