blob: 3c31fa98af6dcb23a9298fae4c0ea29495167d0f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010033#include <linux/syscore_ops.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070040#ifdef CONFIG_ACPI
41#include <acpi/acpi_bus.h>
42#endif
43#include <linux/bootmem.h>
44#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070045#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070046
Yinghai Lud4057bd2008-08-19 20:50:38 -070047#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/io.h>
49#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053050#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070052#include <asm/proto.h>
53#include <asm/acpi.h>
54#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070056#include <asm/i8259.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053062#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Ingo Molnar7b6aa332009-02-17 13:58:15 +010064#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010066#define __apicdebuginit(type) static type __init
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +040067#define for_each_irq_pin(entry, head) \
68 for (entry = head; entry; entry = entry->next)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020071 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int sis_apic_bug = -1;
75
Thomas Gleixnerdade7712009-07-25 18:39:36 +020076static DEFINE_RAW_SPINLOCK(ioapic_lock);
77static DEFINE_RAW_SPINLOCK(vector_lock);
Yinghai Luefa25592008-08-19 20:50:36 -070078
Suresh Siddhab69c6c32011-05-18 16:31:35 -070079static struct ioapic {
80 /*
81 * # of IRQ routing registers
82 */
83 int nr_registers;
Suresh Siddha57a6f742011-05-18 16:31:36 -070084 /*
85 * Saved state during suspend/resume, or while enabling intr-remap.
86 */
87 struct IO_APIC_route_entry *saved_registers;
Suresh Siddhad5371432011-05-18 16:31:37 -070088 /* I/O APIC config */
89 struct mpc_ioapic mp_config;
Suresh Siddhac040aae2011-05-18 16:31:38 -070090 /* IO APIC gsi routing info */
91 struct mp_ioapic_gsi gsi_config;
Suresh Siddha8f18c972011-05-18 16:31:39 -070092 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
Suresh Siddhab69c6c32011-05-18 16:31:35 -070093} ioapics[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Yinghai Lu6f50d452011-10-12 00:33:48 -070095#define mpc_ioapic_ver(ioapic_idx) ioapics[ioapic_idx].mp_config.apicver
Suresh Siddhad5371432011-05-18 16:31:37 -070096
Yinghai Lu6f50d452011-10-12 00:33:48 -070097int mpc_ioapic_id(int ioapic_idx)
Suresh Siddhad5371432011-05-18 16:31:37 -070098{
Yinghai Lu6f50d452011-10-12 00:33:48 -070099 return ioapics[ioapic_idx].mp_config.apicid;
Suresh Siddhad5371432011-05-18 16:31:37 -0700100}
101
Yinghai Lu6f50d452011-10-12 00:33:48 -0700102unsigned int mpc_ioapic_addr(int ioapic_idx)
Suresh Siddhad5371432011-05-18 16:31:37 -0700103{
Yinghai Lu6f50d452011-10-12 00:33:48 -0700104 return ioapics[ioapic_idx].mp_config.apicaddr;
Suresh Siddhad5371432011-05-18 16:31:37 -0700105}
106
Yinghai Lu6f50d452011-10-12 00:33:48 -0700107struct mp_ioapic_gsi *mp_ioapic_gsi_routing(int ioapic_idx)
Suresh Siddhac040aae2011-05-18 16:31:38 -0700108{
Yinghai Lu6f50d452011-10-12 00:33:48 -0700109 return &ioapics[ioapic_idx].gsi_config;
Suresh Siddhac040aae2011-05-18 16:31:38 -0700110}
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +0400111
Suresh Siddhac040aae2011-05-18 16:31:38 -0700112int nr_ioapics;
Feng Tang2a4ab642009-07-07 23:01:15 -0400113
Eric W. Biedermana4384df2010-06-08 11:44:32 -0700114/* The one past the highest gsi number used */
115u32 gsi_top;
Eric W. Biederman57773722010-03-30 01:07:10 -0700116
Alexey Starikovskiy584f7342008-04-04 23:41:32 +0400117/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530118struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +0400119
120/* # of MP IRQ source entries */
121int mp_irq_entries;
122
Thomas Gleixnerbc078442009-08-29 18:09:57 +0200123/* GSI interrupts */
124static int nr_irqs_gsi = NR_IRQS_LEGACY;
125
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +0400126#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
127int mp_bus_id_to_type[MAX_MP_BUSSES];
128#endif
129
130DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
131
Yinghai Luefa25592008-08-19 20:50:36 -0700132int skip_ioapic_setup;
133
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100134/**
135 * disable_ioapic_support() - disables ioapic support at runtime
136 */
137void disable_ioapic_support(void)
Ingo Molnar65a4e572009-01-31 03:36:17 +0100138{
139#ifdef CONFIG_PCI
140 noioapicquirk = 1;
141 noioapicreroute = -1;
142#endif
143 skip_ioapic_setup = 1;
144}
145
Ingo Molnar54168ed2008-08-20 09:07:45 +0200146static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700147{
148 /* disable IO-APIC */
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100149 disable_ioapic_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700150 return 0;
151}
152early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200153
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +0200154static int io_apic_setup_irq_pin(unsigned int irq, int node,
155 struct io_apic_irq_attr *attr);
Thomas Gleixner710dcda2011-02-23 17:47:41 +0100156
Feng Tang2d8009b2010-11-19 11:33:35 +0800157/* Will be called in mpparse/acpi/sfi codes for saving IRQ info */
158void mp_save_irq(struct mpc_intsrc *m)
159{
160 int i;
161
162 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
163 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
164 m->irqtype, m->irqflag & 3, (m->irqflag >> 2) & 3, m->srcbus,
165 m->srcbusirq, m->dstapic, m->dstirq);
166
167 for (i = 0; i < mp_irq_entries; i++) {
Feng Tang0e3fa132010-12-08 15:18:57 +0800168 if (!memcmp(&mp_irqs[i], m, sizeof(*m)))
Feng Tang2d8009b2010-11-19 11:33:35 +0800169 return;
170 }
171
Feng Tang0e3fa132010-12-08 15:18:57 +0800172 memcpy(&mp_irqs[mp_irq_entries], m, sizeof(*m));
Feng Tang2d8009b2010-11-19 11:33:35 +0800173 if (++mp_irq_entries == MAX_IRQ_SOURCES)
174 panic("Max # of irq sources exceeded!!\n");
175}
176
Yinghai Lu0f978f42008-08-19 20:50:26 -0700177struct irq_pin_list {
178 int apic, pin;
179 struct irq_pin_list *next;
180};
Yinghai Lu301e6192008-08-19 20:50:02 -0700181
Thomas Gleixner7e495522010-09-28 23:31:50 +0200182static struct irq_pin_list *alloc_irq_pin_list(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700183{
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200184 return kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700185}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Feng Tang2d8009b2010-11-19 11:33:35 +0800187
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800188/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
Suresh Siddha97943392010-01-19 12:20:54 -0800189static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800190
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800191int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800192{
193 struct irq_cfg *cfg;
Thomas Gleixner60c69942010-09-28 17:28:38 +0200194 int count, node, i;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800195
Jacob Pan1f912332010-02-05 04:06:56 -0800196 if (!legacy_pic->nr_legacy_irqs) {
197 nr_irqs_gsi = 0;
198 io_apic_irqs = ~0UL;
199 }
200
Suresh Siddha4c791852011-05-18 16:31:32 -0700201 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddha57a6f742011-05-18 16:31:36 -0700202 ioapics[i].saved_registers =
Suresh Siddha4c791852011-05-18 16:31:32 -0700203 kzalloc(sizeof(struct IO_APIC_route_entry) *
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700204 ioapics[i].nr_registers, GFP_KERNEL);
Suresh Siddha57a6f742011-05-18 16:31:36 -0700205 if (!ioapics[i].saved_registers)
Suresh Siddha4c791852011-05-18 16:31:32 -0700206 pr_err("IOAPIC %d: suspend/resume impossible!\n", i);
207 }
208
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800209 cfg = irq_cfgx;
210 count = ARRAY_SIZE(irq_cfgx);
Robert Richterf6e94562010-07-21 19:03:58 +0200211 node = cpu_to_node(0);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800212
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +0200213 /* Make sure the legacy interrupts are marked in the bitmap */
214 irq_reserve_irqs(0, legacy_pic->nr_legacy_irqs);
215
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800216 for (i = 0; i < count; i++) {
Thomas Gleixner2c778652011-03-12 12:20:43 +0100217 irq_set_chip_data(i, &cfg[i]);
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200218 zalloc_cpumask_var_node(&cfg[i].domain, GFP_KERNEL, node);
219 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_KERNEL, node);
Suresh Siddha97943392010-01-19 12:20:54 -0800220 /*
221 * For legacy IRQ's, start with assigning irq0 to irq15 to
222 * IRQ0_VECTOR to IRQ15_VECTOR on cpu 0.
223 */
H. Peter Anvin54b56172010-02-22 16:25:18 -0800224 if (i < legacy_pic->nr_legacy_irqs) {
Suresh Siddha97943392010-01-19 12:20:54 -0800225 cfg[i].vector = IRQ0_VECTOR + i;
226 cpumask_set_cpu(0, cfg[i].domain);
227 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800228 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800229
230 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800231}
232
Thomas Gleixner48b26502010-09-30 11:43:08 +0200233static struct irq_cfg *irq_cfg(unsigned int irq)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800234{
Thomas Gleixner2c778652011-03-12 12:20:43 +0100235 return irq_get_chip_data(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800236}
237
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200238static struct irq_cfg *alloc_irq_cfg(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800239{
240 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800241
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200242 cfg = kzalloc_node(sizeof(*cfg), GFP_KERNEL, node);
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200243 if (!cfg)
244 return NULL;
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200245 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_KERNEL, node))
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200246 goto out_cfg;
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200247 if (!zalloc_cpumask_var_node(&cfg->old_domain, GFP_KERNEL, node))
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200248 goto out_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800249 return cfg;
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200250out_domain:
251 free_cpumask_var(cfg->domain);
252out_cfg:
253 kfree(cfg);
254 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800255}
256
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200257static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg)
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200258{
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +0200259 if (!cfg)
260 return;
Thomas Gleixner2c778652011-03-12 12:20:43 +0100261 irq_set_chip_data(at, NULL);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200262 free_cpumask_var(cfg->domain);
263 free_cpumask_var(cfg->old_domain);
264 kfree(cfg);
265}
266
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200267static struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node)
268{
269 int res = irq_alloc_desc_at(at, node);
270 struct irq_cfg *cfg;
271
272 if (res < 0) {
273 if (res != -EEXIST)
274 return NULL;
Thomas Gleixner2c778652011-03-12 12:20:43 +0100275 cfg = irq_get_chip_data(at);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200276 if (cfg)
277 return cfg;
278 }
279
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200280 cfg = alloc_irq_cfg(at, node);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200281 if (cfg)
Thomas Gleixner2c778652011-03-12 12:20:43 +0100282 irq_set_chip_data(at, cfg);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200283 else
284 irq_free_desc(at);
285 return cfg;
286}
287
288static int alloc_irq_from(unsigned int from, int node)
289{
290 return irq_alloc_desc_from(from, node);
291}
292
293static void free_irq_at(unsigned int at, struct irq_cfg *cfg)
294{
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200295 free_irq_cfg(at, cfg);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200296 irq_free_desc(at);
297}
298
Linus Torvalds130fe052006-11-01 09:11:00 -0800299struct io_apic {
300 unsigned int index;
301 unsigned int unused[3];
302 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700303 unsigned int unused2[11];
304 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800305};
306
307static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
308{
309 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Suresh Siddhad5371432011-05-18 16:31:37 -0700310 + (mpc_ioapic_addr(idx) & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800311}
312
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700313static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
314{
315 struct io_apic __iomem *io_apic = io_apic_base(apic);
316 writel(vector, &io_apic->eoi);
317}
318
Linus Torvalds130fe052006-11-01 09:11:00 -0800319static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
320{
321 struct io_apic __iomem *io_apic = io_apic_base(apic);
322 writel(reg, &io_apic->index);
323 return readl(&io_apic->data);
324}
325
326static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
327{
328 struct io_apic __iomem *io_apic = io_apic_base(apic);
329 writel(reg, &io_apic->index);
330 writel(value, &io_apic->data);
331}
332
333/*
334 * Re-write a value: to be used for read-modify-write
335 * cycles where the read already set up the index register.
336 *
337 * Older SiS APIC requires we rewrite the index register
338 */
339static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
340{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200341 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200342
343 if (sis_apic_bug)
344 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800345 writel(value, &io_apic->data);
346}
347
Yinghai Lu3145e942008-12-05 18:58:34 -0800348static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700349{
350 struct irq_pin_list *entry;
351 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700352
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200353 raw_spin_lock_irqsave(&ioapic_lock, flags);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400354 for_each_irq_pin(entry, cfg->irq_2_pin) {
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700355 unsigned int reg;
356 int pin;
357
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700358 pin = entry->pin;
359 reg = io_apic_read(entry->apic, 0x10 + pin*2);
360 /* Is the remote IRR bit set? */
361 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200362 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700363 return true;
364 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700365 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200366 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700367
368 return false;
369}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700370
Andi Kleencf4c6a22006-09-26 10:52:30 +0200371union entry_union {
372 struct { u32 w1, w2; };
373 struct IO_APIC_route_entry entry;
374};
375
Suresh Siddhae57253a2011-08-25 12:01:12 -0700376static struct IO_APIC_route_entry __ioapic_read_entry(int apic, int pin)
377{
378 union entry_union eu;
379
380 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
381 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
382 return eu.entry;
383}
384
Andi Kleencf4c6a22006-09-26 10:52:30 +0200385static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
386{
387 union entry_union eu;
388 unsigned long flags;
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200389 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddhae57253a2011-08-25 12:01:12 -0700390 eu.entry = __ioapic_read_entry(apic, pin);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200391 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200392 return eu.entry;
393}
394
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800395/*
396 * When we write a new IO APIC routing entry, we need to write the high
397 * word first! If the mask bit in the low word is clear, we will enable
398 * the interrupt, and we need to make sure the entry is fully populated
399 * before that happens.
400 */
Andi Kleend15512f2006-12-07 02:14:07 +0100401static void
402__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
403{
Figo.zhang50a8d4d2009-06-17 22:25:20 +0800404 union entry_union eu = {{0, 0}};
405
Andi Kleend15512f2006-12-07 02:14:07 +0100406 eu.entry = e;
407 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
408 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
409}
410
Thomas Gleixner1a8ce7f2010-10-04 21:08:56 +0200411static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200412{
413 unsigned long flags;
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200414 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100415 __ioapic_write_entry(apic, pin, e);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200416 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800417}
418
419/*
420 * When we mask an IO APIC routing entry, we need to write the low
421 * word first, in order to set the mask bit before we change the
422 * high bits!
423 */
424static void ioapic_mask_entry(int apic, int pin)
425{
426 unsigned long flags;
427 union entry_union eu = { .entry.mask = 1 };
428
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200429 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200430 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
431 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200432 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/*
436 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
437 * shared ISA-space IRQs, so we have to support them. We are super
438 * fast in the common case, and fast for shared ISA-space IRQs.
439 */
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400440static int
Thomas Gleixner7e495522010-09-28 23:31:50 +0200441__add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400443 struct irq_pin_list **last, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400445 /* don't allow duplicates */
446 last = &cfg->irq_2_pin;
447 for_each_irq_pin(entry, cfg->irq_2_pin) {
Yinghai Lu0f978f42008-08-19 20:50:26 -0700448 if (entry->apic == apic && entry->pin == pin)
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400449 return 0;
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400450 last = &entry->next;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700451 }
452
Thomas Gleixner7e495522010-09-28 23:31:50 +0200453 entry = alloc_irq_pin_list(node);
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400454 if (!entry) {
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400455 printk(KERN_ERR "can not alloc irq_pin_list (%d,%d,%d)\n",
456 node, apic, pin);
457 return -ENOMEM;
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 entry->apic = apic;
460 entry->pin = pin;
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700461
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400462 *last = entry;
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400463 return 0;
464}
465
466static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
467{
Thomas Gleixner7e495522010-09-28 23:31:50 +0200468 if (__add_pin_to_irq_node(cfg, node, apic, pin))
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400469 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472/*
473 * Reroute an IRQ to a different pin.
474 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700475static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700476 int oldapic, int oldpin,
477 int newapic, int newpin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Jeremy Fitzhardinge535b6422009-06-08 03:29:26 -0700479 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400481 for_each_irq_pin(entry, cfg->irq_2_pin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (entry->apic == oldapic && entry->pin == oldpin) {
483 entry->apic = newapic;
484 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700485 /* every one is different, right? */
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700486 return;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700489
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700490 /* old apic/pin didn't exist, so just add new ones */
491 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800494static void __io_apic_modify_irq(struct irq_pin_list *entry,
495 int mask_and, int mask_or,
496 void (*final)(struct irq_pin_list *entry))
497{
498 unsigned int reg, pin;
499
500 pin = entry->pin;
501 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
502 reg &= mask_and;
503 reg |= mask_or;
504 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
505 if (final)
506 final(entry);
507}
508
Jeremy Fitzhardinge2f210de2009-06-08 02:55:22 -0700509static void io_apic_modify_irq(struct irq_cfg *cfg,
510 int mask_and, int mask_or,
511 void (*final)(struct irq_pin_list *entry))
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400512{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400513 struct irq_pin_list *entry;
514
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800515 for_each_irq_pin(entry, cfg->irq_2_pin)
516 __io_apic_modify_irq(entry, mask_and, mask_or, final);
517}
518
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530519static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700520{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400521 /*
522 * Synchronize the IO-APIC and the CPU by doing
523 * a dummy read from the IO-APIC
524 */
525 struct io_apic __iomem *io_apic;
526 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700527 readl(&io_apic->data);
528}
529
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200530static void mask_ioapic(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400531{
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200532 unsigned long flags;
533
534 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800535 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200536 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Thomas Gleixner90297c52010-09-28 16:03:54 +0200539static void mask_ioapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Thomas Gleixner90297c52010-09-28 16:03:54 +0200541 mask_ioapic(data->chip_data);
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200542}
543
544static void __unmask_ioapic(struct irq_cfg *cfg)
545{
546 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
547}
548
549static void unmask_ioapic(struct irq_cfg *cfg)
550{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 unsigned long flags;
552
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200553 raw_spin_lock_irqsave(&ioapic_lock, flags);
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200554 __unmask_ioapic(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200555 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Thomas Gleixner90297c52010-09-28 16:03:54 +0200558static void unmask_ioapic_irq(struct irq_data *data)
Yinghai Lu3145e942008-12-05 18:58:34 -0800559{
Thomas Gleixner90297c52010-09-28 16:03:54 +0200560 unmask_ioapic(data->chip_data);
Yinghai Lu3145e942008-12-05 18:58:34 -0800561}
562
Suresh Siddhac0205702011-08-25 12:01:13 -0700563/*
564 * IO-APIC versions below 0x20 don't support EOI register.
565 * For the record, here is the information about various versions:
566 * 0Xh 82489DX
567 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
568 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
569 * 30h-FFh Reserved
570 *
571 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
572 * version as 0x2. This is an error with documentation and these ICH chips
573 * use io-apic's of version 0x20.
574 *
575 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
576 * Otherwise, we simulate the EOI message manually by changing the trigger
577 * mode to edge and then back to level, with RTE being masked during this.
578 */
579static void __eoi_ioapic_pin(int apic, int pin, int vector, struct irq_cfg *cfg)
580{
581 if (mpc_ioapic_ver(apic) >= 0x20) {
582 /*
583 * Intr-remapping uses pin number as the virtual vector
584 * in the RTE. Actual vector is programmed in
585 * intr-remapping table entry. Hence for the io-apic
586 * EOI we use the pin number.
587 */
588 if (cfg && irq_remapped(cfg))
589 io_apic_eoi(apic, pin);
590 else
591 io_apic_eoi(apic, vector);
592 } else {
593 struct IO_APIC_route_entry entry, entry1;
594
595 entry = entry1 = __ioapic_read_entry(apic, pin);
596
597 /*
598 * Mask the entry and change the trigger mode to edge.
599 */
600 entry1.mask = 1;
601 entry1.trigger = IOAPIC_EDGE;
602
603 __ioapic_write_entry(apic, pin, entry1);
604
605 /*
606 * Restore the previous level triggered entry.
607 */
608 __ioapic_write_entry(apic, pin, entry);
609 }
610}
611
612static void eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
613{
614 struct irq_pin_list *entry;
615 unsigned long flags;
616
617 raw_spin_lock_irqsave(&ioapic_lock, flags);
618 for_each_irq_pin(entry, cfg->irq_2_pin)
619 __eoi_ioapic_pin(entry->apic, entry->pin, cfg->vector, cfg);
620 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
624{
625 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200628 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (entry.delivery_mode == dest_SMI)
630 return;
Suresh Siddha1e75b312011-08-25 12:01:11 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
Suresh Siddha1e75b312011-08-25 12:01:11 -0700633 * Make sure the entry is masked and re-read the contents to check
634 * if it is a level triggered pin and if the remote-IRR is set.
635 */
636 if (!entry.mask) {
637 entry.mask = 1;
638 ioapic_write_entry(apic, pin, entry);
639 entry = ioapic_read_entry(apic, pin);
640 }
641
642 if (entry.irr) {
Suresh Siddhac0205702011-08-25 12:01:13 -0700643 unsigned long flags;
644
Suresh Siddha1e75b312011-08-25 12:01:11 -0700645 /*
646 * Make sure the trigger mode is set to level. Explicit EOI
647 * doesn't clear the remote-IRR if the trigger mode is not
648 * set to level.
649 */
650 if (!entry.trigger) {
651 entry.trigger = IOAPIC_LEVEL;
652 ioapic_write_entry(apic, pin, entry);
653 }
654
Suresh Siddhac0205702011-08-25 12:01:13 -0700655 raw_spin_lock_irqsave(&ioapic_lock, flags);
656 __eoi_ioapic_pin(apic, pin, entry.vector, NULL);
657 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Suresh Siddha1e75b312011-08-25 12:01:11 -0700658 }
659
660 /*
661 * Clear the rest of the bits in the IO-APIC RTE except for the mask
662 * bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800664 ioapic_mask_entry(apic, pin);
Suresh Siddha1e75b312011-08-25 12:01:11 -0700665 entry = ioapic_read_entry(apic, pin);
666 if (entry.irr)
667 printk(KERN_ERR "Unable to reset IRR for apic: %d, pin :%d\n",
668 mpc_ioapic_id(apic), pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Ingo Molnar54168ed2008-08-20 09:07:45 +0200671static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 int apic, pin;
674
675 for (apic = 0; apic < nr_ioapics; apic++)
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700676 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 clear_IO_APIC_pin(apic, pin);
678}
679
Ingo Molnar54168ed2008-08-20 09:07:45 +0200680#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
683 * specific CPU-side IRQs.
684 */
685
686#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800687static int pirq_entries[MAX_PIRQS] = {
688 [0 ... MAX_PIRQS - 1] = -1
689};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691static int __init ioapic_pirq_setup(char *str)
692{
693 int i, max;
694 int ints[MAX_PIRQS+1];
695
696 get_options(str, ARRAY_SIZE(ints), ints);
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 apic_printk(APIC_VERBOSE, KERN_INFO
699 "PIRQ redirection, working around broken MP-BIOS.\n");
700 max = MAX_PIRQS;
701 if (ints[0] < MAX_PIRQS)
702 max = ints[0];
703
704 for (i = 0; i < max; i++) {
705 apic_printk(APIC_VERBOSE, KERN_DEBUG
706 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
707 /*
708 * PIRQs are mapped upside down, usually.
709 */
710 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
711 }
712 return 1;
713}
714
715__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200716#endif /* CONFIG_X86_32 */
717
Ingo Molnar54168ed2008-08-20 09:07:45 +0200718/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700719 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200720 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700721int save_ioapic_entries(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200722{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200723 int apic, pin;
Suresh Siddha31dce142011-05-18 16:31:33 -0700724 int err = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200725
726 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha57a6f742011-05-18 16:31:36 -0700727 if (!ioapics[apic].saved_registers) {
Suresh Siddha31dce142011-05-18 16:31:33 -0700728 err = -ENOMEM;
729 continue;
730 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200731
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700732 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Suresh Siddha57a6f742011-05-18 16:31:36 -0700733 ioapics[apic].saved_registers[pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200734 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700735 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400736
Suresh Siddha31dce142011-05-18 16:31:33 -0700737 return err;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200738}
739
Fenghua Yub24696b2009-03-27 14:22:44 -0700740/*
741 * Mask all IO APIC entries.
742 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700743void mask_ioapic_entries(void)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700744{
745 int apic, pin;
746
747 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha2f344d22011-05-24 10:45:31 -0700748 if (!ioapics[apic].saved_registers)
Suresh Siddha31dce142011-05-18 16:31:33 -0700749 continue;
Fenghua Yub24696b2009-03-27 14:22:44 -0700750
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700751 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700752 struct IO_APIC_route_entry entry;
753
Suresh Siddha57a6f742011-05-18 16:31:36 -0700754 entry = ioapics[apic].saved_registers[pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700755 if (!entry.mask) {
756 entry.mask = 1;
757 ioapic_write_entry(apic, pin, entry);
758 }
759 }
760 }
761}
762
Fenghua Yub24696b2009-03-27 14:22:44 -0700763/*
Suresh Siddha57a6f742011-05-18 16:31:36 -0700764 * Restore IO APIC entries which was saved in the ioapic structure.
Fenghua Yub24696b2009-03-27 14:22:44 -0700765 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700766int restore_ioapic_entries(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200767{
768 int apic, pin;
769
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400770 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha2f344d22011-05-24 10:45:31 -0700771 if (!ioapics[apic].saved_registers)
Suresh Siddha31dce142011-05-18 16:31:33 -0700772 continue;
Fenghua Yub24696b2009-03-27 14:22:44 -0700773
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700774 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200775 ioapic_write_entry(apic, pin,
Suresh Siddha57a6f742011-05-18 16:31:36 -0700776 ioapics[apic].saved_registers[pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400777 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700778 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/*
782 * Find the IRQ entry number of a certain pin.
783 */
Yinghai Lu6f50d452011-10-12 00:33:48 -0700784static int find_irq_entry(int ioapic_idx, int pin, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 int i;
787
788 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530789 if (mp_irqs[i].irqtype == type &&
Yinghai Lu6f50d452011-10-12 00:33:48 -0700790 (mp_irqs[i].dstapic == mpc_ioapic_id(ioapic_idx) ||
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530791 mp_irqs[i].dstapic == MP_APIC_ALL) &&
792 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return i;
794
795 return -1;
796}
797
798/*
799 * Find the pin to which IRQ[irq] (ISA) is connected
800 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800801static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 int i;
804
805 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530806 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300808 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530809 (mp_irqs[i].irqtype == type) &&
810 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530812 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814 return -1;
815}
816
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800817static int __init find_isa_irq_apic(int irq, int type)
818{
819 int i;
820
821 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530822 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800823
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300824 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530825 (mp_irqs[i].irqtype == type) &&
826 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800827 break;
828 }
Yinghai Lu6f50d452011-10-12 00:33:48 -0700829
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800830 if (i < mp_irq_entries) {
Yinghai Lu6f50d452011-10-12 00:33:48 -0700831 int ioapic_idx;
832
833 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
834 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic)
835 return ioapic_idx;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800836 }
837
838 return -1;
839}
840
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300841#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842/*
843 * EISA Edge/Level control register, ELCR
844 */
845static int EISA_ELCR(unsigned int irq)
846{
Jacob Panb81bb372009-11-09 11:27:04 -0800847 if (irq < legacy_pic->nr_legacy_irqs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 unsigned int port = 0x4d0 + (irq >> 3);
849 return (inb(port) >> (irq & 7)) & 1;
850 }
851 apic_printk(APIC_VERBOSE, KERN_INFO
852 "Broken MPtable reports ISA irq %d\n", irq);
853 return 0;
854}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200855
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300858/* ISA interrupts are always polarity zero edge triggered,
859 * when listed as conforming in the MP table. */
860
861#define default_ISA_trigger(idx) (0)
862#define default_ISA_polarity(idx) (0)
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/* EISA interrupts are always polarity zero and can be edge or level
865 * trigger depending on the ELCR value. If an interrupt is listed as
866 * EISA conforming in the MP table, that means its trigger type must
867 * be read in from the ELCR */
868
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530869#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300870#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872/* PCI interrupts are always polarity one level triggered,
873 * when listed as conforming in the MP table. */
874
875#define default_PCI_trigger(idx) (1)
876#define default_PCI_polarity(idx) (1)
877
878/* MCA interrupts are always polarity zero level triggered,
879 * when listed as conforming in the MP table. */
880
881#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300882#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Thomas Gleixnerb77cf6a2011-02-23 17:33:53 +0100884static int irq_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530886 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 int polarity;
888
889 /*
890 * Determine IRQ line polarity (high active or low active):
891 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530892 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200894 case 0: /* conforms, ie. bus-type dependent polarity */
895 if (test_bit(bus, mp_bus_not_pci))
896 polarity = default_ISA_polarity(idx);
897 else
898 polarity = default_PCI_polarity(idx);
899 break;
900 case 1: /* high active */
901 {
902 polarity = 0;
903 break;
904 }
905 case 2: /* reserved */
906 {
907 printk(KERN_WARNING "broken BIOS!!\n");
908 polarity = 1;
909 break;
910 }
911 case 3: /* low active */
912 {
913 polarity = 1;
914 break;
915 }
916 default: /* invalid */
917 {
918 printk(KERN_WARNING "broken BIOS!!\n");
919 polarity = 1;
920 break;
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923 return polarity;
924}
925
Thomas Gleixnerb77cf6a2011-02-23 17:33:53 +0100926static int irq_trigger(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530928 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int trigger;
930
931 /*
932 * Determine IRQ trigger mode (edge or level sensitive):
933 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530934 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200936 case 0: /* conforms, ie. bus-type dependent */
937 if (test_bit(bus, mp_bus_not_pci))
938 trigger = default_ISA_trigger(idx);
939 else
940 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300941#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200942 switch (mp_bus_id_to_type[bus]) {
943 case MP_BUS_ISA: /* ISA pin */
944 {
945 /* set before the switch */
946 break;
947 }
948 case MP_BUS_EISA: /* EISA pin */
949 {
950 trigger = default_EISA_trigger(idx);
951 break;
952 }
953 case MP_BUS_PCI: /* PCI pin */
954 {
955 /* set before the switch */
956 break;
957 }
958 case MP_BUS_MCA: /* MCA pin */
959 {
960 trigger = default_MCA_trigger(idx);
961 break;
962 }
963 default:
964 {
965 printk(KERN_WARNING "broken BIOS!!\n");
966 trigger = 1;
967 break;
968 }
969 }
970#endif
971 break;
972 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200973 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200974 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200975 break;
976 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200977 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200978 {
979 printk(KERN_WARNING "broken BIOS!!\n");
980 trigger = 1;
981 break;
982 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200983 case 3: /* level */
984 {
985 trigger = 1;
986 break;
987 }
988 default: /* invalid */
989 {
990 printk(KERN_WARNING "broken BIOS!!\n");
991 trigger = 0;
992 break;
993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995 return trigger;
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static int pin_2_irq(int idx, int apic, int pin)
999{
Eric W. Biedermand4642072010-03-30 01:07:13 -07001000 int irq;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301001 int bus = mp_irqs[idx].srcbus;
Suresh Siddhac040aae2011-05-18 16:31:38 -07001002 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(apic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * Debugging check, we are in big trouble if this message pops up!
1006 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301007 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1009
Ingo Molnar54168ed2008-08-20 09:07:45 +02001010 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301011 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001012 } else {
Suresh Siddhac040aae2011-05-18 16:31:38 -07001013 u32 gsi = gsi_cfg->gsi_base + pin;
Eric W. Biederman988856e2010-03-30 01:07:15 -07001014
1015 if (gsi >= NR_IRQS_LEGACY)
1016 irq = gsi;
1017 else
Eric W. Biedermana4384df2010-06-08 11:44:32 -07001018 irq = gsi_top + gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
Ingo Molnar54168ed2008-08-20 09:07:45 +02001021#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /*
1023 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1024 */
1025 if ((pin >= 16) && (pin <= 23)) {
1026 if (pirq_entries[pin-16] != -1) {
1027 if (!pirq_entries[pin-16]) {
1028 apic_printk(APIC_VERBOSE, KERN_DEBUG
1029 "disabling PIRQ%d\n", pin-16);
1030 } else {
1031 irq = pirq_entries[pin-16];
1032 apic_printk(APIC_VERBOSE, KERN_DEBUG
1033 "using PIRQ%d -> IRQ %d\n",
1034 pin-16, irq);
1035 }
1036 }
1037 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001038#endif
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return irq;
1041}
1042
Yinghai Lue20c06f2009-05-06 10:08:22 -07001043/*
1044 * Find a specific PCI IRQ entry.
1045 * Not an __init, possibly needed by modules
1046 */
1047int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001048 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001049{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001050 int ioapic_idx, i, best_guess = -1;
Yinghai Lue20c06f2009-05-06 10:08:22 -07001051
1052 apic_printk(APIC_DEBUG,
1053 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1054 bus, slot, pin);
1055 if (test_bit(bus, mp_bus_not_pci)) {
1056 apic_printk(APIC_VERBOSE,
1057 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1058 return -1;
1059 }
1060 for (i = 0; i < mp_irq_entries; i++) {
1061 int lbus = mp_irqs[i].srcbus;
1062
Yinghai Lu6f50d452011-10-12 00:33:48 -07001063 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1064 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic ||
Yinghai Lue20c06f2009-05-06 10:08:22 -07001065 mp_irqs[i].dstapic == MP_APIC_ALL)
1066 break;
1067
1068 if (!test_bit(lbus, mp_bus_not_pci) &&
1069 !mp_irqs[i].irqtype &&
1070 (bus == lbus) &&
1071 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001072 int irq = pin_2_irq(i, ioapic_idx, mp_irqs[i].dstirq);
Yinghai Lue20c06f2009-05-06 10:08:22 -07001073
Yinghai Lu6f50d452011-10-12 00:33:48 -07001074 if (!(ioapic_idx || IO_APIC_IRQ(irq)))
Yinghai Lue20c06f2009-05-06 10:08:22 -07001075 continue;
1076
1077 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001078 set_io_apic_irq_attr(irq_attr, ioapic_idx,
Yinghai Lue5198072009-05-15 13:05:16 -07001079 mp_irqs[i].dstirq,
1080 irq_trigger(i),
1081 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001082 return irq;
1083 }
1084 /*
1085 * Use the first all-but-pin matching entry as a
1086 * best-guess fuzzy result for broken mptables.
1087 */
1088 if (best_guess < 0) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001089 set_io_apic_irq_attr(irq_attr, ioapic_idx,
Yinghai Lue5198072009-05-15 13:05:16 -07001090 mp_irqs[i].dstirq,
1091 irq_trigger(i),
1092 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001093 best_guess = irq;
1094 }
1095 }
1096 }
1097 return best_guess;
1098}
1099EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1100
Yinghai Lu497c9a12008-08-19 20:50:28 -07001101void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001103 /* Used to the online set of cpus does not change
1104 * during assign_irq_vector.
1105 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001106 raw_spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Yinghai Lu497c9a12008-08-19 20:50:28 -07001109void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001110{
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001111 raw_spin_unlock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001112}
1113
Mike Travise7986732008-12-16 17:33:52 -08001114static int
1115__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001116{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001117 /*
1118 * NOTE! The local APIC isn't very good at handling
1119 * multiple interrupts at the same interrupt level.
1120 * As the interrupt level is determined by taking the
1121 * vector number and shifting that right by 4, we
1122 * want to spread these out a bit so that they don't
1123 * all fall in the same interrupt level.
1124 *
1125 * Also, we've got to be careful not to trash gate
1126 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1127 */
Suresh Siddha6579b472010-01-13 16:19:11 -08001128 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
H. Peter Anvinea943962010-01-04 21:14:41 -08001129 static int current_offset = VECTOR_OFFSET_START % 8;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001130 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001131 int cpu, err;
1132 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001133
Suresh Siddha23359a82009-10-26 14:24:33 -08001134 if (cfg->move_in_progress)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001135 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001136
Mike Travis22f65d32008-12-16 17:33:56 -08001137 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1138 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001139
Ingo Molnar54168ed2008-08-20 09:07:45 +02001140 old_vector = cfg->vector;
1141 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001142 cpumask_and(tmp_mask, mask, cpu_online_mask);
1143 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1144 if (!cpumask_empty(tmp_mask)) {
1145 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001146 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001147 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001148 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001149
Mike Travise7986732008-12-16 17:33:52 -08001150 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001151 err = -ENOSPC;
1152 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001153 int new_cpu;
1154 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001155
Ingo Molnare2d40b12009-01-28 06:50:47 +01001156 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001157
Ingo Molnar54168ed2008-08-20 09:07:45 +02001158 vector = current_vector;
1159 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001160next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001161 vector += 8;
1162 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001163 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001164 offset = (offset + 1) % 8;
Suresh Siddha6579b472010-01-13 16:19:11 -08001165 vector = FIRST_EXTERNAL_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001166 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001167 if (unlikely(current_vector == vector))
1168 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001169
1170 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001171 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001172
Mike Travis22f65d32008-12-16 17:33:56 -08001173 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001174 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1175 goto next;
1176 /* Found one! */
1177 current_vector = vector;
1178 current_offset = offset;
1179 if (old_vector) {
1180 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001181 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001182 }
Mike Travis22f65d32008-12-16 17:33:56 -08001183 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001184 per_cpu(vector_irq, new_cpu)[vector] = irq;
1185 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001186 cpumask_copy(cfg->domain, tmp_mask);
1187 err = 0;
1188 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001189 }
Mike Travis22f65d32008-12-16 17:33:56 -08001190 free_cpumask_var(tmp_mask);
1191 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001192}
1193
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05001194int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001195{
1196 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001197 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001198
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001199 raw_spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001200 err = __assign_irq_vector(irq, cfg, mask);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001201 raw_spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001202 return err;
1203}
1204
Yinghai Lu3145e942008-12-05 18:58:34 -08001205static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001206{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001207 int cpu, vector;
1208
Yinghai Lu497c9a12008-08-19 20:50:28 -07001209 BUG_ON(!cfg->vector);
1210
1211 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001212 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001213 per_cpu(vector_irq, cpu)[vector] = -1;
1214
1215 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001216 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001217
1218 if (likely(!cfg->move_in_progress))
1219 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001220 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001221 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1222 vector++) {
1223 if (per_cpu(vector_irq, cpu)[vector] != irq)
1224 continue;
1225 per_cpu(vector_irq, cpu)[vector] = -1;
1226 break;
1227 }
1228 }
1229 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001230}
1231
1232void __setup_vector_irq(int cpu)
1233{
1234 /* Initialize vector_irq on a new cpu */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001235 int irq, vector;
1236 struct irq_cfg *cfg;
1237
Suresh Siddha9d133e52010-01-29 11:42:21 -08001238 /*
1239 * vector_lock will make sure that we don't run into irq vector
1240 * assignments that might be happening on another cpu in parallel,
1241 * while we setup our initial vector to irq mappings.
1242 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001243 raw_spin_lock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001244 /* Mark the inuse vectors */
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001245 for_each_active_irq(irq) {
Thomas Gleixner2c778652011-03-12 12:20:43 +01001246 cfg = irq_get_chip_data(irq);
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001247 if (!cfg)
1248 continue;
Suresh Siddha36e9e1e2010-03-15 14:33:06 -08001249 /*
1250 * If it is a legacy IRQ handled by the legacy PIC, this cpu
1251 * will be part of the irq_cfg's domain.
1252 */
1253 if (irq < legacy_pic->nr_legacy_irqs && !IO_APIC_IRQ(irq))
1254 cpumask_set_cpu(cpu, cfg->domain);
1255
Mike Travis22f65d32008-12-16 17:33:56 -08001256 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001257 continue;
1258 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001259 per_cpu(vector_irq, cpu)[vector] = irq;
1260 }
1261 /* Mark the free vectors */
1262 for (vector = 0; vector < NR_VECTORS; ++vector) {
1263 irq = per_cpu(vector_irq, cpu)[vector];
1264 if (irq < 0)
1265 continue;
1266
1267 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001268 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001269 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001270 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001271 raw_spin_unlock(&vector_lock);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001272}
Glauber Costa3fde6902008-05-28 20:34:19 -07001273
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001274static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001276#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001277static inline int IO_APIC_irq_trigger(int irq)
1278{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001279 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001280
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001281 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddhab69c6c32011-05-18 16:31:35 -07001282 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001283 idx = find_irq_entry(apic, pin, mp_INT);
1284 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1285 return irq_trigger(idx);
1286 }
1287 }
1288 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001289 * nonexistent IRQs are edge default
1290 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001291 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001292}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001293#else
1294static inline int IO_APIC_irq_trigger(int irq)
1295{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001296 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001297}
1298#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001299
Thomas Gleixner1a0e62a2011-03-12 13:47:18 +01001300static void ioapic_register_intr(unsigned int irq, struct irq_cfg *cfg,
1301 unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001303 struct irq_chip *chip = &ioapic_chip;
1304 irq_flow_handler_t hdl;
1305 bool fasteoi;
Yinghai Lu199751d2008-08-19 20:50:27 -07001306
Jan Beulich6ebcc002006-06-26 13:56:46 +02001307 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001308 trigger == IOAPIC_LEVEL) {
Thomas Gleixner60c69942010-09-28 17:28:38 +02001309 irq_set_status_flags(irq, IRQ_LEVEL);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001310 fasteoi = true;
1311 } else {
Thomas Gleixner60c69942010-09-28 17:28:38 +02001312 irq_clear_status_flags(irq, IRQ_LEVEL);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001313 fasteoi = false;
1314 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001315
Thomas Gleixner1a0e62a2011-03-12 13:47:18 +01001316 if (irq_remapped(cfg)) {
Thomas Gleixner60c69942010-09-28 17:28:38 +02001317 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
Suresh Siddhac39d77f2011-08-23 17:05:24 -07001318 irq_remap_modify_chip_defaults(chip);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001319 fasteoi = trigger != 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001320 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001321
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001322 hdl = fasteoi ? handle_fasteoi_irq : handle_edge_irq;
1323 irq_set_chip_and_handler_name(irq, chip, hdl,
1324 fasteoi ? "fasteoi" : "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001325}
1326
Yinghai Luc5b47122011-10-12 00:33:15 -07001327
1328static int setup_ir_ioapic_entry(int irq,
1329 struct IR_IO_APIC_route_entry *entry,
1330 unsigned int destination, int vector,
1331 struct io_apic_irq_attr *attr)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001332{
Yinghai Luc5b47122011-10-12 00:33:15 -07001333 int index;
1334 struct irte irte;
Yinghai Lu6f50d452011-10-12 00:33:48 -07001335 int ioapic_id = mpc_ioapic_id(attr->ioapic);
1336 struct intel_iommu *iommu = map_ioapic_to_ir(ioapic_id);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001337
Yinghai Luc5b47122011-10-12 00:33:15 -07001338 if (!iommu) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001339 pr_warn("No mapping iommu for ioapic %d\n", ioapic_id);
Yinghai Luc5b47122011-10-12 00:33:15 -07001340 return -ENODEV;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001341 }
1342
Yinghai Luc5b47122011-10-12 00:33:15 -07001343 index = alloc_irte(iommu, irq, 1);
1344 if (index < 0) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001345 pr_warn("Failed to allocate IRTE for ioapic %d\n", ioapic_id);
Yinghai Luc5b47122011-10-12 00:33:15 -07001346 return -ENOMEM;
1347 }
1348
1349 prepare_irte(&irte, vector, destination);
1350
1351 /* Set source-id of interrupt request */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001352 set_ioapic_sid(&irte, ioapic_id);
Yinghai Luc5b47122011-10-12 00:33:15 -07001353
1354 modify_irte(irq, &irte);
1355
1356 apic_printk(APIC_VERBOSE, KERN_DEBUG "IOAPIC[%d]: "
1357 "Set IRTE entry (P:%d FPD:%d Dst_Mode:%d "
1358 "Redir_hint:%d Trig_Mode:%d Dlvry_Mode:%X "
1359 "Avail:%X Vector:%02X Dest:%08X "
1360 "SID:%04X SQ:%X SVT:%X)\n",
Yinghai Lu3a61d7f2011-10-12 00:33:28 -07001361 attr->ioapic, irte.present, irte.fpd, irte.dst_mode,
Yinghai Luc5b47122011-10-12 00:33:15 -07001362 irte.redir_hint, irte.trigger_mode, irte.dlvry_mode,
1363 irte.avail, irte.vector, irte.dest_id,
1364 irte.sid, irte.sq, irte.svt);
1365
1366 memset(entry, 0, sizeof(*entry));
1367
1368 entry->index2 = (index >> 15) & 0x1;
1369 entry->zero = 0;
1370 entry->format = 1;
1371 entry->index = (index & 0x7fff);
1372 /*
1373 * IO-APIC RTE will be configured with virtual vector.
1374 * irq handler will do the explicit EOI to the io-apic.
1375 */
1376 entry->vector = attr->ioapic_pin;
1377 entry->mask = 0; /* enable IRQ */
1378 entry->trigger = attr->trigger;
1379 entry->polarity = attr->polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001380
1381 /* Mask level triggered irqs.
1382 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1383 */
Yinghai Luc5b47122011-10-12 00:33:15 -07001384 if (attr->trigger)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001385 entry->mask = 1;
Yinghai Luc5b47122011-10-12 00:33:15 -07001386
Yinghai Lu497c9a12008-08-19 20:50:28 -07001387 return 0;
1388}
1389
Yinghai Luc5b47122011-10-12 00:33:15 -07001390static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
1391 unsigned int destination, int vector,
1392 struct io_apic_irq_attr *attr)
1393{
1394 if (intr_remapping_enabled)
1395 return setup_ir_ioapic_entry(irq,
1396 (struct IR_IO_APIC_route_entry *)entry,
1397 destination, vector, attr);
1398
1399 memset(entry, 0, sizeof(*entry));
1400
1401 entry->delivery_mode = apic->irq_delivery_mode;
1402 entry->dest_mode = apic->irq_dest_mode;
1403 entry->dest = destination;
1404 entry->vector = vector;
1405 entry->mask = 0; /* enable IRQ */
1406 entry->trigger = attr->trigger;
1407 entry->polarity = attr->polarity;
1408
1409 /*
1410 * Mask level triggered irqs.
1411 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1412 */
1413 if (attr->trigger)
1414 entry->mask = 1;
1415
Yinghai Lu497c9a12008-08-19 20:50:28 -07001416 return 0;
1417}
1418
Yinghai Lue4aff812011-10-12 00:33:05 -07001419static void setup_ioapic_irq(unsigned int irq, struct irq_cfg *cfg,
1420 struct io_apic_irq_attr *attr)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001421{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001422 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001423 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001424
1425 if (!IO_APIC_IRQ(irq))
1426 return;
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001427 /*
1428 * For legacy irqs, cfg->domain starts with cpu 0 for legacy
1429 * controllers like 8259. Now that IO-APIC can handle this irq, update
1430 * the cfg->domain.
1431 */
Yinghai Lu28c6a0b2010-02-23 20:27:48 -08001432 if (irq < legacy_pic->nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain))
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001433 apic->vector_allocation_domain(0, cfg->domain);
1434
Ingo Molnarfe402e12009-01-28 04:32:51 +01001435 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001436 return;
1437
Ingo Molnardebccb32009-01-28 15:20:18 +01001438 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001439
1440 apic_printk(APIC_VERBOSE,KERN_DEBUG
1441 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
Naga Chumbalkar7fece832011-07-08 18:46:42 +00001442 "IRQ %d Mode:%i Active:%i Dest:%d)\n",
Yinghai Lue4aff812011-10-12 00:33:05 -07001443 attr->ioapic, mpc_ioapic_id(attr->ioapic), attr->ioapic_pin,
1444 cfg->vector, irq, attr->trigger, attr->polarity, dest);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001445
Yinghai Luc5b47122011-10-12 00:33:15 -07001446 if (setup_ioapic_entry(irq, &entry, dest, cfg->vector, attr)) {
1447 pr_warn("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1448 mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001449 __clear_irq_vector(irq, cfg);
Yinghai Luc5b47122011-10-12 00:33:15 -07001450
Yinghai Lu497c9a12008-08-19 20:50:28 -07001451 return;
1452 }
1453
Yinghai Lue4aff812011-10-12 00:33:05 -07001454 ioapic_register_intr(irq, cfg, attr->trigger);
Jacob Panb81bb372009-11-09 11:27:04 -08001455 if (irq < legacy_pic->nr_legacy_irqs)
Thomas Gleixner4305df92010-09-28 15:01:33 +02001456 legacy_pic->mask(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001457
Yinghai Lue4aff812011-10-12 00:33:05 -07001458 ioapic_write_entry(attr->ioapic, attr->ioapic_pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Yinghai Lu6f50d452011-10-12 00:33:48 -07001461static bool __init io_apic_pin_not_connected(int idx, int ioapic_idx, int pin)
Thomas Gleixnerc8d6b8f2011-02-23 14:29:34 +01001462{
1463 if (idx != -1)
1464 return false;
1465
1466 apic_printk(APIC_VERBOSE, KERN_DEBUG " apic %d pin %d not connected\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001467 mpc_ioapic_id(ioapic_idx), pin);
Thomas Gleixnerc8d6b8f2011-02-23 14:29:34 +01001468 return true;
1469}
1470
Yinghai Lu6f50d452011-10-12 00:33:48 -07001471static void __init __io_apic_setup_irqs(unsigned int ioapic_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001473 int idx, node = cpu_to_node(0);
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001474 struct io_apic_irq_attr attr;
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001475 unsigned int pin, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Yinghai Lu6f50d452011-10-12 00:33:48 -07001477 for (pin = 0; pin < ioapics[ioapic_idx].nr_registers; pin++) {
1478 idx = find_irq_entry(ioapic_idx, pin, mp_INT);
1479 if (io_apic_pin_not_connected(idx, ioapic_idx, pin))
Yinghai Lub9c61b702009-05-06 10:10:06 -07001480 continue;
Yinghai Lub9c61b702009-05-06 10:10:06 -07001481
Yinghai Lu6f50d452011-10-12 00:33:48 -07001482 irq = pin_2_irq(idx, ioapic_idx, pin);
Yinghai Lub9c61b702009-05-06 10:10:06 -07001483
Yinghai Lu6f50d452011-10-12 00:33:48 -07001484 if ((ioapic_idx > 0) && (irq > 16))
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001485 continue;
1486
Yinghai Lub9c61b702009-05-06 10:10:06 -07001487 /*
1488 * Skip the timer IRQ if there's a quirk handler
1489 * installed and if it returns 1:
1490 */
1491 if (apic->multi_timer_check &&
Yinghai Lu6f50d452011-10-12 00:33:48 -07001492 apic->multi_timer_check(ioapic_idx, irq))
Yinghai Lub9c61b702009-05-06 10:10:06 -07001493 continue;
1494
Yinghai Lu6f50d452011-10-12 00:33:48 -07001495 set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001496 irq_polarity(idx));
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02001497
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001498 io_apic_setup_irq_pin(irq, node, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001502static void __init setup_IO_APIC_irqs(void)
1503{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001504 unsigned int ioapic_idx;
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001505
1506 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1507
Yinghai Lu6f50d452011-10-12 00:33:48 -07001508 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1509 __io_apic_setup_irqs(ioapic_idx);
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001510}
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512/*
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001513 * for the gsit that is not in first ioapic
1514 * but could not use acpi_register_gsi()
1515 * like some special sci in IBM x3330
1516 */
1517void setup_IO_APIC_irq_extra(u32 gsi)
1518{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001519 int ioapic_idx = 0, pin, idx, irq, node = cpu_to_node(0);
Thomas Gleixnerda1ad9d2011-02-23 14:52:16 +01001520 struct io_apic_irq_attr attr;
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001521
1522 /*
1523 * Convert 'gsi' to 'ioapic.pin'.
1524 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001525 ioapic_idx = mp_find_ioapic(gsi);
1526 if (ioapic_idx < 0)
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001527 return;
1528
Yinghai Lu6f50d452011-10-12 00:33:48 -07001529 pin = mp_find_ioapic_pin(ioapic_idx, gsi);
1530 idx = find_irq_entry(ioapic_idx, pin, mp_INT);
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001531 if (idx == -1)
1532 return;
1533
Yinghai Lu6f50d452011-10-12 00:33:48 -07001534 irq = pin_2_irq(idx, ioapic_idx, pin);
Yinghai Lufe6dab42010-10-08 22:44:02 -07001535
1536 /* Only handle the non legacy irqs on secondary ioapics */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001537 if (ioapic_idx == 0 || irq < NR_IRQS_LEGACY)
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001538 return;
Yinghai Lufe6dab42010-10-08 22:44:02 -07001539
Yinghai Lu6f50d452011-10-12 00:33:48 -07001540 set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
Thomas Gleixnerda1ad9d2011-02-23 14:52:16 +01001541 irq_polarity(idx));
1542
Thomas Gleixner710dcda2011-02-23 17:47:41 +01001543 io_apic_setup_irq_pin_once(irq, node, &attr);
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001544}
1545
1546/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001547 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001549static void __init setup_timer_IRQ0_pin(unsigned int ioapic_idx,
1550 unsigned int pin, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Ingo Molnar54168ed2008-08-20 09:07:45 +02001554 if (intr_remapping_enabled)
1555 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001556
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001557 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 /*
1560 * We use logical delivery to get the timer IRQ
1561 * to the first CPU.
1562 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001563 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001564 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001565 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001566 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 entry.polarity = 0;
1568 entry.trigger = 0;
1569 entry.vector = vector;
1570
1571 /*
1572 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001573 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
Thomas Gleixner2c778652011-03-12 12:20:43 +01001575 irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
1576 "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /*
1579 * Add it to the IO-APIC irq-routing table:
1580 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001581 ioapic_write_entry(ioapic_idx, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Yinghai Lu6f50d452011-10-12 00:33:48 -07001584__apicdebuginit(void) print_IO_APIC(int ioapic_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Yinghai Lucda417d2011-10-12 00:33:39 -07001586 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 union IO_APIC_reg_00 reg_00;
1588 union IO_APIC_reg_01 reg_01;
1589 union IO_APIC_reg_02 reg_02;
1590 union IO_APIC_reg_03 reg_03;
1591 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001593 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001594 reg_00.raw = io_apic_read(ioapic_idx, 0);
1595 reg_01.raw = io_apic_read(ioapic_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (reg_01.bits.version >= 0x10)
Yinghai Lu6f50d452011-10-12 00:33:48 -07001597 reg_02.raw = io_apic_read(ioapic_idx, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001598 if (reg_01.bits.version >= 0x20)
Yinghai Lu6f50d452011-10-12 00:33:48 -07001599 reg_03.raw = io_apic_read(ioapic_idx, 3);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001600 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Ingo Molnar54168ed2008-08-20 09:07:45 +02001602 printk("\n");
Yinghai Lu6f50d452011-10-12 00:33:48 -07001603 printk(KERN_DEBUG "IO APIC #%d......\n", mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1605 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1606 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1607 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Ingo Molnar54168ed2008-08-20 09:07:45 +02001609 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Naga Chumbalkarbd6a46e2011-07-08 18:46:36 +00001610 printk(KERN_DEBUG "....... : max redirection entries: %02X\n",
1611 reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
Naga Chumbalkarbd6a46e2011-07-08 18:46:36 +00001614 printk(KERN_DEBUG "....... : IO APIC version: %02X\n",
1615 reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /*
1618 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1619 * but the value of reg_02 is read as the previous read register
1620 * value, so ignore it if reg_02 == reg_01.
1621 */
1622 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1623 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1624 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626
1627 /*
1628 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1629 * or reg_03, but the value of reg_0[23] is read as the previous read
1630 * register value, so ignore it if reg_03 == reg_0[12].
1631 */
1632 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1633 reg_03.raw != reg_01.raw) {
1634 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1635 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
1637
1638 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1639
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001640 if (intr_remapping_enabled) {
1641 printk(KERN_DEBUG " NR Indx Fmt Mask Trig IRR"
1642 " Pol Stat Indx2 Zero Vect:\n");
1643 } else {
1644 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1645 " Stat Dmod Deli Vect:\n");
1646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 for (i = 0; i <= reg_01.bits.entries; i++) {
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001649 if (intr_remapping_enabled) {
1650 struct IO_APIC_route_entry entry;
1651 struct IR_IO_APIC_route_entry *ir_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Yinghai Lu6f50d452011-10-12 00:33:48 -07001653 entry = ioapic_read_entry(ioapic_idx, i);
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001654 ir_entry = (struct IR_IO_APIC_route_entry *) &entry;
1655 printk(KERN_DEBUG " %02x %04X ",
1656 i,
1657 ir_entry->index
1658 );
1659 printk("%1d %1d %1d %1d %1d "
1660 "%1d %1d %X %02X\n",
1661 ir_entry->format,
1662 ir_entry->mask,
1663 ir_entry->trigger,
1664 ir_entry->irr,
1665 ir_entry->polarity,
1666 ir_entry->delivery_status,
1667 ir_entry->index2,
1668 ir_entry->zero,
1669 ir_entry->vector
1670 );
1671 } else {
1672 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Yinghai Lu6f50d452011-10-12 00:33:48 -07001674 entry = ioapic_read_entry(ioapic_idx, i);
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001675 printk(KERN_DEBUG " %02x %02X ",
1676 i,
1677 entry.dest
1678 );
1679 printk("%1d %1d %1d %1d %1d "
1680 "%1d %1d %02X\n",
1681 entry.mask,
1682 entry.trigger,
1683 entry.irr,
1684 entry.polarity,
1685 entry.delivery_status,
1686 entry.dest_mode,
1687 entry.delivery_mode,
1688 entry.vector
1689 );
1690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
Yinghai Lucda417d2011-10-12 00:33:39 -07001692}
1693
1694__apicdebuginit(void) print_IO_APICs(void)
1695{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001696 int ioapic_idx;
Yinghai Lucda417d2011-10-12 00:33:39 -07001697 struct irq_cfg *cfg;
1698 unsigned int irq;
1699
1700 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001701 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
Yinghai Lucda417d2011-10-12 00:33:39 -07001702 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001703 mpc_ioapic_id(ioapic_idx),
1704 ioapics[ioapic_idx].nr_registers);
Yinghai Lucda417d2011-10-12 00:33:39 -07001705
1706 /*
1707 * We are a bit conservative about what we expect. We have to
1708 * know about every hardware change ASAP.
1709 */
1710 printk(KERN_INFO "testing the IO APIC.......................\n");
1711
Yinghai Lu6f50d452011-10-12 00:33:48 -07001712 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1713 print_IO_APIC(ioapic_idx);
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001716 for_each_active_irq(irq) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001717 struct irq_pin_list *entry;
1718
Thomas Gleixner2c778652011-03-12 12:20:43 +01001719 cfg = irq_get_chip_data(irq);
Daniel Kiper05e40762010-08-20 00:46:16 +02001720 if (!cfg)
1721 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001722 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001723 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001725 printk(KERN_DEBUG "IRQ%d ", irq);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04001726 for_each_irq_pin(entry, cfg->irq_2_pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 printk("-> %d:%d", entry->apic, entry->pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 printk("\n");
1729 }
1730
1731 printk(KERN_INFO ".................................... done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
Ingo Molnar251e1e42009-07-02 08:54:01 +02001734__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001736 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Ingo Molnar251e1e42009-07-02 08:54:01 +02001738 printk(KERN_DEBUG);
1739
1740 for (i = 0; i < 8; i++)
1741 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1742
1743 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001746__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001748 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001749 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Ingo Molnar251e1e42009-07-02 08:54:01 +02001751 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001753 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001754 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 v = apic_read(APIC_LVR);
1756 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1757 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001758 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 v = apic_read(APIC_TASKPRI);
1761 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1762
Ingo Molnar54168ed2008-08-20 09:07:45 +02001763 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001764 if (!APIC_XAPIC(ver)) {
1765 v = apic_read(APIC_ARBPRI);
1766 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1767 v & APIC_ARBPRI_MASK);
1768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 v = apic_read(APIC_PROCPRI);
1770 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1771 }
1772
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001773 /*
1774 * Remote read supported only in the 82489DX and local APIC for
1775 * Pentium processors.
1776 */
1777 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1778 v = apic_read(APIC_RRR);
1779 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1780 }
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 v = apic_read(APIC_LDR);
1783 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001784 if (!x2apic_enabled()) {
1785 v = apic_read(APIC_DFR);
1786 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 v = apic_read(APIC_SPIV);
1789 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1790
1791 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001792 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001794 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001796 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Ingo Molnar54168ed2008-08-20 09:07:45 +02001798 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1799 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 v = apic_read(APIC_ESR);
1803 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1804 }
1805
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001806 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001807 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1808 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 v = apic_read(APIC_LVTT);
1811 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1812
1813 if (maxlvt > 3) { /* PC is LVT#4. */
1814 v = apic_read(APIC_LVTPC);
1815 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1816 }
1817 v = apic_read(APIC_LVT0);
1818 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1819 v = apic_read(APIC_LVT1);
1820 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1821
1822 if (maxlvt > 2) { /* ERR is LVT#3. */
1823 v = apic_read(APIC_LVTERR);
1824 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1825 }
1826
1827 v = apic_read(APIC_TMICT);
1828 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1829 v = apic_read(APIC_TMCCT);
1830 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1831 v = apic_read(APIC_TDCR);
1832 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001833
1834 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1835 v = apic_read(APIC_EFEAT);
1836 maxlvt = (v >> 16) & 0xff;
1837 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1838 v = apic_read(APIC_ECTRL);
1839 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1840 for (i = 0; i < maxlvt; i++) {
1841 v = apic_read(APIC_EILVTn(i));
1842 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1843 }
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 printk("\n");
1846}
1847
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001848__apicdebuginit(void) print_local_APICs(int maxcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001850 int cpu;
1851
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001852 if (!maxcpu)
1853 return;
1854
Yinghai Luffd5aae2008-08-19 20:50:50 -07001855 preempt_disable();
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001856 for_each_online_cpu(cpu) {
1857 if (cpu >= maxcpu)
1858 break;
Yinghai Luffd5aae2008-08-19 20:50:50 -07001859 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001860 }
Yinghai Luffd5aae2008-08-19 20:50:50 -07001861 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001864__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 unsigned int v;
1867 unsigned long flags;
1868
Jacob Panb81bb372009-11-09 11:27:04 -08001869 if (!legacy_pic->nr_legacy_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return;
1871
1872 printk(KERN_DEBUG "\nprinting PIC contents\n");
1873
Thomas Gleixner5619c282009-07-25 18:35:11 +02001874 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 v = inb(0xa1) << 8 | inb(0x21);
1877 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1878
1879 v = inb(0xa0) << 8 | inb(0x20);
1880 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1881
Ingo Molnar54168ed2008-08-20 09:07:45 +02001882 outb(0x0b,0xa0);
1883 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001885 outb(0x0a,0xa0);
1886 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Thomas Gleixner5619c282009-07-25 18:35:11 +02001888 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1891
1892 v = inb(0x4d1) << 8 | inb(0x4d0);
1893 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1894}
1895
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001896static int __initdata show_lapic = 1;
1897static __init int setup_show_lapic(char *arg)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001898{
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001899 int num = -1;
1900
1901 if (strcmp(arg, "all") == 0) {
1902 show_lapic = CONFIG_NR_CPUS;
1903 } else {
1904 get_option(&arg, &num);
1905 if (num >= 0)
1906 show_lapic = num;
1907 }
1908
1909 return 1;
1910}
1911__setup("show_lapic=", setup_show_lapic);
1912
1913__apicdebuginit(int) print_ICs(void)
1914{
1915 if (apic_verbosity == APIC_QUIET)
1916 return 0;
1917
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001918 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001919
1920 /* don't print out if apic is not there */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001921 if (!cpu_has_apic && !apic_from_smp_config())
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001922 return 0;
1923
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001924 print_local_APICs(show_lapic);
Yinghai Lucda417d2011-10-12 00:33:39 -07001925 print_IO_APICs();
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001926
1927 return 0;
1928}
1929
Naga Chumbalkarded1f6a2011-07-08 08:36:34 +00001930late_initcall(print_ICs);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Yinghai Luefa25592008-08-19 20:50:36 -07001933/* Where if anywhere is the i8259 connect in external int mode */
1934static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1935
Ingo Molnar54168ed2008-08-20 09:07:45 +02001936void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001938 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001939 int apic;
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001940
Jacob Panb81bb372009-11-09 11:27:04 -08001941 if (!legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001942 return;
1943
Ingo Molnar54168ed2008-08-20 09:07:45 +02001944 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001945 int pin;
1946 /* See if any of the pins is in ExtINT mode */
Suresh Siddhab69c6c32011-05-18 16:31:35 -07001947 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001948 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001949 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001950
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001951 /* If the interrupt line is enabled and in ExtInt mode
1952 * I have found the pin where the i8259 is connected.
1953 */
1954 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1955 ioapic_i8259.apic = apic;
1956 ioapic_i8259.pin = pin;
1957 goto found_i8259;
1958 }
1959 }
1960 }
1961 found_i8259:
1962 /* Look to see what if the MP table has reported the ExtINT */
1963 /* If we could not find the appropriate pin by looking at the ioapic
1964 * the i8259 probably is not connected the ioapic but give the
1965 * mptable a chance anyway.
1966 */
1967 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1968 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1969 /* Trust the MP table if nothing is setup in the hardware */
1970 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1971 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1972 ioapic_i8259.pin = i8259_pin;
1973 ioapic_i8259.apic = i8259_apic;
1974 }
1975 /* Complain if the MP table and the hardware disagree */
1976 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1977 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1978 {
1979 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981
1982 /*
1983 * Do not trust the IO-APIC being empty at bootup
1984 */
1985 clear_IO_APIC();
1986}
1987
1988/*
1989 * Not an __init, needed by the reboot code
1990 */
1991void disable_IO_APIC(void)
1992{
1993 /*
1994 * Clear the IO-APIC before rebooting:
1995 */
1996 clear_IO_APIC();
1997
Jacob Panb81bb372009-11-09 11:27:04 -08001998 if (!legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001999 return;
2000
Eric W. Biederman650927e2005-06-25 14:57:44 -07002001 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002002 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002003 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002004 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002005 *
2006 * With interrupt-remapping, for now we will use virtual wire A mode,
2007 * as virtual wire B is little complex (need to configure both
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03002008 * IOAPIC RTE as well as interrupt-remapping table entry).
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002009 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002010 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002011 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002012 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002013
2014 memset(&entry, 0, sizeof(entry));
2015 entry.mask = 0; /* Enabled */
2016 entry.trigger = 0; /* Edge */
2017 entry.irr = 0;
2018 entry.polarity = 0; /* High */
2019 entry.delivery_status = 0;
2020 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002021 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002022 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002023 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002024
2025 /*
2026 * Add it to the IO-APIC irq-routing table:
2027 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002028 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002029 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002030
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002031 /*
2032 * Use virtual wire A mode when interrupt remapping is enabled.
2033 */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04002034 if (cpu_has_apic || apic_from_smp_config())
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04002035 disconnect_bsp_APIC(!intr_remapping_enabled &&
2036 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Ingo Molnar54168ed2008-08-20 09:07:45 +02002039#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040/*
2041 * function to set the IO-APIC physical IDs based on the
2042 * values stored in the MPC table.
2043 *
2044 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2045 */
Sebastian Andrzej Siewiora38c5382010-11-26 17:50:20 +01002046void __init setup_ioapic_ids_from_mpc_nocheck(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 union IO_APIC_reg_00 reg_00;
2049 physid_mask_t phys_id_present_map;
Yinghai Lu6f50d452011-10-12 00:33:48 -07002050 int ioapic_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 int i;
2052 unsigned char old_id;
2053 unsigned long flags;
2054
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002055 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 * This is broken; anything with a real cpu count has to
2057 * circumvent this idiocy regardless.
2058 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002059 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 /*
2062 * Set the IOAPIC ID to the value stored in the MPC table.
2063 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07002064 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 /* Read the register 0 value */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002066 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002067 reg_00.raw = io_apic_read(ioapic_idx, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002068 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002069
Yinghai Lu6f50d452011-10-12 00:33:48 -07002070 old_id = mpc_ioapic_id(ioapic_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Yinghai Lu6f50d452011-10-12 00:33:48 -07002072 if (mpc_ioapic_id(ioapic_idx) >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002074 ioapic_idx, mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2076 reg_00.bits.ID);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002077 ioapics[ioapic_idx].mp_config.apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /*
2081 * Sanity check, is the ID really free? Every APIC in a
2082 * system must have a unique ID or we get lots of nice
2083 * 'stuck on smp_invalidate_needed IPI wait' messages.
2084 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002085 if (apic->check_apicid_used(&phys_id_present_map,
Yinghai Lu6f50d452011-10-12 00:33:48 -07002086 mpc_ioapic_id(ioapic_idx))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002088 ioapic_idx, mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 for (i = 0; i < get_physical_broadcast(); i++)
2090 if (!physid_isset(i, phys_id_present_map))
2091 break;
2092 if (i >= get_physical_broadcast())
2093 panic("Max APIC ID exceeded!\n");
2094 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2095 i);
2096 physid_set(i, phys_id_present_map);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002097 ioapics[ioapic_idx].mp_config.apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 } else {
2099 physid_mask_t tmp;
Yinghai Lu6f50d452011-10-12 00:33:48 -07002100 apic->apicid_to_cpu_present(mpc_ioapic_id(ioapic_idx),
Suresh Siddhad5371432011-05-18 16:31:37 -07002101 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 apic_printk(APIC_VERBOSE, "Setting %d in the "
2103 "phys_id_present_map\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002104 mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2106 }
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 /*
2109 * We need to adjust the IRQ routing table
2110 * if the ID changed.
2111 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07002112 if (old_id != mpc_ioapic_id(ioapic_idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302114 if (mp_irqs[i].dstapic == old_id)
2115 mp_irqs[i].dstapic
Yinghai Lu6f50d452011-10-12 00:33:48 -07002116 = mpc_ioapic_id(ioapic_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /*
Yinghai Lu60d79fd2010-12-07 00:59:49 -08002119 * Update the ID register according to the right value
2120 * from the MPC table if they are different.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002121 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07002122 if (mpc_ioapic_id(ioapic_idx) == reg_00.bits.ID)
Yinghai Lu60d79fd2010-12-07 00:59:49 -08002123 continue;
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 apic_printk(APIC_VERBOSE, KERN_INFO
2126 "...changing IO-APIC physical APIC ID to %d ...",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002127 mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Yinghai Lu6f50d452011-10-12 00:33:48 -07002129 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002130 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002131 io_apic_write(ioapic_idx, 0, reg_00.raw);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002132 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 /*
2135 * Sanity check
2136 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002137 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002138 reg_00.raw = io_apic_read(ioapic_idx, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002139 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002140 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 printk("could not set ID!\n");
2142 else
2143 apic_printk(APIC_VERBOSE, " ok.\n");
2144 }
2145}
Sebastian Andrzej Siewiora38c5382010-11-26 17:50:20 +01002146
2147void __init setup_ioapic_ids_from_mpc(void)
2148{
2149
2150 if (acpi_ioapic)
2151 return;
2152 /*
2153 * Don't check I/O APIC IDs for xAPIC systems. They have
2154 * no meaning without the serial APIC bus.
2155 */
2156 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2157 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2158 return;
2159 setup_ioapic_ids_from_mpc_nocheck();
2160}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002161#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002163int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002164
2165static int __init notimercheck(char *s)
2166{
2167 no_timer_check = 1;
2168 return 1;
2169}
2170__setup("no_timer_check", notimercheck);
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172/*
2173 * There is a nasty bug in some older SMP boards, their mptable lies
2174 * about the timer IRQ. We do the following to work around the situation:
2175 *
2176 * - timer IRQ defaults to IO-APIC IRQ
2177 * - if this function detects that timer IRQs are defunct, then we fall
2178 * back to ISA timer IRQs
2179 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002180static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002183 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Zachary Amsden8542b202006-12-07 02:14:09 +01002185 if (no_timer_check)
2186 return 1;
2187
Ingo Molnar4aae0702007-12-18 18:05:58 +01002188 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 local_irq_enable();
2190 /* Let ten ticks pass... */
2191 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002192 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /*
2195 * Expect a few ticks at least, to be sure some possible
2196 * glue logic does not lock up after one or two first
2197 * ticks in a non-ExtINT mode. Also the local APIC
2198 * might have cached one ExtINT interrupt. Finally, at
2199 * least one tick may be lost due to delays.
2200 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002201
2202 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002203 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return 0;
2206}
2207
2208/*
2209 * In the SMP+IOAPIC case it might happen that there are an unspecified
2210 * number of pending IRQ events unhandled. These cases are very rare,
2211 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2212 * better to do it this way as thus we do not have to be aware of
2213 * 'pending' interrupts in the IRQ path, except at this point.
2214 */
2215/*
2216 * Edge triggered needs to resend any interrupt
2217 * that was delayed but this is now handled in the device
2218 * independent code.
2219 */
2220
2221/*
2222 * Starting up a edge-triggered IO-APIC interrupt is
2223 * nasty - we need to make sure that we get the edge.
2224 * If it is already asserted for some reason, we need
2225 * return 1 to indicate that is was pending.
2226 *
2227 * This is not complete - we should be able to fake
2228 * an edge even if it isn't on the 8259A...
2229 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002230
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002231static unsigned int startup_ioapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002233 int was_pending = 0, irq = data->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 unsigned long flags;
2235
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002236 raw_spin_lock_irqsave(&ioapic_lock, flags);
Jacob Panb81bb372009-11-09 11:27:04 -08002237 if (irq < legacy_pic->nr_legacy_irqs) {
Thomas Gleixner4305df92010-09-28 15:01:33 +02002238 legacy_pic->mask(irq);
Jacob Panb81bb372009-11-09 11:27:04 -08002239 if (legacy_pic->irq_pending(irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 was_pending = 1;
2241 }
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002242 __unmask_ioapic(data->chip_data);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002243 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 return was_pending;
2246}
2247
Thomas Gleixner90297c52010-09-28 16:03:54 +02002248static int ioapic_retrigger_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002250 struct irq_cfg *cfg = data->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002251 unsigned long flags;
2252
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002253 raw_spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002254 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002255 raw_spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002256
2257 return 1;
2258}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002259
2260/*
2261 * Level and edge triggered IO-APIC interrupts need different handling,
2262 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2263 * handled with the level-triggered descriptor, but that one has slightly
2264 * more overhead. Level-triggered interrupts cannot be handled with the
2265 * edge-triggered handler, without risking IRQ storms and other ugly
2266 * races.
2267 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002268
Yinghai Lu497c9a12008-08-19 20:50:28 -07002269#ifdef CONFIG_SMP
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002270void send_cleanup_vector(struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002271{
2272 cpumask_var_t cleanup_mask;
2273
2274 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2275 unsigned int i;
Gary Hadee85abf82009-04-08 14:07:25 -07002276 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2277 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2278 } else {
2279 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002280 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2281 free_cpumask_var(cleanup_mask);
2282 }
2283 cfg->move_in_progress = 0;
2284}
2285
Ingo Molnar44204712009-05-01 19:02:50 +02002286static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002287{
2288 int apic, pin;
2289 struct irq_pin_list *entry;
2290 u8 vector = cfg->vector;
2291
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04002292 for_each_irq_pin(entry, cfg->irq_2_pin) {
Gary Hadee85abf82009-04-08 14:07:25 -07002293 unsigned int reg;
2294
Gary Hadee85abf82009-04-08 14:07:25 -07002295 apic = entry->apic;
2296 pin = entry->pin;
2297 /*
2298 * With interrupt-remapping, destination information comes
2299 * from interrupt-remapping table entry.
2300 */
Thomas Gleixner1a0730d2010-10-11 11:55:37 +02002301 if (!irq_remapped(cfg))
Gary Hadee85abf82009-04-08 14:07:25 -07002302 io_apic_write(apic, 0x11 + pin*2, dest);
2303 reg = io_apic_read(apic, 0x10 + pin*2);
2304 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2305 reg |= vector;
2306 io_apic_modify(apic, 0x10 + pin*2, reg);
Gary Hadee85abf82009-04-08 14:07:25 -07002307 }
2308}
2309
2310/*
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002311 * Either sets data->affinity to a valid value, and returns
Suresh Siddha18374d82009-12-17 18:29:46 -08002312 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002313 * leaves data->affinity untouched.
Gary Hadee85abf82009-04-08 14:07:25 -07002314 */
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002315int __ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2316 unsigned int *dest_id)
Gary Hadee85abf82009-04-08 14:07:25 -07002317{
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002318 struct irq_cfg *cfg = data->chip_data;
Gary Hadee85abf82009-04-08 14:07:25 -07002319
2320 if (!cpumask_intersects(mask, cpu_online_mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002321 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002322
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002323 if (assign_irq_vector(data->irq, data->chip_data, mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002324 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002325
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002326 cpumask_copy(data->affinity, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002327
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002328 *dest_id = apic->cpu_mask_to_apicid_and(mask, cfg->domain);
Suresh Siddha18374d82009-12-17 18:29:46 -08002329 return 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002330}
2331
Ingo Molnar44204712009-05-01 19:02:50 +02002332static int
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002333ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2334 bool force)
Gary Hadee85abf82009-04-08 14:07:25 -07002335{
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002336 unsigned int dest, irq = data->irq;
Gary Hadee85abf82009-04-08 14:07:25 -07002337 unsigned long flags;
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002338 int ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002339
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002340 raw_spin_lock_irqsave(&ioapic_lock, flags);
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002341 ret = __ioapic_set_affinity(data, mask, &dest);
Suresh Siddha18374d82009-12-17 18:29:46 -08002342 if (!ret) {
Gary Hadee85abf82009-04-08 14:07:25 -07002343 /* Only the high 8 bits are valid. */
2344 dest = SET_APIC_LOGICAL_ID(dest);
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002345 __target_IO_APIC_irq(irq, dest, data->chip_data);
Gary Hadee85abf82009-04-08 14:07:25 -07002346 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002347 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002348 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002349}
2350
Suresh Siddhad3f13812011-08-23 17:05:25 -07002351#ifdef CONFIG_IRQ_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002352
2353/*
2354 * Migrate the IO-APIC irq in the presence of intr-remapping.
2355 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002356 * For both level and edge triggered, irq migration is a simple atomic
2357 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002358 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002359 * For level triggered, we eliminate the io-apic RTE modification (with the
2360 * updated vector information), by using a virtual vector (io-apic pin number).
2361 * Real vector that is used for interrupting cpu will be coming from
2362 * the interrupt-remapping table entry.
Suresh Siddha13ea20f2011-08-23 17:05:23 -07002363 *
2364 * As the migration is a simple atomic update of IRTE, the same mechanism
2365 * is used to migrate MSI irq's in the presence of interrupt-remapping.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002366 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002367static int
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002368ir_ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2369 bool force)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002370{
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002371 struct irq_cfg *cfg = data->chip_data;
2372 unsigned int dest, irq = data->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002373 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002374
Mike Travis22f65d32008-12-16 17:33:56 -08002375 if (!cpumask_intersects(mask, cpu_online_mask))
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002376 return -EINVAL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002377
2378 if (get_irte(irq, &irte))
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002379 return -EBUSY;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002380
Yinghai Lu3145e942008-12-05 18:58:34 -08002381 if (assign_irq_vector(irq, cfg, mask))
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002382 return -EBUSY;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002383
Ingo Molnardebccb32009-01-28 15:20:18 +01002384 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002385
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386 irte.vector = cfg->vector;
2387 irte.dest_id = IRTE_DEST(dest);
2388
2389 /*
Suresh Siddha13ea20f2011-08-23 17:05:23 -07002390 * Atomically updates the IRTE with the new destination, vector
2391 * and flushes the interrupt entry cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392 */
2393 modify_irte(irq, &irte);
2394
Suresh Siddha13ea20f2011-08-23 17:05:23 -07002395 /*
2396 * After this point, all the interrupts will start arriving
2397 * at the new destination. So, time to cleanup the previous
2398 * vector allocation.
2399 */
Mike Travis22f65d32008-12-16 17:33:56 -08002400 if (cfg->move_in_progress)
2401 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002402
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002403 cpumask_copy(data->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002404 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002405}
2406
Suresh Siddha29b61be2009-03-16 17:05:02 -07002407#else
Thomas Gleixnerf19f5ec2010-10-08 21:50:22 +02002408static inline int
2409ir_ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2410 bool force)
Suresh Siddha29b61be2009-03-16 17:05:02 -07002411{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002412 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002413}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002414#endif
2415
Yinghai Lu497c9a12008-08-19 20:50:28 -07002416asmlinkage void smp_irq_move_cleanup_interrupt(void)
2417{
2418 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002419
Yinghai Lu497c9a12008-08-19 20:50:28 -07002420 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002421 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002422 irq_enter();
2423
2424 me = smp_processor_id();
2425 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2426 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002427 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002428 struct irq_desc *desc;
2429 struct irq_cfg *cfg;
Tejun Heo0a3aee02010-12-18 16:28:55 +01002430 irq = __this_cpu_read(vector_irq[vector]);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002431
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002432 if (irq == -1)
2433 continue;
2434
Yinghai Lu497c9a12008-08-19 20:50:28 -07002435 desc = irq_to_desc(irq);
2436 if (!desc)
2437 continue;
2438
2439 cfg = irq_cfg(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +01002440 raw_spin_lock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002441
Suresh Siddha7f41c2e2010-01-06 10:56:31 -08002442 /*
2443 * Check if the irq migration is in progress. If so, we
2444 * haven't received the cleanup request yet for this irq.
2445 */
2446 if (cfg->move_in_progress)
2447 goto unlock;
2448
Mike Travis22f65d32008-12-16 17:33:56 -08002449 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002450 goto unlock;
2451
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002452 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2453 /*
2454 * Check if the vector that needs to be cleanedup is
2455 * registered at the cpu's IRR. If so, then this is not
2456 * the best time to clean it up. Lets clean it up in the
2457 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2458 * to myself.
2459 */
2460 if (irr & (1 << (vector % 32))) {
2461 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2462 goto unlock;
2463 }
Tejun Heo0a3aee02010-12-18 16:28:55 +01002464 __this_cpu_write(vector_irq[vector], -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002465unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +01002466 raw_spin_unlock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002467 }
2468
2469 irq_exit();
2470}
2471
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002472static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002473{
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002474 unsigned me;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002475
Yinghai Lufcef5912009-04-27 17:58:23 -07002476 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002477 return;
2478
Yinghai Lu497c9a12008-08-19 20:50:28 -07002479 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002480
Yinghai Lufcef5912009-04-27 17:58:23 -07002481 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002482 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002483}
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002484
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002485static void irq_complete_move(struct irq_cfg *cfg)
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002486{
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002487 __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002488}
2489
2490void irq_force_complete_move(int irq)
2491{
Thomas Gleixner2c778652011-03-12 12:20:43 +01002492 struct irq_cfg *cfg = irq_get_chip_data(irq);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002493
Prarit Bhargavabbd391a2010-04-27 11:24:42 -04002494 if (!cfg)
2495 return;
2496
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002497 __irq_complete_move(cfg, cfg->vector);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002498}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002499#else
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002500static inline void irq_complete_move(struct irq_cfg *cfg) { }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002501#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002502
Thomas Gleixner90297c52010-09-28 16:03:54 +02002503static void ack_apic_edge(struct irq_data *data)
Yinghai Lu1d025192008-08-19 20:50:34 -07002504{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002505 irq_complete_move(data->chip_data);
Thomas Gleixner08221112011-02-04 18:56:11 +01002506 irq_move_irq(data);
Yinghai Lu1d025192008-08-19 20:50:34 -07002507 ack_APIC_irq();
2508}
2509
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002510atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002511
Thomas Gleixner90297c52010-09-28 16:03:54 +02002512static void ack_apic_level(struct irq_data *data)
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002513{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002514 struct irq_cfg *cfg = data->chip_data;
2515 int i, do_unmask_irq = 0, irq = data->irq;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002516 unsigned long v;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002517
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002518 irq_complete_move(cfg);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002519#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002520 /* If we are moving the irq we need to mask it */
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01002521 if (unlikely(irqd_is_setaffinity_pending(data))) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002522 do_unmask_irq = 1;
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002523 mask_ioapic(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002524 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002525#endif
2526
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002527 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002528 * It appears there is an erratum which affects at least version 0x11
2529 * of I/O APIC (that's the 82093AA and cores integrated into various
2530 * chipsets). Under certain conditions a level-triggered interrupt is
2531 * erroneously delivered as edge-triggered one but the respective IRR
2532 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2533 * message but it will never arrive and further interrupts are blocked
2534 * from the source. The exact reason is so far unknown, but the
2535 * phenomenon was observed when two consecutive interrupt requests
2536 * from a given source get delivered to the same CPU and the source is
2537 * temporarily disabled in between.
2538 *
2539 * A workaround is to simulate an EOI message manually. We achieve it
2540 * by setting the trigger mode to edge and then to level when the edge
2541 * trigger mode gets detected in the TMR of a local APIC for a
2542 * level-triggered interrupt. We mask the source for the time of the
2543 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2544 * The idea is from Manfred Spraul. --macro
Suresh Siddha1c839952009-12-01 15:31:17 -08002545 *
2546 * Also in the case when cpu goes offline, fixup_irqs() will forward
2547 * any unhandled interrupt on the offlined cpu to the new cpu
2548 * destination that is handling the corresponding interrupt. This
2549 * interrupt forwarding is done via IPI's. Hence, in this case also
2550 * level-triggered io-apic interrupt will be seen as an edge
2551 * interrupt in the IRR. And we can't rely on the cpu's EOI
2552 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2553 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2554 * supporting EOI register, we do an explicit EOI to clear the
2555 * remote IRR and on IO-APIC's which don't have an EOI register,
2556 * we use the above logic (mask+edge followed by unmask+level) from
2557 * Manfred Spraul to clear the remote IRR.
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002558 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002559 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002560 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002561
Ingo Molnar54168ed2008-08-20 09:07:45 +02002562 /*
2563 * We must acknowledge the irq before we move it or the acknowledge will
2564 * not propagate properly.
2565 */
2566 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002567
Suresh Siddha1c839952009-12-01 15:31:17 -08002568 /*
2569 * Tail end of clearing remote IRR bit (either by delivering the EOI
2570 * message via io-apic EOI register write or simulating it using
2571 * mask+edge followed by unnask+level logic) manually when the
2572 * level triggered interrupt is seen as the edge triggered interrupt
2573 * at the cpu.
2574 */
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002575 if (!(v & (1 << (i & 0x1f)))) {
2576 atomic_inc(&irq_mis_count);
2577
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002578 eoi_ioapic_irq(irq, cfg);
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002579 }
2580
Ingo Molnar54168ed2008-08-20 09:07:45 +02002581 /* Now we can move and renable the irq */
2582 if (unlikely(do_unmask_irq)) {
2583 /* Only migrate the irq if the ack has been received.
2584 *
2585 * On rare occasions the broadcast level triggered ack gets
2586 * delayed going to ioapics, and if we reprogram the
2587 * vector while Remote IRR is still set the irq will never
2588 * fire again.
2589 *
2590 * To prevent this scenario we read the Remote IRR bit
2591 * of the ioapic. This has two effects.
2592 * - On any sane system the read of the ioapic will
2593 * flush writes (and acks) going to the ioapic from
2594 * this cpu.
2595 * - We get to see if the ACK has actually been delivered.
2596 *
2597 * Based on failed experiments of reprogramming the
2598 * ioapic entry from outside of irq context starting
2599 * with masking the ioapic entry and then polling until
2600 * Remote IRR was clear before reprogramming the
2601 * ioapic I don't trust the Remote IRR bit to be
2602 * completey accurate.
2603 *
2604 * However there appears to be no other way to plug
2605 * this race, so if the Remote IRR bit is not
2606 * accurate and is causing problems then it is a hardware bug
2607 * and you can go talk to the chipset vendor about it.
2608 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002609 if (!io_apic_level_ack_pending(cfg))
Thomas Gleixner08221112011-02-04 18:56:11 +01002610 irq_move_masked_irq(data);
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002611 unmask_ioapic(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002612 }
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002613}
Yinghai Lu1d025192008-08-19 20:50:34 -07002614
Suresh Siddhad3f13812011-08-23 17:05:25 -07002615#ifdef CONFIG_IRQ_REMAP
Thomas Gleixner90297c52010-09-28 16:03:54 +02002616static void ir_ack_apic_edge(struct irq_data *data)
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002617{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002618 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002619}
2620
Thomas Gleixner90297c52010-09-28 16:03:54 +02002621static void ir_ack_apic_level(struct irq_data *data)
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002622{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002623 ack_APIC_irq();
Thomas Gleixner90297c52010-09-28 16:03:54 +02002624 eoi_ioapic_irq(data->irq, data->chip_data);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002625}
Suresh Siddhac39d77f2011-08-23 17:05:24 -07002626
2627static void ir_print_prefix(struct irq_data *data, struct seq_file *p)
2628{
2629 seq_printf(p, " IR-%s", data->chip->name);
2630}
2631
2632static void irq_remap_modify_chip_defaults(struct irq_chip *chip)
2633{
2634 chip->irq_print_chip = ir_print_prefix;
2635 chip->irq_ack = ir_ack_apic_edge;
2636 chip->irq_eoi = ir_ack_apic_level;
2637
2638#ifdef CONFIG_SMP
2639 chip->irq_set_affinity = ir_ioapic_set_affinity;
2640#endif
2641}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002642#endif /* CONFIG_IRQ_REMAP */
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002643
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002644static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002645 .name = "IO-APIC",
2646 .irq_startup = startup_ioapic_irq,
2647 .irq_mask = mask_ioapic_irq,
2648 .irq_unmask = unmask_ioapic_irq,
2649 .irq_ack = ack_apic_edge,
2650 .irq_eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002651#ifdef CONFIG_SMP
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002652 .irq_set_affinity = ioapic_set_affinity,
Ashok Raj54d5d422005-09-06 15:16:15 -07002653#endif
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002654 .irq_retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655};
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657static inline void init_IO_APIC_traps(void)
2658{
Yinghai Luda51a822008-08-19 20:50:25 -07002659 struct irq_cfg *cfg;
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02002660 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 /*
2663 * NOTE! The local APIC isn't very good at handling
2664 * multiple interrupts at the same interrupt level.
2665 * As the interrupt level is determined by taking the
2666 * vector number and shifting that right by 4, we
2667 * want to spread these out a bit so that they don't
2668 * all fall in the same interrupt level.
2669 *
2670 * Also, we've got to be careful not to trash gate
2671 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2672 */
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02002673 for_each_active_irq(irq) {
Thomas Gleixner2c778652011-03-12 12:20:43 +01002674 cfg = irq_get_chip_data(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002675 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /*
2677 * Hmm.. We don't have an entry for this,
2678 * so default to an old-fashioned 8259
2679 * interrupt if we can..
2680 */
Jacob Panb81bb372009-11-09 11:27:04 -08002681 if (irq < legacy_pic->nr_legacy_irqs)
2682 legacy_pic->make_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002683 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 /* Strange. Oh, well.. */
Thomas Gleixner2c778652011-03-12 12:20:43 +01002685 irq_set_chip(irq, &no_irq_chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
2687 }
2688}
2689
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002690/*
2691 * The local APIC irq-chip implementation:
2692 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Thomas Gleixner90297c52010-09-28 16:03:54 +02002694static void mask_lapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 unsigned long v;
2697
2698 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002699 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
Thomas Gleixner90297c52010-09-28 16:03:54 +02002702static void unmask_lapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002704 unsigned long v;
2705
2706 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002707 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
Thomas Gleixner90297c52010-09-28 16:03:54 +02002710static void ack_lapic_irq(struct irq_data *data)
Yinghai Lu1d025192008-08-19 20:50:34 -07002711{
2712 ack_APIC_irq();
2713}
2714
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002715static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002716 .name = "local-APIC",
Thomas Gleixner90297c52010-09-28 16:03:54 +02002717 .irq_mask = mask_lapic_irq,
2718 .irq_unmask = unmask_lapic_irq,
2719 .irq_ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720};
2721
Thomas Gleixner60c69942010-09-28 17:28:38 +02002722static void lapic_register_intr(int irq)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002723{
Thomas Gleixner60c69942010-09-28 17:28:38 +02002724 irq_clear_status_flags(irq, IRQ_LEVEL);
Thomas Gleixner2c778652011-03-12 12:20:43 +01002725 irq_set_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002726 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002727}
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729/*
2730 * This looks a bit hackish but it's about the only one way of sending
2731 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2732 * not support the ExtINT mode, unfortunately. We need to send these
2733 * cycles as some i82489DX-based boards have glue logic that keeps the
2734 * 8259A interrupt line asserted until INTA. --macro
2735 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002736static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002738 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 struct IO_APIC_route_entry entry0, entry1;
2740 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002742 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002743 if (pin == -1) {
2744 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002746 }
2747 apic = find_isa_irq_apic(8, mp_INT);
2748 if (apic == -1) {
2749 WARN_ON_ONCE(1);
2750 return;
2751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Andi Kleencf4c6a22006-09-26 10:52:30 +02002753 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002754 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 memset(&entry1, 0, sizeof(entry1));
2757
2758 entry1.dest_mode = 0; /* physical delivery */
2759 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002760 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 entry1.delivery_mode = dest_ExtINT;
2762 entry1.polarity = entry0.polarity;
2763 entry1.trigger = 0;
2764 entry1.vector = 0;
2765
Andi Kleencf4c6a22006-09-26 10:52:30 +02002766 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 save_control = CMOS_READ(RTC_CONTROL);
2769 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2770 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2771 RTC_FREQ_SELECT);
2772 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2773
2774 i = 100;
2775 while (i-- > 0) {
2776 mdelay(10);
2777 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2778 i -= 10;
2779 }
2780
2781 CMOS_WRITE(save_control, RTC_CONTROL);
2782 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002783 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Andi Kleencf4c6a22006-09-26 10:52:30 +02002785 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
Yinghai Luefa25592008-08-19 20:50:36 -07002788static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002789/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002790static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002791{
2792 disable_timer_pin_1 = 1;
2793 return 0;
2794}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002795early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002796
2797int timer_through_8259 __initdata;
2798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799/*
2800 * This code may look a bit paranoid, but it's supposed to cooperate with
2801 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2802 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2803 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002804 *
2805 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002807static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808{
Thomas Gleixner2c778652011-03-12 12:20:43 +01002809 struct irq_cfg *cfg = irq_get_chip_data(0);
Robert Richterf6e94562010-07-21 19:03:58 +02002810 int node = cpu_to_node(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002811 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002812 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002813 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002814
2815 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 /*
2818 * get/set the timer IRQ vector:
2819 */
Thomas Gleixner4305df92010-09-28 15:01:33 +02002820 legacy_pic->mask(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002821 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002824 * As IRQ0 is to be enabled in the 8259A, the virtual
2825 * wire has to be disabled in the local APIC. Also
2826 * timer interrupts need to be acknowledged manually in
2827 * the 8259A for the i82489DX when using the NMI
2828 * watchdog as that APIC treats NMIs as level-triggered.
2829 * The AEOI mode will finish them in the 8259A
2830 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002832 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Jacob Panb81bb372009-11-09 11:27:04 -08002833 legacy_pic->init(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002835 pin1 = find_isa_irq_pin(0, mp_INT);
2836 apic1 = find_isa_irq_apic(0, mp_INT);
2837 pin2 = ioapic_i8259.pin;
2838 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002840 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2841 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002842 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002844 /*
2845 * Some BIOS writers are clueless and report the ExtINTA
2846 * I/O APIC input from the cascaded 8259A as the timer
2847 * interrupt input. So just in case, if only one pin
2848 * was found above, try it both directly and through the
2849 * 8259A.
2850 */
2851 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002852 if (intr_remapping_enabled)
2853 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002854 pin1 = pin2;
2855 apic1 = apic2;
2856 no_pin1 = 1;
2857 } else if (pin2 == -1) {
2858 pin2 = pin1;
2859 apic2 = apic1;
2860 }
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (pin1 != -1) {
2863 /*
2864 * Ok, does IRQ0 through the IOAPIC work?
2865 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002866 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002867 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002868 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002869 } else {
Thomas Gleixner60c69942010-09-28 17:28:38 +02002870 /* for edge trigger, setup_ioapic_irq already
Yinghai Luf72dcca2009-02-08 16:18:03 -08002871 * leave it unmasked.
2872 * so only need to unmask if it is level-trigger
2873 * do we really have level trigger timer?
2874 */
2875 int idx;
2876 idx = find_irq_entry(apic1, pin1, mp_INT);
2877 if (idx != -1 && irq_trigger(idx))
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002878 unmask_ioapic(cfg);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (timer_irq_works()) {
Chuck Ebbert66759a02005-09-12 18:49:25 +02002881 if (disable_timer_pin_1 > 0)
2882 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002883 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002885 if (intr_remapping_enabled)
2886 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002887 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002888 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002889 if (!no_pin1)
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002890 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2891 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002893 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2894 "(IRQ0) through the 8259A ...\n");
2895 apic_printk(APIC_QUIET, KERN_INFO
2896 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 /*
2898 * legacy devices should be connected to IO APIC #0
2899 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002900 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002901 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Thomas Gleixner4305df92010-09-28 15:01:33 +02002902 legacy_pic->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002904 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002905 timer_through_8259 = 1;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002906 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908 /*
2909 * Cleanup, just in case ...
2910 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002911 local_irq_disable();
Thomas Gleixner4305df92010-09-28 15:01:33 +02002912 legacy_pic->mask(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002913 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002914 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002917 apic_printk(APIC_QUIET, KERN_INFO
2918 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Thomas Gleixner60c69942010-09-28 17:28:38 +02002920 lapic_register_intr(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002921 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Thomas Gleixner4305df92010-09-28 15:01:33 +02002922 legacy_pic->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002925 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002928 local_irq_disable();
Thomas Gleixner4305df92010-09-28 15:01:33 +02002929 legacy_pic->mask(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002930 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002931 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002933 apic_printk(APIC_QUIET, KERN_INFO
2934 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jacob Panb81bb372009-11-09 11:27:04 -08002936 legacy_pic->init(0);
2937 legacy_pic->make_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002938 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 unlock_ExtINT_logic();
2941
2942 if (timer_irq_works()) {
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002943 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002944 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002946 local_irq_disable();
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002947 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a02008-07-14 19:08:13 +01002949 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002950out:
2951 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952}
2953
2954/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002955 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2956 * to devices. However there may be an I/O APIC pin available for
2957 * this interrupt regardless. The pin may be left unconnected, but
2958 * typically it will be reused as an ExtINT cascade interrupt for
2959 * the master 8259A. In the MPS case such a pin will normally be
2960 * reported as an ExtINT interrupt in the MP table. With ACPI
2961 * there is no provision for ExtINT interrupts, and in the absence
2962 * of an override it would be treated as an ordinary ISA I/O APIC
2963 * interrupt, that is edge-triggered and unmasked by default. We
2964 * used to do this, but it caused problems on some systems because
2965 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2966 * the same ExtINT cascade interrupt to drive the local APIC of the
2967 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2968 * the I/O APIC in all cases now. No actual device should request
2969 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002971#define PIC_IRQS (1UL << PIC_CASCADE_IR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973void __init setup_IO_APIC(void)
2974{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002975
Ingo Molnar54168ed2008-08-20 09:07:45 +02002976 /*
2977 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2978 */
Jacob Panb81bb372009-11-09 11:27:04 -08002979 io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Ingo Molnar54168ed2008-08-20 09:07:45 +02002981 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002982 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02002983 * Set up IO-APIC IRQ routing.
2984 */
Thomas Gleixnerde934102009-08-20 09:27:29 +02002985 x86_init.mpparse.setup_ioapic_ids();
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 sync_Arb_IDs();
2988 setup_IO_APIC_irqs();
2989 init_IO_APIC_traps();
Jacob Panb81bb372009-11-09 11:27:04 -08002990 if (legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002991 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
2994/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03002995 * Called after all the initialization is done. If we didn't find any
Ingo Molnar54168ed2008-08-20 09:07:45 +02002996 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999static int __init io_apic_bug_finalize(void)
3000{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003001 if (sis_apic_bug == -1)
3002 sis_apic_bug = 0;
3003 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004}
3005
3006late_initcall(io_apic_bug_finalize);
3007
Yinghai Lu6f50d452011-10-12 00:33:48 -07003008static void resume_ioapic_id(int ioapic_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 unsigned long flags;
3011 union IO_APIC_reg_00 reg_00;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003012
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003013 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07003014 reg_00.raw = io_apic_read(ioapic_idx, 0);
3015 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx)) {
3016 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
3017 io_apic_write(ioapic_idx, 0, reg_00.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003019 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020}
3021
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003022static void ioapic_resume(void)
3023{
Yinghai Lu6f50d452011-10-12 00:33:48 -07003024 int ioapic_idx;
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003025
Yinghai Lu6f50d452011-10-12 00:33:48 -07003026 for (ioapic_idx = nr_ioapics - 1; ioapic_idx >= 0; ioapic_idx--)
3027 resume_ioapic_id(ioapic_idx);
Suresh Siddha15bac202011-05-18 16:31:34 -07003028
3029 restore_ioapic_entries();
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003030}
3031
3032static struct syscore_ops ioapic_syscore_ops = {
Suresh Siddha15bac202011-05-18 16:31:34 -07003033 .suspend = save_ioapic_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 .resume = ioapic_resume,
3035};
3036
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003037static int __init ioapic_init_ops(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003039 register_syscore_ops(&ioapic_syscore_ops);
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return 0;
3042}
3043
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01003044device_initcall(ioapic_init_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003046/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003047 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003048 */
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003049unsigned int create_irq_nr(unsigned int from, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003050{
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003051 struct irq_cfg *cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003052 unsigned long flags;
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003053 unsigned int ret = 0;
3054 int irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003055
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003056 if (from < nr_irqs_gsi)
3057 from = nr_irqs_gsi;
3058
3059 irq = alloc_irq_from(from, node);
3060 if (irq < 0)
3061 return 0;
3062 cfg = alloc_irq_cfg(irq, node);
3063 if (!cfg) {
3064 free_irq_at(irq, NULL);
3065 return 0;
3066 }
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003067
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003068 raw_spin_lock_irqsave(&vector_lock, flags);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003069 if (!__assign_irq_vector(irq, cfg, apic->target_cpus()))
3070 ret = irq;
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003071 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003072
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003073 if (ret) {
Thomas Gleixner2c778652011-03-12 12:20:43 +01003074 irq_set_chip_data(irq, cfg);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003075 irq_clear_status_flags(irq, IRQ_NOREQUEST);
3076 } else {
3077 free_irq_at(irq, cfg);
3078 }
3079 return ret;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003080}
3081
Yinghai Lu199751d2008-08-19 20:50:27 -07003082int create_irq(void)
3083{
Robert Richterf6e94562010-07-21 19:03:58 +02003084 int node = cpu_to_node(0);
Yinghai Lube5d5352008-12-05 18:58:33 -08003085 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003086 int irq;
3087
Yinghai Lube5d5352008-12-05 18:58:33 -08003088 irq_want = nr_irqs_gsi;
Yinghai Lud047f532009-04-27 18:02:23 -07003089 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003090
3091 if (irq == 0)
3092 irq = -1;
3093
3094 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003095}
3096
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003097void destroy_irq(unsigned int irq)
3098{
Thomas Gleixner2c778652011-03-12 12:20:43 +01003099 struct irq_cfg *cfg = irq_get_chip_data(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003100 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003101
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003102 irq_set_status_flags(irq, IRQ_NOREQUEST|IRQ_NOPROBE);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003103
Yinghai Lu7b794622010-10-30 01:19:29 -07003104 if (irq_remapped(cfg))
Yinghai Lu97179672010-10-18 13:47:48 -07003105 free_irte(irq);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003106 raw_spin_lock_irqsave(&vector_lock, flags);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003107 __clear_irq_vector(irq, cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003108 raw_spin_unlock_irqrestore(&vector_lock, flags);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003109 free_irq_at(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003110}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003111
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003112/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003113 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003114 */
3115#ifdef CONFIG_PCI_MSI
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003116static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3117 struct msi_msg *msg, u8 hpet_id)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003118{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003119 struct irq_cfg *cfg;
3120 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003121 unsigned dest;
3122
Jan Beulichf1182632009-01-14 12:27:35 +00003123 if (disable_apic)
3124 return -ENXIO;
3125
Yinghai Lu3145e942008-12-05 18:58:34 -08003126 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003127 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003128 if (err)
3129 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003130
Ingo Molnardebccb32009-01-28 15:20:18 +01003131 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003132
Thomas Gleixner1a0e62a2011-03-12 13:47:18 +01003133 if (irq_remapped(cfg)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003134 struct irte irte;
3135 int ir_index;
3136 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003137
Ingo Molnar54168ed2008-08-20 09:07:45 +02003138 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3139 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003140
Suresh Siddha62a92f42010-08-27 11:09:49 -07003141 prepare_irte(&irte, cfg->vector, dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003142
Weidong Hanf007e992009-05-23 00:41:15 +08003143 /* Set source-id of interrupt request */
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003144 if (pdev)
3145 set_msi_sid(&irte, pdev);
3146 else
3147 set_hpet_sid(&irte, hpet_id);
Weidong Hanf007e992009-05-23 00:41:15 +08003148
Ingo Molnar54168ed2008-08-20 09:07:45 +02003149 modify_irte(irq, &irte);
3150
3151 msg->address_hi = MSI_ADDR_BASE_HI;
3152 msg->data = sub_handle;
3153 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3154 MSI_ADDR_IR_SHV |
3155 MSI_ADDR_IR_INDEX1(ir_index) |
3156 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003157 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003158 if (x2apic_enabled())
3159 msg->address_hi = MSI_ADDR_BASE_HI |
3160 MSI_ADDR_EXT_DEST_ID(dest);
3161 else
3162 msg->address_hi = MSI_ADDR_BASE_HI;
3163
Ingo Molnar54168ed2008-08-20 09:07:45 +02003164 msg->address_lo =
3165 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003166 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003167 MSI_ADDR_DEST_MODE_PHYSICAL:
3168 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003169 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003170 MSI_ADDR_REDIRECTION_CPU:
3171 MSI_ADDR_REDIRECTION_LOWPRI) |
3172 MSI_ADDR_DEST_ID(dest);
3173
3174 msg->data =
3175 MSI_DATA_TRIGGER_EDGE |
3176 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003177 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003178 MSI_DATA_DELIVERY_FIXED:
3179 MSI_DATA_DELIVERY_LOWPRI) |
3180 MSI_DATA_VECTOR(cfg->vector);
3181 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003182 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003183}
3184
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003185#ifdef CONFIG_SMP
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003186static int
3187msi_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003188{
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003189 struct irq_cfg *cfg = data->chip_data;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003190 struct msi_msg msg;
3191 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003192
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003193 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003194 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003195
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003196 __get_cached_msi_msg(data->msi_desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003197
3198 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003199 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003200 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3201 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3202
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003203 __write_msi_msg(data->msi_desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003204
3205 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003206}
3207#endif /* CONFIG_SMP */
3208
3209/*
3210 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3211 * which implement the MSI or MSI-X Capability Structure.
3212 */
3213static struct irq_chip msi_chip = {
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003214 .name = "PCI-MSI",
3215 .irq_unmask = unmask_msi_irq,
3216 .irq_mask = mask_msi_irq,
3217 .irq_ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003218#ifdef CONFIG_SMP
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003219 .irq_set_affinity = msi_set_affinity,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003220#endif
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003221 .irq_retrigger = ioapic_retrigger_irq,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003222};
3223
Ingo Molnar54168ed2008-08-20 09:07:45 +02003224/*
3225 * Map the PCI dev to the corresponding remapping hardware unit
3226 * and allocate 'nvec' consecutive interrupt-remapping table entries
3227 * in it.
3228 */
3229static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3230{
3231 struct intel_iommu *iommu;
3232 int index;
3233
3234 iommu = map_dev_to_ir(dev);
3235 if (!iommu) {
3236 printk(KERN_ERR
3237 "Unable to map PCI %s to iommu\n", pci_name(dev));
3238 return -ENOENT;
3239 }
3240
3241 index = alloc_irte(iommu, irq, nvec);
3242 if (index < 0) {
3243 printk(KERN_ERR
3244 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003245 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003246 return -ENOSPC;
3247 }
3248 return index;
3249}
Yinghai Lu1d025192008-08-19 20:50:34 -07003250
Yinghai Lu3145e942008-12-05 18:58:34 -08003251static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003252{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003253 struct irq_chip *chip = &msi_chip;
Yinghai Lu1d025192008-08-19 20:50:34 -07003254 struct msi_msg msg;
Thomas Gleixner60c69942010-09-28 17:28:38 +02003255 int ret;
Yinghai Lu1d025192008-08-19 20:50:34 -07003256
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003257 ret = msi_compose_msg(dev, irq, &msg, -1);
Yinghai Lu1d025192008-08-19 20:50:34 -07003258 if (ret < 0)
3259 return ret;
3260
Thomas Gleixner2c778652011-03-12 12:20:43 +01003261 irq_set_msi_desc(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003262 write_msi_msg(irq, &msg);
3263
Thomas Gleixner2c778652011-03-12 12:20:43 +01003264 if (irq_remapped(irq_get_chip_data(irq))) {
Thomas Gleixner60c69942010-09-28 17:28:38 +02003265 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
Suresh Siddhac39d77f2011-08-23 17:05:24 -07003266 irq_remap_modify_chip_defaults(chip);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003267 }
3268
3269 irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003270
Yinghai Luc81bba42008-09-25 11:53:11 -07003271 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3272
Yinghai Lu1d025192008-08-19 20:50:34 -07003273 return 0;
3274}
3275
Stefano Stabellini294ee6f2010-10-06 16:12:28 -04003276int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003277{
Thomas Gleixner60c69942010-09-28 17:28:38 +02003278 int node, ret, sub_handle, index = 0;
3279 unsigned int irq, irq_want;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003280 struct msi_desc *msidesc;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003281 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003282
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003283 /* x86 doesn't support multiple MSI yet */
3284 if (type == PCI_CAP_ID_MSI && nvec > 1)
3285 return 1;
3286
Yinghai Lud047f532009-04-27 18:02:23 -07003287 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003288 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003289 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003290 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f532009-04-27 18:02:23 -07003291 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003292 if (irq == 0)
3293 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003294 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003295 if (!intr_remapping_enabled)
3296 goto no_ir;
3297
3298 if (!sub_handle) {
3299 /*
3300 * allocate the consecutive block of IRTE's
3301 * for 'nvec'
3302 */
3303 index = msi_alloc_irte(dev, irq, nvec);
3304 if (index < 0) {
3305 ret = index;
3306 goto error;
3307 }
3308 } else {
3309 iommu = map_dev_to_ir(dev);
3310 if (!iommu) {
3311 ret = -ENOENT;
3312 goto error;
3313 }
3314 /*
3315 * setup the mapping between the irq and the IRTE
3316 * base index, the sub_handle pointing to the
3317 * appropriate interrupt remap table entry.
3318 */
3319 set_irte_irq(irq, iommu, index, sub_handle);
3320 }
3321no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003322 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003323 if (ret < 0)
3324 goto error;
3325 sub_handle++;
3326 }
3327 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003328
3329error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003330 destroy_irq(irq);
3331 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003332}
3333
Stefano Stabellini294ee6f2010-10-06 16:12:28 -04003334void native_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003335{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003336 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003337}
3338
Suresh Siddhad3f13812011-08-23 17:05:25 -07003339#ifdef CONFIG_DMAR_TABLE
Ingo Molnar54168ed2008-08-20 09:07:45 +02003340#ifdef CONFIG_SMP
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003341static int
3342dmar_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
3343 bool force)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003344{
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003345 struct irq_cfg *cfg = data->chip_data;
3346 unsigned int dest, irq = data->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003347 struct msi_msg msg;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003348
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003349 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003350 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003351
Ingo Molnar54168ed2008-08-20 09:07:45 +02003352 dmar_msi_read(irq, &msg);
3353
3354 msg.data &= ~MSI_DATA_VECTOR_MASK;
3355 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3356 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3357 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
Kenji Kaneshige086e8ce2010-12-01 09:40:32 -08003358 msg.address_hi = MSI_ADDR_BASE_HI | MSI_ADDR_EXT_DEST_ID(dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003359
3360 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003361
3362 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003363}
Yinghai Lu3145e942008-12-05 18:58:34 -08003364
Ingo Molnar54168ed2008-08-20 09:07:45 +02003365#endif /* CONFIG_SMP */
3366
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003367static struct irq_chip dmar_msi_type = {
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003368 .name = "DMAR_MSI",
3369 .irq_unmask = dmar_msi_unmask,
3370 .irq_mask = dmar_msi_mask,
3371 .irq_ack = ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003372#ifdef CONFIG_SMP
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003373 .irq_set_affinity = dmar_msi_set_affinity,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003374#endif
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003375 .irq_retrigger = ioapic_retrigger_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003376};
3377
3378int arch_setup_dmar_msi(unsigned int irq)
3379{
3380 int ret;
3381 struct msi_msg msg;
3382
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003383 ret = msi_compose_msg(NULL, irq, &msg, -1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003384 if (ret < 0)
3385 return ret;
3386 dmar_msi_write(irq, &msg);
Thomas Gleixner2c778652011-03-12 12:20:43 +01003387 irq_set_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3388 "edge");
Ingo Molnar54168ed2008-08-20 09:07:45 +02003389 return 0;
3390}
3391#endif
3392
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003393#ifdef CONFIG_HPET_TIMER
3394
3395#ifdef CONFIG_SMP
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003396static int hpet_msi_set_affinity(struct irq_data *data,
3397 const struct cpumask *mask, bool force)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003398{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003399 struct irq_cfg *cfg = data->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003400 struct msi_msg msg;
3401 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003402
Thomas Gleixner0e09ddf2010-10-08 22:21:26 +02003403 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003404 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003405
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003406 hpet_msi_read(data->handler_data, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003407
3408 msg.data &= ~MSI_DATA_VECTOR_MASK;
3409 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3410 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3411 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3412
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003413 hpet_msi_write(data->handler_data, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003414
3415 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003416}
Yinghai Lu3145e942008-12-05 18:58:34 -08003417
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003418#endif /* CONFIG_SMP */
3419
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003420static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003421 .name = "HPET_MSI",
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003422 .irq_unmask = hpet_msi_unmask,
3423 .irq_mask = hpet_msi_mask,
Thomas Gleixner90297c52010-09-28 16:03:54 +02003424 .irq_ack = ack_apic_edge,
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003425#ifdef CONFIG_SMP
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003426 .irq_set_affinity = hpet_msi_set_affinity,
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003427#endif
Thomas Gleixner90297c52010-09-28 16:03:54 +02003428 .irq_retrigger = ioapic_retrigger_irq,
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003429};
3430
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003431int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003432{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003433 struct irq_chip *chip = &hpet_msi_type;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003434 struct msi_msg msg;
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003435 int ret;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003436
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003437 if (intr_remapping_enabled) {
3438 struct intel_iommu *iommu = map_hpet_to_ir(id);
3439 int index;
3440
3441 if (!iommu)
3442 return -1;
3443
3444 index = alloc_irte(iommu, irq, 1);
3445 if (index < 0)
3446 return -1;
3447 }
3448
3449 ret = msi_compose_msg(NULL, irq, &msg, id);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003450 if (ret < 0)
3451 return ret;
3452
Thomas Gleixner2c778652011-03-12 12:20:43 +01003453 hpet_msi_write(irq_get_handler_data(irq), &msg);
Thomas Gleixner60c69942010-09-28 17:28:38 +02003454 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
Thomas Gleixner2c778652011-03-12 12:20:43 +01003455 if (irq_remapped(irq_get_chip_data(irq)))
Suresh Siddhac39d77f2011-08-23 17:05:24 -07003456 irq_remap_modify_chip_defaults(chip);
Yinghai Luc81bba42008-09-25 11:53:11 -07003457
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003458 irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003459 return 0;
3460}
3461#endif
3462
Ingo Molnar54168ed2008-08-20 09:07:45 +02003463#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003464/*
3465 * Hypertransport interrupt support
3466 */
3467#ifdef CONFIG_HT_IRQ
3468
3469#ifdef CONFIG_SMP
3470
Yinghai Lu497c9a12008-08-19 20:50:28 -07003471static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003472{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003473 struct ht_irq_msg msg;
3474 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003475
Yinghai Lu497c9a12008-08-19 20:50:28 -07003476 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003477 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003478
Yinghai Lu497c9a12008-08-19 20:50:28 -07003479 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003480 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003481
Eric W. Biedermanec683072006-11-08 17:44:57 -08003482 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003483}
3484
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003485static int
3486ht_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003487{
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003488 struct irq_cfg *cfg = data->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003489 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003490
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003491 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003492 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003493
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003494 target_ht_irq(data->irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003495 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003496}
Yinghai Lu3145e942008-12-05 18:58:34 -08003497
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003498#endif
3499
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003500static struct irq_chip ht_irq_chip = {
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003501 .name = "PCI-HT",
3502 .irq_mask = mask_ht_irq,
3503 .irq_unmask = unmask_ht_irq,
3504 .irq_ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003505#ifdef CONFIG_SMP
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003506 .irq_set_affinity = ht_set_affinity,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003507#endif
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003508 .irq_retrigger = ioapic_retrigger_irq,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003509};
3510
3511int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3512{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003513 struct irq_cfg *cfg;
3514 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003515
Jan Beulichf1182632009-01-14 12:27:35 +00003516 if (disable_apic)
3517 return -ENXIO;
3518
Yinghai Lu3145e942008-12-05 18:58:34 -08003519 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003520 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003521 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003522 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003523 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003524
Ingo Molnardebccb32009-01-28 15:20:18 +01003525 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3526 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003527
Eric W. Biedermanec683072006-11-08 17:44:57 -08003528 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003529
Eric W. Biedermanec683072006-11-08 17:44:57 -08003530 msg.address_lo =
3531 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003532 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003533 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003534 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003535 HT_IRQ_LOW_DM_PHYSICAL :
3536 HT_IRQ_LOW_DM_LOGICAL) |
3537 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003538 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003539 HT_IRQ_LOW_MT_FIXED :
3540 HT_IRQ_LOW_MT_ARBITRATED) |
3541 HT_IRQ_LOW_IRQ_MASKED;
3542
Eric W. Biedermanec683072006-11-08 17:44:57 -08003543 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003544
Thomas Gleixner2c778652011-03-12 12:20:43 +01003545 irq_set_chip_and_handler_name(irq, &ht_irq_chip,
Ingo Molnara460e742006-10-17 00:10:03 -07003546 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003547
3548 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003549 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003550 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003551}
3552#endif /* CONFIG_HT_IRQ */
3553
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +02003554static int
Thomas Gleixnerff973d02011-02-23 13:00:56 +01003555io_apic_setup_irq_pin(unsigned int irq, int node, struct io_apic_irq_attr *attr)
3556{
3557 struct irq_cfg *cfg = alloc_irq_and_cfg_at(irq, node);
3558 int ret;
3559
3560 if (!cfg)
3561 return -EINVAL;
3562 ret = __add_pin_to_irq_node(cfg, node, attr->ioapic, attr->ioapic_pin);
3563 if (!ret)
Yinghai Lue4aff812011-10-12 00:33:05 -07003564 setup_ioapic_irq(irq, cfg, attr);
Thomas Gleixnerff973d02011-02-23 13:00:56 +01003565 return ret;
3566}
3567
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +02003568int io_apic_setup_irq_pin_once(unsigned int irq, int node,
3569 struct io_apic_irq_attr *attr)
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003570{
Yinghai Lu6f50d452011-10-12 00:33:48 -07003571 unsigned int ioapic_idx = attr->ioapic, pin = attr->ioapic_pin;
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003572 int ret;
3573
3574 /* Avoid redundant programming */
Yinghai Lu6f50d452011-10-12 00:33:48 -07003575 if (test_bit(pin, ioapics[ioapic_idx].pin_programmed)) {
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003576 pr_debug("Pin %d-%d already programmed\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07003577 mpc_ioapic_id(ioapic_idx), pin);
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003578 return 0;
3579 }
3580 ret = io_apic_setup_irq_pin(irq, node, attr);
3581 if (!ret)
Yinghai Lu6f50d452011-10-12 00:33:48 -07003582 set_bit(pin, ioapics[ioapic_idx].pin_programmed);
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003583 return ret;
3584}
3585
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003586static int __init io_apic_get_redir_entries(int ioapic)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003587{
3588 union IO_APIC_reg_01 reg_01;
3589 unsigned long flags;
3590
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003591 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003592 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003593 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003594
Eric W. Biederman4b6b19a2010-03-30 01:07:08 -07003595 /* The register returns the maximum index redir index
3596 * supported, which is one less than the total number of redir
3597 * entries.
3598 */
3599 return reg_01.bits.entries + 1;
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003600}
3601
Thomas Gleixner23f9b262010-10-15 15:38:50 -07003602static void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003603{
Eric W. Biederman4afc51a2010-03-30 01:07:14 -07003604 int nr;
Yinghai Lube5d5352008-12-05 18:58:33 -08003605
Eric W. Biedermana4384df2010-06-08 11:44:32 -07003606 nr = gsi_top + NR_IRQS_LEGACY;
Eric W. Biederman4afc51a2010-03-30 01:07:14 -07003607 if (nr > nr_irqs_gsi)
Yinghai Lube5d5352008-12-05 18:58:33 -08003608 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003609
3610 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003611}
3612
Jeremy Fitzhardinge7b586d72009-02-12 17:22:49 -08003613int get_nr_irqs_gsi(void)
3614{
3615 return nr_irqs_gsi;
3616}
3617
Yinghai Lu4a046d12009-01-12 17:39:24 -08003618int __init arch_probe_nr_irqs(void)
3619{
3620 int nr;
3621
Yinghai Luf1ee5542009-02-08 16:18:03 -08003622 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3623 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003624
Yinghai Luf1ee5542009-02-08 16:18:03 -08003625 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3626#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3627 /*
3628 * for MSI and HT dyn irq
3629 */
3630 nr += nr_irqs_gsi * 16;
3631#endif
3632 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003633 nr_irqs = nr;
3634
Thomas Gleixnerb683de22010-09-27 20:55:03 +02003635 return NR_IRQS_LEGACY;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003636}
Yinghai Lu4a046d12009-01-12 17:39:24 -08003637
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003638int io_apic_set_pci_routing(struct device *dev, int irq,
3639 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003640{
Yinghai Lu5ef21832009-05-06 10:08:50 -07003641 int node;
3642
3643 if (!IO_APIC_IRQ(irq)) {
3644 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Thomas Gleixnere0799c02011-02-23 14:10:54 +01003645 irq_attr->ioapic);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003646 return -EINVAL;
3647 }
3648
Thomas Gleixnere0799c02011-02-23 14:10:54 +01003649 node = dev ? dev_to_node(dev) : cpu_to_node(0);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003650
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003651 return io_apic_setup_irq_pin_once(irq, node, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003652}
3653
Feng Tang2a4ab642009-07-07 23:01:15 -04003654#ifdef CONFIG_X86_32
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003655static int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656{
3657 union IO_APIC_reg_00 reg_00;
3658 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3659 physid_mask_t tmp;
3660 unsigned long flags;
3661 int i = 0;
3662
3663 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003664 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3665 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003667 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3669 * advantage of new APIC bus architecture.
3670 */
3671
3672 if (physids_empty(apic_id_map))
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003673 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003675 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003677 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679 if (apic_id >= get_physical_broadcast()) {
3680 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3681 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3682 apic_id = reg_00.bits.ID;
3683 }
3684
3685 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003686 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 * 'stuck on smp_invalidate_needed IPI wait' messages.
3688 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003689 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 for (i = 0; i < get_physical_broadcast(); i++) {
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003692 if (!apic->check_apicid_used(&apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 break;
3694 }
3695
3696 if (i == get_physical_broadcast())
3697 panic("Max apic_id exceeded!\n");
3698
3699 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3700 "trying %d\n", ioapic, apic_id, i);
3701
3702 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003705 apic->apicid_to_cpu_present(apic_id, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 physids_or(apic_id_map, apic_id_map, tmp);
3707
3708 if (reg_00.bits.ID != apic_id) {
3709 reg_00.bits.ID = apic_id;
3710
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003711 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 io_apic_write(ioapic, 0, reg_00.raw);
3713 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003714 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
3716 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003717 if (reg_00.bits.ID != apic_id) {
3718 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3719 return -1;
3720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 }
3722
3723 apic_printk(APIC_VERBOSE, KERN_INFO
3724 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3725
3726 return apic_id;
3727}
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003728
3729static u8 __init io_apic_unique_id(u8 id)
3730{
3731 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3732 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3733 return io_apic_get_unique_id(nr_ioapics, id);
3734 else
3735 return id;
3736}
3737#else
3738static u8 __init io_apic_unique_id(u8 id)
3739{
3740 int i;
3741 DECLARE_BITMAP(used, 256);
3742
3743 bitmap_zero(used, 256);
3744 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddhad5371432011-05-18 16:31:37 -07003745 __set_bit(mpc_ioapic_id(i), used);
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003746 }
3747 if (!test_bit(id, used))
3748 return id;
3749 return find_first_zero_bit(used, 256);
3750}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00003751#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003753static int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
3755 union IO_APIC_reg_01 reg_01;
3756 unsigned long flags;
3757
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003758 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003760 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
3762 return reg_01.bits.version;
3763}
3764
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003765int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003766{
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003767 int ioapic, pin, idx;
Shaohua Li61fd47e2007-11-17 01:05:28 -05003768
3769 if (skip_ioapic_setup)
3770 return -1;
3771
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003772 ioapic = mp_find_ioapic(gsi);
3773 if (ioapic < 0)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003774 return -1;
3775
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003776 pin = mp_find_ioapic_pin(ioapic, gsi);
3777 if (pin < 0)
3778 return -1;
3779
3780 idx = find_irq_entry(ioapic, pin, mp_INT);
3781 if (idx < 0)
3782 return -1;
3783
3784 *trigger = irq_trigger(idx);
3785 *polarity = irq_polarity(idx);
Shaohua Li61fd47e2007-11-17 01:05:28 -05003786 return 0;
3787}
3788
Yinghai Lu497c9a12008-08-19 20:50:28 -07003789/*
3790 * This function currently is only a helper for the i386 smp boot process where
3791 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01003792 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07003793 */
3794#ifdef CONFIG_SMP
3795void __init setup_ioapic_dest(void)
3796{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003797 int pin, ioapic, irq, irq_entry;
Mike Travis22f65d32008-12-16 17:33:56 -08003798 const struct cpumask *mask;
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003799 struct irq_data *idata;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003800
3801 if (skip_ioapic_setup == 1)
3802 return;
3803
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003804 for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
Suresh Siddhab69c6c32011-05-18 16:31:35 -07003805 for (pin = 0; pin < ioapics[ioapic].nr_registers; pin++) {
Yinghai Lub9c61b702009-05-06 10:10:06 -07003806 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3807 if (irq_entry == -1)
3808 continue;
3809 irq = pin_2_irq(irq_entry, ioapic, pin);
3810
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003811 if ((ioapic > 0) && (irq > 16))
3812 continue;
3813
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003814 idata = irq_get_irq_data(irq);
Yinghai Lub9c61b702009-05-06 10:10:06 -07003815
3816 /*
3817 * Honour affinities which have been set in early boot
3818 */
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003819 if (!irqd_can_balance(idata) || irqd_affinity_was_set(idata))
3820 mask = idata->affinity;
Yinghai Lub9c61b702009-05-06 10:10:06 -07003821 else
3822 mask = apic->target_cpus();
3823
3824 if (intr_remapping_enabled)
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003825 ir_ioapic_set_affinity(idata, mask, false);
Yinghai Lub9c61b702009-05-06 10:10:06 -07003826 else
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003827 ioapic_set_affinity(idata, mask, false);
Yinghai Lub9c61b702009-05-06 10:10:06 -07003828 }
3829
Yinghai Lu497c9a12008-08-19 20:50:28 -07003830}
3831#endif
3832
Ingo Molnar54168ed2008-08-20 09:07:45 +02003833#define IOAPIC_RESOURCE_NAME_SIZE 11
3834
3835static struct resource *ioapic_resources;
3836
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003837static struct resource * __init ioapic_setup_resources(int nr_ioapics)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003838{
3839 unsigned long n;
3840 struct resource *res;
3841 char *mem;
3842 int i;
3843
3844 if (nr_ioapics <= 0)
3845 return NULL;
3846
3847 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3848 n *= nr_ioapics;
3849
3850 mem = alloc_bootmem(n);
3851 res = (void *)mem;
3852
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003853 mem += sizeof(struct resource) * nr_ioapics;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003854
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003855 for (i = 0; i < nr_ioapics; i++) {
3856 res[i].name = mem;
3857 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Cyrill Gorcunov4343fe12009-11-08 18:54:31 +03003858 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003859 mem += IOAPIC_RESOURCE_NAME_SIZE;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003860 }
3861
3862 ioapic_resources = res;
3863
3864 return res;
3865}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003866
Thomas Gleixner23f9b262010-10-15 15:38:50 -07003867void __init ioapic_and_gsi_init(void)
Yinghai Luf3294a32008-06-27 01:41:56 -07003868{
3869 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003870 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003871 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07003872
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003873 ioapic_res = ioapic_setup_resources(nr_ioapics);
Yinghai Luf3294a32008-06-27 01:41:56 -07003874 for (i = 0; i < nr_ioapics; i++) {
3875 if (smp_found_config) {
Suresh Siddhad5371432011-05-18 16:31:37 -07003876 ioapic_phys = mpc_ioapic_addr(i);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003877#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003878 if (!ioapic_phys) {
3879 printk(KERN_ERR
3880 "WARNING: bogus zero IO-APIC "
3881 "address found in MPTABLE, "
3882 "disabling IO/APIC support!\n");
3883 smp_found_config = 0;
3884 skip_ioapic_setup = 1;
3885 goto fake_ioapic_page;
3886 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003887#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07003888 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003889#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07003890fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003891#endif
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003892 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07003893 ioapic_phys = __pa(ioapic_phys);
3894 }
3895 set_fixmap_nocache(idx, ioapic_phys);
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003896 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
3897 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
3898 ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07003899 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003900
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003901 ioapic_res->start = ioapic_phys;
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003902 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003903 ioapic_res++;
Yinghai Luf3294a32008-06-27 01:41:56 -07003904 }
Thomas Gleixner23f9b262010-10-15 15:38:50 -07003905
3906 probe_nr_irqs_gsi();
Yinghai Luf3294a32008-06-27 01:41:56 -07003907}
3908
Yinghai Lu857fdc52009-07-10 09:36:20 -07003909void __init ioapic_insert_resources(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003910{
3911 int i;
3912 struct resource *r = ioapic_resources;
3913
3914 if (!r) {
Yinghai Lu857fdc52009-07-10 09:36:20 -07003915 if (nr_ioapics > 0)
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01003916 printk(KERN_ERR
3917 "IO APIC resources couldn't be allocated.\n");
Yinghai Lu857fdc52009-07-10 09:36:20 -07003918 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003919 }
3920
3921 for (i = 0; i < nr_ioapics; i++) {
3922 insert_resource(&iomem_resource, r);
3923 r++;
3924 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003925}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003926
Eric W. Biedermaneddb0c52010-03-30 01:07:09 -07003927int mp_find_ioapic(u32 gsi)
Feng Tang2a4ab642009-07-07 23:01:15 -04003928{
3929 int i = 0;
3930
Paul Bolle678301e2011-02-14 22:52:38 +01003931 if (nr_ioapics == 0)
3932 return -1;
3933
Feng Tang2a4ab642009-07-07 23:01:15 -04003934 /* Find the IOAPIC that manages this GSI. */
3935 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddhac040aae2011-05-18 16:31:38 -07003936 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(i);
3937 if ((gsi >= gsi_cfg->gsi_base)
3938 && (gsi <= gsi_cfg->gsi_end))
Feng Tang2a4ab642009-07-07 23:01:15 -04003939 return i;
3940 }
3941
3942 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
3943 return -1;
3944}
3945
Eric W. Biedermaneddb0c52010-03-30 01:07:09 -07003946int mp_find_ioapic_pin(int ioapic, u32 gsi)
Feng Tang2a4ab642009-07-07 23:01:15 -04003947{
Suresh Siddhac040aae2011-05-18 16:31:38 -07003948 struct mp_ioapic_gsi *gsi_cfg;
3949
Feng Tang2a4ab642009-07-07 23:01:15 -04003950 if (WARN_ON(ioapic == -1))
3951 return -1;
Suresh Siddhac040aae2011-05-18 16:31:38 -07003952
3953 gsi_cfg = mp_ioapic_gsi_routing(ioapic);
3954 if (WARN_ON(gsi > gsi_cfg->gsi_end))
Feng Tang2a4ab642009-07-07 23:01:15 -04003955 return -1;
3956
Suresh Siddhac040aae2011-05-18 16:31:38 -07003957 return gsi - gsi_cfg->gsi_base;
Feng Tang2a4ab642009-07-07 23:01:15 -04003958}
3959
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003960static __init int bad_ioapic(unsigned long address)
Feng Tang2a4ab642009-07-07 23:01:15 -04003961{
3962 if (nr_ioapics >= MAX_IO_APICS) {
Paul Bolle45e8234c2011-02-08 23:27:36 +01003963 printk(KERN_WARNING "WARNING: Max # of I/O APICs (%d) exceeded "
Feng Tang2a4ab642009-07-07 23:01:15 -04003964 "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
3965 return 1;
3966 }
3967 if (!address) {
3968 printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
3969 " found in table, skipping!\n");
3970 return 1;
3971 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003972 return 0;
3973}
3974
Feng Tang2a4ab642009-07-07 23:01:15 -04003975void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
3976{
3977 int idx = 0;
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07003978 int entries;
Suresh Siddhac040aae2011-05-18 16:31:38 -07003979 struct mp_ioapic_gsi *gsi_cfg;
Feng Tang2a4ab642009-07-07 23:01:15 -04003980
3981 if (bad_ioapic(address))
3982 return;
3983
3984 idx = nr_ioapics;
3985
Suresh Siddhad5371432011-05-18 16:31:37 -07003986 ioapics[idx].mp_config.type = MP_IOAPIC;
3987 ioapics[idx].mp_config.flags = MPC_APIC_USABLE;
3988 ioapics[idx].mp_config.apicaddr = address;
Feng Tang2a4ab642009-07-07 23:01:15 -04003989
3990 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Suresh Siddhad5371432011-05-18 16:31:37 -07003991 ioapics[idx].mp_config.apicid = io_apic_unique_id(id);
3992 ioapics[idx].mp_config.apicver = io_apic_get_version(idx);
Feng Tang2a4ab642009-07-07 23:01:15 -04003993
3994 /*
3995 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
3996 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
3997 */
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07003998 entries = io_apic_get_redir_entries(idx);
Suresh Siddhac040aae2011-05-18 16:31:38 -07003999 gsi_cfg = mp_ioapic_gsi_routing(idx);
4000 gsi_cfg->gsi_base = gsi_base;
4001 gsi_cfg->gsi_end = gsi_base + entries - 1;
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07004002
4003 /*
4004 * The number of IO-APIC IRQ registers (== #pins):
4005 */
Suresh Siddhab69c6c32011-05-18 16:31:35 -07004006 ioapics[idx].nr_registers = entries;
Feng Tang2a4ab642009-07-07 23:01:15 -04004007
Suresh Siddhac040aae2011-05-18 16:31:38 -07004008 if (gsi_cfg->gsi_end >= gsi_top)
4009 gsi_top = gsi_cfg->gsi_end + 1;
Feng Tang2a4ab642009-07-07 23:01:15 -04004010
4011 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
Suresh Siddhad5371432011-05-18 16:31:37 -07004012 "GSI %d-%d\n", idx, mpc_ioapic_id(idx),
4013 mpc_ioapic_ver(idx), mpc_ioapic_addr(idx),
Suresh Siddhac040aae2011-05-18 16:31:38 -07004014 gsi_cfg->gsi_base, gsi_cfg->gsi_end);
Feng Tang2a4ab642009-07-07 23:01:15 -04004015
4016 nr_ioapics++;
4017}
Jacob Pan05ddafb2009-09-23 07:20:23 -07004018
4019/* Enable IOAPIC early just for system timer */
4020void __init pre_init_apic_IRQ0(void)
4021{
Thomas Gleixnerf880ec72011-02-23 13:07:54 +01004022 struct io_apic_irq_attr attr = { 0, 0, 0, 0 };
Jacob Pan05ddafb2009-09-23 07:20:23 -07004023
4024 printk(KERN_INFO "Early APIC setup for system timer0\n");
4025#ifndef CONFIG_SMP
Yinghai Lucb2ded32011-01-04 16:38:52 -08004026 physid_set_mask_of_physid(boot_cpu_physical_apicid,
4027 &phys_cpu_present_map);
Jacob Pan05ddafb2009-09-23 07:20:23 -07004028#endif
Jacob Pan05ddafb2009-09-23 07:20:23 -07004029 setup_local_APIC();
4030
Thomas Gleixnerf880ec72011-02-23 13:07:54 +01004031 io_apic_setup_irq_pin(0, 0, &attr);
Thomas Gleixner2c778652011-03-12 12:20:43 +01004032 irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
4033 "edge");
Jacob Pan05ddafb2009-09-23 07:20:23 -07004034}