mm: remove include/linux/bootmem.h
[linux-2.6-block.git] / arch / x86 / kernel / apic / io_apic.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * Intel IO-APIC support for multi-Pentium hosts.
4 *
8f47e163 5 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
1da177e4
LT
6 *
7 * Many thanks to Stig Venaas for trying out countless experimental
8 * patches and reporting/debugging problems patiently!
9 *
10 * (c) 1999, Multiple IO-APIC support, developed by
11 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
12 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
13 * further tested and cleaned up by Zach Brown <zab@redhat.com>
14 * and Ingo Molnar <mingo@redhat.com>
15 *
16 * Fixes
17 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
18 * thanks to Eric Gilmore
19 * and Rolf G. Tews
20 * for testing these extensively
21 * Paul Diefenbaugh : Added full ACPI support
1f934641
TG
22 *
23 * Historical information which is worth to be preserved:
24 *
25 * - SiS APIC rmw bug:
26 *
27 * We used to have a workaround for a bug in SiS chips which
28 * required to rewrite the index register for a read-modify-write
29 * operation as the chip lost the index information which was
30 * setup for the read already. We cache the data now, so that
31 * workaround has been removed.
1da177e4
LT
32 */
33
34#include <linux/mm.h>
1da177e4 35#include <linux/interrupt.h>
447ae316 36#include <linux/irq.h>
1da177e4
LT
37#include <linux/init.h>
38#include <linux/delay.h>
39#include <linux/sched.h>
d4057bdb 40#include <linux/pci.h>
1da177e4
LT
41#include <linux/mc146818rtc.h>
42#include <linux/compiler.h>
43#include <linux/acpi.h>
186f4360 44#include <linux/export.h>
f3c6ea1b 45#include <linux/syscore_ops.h>
7dfb7103 46#include <linux/freezer.h>
f26d6a2b 47#include <linux/kthread.h>
54168ed7 48#include <linux/jiffies.h> /* time_after() */
5a0e3ad6 49#include <linux/slab.h>
57c8a661 50#include <linux/memblock.h>
54d5d424 51
f7a0c786 52#include <asm/irqdomain.h>
1da177e4
LT
53#include <asm/io.h>
54#include <asm/smp.h>
6d652ea1 55#include <asm/cpu.h>
1da177e4 56#include <asm/desc.h>
d4057bdb
YL
57#include <asm/proto.h>
58#include <asm/acpi.h>
59#include <asm/dma.h>
1da177e4 60#include <asm/timer.h>
306e440d 61#include <asm/i8259.h>
a4dbc34d 62#include <asm/setup.h>
8a8f422d 63#include <asm/irq_remapping.h>
2c1b284e 64#include <asm/hw_irq.h>
1da177e4 65
7b6aa335 66#include <asm/apic.h>
1da177e4 67
f44d1692
JL
68#define for_each_ioapic(idx) \
69 for ((idx) = 0; (idx) < nr_ioapics; (idx)++)
70#define for_each_ioapic_reverse(idx) \
71 for ((idx) = nr_ioapics - 1; (idx) >= 0; (idx)--)
72#define for_each_pin(idx, pin) \
73 for ((pin) = 0; (pin) < ioapics[(idx)].nr_registers; (pin)++)
74#define for_each_ioapic_pin(idx, pin) \
75 for_each_ioapic((idx)) \
76 for_each_pin((idx), (pin))
2977fb3f 77#define for_each_irq_pin(entry, head) \
a178b87b 78 list_for_each_entry(entry, &head, list)
32f71aff 79
dade7716 80static DEFINE_RAW_SPINLOCK(ioapic_lock);
d7f3d478 81static DEFINE_MUTEX(ioapic_mutex);
44767bfa 82static unsigned int ioapic_dynirq_base;
b81975ea 83static int ioapic_initialized;
efa2559f 84
4467715a
JL
85struct irq_pin_list {
86 struct list_head list;
87 int apic, pin;
88};
89
49c7e600 90struct mp_chip_data {
4467715a 91 struct list_head irq_2_pin;
49c7e600
JL
92 struct IO_APIC_route_entry entry;
93 int trigger;
94 int polarity;
96ed44b2 95 u32 count;
49c7e600
JL
96 bool isa_irq;
97};
98
154d9e50
JL
99struct mp_ioapic_gsi {
100 u32 gsi_base;
101 u32 gsi_end;
102};
103
b69c6c3b
SS
104static struct ioapic {
105 /*
106 * # of IRQ routing registers
107 */
108 int nr_registers;
57a6f740
SS
109 /*
110 * Saved state during suspend/resume, or while enabling intr-remap.
111 */
112 struct IO_APIC_route_entry *saved_registers;
d5371430
SS
113 /* I/O APIC config */
114 struct mpc_ioapic mp_config;
c040aaeb
SS
115 /* IO APIC gsi routing info */
116 struct mp_ioapic_gsi gsi_config;
d7f3d478
JL
117 struct ioapic_domain_cfg irqdomain_cfg;
118 struct irq_domain *irqdomain;
15516a3b 119 struct resource *iomem_res;
b69c6c3b 120} ioapics[MAX_IO_APICS];
1da177e4 121
6f50d45f 122#define mpc_ioapic_ver(ioapic_idx) ioapics[ioapic_idx].mp_config.apicver
d5371430 123
6f50d45f 124int mpc_ioapic_id(int ioapic_idx)
d5371430 125{
6f50d45f 126 return ioapics[ioapic_idx].mp_config.apicid;
d5371430
SS
127}
128
6f50d45f 129unsigned int mpc_ioapic_addr(int ioapic_idx)
d5371430 130{
6f50d45f 131 return ioapics[ioapic_idx].mp_config.apicaddr;
d5371430
SS
132}
133
154d9e50 134static inline struct mp_ioapic_gsi *mp_ioapic_gsi_routing(int ioapic_idx)
c040aaeb 135{
6f50d45f 136 return &ioapics[ioapic_idx].gsi_config;
c040aaeb 137}
9f640ccb 138
18e48551
JL
139static inline int mp_ioapic_pin_count(int ioapic)
140{
141 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(ioapic);
142
143 return gsi_cfg->gsi_end - gsi_cfg->gsi_base + 1;
144}
145
154d9e50 146static inline u32 mp_pin_to_gsi(int ioapic, int pin)
18e48551
JL
147{
148 return mp_ioapic_gsi_routing(ioapic)->gsi_base + pin;
149}
150
d32932d0
JL
151static inline bool mp_is_legacy_irq(int irq)
152{
153 return irq >= 0 && irq < nr_legacy_irqs();
154}
155
95d76acc
JL
156/*
157 * Initialize all legacy IRQs and all pins on the first IOAPIC
158 * if we have legacy interrupt controller. Kernel boot option "pirq="
159 * may rely on non-legacy pins on the first IOAPIC.
160 */
18e48551
JL
161static inline int mp_init_irq_at_boot(int ioapic, int irq)
162{
95d76acc
JL
163 if (!nr_legacy_irqs())
164 return 0;
165
d32932d0 166 return ioapic == 0 || mp_is_legacy_irq(irq);
18e48551
JL
167}
168
d7f3d478
JL
169static inline struct irq_domain *mp_ioapic_irqdomain(int ioapic)
170{
171 return ioapics[ioapic].irqdomain;
172}
173
c040aaeb 174int nr_ioapics;
2a4ab640 175
a4384df3
EB
176/* The one past the highest gsi number used */
177u32 gsi_top;
5777372a 178
584f734d 179/* MP IRQ source entries */
c2c21745 180struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
584f734d
AS
181
182/* # of MP IRQ source entries */
183int mp_irq_entries;
184
bb8187d3 185#ifdef CONFIG_EISA
8732fc4b
AS
186int mp_bus_id_to_type[MAX_MP_BUSSES];
187#endif
188
189DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
190
efa2559f
YL
191int skip_ioapic_setup;
192
7167d08e
HK
193/**
194 * disable_ioapic_support() - disables ioapic support at runtime
195 */
196void disable_ioapic_support(void)
65a4e574
IM
197{
198#ifdef CONFIG_PCI
199 noioapicquirk = 1;
200 noioapicreroute = -1;
201#endif
202 skip_ioapic_setup = 1;
203}
204
54168ed7 205static int __init parse_noapic(char *str)
efa2559f
YL
206{
207 /* disable IO-APIC */
7167d08e 208 disable_ioapic_support();
efa2559f
YL
209 return 0;
210}
211early_param("noapic", parse_noapic);
66759a01 212
2d8009ba
FT
213/* Will be called in mpparse/acpi/sfi codes for saving IRQ info */
214void mp_save_irq(struct mpc_intsrc *m)
215{
216 int i;
217
218 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
219 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
220 m->irqtype, m->irqflag & 3, (m->irqflag >> 2) & 3, m->srcbus,
221 m->srcbusirq, m->dstapic, m->dstirq);
222
223 for (i = 0; i < mp_irq_entries; i++) {
0e3fa13f 224 if (!memcmp(&mp_irqs[i], m, sizeof(*m)))
2d8009ba
FT
225 return;
226 }
227
0e3fa13f 228 memcpy(&mp_irqs[mp_irq_entries], m, sizeof(*m));
2d8009ba
FT
229 if (++mp_irq_entries == MAX_IRQ_SOURCES)
230 panic("Max # of irq sources exceeded!!\n");
231}
232
7e899419
YL
233static void alloc_ioapic_saved_registers(int idx)
234{
235 size_t size;
236
237 if (ioapics[idx].saved_registers)
238 return;
239
240 size = sizeof(struct IO_APIC_route_entry) * ioapics[idx].nr_registers;
241 ioapics[idx].saved_registers = kzalloc(size, GFP_KERNEL);
242 if (!ioapics[idx].saved_registers)
243 pr_err("IOAPIC %d: suspend/resume impossible!\n", idx);
244}
245
15516a3b
JL
246static void free_ioapic_saved_registers(int idx)
247{
248 kfree(ioapics[idx].saved_registers);
249 ioapics[idx].saved_registers = NULL;
250}
251
11d686e9 252int __init arch_early_ioapic_init(void)
8f09cd20 253{
13315320 254 int i;
d6c88a50 255
95d76acc 256 if (!nr_legacy_irqs())
1f91233c 257 io_apic_irqs = ~0UL;
1f91233c 258
7e899419
YL
259 for_each_ioapic(i)
260 alloc_ioapic_saved_registers(i);
4c79185c 261
13a0c3c2 262 return 0;
0b8f1efa 263}
8f09cd20 264
130fe05d
LT
265struct io_apic {
266 unsigned int index;
267 unsigned int unused[3];
268 unsigned int data;
0280f7c4
SS
269 unsigned int unused2[11];
270 unsigned int eoi;
130fe05d
LT
271};
272
273static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
274{
275 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
d5371430 276 + (mpc_ioapic_addr(idx) & ~PAGE_MASK);
130fe05d
LT
277}
278
ad66e1ef 279static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
0280f7c4
SS
280{
281 struct io_apic __iomem *io_apic = io_apic_base(apic);
282 writel(vector, &io_apic->eoi);
283}
284
4a8e2a31 285unsigned int native_io_apic_read(unsigned int apic, unsigned int reg)
130fe05d
LT
286{
287 struct io_apic __iomem *io_apic = io_apic_base(apic);
288 writel(reg, &io_apic->index);
289 return readl(&io_apic->data);
290}
291
9a93d473
JL
292static void io_apic_write(unsigned int apic, unsigned int reg,
293 unsigned int value)
130fe05d
LT
294{
295 struct io_apic __iomem *io_apic = io_apic_base(apic);
136d249e 296
130fe05d
LT
297 writel(reg, &io_apic->index);
298 writel(value, &io_apic->data);
299}
300
cf4c6a2f
AK
301union entry_union {
302 struct { u32 w1, w2; };
303 struct IO_APIC_route_entry entry;
304};
305
e57253a8
SS
306static struct IO_APIC_route_entry __ioapic_read_entry(int apic, int pin)
307{
308 union entry_union eu;
309
310 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
311 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
136d249e 312
e57253a8
SS
313 return eu.entry;
314}
315
cf4c6a2f
AK
316static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
317{
318 union entry_union eu;
319 unsigned long flags;
136d249e 320
dade7716 321 raw_spin_lock_irqsave(&ioapic_lock, flags);
e57253a8 322 eu.entry = __ioapic_read_entry(apic, pin);
dade7716 323 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
136d249e 324
cf4c6a2f
AK
325 return eu.entry;
326}
327
f9dadfa7
LT
328/*
329 * When we write a new IO APIC routing entry, we need to write the high
330 * word first! If the mask bit in the low word is clear, we will enable
331 * the interrupt, and we need to make sure the entry is fully populated
332 * before that happens.
333 */
136d249e 334static void __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
cf4c6a2f 335{
50a8d4d2
F
336 union entry_union eu = {{0, 0}};
337
cf4c6a2f 338 eu.entry = e;
f9dadfa7
LT
339 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
340 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
d15512f4
AK
341}
342
1a8ce7ff 343static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
d15512f4
AK
344{
345 unsigned long flags;
136d249e 346
dade7716 347 raw_spin_lock_irqsave(&ioapic_lock, flags);
d15512f4 348 __ioapic_write_entry(apic, pin, e);
dade7716 349 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
f9dadfa7
LT
350}
351
352/*
353 * When we mask an IO APIC routing entry, we need to write the low
354 * word first, in order to set the mask bit before we change the
355 * high bits!
356 */
357static void ioapic_mask_entry(int apic, int pin)
358{
359 unsigned long flags;
335efdf5 360 union entry_union eu = { .entry.mask = IOAPIC_MASKED };
f9dadfa7 361
dade7716 362 raw_spin_lock_irqsave(&ioapic_lock, flags);
cf4c6a2f
AK
363 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
364 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
dade7716 365 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
cf4c6a2f
AK
366}
367
1da177e4
LT
368/*
369 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
370 * shared ISA-space IRQs, so we have to support them. We are super
371 * fast in the common case, and fast for shared ISA-space IRQs.
372 */
4467715a
JL
373static int __add_pin_to_irq_node(struct mp_chip_data *data,
374 int node, int apic, int pin)
1da177e4 375{
a178b87b 376 struct irq_pin_list *entry;
0f978f45 377
2977fb3f 378 /* don't allow duplicates */
4467715a 379 for_each_irq_pin(entry, data->irq_2_pin)
0f978f45 380 if (entry->apic == apic && entry->pin == pin)
f3d1915a 381 return 0;
0f978f45 382
4467715a 383 entry = kzalloc_node(sizeof(struct irq_pin_list), GFP_ATOMIC, node);
a7428cd2 384 if (!entry) {
c767a54b
JP
385 pr_err("can not alloc irq_pin_list (%d,%d,%d)\n",
386 node, apic, pin);
f3d1915a 387 return -ENOMEM;
a7428cd2 388 }
1da177e4
LT
389 entry->apic = apic;
390 entry->pin = pin;
4467715a 391 list_add_tail(&entry->list, &data->irq_2_pin);
875e68ec 392
f3d1915a
CG
393 return 0;
394}
395
4467715a 396static void __remove_pin_from_irq(struct mp_chip_data *data, int apic, int pin)
df334bea 397{
a178b87b 398 struct irq_pin_list *tmp, *entry;
df334bea 399
4467715a 400 list_for_each_entry_safe(entry, tmp, &data->irq_2_pin, list)
df334bea 401 if (entry->apic == apic && entry->pin == pin) {
a178b87b 402 list_del(&entry->list);
df334bea
JL
403 kfree(entry);
404 return;
df334bea
JL
405 }
406}
407
4467715a
JL
408static void add_pin_to_irq_node(struct mp_chip_data *data,
409 int node, int apic, int pin)
f3d1915a 410{
4467715a 411 if (__add_pin_to_irq_node(data, node, apic, pin))
f3d1915a 412 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
1da177e4
LT
413}
414
415/*
416 * Reroute an IRQ to a different pin.
417 */
4467715a 418static void __init replace_pin_at_irq_node(struct mp_chip_data *data, int node,
4eea6fff
JF
419 int oldapic, int oldpin,
420 int newapic, int newpin)
1da177e4 421{
535b6429 422 struct irq_pin_list *entry;
1da177e4 423
4467715a 424 for_each_irq_pin(entry, data->irq_2_pin) {
1da177e4
LT
425 if (entry->apic == oldapic && entry->pin == oldpin) {
426 entry->apic = newapic;
427 entry->pin = newpin;
0f978f45 428 /* every one is different, right? */
4eea6fff 429 return;
0f978f45 430 }
1da177e4 431 }
0f978f45 432
4eea6fff 433 /* old apic/pin didn't exist, so just add new ones */
4467715a 434 add_pin_to_irq_node(data, node, newapic, newpin);
1da177e4
LT
435}
436
4467715a 437static void io_apic_modify_irq(struct mp_chip_data *data,
2f210deb
JF
438 int mask_and, int mask_or,
439 void (*final)(struct irq_pin_list *entry))
87783be4 440{
0be275e3 441 union entry_union eu;
87783be4 442 struct irq_pin_list *entry;
047c8fdb 443
0be275e3
JL
444 eu.entry = data->entry;
445 eu.w1 &= mask_and;
446 eu.w1 |= mask_or;
447 data->entry = eu.entry;
448
449 for_each_irq_pin(entry, data->irq_2_pin) {
450 io_apic_write(entry->apic, 0x10 + 2 * entry->pin, eu.w1);
451 if (final)
452 final(entry);
453 }
c29d9db3
SS
454}
455
7f3e632f 456static void io_apic_sync(struct irq_pin_list *entry)
1da177e4 457{
87783be4
CG
458 /*
459 * Synchronize the IO-APIC and the CPU by doing
460 * a dummy read from the IO-APIC
461 */
462 struct io_apic __iomem *io_apic;
136d249e 463
87783be4 464 io_apic = io_apic_base(entry->apic);
4e738e2f 465 readl(&io_apic->data);
1da177e4
LT
466}
467
4467715a 468static void mask_ioapic_irq(struct irq_data *irq_data)
87783be4 469{
4467715a 470 struct mp_chip_data *data = irq_data->chip_data;
dd5f15e5
TG
471 unsigned long flags;
472
473 raw_spin_lock_irqsave(&ioapic_lock, flags);
4467715a 474 io_apic_modify_irq(data, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
dd5f15e5 475 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
87783be4 476}
1da177e4 477
4467715a 478static void __unmask_ioapic(struct mp_chip_data *data)
dd5f15e5 479{
4467715a 480 io_apic_modify_irq(data, ~IO_APIC_REDIR_MASKED, 0, NULL);
1da177e4
LT
481}
482
4467715a 483static void unmask_ioapic_irq(struct irq_data *irq_data)
1da177e4 484{
4467715a 485 struct mp_chip_data *data = irq_data->chip_data;
1da177e4
LT
486 unsigned long flags;
487
dade7716 488 raw_spin_lock_irqsave(&ioapic_lock, flags);
4467715a 489 __unmask_ioapic(data);
dade7716 490 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
491}
492
c0205701
SS
493/*
494 * IO-APIC versions below 0x20 don't support EOI register.
495 * For the record, here is the information about various versions:
496 * 0Xh 82489DX
497 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
498 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
499 * 30h-FFh Reserved
500 *
501 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
502 * version as 0x2. This is an error with documentation and these ICH chips
503 * use io-apic's of version 0x20.
504 *
505 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
506 * Otherwise, we simulate the EOI message manually by changing the trigger
507 * mode to edge and then back to level, with RTE being masked during this.
508 */
ad66e1ef 509static void __eoi_ioapic_pin(int apic, int pin, int vector)
c0205701
SS
510{
511 if (mpc_ioapic_ver(apic) >= 0x20) {
da165322 512 io_apic_eoi(apic, vector);
c0205701
SS
513 } else {
514 struct IO_APIC_route_entry entry, entry1;
515
516 entry = entry1 = __ioapic_read_entry(apic, pin);
517
518 /*
519 * Mask the entry and change the trigger mode to edge.
520 */
335efdf5 521 entry1.mask = IOAPIC_MASKED;
c0205701
SS
522 entry1.trigger = IOAPIC_EDGE;
523
524 __ioapic_write_entry(apic, pin, entry1);
525
526 /*
527 * Restore the previous level triggered entry.
528 */
529 __ioapic_write_entry(apic, pin, entry);
530 }
531}
532
4faefda9 533static void eoi_ioapic_pin(int vector, struct mp_chip_data *data)
d32932d0
JL
534{
535 unsigned long flags;
536 struct irq_pin_list *entry;
537
538 raw_spin_lock_irqsave(&ioapic_lock, flags);
4467715a 539 for_each_irq_pin(entry, data->irq_2_pin)
ad66e1ef 540 __eoi_ioapic_pin(entry->apic, entry->pin, vector);
c0205701
SS
541 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
542}
543
1da177e4
LT
544static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
545{
546 struct IO_APIC_route_entry entry;
36062448 547
1da177e4 548 /* Check delivery_mode to be sure we're not clearing an SMI pin */
cf4c6a2f 549 entry = ioapic_read_entry(apic, pin);
1da177e4
LT
550 if (entry.delivery_mode == dest_SMI)
551 return;
1e75b31d 552
1da177e4 553 /*
1e75b31d
SS
554 * Make sure the entry is masked and re-read the contents to check
555 * if it is a level triggered pin and if the remote-IRR is set.
556 */
335efdf5
TG
557 if (entry.mask == IOAPIC_UNMASKED) {
558 entry.mask = IOAPIC_MASKED;
1e75b31d
SS
559 ioapic_write_entry(apic, pin, entry);
560 entry = ioapic_read_entry(apic, pin);
561 }
562
563 if (entry.irr) {
c0205701
SS
564 unsigned long flags;
565
1e75b31d
SS
566 /*
567 * Make sure the trigger mode is set to level. Explicit EOI
568 * doesn't clear the remote-IRR if the trigger mode is not
569 * set to level.
570 */
335efdf5 571 if (entry.trigger == IOAPIC_EDGE) {
1e75b31d
SS
572 entry.trigger = IOAPIC_LEVEL;
573 ioapic_write_entry(apic, pin, entry);
574 }
c0205701 575 raw_spin_lock_irqsave(&ioapic_lock, flags);
ad66e1ef 576 __eoi_ioapic_pin(apic, pin, entry.vector);
c0205701 577 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1e75b31d
SS
578 }
579
580 /*
581 * Clear the rest of the bits in the IO-APIC RTE except for the mask
582 * bit.
1da177e4 583 */
f9dadfa7 584 ioapic_mask_entry(apic, pin);
1e75b31d
SS
585 entry = ioapic_read_entry(apic, pin);
586 if (entry.irr)
c767a54b 587 pr_err("Unable to reset IRR for apic: %d, pin :%d\n",
1e75b31d 588 mpc_ioapic_id(apic), pin);
1da177e4
LT
589}
590
3c9e76db 591void clear_IO_APIC (void)
1da177e4
LT
592{
593 int apic, pin;
594
f44d1692
JL
595 for_each_ioapic_pin(apic, pin)
596 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
597}
598
54168ed7 599#ifdef CONFIG_X86_32
1da177e4
LT
600/*
601 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
602 * specific CPU-side IRQs.
603 */
604
605#define MAX_PIRQS 8
3bd25d0f
YL
606static int pirq_entries[MAX_PIRQS] = {
607 [0 ... MAX_PIRQS - 1] = -1
608};
1da177e4 609
1da177e4
LT
610static int __init ioapic_pirq_setup(char *str)
611{
612 int i, max;
613 int ints[MAX_PIRQS+1];
614
615 get_options(str, ARRAY_SIZE(ints), ints);
616
1da177e4
LT
617 apic_printk(APIC_VERBOSE, KERN_INFO
618 "PIRQ redirection, working around broken MP-BIOS.\n");
619 max = MAX_PIRQS;
620 if (ints[0] < MAX_PIRQS)
621 max = ints[0];
622
623 for (i = 0; i < max; i++) {
624 apic_printk(APIC_VERBOSE, KERN_DEBUG
625 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
626 /*
627 * PIRQs are mapped upside down, usually.
628 */
629 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
630 }
631 return 1;
632}
633
634__setup("pirq=", ioapic_pirq_setup);
54168ed7
IM
635#endif /* CONFIG_X86_32 */
636
54168ed7 637/*
05c3dc2c 638 * Saves all the IO-APIC RTE's
54168ed7 639 */
31dce14a 640int save_ioapic_entries(void)
54168ed7 641{
54168ed7 642 int apic, pin;
31dce14a 643 int err = 0;
54168ed7 644
f44d1692 645 for_each_ioapic(apic) {
57a6f740 646 if (!ioapics[apic].saved_registers) {
31dce14a
SS
647 err = -ENOMEM;
648 continue;
649 }
54168ed7 650
f44d1692 651 for_each_pin(apic, pin)
57a6f740 652 ioapics[apic].saved_registers[pin] =
54168ed7 653 ioapic_read_entry(apic, pin);
b24696bc 654 }
5ffa4eb2 655
31dce14a 656 return err;
54168ed7
IM
657}
658
b24696bc
FY
659/*
660 * Mask all IO APIC entries.
661 */
31dce14a 662void mask_ioapic_entries(void)
05c3dc2c
SS
663{
664 int apic, pin;
665
f44d1692 666 for_each_ioapic(apic) {
2f344d2e 667 if (!ioapics[apic].saved_registers)
31dce14a 668 continue;
b24696bc 669
f44d1692 670 for_each_pin(apic, pin) {
05c3dc2c
SS
671 struct IO_APIC_route_entry entry;
672
57a6f740 673 entry = ioapics[apic].saved_registers[pin];
335efdf5
TG
674 if (entry.mask == IOAPIC_UNMASKED) {
675 entry.mask = IOAPIC_MASKED;
05c3dc2c
SS
676 ioapic_write_entry(apic, pin, entry);
677 }
678 }
679 }
680}
681
b24696bc 682/*
57a6f740 683 * Restore IO APIC entries which was saved in the ioapic structure.
b24696bc 684 */
31dce14a 685int restore_ioapic_entries(void)
54168ed7
IM
686{
687 int apic, pin;
688
f44d1692 689 for_each_ioapic(apic) {
2f344d2e 690 if (!ioapics[apic].saved_registers)
31dce14a 691 continue;
b24696bc 692
f44d1692 693 for_each_pin(apic, pin)
54168ed7 694 ioapic_write_entry(apic, pin,
57a6f740 695 ioapics[apic].saved_registers[pin]);
5ffa4eb2 696 }
b24696bc 697 return 0;
54168ed7
IM
698}
699
1da177e4
LT
700/*
701 * Find the IRQ entry number of a certain pin.
702 */
6f50d45f 703static int find_irq_entry(int ioapic_idx, int pin, int type)
1da177e4
LT
704{
705 int i;
706
707 for (i = 0; i < mp_irq_entries; i++)
c2c21745 708 if (mp_irqs[i].irqtype == type &&
6f50d45f 709 (mp_irqs[i].dstapic == mpc_ioapic_id(ioapic_idx) ||
c2c21745
JSR
710 mp_irqs[i].dstapic == MP_APIC_ALL) &&
711 mp_irqs[i].dstirq == pin)
1da177e4
LT
712 return i;
713
714 return -1;
715}
716
717/*
718 * Find the pin to which IRQ[irq] (ISA) is connected
719 */
fcfd636a 720static int __init find_isa_irq_pin(int irq, int type)
1da177e4
LT
721{
722 int i;
723
724 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 725 int lbus = mp_irqs[i].srcbus;
1da177e4 726
d27e2b8e 727 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
728 (mp_irqs[i].irqtype == type) &&
729 (mp_irqs[i].srcbusirq == irq))
1da177e4 730
c2c21745 731 return mp_irqs[i].dstirq;
1da177e4
LT
732 }
733 return -1;
734}
735
fcfd636a
EB
736static int __init find_isa_irq_apic(int irq, int type)
737{
738 int i;
739
740 for (i = 0; i < mp_irq_entries; i++) {
c2c21745 741 int lbus = mp_irqs[i].srcbus;
fcfd636a 742
73b2961b 743 if (test_bit(lbus, mp_bus_not_pci) &&
c2c21745
JSR
744 (mp_irqs[i].irqtype == type) &&
745 (mp_irqs[i].srcbusirq == irq))
fcfd636a
EB
746 break;
747 }
6f50d45f 748
fcfd636a 749 if (i < mp_irq_entries) {
6f50d45f
YL
750 int ioapic_idx;
751
f44d1692 752 for_each_ioapic(ioapic_idx)
6f50d45f
YL
753 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic)
754 return ioapic_idx;
fcfd636a
EB
755 }
756
757 return -1;
758}
759
bb8187d3 760#ifdef CONFIG_EISA
1da177e4
LT
761/*
762 * EISA Edge/Level control register, ELCR
763 */
764static int EISA_ELCR(unsigned int irq)
765{
95d76acc 766 if (irq < nr_legacy_irqs()) {
1da177e4
LT
767 unsigned int port = 0x4d0 + (irq >> 3);
768 return (inb(port) >> (irq & 7)) & 1;
769 }
770 apic_printk(APIC_VERBOSE, KERN_INFO
771 "Broken MPtable reports ISA irq %d\n", irq);
772 return 0;
773}
54168ed7 774
c0a282c2 775#endif
1da177e4 776
335efdf5 777/* ISA interrupts are always active high edge triggered,
6728801d
AS
778 * when listed as conforming in the MP table. */
779
335efdf5
TG
780#define default_ISA_trigger(idx) (IOAPIC_EDGE)
781#define default_ISA_polarity(idx) (IOAPIC_POL_HIGH)
6728801d 782
1da177e4
LT
783/* EISA interrupts are always polarity zero and can be edge or level
784 * trigger depending on the ELCR value. If an interrupt is listed as
785 * EISA conforming in the MP table, that means its trigger type must
786 * be read in from the ELCR */
787
c2c21745 788#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
6728801d 789#define default_EISA_polarity(idx) default_ISA_polarity(idx)
1da177e4 790
335efdf5 791/* PCI interrupts are always active low level triggered,
1da177e4
LT
792 * when listed as conforming in the MP table. */
793
335efdf5
TG
794#define default_PCI_trigger(idx) (IOAPIC_LEVEL)
795#define default_PCI_polarity(idx) (IOAPIC_POL_LOW)
1da177e4 796
b77cf6a8 797static int irq_polarity(int idx)
1da177e4 798{
c2c21745 799 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
800
801 /*
802 * Determine IRQ line polarity (high active or low active):
803 */
a09c5ec0
JK
804 switch (mp_irqs[idx].irqflag & MP_IRQPOL_MASK) {
805 case MP_IRQPOL_DEFAULT:
ab76085e
TG
806 /* conforms to spec, ie. bus-type dependent polarity */
807 if (test_bit(bus, mp_bus_not_pci))
808 return default_ISA_polarity(idx);
809 else
810 return default_PCI_polarity(idx);
a09c5ec0 811 case MP_IRQPOL_ACTIVE_HIGH:
ab76085e 812 return IOAPIC_POL_HIGH;
a09c5ec0 813 case MP_IRQPOL_RESERVED:
ab76085e 814 pr_warn("IOAPIC: Invalid polarity: 2, defaulting to low\n");
a09c5ec0 815 case MP_IRQPOL_ACTIVE_LOW:
ab76085e
TG
816 default: /* Pointless default required due to do gcc stupidity */
817 return IOAPIC_POL_LOW;
1da177e4 818 }
1da177e4
LT
819}
820
ab76085e
TG
821#ifdef CONFIG_EISA
822static int eisa_irq_trigger(int idx, int bus, int trigger)
823{
824 switch (mp_bus_id_to_type[bus]) {
825 case MP_BUS_PCI:
826 case MP_BUS_ISA:
827 return trigger;
828 case MP_BUS_EISA:
829 return default_EISA_trigger(idx);
830 }
831 pr_warn("IOAPIC: Invalid srcbus: %d defaulting to level\n", bus);
832 return IOAPIC_LEVEL;
833}
834#else
835static inline int eisa_irq_trigger(int idx, int bus, int trigger)
836{
837 return trigger;
838}
839#endif
840
b77cf6a8 841static int irq_trigger(int idx)
1da177e4 842{
c2c21745 843 int bus = mp_irqs[idx].srcbus;
1da177e4
LT
844 int trigger;
845
846 /*
847 * Determine IRQ trigger mode (edge or level sensitive):
848 */
a09c5ec0
JK
849 switch (mp_irqs[idx].irqflag & MP_IRQTRIG_MASK) {
850 case MP_IRQTRIG_DEFAULT:
ab76085e
TG
851 /* conforms to spec, ie. bus-type dependent trigger mode */
852 if (test_bit(bus, mp_bus_not_pci))
853 trigger = default_ISA_trigger(idx);
854 else
855 trigger = default_PCI_trigger(idx);
856 /* Take EISA into account */
857 return eisa_irq_trigger(idx, bus, trigger);
a09c5ec0 858 case MP_IRQTRIG_EDGE:
ab76085e 859 return IOAPIC_EDGE;
a09c5ec0 860 case MP_IRQTRIG_RESERVED:
ab76085e 861 pr_warn("IOAPIC: Invalid trigger mode 2 defaulting to level\n");
a09c5ec0 862 case MP_IRQTRIG_LEVEL:
ab76085e
TG
863 default: /* Pointless default required due to do gcc stupidity */
864 return IOAPIC_LEVEL;
1da177e4 865 }
1da177e4
LT
866}
867
c4d05a2c
JL
868void ioapic_set_alloc_attr(struct irq_alloc_info *info, int node,
869 int trigger, int polarity)
870{
871 init_irq_alloc_info(info, NULL);
872 info->type = X86_IRQ_ALLOC_TYPE_IOAPIC;
873 info->ioapic_node = node;
874 info->ioapic_trigger = trigger;
875 info->ioapic_polarity = polarity;
876 info->ioapic_valid = 1;
877}
878
96ed44b2
JL
879#ifndef CONFIG_ACPI
880int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity);
881#endif
882
883static void ioapic_copy_alloc_attr(struct irq_alloc_info *dst,
884 struct irq_alloc_info *src,
885 u32 gsi, int ioapic_idx, int pin)
886{
887 int trigger, polarity;
888
889 copy_irq_alloc_info(dst, src);
890 dst->type = X86_IRQ_ALLOC_TYPE_IOAPIC;
891 dst->ioapic_id = mpc_ioapic_id(ioapic_idx);
892 dst->ioapic_pin = pin;
893 dst->ioapic_valid = 1;
894 if (src && src->ioapic_valid) {
895 dst->ioapic_node = src->ioapic_node;
896 dst->ioapic_trigger = src->ioapic_trigger;
897 dst->ioapic_polarity = src->ioapic_polarity;
898 } else {
899 dst->ioapic_node = NUMA_NO_NODE;
900 if (acpi_get_override_irq(gsi, &trigger, &polarity) >= 0) {
901 dst->ioapic_trigger = trigger;
902 dst->ioapic_polarity = polarity;
903 } else {
904 /*
335efdf5 905 * PCI interrupts are always active low level
96ed44b2
JL
906 * triggered.
907 */
335efdf5
TG
908 dst->ioapic_trigger = IOAPIC_LEVEL;
909 dst->ioapic_polarity = IOAPIC_POL_LOW;
96ed44b2
JL
910 }
911 }
912}
913
914static int ioapic_alloc_attr_node(struct irq_alloc_info *info)
915{
916 return (info && info->ioapic_valid) ? info->ioapic_node : NUMA_NO_NODE;
917}
918
49c7e600
JL
919static void mp_register_handler(unsigned int irq, unsigned long trigger)
920{
921 irq_flow_handler_t hdl;
922 bool fasteoi;
923
924 if (trigger) {
925 irq_set_status_flags(irq, IRQ_LEVEL);
926 fasteoi = true;
927 } else {
928 irq_clear_status_flags(irq, IRQ_LEVEL);
929 fasteoi = false;
930 }
931
932 hdl = fasteoi ? handle_fasteoi_irq : handle_edge_irq;
933 __irq_set_handler(irq, hdl, 0, fasteoi ? "fasteoi" : "edge");
934}
935
96ed44b2
JL
936static bool mp_check_pin_attr(int irq, struct irq_alloc_info *info)
937{
938 struct mp_chip_data *data = irq_get_chip_data(irq);
939
940 /*
941 * setup_IO_APIC_irqs() programs all legacy IRQs with default trigger
942 * and polarity attirbutes. So allow the first user to reprogram the
943 * pin with real trigger and polarity attributes.
944 */
945 if (irq < nr_legacy_irqs() && data->count == 1) {
946 if (info->ioapic_trigger != data->trigger)
646c4b75 947 mp_register_handler(irq, info->ioapic_trigger);
96ed44b2
JL
948 data->entry.trigger = data->trigger = info->ioapic_trigger;
949 data->entry.polarity = data->polarity = info->ioapic_polarity;
950 }
951
952 return data->trigger == info->ioapic_trigger &&
953 data->polarity == info->ioapic_polarity;
954}
955
d32932d0 956static int alloc_irq_from_domain(struct irq_domain *domain, int ioapic, u32 gsi,
c4d05a2c 957 struct irq_alloc_info *info)
6b9fb708 958{
d32932d0 959 bool legacy = false;
d7f3d478 960 int irq = -1;
d7f3d478
JL
961 int type = ioapics[ioapic].irqdomain_cfg.type;
962
963 switch (type) {
964 case IOAPIC_DOMAIN_LEGACY:
965 /*
d32932d0
JL
966 * Dynamically allocate IRQ number for non-ISA IRQs in the first
967 * 16 GSIs on some weird platforms.
d7f3d478 968 */
d32932d0 969 if (!ioapic_initialized || gsi >= nr_legacy_irqs())
d7f3d478 970 irq = gsi;
d32932d0 971 legacy = mp_is_legacy_irq(irq);
d7f3d478
JL
972 break;
973 case IOAPIC_DOMAIN_STRICT:
d32932d0 974 irq = gsi;
d7f3d478
JL
975 break;
976 case IOAPIC_DOMAIN_DYNAMIC:
d7f3d478
JL
977 break;
978 default:
979 WARN(1, "ioapic: unknown irqdomain type %d\n", type);
d32932d0
JL
980 return -1;
981 }
982
983 return __irq_domain_alloc_irqs(domain, irq, 1,
984 ioapic_alloc_attr_node(info),
06ee6d57 985 info, legacy, NULL);
d32932d0
JL
986}
987
988/*
989 * Need special handling for ISA IRQs because there may be multiple IOAPIC pins
990 * sharing the same ISA IRQ number and irqdomain only supports 1:1 mapping
991 * between IOAPIC pin and IRQ number. A typical IOAPIC has 24 pins, pin 0-15 are
992 * used for legacy IRQs and pin 16-23 are used for PCI IRQs (PIRQ A-H).
993 * When ACPI is disabled, only legacy IRQ numbers (IRQ0-15) are available, and
994 * some BIOSes may use MP Interrupt Source records to override IRQ numbers for
995 * PIRQs instead of reprogramming the interrupt routing logic. Thus there may be
996 * multiple pins sharing the same legacy IRQ number when ACPI is disabled.
997 */
998static int alloc_isa_irq_from_domain(struct irq_domain *domain,
999 int irq, int ioapic, int pin,
1000 struct irq_alloc_info *info)
1001{
1002 struct mp_chip_data *data;
1003 struct irq_data *irq_data = irq_get_irq_data(irq);
1004 int node = ioapic_alloc_attr_node(info);
1005
1006 /*
1007 * Legacy ISA IRQ has already been allocated, just add pin to
1008 * the pin list assoicated with this IRQ and program the IOAPIC
1009 * entry. The IOAPIC entry
1010 */
1011 if (irq_data && irq_data->parent_data) {
d32932d0
JL
1012 if (!mp_check_pin_attr(irq, info))
1013 return -EBUSY;
4467715a
JL
1014 if (__add_pin_to_irq_node(irq_data->chip_data, node, ioapic,
1015 info->ioapic_pin))
d32932d0
JL
1016 return -ENOMEM;
1017 } else {
3534be05 1018 info->flags |= X86_IRQ_ALLOC_LEGACY;
06ee6d57
TG
1019 irq = __irq_domain_alloc_irqs(domain, irq, 1, node, info, true,
1020 NULL);
d32932d0
JL
1021 if (irq >= 0) {
1022 irq_data = irq_domain_get_irq_data(domain, irq);
1023 data = irq_data->chip_data;
1024 data->isa_irq = true;
1025 }
d7f3d478
JL
1026 }
1027
d32932d0 1028 return irq;
d7f3d478
JL
1029}
1030
1031static int mp_map_pin_to_irq(u32 gsi, int idx, int ioapic, int pin,
c4d05a2c 1032 unsigned int flags, struct irq_alloc_info *info)
d7f3d478
JL
1033{
1034 int irq;
d32932d0
JL
1035 bool legacy = false;
1036 struct irq_alloc_info tmp;
1037 struct mp_chip_data *data;
d7f3d478
JL
1038 struct irq_domain *domain = mp_ioapic_irqdomain(ioapic);
1039
b81975ea 1040 if (!domain)
d32932d0 1041 return -ENOSYS;
16ee7b3d 1042
16ee7b3d
JL
1043 if (idx >= 0 && test_bit(mp_irqs[idx].srcbus, mp_bus_not_pci)) {
1044 irq = mp_irqs[idx].srcbusirq;
d32932d0
JL
1045 legacy = mp_is_legacy_irq(irq);
1046 }
16ee7b3d 1047
d32932d0
JL
1048 mutex_lock(&ioapic_mutex);
1049 if (!(flags & IOAPIC_MAP_ALLOC)) {
1050 if (!legacy) {
1051 irq = irq_find_mapping(domain, pin);
16ee7b3d 1052 if (irq == 0)
d32932d0 1053 irq = -ENOENT;
16ee7b3d
JL
1054 }
1055 } else {
d32932d0
JL
1056 ioapic_copy_alloc_attr(&tmp, info, gsi, ioapic, pin);
1057 if (legacy)
1058 irq = alloc_isa_irq_from_domain(domain, irq,
1059 ioapic, pin, &tmp);
1060 else if ((irq = irq_find_mapping(domain, pin)) == 0)
1061 irq = alloc_irq_from_domain(domain, ioapic, gsi, &tmp);
1062 else if (!mp_check_pin_attr(irq, &tmp))
1063 irq = -EBUSY;
1064 if (irq >= 0) {
1065 data = irq_get_chip_data(irq);
1066 data->count++;
1067 }
15a3c7cc 1068 }
d7f3d478
JL
1069 mutex_unlock(&ioapic_mutex);
1070
d32932d0 1071 return irq;
6b9fb708
JL
1072}
1073
d7f3d478 1074static int pin_2_irq(int idx, int ioapic, int pin, unsigned int flags)
1da177e4 1075{
d7f3d478 1076 u32 gsi = mp_pin_to_gsi(ioapic, pin);
1da177e4
LT
1077
1078 /*
1079 * Debugging check, we are in big trouble if this message pops up!
1080 */
c2c21745 1081 if (mp_irqs[idx].dstirq != pin)
c767a54b 1082 pr_err("broken BIOS or MPTABLE parser, ayiee!!\n");
1da177e4 1083
54168ed7 1084#ifdef CONFIG_X86_32
1da177e4
LT
1085 /*
1086 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1087 */
1088 if ((pin >= 16) && (pin <= 23)) {
1089 if (pirq_entries[pin-16] != -1) {
1090 if (!pirq_entries[pin-16]) {
1091 apic_printk(APIC_VERBOSE, KERN_DEBUG
1092 "disabling PIRQ%d\n", pin-16);
1093 } else {
d7f3d478 1094 int irq = pirq_entries[pin-16];
1da177e4
LT
1095 apic_printk(APIC_VERBOSE, KERN_DEBUG
1096 "using PIRQ%d -> IRQ %d\n",
1097 pin-16, irq);
6b9fb708 1098 return irq;
1da177e4
LT
1099 }
1100 }
1101 }
54168ed7
IM
1102#endif
1103
c4d05a2c 1104 return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags, NULL);
d7f3d478 1105}
6b9fb708 1106
154d9e50 1107int mp_map_gsi_to_irq(u32 gsi, unsigned int flags, struct irq_alloc_info *info)
d7f3d478
JL
1108{
1109 int ioapic, pin, idx;
1110
1111 ioapic = mp_find_ioapic(gsi);
1112 if (ioapic < 0)
358e96de 1113 return -ENODEV;
d7f3d478
JL
1114
1115 pin = mp_find_ioapic_pin(ioapic, gsi);
1116 idx = find_irq_entry(ioapic, pin, mp_INT);
1117 if ((flags & IOAPIC_MAP_CHECK) && idx < 0)
358e96de 1118 return -ENODEV;
d7f3d478 1119
c4d05a2c 1120 return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags, info);
1da177e4
LT
1121}
1122
df334bea
JL
1123void mp_unmap_irq(int irq)
1124{
d32932d0
JL
1125 struct irq_data *irq_data = irq_get_irq_data(irq);
1126 struct mp_chip_data *data;
df334bea 1127
d32932d0 1128 if (!irq_data || !irq_data->domain)
df334bea
JL
1129 return;
1130
d32932d0
JL
1131 data = irq_data->chip_data;
1132 if (!data || data->isa_irq)
1133 return;
df334bea
JL
1134
1135 mutex_lock(&ioapic_mutex);
d32932d0
JL
1136 if (--data->count == 0)
1137 irq_domain_free_irqs(irq, 1);
df334bea
JL
1138 mutex_unlock(&ioapic_mutex);
1139}
1140
e20c06fd
YL
1141/*
1142 * Find a specific PCI IRQ entry.
1143 * Not an __init, possibly needed by modules
1144 */
25d0d35e 1145int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
e20c06fd 1146{
d7f3d478 1147 int irq, i, best_ioapic = -1, best_idx = -1;
e20c06fd
YL
1148
1149 apic_printk(APIC_DEBUG,
1150 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1151 bus, slot, pin);
1152 if (test_bit(bus, mp_bus_not_pci)) {
1153 apic_printk(APIC_VERBOSE,
1154 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1155 return -1;
1156 }
79598505 1157
e20c06fd
YL
1158 for (i = 0; i < mp_irq_entries; i++) {
1159 int lbus = mp_irqs[i].srcbus;
79598505
JL
1160 int ioapic_idx, found = 0;
1161
1162 if (bus != lbus || mp_irqs[i].irqtype != mp_INT ||
1163 slot != ((mp_irqs[i].srcbusirq >> 2) & 0x1f))
1164 continue;
e20c06fd 1165
f44d1692 1166 for_each_ioapic(ioapic_idx)
6f50d45f 1167 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic ||
79598505
JL
1168 mp_irqs[i].dstapic == MP_APIC_ALL) {
1169 found = 1;
e20c06fd 1170 break;
e20c06fd 1171 }
79598505
JL
1172 if (!found)
1173 continue;
1174
1175 /* Skip ISA IRQs */
d7f3d478
JL
1176 irq = pin_2_irq(i, ioapic_idx, mp_irqs[i].dstirq, 0);
1177 if (irq > 0 && !IO_APIC_IRQ(irq))
79598505
JL
1178 continue;
1179
1180 if (pin == (mp_irqs[i].srcbusirq & 3)) {
d7f3d478
JL
1181 best_idx = i;
1182 best_ioapic = ioapic_idx;
1183 goto out;
79598505 1184 }
d7f3d478 1185
79598505
JL
1186 /*
1187 * Use the first all-but-pin matching entry as a
1188 * best-guess fuzzy result for broken mptables.
1189 */
d7f3d478
JL
1190 if (best_idx < 0) {
1191 best_idx = i;
1192 best_ioapic = ioapic_idx;
e20c06fd
YL
1193 }
1194 }
d7f3d478
JL
1195 if (best_idx < 0)
1196 return -1;
1197
1198out:
25d0d35e
JL
1199 return pin_2_irq(best_idx, best_ioapic, mp_irqs[best_idx].dstirq,
1200 IOAPIC_MAP_ALLOC);
e20c06fd
YL
1201}
1202EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1203
d32932d0 1204static struct irq_chip ioapic_chip, ioapic_ir_chip;
1da177e4 1205
ed972ccf
TG
1206static void __init setup_IO_APIC_irqs(void)
1207{
16ee7b3d
JL
1208 unsigned int ioapic, pin;
1209 int idx;
ed972ccf
TG
1210
1211 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1212
16ee7b3d
JL
1213 for_each_ioapic_pin(ioapic, pin) {
1214 idx = find_irq_entry(ioapic, pin, mp_INT);
1215 if (idx < 0)
1216 apic_printk(APIC_VERBOSE,
1217 KERN_DEBUG " apic %d pin %d not connected\n",
1218 mpc_ioapic_id(ioapic), pin);
1219 else
1220 pin_2_irq(idx, ioapic, pin,
1221 ioapic ? 0 : IOAPIC_MAP_ALLOC);
1222 }
ed972ccf
TG
1223}
1224
17405453
YY
1225void ioapic_zap_locks(void)
1226{
1227 raw_spin_lock_init(&ioapic_lock);
1228}
1229
a44174ee
JL
1230static void io_apic_print_entries(unsigned int apic, unsigned int nr_entries)
1231{
1232 int i;
1233 char buf[256];
1234 struct IO_APIC_route_entry entry;
1235 struct IR_IO_APIC_route_entry *ir_entry = (void *)&entry;
1236
1237 printk(KERN_DEBUG "IOAPIC %d:\n", apic);
1238 for (i = 0; i <= nr_entries; i++) {
1239 entry = ioapic_read_entry(apic, i);
1240 snprintf(buf, sizeof(buf),
1241 " pin%02x, %s, %s, %s, V(%02X), IRR(%1d), S(%1d)",
335efdf5
TG
1242 i,
1243 entry.mask == IOAPIC_MASKED ? "disabled" : "enabled ",
1244 entry.trigger == IOAPIC_LEVEL ? "level" : "edge ",
1245 entry.polarity == IOAPIC_POL_LOW ? "low " : "high",
a44174ee
JL
1246 entry.vector, entry.irr, entry.delivery_status);
1247 if (ir_entry->format)
1248 printk(KERN_DEBUG "%s, remapped, I(%04X), Z(%X)\n",
adfaf183 1249 buf, (ir_entry->index2 << 15) | ir_entry->index,
a44174ee
JL
1250 ir_entry->zero);
1251 else
1252 printk(KERN_DEBUG "%s, %s, D(%02X), M(%1d)\n",
335efdf5
TG
1253 buf,
1254 entry.dest_mode == IOAPIC_DEST_MODE_LOGICAL ?
1255 "logical " : "physical",
a44174ee
JL
1256 entry.dest, entry.delivery_mode);
1257 }
1258}
1259
74afab7a 1260static void __init print_IO_APIC(int ioapic_idx)
afcc8a40 1261{
1da177e4
LT
1262 union IO_APIC_reg_00 reg_00;
1263 union IO_APIC_reg_01 reg_01;
1264 union IO_APIC_reg_02 reg_02;
1265 union IO_APIC_reg_03 reg_03;
1266 unsigned long flags;
1da177e4 1267
dade7716 1268 raw_spin_lock_irqsave(&ioapic_lock, flags);
6f50d45f
YL
1269 reg_00.raw = io_apic_read(ioapic_idx, 0);
1270 reg_01.raw = io_apic_read(ioapic_idx, 1);
1da177e4 1271 if (reg_01.bits.version >= 0x10)
6f50d45f 1272 reg_02.raw = io_apic_read(ioapic_idx, 2);
d6c88a50 1273 if (reg_01.bits.version >= 0x20)
6f50d45f 1274 reg_03.raw = io_apic_read(ioapic_idx, 3);
dade7716 1275 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4 1276
6f50d45f 1277 printk(KERN_DEBUG "IO APIC #%d......\n", mpc_ioapic_id(ioapic_idx));
1da177e4
LT
1278 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1279 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1280 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1281 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1da177e4 1282
54168ed7 1283 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
bd6a46e0
NC
1284 printk(KERN_DEBUG "....... : max redirection entries: %02X\n",
1285 reg_01.bits.entries);
1da177e4
LT
1286
1287 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
bd6a46e0
NC
1288 printk(KERN_DEBUG "....... : IO APIC version: %02X\n",
1289 reg_01.bits.version);
1da177e4
LT
1290
1291 /*
1292 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1293 * but the value of reg_02 is read as the previous read register
1294 * value, so ignore it if reg_02 == reg_01.
1295 */
1296 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1297 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1298 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1da177e4
LT
1299 }
1300
1301 /*
1302 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1303 * or reg_03, but the value of reg_0[23] is read as the previous read
1304 * register value, so ignore it if reg_03 == reg_0[12].
1305 */
1306 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1307 reg_03.raw != reg_01.raw) {
1308 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1309 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1da177e4
LT
1310 }
1311
1312 printk(KERN_DEBUG ".... IRQ redirection table:\n");
a44174ee 1313 io_apic_print_entries(ioapic_idx, reg_01.bits.entries);
cda417dd
YL
1314}
1315
74afab7a 1316void __init print_IO_APICs(void)
cda417dd 1317{
6f50d45f 1318 int ioapic_idx;
cda417dd
YL
1319 unsigned int irq;
1320
1321 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
f44d1692 1322 for_each_ioapic(ioapic_idx)
cda417dd 1323 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
6f50d45f
YL
1324 mpc_ioapic_id(ioapic_idx),
1325 ioapics[ioapic_idx].nr_registers);
cda417dd
YL
1326
1327 /*
1328 * We are a bit conservative about what we expect. We have to
1329 * know about every hardware change ASAP.
1330 */
1331 printk(KERN_INFO "testing the IO APIC.......................\n");
1332
f44d1692 1333 for_each_ioapic(ioapic_idx)
6f50d45f 1334 print_IO_APIC(ioapic_idx);
42f0efc5 1335
1da177e4 1336 printk(KERN_DEBUG "IRQ to pin mappings:\n");
ad9f4334 1337 for_each_active_irq(irq) {
0b8f1efa 1338 struct irq_pin_list *entry;
4467715a
JL
1339 struct irq_chip *chip;
1340 struct mp_chip_data *data;
0b8f1efa 1341
6fd36ba0 1342 chip = irq_get_chip(irq);
d32932d0 1343 if (chip != &ioapic_chip && chip != &ioapic_ir_chip)
6fd36ba0 1344 continue;
4467715a
JL
1345 data = irq_get_chip_data(irq);
1346 if (!data)
05e40760 1347 continue;
4467715a 1348 if (list_empty(&data->irq_2_pin))
1da177e4 1349 continue;
4467715a 1350
8f09cd20 1351 printk(KERN_DEBUG "IRQ%d ", irq);
4467715a 1352 for_each_irq_pin(entry, data->irq_2_pin)
c767a54b
JP
1353 pr_cont("-> %d:%d", entry->apic, entry->pin);
1354 pr_cont("\n");
1da177e4
LT
1355 }
1356
1357 printk(KERN_INFO ".................................... done.\n");
1da177e4
LT
1358}
1359
efa2559f
YL
1360/* Where if anywhere is the i8259 connect in external int mode */
1361static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1362
54168ed7 1363void __init enable_IO_APIC(void)
1da177e4 1364{
fcfd636a 1365 int i8259_apic, i8259_pin;
f44d1692 1366 int apic, pin;
bc07844a 1367
a46f5c89
TG
1368 if (skip_ioapic_setup)
1369 nr_ioapics = 0;
1370
1371 if (!nr_legacy_irqs() || !nr_ioapics)
bc07844a
TG
1372 return;
1373
f44d1692 1374 for_each_ioapic_pin(apic, pin) {
fcfd636a 1375 /* See if any of the pins is in ExtINT mode */
f44d1692 1376 struct IO_APIC_route_entry entry = ioapic_read_entry(apic, pin);
fcfd636a 1377
f44d1692
JL
1378 /* If the interrupt line is enabled and in ExtInt mode
1379 * I have found the pin where the i8259 is connected.
1380 */
1381 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1382 ioapic_i8259.apic = apic;
1383 ioapic_i8259.pin = pin;
1384 goto found_i8259;
fcfd636a
EB
1385 }
1386 }
1387 found_i8259:
1388 /* Look to see what if the MP table has reported the ExtINT */
1389 /* If we could not find the appropriate pin by looking at the ioapic
1390 * the i8259 probably is not connected the ioapic but give the
1391 * mptable a chance anyway.
1392 */
1393 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1394 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1395 /* Trust the MP table if nothing is setup in the hardware */
1396 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1397 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1398 ioapic_i8259.pin = i8259_pin;
1399 ioapic_i8259.apic = i8259_apic;
1400 }
1401 /* Complain if the MP table and the hardware disagree */
1402 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1403 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1404 {
1405 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1da177e4
LT
1406 }
1407
1408 /*
1409 * Do not trust the IO-APIC being empty at bootup
1410 */
1411 clear_IO_APIC();
1412}
1413
51b146c5 1414void native_restore_boot_irq_mode(void)
1da177e4 1415{
650927ef 1416 /*
0b968d23 1417 * If the i8259 is routed through an IOAPIC
650927ef 1418 * Put that IOAPIC in virtual wire mode
0b968d23 1419 * so legacy interrupts can be delivered.
650927ef 1420 */
1c4248ca 1421 if (ioapic_i8259.pin != -1) {
650927ef 1422 struct IO_APIC_route_entry entry;
650927ef
EB
1423
1424 memset(&entry, 0, sizeof(entry));
335efdf5
TG
1425 entry.mask = IOAPIC_UNMASKED;
1426 entry.trigger = IOAPIC_EDGE;
1427 entry.polarity = IOAPIC_POL_HIGH;
1428 entry.dest_mode = IOAPIC_DEST_MODE_PHYSICAL;
1429 entry.delivery_mode = dest_ExtINT;
1430 entry.dest = read_apic_id();
650927ef
EB
1431
1432 /*
1433 * Add it to the IO-APIC irq-routing table:
1434 */
cf4c6a2f 1435 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
650927ef 1436 }
54168ed7 1437
93984fbd 1438 if (boot_cpu_has(X86_FEATURE_APIC) || apic_from_smp_config())
1c4248ca 1439 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1c4248ca
JR
1440}
1441
ce279cdc 1442void restore_boot_irq_mode(void)
1c4248ca 1443{
95d76acc 1444 if (!nr_legacy_irqs())
1c4248ca
JR
1445 return;
1446
51b146c5 1447 x86_apic_ops.restore();
1da177e4
LT
1448}
1449
54168ed7 1450#ifdef CONFIG_X86_32
1da177e4
LT
1451/*
1452 * function to set the IO-APIC physical IDs based on the
1453 * values stored in the MPC table.
1454 *
1455 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1456 */
a38c5380 1457void __init setup_ioapic_ids_from_mpc_nocheck(void)
1da177e4
LT
1458{
1459 union IO_APIC_reg_00 reg_00;
1460 physid_mask_t phys_id_present_map;
6f50d45f 1461 int ioapic_idx;
1da177e4
LT
1462 int i;
1463 unsigned char old_id;
1464 unsigned long flags;
1465
1466 /*
1467 * This is broken; anything with a real cpu count has to
1468 * circumvent this idiocy regardless.
1469 */
7abc0753 1470 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
1da177e4
LT
1471
1472 /*
1473 * Set the IOAPIC ID to the value stored in the MPC table.
1474 */
f44d1692 1475 for_each_ioapic(ioapic_idx) {
1da177e4 1476 /* Read the register 0 value */
dade7716 1477 raw_spin_lock_irqsave(&ioapic_lock, flags);
6f50d45f 1478 reg_00.raw = io_apic_read(ioapic_idx, 0);
dade7716 1479 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
36062448 1480
6f50d45f 1481 old_id = mpc_ioapic_id(ioapic_idx);
1da177e4 1482
6f50d45f 1483 if (mpc_ioapic_id(ioapic_idx) >= get_physical_broadcast()) {
1da177e4 1484 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
6f50d45f 1485 ioapic_idx, mpc_ioapic_id(ioapic_idx));
1da177e4
LT
1486 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1487 reg_00.bits.ID);
6f50d45f 1488 ioapics[ioapic_idx].mp_config.apicid = reg_00.bits.ID;
1da177e4
LT
1489 }
1490
1da177e4
LT
1491 /*
1492 * Sanity check, is the ID really free? Every APIC in a
1493 * system must have a unique ID or we get lots of nice
1494 * 'stuck on smp_invalidate_needed IPI wait' messages.
1495 */
7abc0753 1496 if (apic->check_apicid_used(&phys_id_present_map,
6f50d45f 1497 mpc_ioapic_id(ioapic_idx))) {
1da177e4 1498 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
6f50d45f 1499 ioapic_idx, mpc_ioapic_id(ioapic_idx));
1da177e4
LT
1500 for (i = 0; i < get_physical_broadcast(); i++)
1501 if (!physid_isset(i, phys_id_present_map))
1502 break;
1503 if (i >= get_physical_broadcast())
1504 panic("Max APIC ID exceeded!\n");
1505 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1506 i);
1507 physid_set(i, phys_id_present_map);
6f50d45f 1508 ioapics[ioapic_idx].mp_config.apicid = i;
1da177e4
LT
1509 } else {
1510 physid_mask_t tmp;
6f50d45f 1511 apic->apicid_to_cpu_present(mpc_ioapic_id(ioapic_idx),
d5371430 1512 &tmp);
1da177e4
LT
1513 apic_printk(APIC_VERBOSE, "Setting %d in the "
1514 "phys_id_present_map\n",
6f50d45f 1515 mpc_ioapic_id(ioapic_idx));
1da177e4
LT
1516 physids_or(phys_id_present_map, phys_id_present_map, tmp);
1517 }
1518
1da177e4
LT
1519 /*
1520 * We need to adjust the IRQ routing table
1521 * if the ID changed.
1522 */
6f50d45f 1523 if (old_id != mpc_ioapic_id(ioapic_idx))
1da177e4 1524 for (i = 0; i < mp_irq_entries; i++)
c2c21745
JSR
1525 if (mp_irqs[i].dstapic == old_id)
1526 mp_irqs[i].dstapic
6f50d45f 1527 = mpc_ioapic_id(ioapic_idx);
1da177e4
LT
1528
1529 /*
60d79fd9
YL
1530 * Update the ID register according to the right value
1531 * from the MPC table if they are different.
36062448 1532 */
6f50d45f 1533 if (mpc_ioapic_id(ioapic_idx) == reg_00.bits.ID)
60d79fd9
YL
1534 continue;
1535
1da177e4
LT
1536 apic_printk(APIC_VERBOSE, KERN_INFO
1537 "...changing IO-APIC physical APIC ID to %d ...",
6f50d45f 1538 mpc_ioapic_id(ioapic_idx));
1da177e4 1539
6f50d45f 1540 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
dade7716 1541 raw_spin_lock_irqsave(&ioapic_lock, flags);
6f50d45f 1542 io_apic_write(ioapic_idx, 0, reg_00.raw);
dade7716 1543 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
1544
1545 /*
1546 * Sanity check
1547 */
dade7716 1548 raw_spin_lock_irqsave(&ioapic_lock, flags);
6f50d45f 1549 reg_00.raw = io_apic_read(ioapic_idx, 0);
dade7716 1550 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
6f50d45f 1551 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx))
c767a54b 1552 pr_cont("could not set ID!\n");
1da177e4
LT
1553 else
1554 apic_printk(APIC_VERBOSE, " ok.\n");
1555 }
1556}
a38c5380
SAS
1557
1558void __init setup_ioapic_ids_from_mpc(void)
1559{
1560
1561 if (acpi_ioapic)
1562 return;
1563 /*
1564 * Don't check I/O APIC IDs for xAPIC systems. They have
1565 * no meaning without the serial APIC bus.
1566 */
1567 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
cff9ab2b 1568 || APIC_XAPIC(boot_cpu_apic_version))
a38c5380
SAS
1569 return;
1570 setup_ioapic_ids_from_mpc_nocheck();
1571}
54168ed7 1572#endif
1da177e4 1573
7ce0bcfd 1574int no_timer_check __initdata;
8542b200
ZA
1575
1576static int __init notimercheck(char *s)
1577{
1578 no_timer_check = 1;
1579 return 1;
1580}
1581__setup("no_timer_check", notimercheck);
1582
ca7c6076
DL
1583static void __init delay_with_tsc(void)
1584{
1585 unsigned long long start, now;
1586 unsigned long end = jiffies + 4;
1587
1588 start = rdtsc();
1589
1590 /*
1591 * We don't know the TSC frequency yet, but waiting for
1592 * 40000000000/HZ TSC cycles is safe:
1593 * 4 GHz == 10 jiffies
1594 * 1 GHz == 40 jiffies
1595 */
1596 do {
1597 rep_nop();
1598 now = rdtsc();
6262b6e7 1599 } while ((now - start) < 40000000000ULL / HZ &&
ca7c6076
DL
1600 time_before_eq(jiffies, end));
1601}
1602
1603static void __init delay_without_tsc(void)
1604{
1605 unsigned long end = jiffies + 4;
1606 int band = 1;
1607
1608 /*
1609 * We don't know any frequency yet, but waiting for
1610 * 40940000000/HZ cycles is safe:
1611 * 4 GHz == 10 jiffies
1612 * 1 GHz == 40 jiffies
1613 * 1 << 1 + 1 << 2 +...+ 1 << 11 = 4094
1614 */
1615 do {
1616 __delay(((1U << band++) * 10000000UL) / HZ);
1617 } while (band < 12 && time_before_eq(jiffies, end));
1618}
1619
1da177e4
LT
1620/*
1621 * There is a nasty bug in some older SMP boards, their mptable lies
1622 * about the timer IRQ. We do the following to work around the situation:
1623 *
1624 * - timer IRQ defaults to IO-APIC IRQ
1625 * - if this function detects that timer IRQs are defunct, then we fall
1626 * back to ISA timer IRQs
1627 */
f0a7a5c9 1628static int __init timer_irq_works(void)
1da177e4
LT
1629{
1630 unsigned long t1 = jiffies;
4aae0702 1631 unsigned long flags;
1da177e4 1632
8542b200
ZA
1633 if (no_timer_check)
1634 return 1;
1635
4aae0702 1636 local_save_flags(flags);
1da177e4 1637 local_irq_enable();
ca7c6076
DL
1638
1639 if (boot_cpu_has(X86_FEATURE_TSC))
1640 delay_with_tsc();
1641 else
1642 delay_without_tsc();
1643
4aae0702 1644 local_irq_restore(flags);
1da177e4
LT
1645
1646 /*
1647 * Expect a few ticks at least, to be sure some possible
1648 * glue logic does not lock up after one or two first
1649 * ticks in a non-ExtINT mode. Also the local APIC
1650 * might have cached one ExtINT interrupt. Finally, at
1651 * least one tick may be lost due to delays.
1652 */
54168ed7
IM
1653
1654 /* jiffies wrap? */
1d16b53e 1655 if (time_after(jiffies, t1 + 4))
1da177e4 1656 return 1;
1da177e4
LT
1657 return 0;
1658}
1659
1660/*
1661 * In the SMP+IOAPIC case it might happen that there are an unspecified
1662 * number of pending IRQ events unhandled. These cases are very rare,
1663 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1664 * better to do it this way as thus we do not have to be aware of
1665 * 'pending' interrupts in the IRQ path, except at this point.
1666 */
1667/*
1668 * Edge triggered needs to resend any interrupt
1669 * that was delayed but this is now handled in the device
1670 * independent code.
1671 */
1672
1673/*
1674 * Starting up a edge-triggered IO-APIC interrupt is
1675 * nasty - we need to make sure that we get the edge.
1676 * If it is already asserted for some reason, we need
1677 * return 1 to indicate that is was pending.
1678 *
1679 * This is not complete - we should be able to fake
1680 * an edge even if it isn't on the 8259A...
1681 */
61a38ce3 1682static unsigned int startup_ioapic_irq(struct irq_data *data)
1da177e4 1683{
61a38ce3 1684 int was_pending = 0, irq = data->irq;
1da177e4
LT
1685 unsigned long flags;
1686
dade7716 1687 raw_spin_lock_irqsave(&ioapic_lock, flags);
95d76acc 1688 if (irq < nr_legacy_irqs()) {
4305df94 1689 legacy_pic->mask(irq);
b81bb373 1690 if (legacy_pic->irq_pending(irq))
1da177e4
LT
1691 was_pending = 1;
1692 }
4467715a 1693 __unmask_ioapic(data->chip_data);
dade7716 1694 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
1695
1696 return was_pending;
1697}
1698
3eb2cce8 1699atomic_t irq_mis_count;
3eb2cce8 1700
047c8fdb 1701#ifdef CONFIG_GENERIC_PENDING_IRQ
4467715a 1702static bool io_apic_level_ack_pending(struct mp_chip_data *data)
d1ecad6e
MN
1703{
1704 struct irq_pin_list *entry;
1705 unsigned long flags;
1706
1707 raw_spin_lock_irqsave(&ioapic_lock, flags);
4467715a 1708 for_each_irq_pin(entry, data->irq_2_pin) {
d1ecad6e
MN
1709 unsigned int reg;
1710 int pin;
1711
1712 pin = entry->pin;
1713 reg = io_apic_read(entry->apic, 0x10 + pin*2);
1714 /* Is the remote IRR bit set? */
1715 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
1716 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1717 return true;
1718 }
1719 }
1720 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1721
1722 return false;
1723}
1724
4467715a 1725static inline bool ioapic_irqd_mask(struct irq_data *data)
4da7072a 1726{
54168ed7 1727 /* If we are moving the irq we need to mask it */
5451ddc5 1728 if (unlikely(irqd_is_setaffinity_pending(data))) {
4467715a 1729 mask_ioapic_irq(data);
4da7072a 1730 return true;
54168ed7 1731 }
4da7072a
AG
1732 return false;
1733}
1734
4467715a 1735static inline void ioapic_irqd_unmask(struct irq_data *data, bool masked)
4da7072a
AG
1736{
1737 if (unlikely(masked)) {
1738 /* Only migrate the irq if the ack has been received.
1739 *
1740 * On rare occasions the broadcast level triggered ack gets
1741 * delayed going to ioapics, and if we reprogram the
1742 * vector while Remote IRR is still set the irq will never
1743 * fire again.
1744 *
1745 * To prevent this scenario we read the Remote IRR bit
1746 * of the ioapic. This has two effects.
1747 * - On any sane system the read of the ioapic will
1748 * flush writes (and acks) going to the ioapic from
1749 * this cpu.
1750 * - We get to see if the ACK has actually been delivered.
1751 *
1752 * Based on failed experiments of reprogramming the
1753 * ioapic entry from outside of irq context starting
1754 * with masking the ioapic entry and then polling until
1755 * Remote IRR was clear before reprogramming the
1756 * ioapic I don't trust the Remote IRR bit to be
1757 * completey accurate.
1758 *
1759 * However there appears to be no other way to plug
1760 * this race, so if the Remote IRR bit is not
1761 * accurate and is causing problems then it is a hardware bug
1762 * and you can go talk to the chipset vendor about it.
1763 */
4467715a 1764 if (!io_apic_level_ack_pending(data->chip_data))
4da7072a 1765 irq_move_masked_irq(data);
4467715a 1766 unmask_ioapic_irq(data);
4da7072a
AG
1767 }
1768}
1769#else
4467715a 1770static inline bool ioapic_irqd_mask(struct irq_data *data)
4da7072a
AG
1771{
1772 return false;
1773}
4467715a 1774static inline void ioapic_irqd_unmask(struct irq_data *data, bool masked)
4da7072a
AG
1775{
1776}
047c8fdb
YL
1777#endif
1778
4467715a 1779static void ioapic_ack_level(struct irq_data *irq_data)
4da7072a 1780{
4467715a 1781 struct irq_cfg *cfg = irqd_cfg(irq_data);
4da7072a
AG
1782 unsigned long v;
1783 bool masked;
d32932d0 1784 int i;
4da7072a
AG
1785
1786 irq_complete_move(cfg);
4467715a 1787 masked = ioapic_irqd_mask(irq_data);
4da7072a 1788
3eb2cce8 1789 /*
916a0fe7
JF
1790 * It appears there is an erratum which affects at least version 0x11
1791 * of I/O APIC (that's the 82093AA and cores integrated into various
1792 * chipsets). Under certain conditions a level-triggered interrupt is
1793 * erroneously delivered as edge-triggered one but the respective IRR
1794 * bit gets set nevertheless. As a result the I/O unit expects an EOI
1795 * message but it will never arrive and further interrupts are blocked
1796 * from the source. The exact reason is so far unknown, but the
1797 * phenomenon was observed when two consecutive interrupt requests
1798 * from a given source get delivered to the same CPU and the source is
1799 * temporarily disabled in between.
1800 *
1801 * A workaround is to simulate an EOI message manually. We achieve it
1802 * by setting the trigger mode to edge and then to level when the edge
1803 * trigger mode gets detected in the TMR of a local APIC for a
1804 * level-triggered interrupt. We mask the source for the time of the
1805 * operation to prevent an edge-triggered interrupt escaping meanwhile.
1806 * The idea is from Manfred Spraul. --macro
1c83995b
SS
1807 *
1808 * Also in the case when cpu goes offline, fixup_irqs() will forward
1809 * any unhandled interrupt on the offlined cpu to the new cpu
1810 * destination that is handling the corresponding interrupt. This
1811 * interrupt forwarding is done via IPI's. Hence, in this case also
1812 * level-triggered io-apic interrupt will be seen as an edge
1813 * interrupt in the IRR. And we can't rely on the cpu's EOI
1814 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
1815 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
1816 * supporting EOI register, we do an explicit EOI to clear the
1817 * remote IRR and on IO-APIC's which don't have an EOI register,
1818 * we use the above logic (mask+edge followed by unmask+level) from
1819 * Manfred Spraul to clear the remote IRR.
916a0fe7 1820 */
3145e941 1821 i = cfg->vector;
3eb2cce8 1822 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
3eb2cce8 1823
54168ed7
IM
1824 /*
1825 * We must acknowledge the irq before we move it or the acknowledge will
1826 * not propagate properly.
1827 */
1828 ack_APIC_irq();
1829
1c83995b
SS
1830 /*
1831 * Tail end of clearing remote IRR bit (either by delivering the EOI
1832 * message via io-apic EOI register write or simulating it using
1833 * mask+edge followed by unnask+level logic) manually when the
1834 * level triggered interrupt is seen as the edge triggered interrupt
1835 * at the cpu.
1836 */
ca64c47c
MR
1837 if (!(v & (1 << (i & 0x1f)))) {
1838 atomic_inc(&irq_mis_count);
4467715a 1839 eoi_ioapic_pin(cfg->vector, irq_data->chip_data);
ca64c47c
MR
1840 }
1841
4467715a 1842 ioapic_irqd_unmask(irq_data, masked);
3eb2cce8 1843}
1d025192 1844
d32932d0
JL
1845static void ioapic_ir_ack_level(struct irq_data *irq_data)
1846{
1847 struct mp_chip_data *data = irq_data->chip_data;
1848
1849 /*
1850 * Intr-remapping uses pin number as the virtual vector
1851 * in the RTE. Actual vector is programmed in
1852 * intr-remapping table entry. Hence for the io-apic
1853 * EOI we use the pin number.
1854 */
2b04e46d 1855 apic_ack_irq(irq_data);
4467715a 1856 eoi_ioapic_pin(data->entry.vector, data);
d32932d0
JL
1857}
1858
90ad9e2d
TG
1859static void ioapic_configure_entry(struct irq_data *irqd)
1860{
1861 struct mp_chip_data *mpd = irqd->chip_data;
1862 struct irq_cfg *cfg = irqd_cfg(irqd);
1863 struct irq_pin_list *entry;
1864
1865 /*
1866 * Only update when the parent is the vector domain, don't touch it
1867 * if the parent is the remapping domain. Check the installed
1868 * ioapic chip to verify that.
1869 */
1870 if (irqd->chip == &ioapic_chip) {
1871 mpd->entry.dest = cfg->dest_apicid;
1872 mpd->entry.vector = cfg->vector;
1873 }
1874 for_each_irq_pin(entry, mpd->irq_2_pin)
1875 __ioapic_write_entry(entry->apic, entry->pin, mpd->entry);
1876}
1877
d32932d0
JL
1878static int ioapic_set_affinity(struct irq_data *irq_data,
1879 const struct cpumask *mask, bool force)
1880{
1881 struct irq_data *parent = irq_data->parent_data;
d32932d0
JL
1882 unsigned long flags;
1883 int ret;
1884
1885 ret = parent->chip->irq_set_affinity(parent, mask, force);
1886 raw_spin_lock_irqsave(&ioapic_lock, flags);
90ad9e2d
TG
1887 if (ret >= 0 && ret != IRQ_SET_MASK_OK_DONE)
1888 ioapic_configure_entry(irq_data);
d32932d0
JL
1889 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1890
1891 return ret;
1892}
1893
f5b9ed7a 1894static struct irq_chip ioapic_chip __read_mostly = {
f7e909ea
TG
1895 .name = "IO-APIC",
1896 .irq_startup = startup_ioapic_irq,
1897 .irq_mask = mask_ioapic_irq,
1898 .irq_unmask = unmask_ioapic_irq,
d32932d0
JL
1899 .irq_ack = irq_chip_ack_parent,
1900 .irq_eoi = ioapic_ack_level,
1901 .irq_set_affinity = ioapic_set_affinity,
a9b4f087 1902 .irq_retrigger = irq_chip_retrigger_hierarchy,
d32932d0
JL
1903 .flags = IRQCHIP_SKIP_SET_WAKE,
1904};
1905
1906static struct irq_chip ioapic_ir_chip __read_mostly = {
1907 .name = "IR-IO-APIC",
1908 .irq_startup = startup_ioapic_irq,
1909 .irq_mask = mask_ioapic_irq,
1910 .irq_unmask = unmask_ioapic_irq,
1911 .irq_ack = irq_chip_ack_parent,
1912 .irq_eoi = ioapic_ir_ack_level,
1913 .irq_set_affinity = ioapic_set_affinity,
a9b4f087 1914 .irq_retrigger = irq_chip_retrigger_hierarchy,
5613570b 1915 .flags = IRQCHIP_SKIP_SET_WAKE,
1da177e4
LT
1916};
1917
1da177e4
LT
1918static inline void init_IO_APIC_traps(void)
1919{
da51a821 1920 struct irq_cfg *cfg;
ad9f4334 1921 unsigned int irq;
1da177e4 1922
ad9f4334 1923 for_each_active_irq(irq) {
32f5ef5d 1924 cfg = irq_cfg(irq);
0b8f1efa 1925 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
1da177e4
LT
1926 /*
1927 * Hmm.. We don't have an entry for this,
1928 * so default to an old-fashioned 8259
1929 * interrupt if we can..
1930 */
95d76acc 1931 if (irq < nr_legacy_irqs())
b81bb373 1932 legacy_pic->make_irq(irq);
0b8f1efa 1933 else
1da177e4 1934 /* Strange. Oh, well.. */
2c778651 1935 irq_set_chip(irq, &no_irq_chip);
1da177e4
LT
1936 }
1937 }
1938}
1939
f5b9ed7a
IM
1940/*
1941 * The local APIC irq-chip implementation:
1942 */
1da177e4 1943
90297c5f 1944static void mask_lapic_irq(struct irq_data *data)
1da177e4
LT
1945{
1946 unsigned long v;
1947
1948 v = apic_read(APIC_LVT0);
593f4a78 1949 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1da177e4
LT
1950}
1951
90297c5f 1952static void unmask_lapic_irq(struct irq_data *data)
1da177e4 1953{
f5b9ed7a 1954 unsigned long v;
1da177e4 1955
f5b9ed7a 1956 v = apic_read(APIC_LVT0);
593f4a78 1957 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
f5b9ed7a 1958}
1da177e4 1959
90297c5f 1960static void ack_lapic_irq(struct irq_data *data)
1d025192
YL
1961{
1962 ack_APIC_irq();
1963}
1964
f5b9ed7a 1965static struct irq_chip lapic_chip __read_mostly = {
9a1c6192 1966 .name = "local-APIC",
90297c5f
TG
1967 .irq_mask = mask_lapic_irq,
1968 .irq_unmask = unmask_lapic_irq,
1969 .irq_ack = ack_lapic_irq,
1da177e4
LT
1970};
1971
60c69948 1972static void lapic_register_intr(int irq)
c88ac1df 1973{
60c69948 1974 irq_clear_status_flags(irq, IRQ_LEVEL);
2c778651 1975 irq_set_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
c88ac1df 1976 "edge");
c88ac1df
MR
1977}
1978
1da177e4
LT
1979/*
1980 * This looks a bit hackish but it's about the only one way of sending
1981 * a few INTA cycles to 8259As and any associated glue logic. ICR does
1982 * not support the ExtINT mode, unfortunately. We need to send these
1983 * cycles as some i82489DX-based boards have glue logic that keeps the
1984 * 8259A interrupt line asserted until INTA. --macro
1985 */
28acf285 1986static inline void __init unlock_ExtINT_logic(void)
1da177e4 1987{
fcfd636a 1988 int apic, pin, i;
1da177e4
LT
1989 struct IO_APIC_route_entry entry0, entry1;
1990 unsigned char save_control, save_freq_select;
1da177e4 1991
fcfd636a 1992 pin = find_isa_irq_pin(8, mp_INT);
956fb531
AB
1993 if (pin == -1) {
1994 WARN_ON_ONCE(1);
1995 return;
1996 }
fcfd636a 1997 apic = find_isa_irq_apic(8, mp_INT);
956fb531
AB
1998 if (apic == -1) {
1999 WARN_ON_ONCE(1);
1da177e4 2000 return;
956fb531 2001 }
1da177e4 2002
cf4c6a2f 2003 entry0 = ioapic_read_entry(apic, pin);
fcfd636a 2004 clear_IO_APIC_pin(apic, pin);
1da177e4
LT
2005
2006 memset(&entry1, 0, sizeof(entry1));
2007
335efdf5
TG
2008 entry1.dest_mode = IOAPIC_DEST_MODE_PHYSICAL;
2009 entry1.mask = IOAPIC_UNMASKED;
d83e94ac 2010 entry1.dest = hard_smp_processor_id();
1da177e4
LT
2011 entry1.delivery_mode = dest_ExtINT;
2012 entry1.polarity = entry0.polarity;
335efdf5 2013 entry1.trigger = IOAPIC_EDGE;
1da177e4
LT
2014 entry1.vector = 0;
2015
cf4c6a2f 2016 ioapic_write_entry(apic, pin, entry1);
1da177e4
LT
2017
2018 save_control = CMOS_READ(RTC_CONTROL);
2019 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2020 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2021 RTC_FREQ_SELECT);
2022 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2023
2024 i = 100;
2025 while (i-- > 0) {
2026 mdelay(10);
2027 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2028 i -= 10;
2029 }
2030
2031 CMOS_WRITE(save_control, RTC_CONTROL);
2032 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
fcfd636a 2033 clear_IO_APIC_pin(apic, pin);
1da177e4 2034
cf4c6a2f 2035 ioapic_write_entry(apic, pin, entry0);
1da177e4
LT
2036}
2037
efa2559f 2038static int disable_timer_pin_1 __initdata;
047c8fdb 2039/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
54168ed7 2040static int __init disable_timer_pin_setup(char *arg)
efa2559f
YL
2041{
2042 disable_timer_pin_1 = 1;
2043 return 0;
2044}
54168ed7 2045early_param("disable_timer_pin_1", disable_timer_pin_setup);
efa2559f 2046
d32932d0
JL
2047static int mp_alloc_timer_irq(int ioapic, int pin)
2048{
2049 int irq = -1;
d32932d0
JL
2050 struct irq_domain *domain = mp_ioapic_irqdomain(ioapic);
2051
2052 if (domain) {
4467715a
JL
2053 struct irq_alloc_info info;
2054
d32932d0
JL
2055 ioapic_set_alloc_attr(&info, NUMA_NO_NODE, 0, 0);
2056 info.ioapic_id = mpc_ioapic_id(ioapic);
2057 info.ioapic_pin = pin;
2058 mutex_lock(&ioapic_mutex);
2059 irq = alloc_isa_irq_from_domain(domain, 0, ioapic, pin, &info);
2060 mutex_unlock(&ioapic_mutex);
2061 }
2062
2063 return irq;
2064}
2065
1da177e4
LT
2066/*
2067 * This code may look a bit paranoid, but it's supposed to cooperate with
2068 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2069 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2070 * fanatically on his truly buggy board.
54168ed7
IM
2071 *
2072 * FIXME: really need to revamp this for all platforms.
1da177e4 2073 */
8542b200 2074static inline void __init check_timer(void)
1da177e4 2075{
4467715a
JL
2076 struct irq_data *irq_data = irq_get_irq_data(0);
2077 struct mp_chip_data *data = irq_data->chip_data;
2078 struct irq_cfg *cfg = irqd_cfg(irq_data);
f6e9456c 2079 int node = cpu_to_node(0);
fcfd636a 2080 int apic1, pin1, apic2, pin2;
4aae0702 2081 unsigned long flags;
047c8fdb 2082 int no_pin1 = 0;
4aae0702
IM
2083
2084 local_irq_save(flags);
d4d25dec 2085
1da177e4
LT
2086 /*
2087 * get/set the timer IRQ vector:
2088 */
4305df94 2089 legacy_pic->mask(0);
1da177e4
LT
2090
2091 /*
d11d5794
MR
2092 * As IRQ0 is to be enabled in the 8259A, the virtual
2093 * wire has to be disabled in the local APIC. Also
2094 * timer interrupts need to be acknowledged manually in
2095 * the 8259A for the i82489DX when using the NMI
2096 * watchdog as that APIC treats NMIs as level-triggered.
2097 * The AEOI mode will finish them in the 8259A
2098 * automatically.
1da177e4 2099 */
593f4a78 2100 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
b81bb373 2101 legacy_pic->init(1);
1da177e4 2102
fcfd636a
EB
2103 pin1 = find_isa_irq_pin(0, mp_INT);
2104 apic1 = find_isa_irq_apic(0, mp_INT);
2105 pin2 = ioapic_i8259.pin;
2106 apic2 = ioapic_i8259.apic;
1da177e4 2107
49a66a0b
MR
2108 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2109 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
497c9a19 2110 cfg->vector, apic1, pin1, apic2, pin2);
1da177e4 2111
691874fa
MR
2112 /*
2113 * Some BIOS writers are clueless and report the ExtINTA
2114 * I/O APIC input from the cascaded 8259A as the timer
2115 * interrupt input. So just in case, if only one pin
2116 * was found above, try it both directly and through the
2117 * 8259A.
2118 */
2119 if (pin1 == -1) {
6a9f5de2 2120 panic_if_irq_remap("BIOS bug: timer not connected to IO-APIC");
691874fa
MR
2121 pin1 = pin2;
2122 apic1 = apic2;
2123 no_pin1 = 1;
2124 } else if (pin2 == -1) {
2125 pin2 = pin1;
2126 apic2 = apic1;
2127 }
2128
1da177e4 2129 if (pin1 != -1) {
d32932d0 2130 /* Ok, does IRQ0 through the IOAPIC work? */
691874fa 2131 if (no_pin1) {
d32932d0 2132 mp_alloc_timer_irq(apic1, pin1);
f72dccac 2133 } else {
d32932d0
JL
2134 /*
2135 * for edge trigger, it's already unmasked,
f72dccac
YL
2136 * so only need to unmask if it is level-trigger
2137 * do we really have level trigger timer?
2138 */
2139 int idx;
2140 idx = find_irq_entry(apic1, pin1, mp_INT);
2141 if (idx != -1 && irq_trigger(idx))
e708e35b 2142 unmask_ioapic_irq(irq_get_irq_data(0));
691874fa 2143 }
aaaec6fc 2144 irq_domain_deactivate_irq(irq_data);
42e1cc2d 2145 irq_domain_activate_irq(irq_data, false);
1da177e4 2146 if (timer_irq_works()) {
66759a01
CE
2147 if (disable_timer_pin_1 > 0)
2148 clear_IO_APIC_pin(0, pin1);
4aae0702 2149 goto out;
1da177e4 2150 }
6a9f5de2 2151 panic_if_irq_remap("timer doesn't work through Interrupt-remapped IO-APIC");
f72dccac 2152 local_irq_disable();
fcfd636a 2153 clear_IO_APIC_pin(apic1, pin1);
691874fa 2154 if (!no_pin1)
49a66a0b
MR
2155 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2156 "8254 timer not connected to IO-APIC\n");
1da177e4 2157
49a66a0b
MR
2158 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2159 "(IRQ0) through the 8259A ...\n");
2160 apic_printk(APIC_QUIET, KERN_INFO
2161 "..... (found apic %d pin %d) ...\n", apic2, pin2);
1da177e4
LT
2162 /*
2163 * legacy devices should be connected to IO APIC #0
2164 */
4467715a 2165 replace_pin_at_irq_node(data, node, apic1, pin1, apic2, pin2);
aaaec6fc 2166 irq_domain_deactivate_irq(irq_data);
42e1cc2d 2167 irq_domain_activate_irq(irq_data, false);
4305df94 2168 legacy_pic->unmask(0);
1da177e4 2169 if (timer_irq_works()) {
49a66a0b 2170 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
4aae0702 2171 goto out;
1da177e4
LT
2172 }
2173 /*
2174 * Cleanup, just in case ...
2175 */
f72dccac 2176 local_irq_disable();
4305df94 2177 legacy_pic->mask(0);
fcfd636a 2178 clear_IO_APIC_pin(apic2, pin2);
49a66a0b 2179 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
1da177e4 2180 }
1da177e4 2181
49a66a0b
MR
2182 apic_printk(APIC_QUIET, KERN_INFO
2183 "...trying to set up timer as Virtual Wire IRQ...\n");
1da177e4 2184
60c69948 2185 lapic_register_intr(0);
497c9a19 2186 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
4305df94 2187 legacy_pic->unmask(0);
1da177e4
LT
2188
2189 if (timer_irq_works()) {
49a66a0b 2190 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 2191 goto out;
1da177e4 2192 }
f72dccac 2193 local_irq_disable();
4305df94 2194 legacy_pic->mask(0);
497c9a19 2195 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
49a66a0b 2196 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
1da177e4 2197
49a66a0b
MR
2198 apic_printk(APIC_QUIET, KERN_INFO
2199 "...trying to set up timer as ExtINT IRQ...\n");
1da177e4 2200
b81bb373
JP
2201 legacy_pic->init(0);
2202 legacy_pic->make_irq(0);
593f4a78 2203 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1da177e4
LT
2204
2205 unlock_ExtINT_logic();
2206
2207 if (timer_irq_works()) {
49a66a0b 2208 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
4aae0702 2209 goto out;
1da177e4 2210 }
f72dccac 2211 local_irq_disable();
49a66a0b 2212 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
2ca5b404 2213 if (apic_is_x2apic_enabled())
fb209bd8
YL
2214 apic_printk(APIC_QUIET, KERN_INFO
2215 "Perhaps problem with the pre-enabled x2apic mode\n"
2216 "Try booting with x2apic and interrupt-remapping disabled in the bios.\n");
1da177e4 2217 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
49a66a0b 2218 "report. Then try booting with the 'noapic' option.\n");
4aae0702
IM
2219out:
2220 local_irq_restore(flags);
1da177e4
LT
2221}
2222
2223/*
af174783
MR
2224 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2225 * to devices. However there may be an I/O APIC pin available for
2226 * this interrupt regardless. The pin may be left unconnected, but
2227 * typically it will be reused as an ExtINT cascade interrupt for
2228 * the master 8259A. In the MPS case such a pin will normally be
2229 * reported as an ExtINT interrupt in the MP table. With ACPI
2230 * there is no provision for ExtINT interrupts, and in the absence
2231 * of an override it would be treated as an ordinary ISA I/O APIC
2232 * interrupt, that is edge-triggered and unmasked by default. We
2233 * used to do this, but it caused problems on some systems because
2234 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2235 * the same ExtINT cascade interrupt to drive the local APIC of the
2236 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2237 * the I/O APIC in all cases now. No actual device should request
2238 * it anyway. --macro
1da177e4 2239 */
bc07844a 2240#define PIC_IRQS (1UL << PIC_CASCADE_IR)
1da177e4 2241
44767bfa
JL
2242static int mp_irqdomain_create(int ioapic)
2243{
d32932d0
JL
2244 struct irq_alloc_info info;
2245 struct irq_domain *parent;
44767bfa
JL
2246 int hwirqs = mp_ioapic_pin_count(ioapic);
2247 struct ioapic *ip = &ioapics[ioapic];
2248 struct ioapic_domain_cfg *cfg = &ip->irqdomain_cfg;
2249 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(ioapic);
1b604745
TG
2250 struct fwnode_handle *fn;
2251 char *name = "IO-APIC";
44767bfa
JL
2252
2253 if (cfg->type == IOAPIC_DOMAIN_INVALID)
2254 return 0;
2255
d32932d0
JL
2256 init_irq_alloc_info(&info, NULL);
2257 info.type = X86_IRQ_ALLOC_TYPE_IOAPIC;
2258 info.ioapic_id = mpc_ioapic_id(ioapic);
2259 parent = irq_remapping_get_ir_irq_domain(&info);
2260 if (!parent)
2261 parent = x86_vector_domain;
1b604745
TG
2262 else
2263 name = "IO-APIC-IR";
2264
2265 /* Handle device tree enumerated APICs proper */
2266 if (cfg->dev) {
2267 fn = of_node_to_fwnode(cfg->dev);
2268 } else {
2269 fn = irq_domain_alloc_named_id_fwnode(name, ioapic);
2270 if (!fn)
2271 return -ENOMEM;
2272 }
2273
2274 ip->irqdomain = irq_domain_create_linear(fn, hwirqs, cfg->ops,
2275 (void *)(long)ioapic);
2276
2277 /* Release fw handle if it was allocated above */
2278 if (!cfg->dev)
2279 irq_domain_free_fwnode(fn);
d32932d0 2280
b75e818f 2281 if (!ip->irqdomain)
44767bfa 2282 return -ENOMEM;
b75e818f
JL
2283
2284 ip->irqdomain->parent = parent;
44767bfa
JL
2285
2286 if (cfg->type == IOAPIC_DOMAIN_LEGACY ||
2287 cfg->type == IOAPIC_DOMAIN_STRICT)
2288 ioapic_dynirq_base = max(ioapic_dynirq_base,
2289 gsi_cfg->gsi_end + 1);
2290
44767bfa
JL
2291 return 0;
2292}
2293
15516a3b
JL
2294static void ioapic_destroy_irqdomain(int idx)
2295{
2296 if (ioapics[idx].irqdomain) {
2297 irq_domain_remove(ioapics[idx].irqdomain);
2298 ioapics[idx].irqdomain = NULL;
2299 }
15516a3b
JL
2300}
2301
1da177e4
LT
2302void __init setup_IO_APIC(void)
2303{
44767bfa 2304 int ioapic;
54168ed7 2305
a46f5c89
TG
2306 if (skip_ioapic_setup || !nr_ioapics)
2307 return;
2308
95d76acc 2309 io_apic_irqs = nr_legacy_irqs() ? ~PIC_IRQS : ~0UL;
1da177e4 2310
54168ed7 2311 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
44767bfa
JL
2312 for_each_ioapic(ioapic)
2313 BUG_ON(mp_irqdomain_create(ioapic));
2314
d6c88a50 2315 /*
54168ed7
IM
2316 * Set up IO-APIC IRQ routing.
2317 */
de934103
TG
2318 x86_init.mpparse.setup_ioapic_ids();
2319
1da177e4
LT
2320 sync_Arb_IDs();
2321 setup_IO_APIC_irqs();
2322 init_IO_APIC_traps();
95d76acc 2323 if (nr_legacy_irqs())
bc07844a 2324 check_timer();
b81975ea
JL
2325
2326 ioapic_initialized = 1;
1da177e4
LT
2327}
2328
6f50d45f 2329static void resume_ioapic_id(int ioapic_idx)
1da177e4 2330{
1da177e4
LT
2331 unsigned long flags;
2332 union IO_APIC_reg_00 reg_00;
36062448 2333
dade7716 2334 raw_spin_lock_irqsave(&ioapic_lock, flags);
6f50d45f
YL
2335 reg_00.raw = io_apic_read(ioapic_idx, 0);
2336 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx)) {
2337 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
2338 io_apic_write(ioapic_idx, 0, reg_00.raw);
1da177e4 2339 }
dade7716 2340 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
f3c6ea1b 2341}
1da177e4 2342
f3c6ea1b
RW
2343static void ioapic_resume(void)
2344{
6f50d45f 2345 int ioapic_idx;
f3c6ea1b 2346
f44d1692 2347 for_each_ioapic_reverse(ioapic_idx)
6f50d45f 2348 resume_ioapic_id(ioapic_idx);
15bac20b
SS
2349
2350 restore_ioapic_entries();
1da177e4
LT
2351}
2352
f3c6ea1b 2353static struct syscore_ops ioapic_syscore_ops = {
15bac20b 2354 .suspend = save_ioapic_entries,
1da177e4
LT
2355 .resume = ioapic_resume,
2356};
2357
f3c6ea1b 2358static int __init ioapic_init_ops(void)
1da177e4 2359{
f3c6ea1b
RW
2360 register_syscore_ops(&ioapic_syscore_ops);
2361
1da177e4
LT
2362 return 0;
2363}
2364
f3c6ea1b 2365device_initcall(ioapic_init_ops);
1da177e4 2366
67dc5e70 2367static int io_apic_get_redir_entries(int ioapic)
9d6a4d08
YL
2368{
2369 union IO_APIC_reg_01 reg_01;
2370 unsigned long flags;
2371
dade7716 2372 raw_spin_lock_irqsave(&ioapic_lock, flags);
9d6a4d08 2373 reg_01.raw = io_apic_read(ioapic, 1);
dade7716 2374 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
9d6a4d08 2375
4b6b19a1
EB
2376 /* The register returns the maximum index redir index
2377 * supported, which is one less than the total number of redir
2378 * entries.
2379 */
2380 return reg_01.bits.entries + 1;
9d6a4d08
YL
2381}
2382
62a08ae2
TG
2383unsigned int arch_dynirq_lower_bound(unsigned int from)
2384{
b81975ea
JL
2385 /*
2386 * dmar_alloc_hwirq() may be called before setup_IO_APIC(), so use
2387 * gsi_top if ioapic_dynirq_base hasn't been initialized yet.
2388 */
2389 return ioapic_initialized ? ioapic_dynirq_base : gsi_top;
62a08ae2
TG
2390}
2391
54168ed7 2392#ifdef CONFIG_X86_32
67dc5e70 2393static int io_apic_get_unique_id(int ioapic, int apic_id)
1da177e4
LT
2394{
2395 union IO_APIC_reg_00 reg_00;
2396 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
2397 physid_mask_t tmp;
2398 unsigned long flags;
2399 int i = 0;
2400
2401 /*
36062448
PC
2402 * The P4 platform supports up to 256 APIC IDs on two separate APIC
2403 * buses (one for LAPICs, one for IOAPICs), where predecessors only
1da177e4 2404 * supports up to 16 on one shared APIC bus.
36062448 2405 *
1da177e4
LT
2406 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
2407 * advantage of new APIC bus architecture.
2408 */
2409
2410 if (physids_empty(apic_id_map))
7abc0753 2411 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
1da177e4 2412
dade7716 2413 raw_spin_lock_irqsave(&ioapic_lock, flags);
1da177e4 2414 reg_00.raw = io_apic_read(ioapic, 0);
dade7716 2415 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
2416
2417 if (apic_id >= get_physical_broadcast()) {
2418 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
2419 "%d\n", ioapic, apic_id, reg_00.bits.ID);
2420 apic_id = reg_00.bits.ID;
2421 }
2422
2423 /*
36062448 2424 * Every APIC in a system must have a unique ID or we get lots of nice
1da177e4
LT
2425 * 'stuck on smp_invalidate_needed IPI wait' messages.
2426 */
7abc0753 2427 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
1da177e4
LT
2428
2429 for (i = 0; i < get_physical_broadcast(); i++) {
7abc0753 2430 if (!apic->check_apicid_used(&apic_id_map, i))
1da177e4
LT
2431 break;
2432 }
2433
2434 if (i == get_physical_broadcast())
2435 panic("Max apic_id exceeded!\n");
2436
2437 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
2438 "trying %d\n", ioapic, apic_id, i);
2439
2440 apic_id = i;
36062448 2441 }
1da177e4 2442
7abc0753 2443 apic->apicid_to_cpu_present(apic_id, &tmp);
1da177e4
LT
2444 physids_or(apic_id_map, apic_id_map, tmp);
2445
2446 if (reg_00.bits.ID != apic_id) {
2447 reg_00.bits.ID = apic_id;
2448
dade7716 2449 raw_spin_lock_irqsave(&ioapic_lock, flags);
1da177e4
LT
2450 io_apic_write(ioapic, 0, reg_00.raw);
2451 reg_00.raw = io_apic_read(ioapic, 0);
dade7716 2452 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
2453
2454 /* Sanity check */
6070f9ec 2455 if (reg_00.bits.ID != apic_id) {
c767a54b
JP
2456 pr_err("IOAPIC[%d]: Unable to change apic_id!\n",
2457 ioapic);
6070f9ec
AD
2458 return -1;
2459 }
1da177e4
LT
2460 }
2461
2462 apic_printk(APIC_VERBOSE, KERN_INFO
2463 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
2464
2465 return apic_id;
2466}
41098ffe 2467
67dc5e70 2468static u8 io_apic_unique_id(int idx, u8 id)
41098ffe
TG
2469{
2470 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
cff9ab2b 2471 !APIC_XAPIC(boot_cpu_apic_version))
5411dc4c 2472 return io_apic_get_unique_id(idx, id);
41098ffe
TG
2473 else
2474 return id;
2475}
2476#else
67dc5e70 2477static u8 io_apic_unique_id(int idx, u8 id)
41098ffe 2478{
5411dc4c 2479 union IO_APIC_reg_00 reg_00;
41098ffe 2480 DECLARE_BITMAP(used, 256);
5411dc4c
YL
2481 unsigned long flags;
2482 u8 new_id;
2483 int i;
41098ffe
TG
2484
2485 bitmap_zero(used, 256);
f44d1692 2486 for_each_ioapic(i)
d5371430 2487 __set_bit(mpc_ioapic_id(i), used);
5411dc4c
YL
2488
2489 /* Hand out the requested id if available */
41098ffe
TG
2490 if (!test_bit(id, used))
2491 return id;
5411dc4c
YL
2492
2493 /*
2494 * Read the current id from the ioapic and keep it if
2495 * available.
2496 */
2497 raw_spin_lock_irqsave(&ioapic_lock, flags);
2498 reg_00.raw = io_apic_read(idx, 0);
2499 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2500 new_id = reg_00.bits.ID;
2501 if (!test_bit(new_id, used)) {
2502 apic_printk(APIC_VERBOSE, KERN_INFO
2503 "IOAPIC[%d]: Using reg apic_id %d instead of %d\n",
2504 idx, new_id, id);
2505 return new_id;
2506 }
2507
2508 /*
2509 * Get the next free id and write it to the ioapic.
2510 */
2511 new_id = find_first_zero_bit(used, 256);
2512 reg_00.bits.ID = new_id;
2513 raw_spin_lock_irqsave(&ioapic_lock, flags);
2514 io_apic_write(idx, 0, reg_00.raw);
2515 reg_00.raw = io_apic_read(idx, 0);
2516 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2517 /* Sanity check */
2518 BUG_ON(reg_00.bits.ID != new_id);
2519
2520 return new_id;
41098ffe 2521}
58f892e0 2522#endif
1da177e4 2523
67dc5e70 2524static int io_apic_get_version(int ioapic)
1da177e4
LT
2525{
2526 union IO_APIC_reg_01 reg_01;
2527 unsigned long flags;
2528
dade7716 2529 raw_spin_lock_irqsave(&ioapic_lock, flags);
1da177e4 2530 reg_01.raw = io_apic_read(ioapic, 1);
dade7716 2531 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1da177e4
LT
2532
2533 return reg_01.bits.version;
2534}
2535
9a0a91bb 2536int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity)
61fd47e0 2537{
9a0a91bb 2538 int ioapic, pin, idx;
61fd47e0
SL
2539
2540 if (skip_ioapic_setup)
2541 return -1;
2542
9a0a91bb
EB
2543 ioapic = mp_find_ioapic(gsi);
2544 if (ioapic < 0)
61fd47e0
SL
2545 return -1;
2546
9a0a91bb
EB
2547 pin = mp_find_ioapic_pin(ioapic, gsi);
2548 if (pin < 0)
2549 return -1;
2550
2551 idx = find_irq_entry(ioapic, pin, mp_INT);
2552 if (idx < 0)
61fd47e0
SL
2553 return -1;
2554
9a0a91bb
EB
2555 *trigger = irq_trigger(idx);
2556 *polarity = irq_polarity(idx);
61fd47e0
SL
2557 return 0;
2558}
2559
497c9a19 2560/*
c1d1ee9a
TG
2561 * This function updates target affinity of IOAPIC interrupts to include
2562 * the CPUs which came online during SMP bringup.
497c9a19 2563 */
54168ed7
IM
2564#define IOAPIC_RESOURCE_NAME_SIZE 11
2565
2566static struct resource *ioapic_resources;
2567
f44d1692 2568static struct resource * __init ioapic_setup_resources(void)
54168ed7
IM
2569{
2570 unsigned long n;
2571 struct resource *res;
2572 char *mem;
4855531e 2573 int i;
54168ed7 2574
4855531e 2575 if (nr_ioapics == 0)
54168ed7
IM
2576 return NULL;
2577
2578 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4855531e 2579 n *= nr_ioapics;
54168ed7 2580
2a5bda5a 2581 mem = memblock_alloc(n, 0);
54168ed7
IM
2582 res = (void *)mem;
2583
4855531e 2584 mem += sizeof(struct resource) * nr_ioapics;
54168ed7 2585
f44d1692 2586 for_each_ioapic(i) {
4855531e
RW
2587 res[i].name = mem;
2588 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4343fe10 2589 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
ffc43836 2590 mem += IOAPIC_RESOURCE_NAME_SIZE;
4855531e 2591 ioapics[i].iomem_res = &res[i];
54168ed7
IM
2592 }
2593
2594 ioapic_resources = res;
2595
2596 return res;
2597}
54168ed7 2598
ca1b8862 2599void __init io_apic_init_mappings(void)
f3294a33
YL
2600{
2601 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
54168ed7 2602 struct resource *ioapic_res;
d6c88a50 2603 int i;
f3294a33 2604
f44d1692
JL
2605 ioapic_res = ioapic_setup_resources();
2606 for_each_ioapic(i) {
f3294a33 2607 if (smp_found_config) {
d5371430 2608 ioapic_phys = mpc_ioapic_addr(i);
54168ed7 2609#ifdef CONFIG_X86_32
d6c88a50
TG
2610 if (!ioapic_phys) {
2611 printk(KERN_ERR
2612 "WARNING: bogus zero IO-APIC "
2613 "address found in MPTABLE, "
2614 "disabling IO/APIC support!\n");
2615 smp_found_config = 0;
2616 skip_ioapic_setup = 1;
2617 goto fake_ioapic_page;
2618 }
54168ed7 2619#endif
f3294a33 2620 } else {
54168ed7 2621#ifdef CONFIG_X86_32
f3294a33 2622fake_ioapic_page:
54168ed7 2623#endif
15c3c114
MR
2624 ioapic_phys = (unsigned long)memblock_alloc(PAGE_SIZE,
2625 PAGE_SIZE);
f3294a33
YL
2626 ioapic_phys = __pa(ioapic_phys);
2627 }
2628 set_fixmap_nocache(idx, ioapic_phys);
e79c65a9
CG
2629 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
2630 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
2631 ioapic_phys);
f3294a33 2632 idx++;
54168ed7 2633
ffc43836 2634 ioapic_res->start = ioapic_phys;
e79c65a9 2635 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
ffc43836 2636 ioapic_res++;
f3294a33
YL
2637 }
2638}
2639
857fdc53 2640void __init ioapic_insert_resources(void)
54168ed7
IM
2641{
2642 int i;
2643 struct resource *r = ioapic_resources;
2644
2645 if (!r) {
857fdc53 2646 if (nr_ioapics > 0)
04c93ce4
BZ
2647 printk(KERN_ERR
2648 "IO APIC resources couldn't be allocated.\n");
857fdc53 2649 return;
54168ed7
IM
2650 }
2651
f44d1692 2652 for_each_ioapic(i) {
54168ed7
IM
2653 insert_resource(&iomem_resource, r);
2654 r++;
2655 }
54168ed7 2656}
2a4ab640 2657
eddb0c55 2658int mp_find_ioapic(u32 gsi)
2a4ab640 2659{
f44d1692 2660 int i;
2a4ab640 2661
678301ec
PB
2662 if (nr_ioapics == 0)
2663 return -1;
2664
2a4ab640 2665 /* Find the IOAPIC that manages this GSI. */
f44d1692 2666 for_each_ioapic(i) {
c040aaeb 2667 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(i);
f44d1692 2668 if (gsi >= gsi_cfg->gsi_base && gsi <= gsi_cfg->gsi_end)
2a4ab640
FT
2669 return i;
2670 }
54168ed7 2671
2a4ab640
FT
2672 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
2673 return -1;
2674}
2675
eddb0c55 2676int mp_find_ioapic_pin(int ioapic, u32 gsi)
2a4ab640 2677{
c040aaeb
SS
2678 struct mp_ioapic_gsi *gsi_cfg;
2679
f44d1692 2680 if (WARN_ON(ioapic < 0))
2a4ab640 2681 return -1;
c040aaeb
SS
2682
2683 gsi_cfg = mp_ioapic_gsi_routing(ioapic);
2684 if (WARN_ON(gsi > gsi_cfg->gsi_end))
2a4ab640
FT
2685 return -1;
2686
c040aaeb 2687 return gsi - gsi_cfg->gsi_base;
2a4ab640
FT
2688}
2689
67dc5e70 2690static int bad_ioapic_register(int idx)
73d63d03
SS
2691{
2692 union IO_APIC_reg_00 reg_00;
2693 union IO_APIC_reg_01 reg_01;
2694 union IO_APIC_reg_02 reg_02;
2695
2696 reg_00.raw = io_apic_read(idx, 0);
2697 reg_01.raw = io_apic_read(idx, 1);
2698 reg_02.raw = io_apic_read(idx, 2);
2699
2700 if (reg_00.raw == -1 && reg_01.raw == -1 && reg_02.raw == -1) {
2701 pr_warn("I/O APIC 0x%x registers return all ones, skipping!\n",
2702 mpc_ioapic_addr(idx));
2703 return 1;
2704 }
2705
2706 return 0;
2707}
2708
35ef9c94
JL
2709static int find_free_ioapic_entry(void)
2710{
7db298cb
JL
2711 int idx;
2712
2713 for (idx = 0; idx < MAX_IO_APICS; idx++)
2714 if (ioapics[idx].nr_registers == 0)
2715 return idx;
2716
2717 return MAX_IO_APICS;
35ef9c94
JL
2718}
2719
2720/**
2721 * mp_register_ioapic - Register an IOAPIC device
2722 * @id: hardware IOAPIC ID
2723 * @address: physical address of IOAPIC register area
2724 * @gsi_base: base of GSI associated with the IOAPIC
2725 * @cfg: configuration information for the IOAPIC
2726 */
2727int mp_register_ioapic(int id, u32 address, u32 gsi_base,
2728 struct ioapic_domain_cfg *cfg)
2a4ab640 2729{
7db298cb 2730 bool hotplug = !!ioapic_initialized;
c040aaeb 2731 struct mp_ioapic_gsi *gsi_cfg;
35ef9c94
JL
2732 int idx, ioapic, entries;
2733 u32 gsi_end;
2a4ab640 2734
35ef9c94
JL
2735 if (!address) {
2736 pr_warn("Bogus (zero) I/O APIC address found, skipping!\n");
2737 return -EINVAL;
2738 }
2739 for_each_ioapic(ioapic)
2740 if (ioapics[ioapic].mp_config.apicaddr == address) {
2741 pr_warn("address 0x%x conflicts with IOAPIC%d\n",
2742 address, ioapic);
2743 return -EEXIST;
2744 }
2a4ab640 2745
35ef9c94
JL
2746 idx = find_free_ioapic_entry();
2747 if (idx >= MAX_IO_APICS) {
2748 pr_warn("Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
2749 MAX_IO_APICS, idx);
2750 return -ENOSPC;
2751 }
2a4ab640 2752
d5371430
SS
2753 ioapics[idx].mp_config.type = MP_IOAPIC;
2754 ioapics[idx].mp_config.flags = MPC_APIC_USABLE;
2755 ioapics[idx].mp_config.apicaddr = address;
2a4ab640
FT
2756
2757 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
73d63d03
SS
2758 if (bad_ioapic_register(idx)) {
2759 clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
35ef9c94 2760 return -ENODEV;
73d63d03
SS
2761 }
2762
5411dc4c 2763 ioapics[idx].mp_config.apicid = io_apic_unique_id(idx, id);
d5371430 2764 ioapics[idx].mp_config.apicver = io_apic_get_version(idx);
2a4ab640
FT
2765
2766 /*
2767 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
2768 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
2769 */
7716a5c4 2770 entries = io_apic_get_redir_entries(idx);
35ef9c94
JL
2771 gsi_end = gsi_base + entries - 1;
2772 for_each_ioapic(ioapic) {
2773 gsi_cfg = mp_ioapic_gsi_routing(ioapic);
2774 if ((gsi_base >= gsi_cfg->gsi_base &&
2775 gsi_base <= gsi_cfg->gsi_end) ||
2776 (gsi_end >= gsi_cfg->gsi_base &&
2777 gsi_end <= gsi_cfg->gsi_end)) {
2778 pr_warn("GSI range [%u-%u] for new IOAPIC conflicts with GSI[%u-%u]\n",
2779 gsi_base, gsi_end,
2780 gsi_cfg->gsi_base, gsi_cfg->gsi_end);
2781 clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
2782 return -ENOSPC;
2783 }
2784 }
c040aaeb
SS
2785 gsi_cfg = mp_ioapic_gsi_routing(idx);
2786 gsi_cfg->gsi_base = gsi_base;
35ef9c94 2787 gsi_cfg->gsi_end = gsi_end;
7716a5c4 2788
35ef9c94
JL
2789 ioapics[idx].irqdomain = NULL;
2790 ioapics[idx].irqdomain_cfg = *cfg;
2a4ab640 2791
7db298cb
JL
2792 /*
2793 * If mp_register_ioapic() is called during early boot stage when
2794 * walking ACPI/SFI/DT tables, it's too early to create irqdomain,
2795 * we are still using bootmem allocator. So delay it to setup_IO_APIC().
2796 */
2797 if (hotplug) {
2798 if (mp_irqdomain_create(idx)) {
2799 clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
2800 return -ENOMEM;
2801 }
2802 alloc_ioapic_saved_registers(idx);
2803 }
2804
c040aaeb
SS
2805 if (gsi_cfg->gsi_end >= gsi_top)
2806 gsi_top = gsi_cfg->gsi_end + 1;
35ef9c94
JL
2807 if (nr_ioapics <= idx)
2808 nr_ioapics = idx + 1;
2809
2810 /* Set nr_registers to mark entry present */
2811 ioapics[idx].nr_registers = entries;
2a4ab640 2812
73d63d03
SS
2813 pr_info("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, GSI %d-%d\n",
2814 idx, mpc_ioapic_id(idx),
2815 mpc_ioapic_ver(idx), mpc_ioapic_addr(idx),
2816 gsi_cfg->gsi_base, gsi_cfg->gsi_end);
2a4ab640 2817
35ef9c94 2818 return 0;
2a4ab640 2819}
05ddafb1 2820
15516a3b
JL
2821int mp_unregister_ioapic(u32 gsi_base)
2822{
2823 int ioapic, pin;
2824 int found = 0;
15516a3b
JL
2825
2826 for_each_ioapic(ioapic)
2827 if (ioapics[ioapic].gsi_config.gsi_base == gsi_base) {
2828 found = 1;
2829 break;
2830 }
2831 if (!found) {
2832 pr_warn("can't find IOAPIC for GSI %d\n", gsi_base);
2833 return -ENODEV;
2834 }
2835
2836 for_each_pin(ioapic, pin) {
d32932d0
JL
2837 u32 gsi = mp_pin_to_gsi(ioapic, pin);
2838 int irq = mp_map_gsi_to_irq(gsi, 0, NULL);
2839 struct mp_chip_data *data;
2840
2841 if (irq >= 0) {
2842 data = irq_get_chip_data(irq);
2843 if (data && data->count) {
2844 pr_warn("pin%d on IOAPIC%d is still in use.\n",
2845 pin, ioapic);
2846 return -EBUSY;
2847 }
15516a3b
JL
2848 }
2849 }
2850
2851 /* Mark entry not present */
2852 ioapics[ioapic].nr_registers = 0;
2853 ioapic_destroy_irqdomain(ioapic);
2854 free_ioapic_saved_registers(ioapic);
2855 if (ioapics[ioapic].iomem_res)
2856 release_resource(ioapics[ioapic].iomem_res);
2857 clear_fixmap(FIX_IO_APIC_BASE_0 + ioapic);
2858 memset(&ioapics[ioapic], 0, sizeof(ioapics[ioapic]));
2859
2860 return 0;
2861}
2862
e89900c9
JL
2863int mp_ioapic_registered(u32 gsi_base)
2864{
2865 int ioapic;
2866
2867 for_each_ioapic(ioapic)
2868 if (ioapics[ioapic].gsi_config.gsi_base == gsi_base)
2869 return 1;
2870
2871 return 0;
2872}
2873
49c7e600 2874static void mp_irqdomain_get_attr(u32 gsi, struct mp_chip_data *data,
5ad274d4 2875 struct irq_alloc_info *info)
49c7e600
JL
2876{
2877 if (info && info->ioapic_valid) {
2878 data->trigger = info->ioapic_trigger;
2879 data->polarity = info->ioapic_polarity;
2880 } else if (acpi_get_override_irq(gsi, &data->trigger,
2881 &data->polarity) < 0) {
335efdf5
TG
2882 /* PCI interrupts are always active low level triggered. */
2883 data->trigger = IOAPIC_LEVEL;
2884 data->polarity = IOAPIC_POL_LOW;
49c7e600
JL
2885 }
2886}
2887
2888static void mp_setup_entry(struct irq_cfg *cfg, struct mp_chip_data *data,
2889 struct IO_APIC_route_entry *entry)
2890{
2891 memset(entry, 0, sizeof(*entry));
2892 entry->delivery_mode = apic->irq_delivery_mode;
2893 entry->dest_mode = apic->irq_dest_mode;
2894 entry->dest = cfg->dest_apicid;
2895 entry->vector = cfg->vector;
49c7e600
JL
2896 entry->trigger = data->trigger;
2897 entry->polarity = data->polarity;
2898 /*
335efdf5
TG
2899 * Mask level triggered irqs. Edge triggered irqs are masked
2900 * by the irq core code in case they fire.
49c7e600 2901 */
335efdf5
TG
2902 if (data->trigger == IOAPIC_LEVEL)
2903 entry->mask = IOAPIC_MASKED;
2904 else
2905 entry->mask = IOAPIC_UNMASKED;
49c7e600
JL
2906}
2907
2908int mp_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
2909 unsigned int nr_irqs, void *arg)
2910{
2911 int ret, ioapic, pin;
2912 struct irq_cfg *cfg;
2913 struct irq_data *irq_data;
2914 struct mp_chip_data *data;
2915 struct irq_alloc_info *info = arg;
c0ff971e 2916 unsigned long flags;
49c7e600
JL
2917
2918 if (!info || nr_irqs > 1)
2919 return -EINVAL;
2920 irq_data = irq_domain_get_irq_data(domain, virq);
2921 if (!irq_data)
2922 return -EINVAL;
2923
2924 ioapic = mp_irqdomain_ioapic_idx(domain);
2925 pin = info->ioapic_pin;
2926 if (irq_find_mapping(domain, (irq_hw_number_t)pin) > 0)
2927 return -EEXIST;
2928
2929 data = kzalloc(sizeof(*data), GFP_KERNEL);
2930 if (!data)
2931 return -ENOMEM;
2932
2933 info->ioapic_entry = &data->entry;
2934 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, info);
2935 if (ret < 0) {
2936 kfree(data);
2937 return ret;
2938 }
2939
4467715a 2940 INIT_LIST_HEAD(&data->irq_2_pin);
49c7e600 2941 irq_data->hwirq = info->ioapic_pin;
d32932d0
JL
2942 irq_data->chip = (domain->parent == x86_vector_domain) ?
2943 &ioapic_chip : &ioapic_ir_chip;
49c7e600
JL
2944 irq_data->chip_data = data;
2945 mp_irqdomain_get_attr(mp_pin_to_gsi(ioapic, pin), data, info);
2946
2947 cfg = irqd_cfg(irq_data);
4467715a 2948 add_pin_to_irq_node(data, ioapic_alloc_attr_node(info), ioapic, pin);
c0ff971e
VK
2949
2950 local_irq_save(flags);
49c7e600
JL
2951 if (info->ioapic_entry)
2952 mp_setup_entry(cfg, data, info->ioapic_entry);
2953 mp_register_handler(virq, data->trigger);
2954 if (virq < nr_legacy_irqs())
2955 legacy_pic->mask(virq);
c0ff971e 2956 local_irq_restore(flags);
49c7e600
JL
2957
2958 apic_printk(APIC_VERBOSE, KERN_DEBUG
2959 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i Dest:%d)\n",
2960 ioapic, mpc_ioapic_id(ioapic), pin, cfg->vector,
2961 virq, data->trigger, data->polarity, cfg->dest_apicid);
2962
2963 return 0;
2964}
2965
2966void mp_irqdomain_free(struct irq_domain *domain, unsigned int virq,
2967 unsigned int nr_irqs)
2968{
49c7e600 2969 struct irq_data *irq_data;
4467715a 2970 struct mp_chip_data *data;
49c7e600
JL
2971
2972 BUG_ON(nr_irqs != 1);
2973 irq_data = irq_domain_get_irq_data(domain, virq);
2974 if (irq_data && irq_data->chip_data) {
4467715a
JL
2975 data = irq_data->chip_data;
2976 __remove_pin_from_irq(data, mp_irqdomain_ioapic_idx(domain),
49c7e600 2977 (int)irq_data->hwirq);
4467715a 2978 WARN_ON(!list_empty(&data->irq_2_pin));
49c7e600
JL
2979 kfree(irq_data->chip_data);
2980 }
2981 irq_domain_free_irqs_top(domain, virq, nr_irqs);
2982}
2983
72491643 2984int mp_irqdomain_activate(struct irq_domain *domain,
702cb0a0 2985 struct irq_data *irq_data, bool reserve)
49c7e600
JL
2986{
2987 unsigned long flags;
49c7e600
JL
2988
2989 raw_spin_lock_irqsave(&ioapic_lock, flags);
90ad9e2d 2990 ioapic_configure_entry(irq_data);
49c7e600 2991 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
72491643 2992 return 0;
49c7e600
JL
2993}
2994
2995void mp_irqdomain_deactivate(struct irq_domain *domain,
2996 struct irq_data *irq_data)
2997{
2998 /* It won't be called for IRQ with multiple IOAPIC pins associated */
2999 ioapic_mask_entry(mp_irqdomain_ioapic_idx(domain),
3000 (int)irq_data->hwirq);
3001}
3002
49c7e600
JL
3003int mp_irqdomain_ioapic_idx(struct irq_domain *domain)
3004{
3005 return (int)(long)domain->host_data;
3006}
f7a0c786
TG
3007
3008const struct irq_domain_ops mp_ioapic_irqdomain_ops = {
3009 .alloc = mp_irqdomain_alloc,
3010 .free = mp_irqdomain_free,
3011 .activate = mp_irqdomain_activate,
3012 .deactivate = mp_irqdomain_deactivate,
3013};