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