]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kernel/apic/io_apic.c
Merge branches 'x86/cleanups', 'x86/mm', 'x86/setup' and 'linus' into x86/core
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / apic / io_apic.c
CommitLineData
1da177e4
LT
1/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
8f47e163 4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
1da177e4
LT
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>
1da177e4
LT
24#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
d4057bdb 28#include <linux/pci.h>
1da177e4
LT
29#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
129f6946 32#include <linux/module.h>
1da177e4 33#include <linux/sysdev.h>
3b7d1921 34#include <linux/msi.h>
95d77884 35#include <linux/htirq.h>
7dfb7103 36#include <linux/freezer.h>
f26d6a2b 37#include <linux/kthread.h>
54168ed7 38#include <linux/jiffies.h> /* time_after() */
d4057bdb
YL
39#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
58ac1e76 44#include <linux/hpet.h>
54d5d424 45
d4057bdb 46#include <asm/idle.h>
1da177e4
LT
47#include <asm/io.h>
48#include <asm/smp.h>
6d652ea1 49#include <asm/cpu.h>
1da177e4 50#include <asm/desc.h>
d4057bdb
YL
51#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
1da177e4 54#include <asm/timer.h>
306e440d 55#include <asm/i8259.h>
3e4ff115 56#include <asm/nmi.h>
2d3fcc1c 57#include <asm/msidef.h>
8b955b0d 58#include <asm/hypertransport.h>
a4dbc34d 59#include <asm/setup.h>
d4057bdb 60#include <asm/irq_remapping.h>
58ac1e76 61#include <asm/hpet.h>
4173a0e7
DN
62#include <asm/uv/uv_hub.h>
63#include <asm/uv/uv_irq.h>
1da177e4 64
7b6aa335 65#include <asm/apic.h>
1da177e4 66
32f71aff
MR
67#define __apicdebuginit(type) static type __init
68
1da177e4 69/*
54168ed7
IM
70 * Is the SiS APIC rmw bug present ?
71 * -1 = don't know, 0 = no, 1 = yes
1da177e4
LT
72 */
73int sis_apic_bug = -1;
74
efa2559f
YL
75static DEFINE_SPINLOCK(ioapic_lock);
76static DEFINE_SPINLOCK(vector_lock);
77
1da177e4
LT
78/*
79 * # of IRQ routing registers
80 */
81int nr_ioapic_registers[MAX_IO_APICS];
82
9f640ccb 83/* I/O APIC entries */
b5ba7e6d 84struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
9f640ccb
AS
85int nr_ioapics;
86
584f734d 87/* MP IRQ source entries */
c2c21745 88struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
584f734d
AS
89
90/* # of MP IRQ source entries */
91int mp_irq_entries;
92
8732fc4b
AS
93#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
94int mp_bus_id_to_type[MAX_MP_BUSSES];
95#endif
96
97DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
98
efa2559f
YL
99int skip_ioapic_setup;
100
65a4e574
IM
101void arch_disable_smp_support(void)
102{
103#ifdef CONFIG_PCI
104 noioapicquirk = 1;
105 noioapicreroute = -1;
106#endif
107 skip_ioapic_setup = 1;
108}
109
54168ed7 110static int __init parse_noapic(char *str)
efa2559f
YL
111{
112 /* disable IO-APIC */
65a4e574 113 arch_disable_smp_support();
efa2559f
YL
114 return 0;
115}
116early_param("noapic", parse_noapic);
66759a01 117
0f978f45 118struct irq_pin_list;
0b8f1efa
YL
119
120/*
121 * This is performance-critical, we want to do it O(1)
122 *
123 * the indexing order of this array favors 1:1 mappings
124 * between pins and IRQs.
125 */
126
127struct irq_pin_list {
128 int apic, pin;
129 struct irq_pin_list *next;
130};
131
132static struct irq_pin_list *get_one_free_irq_2_pin(int cpu)
133{
134 struct irq_pin_list *pin;
135 int node;
136
137 node = cpu_to_node(cpu);
138
139 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
0b8f1efa
YL
140
141 return pin;
142}
143
a1420f39 144struct irq_cfg {
0f978f45 145 struct irq_pin_list *irq_2_pin;
22f65d31
MT
146 cpumask_var_t domain;
147 cpumask_var_t old_domain;
497c9a19 148 unsigned move_cleanup_count;
a1420f39 149 u8 vector;
497c9a19 150 u8 move_in_progress : 1;
48a1b10a
YL
151#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
152 u8 move_desc_pending : 1;
153#endif
a1420f39
YL
154};
155
a1420f39 156/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
0b8f1efa
YL
157#ifdef CONFIG_SPARSE_IRQ
158static struct irq_cfg irq_cfgx[] = {
159#else
d6c88a50 160static struct irq_cfg irq_cfgx[NR_IRQS] = {
0b8f1efa 161#endif
22f65d31
MT
162 [0] = { .vector = IRQ0_VECTOR, },
163 [1] = { .vector = IRQ1_VECTOR, },
164 [2] = { .vector = IRQ2_VECTOR, },
165 [3] = { .vector = IRQ3_VECTOR, },
166 [4] = { .vector = IRQ4_VECTOR, },
167 [5] = { .vector = IRQ5_VECTOR, },
168 [6] = { .vector = IRQ6_VECTOR, },
169 [7] = { .vector = IRQ7_VECTOR, },
170 [8] = { .vector = IRQ8_VECTOR, },
171 [9] = { .vector = IRQ9_VECTOR, },
172 [10] = { .vector = IRQ10_VECTOR, },
173 [11] = { .vector = IRQ11_VECTOR, },
174 [12] = { .vector = IRQ12_VECTOR, },
175 [13] = { .vector = IRQ13_VECTOR, },
176 [14] = { .vector = IRQ14_VECTOR, },
177 [15] = { .vector = IRQ15_VECTOR, },
a1420f39
YL
178};
179
13a0c3c2 180int __init arch_early_irq_init(void)
8f09cd20 181{
0b8f1efa
YL
182 struct irq_cfg *cfg;
183 struct irq_desc *desc;
184 int count;
185 int i;
d6c88a50 186
0b8f1efa
YL
187 cfg = irq_cfgx;
188 count = ARRAY_SIZE(irq_cfgx);
8f09cd20 189
0b8f1efa
YL
190 for (i = 0; i < count; i++) {
191 desc = irq_to_desc(i);
192 desc->chip_data = &cfg[i];
22f65d31
MT
193 alloc_bootmem_cpumask_var(&cfg[i].domain);
194 alloc_bootmem_cpumask_var(&cfg[i].old_domain);
195 if (i < NR_IRQS_LEGACY)
196 cpumask_setall(cfg[i].domain);
0b8f1efa 197 }
13a0c3c2
YL
198
199 return 0;
0b8f1efa 200}
8f09cd20 201
0b8f1efa 202#ifdef CONFIG_SPARSE_IRQ
d6c88a50 203static struct irq_cfg *irq_cfg(unsigned int irq)
8f09cd20 204{
0b8f1efa
YL
205 struct irq_cfg *cfg = NULL;
206 struct irq_desc *desc;
1da177e4 207
0b8f1efa
YL
208 desc = irq_to_desc(irq);
209 if (desc)
210 cfg = desc->chip_data;
0f978f45 211
0b8f1efa 212 return cfg;
8f09cd20 213}
d6c88a50 214
0b8f1efa 215static struct irq_cfg *get_one_free_irq_cfg(int cpu)
8f09cd20 216{
0b8f1efa
YL
217 struct irq_cfg *cfg;
218 int node;
219
220 node = cpu_to_node(cpu);
0f978f45 221
0b8f1efa 222 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
22f65d31 223 if (cfg) {
80855f73 224 if (!alloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
22f65d31
MT
225 kfree(cfg);
226 cfg = NULL;
80855f73
MT
227 } else if (!alloc_cpumask_var_node(&cfg->old_domain,
228 GFP_ATOMIC, node)) {
22f65d31
MT
229 free_cpumask_var(cfg->domain);
230 kfree(cfg);
231 cfg = NULL;
232 } else {
233 cpumask_clear(cfg->domain);
234 cpumask_clear(cfg->old_domain);
235 }
236 }
0f978f45 237
0b8f1efa 238 return cfg;
8f09cd20
YL
239}
240
13a0c3c2 241int arch_init_chip_data(struct irq_desc *desc, int cpu)
0f978f45 242{
0b8f1efa 243 struct irq_cfg *cfg;
d6c88a50 244
0b8f1efa
YL
245 cfg = desc->chip_data;
246 if (!cfg) {
247 desc->chip_data = get_one_free_irq_cfg(cpu);
248 if (!desc->chip_data) {
249 printk(KERN_ERR "can not alloc irq_cfg\n");
250 BUG_ON(1);
251 }
252 }
1da177e4 253
13a0c3c2 254 return 0;
0b8f1efa 255}
0f978f45 256
48a1b10a 257#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
d6c88a50 258
48a1b10a
YL
259static void
260init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu)
0f978f45 261{
48a1b10a
YL
262 struct irq_pin_list *old_entry, *head, *tail, *entry;
263
264 cfg->irq_2_pin = NULL;
265 old_entry = old_cfg->irq_2_pin;
266 if (!old_entry)
267 return;
0f978f45 268
48a1b10a
YL
269 entry = get_one_free_irq_2_pin(cpu);
270 if (!entry)
271 return;
0f978f45 272
48a1b10a
YL
273 entry->apic = old_entry->apic;
274 entry->pin = old_entry->pin;
275 head = entry;
276 tail = entry;
277 old_entry = old_entry->next;
278 while (old_entry) {
279 entry = get_one_free_irq_2_pin(cpu);
280 if (!entry) {
281 entry = head;
282 while (entry) {
283 head = entry->next;
284 kfree(entry);
285 entry = head;
286 }
287 /* still use the old one */
288 return;
289 }
290 entry->apic = old_entry->apic;
291 entry->pin = old_entry->pin;
292 tail->next = entry;
293 tail = entry;
294 old_entry = old_entry->next;
295 }
0f978f45 296
48a1b10a
YL
297 tail->next = NULL;
298 cfg->irq_2_pin = head;
0f978f45 299}
0f978f45 300
48a1b10a 301static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
0f978f45 302{
48a1b10a 303 struct irq_pin_list *entry, *next;
0f978f45 304
48a1b10a
YL
305 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
306 return;
301e6190 307
48a1b10a 308 entry = old_cfg->irq_2_pin;
0f978f45 309
48a1b10a
YL
310 while (entry) {
311 next = entry->next;
312 kfree(entry);
313 entry = next;
314 }
315 old_cfg->irq_2_pin = NULL;
0f978f45 316}
0f978f45 317
48a1b10a
YL
318void arch_init_copy_chip_data(struct irq_desc *old_desc,
319 struct irq_desc *desc, int cpu)
0f978f45 320{
48a1b10a
YL
321 struct irq_cfg *cfg;
322 struct irq_cfg *old_cfg;
0f978f45 323
48a1b10a 324 cfg = get_one_free_irq_cfg(cpu);
301e6190 325
48a1b10a
YL
326 if (!cfg)
327 return;
328
329 desc->chip_data = cfg;
330
331 old_cfg = old_desc->chip_data;
332
333 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
334
335 init_copy_irq_2_pin(old_cfg, cfg, cpu);
0f978f45 336}
1da177e4 337
48a1b10a
YL
338static void free_irq_cfg(struct irq_cfg *old_cfg)
339{
340 kfree(old_cfg);
341}
342
343void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
344{
345 struct irq_cfg *old_cfg, *cfg;
346
347 old_cfg = old_desc->chip_data;
348 cfg = desc->chip_data;
349
350 if (old_cfg == cfg)
351 return;
352
353 if (old_cfg) {
354 free_irq_2_pin(old_cfg, cfg);
355 free_irq_cfg(old_cfg);
356 old_desc->chip_data = NULL;
357 }
358}
359
d733e00d
IM
360static void
361set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
48a1b10a
YL
362{
363 struct irq_cfg *cfg = desc->chip_data;
364
365 if (!cfg->move_in_progress) {
366 /* it means that domain is not changed */
7f7ace0c 367 if (!cpumask_intersects(desc->affinity, mask))
48a1b10a
YL
368 cfg->move_desc_pending = 1;
369 }
0f978f45 370}
48a1b10a
YL
371#endif
372
0b8f1efa
YL
373#else
374static struct irq_cfg *irq_cfg(unsigned int irq)
375{
376 return irq < nr_irqs ? irq_cfgx + irq : NULL;
0f978f45 377}
1da177e4 378
0b8f1efa
YL
379#endif
380
48a1b10a 381#ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC
e7986739
MT
382static inline void
383set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
3145e941
YL
384{
385}
48a1b10a 386#endif
1da177e4 387
130fe05d
LT
388struct io_apic {
389 unsigned int index;
390 unsigned int unused[3];
391 unsigned int data;
0280f7c4
SS
392 unsigned int unused2[11];
393 unsigned int eoi;
130fe05d
LT
394};
395
396static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
397{
398 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
b5ba7e6d 399 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
130fe05d
LT
400}
401
0280f7c4
SS
402static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
403{
404 struct io_apic __iomem *io_apic = io_apic_base(apic);
405 writel(vector, &io_apic->eoi);
406}
407
130fe05d
LT
408static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
409{
410 struct io_apic __iomem *io_apic = io_apic_base(apic);
411 writel(reg, &io_apic->index);
412 return readl(&io_apic->data);
413}
414
415static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
416{
417 struct io_apic __iomem *io_apic = io_apic_base(apic);
418 writel(reg, &io_apic->index);
419 writel(value, &io_apic->data);
420}
421
422/*
423 * Re-write a value: to be used for read-modify-write
424 * cycles where the read already set up the index register.
425 *
426 * Older SiS APIC requires we rewrite the index register
427 */
428static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
429{
54168ed7 430 struct io_apic __iomem *io_apic = io_apic_base(apic);
d6c88a50
TG
431
432 if (sis_apic_bug)
433 writel(reg, &io_apic->index);
130fe05d
LT
434 writel(value, &io_apic->data);
435}
436
3145e941 437static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
047c8fdb
YL
438{
439 struct irq_pin_list *entry;
440 unsigned long flags;
047c8fdb
YL
441
442 spin_lock_irqsave(&ioapic_lock, flags);
443 entry = cfg->irq_2_pin;
444 for (;;) {
445 unsigned int reg;
446 int pin;
447
448 if (!entry)
449 break;
450 pin = entry->pin;
451 reg = io_apic_read(entry->apic, 0x10 + pin*2);
452 /* Is the remote IRR bit set? */
453 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
454 spin_unlock_irqrestore(&ioapic_lock, flags);
455 return true;
456 }
457 if (!entry->next)
458 break;
459 entry = entry->next;
460 }
461 spin_unlock_irqrestore(&ioapic_lock, flags);
462
463 return false;
464}
047c8fdb 465
cf4c6a2f
AK
466union entry_union {
467 struct { u32 w1, w2; };
468 struct IO_APIC_route_entry entry;
469};
470
471static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
472{
473 union entry_union eu;
474 unsigned long flags;
475 spin_lock_irqsave(&ioapic_lock, flags);
476 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
477 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
478 spin_unlock_irqrestore(&ioapic_lock, flags);
479 return eu.entry;
480}
481
f9dadfa7
LT
482/*
483 * When we write a new IO APIC routing entry, we need to write the high
484 * word first! If the mask bit in the low word is clear, we will enable
485 * the interrupt, and we need to make sure the entry is fully populated
486 * before that happens.
487 */
d15512f4
AK
488static void
489__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
cf4c6a2f 490{
cf4c6a2f
AK
491 union entry_union eu;
492 eu.entry = e;
f9dadfa7
LT
493 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
494 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
d15512f4
AK
495}
496
ca97ab90 497void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
d15512f4
AK
498{
499 unsigned long flags;
500 spin_lock_irqsave(&ioapic_lock, flags);
501 __ioapic_write_entry(apic, pin, e);
f9dadfa7
LT
502 spin_unlock_irqrestore(&ioapic_lock, flags);
503}
504
505/*
506 * When we mask an IO APIC routing entry, we need to write the low
507 * word first, in order to set the mask bit before we change the
508 * high bits!
509 */
510static void ioapic_mask_entry(int apic, int pin)
511{
512 unsigned long flags;
513 union entry_union eu = { .entry.mask = 1 };
514
cf4c6a2f
AK
515 spin_lock_irqsave(&ioapic_lock, flags);
516 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
517 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
518 spin_unlock_irqrestore(&ioapic_lock, flags);
519}
520
497c9a19 521#ifdef CONFIG_SMP
22f65d31
MT
522static void send_cleanup_vector(struct irq_cfg *cfg)
523{
524 cpumask_var_t cleanup_mask;
525
526 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
527 unsigned int i;
528 cfg->move_cleanup_count = 0;
529 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
530 cfg->move_cleanup_count++;
531 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
dac5f412 532 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
22f65d31
MT
533 } else {
534 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
535 cfg->move_cleanup_count = cpumask_weight(cleanup_mask);
dac5f412 536 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
22f65d31
MT
537 free_cpumask_var(cleanup_mask);
538 }
539 cfg->move_in_progress = 0;
540}
541
3145e941 542static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
497c9a19
YL
543{
544 int apic, pin;
497c9a19 545 struct irq_pin_list *entry;
3145e941 546 u8 vector = cfg->vector;
497c9a19 547
497c9a19
YL
548 entry = cfg->irq_2_pin;
549 for (;;) {
550 unsigned int reg;
551
552 if (!entry)
553 break;
554
555 apic = entry->apic;
556 pin = entry->pin;
54168ed7
IM
557 /*
558 * With interrupt-remapping, destination information comes
559 * from interrupt-remapping table entry.
560 */
561 if (!irq_remapped(irq))
562 io_apic_write(apic, 0x11 + pin*2, dest);
497c9a19
YL
563 reg = io_apic_read(apic, 0x10 + pin*2);
564 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
565 reg |= vector;
54168ed7 566 io_apic_modify(apic, 0x10 + pin*2, reg);
497c9a19
YL
567 if (!entry->next)
568 break;
569 entry = entry->next;
570 }
571}
efa2559f 572
e7986739
MT
573static int
574assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask);
efa2559f 575
22f65d31 576/*
debccb3e
IM
577 * Either sets desc->affinity to a valid value, and returns
578 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
579 * leaves desc->affinity untouched.
22f65d31
MT
580 */
581static unsigned int
582set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask)
497c9a19
YL
583{
584 struct irq_cfg *cfg;
3145e941 585 unsigned int irq;
497c9a19 586
0de26520 587 if (!cpumask_intersects(mask, cpu_online_mask))
22f65d31 588 return BAD_APICID;
497c9a19 589
3145e941
YL
590 irq = desc->irq;
591 cfg = desc->chip_data;
592 if (assign_irq_vector(irq, cfg, mask))
22f65d31 593 return BAD_APICID;
497c9a19 594
7f7ace0c 595 cpumask_and(desc->affinity, cfg->domain, mask);
3145e941 596 set_extra_move_desc(desc, mask);
debccb3e
IM
597
598 return apic->cpu_mask_to_apicid_and(desc->affinity, cpu_online_mask);
22f65d31 599}
3145e941 600
22f65d31
MT
601static void
602set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
497c9a19
YL
603{
604 struct irq_cfg *cfg;
605 unsigned long flags;
606 unsigned int dest;
22f65d31 607 unsigned int irq;
497c9a19 608
22f65d31
MT
609 irq = desc->irq;
610 cfg = desc->chip_data;
497c9a19 611
497c9a19 612 spin_lock_irqsave(&ioapic_lock, flags);
22f65d31
MT
613 dest = set_desc_affinity(desc, mask);
614 if (dest != BAD_APICID) {
615 /* Only the high 8 bits are valid. */
616 dest = SET_APIC_LOGICAL_ID(dest);
617 __target_IO_APIC_irq(irq, dest, cfg);
618 }
497c9a19
YL
619 spin_unlock_irqrestore(&ioapic_lock, flags);
620}
497c9a19 621
22f65d31
MT
622static void
623set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
3145e941
YL
624{
625 struct irq_desc *desc;
497c9a19 626
54168ed7 627 desc = irq_to_desc(irq);
3145e941
YL
628
629 set_ioapic_affinity_irq_desc(desc, mask);
497c9a19 630}
497c9a19
YL
631#endif /* CONFIG_SMP */
632
1da177e4
LT
633/*
634 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
635 * shared ISA-space IRQs, so we have to support them. We are super
636 * fast in the common case, and fast for shared ISA-space IRQs.
637 */
3145e941 638static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
1da177e4 639{
0f978f45
YL
640 struct irq_pin_list *entry;
641
0f978f45
YL
642 entry = cfg->irq_2_pin;
643 if (!entry) {
0b8f1efa
YL
644 entry = get_one_free_irq_2_pin(cpu);
645 if (!entry) {
646 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
647 apic, pin);
648 return;
649 }
0f978f45
YL
650 cfg->irq_2_pin = entry;
651 entry->apic = apic;
652 entry->pin = pin;
0f978f45
YL
653 return;
654 }
1da177e4 655
0f978f45
YL
656 while (entry->next) {
657 /* not again, please */
658 if (entry->apic == apic && entry->pin == pin)
659 return;
1da177e4 660
0f978f45 661 entry = entry->next;
1da177e4 662 }
0f978f45 663
0b8f1efa 664 entry->next = get_one_free_irq_2_pin(cpu);
0f978f45 665 entry = entry->next;
1da177e4
LT
666 entry->apic = apic;
667 entry->pin = pin;
668}
669
670/*
671 * Reroute an IRQ to a different pin.
672 */
3145e941 673static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
1da177e4
LT
674 int oldapic, int oldpin,
675 int newapic, int newpin)
676{
0f978f45
YL
677 struct irq_pin_list *entry = cfg->irq_2_pin;
678 int replaced = 0;
1da177e4 679
0f978f45 680 while (entry) {
1da177e4
LT
681 if (entry->apic == oldapic && entry->pin == oldpin) {
682 entry->apic = newapic;
683 entry->pin = newpin;
0f978f45
YL
684 replaced = 1;
685 /* every one is different, right? */
1da177e4 686 break;
0f978f45
YL
687 }
688 entry = entry->next;
1da177e4 689 }
0f978f45
YL
690
691 /* why? call replace before add? */
692 if (!replaced)
3145e941 693 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
1da177e4
LT
694}
695
3145e941 696static inline void io_apic_modify_irq(struct irq_cfg *cfg,
87783be4
CG
697 int mask_and, int mask_or,
698 void (*final)(struct irq_pin_list *entry))
699{
700 int pin;
87783be4 701 struct irq_pin_list *entry;
047c8fdb 702
87783be4
CG
703 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
704 unsigned int reg;
705 pin = entry->pin;
706 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
707 reg &= mask_and;
708 reg |= mask_or;
709 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
710 if (final)
711 final(entry);
712 }
713}
047c8fdb 714
3145e941 715static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 716{
3145e941 717 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
87783be4 718}
047c8fdb 719
4e738e2f 720#ifdef CONFIG_X86_64
7f3e632f 721static void io_apic_sync(struct irq_pin_list *entry)
1da177e4 722{
87783be4
CG
723 /*
724 * Synchronize the IO-APIC and the CPU by doing
725 * a dummy read from the IO-APIC
726 */
727 struct io_apic __iomem *io_apic;
728 io_apic = io_apic_base(entry->apic);
4e738e2f 729 readl(&io_apic->data);
1da177e4
LT
730}
731
3145e941 732static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 733{
3145e941 734 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
87783be4
CG
735}
736#else /* CONFIG_X86_32 */
3145e941 737static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 738{
3145e941 739 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
87783be4 740}
1da177e4 741
3145e941 742static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 743{
3145e941 744 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
87783be4
CG
745 IO_APIC_REDIR_MASKED, NULL);
746}
1da177e4 747
3145e941 748static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
87783be4 749{
3145e941 750 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
87783be4
CG
751 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
752}
753#endif /* CONFIG_X86_32 */
047c8fdb 754
3145e941 755static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
1da177e4 756{
3145e941 757 struct irq_cfg *cfg = desc->chip_data;
1da177e4
LT
758 unsigned long flags;
759
3145e941
YL
760 BUG_ON(!cfg);
761
1da177e4 762 spin_lock_irqsave(&ioapic_lock, flags);
3145e941 763 __mask_IO_APIC_irq(cfg);
1da177e4
LT
764 spin_unlock_irqrestore(&ioapic_lock, flags);
765}
766
3145e941 767static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
1da177e4 768{
3145e941 769 struct irq_cfg *cfg = desc->chip_data;
1da177e4
LT
770 unsigned long flags;
771
772 spin_lock_irqsave(&ioapic_lock, flags);
3145e941 773 __unmask_IO_APIC_irq(cfg);
1da177e4
LT
774 spin_unlock_irqrestore(&ioapic_lock, flags);
775}
776
3145e941
YL
777static void mask_IO_APIC_irq(unsigned int irq)
778{
779 struct irq_desc *desc = irq_to_desc(irq);
780
781 mask_IO_APIC_irq_desc(desc);
782}
783static void unmask_IO_APIC_irq(unsigned int irq)
784{
785 struct irq_desc *desc = irq_to_desc(irq);
786
787 unmask_IO_APIC_irq_desc(desc);
788}
789
1da177e4
LT
790static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
791{
792 struct IO_APIC_route_entry entry;
36062448 793
1da177e4 794 /* Check delivery_mode to be sure we're not clearing an SMI pin */
cf4c6a2f 795 entry = ioapic_read_entry(apic, pin);
1da177e4
LT
796 if (entry.delivery_mode == dest_SMI)
797 return;
1da177e4
LT
798 /*
799 * Disable it in the IO-APIC irq-routing table:
800 */
f9dadfa7 801 ioapic_mask_entry(apic, pin);
1da177e4
LT
802}
803
54168ed7 804static void clear_IO_APIC (void)
1da177e4
LT
805{
806 int apic, pin;
807
808 for (apic = 0; apic < nr_ioapics; apic++)
809 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
810 clear_IO_APIC_pin(apic, pin);
811}
812
54168ed7 813#ifdef CONFIG_X86_32
1da177e4
LT
814/*
815 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
816 * specific CPU-side IRQs.
817 */
818
819#define MAX_PIRQS 8
3bd25d0f
YL
820static int pirq_entries[MAX_PIRQS] = {
821 [0 ... MAX_PIRQS - 1] = -1
822};
1da177e4 823
1da177e4
LT
824static 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
1da177e4
LT
831 apic_printk(APIC_VERBOSE, KERN_INFO
832 "PIRQ redirection, working around broken MP-BIOS.\n");
833 max = MAX_PIRQS;
834 if (ints[0] < MAX_PIRQS)
835 max = ints[0];
836
837 for (i = 0; i < max; i++) {
838 apic_printk(APIC_VERBOSE, KERN_DEBUG
839 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
840 /*
841 * PIRQs are mapped upside down, usually.
842 */
843 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
844 }
845 return 1;
846}
847
848__setup("pirq=", ioapic_pirq_setup);
54168ed7
IM
849#endif /* CONFIG_X86_32 */
850
851#ifdef CONFIG_INTR_REMAP
852/* I/O APIC RTE contents at the OS boot up */
853static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
854
855/*
05c3dc2c 856 * Saves all the IO-APIC RTE's
54168ed7 857 */
05c3dc2c 858int save_IO_APIC_setup(void)
54168ed7
IM
859{
860 union IO_APIC_reg_01 reg_01;
861 unsigned long flags;
862 int apic, pin;
863
864 /*
865 * The number of IO-APIC IRQ registers (== #pins):
866 */
867 for (apic = 0; apic < nr_ioapics; apic++) {
868 spin_lock_irqsave(&ioapic_lock, flags);
869 reg_01.raw = io_apic_read(apic, 1);
870 spin_unlock_irqrestore(&ioapic_lock, flags);
871 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
872 }
873
874 for (apic = 0; apic < nr_ioapics; apic++) {
875 early_ioapic_entries[apic] =
876 kzalloc(sizeof(struct IO_APIC_route_entry) *
877 nr_ioapic_registers[apic], GFP_KERNEL);
878 if (!early_ioapic_entries[apic])
5ffa4eb2 879 goto nomem;
54168ed7
IM
880 }
881
882 for (apic = 0; apic < nr_ioapics; apic++)
05c3dc2c
SS
883 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
884 early_ioapic_entries[apic][pin] =
54168ed7 885 ioapic_read_entry(apic, pin);
5ffa4eb2 886
54168ed7 887 return 0;
5ffa4eb2
CG
888
889nomem:
c1370b49
CG
890 while (apic >= 0)
891 kfree(early_ioapic_entries[apic--]);
5ffa4eb2
CG
892 memset(early_ioapic_entries, 0,
893 ARRAY_SIZE(early_ioapic_entries));
894
895 return -ENOMEM;
54168ed7
IM
896}
897
05c3dc2c
SS
898void mask_IO_APIC_setup(void)
899{
900 int apic, pin;
901
902 for (apic = 0; apic < nr_ioapics; apic++) {
903 if (!early_ioapic_entries[apic])
904 break;
905 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
906 struct IO_APIC_route_entry entry;
907
908 entry = early_ioapic_entries[apic][pin];
909 if (!entry.mask) {
910 entry.mask = 1;
911 ioapic_write_entry(apic, pin, entry);
912 }
913 }
914 }
915}
916
54168ed7
IM
917void restore_IO_APIC_setup(void)
918{
919 int apic, pin;
920
5ffa4eb2
CG
921 for (apic = 0; apic < nr_ioapics; apic++) {
922 if (!early_ioapic_entries[apic])
923 break;
54168ed7
IM
924 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
925 ioapic_write_entry(apic, pin,
926 early_ioapic_entries[apic][pin]);
5ffa4eb2
CG
927 kfree(early_ioapic_entries[apic]);
928 early_ioapic_entries[apic] = NULL;
929 }
54168ed7
IM
930}
931
932void reinit_intr_remapped_IO_APIC(int intr_remapping)
933{
934 /*
935 * for now plain restore of previous settings.
936 * TBD: In the case of OS enabling interrupt-remapping,
937 * IO-APIC RTE's need to be setup to point to interrupt-remapping
938 * table entries. for now, do a plain restore, and wait for
939 * the setup_IO_APIC_irqs() to do proper initialization.
940 */
941 restore_IO_APIC_setup();
942}
943#endif
1da177e4
LT
944
945/*
946 * Find the IRQ entry number of a certain pin.
947 */
948static int find_irq_entry(int apic, int pin, int type)
949{
950 int i;
951
952 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
953 if (mp_irqs[i].irqtype == type &&
954 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
955 mp_irqs[i].dstapic == MP_APIC_ALL) &&
956 mp_irqs[i].dstirq == pin)
1da177e4
LT
957 return i;
958
959 return -1;
960}
961
962/*
963 * Find the pin to which IRQ[irq] (ISA) is connected
964 */
fcfd636a 965static int __init find_isa_irq_pin(int irq, int type)
1da177e4
LT
966{
967 int i;
968
969 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 970 int lbus = mp_irqs[i].srcbus;
1da177e4 971
d27e2b8e 972 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
973 (mp_irqs[i].irqtype == type) &&
974 (mp_irqs[i].srcbusirq == irq))
1da177e4 975
c2c21745 976 return mp_irqs[i].dstirq;
1da177e4
LT
977 }
978 return -1;
979}
980
fcfd636a
EB
981static int __init find_isa_irq_apic(int irq, int type)
982{
983 int i;
984
985 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 986 int lbus = mp_irqs[i].srcbus;
fcfd636a 987
73b2961b 988 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
989 (mp_irqs[i].irqtype == type) &&
990 (mp_irqs[i].srcbusirq == irq))
fcfd636a
EB
991 break;
992 }
993 if (i < mp_irq_entries) {
994 int apic;
54168ed7 995 for(apic = 0; apic < nr_ioapics; apic++) {
c2c21745 996 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
fcfd636a
EB
997 return apic;
998 }
999 }
1000
1001 return -1;
1002}
1003
1da177e4
LT
1004/*
1005 * Find a specific PCI IRQ entry.
1006 * Not an __init, possibly needed by modules
1007 */
1008static int pin_2_irq(int idx, int apic, int pin);
1009
1010int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
1011{
1012 int apic, i, best_guess = -1;
1013
54168ed7
IM
1014 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1015 bus, slot, pin);
ce6444d3 1016 if (test_bit(bus, mp_bus_not_pci)) {
54168ed7 1017 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1da177e4
LT
1018 return -1;
1019 }
1020 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 1021 int lbus = mp_irqs[i].srcbus;
1da177e4
LT
1022
1023 for (apic = 0; apic < nr_ioapics; apic++)
c2c21745
JSR
1024 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1025 mp_irqs[i].dstapic == MP_APIC_ALL)
1da177e4
LT
1026 break;
1027
47cab822 1028 if (!test_bit(lbus, mp_bus_not_pci) &&
c2c21745 1029 !mp_irqs[i].irqtype &&
1da177e4 1030 (bus == lbus) &&
c2c21745
JSR
1031 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1032 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1da177e4
LT
1033
1034 if (!(apic || IO_APIC_IRQ(irq)))
1035 continue;
1036
c2c21745 1037 if (pin == (mp_irqs[i].srcbusirq & 3))
1da177e4
LT
1038 return irq;
1039 /*
1040 * Use the first all-but-pin matching entry as a
1041 * best-guess fuzzy result for broken mptables.
1042 */
1043 if (best_guess < 0)
1044 best_guess = irq;
1045 }
1046 }
1047 return best_guess;
1048}
54168ed7 1049
129f6946 1050EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1da177e4 1051
c0a282c2 1052#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1da177e4
LT
1053/*
1054 * EISA Edge/Level control register, ELCR
1055 */
1056static int EISA_ELCR(unsigned int irq)
1057{
99d093d1 1058 if (irq < NR_IRQS_LEGACY) {
1da177e4
LT
1059 unsigned int port = 0x4d0 + (irq >> 3);
1060 return (inb(port) >> (irq & 7)) & 1;
1061 }
1062 apic_printk(APIC_VERBOSE, KERN_INFO
1063 "Broken MPtable reports ISA irq %d\n", irq);
1064 return 0;
1065}
54168ed7 1066
c0a282c2 1067#endif
1da177e4 1068
6728801d
AS
1069/* ISA interrupts are always polarity zero edge triggered,
1070 * when listed as conforming in the MP table. */
1071
1072#define default_ISA_trigger(idx) (0)
1073#define default_ISA_polarity(idx) (0)
1074
1da177e4
LT
1075/* EISA interrupts are always polarity zero and can be edge or level
1076 * trigger depending on the ELCR value. If an interrupt is listed as
1077 * EISA conforming in the MP table, that means its trigger type must
1078 * be read in from the ELCR */
1079
c2c21745 1080#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
6728801d 1081#define default_EISA_polarity(idx) default_ISA_polarity(idx)
1da177e4
LT
1082
1083/* PCI interrupts are always polarity one level triggered,
1084 * when listed as conforming in the MP table. */
1085
1086#define default_PCI_trigger(idx) (1)
1087#define default_PCI_polarity(idx) (1)
1088
1089/* MCA interrupts are always polarity zero level triggered,
1090 * when listed as conforming in the MP table. */
1091
1092#define default_MCA_trigger(idx) (1)
6728801d 1093#define default_MCA_polarity(idx) default_ISA_polarity(idx)
1da177e4 1094
61fd47e0 1095static int MPBIOS_polarity(int idx)
1da177e4 1096{
c2c21745 1097 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
1098 int polarity;
1099
1100 /*
1101 * Determine IRQ line polarity (high active or low active):
1102 */
c2c21745 1103 switch (mp_irqs[idx].irqflag & 3)
36062448 1104 {
54168ed7
IM
1105 case 0: /* conforms, ie. bus-type dependent polarity */
1106 if (test_bit(bus, mp_bus_not_pci))
1107 polarity = default_ISA_polarity(idx);
1108 else
1109 polarity = default_PCI_polarity(idx);
1110 break;
1111 case 1: /* high active */
1112 {
1113 polarity = 0;
1114 break;
1115 }
1116 case 2: /* reserved */
1117 {
1118 printk(KERN_WARNING "broken BIOS!!\n");
1119 polarity = 1;
1120 break;
1121 }
1122 case 3: /* low active */
1123 {
1124 polarity = 1;
1125 break;
1126 }
1127 default: /* invalid */
1128 {
1129 printk(KERN_WARNING "broken BIOS!!\n");
1130 polarity = 1;
1131 break;
1132 }
1da177e4
LT
1133 }
1134 return polarity;
1135}
1136
1137static int MPBIOS_trigger(int idx)
1138{
c2c21745 1139 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
1140 int trigger;
1141
1142 /*
1143 * Determine IRQ trigger mode (edge or level sensitive):
1144 */
c2c21745 1145 switch ((mp_irqs[idx].irqflag>>2) & 3)
1da177e4 1146 {
54168ed7
IM
1147 case 0: /* conforms, ie. bus-type dependent */
1148 if (test_bit(bus, mp_bus_not_pci))
1149 trigger = default_ISA_trigger(idx);
1150 else
1151 trigger = default_PCI_trigger(idx);
c0a282c2 1152#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
54168ed7
IM
1153 switch (mp_bus_id_to_type[bus]) {
1154 case MP_BUS_ISA: /* ISA pin */
1155 {
1156 /* set before the switch */
1157 break;
1158 }
1159 case MP_BUS_EISA: /* EISA pin */
1160 {
1161 trigger = default_EISA_trigger(idx);
1162 break;
1163 }
1164 case MP_BUS_PCI: /* PCI pin */
1165 {
1166 /* set before the switch */
1167 break;
1168 }
1169 case MP_BUS_MCA: /* MCA pin */
1170 {
1171 trigger = default_MCA_trigger(idx);
1172 break;
1173 }
1174 default:
1175 {
1176 printk(KERN_WARNING "broken BIOS!!\n");
1177 trigger = 1;
1178 break;
1179 }
1180 }
1181#endif
1da177e4 1182 break;
54168ed7 1183 case 1: /* edge */
1da177e4 1184 {
54168ed7 1185 trigger = 0;
1da177e4
LT
1186 break;
1187 }
54168ed7 1188 case 2: /* reserved */
1da177e4 1189 {
54168ed7
IM
1190 printk(KERN_WARNING "broken BIOS!!\n");
1191 trigger = 1;
1da177e4
LT
1192 break;
1193 }
54168ed7 1194 case 3: /* level */
1da177e4 1195 {
54168ed7 1196 trigger = 1;
1da177e4
LT
1197 break;
1198 }
54168ed7 1199 default: /* invalid */
1da177e4
LT
1200 {
1201 printk(KERN_WARNING "broken BIOS!!\n");
54168ed7 1202 trigger = 0;
1da177e4
LT
1203 break;
1204 }
1205 }
1206 return trigger;
1207}
1208
1209static inline int irq_polarity(int idx)
1210{
1211 return MPBIOS_polarity(idx);
1212}
1213
1214static inline int irq_trigger(int idx)
1215{
1216 return MPBIOS_trigger(idx);
1217}
1218
efa2559f 1219int (*ioapic_renumber_irq)(int ioapic, int irq);
1da177e4
LT
1220static int pin_2_irq(int idx, int apic, int pin)
1221{
1222 int irq, i;
c2c21745 1223 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
1224
1225 /*
1226 * Debugging check, we are in big trouble if this message pops up!
1227 */
c2c21745 1228 if (mp_irqs[idx].dstirq != pin)
1da177e4
LT
1229 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1230
54168ed7 1231 if (test_bit(bus, mp_bus_not_pci)) {
c2c21745 1232 irq = mp_irqs[idx].srcbusirq;
54168ed7 1233 } else {
643befed
AS
1234 /*
1235 * PCI IRQs are mapped in order
1236 */
1237 i = irq = 0;
1238 while (i < apic)
1239 irq += nr_ioapic_registers[i++];
1240 irq += pin;
d6c88a50 1241 /*
54168ed7
IM
1242 * For MPS mode, so far only needed by ES7000 platform
1243 */
d6c88a50
TG
1244 if (ioapic_renumber_irq)
1245 irq = ioapic_renumber_irq(apic, irq);
1da177e4
LT
1246 }
1247
54168ed7 1248#ifdef CONFIG_X86_32
1da177e4
LT
1249 /*
1250 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1251 */
1252 if ((pin >= 16) && (pin <= 23)) {
1253 if (pirq_entries[pin-16] != -1) {
1254 if (!pirq_entries[pin-16]) {
1255 apic_printk(APIC_VERBOSE, KERN_DEBUG
1256 "disabling PIRQ%d\n", pin-16);
1257 } else {
1258 irq = pirq_entries[pin-16];
1259 apic_printk(APIC_VERBOSE, KERN_DEBUG
1260 "using PIRQ%d -> IRQ %d\n",
1261 pin-16, irq);
1262 }
1263 }
1264 }
54168ed7
IM
1265#endif
1266
1da177e4
LT
1267 return irq;
1268}
1269
497c9a19
YL
1270void lock_vector_lock(void)
1271{
1272 /* Used to the online set of cpus does not change
1273 * during assign_irq_vector.
1274 */
1275 spin_lock(&vector_lock);
1276}
1da177e4 1277
497c9a19 1278void unlock_vector_lock(void)
1da177e4 1279{
497c9a19
YL
1280 spin_unlock(&vector_lock);
1281}
1da177e4 1282
e7986739
MT
1283static int
1284__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
497c9a19 1285{
047c8fdb
YL
1286 /*
1287 * NOTE! The local APIC isn't very good at handling
1288 * multiple interrupts at the same interrupt level.
1289 * As the interrupt level is determined by taking the
1290 * vector number and shifting that right by 4, we
1291 * want to spread these out a bit so that they don't
1292 * all fall in the same interrupt level.
1293 *
1294 * Also, we've got to be careful not to trash gate
1295 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1296 */
54168ed7
IM
1297 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1298 unsigned int old_vector;
22f65d31
MT
1299 int cpu, err;
1300 cpumask_var_t tmp_mask;
ace80ab7 1301
54168ed7
IM
1302 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1303 return -EBUSY;
0a1ad60d 1304
22f65d31
MT
1305 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1306 return -ENOMEM;
ace80ab7 1307
54168ed7
IM
1308 old_vector = cfg->vector;
1309 if (old_vector) {
22f65d31
MT
1310 cpumask_and(tmp_mask, mask, cpu_online_mask);
1311 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1312 if (!cpumask_empty(tmp_mask)) {
1313 free_cpumask_var(tmp_mask);
54168ed7 1314 return 0;
22f65d31 1315 }
54168ed7 1316 }
497c9a19 1317
e7986739 1318 /* Only try and allocate irqs on cpus that are present */
22f65d31
MT
1319 err = -ENOSPC;
1320 for_each_cpu_and(cpu, mask, cpu_online_mask) {
54168ed7
IM
1321 int new_cpu;
1322 int vector, offset;
497c9a19 1323
e2d40b18 1324 apic->vector_allocation_domain(cpu, tmp_mask);
497c9a19 1325
54168ed7
IM
1326 vector = current_vector;
1327 offset = current_offset;
497c9a19 1328next:
54168ed7
IM
1329 vector += 8;
1330 if (vector >= first_system_vector) {
e7986739 1331 /* If out of vectors on large boxen, must share them. */
54168ed7
IM
1332 offset = (offset + 1) % 8;
1333 vector = FIRST_DEVICE_VECTOR + offset;
1334 }
1335 if (unlikely(current_vector == vector))
1336 continue;
b77b881f
YL
1337
1338 if (test_bit(vector, used_vectors))
54168ed7 1339 goto next;
b77b881f 1340
22f65d31 1341 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
54168ed7
IM
1342 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1343 goto next;
1344 /* Found one! */
1345 current_vector = vector;
1346 current_offset = offset;
1347 if (old_vector) {
1348 cfg->move_in_progress = 1;
22f65d31 1349 cpumask_copy(cfg->old_domain, cfg->domain);
7a959cff 1350 }
22f65d31 1351 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
54168ed7
IM
1352 per_cpu(vector_irq, new_cpu)[vector] = irq;
1353 cfg->vector = vector;
22f65d31
MT
1354 cpumask_copy(cfg->domain, tmp_mask);
1355 err = 0;
1356 break;
54168ed7 1357 }
22f65d31
MT
1358 free_cpumask_var(tmp_mask);
1359 return err;
497c9a19
YL
1360}
1361
e7986739
MT
1362static int
1363assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
497c9a19
YL
1364{
1365 int err;
ace80ab7 1366 unsigned long flags;
ace80ab7
EB
1367
1368 spin_lock_irqsave(&vector_lock, flags);
3145e941 1369 err = __assign_irq_vector(irq, cfg, mask);
26a3c49c 1370 spin_unlock_irqrestore(&vector_lock, flags);
497c9a19
YL
1371 return err;
1372}
1373
3145e941 1374static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
497c9a19 1375{
497c9a19
YL
1376 int cpu, vector;
1377
497c9a19
YL
1378 BUG_ON(!cfg->vector);
1379
1380 vector = cfg->vector;
22f65d31 1381 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
497c9a19
YL
1382 per_cpu(vector_irq, cpu)[vector] = -1;
1383
1384 cfg->vector = 0;
22f65d31 1385 cpumask_clear(cfg->domain);
0ca4b6b0
MW
1386
1387 if (likely(!cfg->move_in_progress))
1388 return;
22f65d31 1389 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
0ca4b6b0
MW
1390 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1391 vector++) {
1392 if (per_cpu(vector_irq, cpu)[vector] != irq)
1393 continue;
1394 per_cpu(vector_irq, cpu)[vector] = -1;
1395 break;
1396 }
1397 }
1398 cfg->move_in_progress = 0;
497c9a19
YL
1399}
1400
1401void __setup_vector_irq(int cpu)
1402{
1403 /* Initialize vector_irq on a new cpu */
1404 /* This function must be called with vector_lock held */
1405 int irq, vector;
1406 struct irq_cfg *cfg;
0b8f1efa 1407 struct irq_desc *desc;
497c9a19
YL
1408
1409 /* Mark the inuse vectors */
0b8f1efa 1410 for_each_irq_desc(irq, desc) {
0b8f1efa 1411 cfg = desc->chip_data;
22f65d31 1412 if (!cpumask_test_cpu(cpu, cfg->domain))
497c9a19
YL
1413 continue;
1414 vector = cfg->vector;
497c9a19
YL
1415 per_cpu(vector_irq, cpu)[vector] = irq;
1416 }
1417 /* Mark the free vectors */
1418 for (vector = 0; vector < NR_VECTORS; ++vector) {
1419 irq = per_cpu(vector_irq, cpu)[vector];
1420 if (irq < 0)
1421 continue;
1422
1423 cfg = irq_cfg(irq);
22f65d31 1424 if (!cpumask_test_cpu(cpu, cfg->domain))
497c9a19 1425 per_cpu(vector_irq, cpu)[vector] = -1;
54168ed7 1426 }
1da177e4 1427}
3fde6900 1428
f5b9ed7a 1429static struct irq_chip ioapic_chip;
54168ed7 1430static struct irq_chip ir_ioapic_chip;
29b61be6 1431static struct irq_chip msi_ir_chip;
1da177e4 1432
54168ed7
IM
1433#define IOAPIC_AUTO -1
1434#define IOAPIC_EDGE 0
1435#define IOAPIC_LEVEL 1
1da177e4 1436
047c8fdb 1437#ifdef CONFIG_X86_32
1d025192
YL
1438static inline int IO_APIC_irq_trigger(int irq)
1439{
d6c88a50 1440 int apic, idx, pin;
1d025192 1441
d6c88a50
TG
1442 for (apic = 0; apic < nr_ioapics; apic++) {
1443 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1444 idx = find_irq_entry(apic, pin, mp_INT);
1445 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1446 return irq_trigger(idx);
1447 }
1448 }
1449 /*
54168ed7
IM
1450 * nonexistent IRQs are edge default
1451 */
d6c88a50 1452 return 0;
1d025192 1453}
047c8fdb
YL
1454#else
1455static inline int IO_APIC_irq_trigger(int irq)
1456{
54168ed7 1457 return 1;
047c8fdb
YL
1458}
1459#endif
1d025192 1460
3145e941 1461static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
1da177e4 1462{
199751d7 1463
6ebcc00e 1464 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
047c8fdb 1465 trigger == IOAPIC_LEVEL)
08678b08 1466 desc->status |= IRQ_LEVEL;
047c8fdb
YL
1467 else
1468 desc->status &= ~IRQ_LEVEL;
1469
54168ed7
IM
1470 if (irq_remapped(irq)) {
1471 desc->status |= IRQ_MOVE_PCNTXT;
1472 if (trigger)
1473 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1474 handle_fasteoi_irq,
1475 "fasteoi");
1476 else
1477 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1478 handle_edge_irq, "edge");
1479 return;
1480 }
29b61be6 1481
047c8fdb
YL
1482 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1483 trigger == IOAPIC_LEVEL)
a460e745 1484 set_irq_chip_and_handler_name(irq, &ioapic_chip,
54168ed7
IM
1485 handle_fasteoi_irq,
1486 "fasteoi");
047c8fdb 1487 else
a460e745 1488 set_irq_chip_and_handler_name(irq, &ioapic_chip,
54168ed7 1489 handle_edge_irq, "edge");
1da177e4
LT
1490}
1491
ca97ab90
JF
1492int setup_ioapic_entry(int apic_id, int irq,
1493 struct IO_APIC_route_entry *entry,
1494 unsigned int destination, int trigger,
0280f7c4 1495 int polarity, int vector, int pin)
1da177e4 1496{
497c9a19
YL
1497 /*
1498 * add it to the IO-APIC irq-routing table:
1499 */
1500 memset(entry,0,sizeof(*entry));
1501
54168ed7 1502 if (intr_remapping_enabled) {
c8d46cf0 1503 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
54168ed7
IM
1504 struct irte irte;
1505 struct IR_IO_APIC_route_entry *ir_entry =
1506 (struct IR_IO_APIC_route_entry *) entry;
1507 int index;
1508
1509 if (!iommu)
c8d46cf0 1510 panic("No mapping iommu for ioapic %d\n", apic_id);
54168ed7
IM
1511
1512 index = alloc_irte(iommu, irq, 1);
1513 if (index < 0)
c8d46cf0 1514 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
54168ed7
IM
1515
1516 memset(&irte, 0, sizeof(irte));
1517
1518 irte.present = 1;
9b5bc8dc 1519 irte.dst_mode = apic->irq_dest_mode;
0280f7c4
SS
1520 /*
1521 * Trigger mode in the IRTE will always be edge, and the
1522 * actual level or edge trigger will be setup in the IO-APIC
1523 * RTE. This will help simplify level triggered irq migration.
1524 * For more details, see the comments above explainig IO-APIC
1525 * irq migration in the presence of interrupt-remapping.
1526 */
1527 irte.trigger_mode = 0;
9b5bc8dc 1528 irte.dlvry_mode = apic->irq_delivery_mode;
54168ed7
IM
1529 irte.vector = vector;
1530 irte.dest_id = IRTE_DEST(destination);
1531
1532 modify_irte(irq, &irte);
1533
1534 ir_entry->index2 = (index >> 15) & 0x1;
1535 ir_entry->zero = 0;
1536 ir_entry->format = 1;
1537 ir_entry->index = (index & 0x7fff);
0280f7c4
SS
1538 /*
1539 * IO-APIC RTE will be configured with virtual vector.
1540 * irq handler will do the explicit EOI to the io-apic.
1541 */
1542 ir_entry->vector = pin;
29b61be6 1543 } else {
9b5bc8dc
IM
1544 entry->delivery_mode = apic->irq_delivery_mode;
1545 entry->dest_mode = apic->irq_dest_mode;
54168ed7 1546 entry->dest = destination;
0280f7c4 1547 entry->vector = vector;
54168ed7 1548 }
497c9a19 1549
54168ed7 1550 entry->mask = 0; /* enable IRQ */
497c9a19
YL
1551 entry->trigger = trigger;
1552 entry->polarity = polarity;
497c9a19
YL
1553
1554 /* Mask level triggered irqs.
1555 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1556 */
1557 if (trigger)
1558 entry->mask = 1;
497c9a19
YL
1559 return 0;
1560}
1561
c8d46cf0 1562static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
54168ed7 1563 int trigger, int polarity)
497c9a19
YL
1564{
1565 struct irq_cfg *cfg;
1da177e4 1566 struct IO_APIC_route_entry entry;
22f65d31 1567 unsigned int dest;
497c9a19
YL
1568
1569 if (!IO_APIC_IRQ(irq))
1570 return;
1571
3145e941 1572 cfg = desc->chip_data;
497c9a19 1573
fe402e1f 1574 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
497c9a19
YL
1575 return;
1576
debccb3e 1577 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
497c9a19
YL
1578
1579 apic_printk(APIC_VERBOSE,KERN_DEBUG
1580 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1581 "IRQ %d Mode:%i Active:%i)\n",
c8d46cf0 1582 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
497c9a19
YL
1583 irq, trigger, polarity);
1584
1585
c8d46cf0 1586 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
0280f7c4 1587 dest, trigger, polarity, cfg->vector, pin)) {
497c9a19 1588 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
c8d46cf0 1589 mp_ioapics[apic_id].apicid, pin);
3145e941 1590 __clear_irq_vector(irq, cfg);
497c9a19
YL
1591 return;
1592 }
1593
3145e941 1594 ioapic_register_intr(irq, desc, trigger);
99d093d1 1595 if (irq < NR_IRQS_LEGACY)
497c9a19
YL
1596 disable_8259A_irq(irq);
1597
c8d46cf0 1598 ioapic_write_entry(apic_id, pin, entry);
497c9a19
YL
1599}
1600
1601static void __init setup_IO_APIC_irqs(void)
1602{
c8d46cf0 1603 int apic_id, pin, idx, irq;
3c2cbd24 1604 int notcon = 0;
0b8f1efa 1605 struct irq_desc *desc;
3145e941 1606 struct irq_cfg *cfg;
0b8f1efa 1607 int cpu = boot_cpu_id;
1da177e4
LT
1608
1609 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1610
c8d46cf0
IM
1611 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1612 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
20d225b9 1613
c8d46cf0 1614 idx = find_irq_entry(apic_id, pin, mp_INT);
3c2cbd24 1615 if (idx == -1) {
2a554fb1 1616 if (!notcon) {
3c2cbd24 1617 notcon = 1;
2a554fb1
CG
1618 apic_printk(APIC_VERBOSE,
1619 KERN_DEBUG " %d-%d",
c8d46cf0 1620 mp_ioapics[apic_id].apicid, pin);
2a554fb1
CG
1621 } else
1622 apic_printk(APIC_VERBOSE, " %d-%d",
c8d46cf0 1623 mp_ioapics[apic_id].apicid, pin);
3c2cbd24
CG
1624 continue;
1625 }
56ffa1a0
CG
1626 if (notcon) {
1627 apic_printk(APIC_VERBOSE,
1628 " (apicid-pin) not connected\n");
1629 notcon = 0;
1630 }
3c2cbd24 1631
c8d46cf0 1632 irq = pin_2_irq(idx, apic_id, pin);
33a201fa
IM
1633
1634 /*
1635 * Skip the timer IRQ if there's a quirk handler
1636 * installed and if it returns 1:
1637 */
1638 if (apic->multi_timer_check &&
1639 apic->multi_timer_check(apic_id, irq))
3c2cbd24 1640 continue;
33a201fa 1641
0b8f1efa
YL
1642 desc = irq_to_desc_alloc_cpu(irq, cpu);
1643 if (!desc) {
1644 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1645 continue;
1646 }
3145e941 1647 cfg = desc->chip_data;
c8d46cf0 1648 add_pin_to_irq_cpu(cfg, cpu, apic_id, pin);
36062448 1649
c8d46cf0 1650 setup_IO_APIC_irq(apic_id, pin, irq, desc,
3c2cbd24
CG
1651 irq_trigger(idx), irq_polarity(idx));
1652 }
1da177e4
LT
1653 }
1654
3c2cbd24
CG
1655 if (notcon)
1656 apic_printk(APIC_VERBOSE,
2a554fb1 1657 " (apicid-pin) not connected\n");
1da177e4
LT
1658}
1659
1660/*
f7633ce5 1661 * Set up the timer pin, possibly with the 8259A-master behind.
1da177e4 1662 */
c8d46cf0 1663static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
f7633ce5 1664 int vector)
1da177e4
LT
1665{
1666 struct IO_APIC_route_entry entry;
1da177e4 1667
54168ed7
IM
1668 if (intr_remapping_enabled)
1669 return;
54168ed7 1670
36062448 1671 memset(&entry, 0, sizeof(entry));
1da177e4
LT
1672
1673 /*
1674 * We use logical delivery to get the timer IRQ
1675 * to the first CPU.
1676 */
9b5bc8dc 1677 entry.dest_mode = apic->irq_dest_mode;
f72dccac 1678 entry.mask = 0; /* don't mask IRQ for edge */
debccb3e 1679 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
9b5bc8dc 1680 entry.delivery_mode = apic->irq_delivery_mode;
1da177e4
LT
1681 entry.polarity = 0;
1682 entry.trigger = 0;
1683 entry.vector = vector;
1684
1685 /*
1686 * The timer IRQ doesn't have to know that behind the
f7633ce5 1687 * scene we may have a 8259A-master in AEOI mode ...
1da177e4 1688 */
54168ed7 1689 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1da177e4
LT
1690
1691 /*
1692 * Add it to the IO-APIC irq-routing table:
1693 */
c8d46cf0 1694 ioapic_write_entry(apic_id, pin, entry);
1da177e4
LT
1695}
1696
32f71aff
MR
1697
1698__apicdebuginit(void) print_IO_APIC(void)
1da177e4
LT
1699{
1700 int apic, i;
1701 union IO_APIC_reg_00 reg_00;
1702 union IO_APIC_reg_01 reg_01;
1703 union IO_APIC_reg_02 reg_02;
1704 union IO_APIC_reg_03 reg_03;
1705 unsigned long flags;
0f978f45 1706 struct irq_cfg *cfg;
0b8f1efa 1707 struct irq_desc *desc;
8f09cd20 1708 unsigned int irq;
1da177e4
LT
1709
1710 if (apic_verbosity == APIC_QUIET)
1711 return;
1712
36062448 1713 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1da177e4
LT
1714 for (i = 0; i < nr_ioapics; i++)
1715 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
b5ba7e6d 1716 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
1da177e4
LT
1717
1718 /*
1719 * We are a bit conservative about what we expect. We have to
1720 * know about every hardware change ASAP.
1721 */
1722 printk(KERN_INFO "testing the IO APIC.......................\n");
1723
1724 for (apic = 0; apic < nr_ioapics; apic++) {
1725
1726 spin_lock_irqsave(&ioapic_lock, flags);
1727 reg_00.raw = io_apic_read(apic, 0);
1728 reg_01.raw = io_apic_read(apic, 1);
1729 if (reg_01.bits.version >= 0x10)
1730 reg_02.raw = io_apic_read(apic, 2);
d6c88a50
TG
1731 if (reg_01.bits.version >= 0x20)
1732 reg_03.raw = io_apic_read(apic, 3);
1da177e4
LT
1733 spin_unlock_irqrestore(&ioapic_lock, flags);
1734
54168ed7 1735 printk("\n");
b5ba7e6d 1736 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
1da177e4
LT
1737 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1738 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1739 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1740 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1da177e4 1741
54168ed7 1742 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
1da177e4 1743 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1da177e4
LT
1744
1745 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1746 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1da177e4
LT
1747
1748 /*
1749 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1750 * but the value of reg_02 is read as the previous read register
1751 * value, so ignore it if reg_02 == reg_01.
1752 */
1753 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1754 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1755 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1da177e4
LT
1756 }
1757
1758 /*
1759 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1760 * or reg_03, but the value of reg_0[23] is read as the previous read
1761 * register value, so ignore it if reg_03 == reg_0[12].
1762 */
1763 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1764 reg_03.raw != reg_01.raw) {
1765 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1766 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1da177e4
LT
1767 }
1768
1769 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1770
d83e94ac
YL
1771 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1772 " Stat Dmod Deli Vect: \n");
1da177e4
LT
1773
1774 for (i = 0; i <= reg_01.bits.entries; i++) {
1775 struct IO_APIC_route_entry entry;
1776
cf4c6a2f 1777 entry = ioapic_read_entry(apic, i);
1da177e4 1778
54168ed7
IM
1779 printk(KERN_DEBUG " %02x %03X ",
1780 i,
1781 entry.dest
1782 );
1da177e4
LT
1783
1784 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1785 entry.mask,
1786 entry.trigger,
1787 entry.irr,
1788 entry.polarity,
1789 entry.delivery_status,
1790 entry.dest_mode,
1791 entry.delivery_mode,
1792 entry.vector
1793 );
1794 }
1795 }
1da177e4 1796 printk(KERN_DEBUG "IRQ to pin mappings:\n");
0b8f1efa
YL
1797 for_each_irq_desc(irq, desc) {
1798 struct irq_pin_list *entry;
1799
0b8f1efa
YL
1800 cfg = desc->chip_data;
1801 entry = cfg->irq_2_pin;
0f978f45 1802 if (!entry)
1da177e4 1803 continue;
8f09cd20 1804 printk(KERN_DEBUG "IRQ%d ", irq);
1da177e4
LT
1805 for (;;) {
1806 printk("-> %d:%d", entry->apic, entry->pin);
1807 if (!entry->next)
1808 break;
0f978f45 1809 entry = entry->next;
1da177e4
LT
1810 }
1811 printk("\n");
1812 }
1813
1814 printk(KERN_INFO ".................................... done.\n");
1815
1816 return;
1817}
1818
32f71aff 1819__apicdebuginit(void) print_APIC_bitfield(int base)
1da177e4
LT
1820{
1821 unsigned int v;
1822 int i, j;
1823
1824 if (apic_verbosity == APIC_QUIET)
1825 return;
1826
1827 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1828 for (i = 0; i < 8; i++) {
1829 v = apic_read(base + i*0x10);
1830 for (j = 0; j < 32; j++) {
1831 if (v & (1<<j))
1832 printk("1");
1833 else
1834 printk("0");
1835 }
1836 printk("\n");
1837 }
1838}
1839
32f71aff 1840__apicdebuginit(void) print_local_APIC(void *dummy)
1da177e4
LT
1841{
1842 unsigned int v, ver, maxlvt;
7ab6af7a 1843 u64 icr;
1da177e4
LT
1844
1845 if (apic_verbosity == APIC_QUIET)
1846 return;
1847
1848 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1849 smp_processor_id(), hard_smp_processor_id());
66823114 1850 v = apic_read(APIC_ID);
54168ed7 1851 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
1da177e4
LT
1852 v = apic_read(APIC_LVR);
1853 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1854 ver = GET_APIC_VERSION(v);
e05d723f 1855 maxlvt = lapic_get_maxlvt();
1da177e4
LT
1856
1857 v = apic_read(APIC_TASKPRI);
1858 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1859
54168ed7 1860 if (APIC_INTEGRATED(ver)) { /* !82489DX */
a11b5abe
YL
1861 if (!APIC_XAPIC(ver)) {
1862 v = apic_read(APIC_ARBPRI);
1863 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1864 v & APIC_ARBPRI_MASK);
1865 }
1da177e4
LT
1866 v = apic_read(APIC_PROCPRI);
1867 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1868 }
1869
a11b5abe
YL
1870 /*
1871 * Remote read supported only in the 82489DX and local APIC for
1872 * Pentium processors.
1873 */
1874 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1875 v = apic_read(APIC_RRR);
1876 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1877 }
1878
1da177e4
LT
1879 v = apic_read(APIC_LDR);
1880 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
a11b5abe
YL
1881 if (!x2apic_enabled()) {
1882 v = apic_read(APIC_DFR);
1883 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1884 }
1da177e4
LT
1885 v = apic_read(APIC_SPIV);
1886 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1887
1888 printk(KERN_DEBUG "... APIC ISR field:\n");
1889 print_APIC_bitfield(APIC_ISR);
1890 printk(KERN_DEBUG "... APIC TMR field:\n");
1891 print_APIC_bitfield(APIC_TMR);
1892 printk(KERN_DEBUG "... APIC IRR field:\n");
1893 print_APIC_bitfield(APIC_IRR);
1894
54168ed7
IM
1895 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1896 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1da177e4 1897 apic_write(APIC_ESR, 0);
54168ed7 1898
1da177e4
LT
1899 v = apic_read(APIC_ESR);
1900 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1901 }
1902
7ab6af7a 1903 icr = apic_icr_read();
0c425cec
IM
1904 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1905 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1da177e4
LT
1906
1907 v = apic_read(APIC_LVTT);
1908 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1909
1910 if (maxlvt > 3) { /* PC is LVT#4. */
1911 v = apic_read(APIC_LVTPC);
1912 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1913 }
1914 v = apic_read(APIC_LVT0);
1915 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1916 v = apic_read(APIC_LVT1);
1917 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1918
1919 if (maxlvt > 2) { /* ERR is LVT#3. */
1920 v = apic_read(APIC_LVTERR);
1921 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1922 }
1923
1924 v = apic_read(APIC_TMICT);
1925 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1926 v = apic_read(APIC_TMCCT);
1927 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1928 v = apic_read(APIC_TDCR);
1929 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1930 printk("\n");
1931}
1932
32f71aff 1933__apicdebuginit(void) print_all_local_APICs(void)
1da177e4 1934{
ffd5aae7
YL
1935 int cpu;
1936
1937 preempt_disable();
1938 for_each_online_cpu(cpu)
1939 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1940 preempt_enable();
1da177e4
LT
1941}
1942
32f71aff 1943__apicdebuginit(void) print_PIC(void)
1da177e4 1944{
1da177e4
LT
1945 unsigned int v;
1946 unsigned long flags;
1947
1948 if (apic_verbosity == APIC_QUIET)
1949 return;
1950
1951 printk(KERN_DEBUG "\nprinting PIC contents\n");
1952
1953 spin_lock_irqsave(&i8259A_lock, flags);
1954
1955 v = inb(0xa1) << 8 | inb(0x21);
1956 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1957
1958 v = inb(0xa0) << 8 | inb(0x20);
1959 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1960
54168ed7
IM
1961 outb(0x0b,0xa0);
1962 outb(0x0b,0x20);
1da177e4 1963 v = inb(0xa0) << 8 | inb(0x20);
54168ed7
IM
1964 outb(0x0a,0xa0);
1965 outb(0x0a,0x20);
1da177e4
LT
1966
1967 spin_unlock_irqrestore(&i8259A_lock, flags);
1968
1969 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1970
1971 v = inb(0x4d1) << 8 | inb(0x4d0);
1972 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1973}
1974
32f71aff
MR
1975__apicdebuginit(int) print_all_ICs(void)
1976{
1977 print_PIC();
1978 print_all_local_APICs();
1979 print_IO_APIC();
1980
1981 return 0;
1982}
1983
1984fs_initcall(print_all_ICs);
1985
1da177e4 1986
efa2559f
YL
1987/* Where if anywhere is the i8259 connect in external int mode */
1988static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1989
54168ed7 1990void __init enable_IO_APIC(void)
1da177e4
LT
1991{
1992 union IO_APIC_reg_01 reg_01;
fcfd636a 1993 int i8259_apic, i8259_pin;
54168ed7 1994 int apic;
1da177e4
LT
1995 unsigned long flags;
1996
1da177e4
LT
1997 /*
1998 * The number of IO-APIC IRQ registers (== #pins):
1999 */
fcfd636a 2000 for (apic = 0; apic < nr_ioapics; apic++) {
1da177e4 2001 spin_lock_irqsave(&ioapic_lock, flags);
fcfd636a 2002 reg_01.raw = io_apic_read(apic, 1);
1da177e4 2003 spin_unlock_irqrestore(&ioapic_lock, flags);
fcfd636a
EB
2004 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
2005 }
54168ed7 2006 for(apic = 0; apic < nr_ioapics; apic++) {
fcfd636a
EB
2007 int pin;
2008 /* See if any of the pins is in ExtINT mode */
1008fddc 2009 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
fcfd636a 2010 struct IO_APIC_route_entry entry;
cf4c6a2f 2011 entry = ioapic_read_entry(apic, pin);
fcfd636a 2012
fcfd636a
EB
2013 /* If the interrupt line is enabled and in ExtInt mode
2014 * I have found the pin where the i8259 is connected.
2015 */
2016 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
2017 ioapic_i8259.apic = apic;
2018 ioapic_i8259.pin = pin;
2019 goto found_i8259;
2020 }
2021 }
2022 }
2023 found_i8259:
2024 /* Look to see what if the MP table has reported the ExtINT */
2025 /* If we could not find the appropriate pin by looking at the ioapic
2026 * the i8259 probably is not connected the ioapic but give the
2027 * mptable a chance anyway.
2028 */
2029 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
2030 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
2031 /* Trust the MP table if nothing is setup in the hardware */
2032 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
2033 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
2034 ioapic_i8259.pin = i8259_pin;
2035 ioapic_i8259.apic = i8259_apic;
2036 }
2037 /* Complain if the MP table and the hardware disagree */
2038 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2039 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2040 {
2041 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1da177e4
LT
2042 }
2043
2044 /*
2045 * Do not trust the IO-APIC being empty at bootup
2046 */
2047 clear_IO_APIC();
2048}
2049
2050/*
2051 * Not an __init, needed by the reboot code
2052 */
2053void disable_IO_APIC(void)
2054{
2055 /*
2056 * Clear the IO-APIC before rebooting:
2057 */
2058 clear_IO_APIC();
2059
650927ef 2060 /*
0b968d23 2061 * If the i8259 is routed through an IOAPIC
650927ef 2062 * Put that IOAPIC in virtual wire mode
0b968d23 2063 * so legacy interrupts can be delivered.
7c6d9f97
SS
2064 *
2065 * With interrupt-remapping, for now we will use virtual wire A mode,
2066 * as virtual wire B is little complex (need to configure both
2067 * IOAPIC RTE aswell as interrupt-remapping table entry).
2068 * As this gets called during crash dump, keep this simple for now.
650927ef 2069 */
7c6d9f97 2070 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
650927ef 2071 struct IO_APIC_route_entry entry;
650927ef
EB
2072
2073 memset(&entry, 0, sizeof(entry));
2074 entry.mask = 0; /* Enabled */
2075 entry.trigger = 0; /* Edge */
2076 entry.irr = 0;
2077 entry.polarity = 0; /* High */
2078 entry.delivery_status = 0;
2079 entry.dest_mode = 0; /* Physical */
fcfd636a 2080 entry.delivery_mode = dest_ExtINT; /* ExtInt */
650927ef 2081 entry.vector = 0;
54168ed7 2082 entry.dest = read_apic_id();
650927ef
EB
2083
2084 /*
2085 * Add it to the IO-APIC irq-routing table:
2086 */
cf4c6a2f 2087 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
650927ef 2088 }
54168ed7 2089
7c6d9f97
SS
2090 /*
2091 * Use virtual wire A mode when interrupt remapping is enabled.
2092 */
2093 disconnect_bsp_APIC(!intr_remapping_enabled && ioapic_i8259.pin != -1);
1da177e4
LT
2094}
2095
54168ed7 2096#ifdef CONFIG_X86_32
1da177e4
LT
2097/*
2098 * function to set the IO-APIC physical IDs based on the
2099 * values stored in the MPC table.
2100 *
2101 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2102 */
2103
1da177e4
LT
2104static void __init setup_ioapic_ids_from_mpc(void)
2105{
2106 union IO_APIC_reg_00 reg_00;
2107 physid_mask_t phys_id_present_map;
c8d46cf0 2108 int apic_id;
1da177e4
LT
2109 int i;
2110 unsigned char old_id;
2111 unsigned long flags;
2112
a4dbc34d 2113 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
d49c4288 2114 return;
d49c4288 2115
ca05fea6
NP
2116 /*
2117 * Don't check I/O APIC IDs for xAPIC systems. They have
2118 * no meaning without the serial APIC bus.
2119 */
7c5c1e42
SL
2120 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2121 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
ca05fea6 2122 return;
1da177e4
LT
2123 /*
2124 * This is broken; anything with a real cpu count has to
2125 * circumvent this idiocy regardless.
2126 */
d190cb87 2127 phys_id_present_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
1da177e4
LT
2128
2129 /*
2130 * Set the IOAPIC ID to the value stored in the MPC table.
2131 */
c8d46cf0 2132 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1da177e4
LT
2133
2134 /* Read the register 0 value */
2135 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2136 reg_00.raw = io_apic_read(apic_id, 0);
1da177e4 2137 spin_unlock_irqrestore(&ioapic_lock, flags);
36062448 2138
c8d46cf0 2139 old_id = mp_ioapics[apic_id].apicid;
1da177e4 2140
c8d46cf0 2141 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
1da177e4 2142 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
c8d46cf0 2143 apic_id, mp_ioapics[apic_id].apicid);
1da177e4
LT
2144 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2145 reg_00.bits.ID);
c8d46cf0 2146 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
1da177e4
LT
2147 }
2148
1da177e4
LT
2149 /*
2150 * Sanity check, is the ID really free? Every APIC in a
2151 * system must have a unique ID or we get lots of nice
2152 * 'stuck on smp_invalidate_needed IPI wait' messages.
2153 */
d1d7cae8 2154 if (apic->check_apicid_used(phys_id_present_map,
c8d46cf0 2155 mp_ioapics[apic_id].apicid)) {
1da177e4 2156 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
c8d46cf0 2157 apic_id, mp_ioapics[apic_id].apicid);
1da177e4
LT
2158 for (i = 0; i < get_physical_broadcast(); i++)
2159 if (!physid_isset(i, phys_id_present_map))
2160 break;
2161 if (i >= get_physical_broadcast())
2162 panic("Max APIC ID exceeded!\n");
2163 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2164 i);
2165 physid_set(i, phys_id_present_map);
c8d46cf0 2166 mp_ioapics[apic_id].apicid = i;
1da177e4
LT
2167 } else {
2168 physid_mask_t tmp;
8058714a 2169 tmp = apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid);
1da177e4
LT
2170 apic_printk(APIC_VERBOSE, "Setting %d in the "
2171 "phys_id_present_map\n",
c8d46cf0 2172 mp_ioapics[apic_id].apicid);
1da177e4
LT
2173 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2174 }
2175
2176
2177 /*
2178 * We need to adjust the IRQ routing table
2179 * if the ID changed.
2180 */
c8d46cf0 2181 if (old_id != mp_ioapics[apic_id].apicid)
1da177e4 2182 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
2183 if (mp_irqs[i].dstapic == old_id)
2184 mp_irqs[i].dstapic
c8d46cf0 2185 = mp_ioapics[apic_id].apicid;
1da177e4
LT
2186
2187 /*
2188 * Read the right value from the MPC table and
2189 * write it into the ID register.
36062448 2190 */
1da177e4
LT
2191 apic_printk(APIC_VERBOSE, KERN_INFO
2192 "...changing IO-APIC physical APIC ID to %d ...",
c8d46cf0 2193 mp_ioapics[apic_id].apicid);
1da177e4 2194
c8d46cf0 2195 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
1da177e4 2196 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2197 io_apic_write(apic_id, 0, reg_00.raw);
a2d332fa 2198 spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
2199
2200 /*
2201 * Sanity check
2202 */
2203 spin_lock_irqsave(&ioapic_lock, flags);
c8d46cf0 2204 reg_00.raw = io_apic_read(apic_id, 0);
1da177e4 2205 spin_unlock_irqrestore(&ioapic_lock, flags);
c8d46cf0 2206 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
1da177e4
LT
2207 printk("could not set ID!\n");
2208 else
2209 apic_printk(APIC_VERBOSE, " ok.\n");
2210 }
2211}
54168ed7 2212#endif
1da177e4 2213
7ce0bcfd 2214int no_timer_check __initdata;
8542b200
ZA
2215
2216static int __init notimercheck(char *s)
2217{
2218 no_timer_check = 1;
2219 return 1;
2220}
2221__setup("no_timer_check", notimercheck);
2222
1da177e4
LT
2223/*
2224 * There is a nasty bug in some older SMP boards, their mptable lies
2225 * about the timer IRQ. We do the following to work around the situation:
2226 *
2227 * - timer IRQ defaults to IO-APIC IRQ
2228 * - if this function detects that timer IRQs are defunct, then we fall
2229 * back to ISA timer IRQs
2230 */
f0a7a5c9 2231static int __init timer_irq_works(void)
1da177e4
LT
2232{
2233 unsigned long t1 = jiffies;
4aae0702 2234 unsigned long flags;
1da177e4 2235
8542b200
ZA
2236 if (no_timer_check)
2237 return 1;
2238
4aae0702 2239 local_save_flags(flags);
1da177e4
LT
2240 local_irq_enable();
2241 /* Let ten ticks pass... */
2242 mdelay((10 * 1000) / HZ);
4aae0702 2243 local_irq_restore(flags);
1da177e4
LT
2244
2245 /*
2246 * Expect a few ticks at least, to be sure some possible
2247 * glue logic does not lock up after one or two first
2248 * ticks in a non-ExtINT mode. Also the local APIC
2249 * might have cached one ExtINT interrupt. Finally, at
2250 * least one tick may be lost due to delays.
2251 */
54168ed7
IM
2252
2253 /* jiffies wrap? */
1d16b53e 2254 if (time_after(jiffies, t1 + 4))
1da177e4 2255 return 1;
1da177e4
LT
2256 return 0;
2257}
2258
2259/*
2260 * In the SMP+IOAPIC case it might happen that there are an unspecified
2261 * number of pending IRQ events unhandled. These cases are very rare,
2262 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2263 * better to do it this way as thus we do not have to be aware of
2264 * 'pending' interrupts in the IRQ path, except at this point.
2265 */
2266/*
2267 * Edge triggered needs to resend any interrupt
2268 * that was delayed but this is now handled in the device
2269 * independent code.
2270 */
2271
2272/*
2273 * Starting up a edge-triggered IO-APIC interrupt is
2274 * nasty - we need to make sure that we get the edge.
2275 * If it is already asserted for some reason, we need
2276 * return 1 to indicate that is was pending.
2277 *
2278 * This is not complete - we should be able to fake
2279 * an edge even if it isn't on the 8259A...
2280 */
54168ed7 2281
f5b9ed7a 2282static unsigned int startup_ioapic_irq(unsigned int irq)
1da177e4
LT
2283{
2284 int was_pending = 0;
2285 unsigned long flags;
0b8f1efa 2286 struct irq_cfg *cfg;
1da177e4
LT
2287
2288 spin_lock_irqsave(&ioapic_lock, flags);
99d093d1 2289 if (irq < NR_IRQS_LEGACY) {
1da177e4
LT
2290 disable_8259A_irq(irq);
2291 if (i8259A_irq_pending(irq))
2292 was_pending = 1;
2293 }
0b8f1efa 2294 cfg = irq_cfg(irq);
3145e941 2295 __unmask_IO_APIC_irq(cfg);
1da177e4
LT
2296 spin_unlock_irqrestore(&ioapic_lock, flags);
2297
2298 return was_pending;
2299}
2300
54168ed7 2301#ifdef CONFIG_X86_64
ace80ab7 2302static int ioapic_retrigger_irq(unsigned int irq)
1da177e4 2303{
54168ed7
IM
2304
2305 struct irq_cfg *cfg = irq_cfg(irq);
2306 unsigned long flags;
2307
2308 spin_lock_irqsave(&vector_lock, flags);
dac5f412 2309 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
54168ed7 2310 spin_unlock_irqrestore(&vector_lock, flags);
c0ad90a3
IM
2311
2312 return 1;
2313}
54168ed7
IM
2314#else
2315static int ioapic_retrigger_irq(unsigned int irq)
497c9a19 2316{
dac5f412 2317 apic->send_IPI_self(irq_cfg(irq)->vector);
497c9a19 2318
d6c88a50 2319 return 1;
54168ed7
IM
2320}
2321#endif
497c9a19 2322
54168ed7
IM
2323/*
2324 * Level and edge triggered IO-APIC interrupts need different handling,
2325 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2326 * handled with the level-triggered descriptor, but that one has slightly
2327 * more overhead. Level-triggered interrupts cannot be handled with the
2328 * edge-triggered handler, without risking IRQ storms and other ugly
2329 * races.
2330 */
497c9a19 2331
54168ed7 2332#ifdef CONFIG_SMP
497c9a19 2333
54168ed7 2334#ifdef CONFIG_INTR_REMAP
497c9a19 2335
54168ed7
IM
2336/*
2337 * Migrate the IO-APIC irq in the presence of intr-remapping.
2338 *
0280f7c4
SS
2339 * For both level and edge triggered, irq migration is a simple atomic
2340 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
54168ed7 2341 *
0280f7c4
SS
2342 * For level triggered, we eliminate the io-apic RTE modification (with the
2343 * updated vector information), by using a virtual vector (io-apic pin number).
2344 * Real vector that is used for interrupting cpu will be coming from
2345 * the interrupt-remapping table entry.
54168ed7 2346 */
e7986739
MT
2347static void
2348migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
497c9a19 2349{
54168ed7 2350 struct irq_cfg *cfg;
54168ed7 2351 struct irte irte;
54168ed7 2352 unsigned int dest;
3145e941 2353 unsigned int irq;
497c9a19 2354
22f65d31 2355 if (!cpumask_intersects(mask, cpu_online_mask))
497c9a19
YL
2356 return;
2357
3145e941 2358 irq = desc->irq;
54168ed7
IM
2359 if (get_irte(irq, &irte))
2360 return;
497c9a19 2361
3145e941
YL
2362 cfg = desc->chip_data;
2363 if (assign_irq_vector(irq, cfg, mask))
54168ed7
IM
2364 return;
2365
3145e941
YL
2366 set_extra_move_desc(desc, mask);
2367
debccb3e 2368 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
54168ed7 2369
54168ed7
IM
2370 irte.vector = cfg->vector;
2371 irte.dest_id = IRTE_DEST(dest);
2372
2373 /*
2374 * Modified the IRTE and flushes the Interrupt entry cache.
2375 */
2376 modify_irte(irq, &irte);
2377
22f65d31
MT
2378 if (cfg->move_in_progress)
2379 send_cleanup_vector(cfg);
54168ed7 2380
7f7ace0c 2381 cpumask_copy(desc->affinity, mask);
54168ed7
IM
2382}
2383
54168ed7
IM
2384/*
2385 * Migrates the IRQ destination in the process context.
2386 */
968ea6d8
RR
2387static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2388 const struct cpumask *mask)
54168ed7 2389{
3145e941
YL
2390 migrate_ioapic_irq_desc(desc, mask);
2391}
968ea6d8
RR
2392static void set_ir_ioapic_affinity_irq(unsigned int irq,
2393 const struct cpumask *mask)
3145e941
YL
2394{
2395 struct irq_desc *desc = irq_to_desc(irq);
2396
2397 set_ir_ioapic_affinity_irq_desc(desc, mask);
54168ed7 2398}
29b61be6
SS
2399#else
2400static inline void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
2401 const struct cpumask *mask)
2402{
2403}
54168ed7
IM
2404#endif
2405
2406asmlinkage void smp_irq_move_cleanup_interrupt(void)
2407{
2408 unsigned vector, me;
8f2466f4 2409
54168ed7 2410 ack_APIC_irq();
54168ed7 2411 exit_idle();
54168ed7
IM
2412 irq_enter();
2413
2414 me = smp_processor_id();
2415 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2416 unsigned int irq;
68a8ca59 2417 unsigned int irr;
54168ed7
IM
2418 struct irq_desc *desc;
2419 struct irq_cfg *cfg;
2420 irq = __get_cpu_var(vector_irq)[vector];
2421
0b8f1efa
YL
2422 if (irq == -1)
2423 continue;
2424
54168ed7
IM
2425 desc = irq_to_desc(irq);
2426 if (!desc)
2427 continue;
2428
2429 cfg = irq_cfg(irq);
2430 spin_lock(&desc->lock);
2431 if (!cfg->move_cleanup_count)
2432 goto unlock;
2433
22f65d31 2434 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
54168ed7
IM
2435 goto unlock;
2436
68a8ca59
SS
2437 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2438 /*
2439 * Check if the vector that needs to be cleanedup is
2440 * registered at the cpu's IRR. If so, then this is not
2441 * the best time to clean it up. Lets clean it up in the
2442 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2443 * to myself.
2444 */
2445 if (irr & (1 << (vector % 32))) {
2446 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2447 goto unlock;
2448 }
54168ed7
IM
2449 __get_cpu_var(vector_irq)[vector] = -1;
2450 cfg->move_cleanup_count--;
2451unlock:
2452 spin_unlock(&desc->lock);
2453 }
2454
2455 irq_exit();
2456}
2457
3145e941 2458static void irq_complete_move(struct irq_desc **descp)
54168ed7 2459{
3145e941
YL
2460 struct irq_desc *desc = *descp;
2461 struct irq_cfg *cfg = desc->chip_data;
54168ed7
IM
2462 unsigned vector, me;
2463
48a1b10a
YL
2464 if (likely(!cfg->move_in_progress)) {
2465#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2466 if (likely(!cfg->move_desc_pending))
2467 return;
2468
b9098957 2469 /* domain has not changed, but affinity did */
48a1b10a 2470 me = smp_processor_id();
7f7ace0c 2471 if (cpumask_test_cpu(me, desc->affinity)) {
48a1b10a
YL
2472 *descp = desc = move_irq_desc(desc, me);
2473 /* get the new one */
2474 cfg = desc->chip_data;
2475 cfg->move_desc_pending = 0;
2476 }
2477#endif
54168ed7 2478 return;
48a1b10a 2479 }
54168ed7
IM
2480
2481 vector = ~get_irq_regs()->orig_ax;
2482 me = smp_processor_id();
10b888d6
YL
2483
2484 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) {
48a1b10a
YL
2485#ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2486 *descp = desc = move_irq_desc(desc, me);
2487 /* get the new one */
2488 cfg = desc->chip_data;
2489#endif
22f65d31 2490 send_cleanup_vector(cfg);
10b888d6 2491 }
497c9a19
YL
2492}
2493#else
3145e941 2494static inline void irq_complete_move(struct irq_desc **descp) {}
497c9a19 2495#endif
3145e941 2496
54168ed7 2497#ifdef CONFIG_INTR_REMAP
0280f7c4
SS
2498static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2499{
2500 int apic, pin;
2501 struct irq_pin_list *entry;
2502
2503 entry = cfg->irq_2_pin;
2504 for (;;) {
2505
2506 if (!entry)
2507 break;
2508
2509 apic = entry->apic;
2510 pin = entry->pin;
2511 io_apic_eoi(apic, pin);
2512 entry = entry->next;
2513 }
2514}
2515
2516static void
2517eoi_ioapic_irq(struct irq_desc *desc)
2518{
2519 struct irq_cfg *cfg;
2520 unsigned long flags;
2521 unsigned int irq;
2522
2523 irq = desc->irq;
2524 cfg = desc->chip_data;
2525
2526 spin_lock_irqsave(&ioapic_lock, flags);
2527 __eoi_ioapic_irq(irq, cfg);
2528 spin_unlock_irqrestore(&ioapic_lock, flags);
2529}
2530
54168ed7
IM
2531static void ack_x2apic_level(unsigned int irq)
2532{
0280f7c4 2533 struct irq_desc *desc = irq_to_desc(irq);
54168ed7 2534 ack_x2APIC_irq();
0280f7c4 2535 eoi_ioapic_irq(desc);
54168ed7
IM
2536}
2537
2538static void ack_x2apic_edge(unsigned int irq)
2539{
2540 ack_x2APIC_irq();
2541}
3145e941 2542
54168ed7 2543#endif
497c9a19 2544
1d025192
YL
2545static void ack_apic_edge(unsigned int irq)
2546{
3145e941
YL
2547 struct irq_desc *desc = irq_to_desc(irq);
2548
2549 irq_complete_move(&desc);
1d025192
YL
2550 move_native_irq(irq);
2551 ack_APIC_irq();
2552}
2553
3eb2cce8 2554atomic_t irq_mis_count;
3eb2cce8 2555
047c8fdb
YL
2556static void ack_apic_level(unsigned int irq)
2557{
3145e941
YL
2558 struct irq_desc *desc = irq_to_desc(irq);
2559
3eb2cce8
YL
2560#ifdef CONFIG_X86_32
2561 unsigned long v;
2562 int i;
2563#endif
3145e941 2564 struct irq_cfg *cfg;
54168ed7 2565 int do_unmask_irq = 0;
047c8fdb 2566
3145e941 2567 irq_complete_move(&desc);
047c8fdb 2568#ifdef CONFIG_GENERIC_PENDING_IRQ
54168ed7 2569 /* If we are moving the irq we need to mask it */
3145e941 2570 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
54168ed7 2571 do_unmask_irq = 1;
3145e941 2572 mask_IO_APIC_irq_desc(desc);
54168ed7 2573 }
047c8fdb
YL
2574#endif
2575
3eb2cce8
YL
2576#ifdef CONFIG_X86_32
2577 /*
2578 * It appears there is an erratum which affects at least version 0x11
2579 * of I/O APIC (that's the 82093AA and cores integrated into various
2580 * chipsets). Under certain conditions a level-triggered interrupt is
2581 * erroneously delivered as edge-triggered one but the respective IRR
2582 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2583 * message but it will never arrive and further interrupts are blocked
2584 * from the source. The exact reason is so far unknown, but the
2585 * phenomenon was observed when two consecutive interrupt requests
2586 * from a given source get delivered to the same CPU and the source is
2587 * temporarily disabled in between.
2588 *
2589 * A workaround is to simulate an EOI message manually. We achieve it
2590 * by setting the trigger mode to edge and then to level when the edge
2591 * trigger mode gets detected in the TMR of a local APIC for a
2592 * level-triggered interrupt. We mask the source for the time of the
2593 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2594 * The idea is from Manfred Spraul. --macro
2595 */
3145e941
YL
2596 cfg = desc->chip_data;
2597 i = cfg->vector;
3eb2cce8
YL
2598
2599 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2600#endif
2601
54168ed7
IM
2602 /*
2603 * We must acknowledge the irq before we move it or the acknowledge will
2604 * not propagate properly.
2605 */
2606 ack_APIC_irq();
2607
2608 /* Now we can move and renable the irq */
2609 if (unlikely(do_unmask_irq)) {
2610 /* Only migrate the irq if the ack has been received.
2611 *
2612 * On rare occasions the broadcast level triggered ack gets
2613 * delayed going to ioapics, and if we reprogram the
2614 * vector while Remote IRR is still set the irq will never
2615 * fire again.
2616 *
2617 * To prevent this scenario we read the Remote IRR bit
2618 * of the ioapic. This has two effects.
2619 * - On any sane system the read of the ioapic will
2620 * flush writes (and acks) going to the ioapic from
2621 * this cpu.
2622 * - We get to see if the ACK has actually been delivered.
2623 *
2624 * Based on failed experiments of reprogramming the
2625 * ioapic entry from outside of irq context starting
2626 * with masking the ioapic entry and then polling until
2627 * Remote IRR was clear before reprogramming the
2628 * ioapic I don't trust the Remote IRR bit to be
2629 * completey accurate.
2630 *
2631 * However there appears to be no other way to plug
2632 * this race, so if the Remote IRR bit is not
2633 * accurate and is causing problems then it is a hardware bug
2634 * and you can go talk to the chipset vendor about it.
2635 */
3145e941
YL
2636 cfg = desc->chip_data;
2637 if (!io_apic_level_ack_pending(cfg))
54168ed7 2638 move_masked_irq(irq);
3145e941 2639 unmask_IO_APIC_irq_desc(desc);
54168ed7 2640 }
1d025192 2641
3eb2cce8 2642#ifdef CONFIG_X86_32
1d025192
YL
2643 if (!(v & (1 << (i & 0x1f)))) {
2644 atomic_inc(&irq_mis_count);
2645 spin_lock(&ioapic_lock);
3145e941
YL
2646 __mask_and_edge_IO_APIC_irq(cfg);
2647 __unmask_and_level_IO_APIC_irq(cfg);
1d025192
YL
2648 spin_unlock(&ioapic_lock);
2649 }
047c8fdb 2650#endif
3eb2cce8 2651}
1d025192 2652
f5b9ed7a 2653static struct irq_chip ioapic_chip __read_mostly = {
d6c88a50
TG
2654 .name = "IO-APIC",
2655 .startup = startup_ioapic_irq,
2656 .mask = mask_IO_APIC_irq,
2657 .unmask = unmask_IO_APIC_irq,
2658 .ack = ack_apic_edge,
2659 .eoi = ack_apic_level,
54d5d424 2660#ifdef CONFIG_SMP
d6c88a50 2661 .set_affinity = set_ioapic_affinity_irq,
54d5d424 2662#endif
ace80ab7 2663 .retrigger = ioapic_retrigger_irq,
1da177e4
LT
2664};
2665
54168ed7
IM
2666#ifdef CONFIG_INTR_REMAP
2667static struct irq_chip ir_ioapic_chip __read_mostly = {
d6c88a50
TG
2668 .name = "IR-IO-APIC",
2669 .startup = startup_ioapic_irq,
2670 .mask = mask_IO_APIC_irq,
2671 .unmask = unmask_IO_APIC_irq,
2672 .ack = ack_x2apic_edge,
2673 .eoi = ack_x2apic_level,
54168ed7 2674#ifdef CONFIG_SMP
d6c88a50 2675 .set_affinity = set_ir_ioapic_affinity_irq,
54168ed7
IM
2676#endif
2677 .retrigger = ioapic_retrigger_irq,
2678};
2679#endif
1da177e4
LT
2680
2681static inline void init_IO_APIC_traps(void)
2682{
2683 int irq;
08678b08 2684 struct irq_desc *desc;
da51a821 2685 struct irq_cfg *cfg;
1da177e4
LT
2686
2687 /*
2688 * NOTE! The local APIC isn't very good at handling
2689 * multiple interrupts at the same interrupt level.
2690 * As the interrupt level is determined by taking the
2691 * vector number and shifting that right by 4, we
2692 * want to spread these out a bit so that they don't
2693 * all fall in the same interrupt level.
2694 *
2695 * Also, we've got to be careful not to trash gate
2696 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2697 */
0b8f1efa 2698 for_each_irq_desc(irq, desc) {
0b8f1efa
YL
2699 cfg = desc->chip_data;
2700 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
1da177e4
LT
2701 /*
2702 * Hmm.. We don't have an entry for this,
2703 * so default to an old-fashioned 8259
2704 * interrupt if we can..
2705 */
99d093d1 2706 if (irq < NR_IRQS_LEGACY)
1da177e4 2707 make_8259A_irq(irq);
0b8f1efa 2708 else
1da177e4 2709 /* Strange. Oh, well.. */
08678b08 2710 desc->chip = &no_irq_chip;
1da177e4
LT
2711 }
2712 }
2713}
2714
f5b9ed7a
IM
2715/*
2716 * The local APIC irq-chip implementation:
2717 */
1da177e4 2718
36062448 2719static void mask_lapic_irq(unsigned int irq)
1da177e4
LT
2720{
2721 unsigned long v;
2722
2723 v = apic_read(APIC_LVT0);
593f4a78 2724 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1da177e4
LT
2725}
2726
36062448 2727static void unmask_lapic_irq(unsigned int irq)
1da177e4 2728{
f5b9ed7a 2729 unsigned long v;
1da177e4 2730
f5b9ed7a 2731 v = apic_read(APIC_LVT0);
593f4a78 2732 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
f5b9ed7a 2733}
1da177e4 2734
3145e941 2735static void ack_lapic_irq(unsigned int irq)
1d025192
YL
2736{
2737 ack_APIC_irq();
2738}
2739
f5b9ed7a 2740static struct irq_chip lapic_chip __read_mostly = {
9a1c6192 2741 .name = "local-APIC",
f5b9ed7a
IM
2742 .mask = mask_lapic_irq,
2743 .unmask = unmask_lapic_irq,
c88ac1df 2744 .ack = ack_lapic_irq,
1da177e4
LT
2745};
2746
3145e941 2747static void lapic_register_intr(int irq, struct irq_desc *desc)
c88ac1df 2748{
08678b08 2749 desc->status &= ~IRQ_LEVEL;
c88ac1df
MR
2750 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2751 "edge");
c88ac1df
MR
2752}
2753
e9427101 2754static void __init setup_nmi(void)
1da177e4
LT
2755{
2756 /*
36062448 2757 * Dirty trick to enable the NMI watchdog ...
1da177e4
LT
2758 * We put the 8259A master into AEOI mode and
2759 * unmask on all local APICs LVT0 as NMI.
2760 *
2761 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2762 * is from Maciej W. Rozycki - so we do not have to EOI from
2763 * the NMI handler or the timer interrupt.
36062448 2764 */
1da177e4
LT
2765 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2766
e9427101 2767 enable_NMI_through_LVT0();
1da177e4
LT
2768
2769 apic_printk(APIC_VERBOSE, " done.\n");
2770}
2771
2772/*
2773 * This looks a bit hackish but it's about the only one way of sending
2774 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2775 * not support the ExtINT mode, unfortunately. We need to send these
2776 * cycles as some i82489DX-based boards have glue logic that keeps the
2777 * 8259A interrupt line asserted until INTA. --macro
2778 */
28acf285 2779static inline void __init unlock_ExtINT_logic(void)
1da177e4 2780{
fcfd636a 2781 int apic, pin, i;
1da177e4
LT
2782 struct IO_APIC_route_entry entry0, entry1;
2783 unsigned char save_control, save_freq_select;
1da177e4 2784
fcfd636a 2785 pin = find_isa_irq_pin(8, mp_INT);
956fb531
AB
2786 if (pin == -1) {
2787 WARN_ON_ONCE(1);
2788 return;
2789 }
fcfd636a 2790 apic = find_isa_irq_apic(8, mp_INT);
956fb531
AB
2791 if (apic == -1) {
2792 WARN_ON_ONCE(1);
1da177e4 2793 return;
956fb531 2794 }
1da177e4 2795
cf4c6a2f 2796 entry0 = ioapic_read_entry(apic, pin);
fcfd636a 2797 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
2798
2799 memset(&entry1, 0, sizeof(entry1));
2800
2801 entry1.dest_mode = 0; /* physical delivery */
2802 entry1.mask = 0; /* unmask IRQ now */
d83e94ac 2803 entry1.dest = hard_smp_processor_id();
1da177e4
LT
2804 entry1.delivery_mode = dest_ExtINT;
2805 entry1.polarity = entry0.polarity;
2806 entry1.trigger = 0;
2807 entry1.vector = 0;
2808
cf4c6a2f 2809 ioapic_write_entry(apic, pin, entry1);
1da177e4
LT
2810
2811 save_control = CMOS_READ(RTC_CONTROL);
2812 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2813 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2814 RTC_FREQ_SELECT);
2815 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2816
2817 i = 100;
2818 while (i-- > 0) {
2819 mdelay(10);
2820 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2821 i -= 10;
2822 }
2823
2824 CMOS_WRITE(save_control, RTC_CONTROL);
2825 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
fcfd636a 2826 clear_IO_APIC_pin(apic, pin);
1da177e4 2827
cf4c6a2f 2828 ioapic_write_entry(apic, pin, entry0);
1da177e4
LT
2829}
2830
efa2559f 2831static int disable_timer_pin_1 __initdata;
047c8fdb 2832/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
54168ed7 2833static int __init disable_timer_pin_setup(char *arg)
efa2559f
YL
2834{
2835 disable_timer_pin_1 = 1;
2836 return 0;
2837}
54168ed7 2838early_param("disable_timer_pin_1", disable_timer_pin_setup);
efa2559f
YL
2839
2840int timer_through_8259 __initdata;
2841
1da177e4
LT
2842/*
2843 * This code may look a bit paranoid, but it's supposed to cooperate with
2844 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2845 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2846 * fanatically on his truly buggy board.
54168ed7
IM
2847 *
2848 * FIXME: really need to revamp this for all platforms.
1da177e4 2849 */
8542b200 2850static inline void __init check_timer(void)
1da177e4 2851{
3145e941
YL
2852 struct irq_desc *desc = irq_to_desc(0);
2853 struct irq_cfg *cfg = desc->chip_data;
2854 int cpu = boot_cpu_id;
fcfd636a 2855 int apic1, pin1, apic2, pin2;
4aae0702 2856 unsigned long flags;
047c8fdb 2857 int no_pin1 = 0;
4aae0702
IM
2858
2859 local_irq_save(flags);
d4d25dec 2860
1da177e4
LT
2861 /*
2862 * get/set the timer IRQ vector:
2863 */
2864 disable_8259A_irq(0);
fe402e1f 2865 assign_irq_vector(0, cfg, apic->target_cpus());
1da177e4
LT
2866
2867 /*
d11d5794
MR
2868 * As IRQ0 is to be enabled in the 8259A, the virtual
2869 * wire has to be disabled in the local APIC. Also
2870 * timer interrupts need to be acknowledged manually in
2871 * the 8259A for the i82489DX when using the NMI
2872 * watchdog as that APIC treats NMIs as level-triggered.
2873 * The AEOI mode will finish them in the 8259A
2874 * automatically.
1da177e4 2875 */
593f4a78 2876 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1da177e4 2877 init_8259A(1);
54168ed7 2878#ifdef CONFIG_X86_32
f72dccac
YL
2879 {
2880 unsigned int ver;
2881
2882 ver = apic_read(APIC_LVR);
2883 ver = GET_APIC_VERSION(ver);
2884 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2885 }
54168ed7 2886#endif
1da177e4 2887
fcfd636a
EB
2888 pin1 = find_isa_irq_pin(0, mp_INT);
2889 apic1 = find_isa_irq_apic(0, mp_INT);
2890 pin2 = ioapic_i8259.pin;
2891 apic2 = ioapic_i8259.apic;
1da177e4 2892
49a66a0b
MR
2893 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2894 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
497c9a19 2895 cfg->vector, apic1, pin1, apic2, pin2);
1da177e4 2896
691874fa
MR
2897 /*
2898 * Some BIOS writers are clueless and report the ExtINTA
2899 * I/O APIC input from the cascaded 8259A as the timer
2900 * interrupt input. So just in case, if only one pin
2901 * was found above, try it both directly and through the
2902 * 8259A.
2903 */
2904 if (pin1 == -1) {
54168ed7
IM
2905 if (intr_remapping_enabled)
2906 panic("BIOS bug: timer not connected to IO-APIC");
691874fa
MR
2907 pin1 = pin2;
2908 apic1 = apic2;
2909 no_pin1 = 1;
2910 } else if (pin2 == -1) {
2911 pin2 = pin1;
2912 apic2 = apic1;
2913 }
2914
1da177e4
LT
2915 if (pin1 != -1) {
2916 /*
2917 * Ok, does IRQ0 through the IOAPIC work?
2918 */
691874fa 2919 if (no_pin1) {
3145e941 2920 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
497c9a19 2921 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
f72dccac
YL
2922 } else {
2923 /* for edge trigger, setup_IO_APIC_irq already
2924 * leave it unmasked.
2925 * so only need to unmask if it is level-trigger
2926 * do we really have level trigger timer?
2927 */
2928 int idx;
2929 idx = find_irq_entry(apic1, pin1, mp_INT);
2930 if (idx != -1 && irq_trigger(idx))
2931 unmask_IO_APIC_irq_desc(desc);
691874fa 2932 }
1da177e4
LT
2933 if (timer_irq_works()) {
2934 if (nmi_watchdog == NMI_IO_APIC) {
1da177e4
LT
2935 setup_nmi();
2936 enable_8259A_irq(0);
1da177e4 2937 }
66759a01
CE
2938 if (disable_timer_pin_1 > 0)
2939 clear_IO_APIC_pin(0, pin1);
4aae0702 2940 goto out;
1da177e4 2941 }
54168ed7
IM
2942 if (intr_remapping_enabled)
2943 panic("timer doesn't work through Interrupt-remapped IO-APIC");
f72dccac 2944 local_irq_disable();
fcfd636a 2945 clear_IO_APIC_pin(apic1, pin1);
691874fa 2946 if (!no_pin1)
49a66a0b
MR
2947 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2948 "8254 timer not connected to IO-APIC\n");
1da177e4 2949
49a66a0b
MR
2950 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2951 "(IRQ0) through the 8259A ...\n");
2952 apic_printk(APIC_QUIET, KERN_INFO
2953 "..... (found apic %d pin %d) ...\n", apic2, pin2);
1da177e4
LT
2954 /*
2955 * legacy devices should be connected to IO APIC #0
2956 */
3145e941 2957 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
497c9a19 2958 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
ecd29476 2959 enable_8259A_irq(0);
1da177e4 2960 if (timer_irq_works()) {
49a66a0b 2961 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
35542c5e 2962 timer_through_8259 = 1;
1da177e4 2963 if (nmi_watchdog == NMI_IO_APIC) {
60134ebe 2964 disable_8259A_irq(0);
1da177e4 2965 setup_nmi();
60134ebe 2966 enable_8259A_irq(0);
1da177e4 2967 }
4aae0702 2968 goto out;
1da177e4
LT
2969 }
2970 /*
2971 * Cleanup, just in case ...
2972 */
f72dccac 2973 local_irq_disable();
ecd29476 2974 disable_8259A_irq(0);
fcfd636a 2975 clear_IO_APIC_pin(apic2, pin2);
49a66a0b 2976 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
1da177e4 2977 }
1da177e4
LT
2978
2979 if (nmi_watchdog == NMI_IO_APIC) {
49a66a0b
MR
2980 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2981 "through the IO-APIC - disabling NMI Watchdog!\n");
067fa0ff 2982 nmi_watchdog = NMI_NONE;
1da177e4 2983 }
54168ed7 2984#ifdef CONFIG_X86_32
d11d5794 2985 timer_ack = 0;
54168ed7 2986#endif
1da177e4 2987
49a66a0b
MR
2988 apic_printk(APIC_QUIET, KERN_INFO
2989 "...trying to set up timer as Virtual Wire IRQ...\n");
1da177e4 2990
3145e941 2991 lapic_register_intr(0, desc);
497c9a19 2992 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
1da177e4
LT
2993 enable_8259A_irq(0);
2994
2995 if (timer_irq_works()) {
49a66a0b 2996 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 2997 goto out;
1da177e4 2998 }
f72dccac 2999 local_irq_disable();
e67465f1 3000 disable_8259A_irq(0);
497c9a19 3001 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
49a66a0b 3002 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
1da177e4 3003
49a66a0b
MR
3004 apic_printk(APIC_QUIET, KERN_INFO
3005 "...trying to set up timer as ExtINT IRQ...\n");
1da177e4 3006
1da177e4
LT
3007 init_8259A(0);
3008 make_8259A_irq(0);
593f4a78 3009 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1da177e4
LT
3010
3011 unlock_ExtINT_logic();
3012
3013 if (timer_irq_works()) {
49a66a0b 3014 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 3015 goto out;
1da177e4 3016 }
f72dccac 3017 local_irq_disable();
49a66a0b 3018 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
1da177e4 3019 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
49a66a0b 3020 "report. Then try booting with the 'noapic' option.\n");
4aae0702
IM
3021out:
3022 local_irq_restore(flags);
1da177e4
LT
3023}
3024
3025/*
af174783
MR
3026 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3027 * to devices. However there may be an I/O APIC pin available for
3028 * this interrupt regardless. The pin may be left unconnected, but
3029 * typically it will be reused as an ExtINT cascade interrupt for
3030 * the master 8259A. In the MPS case such a pin will normally be
3031 * reported as an ExtINT interrupt in the MP table. With ACPI
3032 * there is no provision for ExtINT interrupts, and in the absence
3033 * of an override it would be treated as an ordinary ISA I/O APIC
3034 * interrupt, that is edge-triggered and unmasked by default. We
3035 * used to do this, but it caused problems on some systems because
3036 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3037 * the same ExtINT cascade interrupt to drive the local APIC of the
3038 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3039 * the I/O APIC in all cases now. No actual device should request
3040 * it anyway. --macro
1da177e4
LT
3041 */
3042#define PIC_IRQS (1 << PIC_CASCADE_IR)
3043
3044void __init setup_IO_APIC(void)
3045{
54168ed7 3046
54168ed7
IM
3047 /*
3048 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3049 */
1da177e4 3050
af174783 3051 io_apic_irqs = ~PIC_IRQS;
1da177e4 3052
54168ed7 3053 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
d6c88a50 3054 /*
54168ed7
IM
3055 * Set up IO-APIC IRQ routing.
3056 */
3057#ifdef CONFIG_X86_32
d6c88a50
TG
3058 if (!acpi_ioapic)
3059 setup_ioapic_ids_from_mpc();
54168ed7 3060#endif
1da177e4
LT
3061 sync_Arb_IDs();
3062 setup_IO_APIC_irqs();
3063 init_IO_APIC_traps();
1e4c85f9 3064 check_timer();
1da177e4
LT
3065}
3066
3067/*
54168ed7
IM
3068 * Called after all the initialization is done. If we didnt find any
3069 * APIC bugs then we can allow the modify fast path
1da177e4 3070 */
36062448 3071
1da177e4
LT
3072static int __init io_apic_bug_finalize(void)
3073{
d6c88a50
TG
3074 if (sis_apic_bug == -1)
3075 sis_apic_bug = 0;
3076 return 0;
1da177e4
LT
3077}
3078
3079late_initcall(io_apic_bug_finalize);
3080
3081struct sysfs_ioapic_data {
3082 struct sys_device dev;
3083 struct IO_APIC_route_entry entry[0];
3084};
54168ed7 3085static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1da177e4 3086
438510f6 3087static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1da177e4
LT
3088{
3089 struct IO_APIC_route_entry *entry;
3090 struct sysfs_ioapic_data *data;
1da177e4 3091 int i;
36062448 3092
1da177e4
LT
3093 data = container_of(dev, struct sysfs_ioapic_data, dev);
3094 entry = data->entry;
54168ed7
IM
3095 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3096 *entry = ioapic_read_entry(dev->id, i);
1da177e4
LT
3097
3098 return 0;
3099}
3100
3101static int ioapic_resume(struct sys_device *dev)
3102{
3103 struct IO_APIC_route_entry *entry;
3104 struct sysfs_ioapic_data *data;
3105 unsigned long flags;
3106 union IO_APIC_reg_00 reg_00;
3107 int i;
36062448 3108
1da177e4
LT
3109 data = container_of(dev, struct sysfs_ioapic_data, dev);
3110 entry = data->entry;
3111
3112 spin_lock_irqsave(&ioapic_lock, flags);
3113 reg_00.raw = io_apic_read(dev->id, 0);
b5ba7e6d
JSR
3114 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3115 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
1da177e4
LT
3116 io_apic_write(dev->id, 0, reg_00.raw);
3117 }
1da177e4 3118 spin_unlock_irqrestore(&ioapic_lock, flags);
36062448 3119 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
cf4c6a2f 3120 ioapic_write_entry(dev->id, i, entry[i]);
1da177e4
LT
3121
3122 return 0;
3123}
3124
3125static struct sysdev_class ioapic_sysdev_class = {
af5ca3f4 3126 .name = "ioapic",
1da177e4
LT
3127 .suspend = ioapic_suspend,
3128 .resume = ioapic_resume,
3129};
3130
3131static int __init ioapic_init_sysfs(void)
3132{
54168ed7
IM
3133 struct sys_device * dev;
3134 int i, size, error;
1da177e4
LT
3135
3136 error = sysdev_class_register(&ioapic_sysdev_class);
3137 if (error)
3138 return error;
3139
54168ed7 3140 for (i = 0; i < nr_ioapics; i++ ) {
36062448 3141 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1da177e4 3142 * sizeof(struct IO_APIC_route_entry);
25556c16 3143 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
1da177e4
LT
3144 if (!mp_ioapic_data[i]) {
3145 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3146 continue;
3147 }
1da177e4 3148 dev = &mp_ioapic_data[i]->dev;
36062448 3149 dev->id = i;
1da177e4
LT
3150 dev->cls = &ioapic_sysdev_class;
3151 error = sysdev_register(dev);
3152 if (error) {
3153 kfree(mp_ioapic_data[i]);
3154 mp_ioapic_data[i] = NULL;
3155 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3156 continue;
3157 }
3158 }
3159
3160 return 0;
3161}
3162
3163device_initcall(ioapic_init_sysfs);
3164
abcaa2b8 3165static int nr_irqs_gsi = NR_IRQS_LEGACY;
3fc471ed 3166/*
95d77884 3167 * Dynamic irq allocate and deallocation
3fc471ed 3168 */
199751d7 3169unsigned int create_irq_nr(unsigned int irq_want)
3fc471ed 3170{
ace80ab7 3171 /* Allocate an unused irq */
54168ed7
IM
3172 unsigned int irq;
3173 unsigned int new;
3fc471ed 3174 unsigned long flags;
0b8f1efa
YL
3175 struct irq_cfg *cfg_new = NULL;
3176 int cpu = boot_cpu_id;
3177 struct irq_desc *desc_new = NULL;
199751d7
YL
3178
3179 irq = 0;
abcaa2b8
YL
3180 if (irq_want < nr_irqs_gsi)
3181 irq_want = nr_irqs_gsi;
3182
ace80ab7 3183 spin_lock_irqsave(&vector_lock, flags);
9594949b 3184 for (new = irq_want; new < nr_irqs; new++) {
0b8f1efa
YL
3185 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3186 if (!desc_new) {
3187 printk(KERN_INFO "can not get irq_desc for %d\n", new);
ace80ab7 3188 continue;
0b8f1efa
YL
3189 }
3190 cfg_new = desc_new->chip_data;
3191
3192 if (cfg_new->vector != 0)
ace80ab7 3193 continue;
fe402e1f 3194 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
ace80ab7
EB
3195 irq = new;
3196 break;
3197 }
3198 spin_unlock_irqrestore(&vector_lock, flags);
3fc471ed 3199
199751d7 3200 if (irq > 0) {
3fc471ed 3201 dynamic_irq_init(irq);
0b8f1efa
YL
3202 /* restore it, in case dynamic_irq_init clear it */
3203 if (desc_new)
3204 desc_new->chip_data = cfg_new;
3fc471ed
EB
3205 }
3206 return irq;
3207}
3208
199751d7
YL
3209int create_irq(void)
3210{
be5d5350 3211 unsigned int irq_want;
54168ed7
IM
3212 int irq;
3213
be5d5350
YL
3214 irq_want = nr_irqs_gsi;
3215 irq = create_irq_nr(irq_want);
54168ed7
IM
3216
3217 if (irq == 0)
3218 irq = -1;
3219
3220 return irq;
199751d7
YL
3221}
3222
3fc471ed
EB
3223void destroy_irq(unsigned int irq)
3224{
3225 unsigned long flags;
0b8f1efa
YL
3226 struct irq_cfg *cfg;
3227 struct irq_desc *desc;
3fc471ed 3228
0b8f1efa
YL
3229 /* store it, in case dynamic_irq_cleanup clear it */
3230 desc = irq_to_desc(irq);
3231 cfg = desc->chip_data;
3fc471ed 3232 dynamic_irq_cleanup(irq);
0b8f1efa
YL
3233 /* connect back irq_cfg */
3234 if (desc)
3235 desc->chip_data = cfg;
3fc471ed 3236
54168ed7 3237 free_irte(irq);
3fc471ed 3238 spin_lock_irqsave(&vector_lock, flags);
3145e941 3239 __clear_irq_vector(irq, cfg);
3fc471ed
EB
3240 spin_unlock_irqrestore(&vector_lock, flags);
3241}
3fc471ed 3242
2d3fcc1c 3243/*
27b46d76 3244 * MSI message composition
2d3fcc1c
EB
3245 */
3246#ifdef CONFIG_PCI_MSI
3b7d1921 3247static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
2d3fcc1c 3248{
497c9a19
YL
3249 struct irq_cfg *cfg;
3250 int err;
2d3fcc1c
EB
3251 unsigned dest;
3252
f1182638
JB
3253 if (disable_apic)
3254 return -ENXIO;
3255
3145e941 3256 cfg = irq_cfg(irq);
fe402e1f 3257 err = assign_irq_vector(irq, cfg, apic->target_cpus());
497c9a19
YL
3258 if (err)
3259 return err;
2d3fcc1c 3260
debccb3e 3261 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
497c9a19 3262
54168ed7
IM
3263 if (irq_remapped(irq)) {
3264 struct irte irte;
3265 int ir_index;
3266 u16 sub_handle;
3267
3268 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3269 BUG_ON(ir_index == -1);
3270
3271 memset (&irte, 0, sizeof(irte));
3272
3273 irte.present = 1;
9b5bc8dc 3274 irte.dst_mode = apic->irq_dest_mode;
54168ed7 3275 irte.trigger_mode = 0; /* edge */
9b5bc8dc 3276 irte.dlvry_mode = apic->irq_delivery_mode;
54168ed7
IM
3277 irte.vector = cfg->vector;
3278 irte.dest_id = IRTE_DEST(dest);
3279
3280 modify_irte(irq, &irte);
3281
3282 msg->address_hi = MSI_ADDR_BASE_HI;
3283 msg->data = sub_handle;
3284 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3285 MSI_ADDR_IR_SHV |
3286 MSI_ADDR_IR_INDEX1(ir_index) |
3287 MSI_ADDR_IR_INDEX2(ir_index);
29b61be6 3288 } else {
9d783ba0
SS
3289 if (x2apic_enabled())
3290 msg->address_hi = MSI_ADDR_BASE_HI |
3291 MSI_ADDR_EXT_DEST_ID(dest);
3292 else
3293 msg->address_hi = MSI_ADDR_BASE_HI;
3294
54168ed7
IM
3295 msg->address_lo =
3296 MSI_ADDR_BASE_LO |
9b5bc8dc 3297 ((apic->irq_dest_mode == 0) ?
54168ed7
IM
3298 MSI_ADDR_DEST_MODE_PHYSICAL:
3299 MSI_ADDR_DEST_MODE_LOGICAL) |
9b5bc8dc 3300 ((apic->irq_delivery_mode != dest_LowestPrio) ?
54168ed7
IM
3301 MSI_ADDR_REDIRECTION_CPU:
3302 MSI_ADDR_REDIRECTION_LOWPRI) |
3303 MSI_ADDR_DEST_ID(dest);
497c9a19 3304
54168ed7
IM
3305 msg->data =
3306 MSI_DATA_TRIGGER_EDGE |
3307 MSI_DATA_LEVEL_ASSERT |
9b5bc8dc 3308 ((apic->irq_delivery_mode != dest_LowestPrio) ?
54168ed7
IM
3309 MSI_DATA_DELIVERY_FIXED:
3310 MSI_DATA_DELIVERY_LOWPRI) |
3311 MSI_DATA_VECTOR(cfg->vector);
3312 }
497c9a19 3313 return err;
2d3fcc1c
EB
3314}
3315
3b7d1921 3316#ifdef CONFIG_SMP
0de26520 3317static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
2d3fcc1c 3318{
3145e941 3319 struct irq_desc *desc = irq_to_desc(irq);
497c9a19 3320 struct irq_cfg *cfg;
3b7d1921
EB
3321 struct msi_msg msg;
3322 unsigned int dest;
3b7d1921 3323
22f65d31
MT
3324 dest = set_desc_affinity(desc, mask);
3325 if (dest == BAD_APICID)
497c9a19 3326 return;
2d3fcc1c 3327
3145e941 3328 cfg = desc->chip_data;
2d3fcc1c 3329
3145e941 3330 read_msi_msg_desc(desc, &msg);
3b7d1921
EB
3331
3332 msg.data &= ~MSI_DATA_VECTOR_MASK;
497c9a19 3333 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3b7d1921
EB
3334 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3335 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3336
3145e941 3337 write_msi_msg_desc(desc, &msg);
2d3fcc1c 3338}
54168ed7
IM
3339#ifdef CONFIG_INTR_REMAP
3340/*
3341 * Migrate the MSI irq to another cpumask. This migration is
3342 * done in the process context using interrupt-remapping hardware.
3343 */
e7986739
MT
3344static void
3345ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
54168ed7 3346{
3145e941 3347 struct irq_desc *desc = irq_to_desc(irq);
a7883dec 3348 struct irq_cfg *cfg = desc->chip_data;
54168ed7 3349 unsigned int dest;
54168ed7 3350 struct irte irte;
54168ed7
IM
3351
3352 if (get_irte(irq, &irte))
3353 return;
3354
22f65d31
MT
3355 dest = set_desc_affinity(desc, mask);
3356 if (dest == BAD_APICID)
54168ed7
IM
3357 return;
3358
54168ed7
IM
3359 irte.vector = cfg->vector;
3360 irte.dest_id = IRTE_DEST(dest);
3361
3362 /*
3363 * atomically update the IRTE with the new destination and vector.
3364 */
3365 modify_irte(irq, &irte);
3366
3367 /*
3368 * After this point, all the interrupts will start arriving
3369 * at the new destination. So, time to cleanup the previous
3370 * vector allocation.
3371 */
22f65d31
MT
3372 if (cfg->move_in_progress)
3373 send_cleanup_vector(cfg);
54168ed7 3374}
3145e941 3375
54168ed7 3376#endif
3b7d1921 3377#endif /* CONFIG_SMP */
2d3fcc1c 3378
3b7d1921
EB
3379/*
3380 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3381 * which implement the MSI or MSI-X Capability Structure.
3382 */
3383static struct irq_chip msi_chip = {
3384 .name = "PCI-MSI",
3385 .unmask = unmask_msi_irq,
3386 .mask = mask_msi_irq,
1d025192 3387 .ack = ack_apic_edge,
3b7d1921
EB
3388#ifdef CONFIG_SMP
3389 .set_affinity = set_msi_irq_affinity,
3390#endif
3391 .retrigger = ioapic_retrigger_irq,
2d3fcc1c
EB
3392};
3393
54168ed7
IM
3394#ifdef CONFIG_INTR_REMAP
3395static struct irq_chip msi_ir_chip = {
3396 .name = "IR-PCI-MSI",
3397 .unmask = unmask_msi_irq,
3398 .mask = mask_msi_irq,
3399 .ack = ack_x2apic_edge,
3400#ifdef CONFIG_SMP
3401 .set_affinity = ir_set_msi_irq_affinity,
3402#endif
3403 .retrigger = ioapic_retrigger_irq,
3404};
29b61be6 3405#endif
54168ed7
IM
3406
3407/*
3408 * Map the PCI dev to the corresponding remapping hardware unit
3409 * and allocate 'nvec' consecutive interrupt-remapping table entries
3410 * in it.
3411 */
3412static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3413{
3414 struct intel_iommu *iommu;
3415 int index;
3416
3417 iommu = map_dev_to_ir(dev);
3418 if (!iommu) {
3419 printk(KERN_ERR
3420 "Unable to map PCI %s to iommu\n", pci_name(dev));
3421 return -ENOENT;
3422 }
3423
3424 index = alloc_irte(iommu, irq, nvec);
3425 if (index < 0) {
3426 printk(KERN_ERR
3427 "Unable to allocate %d IRTE for PCI %s\n", nvec,
d6c88a50 3428 pci_name(dev));
54168ed7
IM
3429 return -ENOSPC;
3430 }
3431 return index;
3432}
1d025192 3433
3145e941 3434static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
1d025192
YL
3435{
3436 int ret;
3437 struct msi_msg msg;
3438
3439 ret = msi_compose_msg(dev, irq, &msg);
3440 if (ret < 0)
3441 return ret;
3442
3145e941 3443 set_irq_msi(irq, msidesc);
1d025192
YL
3444 write_msi_msg(irq, &msg);
3445
54168ed7
IM
3446 if (irq_remapped(irq)) {
3447 struct irq_desc *desc = irq_to_desc(irq);
3448 /*
3449 * irq migration in process context
3450 */
3451 desc->status |= IRQ_MOVE_PCNTXT;
3452 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3453 } else
54168ed7 3454 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
1d025192 3455
c81bba49
YL
3456 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3457
1d025192
YL
3458 return 0;
3459}
3460
047c8fdb
YL
3461int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3462{
54168ed7
IM
3463 unsigned int irq;
3464 int ret, sub_handle;
0b8f1efa 3465 struct msi_desc *msidesc;
54168ed7 3466 unsigned int irq_want;
54168ed7
IM
3467 struct intel_iommu *iommu = 0;
3468 int index = 0;
54168ed7 3469
be5d5350 3470 irq_want = nr_irqs_gsi;
54168ed7 3471 sub_handle = 0;
0b8f1efa
YL
3472 list_for_each_entry(msidesc, &dev->msi_list, list) {
3473 irq = create_irq_nr(irq_want);
54168ed7
IM
3474 if (irq == 0)
3475 return -1;
f1ee5548 3476 irq_want = irq + 1;
54168ed7
IM
3477 if (!intr_remapping_enabled)
3478 goto no_ir;
3479
3480 if (!sub_handle) {
3481 /*
3482 * allocate the consecutive block of IRTE's
3483 * for 'nvec'
3484 */
3485 index = msi_alloc_irte(dev, irq, nvec);
3486 if (index < 0) {
3487 ret = index;
3488 goto error;
3489 }
3490 } else {
3491 iommu = map_dev_to_ir(dev);
3492 if (!iommu) {
3493 ret = -ENOENT;
3494 goto error;
3495 }
3496 /*
3497 * setup the mapping between the irq and the IRTE
3498 * base index, the sub_handle pointing to the
3499 * appropriate interrupt remap table entry.
3500 */
3501 set_irte_irq(irq, iommu, index, sub_handle);
3502 }
3503no_ir:
0b8f1efa 3504 ret = setup_msi_irq(dev, msidesc, irq);
54168ed7
IM
3505 if (ret < 0)
3506 goto error;
3507 sub_handle++;
3508 }
3509 return 0;
047c8fdb
YL
3510
3511error:
54168ed7
IM
3512 destroy_irq(irq);
3513 return ret;
047c8fdb
YL
3514}
3515
3b7d1921
EB
3516void arch_teardown_msi_irq(unsigned int irq)
3517{
f7feaca7 3518 destroy_irq(irq);
3b7d1921
EB
3519}
3520
9d783ba0 3521#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
54168ed7 3522#ifdef CONFIG_SMP
22f65d31 3523static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
54168ed7 3524{
3145e941 3525 struct irq_desc *desc = irq_to_desc(irq);
54168ed7
IM
3526 struct irq_cfg *cfg;
3527 struct msi_msg msg;
3528 unsigned int dest;
54168ed7 3529
22f65d31
MT
3530 dest = set_desc_affinity(desc, mask);
3531 if (dest == BAD_APICID)
54168ed7
IM
3532 return;
3533
3145e941 3534 cfg = desc->chip_data;
54168ed7
IM
3535
3536 dmar_msi_read(irq, &msg);
3537
3538 msg.data &= ~MSI_DATA_VECTOR_MASK;
3539 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3540 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3541 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3542
3543 dmar_msi_write(irq, &msg);
54168ed7 3544}
3145e941 3545
54168ed7
IM
3546#endif /* CONFIG_SMP */
3547
3548struct irq_chip dmar_msi_type = {
3549 .name = "DMAR_MSI",
3550 .unmask = dmar_msi_unmask,
3551 .mask = dmar_msi_mask,
3552 .ack = ack_apic_edge,
3553#ifdef CONFIG_SMP
3554 .set_affinity = dmar_msi_set_affinity,
3555#endif
3556 .retrigger = ioapic_retrigger_irq,
3557};
3558
3559int arch_setup_dmar_msi(unsigned int irq)
3560{
3561 int ret;
3562 struct msi_msg msg;
2d3fcc1c 3563
54168ed7
IM
3564 ret = msi_compose_msg(NULL, irq, &msg);
3565 if (ret < 0)
3566 return ret;
3567 dmar_msi_write(irq, &msg);
3568 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3569 "edge");
3570 return 0;
3571}
3572#endif
3573
58ac1e76 3574#ifdef CONFIG_HPET_TIMER
3575
3576#ifdef CONFIG_SMP
22f65d31 3577static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
58ac1e76 3578{
3145e941 3579 struct irq_desc *desc = irq_to_desc(irq);
58ac1e76 3580 struct irq_cfg *cfg;
58ac1e76 3581 struct msi_msg msg;
3582 unsigned int dest;
58ac1e76 3583
22f65d31
MT
3584 dest = set_desc_affinity(desc, mask);
3585 if (dest == BAD_APICID)
58ac1e76 3586 return;
3587
3145e941 3588 cfg = desc->chip_data;
58ac1e76 3589
3590 hpet_msi_read(irq, &msg);
3591
3592 msg.data &= ~MSI_DATA_VECTOR_MASK;
3593 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3594 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3595 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3596
3597 hpet_msi_write(irq, &msg);
58ac1e76 3598}
3145e941 3599
58ac1e76 3600#endif /* CONFIG_SMP */
3601
3602struct irq_chip hpet_msi_type = {
3603 .name = "HPET_MSI",
3604 .unmask = hpet_msi_unmask,
3605 .mask = hpet_msi_mask,
3606 .ack = ack_apic_edge,
3607#ifdef CONFIG_SMP
3608 .set_affinity = hpet_msi_set_affinity,
3609#endif
3610 .retrigger = ioapic_retrigger_irq,
3611};
3612
3613int arch_setup_hpet_msi(unsigned int irq)
3614{
3615 int ret;
3616 struct msi_msg msg;
3617
3618 ret = msi_compose_msg(NULL, irq, &msg);
3619 if (ret < 0)
3620 return ret;
3621
3622 hpet_msi_write(irq, &msg);
3623 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3624 "edge");
c81bba49 3625
58ac1e76 3626 return 0;
3627}
3628#endif
3629
54168ed7 3630#endif /* CONFIG_PCI_MSI */
8b955b0d
EB
3631/*
3632 * Hypertransport interrupt support
3633 */
3634#ifdef CONFIG_HT_IRQ
3635
3636#ifdef CONFIG_SMP
3637
497c9a19 3638static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
8b955b0d 3639{
ec68307c
EB
3640 struct ht_irq_msg msg;
3641 fetch_ht_irq_msg(irq, &msg);
8b955b0d 3642
497c9a19 3643 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
ec68307c 3644 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
8b955b0d 3645
497c9a19 3646 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
ec68307c 3647 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 3648
ec68307c 3649 write_ht_irq_msg(irq, &msg);
8b955b0d
EB
3650}
3651
22f65d31 3652static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
8b955b0d 3653{
3145e941 3654 struct irq_desc *desc = irq_to_desc(irq);
497c9a19 3655 struct irq_cfg *cfg;
8b955b0d 3656 unsigned int dest;
8b955b0d 3657
22f65d31
MT
3658 dest = set_desc_affinity(desc, mask);
3659 if (dest == BAD_APICID)
497c9a19 3660 return;
8b955b0d 3661
3145e941 3662 cfg = desc->chip_data;
8b955b0d 3663
497c9a19 3664 target_ht_irq(irq, dest, cfg->vector);
8b955b0d 3665}
3145e941 3666
8b955b0d
EB
3667#endif
3668
c37e108d 3669static struct irq_chip ht_irq_chip = {
8b955b0d
EB
3670 .name = "PCI-HT",
3671 .mask = mask_ht_irq,
3672 .unmask = unmask_ht_irq,
1d025192 3673 .ack = ack_apic_edge,
8b955b0d
EB
3674#ifdef CONFIG_SMP
3675 .set_affinity = set_ht_irq_affinity,
3676#endif
3677 .retrigger = ioapic_retrigger_irq,
3678};
3679
3680int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3681{
497c9a19
YL
3682 struct irq_cfg *cfg;
3683 int err;
8b955b0d 3684
f1182638
JB
3685 if (disable_apic)
3686 return -ENXIO;
3687
3145e941 3688 cfg = irq_cfg(irq);
fe402e1f 3689 err = assign_irq_vector(irq, cfg, apic->target_cpus());
54168ed7 3690 if (!err) {
ec68307c 3691 struct ht_irq_msg msg;
8b955b0d 3692 unsigned dest;
8b955b0d 3693
debccb3e
IM
3694 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3695 apic->target_cpus());
8b955b0d 3696
ec68307c 3697 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
8b955b0d 3698
ec68307c
EB
3699 msg.address_lo =
3700 HT_IRQ_LOW_BASE |
8b955b0d 3701 HT_IRQ_LOW_DEST_ID(dest) |
497c9a19 3702 HT_IRQ_LOW_VECTOR(cfg->vector) |
9b5bc8dc 3703 ((apic->irq_dest_mode == 0) ?
8b955b0d
EB
3704 HT_IRQ_LOW_DM_PHYSICAL :
3705 HT_IRQ_LOW_DM_LOGICAL) |
3706 HT_IRQ_LOW_RQEOI_EDGE |
9b5bc8dc 3707 ((apic->irq_delivery_mode != dest_LowestPrio) ?
8b955b0d
EB
3708 HT_IRQ_LOW_MT_FIXED :
3709 HT_IRQ_LOW_MT_ARBITRATED) |
3710 HT_IRQ_LOW_IRQ_MASKED;
3711
ec68307c 3712 write_ht_irq_msg(irq, &msg);
8b955b0d 3713
a460e745
IM
3714 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3715 handle_edge_irq, "edge");
c81bba49
YL
3716
3717 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
8b955b0d 3718 }
497c9a19 3719 return err;
8b955b0d
EB
3720}
3721#endif /* CONFIG_HT_IRQ */
3722
03b48632 3723#ifdef CONFIG_X86_UV
4173a0e7
DN
3724/*
3725 * Re-target the irq to the specified CPU and enable the specified MMR located
3726 * on the specified blade to allow the sending of MSIs to the specified CPU.
3727 */
3728int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3729 unsigned long mmr_offset)
3730{
22f65d31 3731 const struct cpumask *eligible_cpu = cpumask_of(cpu);
4173a0e7
DN
3732 struct irq_cfg *cfg;
3733 int mmr_pnode;
3734 unsigned long mmr_value;
3735 struct uv_IO_APIC_route_entry *entry;
3736 unsigned long flags;
3737 int err;
3738
3145e941
YL
3739 cfg = irq_cfg(irq);
3740
e7986739 3741 err = assign_irq_vector(irq, cfg, eligible_cpu);
4173a0e7
DN
3742 if (err != 0)
3743 return err;
3744
3745 spin_lock_irqsave(&vector_lock, flags);
3746 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3747 irq_name);
3748 spin_unlock_irqrestore(&vector_lock, flags);
3749
4173a0e7
DN
3750 mmr_value = 0;
3751 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3752 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3753
3754 entry->vector = cfg->vector;
9b5bc8dc
IM
3755 entry->delivery_mode = apic->irq_delivery_mode;
3756 entry->dest_mode = apic->irq_dest_mode;
4173a0e7
DN
3757 entry->polarity = 0;
3758 entry->trigger = 0;
3759 entry->mask = 0;
debccb3e 3760 entry->dest = apic->cpu_mask_to_apicid(eligible_cpu);
4173a0e7
DN
3761
3762 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3763 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3764
3765 return irq;
3766}
3767
3768/*
3769 * Disable the specified MMR located on the specified blade so that MSIs are
3770 * longer allowed to be sent.
3771 */
3772void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3773{
3774 unsigned long mmr_value;
3775 struct uv_IO_APIC_route_entry *entry;
3776 int mmr_pnode;
3777
3778 mmr_value = 0;
3779 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3780 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3781
3782 entry->mask = 1;
3783
3784 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3785 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3786}
3787#endif /* CONFIG_X86_64 */
3788
9d6a4d08
YL
3789int __init io_apic_get_redir_entries (int ioapic)
3790{
3791 union IO_APIC_reg_01 reg_01;
3792 unsigned long flags;
3793
3794 spin_lock_irqsave(&ioapic_lock, flags);
3795 reg_01.raw = io_apic_read(ioapic, 1);
3796 spin_unlock_irqrestore(&ioapic_lock, flags);
3797
3798 return reg_01.bits.entries;
3799}
3800
be5d5350 3801void __init probe_nr_irqs_gsi(void)
9d6a4d08 3802{
be5d5350
YL
3803 int nr = 0;
3804
cc6c5006
YL
3805 nr = acpi_probe_gsi();
3806 if (nr > nr_irqs_gsi) {
be5d5350 3807 nr_irqs_gsi = nr;
cc6c5006
YL
3808 } else {
3809 /* for acpi=off or acpi is not compiled in */
3810 int idx;
3811
3812 nr = 0;
3813 for (idx = 0; idx < nr_ioapics; idx++)
3814 nr += io_apic_get_redir_entries(idx) + 1;
3815
3816 if (nr > nr_irqs_gsi)
3817 nr_irqs_gsi = nr;
3818 }
3819
3820 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
9d6a4d08
YL
3821}
3822
4a046d17
YL
3823#ifdef CONFIG_SPARSE_IRQ
3824int __init arch_probe_nr_irqs(void)
3825{
3826 int nr;
3827
f1ee5548
YL
3828 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3829 nr_irqs = NR_VECTORS * nr_cpu_ids;
4a046d17 3830
f1ee5548
YL
3831 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3832#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3833 /*
3834 * for MSI and HT dyn irq
3835 */
3836 nr += nr_irqs_gsi * 16;
3837#endif
3838 if (nr < nr_irqs)
4a046d17
YL
3839 nr_irqs = nr;
3840
3841 return 0;
3842}
3843#endif
3844
1da177e4 3845/* --------------------------------------------------------------------------
54168ed7 3846 ACPI-based IOAPIC Configuration
1da177e4
LT
3847 -------------------------------------------------------------------------- */
3848
888ba6c6 3849#ifdef CONFIG_ACPI
1da177e4 3850
54168ed7 3851#ifdef CONFIG_X86_32
36062448 3852int __init io_apic_get_unique_id(int ioapic, int apic_id)
1da177e4
LT
3853{
3854 union IO_APIC_reg_00 reg_00;
3855 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3856 physid_mask_t tmp;
3857 unsigned long flags;
3858 int i = 0;
3859
3860 /*
36062448
PC
3861 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3862 * buses (one for LAPICs, one for IOAPICs), where predecessors only
1da177e4 3863 * supports up to 16 on one shared APIC bus.
36062448 3864 *
1da177e4
LT
3865 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3866 * advantage of new APIC bus architecture.
3867 */
3868
3869 if (physids_empty(apic_id_map))
d190cb87 3870 apic_id_map = apic->ioapic_phys_id_map(phys_cpu_present_map);
1da177e4
LT
3871
3872 spin_lock_irqsave(&ioapic_lock, flags);
3873 reg_00.raw = io_apic_read(ioapic, 0);
3874 spin_unlock_irqrestore(&ioapic_lock, flags);
3875
3876 if (apic_id >= get_physical_broadcast()) {
3877 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3878 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3879 apic_id = reg_00.bits.ID;
3880 }
3881
3882 /*
36062448 3883 * Every APIC in a system must have a unique ID or we get lots of nice
1da177e4
LT
3884 * 'stuck on smp_invalidate_needed IPI wait' messages.
3885 */
d1d7cae8 3886 if (apic->check_apicid_used(apic_id_map, apic_id)) {
1da177e4
LT
3887
3888 for (i = 0; i < get_physical_broadcast(); i++) {
d1d7cae8 3889 if (!apic->check_apicid_used(apic_id_map, i))
1da177e4
LT
3890 break;
3891 }
3892
3893 if (i == get_physical_broadcast())
3894 panic("Max apic_id exceeded!\n");
3895
3896 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3897 "trying %d\n", ioapic, apic_id, i);
3898
3899 apic_id = i;
36062448 3900 }
1da177e4 3901
8058714a 3902 tmp = apic->apicid_to_cpu_present(apic_id);
1da177e4
LT
3903 physids_or(apic_id_map, apic_id_map, tmp);
3904
3905 if (reg_00.bits.ID != apic_id) {
3906 reg_00.bits.ID = apic_id;
3907
3908 spin_lock_irqsave(&ioapic_lock, flags);
3909 io_apic_write(ioapic, 0, reg_00.raw);
3910 reg_00.raw = io_apic_read(ioapic, 0);
3911 spin_unlock_irqrestore(&ioapic_lock, flags);
3912
3913 /* Sanity check */
6070f9ec
AD
3914 if (reg_00.bits.ID != apic_id) {
3915 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3916 return -1;
3917 }
1da177e4
LT
3918 }
3919
3920 apic_printk(APIC_VERBOSE, KERN_INFO
3921 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3922
3923 return apic_id;
3924}
3925
36062448 3926int __init io_apic_get_version(int ioapic)
1da177e4
LT
3927{
3928 union IO_APIC_reg_01 reg_01;
3929 unsigned long flags;
3930
3931 spin_lock_irqsave(&ioapic_lock, flags);
3932 reg_01.raw = io_apic_read(ioapic, 1);
3933 spin_unlock_irqrestore(&ioapic_lock, flags);
3934
3935 return reg_01.bits.version;
3936}
54168ed7 3937#endif
1da177e4 3938
54168ed7 3939int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
1da177e4 3940{
0b8f1efa
YL
3941 struct irq_desc *desc;
3942 struct irq_cfg *cfg;
3943 int cpu = boot_cpu_id;
3944
1da177e4 3945 if (!IO_APIC_IRQ(irq)) {
54168ed7 3946 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
1da177e4
LT
3947 ioapic);
3948 return -EINVAL;
3949 }
3950
0b8f1efa
YL
3951 desc = irq_to_desc_alloc_cpu(irq, cpu);
3952 if (!desc) {
3953 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3954 return 0;
3955 }
3956
1da177e4
LT
3957 /*
3958 * IRQs < 16 are already in the irq_2_pin[] map
3959 */
99d093d1 3960 if (irq >= NR_IRQS_LEGACY) {
0b8f1efa 3961 cfg = desc->chip_data;
3145e941 3962 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
0b8f1efa 3963 }
1da177e4 3964
3145e941 3965 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
1da177e4
LT
3966
3967 return 0;
3968}
3969
54168ed7 3970
61fd47e0
SL
3971int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3972{
3973 int i;
3974
3975 if (skip_ioapic_setup)
3976 return -1;
3977
3978 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
3979 if (mp_irqs[i].irqtype == mp_INT &&
3980 mp_irqs[i].srcbusirq == bus_irq)
61fd47e0
SL
3981 break;
3982 if (i >= mp_irq_entries)
3983 return -1;
3984
3985 *trigger = irq_trigger(i);
3986 *polarity = irq_polarity(i);
3987 return 0;
3988}
3989
888ba6c6 3990#endif /* CONFIG_ACPI */
1a3f239d 3991
497c9a19
YL
3992/*
3993 * This function currently is only a helper for the i386 smp boot process where
3994 * we need to reprogram the ioredtbls to cater for the cpus which have come online
fe402e1f 3995 * so mask in all cases should simply be apic->target_cpus()
497c9a19
YL
3996 */
3997#ifdef CONFIG_SMP
3998void __init setup_ioapic_dest(void)
3999{
4000 int pin, ioapic, irq, irq_entry;
6c2e9403 4001 struct irq_desc *desc;
497c9a19 4002 struct irq_cfg *cfg;
22f65d31 4003 const struct cpumask *mask;
497c9a19
YL
4004
4005 if (skip_ioapic_setup == 1)
4006 return;
4007
4008 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4009 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4010 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4011 if (irq_entry == -1)
4012 continue;
4013 irq = pin_2_irq(irq_entry, ioapic, pin);
4014
4015 /* setup_IO_APIC_irqs could fail to get vector for some device
4016 * when you have too many devices, because at that time only boot
4017 * cpu is online.
4018 */
0b8f1efa
YL
4019 desc = irq_to_desc(irq);
4020 cfg = desc->chip_data;
6c2e9403 4021 if (!cfg->vector) {
3145e941 4022 setup_IO_APIC_irq(ioapic, pin, irq, desc,
497c9a19
YL
4023 irq_trigger(irq_entry),
4024 irq_polarity(irq_entry));
6c2e9403
TG
4025 continue;
4026
4027 }
4028
4029 /*
4030 * Honour affinities which have been set in early boot
4031 */
6c2e9403
TG
4032 if (desc->status &
4033 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
7f7ace0c 4034 mask = desc->affinity;
6c2e9403 4035 else
fe402e1f 4036 mask = apic->target_cpus();
6c2e9403 4037
6c2e9403 4038 if (intr_remapping_enabled)
3145e941 4039 set_ir_ioapic_affinity_irq_desc(desc, mask);
54168ed7 4040 else
3145e941 4041 set_ioapic_affinity_irq_desc(desc, mask);
497c9a19
YL
4042 }
4043
4044 }
4045}
4046#endif
4047
54168ed7
IM
4048#define IOAPIC_RESOURCE_NAME_SIZE 11
4049
4050static struct resource *ioapic_resources;
4051
4052static struct resource * __init ioapic_setup_resources(void)
4053{
4054 unsigned long n;
4055 struct resource *res;
4056 char *mem;
4057 int i;
4058
4059 if (nr_ioapics <= 0)
4060 return NULL;
4061
4062 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4063 n *= nr_ioapics;
4064
4065 mem = alloc_bootmem(n);
4066 res = (void *)mem;
4067
4068 if (mem != NULL) {
4069 mem += sizeof(struct resource) * nr_ioapics;
4070
4071 for (i = 0; i < nr_ioapics; i++) {
4072 res[i].name = mem;
4073 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4074 sprintf(mem, "IOAPIC %u", i);
4075 mem += IOAPIC_RESOURCE_NAME_SIZE;
4076 }
4077 }
4078
4079 ioapic_resources = res;
4080
4081 return res;
4082}
54168ed7 4083
f3294a33
YL
4084void __init ioapic_init_mappings(void)
4085{
4086 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
54168ed7 4087 struct resource *ioapic_res;
d6c88a50 4088 int i;
f3294a33 4089
54168ed7 4090 ioapic_res = ioapic_setup_resources();
f3294a33
YL
4091 for (i = 0; i < nr_ioapics; i++) {
4092 if (smp_found_config) {
b5ba7e6d 4093 ioapic_phys = mp_ioapics[i].apicaddr;
54168ed7 4094#ifdef CONFIG_X86_32
d6c88a50
TG
4095 if (!ioapic_phys) {
4096 printk(KERN_ERR
4097 "WARNING: bogus zero IO-APIC "
4098 "address found in MPTABLE, "
4099 "disabling IO/APIC support!\n");
4100 smp_found_config = 0;
4101 skip_ioapic_setup = 1;
4102 goto fake_ioapic_page;
4103 }
54168ed7 4104#endif
f3294a33 4105 } else {
54168ed7 4106#ifdef CONFIG_X86_32
f3294a33 4107fake_ioapic_page:
54168ed7 4108#endif
f3294a33 4109 ioapic_phys = (unsigned long)
54168ed7 4110 alloc_bootmem_pages(PAGE_SIZE);
f3294a33
YL
4111 ioapic_phys = __pa(ioapic_phys);
4112 }
4113 set_fixmap_nocache(idx, ioapic_phys);
54168ed7
IM
4114 apic_printk(APIC_VERBOSE,
4115 "mapped IOAPIC to %08lx (%08lx)\n",
4116 __fix_to_virt(idx), ioapic_phys);
f3294a33 4117 idx++;
54168ed7 4118
54168ed7
IM
4119 if (ioapic_res != NULL) {
4120 ioapic_res->start = ioapic_phys;
4121 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4122 ioapic_res++;
4123 }
f3294a33
YL
4124 }
4125}
4126
54168ed7
IM
4127static int __init ioapic_insert_resources(void)
4128{
4129 int i;
4130 struct resource *r = ioapic_resources;
4131
4132 if (!r) {
4133 printk(KERN_ERR
4134 "IO APIC resources could be not be allocated.\n");
4135 return -1;
4136 }
4137
4138 for (i = 0; i < nr_ioapics; i++) {
4139 insert_resource(&iomem_resource, r);
4140 r++;
4141 }
4142
4143 return 0;
4144}
4145
4146/* Insert the IO APIC resources after PCI initialization has occured to handle
4147 * IO APICS that are mapped in on a BAR in PCI space. */
4148late_initcall(ioapic_insert_resources);