blob: d23aa82e7a7bc25c702be004f804a0c9d02c15f7 [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#include <linux/bootmem.h>
41#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070042#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070043
Yinghai Lud4057bd2008-08-19 20:50:38 -070044#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/io.h>
46#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053047#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070049#include <asm/proto.h>
50#include <asm/acpi.h>
51#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070053#include <asm/i8259.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070054#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070055#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070056#include <asm/setup.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070057#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070058#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053059#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ingo Molnar7b6aa332009-02-17 13:58:15 +010061#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010063#define __apicdebuginit(type) static type __init
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -040064
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +040065#define for_each_irq_pin(entry, head) \
66 for (entry = head; entry; entry = entry->next)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020069 * Is the SiS APIC rmw bug present ?
70 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72int sis_apic_bug = -1;
73
Thomas Gleixnerdade7712009-07-25 18:39:36 +020074static DEFINE_RAW_SPINLOCK(ioapic_lock);
75static DEFINE_RAW_SPINLOCK(vector_lock);
Yinghai Luefa25592008-08-19 20:50:36 -070076
Suresh Siddhab69c6c32011-05-18 16:31:35 -070077static struct ioapic {
78 /*
79 * # of IRQ routing registers
80 */
81 int nr_registers;
Suresh Siddha57a6f742011-05-18 16:31:36 -070082 /*
83 * Saved state during suspend/resume, or while enabling intr-remap.
84 */
85 struct IO_APIC_route_entry *saved_registers;
Suresh Siddhad5371432011-05-18 16:31:37 -070086 /* I/O APIC config */
87 struct mpc_ioapic mp_config;
Suresh Siddhac040aae2011-05-18 16:31:38 -070088 /* IO APIC gsi routing info */
89 struct mp_ioapic_gsi gsi_config;
Suresh Siddha8f18c972011-05-18 16:31:39 -070090 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
Suresh Siddhab69c6c32011-05-18 16:31:35 -070091} ioapics[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Yinghai Lu6f50d452011-10-12 00:33:48 -070093#define mpc_ioapic_ver(ioapic_idx) ioapics[ioapic_idx].mp_config.apicver
Suresh Siddhad5371432011-05-18 16:31:37 -070094
Yinghai Lu6f50d452011-10-12 00:33:48 -070095int mpc_ioapic_id(int ioapic_idx)
Suresh Siddhad5371432011-05-18 16:31:37 -070096{
Yinghai Lu6f50d452011-10-12 00:33:48 -070097 return ioapics[ioapic_idx].mp_config.apicid;
Suresh Siddhad5371432011-05-18 16:31:37 -070098}
99
Yinghai Lu6f50d452011-10-12 00:33:48 -0700100unsigned int mpc_ioapic_addr(int ioapic_idx)
Suresh Siddhad5371432011-05-18 16:31:37 -0700101{
Yinghai Lu6f50d452011-10-12 00:33:48 -0700102 return ioapics[ioapic_idx].mp_config.apicaddr;
Suresh Siddhad5371432011-05-18 16:31:37 -0700103}
104
Yinghai Lu6f50d452011-10-12 00:33:48 -0700105struct mp_ioapic_gsi *mp_ioapic_gsi_routing(int ioapic_idx)
Suresh Siddhac040aae2011-05-18 16:31:38 -0700106{
Yinghai Lu6f50d452011-10-12 00:33:48 -0700107 return &ioapics[ioapic_idx].gsi_config;
Suresh Siddhac040aae2011-05-18 16:31:38 -0700108}
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +0400109
Suresh Siddhac040aae2011-05-18 16:31:38 -0700110int nr_ioapics;
Feng Tang2a4ab642009-07-07 23:01:15 -0400111
Eric W. Biedermana4384df2010-06-08 11:44:32 -0700112/* The one past the highest gsi number used */
113u32 gsi_top;
Eric W. Biederman57773722010-03-30 01:07:10 -0700114
Alexey Starikovskiy584f7342008-04-04 23:41:32 +0400115/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530116struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +0400117
118/* # of MP IRQ source entries */
119int mp_irq_entries;
120
Thomas Gleixnerbc078442009-08-29 18:09:57 +0200121/* GSI interrupts */
122static int nr_irqs_gsi = NR_IRQS_LEGACY;
123
Paul Gortmakerbb8187d2012-05-17 19:06:13 -0400124#ifdef CONFIG_EISA
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +0400125int mp_bus_id_to_type[MAX_MP_BUSSES];
126#endif
127
128DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
129
Yinghai Luefa25592008-08-19 20:50:36 -0700130int skip_ioapic_setup;
131
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100132/**
133 * disable_ioapic_support() - disables ioapic support at runtime
134 */
135void disable_ioapic_support(void)
Ingo Molnar65a4e572009-01-31 03:36:17 +0100136{
137#ifdef CONFIG_PCI
138 noioapicquirk = 1;
139 noioapicreroute = -1;
140#endif
141 skip_ioapic_setup = 1;
142}
143
Ingo Molnar54168ed2008-08-20 09:07:45 +0200144static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700145{
146 /* disable IO-APIC */
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100147 disable_ioapic_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700148 return 0;
149}
150early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200151
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +0200152static int io_apic_setup_irq_pin(unsigned int irq, int node,
153 struct io_apic_irq_attr *attr);
Thomas Gleixner710dcda2011-02-23 17:47:41 +0100154
Feng Tang2d8009b2010-11-19 11:33:35 +0800155/* Will be called in mpparse/acpi/sfi codes for saving IRQ info */
156void mp_save_irq(struct mpc_intsrc *m)
157{
158 int i;
159
160 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
161 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
162 m->irqtype, m->irqflag & 3, (m->irqflag >> 2) & 3, m->srcbus,
163 m->srcbusirq, m->dstapic, m->dstirq);
164
165 for (i = 0; i < mp_irq_entries; i++) {
Feng Tang0e3fa132010-12-08 15:18:57 +0800166 if (!memcmp(&mp_irqs[i], m, sizeof(*m)))
Feng Tang2d8009b2010-11-19 11:33:35 +0800167 return;
168 }
169
Feng Tang0e3fa132010-12-08 15:18:57 +0800170 memcpy(&mp_irqs[mp_irq_entries], m, sizeof(*m));
Feng Tang2d8009b2010-11-19 11:33:35 +0800171 if (++mp_irq_entries == MAX_IRQ_SOURCES)
172 panic("Max # of irq sources exceeded!!\n");
173}
174
Yinghai Lu0f978f42008-08-19 20:50:26 -0700175struct irq_pin_list {
176 int apic, pin;
177 struct irq_pin_list *next;
178};
Yinghai Lu301e6192008-08-19 20:50:02 -0700179
Thomas Gleixner7e495522010-09-28 23:31:50 +0200180static struct irq_pin_list *alloc_irq_pin_list(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700181{
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200182 return kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700183}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Feng Tang2d8009b2010-11-19 11:33:35 +0800185
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800186/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
Suresh Siddha97943392010-01-19 12:20:54 -0800187static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800188
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800189int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800190{
191 struct irq_cfg *cfg;
Thomas Gleixner60c69942010-09-28 17:28:38 +0200192 int count, node, i;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800193
Jacob Panbb84ac22011-11-10 13:42:21 +0000194 if (!legacy_pic->nr_legacy_irqs)
Jacob Pan1f912332010-02-05 04:06:56 -0800195 io_apic_irqs = ~0UL;
Jacob Pan1f912332010-02-05 04:06:56 -0800196
Suresh Siddha4c791852011-05-18 16:31:32 -0700197 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddha57a6f742011-05-18 16:31:36 -0700198 ioapics[i].saved_registers =
Suresh Siddha4c791852011-05-18 16:31:32 -0700199 kzalloc(sizeof(struct IO_APIC_route_entry) *
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700200 ioapics[i].nr_registers, GFP_KERNEL);
Suresh Siddha57a6f742011-05-18 16:31:36 -0700201 if (!ioapics[i].saved_registers)
Suresh Siddha4c791852011-05-18 16:31:32 -0700202 pr_err("IOAPIC %d: suspend/resume impossible!\n", i);
203 }
204
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800205 cfg = irq_cfgx;
206 count = ARRAY_SIZE(irq_cfgx);
Robert Richterf6e9456c2010-07-21 19:03:58 +0200207 node = cpu_to_node(0);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800208
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +0200209 /* Make sure the legacy interrupts are marked in the bitmap */
210 irq_reserve_irqs(0, legacy_pic->nr_legacy_irqs);
211
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800212 for (i = 0; i < count; i++) {
Thomas Gleixner2c778652011-03-12 12:20:43 +0100213 irq_set_chip_data(i, &cfg[i]);
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200214 zalloc_cpumask_var_node(&cfg[i].domain, GFP_KERNEL, node);
215 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_KERNEL, node);
Suresh Siddha97943392010-01-19 12:20:54 -0800216 /*
217 * For legacy IRQ's, start with assigning irq0 to irq15 to
Suresh Siddha29c574c2012-11-26 14:49:36 -0800218 * IRQ0_VECTOR to IRQ15_VECTOR for all cpu's.
Suresh Siddha97943392010-01-19 12:20:54 -0800219 */
H. Peter Anvin54b56172010-02-22 16:25:18 -0800220 if (i < legacy_pic->nr_legacy_irqs) {
Suresh Siddha97943392010-01-19 12:20:54 -0800221 cfg[i].vector = IRQ0_VECTOR + i;
Suresh Siddha29c574c2012-11-26 14:49:36 -0800222 cpumask_setall(cfg[i].domain);
Suresh Siddha97943392010-01-19 12:20:54 -0800223 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800224 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800225
226 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800227}
228
Thomas Gleixner48b26502010-09-30 11:43:08 +0200229static struct irq_cfg *irq_cfg(unsigned int irq)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800230{
Thomas Gleixner2c778652011-03-12 12:20:43 +0100231 return irq_get_chip_data(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800232}
233
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200234static struct irq_cfg *alloc_irq_cfg(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800235{
236 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800237
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200238 cfg = kzalloc_node(sizeof(*cfg), GFP_KERNEL, node);
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200239 if (!cfg)
240 return NULL;
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200241 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_KERNEL, node))
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200242 goto out_cfg;
Thomas Gleixner2ee39062010-10-06 16:28:51 +0200243 if (!zalloc_cpumask_var_node(&cfg->old_domain, GFP_KERNEL, node))
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200244 goto out_domain;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800245 return cfg;
Thomas Gleixner6e2fff52010-10-06 22:07:03 +0200246out_domain:
247 free_cpumask_var(cfg->domain);
248out_cfg:
249 kfree(cfg);
250 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800251}
252
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200253static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg)
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200254{
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +0200255 if (!cfg)
256 return;
Thomas Gleixner2c778652011-03-12 12:20:43 +0100257 irq_set_chip_data(at, NULL);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200258 free_cpumask_var(cfg->domain);
259 free_cpumask_var(cfg->old_domain);
260 kfree(cfg);
261}
262
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200263static struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node)
264{
265 int res = irq_alloc_desc_at(at, node);
266 struct irq_cfg *cfg;
267
268 if (res < 0) {
269 if (res != -EEXIST)
270 return NULL;
Thomas Gleixner2c778652011-03-12 12:20:43 +0100271 cfg = irq_get_chip_data(at);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200272 if (cfg)
273 return cfg;
274 }
275
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200276 cfg = alloc_irq_cfg(at, node);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200277 if (cfg)
Thomas Gleixner2c778652011-03-12 12:20:43 +0100278 irq_set_chip_data(at, cfg);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200279 else
280 irq_free_desc(at);
281 return cfg;
282}
283
Alexander Gordeev51906e72012-11-19 16:01:29 +0100284static int alloc_irqs_from(unsigned int from, unsigned int count, int node)
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200285{
Alexander Gordeev51906e72012-11-19 16:01:29 +0100286 return irq_alloc_descs_from(from, count, node);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200287}
288
289static void free_irq_at(unsigned int at, struct irq_cfg *cfg)
290{
Thomas Gleixnerf981a3d2010-10-08 10:44:21 +0200291 free_irq_cfg(at, cfg);
Thomas Gleixner08c33db2010-10-06 22:14:21 +0200292 irq_free_desc(at);
293}
294
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400295
Linus Torvalds130fe052006-11-01 09:11:00 -0800296struct io_apic {
297 unsigned int index;
298 unsigned int unused[3];
299 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700300 unsigned int unused2[11];
301 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800302};
303
304static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
305{
306 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Suresh Siddhad5371432011-05-18 16:31:37 -0700307 + (mpc_ioapic_addr(idx) & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800308}
309
Joerg Roedelda165322012-09-26 12:44:50 +0200310void io_apic_eoi(unsigned int apic, unsigned int vector)
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700311{
312 struct io_apic __iomem *io_apic = io_apic_base(apic);
313 writel(vector, &io_apic->eoi);
314}
315
Konrad Rzeszutek Wilk4a8e2a32012-03-28 12:37:36 -0400316unsigned int native_io_apic_read(unsigned int apic, unsigned int reg)
Linus Torvalds130fe052006-11-01 09:11:00 -0800317{
318 struct io_apic __iomem *io_apic = io_apic_base(apic);
319 writel(reg, &io_apic->index);
320 return readl(&io_apic->data);
321}
322
Konrad Rzeszutek Wilk4a8e2a32012-03-28 12:37:36 -0400323void native_io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
Linus Torvalds130fe052006-11-01 09:11:00 -0800324{
325 struct io_apic __iomem *io_apic = io_apic_base(apic);
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400326
Linus Torvalds130fe052006-11-01 09:11:00 -0800327 writel(reg, &io_apic->index);
328 writel(value, &io_apic->data);
329}
330
331/*
332 * Re-write a value: to be used for read-modify-write
333 * cycles where the read already set up the index register.
334 *
335 * Older SiS APIC requires we rewrite the index register
336 */
Konrad Rzeszutek Wilk4a8e2a32012-03-28 12:37:36 -0400337void native_io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
Linus Torvalds130fe052006-11-01 09:11:00 -0800338{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200339 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200340
341 if (sis_apic_bug)
342 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800343 writel(value, &io_apic->data);
344}
345
Andi Kleencf4c6a22006-09-26 10:52:30 +0200346union entry_union {
347 struct { u32 w1, w2; };
348 struct IO_APIC_route_entry entry;
349};
350
Suresh Siddhae57253a2011-08-25 12:01:12 -0700351static struct IO_APIC_route_entry __ioapic_read_entry(int apic, int pin)
352{
353 union entry_union eu;
354
355 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
356 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400357
Suresh Siddhae57253a2011-08-25 12:01:12 -0700358 return eu.entry;
359}
360
Andi Kleencf4c6a22006-09-26 10:52:30 +0200361static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
362{
363 union entry_union eu;
364 unsigned long flags;
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400365
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200366 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddhae57253a2011-08-25 12:01:12 -0700367 eu.entry = __ioapic_read_entry(apic, pin);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200368 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400369
Andi Kleencf4c6a22006-09-26 10:52:30 +0200370 return eu.entry;
371}
372
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800373/*
374 * When we write a new IO APIC routing entry, we need to write the high
375 * word first! If the mask bit in the low word is clear, we will enable
376 * the interrupt, and we need to make sure the entry is fully populated
377 * before that happens.
378 */
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400379static void __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleend15512f2006-12-07 02:14:07 +0100380{
Figo.zhang50a8d4d2009-06-17 22:25:20 +0800381 union entry_union eu = {{0, 0}};
382
Andi Kleend15512f2006-12-07 02:14:07 +0100383 eu.entry = e;
384 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
385 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
386}
387
Thomas Gleixner1a8ce7f2010-10-04 21:08:56 +0200388static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200389{
390 unsigned long flags;
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400391
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200392 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100393 __ioapic_write_entry(apic, pin, e);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200394 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800395}
396
397/*
398 * When we mask an IO APIC routing entry, we need to write the low
399 * word first, in order to set the mask bit before we change the
400 * high bits!
401 */
402static void ioapic_mask_entry(int apic, int pin)
403{
404 unsigned long flags;
405 union entry_union eu = { .entry.mask = 1 };
406
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200407 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200408 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
409 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200410 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
414 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
415 * shared ISA-space IRQs, so we have to support them. We are super
416 * fast in the common case, and fast for shared ISA-space IRQs.
417 */
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400418static int __add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400420 struct irq_pin_list **last, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400422 /* don't allow duplicates */
423 last = &cfg->irq_2_pin;
424 for_each_irq_pin(entry, cfg->irq_2_pin) {
Yinghai Lu0f978f42008-08-19 20:50:26 -0700425 if (entry->apic == apic && entry->pin == pin)
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400426 return 0;
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400427 last = &entry->next;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700428 }
429
Thomas Gleixner7e495522010-09-28 23:31:50 +0200430 entry = alloc_irq_pin_list(node);
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400431 if (!entry) {
Joe Perchesc767a542012-05-21 19:50:07 -0700432 pr_err("can not alloc irq_pin_list (%d,%d,%d)\n",
433 node, apic, pin);
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400434 return -ENOMEM;
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 entry->apic = apic;
437 entry->pin = pin;
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700438
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400439 *last = entry;
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400440 return 0;
441}
442
443static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
444{
Thomas Gleixner7e495522010-09-28 23:31:50 +0200445 if (__add_pin_to_irq_node(cfg, node, apic, pin))
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400446 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/*
450 * Reroute an IRQ to a different pin.
451 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700452static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700453 int oldapic, int oldpin,
454 int newapic, int newpin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Jeremy Fitzhardinge535b6422009-06-08 03:29:26 -0700456 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400458 for_each_irq_pin(entry, cfg->irq_2_pin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (entry->apic == oldapic && entry->pin == oldpin) {
460 entry->apic = newapic;
461 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700462 /* every one is different, right? */
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700463 return;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700466
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700467 /* old apic/pin didn't exist, so just add new ones */
468 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800471static void __io_apic_modify_irq(struct irq_pin_list *entry,
472 int mask_and, int mask_or,
473 void (*final)(struct irq_pin_list *entry))
474{
475 unsigned int reg, pin;
476
477 pin = entry->pin;
478 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
479 reg &= mask_and;
480 reg |= mask_or;
481 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
482 if (final)
483 final(entry);
484}
485
Jeremy Fitzhardinge2f210de2009-06-08 02:55:22 -0700486static void io_apic_modify_irq(struct irq_cfg *cfg,
487 int mask_and, int mask_or,
488 void (*final)(struct irq_pin_list *entry))
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400489{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400490 struct irq_pin_list *entry;
491
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800492 for_each_irq_pin(entry, cfg->irq_2_pin)
493 __io_apic_modify_irq(entry, mask_and, mask_or, final);
494}
495
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530496static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700497{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400498 /*
499 * Synchronize the IO-APIC and the CPU by doing
500 * a dummy read from the IO-APIC
501 */
502 struct io_apic __iomem *io_apic;
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -0400503
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400504 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700505 readl(&io_apic->data);
506}
507
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200508static void mask_ioapic(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400509{
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200510 unsigned long flags;
511
512 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800513 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200514 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Thomas Gleixner90297c52010-09-28 16:03:54 +0200517static void mask_ioapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Thomas Gleixner90297c52010-09-28 16:03:54 +0200519 mask_ioapic(data->chip_data);
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200520}
521
522static void __unmask_ioapic(struct irq_cfg *cfg)
523{
524 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
525}
526
527static void unmask_ioapic(struct irq_cfg *cfg)
528{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 unsigned long flags;
530
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200531 raw_spin_lock_irqsave(&ioapic_lock, flags);
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +0200532 __unmask_ioapic(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200533 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Thomas Gleixner90297c52010-09-28 16:03:54 +0200536static void unmask_ioapic_irq(struct irq_data *data)
Yinghai Lu3145e942008-12-05 18:58:34 -0800537{
Thomas Gleixner90297c52010-09-28 16:03:54 +0200538 unmask_ioapic(data->chip_data);
Yinghai Lu3145e942008-12-05 18:58:34 -0800539}
540
Suresh Siddhac0205702011-08-25 12:01:13 -0700541/*
542 * IO-APIC versions below 0x20 don't support EOI register.
543 * For the record, here is the information about various versions:
544 * 0Xh 82489DX
545 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
546 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
547 * 30h-FFh Reserved
548 *
549 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
550 * version as 0x2. This is an error with documentation and these ICH chips
551 * use io-apic's of version 0x20.
552 *
553 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
554 * Otherwise, we simulate the EOI message manually by changing the trigger
555 * mode to edge and then back to level, with RTE being masked during this.
556 */
Joerg Roedelda165322012-09-26 12:44:50 +0200557void native_eoi_ioapic_pin(int apic, int pin, int vector)
Suresh Siddhac0205702011-08-25 12:01:13 -0700558{
559 if (mpc_ioapic_ver(apic) >= 0x20) {
Joerg Roedelda165322012-09-26 12:44:50 +0200560 io_apic_eoi(apic, vector);
Suresh Siddhac0205702011-08-25 12:01:13 -0700561 } else {
562 struct IO_APIC_route_entry entry, entry1;
563
564 entry = entry1 = __ioapic_read_entry(apic, pin);
565
566 /*
567 * Mask the entry and change the trigger mode to edge.
568 */
569 entry1.mask = 1;
570 entry1.trigger = IOAPIC_EDGE;
571
572 __ioapic_write_entry(apic, pin, entry1);
573
574 /*
575 * Restore the previous level triggered entry.
576 */
577 __ioapic_write_entry(apic, pin, entry);
578 }
579}
580
Joerg Roedel9b1b0e42012-09-26 12:44:45 +0200581void eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
Suresh Siddhac0205702011-08-25 12:01:13 -0700582{
583 struct irq_pin_list *entry;
584 unsigned long flags;
585
586 raw_spin_lock_irqsave(&ioapic_lock, flags);
587 for_each_irq_pin(entry, cfg->irq_2_pin)
Joerg Roedelda165322012-09-26 12:44:50 +0200588 x86_io_apic_ops.eoi_ioapic_pin(entry->apic, entry->pin,
589 cfg->vector);
Suresh Siddhac0205702011-08-25 12:01:13 -0700590 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
594{
595 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200598 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (entry.delivery_mode == dest_SMI)
600 return;
Suresh Siddha1e75b312011-08-25 12:01:11 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /*
Suresh Siddha1e75b312011-08-25 12:01:11 -0700603 * Make sure the entry is masked and re-read the contents to check
604 * if it is a level triggered pin and if the remote-IRR is set.
605 */
606 if (!entry.mask) {
607 entry.mask = 1;
608 ioapic_write_entry(apic, pin, entry);
609 entry = ioapic_read_entry(apic, pin);
610 }
611
612 if (entry.irr) {
Suresh Siddhac0205702011-08-25 12:01:13 -0700613 unsigned long flags;
614
Suresh Siddha1e75b312011-08-25 12:01:11 -0700615 /*
616 * Make sure the trigger mode is set to level. Explicit EOI
617 * doesn't clear the remote-IRR if the trigger mode is not
618 * set to level.
619 */
620 if (!entry.trigger) {
621 entry.trigger = IOAPIC_LEVEL;
622 ioapic_write_entry(apic, pin, entry);
623 }
624
Suresh Siddhac0205702011-08-25 12:01:13 -0700625 raw_spin_lock_irqsave(&ioapic_lock, flags);
Joerg Roedelda165322012-09-26 12:44:50 +0200626 x86_io_apic_ops.eoi_ioapic_pin(apic, pin, entry.vector);
Suresh Siddhac0205702011-08-25 12:01:13 -0700627 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Suresh Siddha1e75b312011-08-25 12:01:11 -0700628 }
629
630 /*
631 * Clear the rest of the bits in the IO-APIC RTE except for the mask
632 * bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800634 ioapic_mask_entry(apic, pin);
Suresh Siddha1e75b312011-08-25 12:01:11 -0700635 entry = ioapic_read_entry(apic, pin);
636 if (entry.irr)
Joe Perchesc767a542012-05-21 19:50:07 -0700637 pr_err("Unable to reset IRR for apic: %d, pin :%d\n",
Suresh Siddha1e75b312011-08-25 12:01:11 -0700638 mpc_ioapic_id(apic), pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Ingo Molnar54168ed2008-08-20 09:07:45 +0200641static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int apic, pin;
644
645 for (apic = 0; apic < nr_ioapics; apic++)
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700646 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 clear_IO_APIC_pin(apic, pin);
648}
649
Ingo Molnar54168ed2008-08-20 09:07:45 +0200650#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/*
652 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
653 * specific CPU-side IRQs.
654 */
655
656#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800657static int pirq_entries[MAX_PIRQS] = {
658 [0 ... MAX_PIRQS - 1] = -1
659};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static int __init ioapic_pirq_setup(char *str)
662{
663 int i, max;
664 int ints[MAX_PIRQS+1];
665
666 get_options(str, ARRAY_SIZE(ints), ints);
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 apic_printk(APIC_VERBOSE, KERN_INFO
669 "PIRQ redirection, working around broken MP-BIOS.\n");
670 max = MAX_PIRQS;
671 if (ints[0] < MAX_PIRQS)
672 max = ints[0];
673
674 for (i = 0; i < max; i++) {
675 apic_printk(APIC_VERBOSE, KERN_DEBUG
676 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
677 /*
678 * PIRQs are mapped upside down, usually.
679 */
680 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
681 }
682 return 1;
683}
684
685__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200686#endif /* CONFIG_X86_32 */
687
Ingo Molnar54168ed2008-08-20 09:07:45 +0200688/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700689 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200690 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700691int save_ioapic_entries(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200692{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200693 int apic, pin;
Suresh Siddha31dce142011-05-18 16:31:33 -0700694 int err = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200695
696 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha57a6f742011-05-18 16:31:36 -0700697 if (!ioapics[apic].saved_registers) {
Suresh Siddha31dce142011-05-18 16:31:33 -0700698 err = -ENOMEM;
699 continue;
700 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200701
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700702 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Suresh Siddha57a6f742011-05-18 16:31:36 -0700703 ioapics[apic].saved_registers[pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200704 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700705 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400706
Suresh Siddha31dce142011-05-18 16:31:33 -0700707 return err;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200708}
709
Fenghua Yub24696b2009-03-27 14:22:44 -0700710/*
711 * Mask all IO APIC entries.
712 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700713void mask_ioapic_entries(void)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700714{
715 int apic, pin;
716
717 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha2f344d22011-05-24 10:45:31 -0700718 if (!ioapics[apic].saved_registers)
Suresh Siddha31dce142011-05-18 16:31:33 -0700719 continue;
Fenghua Yub24696b2009-03-27 14:22:44 -0700720
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700721 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700722 struct IO_APIC_route_entry entry;
723
Suresh Siddha57a6f742011-05-18 16:31:36 -0700724 entry = ioapics[apic].saved_registers[pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700725 if (!entry.mask) {
726 entry.mask = 1;
727 ioapic_write_entry(apic, pin, entry);
728 }
729 }
730 }
731}
732
Fenghua Yub24696b2009-03-27 14:22:44 -0700733/*
Suresh Siddha57a6f742011-05-18 16:31:36 -0700734 * Restore IO APIC entries which was saved in the ioapic structure.
Fenghua Yub24696b2009-03-27 14:22:44 -0700735 */
Suresh Siddha31dce142011-05-18 16:31:33 -0700736int restore_ioapic_entries(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200737{
738 int apic, pin;
739
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400740 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddha2f344d22011-05-24 10:45:31 -0700741 if (!ioapics[apic].saved_registers)
Suresh Siddha31dce142011-05-18 16:31:33 -0700742 continue;
Fenghua Yub24696b2009-03-27 14:22:44 -0700743
Suresh Siddhab69c6c32011-05-18 16:31:35 -0700744 for (pin = 0; pin < ioapics[apic].nr_registers; pin++)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200745 ioapic_write_entry(apic, pin,
Suresh Siddha57a6f742011-05-18 16:31:36 -0700746 ioapics[apic].saved_registers[pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400747 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700748 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/*
752 * Find the IRQ entry number of a certain pin.
753 */
Yinghai Lu6f50d452011-10-12 00:33:48 -0700754static int find_irq_entry(int ioapic_idx, int pin, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 int i;
757
758 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530759 if (mp_irqs[i].irqtype == type &&
Yinghai Lu6f50d452011-10-12 00:33:48 -0700760 (mp_irqs[i].dstapic == mpc_ioapic_id(ioapic_idx) ||
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530761 mp_irqs[i].dstapic == MP_APIC_ALL) &&
762 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return i;
764
765 return -1;
766}
767
768/*
769 * Find the pin to which IRQ[irq] (ISA) is connected
770 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800771static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 int i;
774
775 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530776 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300778 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530779 (mp_irqs[i].irqtype == type) &&
780 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530782 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 return -1;
785}
786
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800787static int __init find_isa_irq_apic(int irq, int type)
788{
789 int i;
790
791 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530792 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800793
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300794 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530795 (mp_irqs[i].irqtype == type) &&
796 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800797 break;
798 }
Yinghai Lu6f50d452011-10-12 00:33:48 -0700799
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800800 if (i < mp_irq_entries) {
Yinghai Lu6f50d452011-10-12 00:33:48 -0700801 int ioapic_idx;
802
803 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
804 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic)
805 return ioapic_idx;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800806 }
807
808 return -1;
809}
810
Paul Gortmakerbb8187d2012-05-17 19:06:13 -0400811#ifdef CONFIG_EISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/*
813 * EISA Edge/Level control register, ELCR
814 */
815static int EISA_ELCR(unsigned int irq)
816{
Jacob Panb81bb372009-11-09 11:27:04 -0800817 if (irq < legacy_pic->nr_legacy_irqs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 unsigned int port = 0x4d0 + (irq >> 3);
819 return (inb(port) >> (irq & 7)) & 1;
820 }
821 apic_printk(APIC_VERBOSE, KERN_INFO
822 "Broken MPtable reports ISA irq %d\n", irq);
823 return 0;
824}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200825
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300826#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300828/* ISA interrupts are always polarity zero edge triggered,
829 * when listed as conforming in the MP table. */
830
831#define default_ISA_trigger(idx) (0)
832#define default_ISA_polarity(idx) (0)
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/* EISA interrupts are always polarity zero and can be edge or level
835 * trigger depending on the ELCR value. If an interrupt is listed as
836 * EISA conforming in the MP table, that means its trigger type must
837 * be read in from the ELCR */
838
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530839#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300840#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842/* PCI interrupts are always polarity one level triggered,
843 * when listed as conforming in the MP table. */
844
845#define default_PCI_trigger(idx) (1)
846#define default_PCI_polarity(idx) (1)
847
Thomas Gleixnerb77cf6a2011-02-23 17:33:53 +0100848static int irq_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530850 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 int polarity;
852
853 /*
854 * Determine IRQ line polarity (high active or low active):
855 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530856 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200858 case 0: /* conforms, ie. bus-type dependent polarity */
859 if (test_bit(bus, mp_bus_not_pci))
860 polarity = default_ISA_polarity(idx);
861 else
862 polarity = default_PCI_polarity(idx);
863 break;
864 case 1: /* high active */
865 {
866 polarity = 0;
867 break;
868 }
869 case 2: /* reserved */
870 {
Joe Perchesc767a542012-05-21 19:50:07 -0700871 pr_warn("broken BIOS!!\n");
Ingo Molnar54168ed2008-08-20 09:07:45 +0200872 polarity = 1;
873 break;
874 }
875 case 3: /* low active */
876 {
877 polarity = 1;
878 break;
879 }
880 default: /* invalid */
881 {
Joe Perchesc767a542012-05-21 19:50:07 -0700882 pr_warn("broken BIOS!!\n");
Ingo Molnar54168ed2008-08-20 09:07:45 +0200883 polarity = 1;
884 break;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 return polarity;
888}
889
Thomas Gleixnerb77cf6a2011-02-23 17:33:53 +0100890static int irq_trigger(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530892 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 int trigger;
894
895 /*
896 * Determine IRQ trigger mode (edge or level sensitive):
897 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530898 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200900 case 0: /* conforms, ie. bus-type dependent */
901 if (test_bit(bus, mp_bus_not_pci))
902 trigger = default_ISA_trigger(idx);
903 else
904 trigger = default_PCI_trigger(idx);
Paul Gortmakerbb8187d2012-05-17 19:06:13 -0400905#ifdef CONFIG_EISA
Ingo Molnar54168ed2008-08-20 09:07:45 +0200906 switch (mp_bus_id_to_type[bus]) {
907 case MP_BUS_ISA: /* ISA pin */
908 {
909 /* set before the switch */
910 break;
911 }
912 case MP_BUS_EISA: /* EISA pin */
913 {
914 trigger = default_EISA_trigger(idx);
915 break;
916 }
917 case MP_BUS_PCI: /* PCI pin */
918 {
919 /* set before the switch */
920 break;
921 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200922 default:
923 {
Joe Perchesc767a542012-05-21 19:50:07 -0700924 pr_warn("broken BIOS!!\n");
Ingo Molnar54168ed2008-08-20 09:07:45 +0200925 trigger = 1;
926 break;
927 }
928 }
929#endif
930 break;
931 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200932 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200933 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200934 break;
935 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200936 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200937 {
Joe Perchesc767a542012-05-21 19:50:07 -0700938 pr_warn("broken BIOS!!\n");
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200939 trigger = 1;
940 break;
941 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200942 case 3: /* level */
943 {
944 trigger = 1;
945 break;
946 }
947 default: /* invalid */
948 {
Joe Perchesc767a542012-05-21 19:50:07 -0700949 pr_warn("broken BIOS!!\n");
Ingo Molnar54168ed2008-08-20 09:07:45 +0200950 trigger = 0;
951 break;
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954 return trigger;
955}
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957static int pin_2_irq(int idx, int apic, int pin)
958{
Eric W. Biedermand4642072010-03-30 01:07:13 -0700959 int irq;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530960 int bus = mp_irqs[idx].srcbus;
Suresh Siddhac040aae2011-05-18 16:31:38 -0700961 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(apic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /*
964 * Debugging check, we are in big trouble if this message pops up!
965 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530966 if (mp_irqs[idx].dstirq != pin)
Joe Perchesc767a542012-05-21 19:50:07 -0700967 pr_err("broken BIOS or MPTABLE parser, ayiee!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Ingo Molnar54168ed2008-08-20 09:07:45 +0200969 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530970 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200971 } else {
Suresh Siddhac040aae2011-05-18 16:31:38 -0700972 u32 gsi = gsi_cfg->gsi_base + pin;
Eric W. Biederman988856e2010-03-30 01:07:15 -0700973
974 if (gsi >= NR_IRQS_LEGACY)
975 irq = gsi;
976 else
Eric W. Biedermana4384df2010-06-08 11:44:32 -0700977 irq = gsi_top + gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Ingo Molnar54168ed2008-08-20 09:07:45 +0200980#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /*
982 * PCI IRQ command line redirection. Yes, limits are hardcoded.
983 */
984 if ((pin >= 16) && (pin <= 23)) {
985 if (pirq_entries[pin-16] != -1) {
986 if (!pirq_entries[pin-16]) {
987 apic_printk(APIC_VERBOSE, KERN_DEBUG
988 "disabling PIRQ%d\n", pin-16);
989 } else {
990 irq = pirq_entries[pin-16];
991 apic_printk(APIC_VERBOSE, KERN_DEBUG
992 "using PIRQ%d -> IRQ %d\n",
993 pin-16, irq);
994 }
995 }
996 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200997#endif
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return irq;
1000}
1001
Yinghai Lue20c06f2009-05-06 10:08:22 -07001002/*
1003 * Find a specific PCI IRQ entry.
1004 * Not an __init, possibly needed by modules
1005 */
1006int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001007 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001008{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001009 int ioapic_idx, i, best_guess = -1;
Yinghai Lue20c06f2009-05-06 10:08:22 -07001010
1011 apic_printk(APIC_DEBUG,
1012 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1013 bus, slot, pin);
1014 if (test_bit(bus, mp_bus_not_pci)) {
1015 apic_printk(APIC_VERBOSE,
1016 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1017 return -1;
1018 }
1019 for (i = 0; i < mp_irq_entries; i++) {
1020 int lbus = mp_irqs[i].srcbus;
1021
Yinghai Lu6f50d452011-10-12 00:33:48 -07001022 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1023 if (mpc_ioapic_id(ioapic_idx) == mp_irqs[i].dstapic ||
Yinghai Lue20c06f2009-05-06 10:08:22 -07001024 mp_irqs[i].dstapic == MP_APIC_ALL)
1025 break;
1026
1027 if (!test_bit(lbus, mp_bus_not_pci) &&
1028 !mp_irqs[i].irqtype &&
1029 (bus == lbus) &&
1030 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001031 int irq = pin_2_irq(i, ioapic_idx, mp_irqs[i].dstirq);
Yinghai Lue20c06f2009-05-06 10:08:22 -07001032
Yinghai Lu6f50d452011-10-12 00:33:48 -07001033 if (!(ioapic_idx || IO_APIC_IRQ(irq)))
Yinghai Lue20c06f2009-05-06 10:08:22 -07001034 continue;
1035
1036 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001037 set_io_apic_irq_attr(irq_attr, ioapic_idx,
Yinghai Lue5198072009-05-15 13:05:16 -07001038 mp_irqs[i].dstirq,
1039 irq_trigger(i),
1040 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001041 return irq;
1042 }
1043 /*
1044 * Use the first all-but-pin matching entry as a
1045 * best-guess fuzzy result for broken mptables.
1046 */
1047 if (best_guess < 0) {
Yinghai Lu6f50d452011-10-12 00:33:48 -07001048 set_io_apic_irq_attr(irq_attr, ioapic_idx,
Yinghai Lue5198072009-05-15 13:05:16 -07001049 mp_irqs[i].dstirq,
1050 irq_trigger(i),
1051 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001052 best_guess = irq;
1053 }
1054 }
1055 }
1056 return best_guess;
1057}
1058EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1059
Yinghai Lu497c9a12008-08-19 20:50:28 -07001060void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001062 /* Used to the online set of cpus does not change
1063 * during assign_irq_vector.
1064 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001065 raw_spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
Yinghai Lu497c9a12008-08-19 20:50:28 -07001068void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001069{
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001070 raw_spin_unlock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001071}
1072
Mike Travise7986732008-12-16 17:33:52 -08001073static int
1074__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001075{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001076 /*
1077 * NOTE! The local APIC isn't very good at handling
1078 * multiple interrupts at the same interrupt level.
1079 * As the interrupt level is determined by taking the
1080 * vector number and shifting that right by 4, we
1081 * want to spread these out a bit so that they don't
1082 * all fall in the same interrupt level.
1083 *
1084 * Also, we've got to be careful not to trash gate
1085 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1086 */
Suresh Siddha6579b472010-01-13 16:19:11 -08001087 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
Alexander Gordeev1bccd582012-06-07 15:15:15 +02001088 static int current_offset = VECTOR_OFFSET_START % 16;
Mike Travis22f65d32008-12-16 17:33:56 -08001089 int cpu, err;
1090 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001091
Suresh Siddha23359a82009-10-26 14:24:33 -08001092 if (cfg->move_in_progress)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001093 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001094
Mike Travis22f65d32008-12-16 17:33:56 -08001095 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1096 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001097
Mike Travise7986732008-12-16 17:33:52 -08001098 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001099 err = -ENOSPC;
Suresh Siddhab39f25a2012-06-25 13:38:27 -07001100 cpumask_clear(cfg->old_domain);
1101 cpu = cpumask_first_and(mask, cpu_online_mask);
1102 while (cpu < nr_cpu_ids) {
Suresh Siddha1ac322d2012-06-25 13:38:28 -07001103 int new_cpu, vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001104
Suresh Siddha1ac322d2012-06-25 13:38:28 -07001105 apic->vector_allocation_domain(cpu, tmp_mask, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001106
Suresh Siddha332afa62012-05-21 16:58:01 -07001107 if (cpumask_subset(tmp_mask, cfg->domain)) {
Suresh Siddha1ac322d2012-06-25 13:38:28 -07001108 err = 0;
1109 if (cpumask_equal(tmp_mask, cfg->domain))
1110 break;
1111 /*
1112 * New cpumask using the vector is a proper subset of
1113 * the current in use mask. So cleanup the vector
1114 * allocation for the members that are not used anymore.
1115 */
1116 cpumask_andnot(cfg->old_domain, cfg->domain, tmp_mask);
Suresh Siddha29c574c2012-11-26 14:49:36 -08001117 cfg->move_in_progress =
1118 cpumask_intersects(cfg->old_domain, cpu_online_mask);
Suresh Siddha1ac322d2012-06-25 13:38:28 -07001119 cpumask_and(cfg->domain, cfg->domain, tmp_mask);
1120 break;
Suresh Siddha332afa62012-05-21 16:58:01 -07001121 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001122
Ingo Molnar54168ed2008-08-20 09:07:45 +02001123 vector = current_vector;
1124 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001125next:
Alexander Gordeev1bccd582012-06-07 15:15:15 +02001126 vector += 16;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001127 if (vector >= first_system_vector) {
Alexander Gordeev1bccd582012-06-07 15:15:15 +02001128 offset = (offset + 1) % 16;
Suresh Siddha6579b472010-01-13 16:19:11 -08001129 vector = FIRST_EXTERNAL_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001130 }
Alexander Gordeev8637e382012-06-07 15:15:44 +02001131
1132 if (unlikely(current_vector == vector)) {
Suresh Siddhab39f25a2012-06-25 13:38:27 -07001133 cpumask_or(cfg->old_domain, cfg->old_domain, tmp_mask);
1134 cpumask_andnot(tmp_mask, mask, cfg->old_domain);
1135 cpu = cpumask_first_and(tmp_mask, cpu_online_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001136 continue;
Alexander Gordeev8637e382012-06-07 15:15:44 +02001137 }
Yinghai Lub77b8812008-12-19 15:23:44 -08001138
1139 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001140 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001141
Prarit Bhargava93450052014-01-05 11:10:52 -05001142 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask) {
1143 if (per_cpu(vector_irq, new_cpu)[vector] > VECTOR_UNDEFINED)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001144 goto next;
Prarit Bhargava93450052014-01-05 11:10:52 -05001145 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001146 /* Found one! */
1147 current_vector = vector;
1148 current_offset = offset;
Suresh Siddha1ac322d2012-06-25 13:38:28 -07001149 if (cfg->vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001150 cpumask_copy(cfg->old_domain, cfg->domain);
Suresh Siddha29c574c2012-11-26 14:49:36 -08001151 cfg->move_in_progress =
1152 cpumask_intersects(cfg->old_domain, cpu_online_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001153 }
Mike Travis22f65d32008-12-16 17:33:56 -08001154 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001155 per_cpu(vector_irq, new_cpu)[vector] = irq;
1156 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001157 cpumask_copy(cfg->domain, tmp_mask);
1158 err = 0;
1159 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001160 }
Mike Travis22f65d32008-12-16 17:33:56 -08001161 free_cpumask_var(tmp_mask);
1162 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001163}
1164
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05001165int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001166{
1167 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001168 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001169
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001170 raw_spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001171 err = __assign_irq_vector(irq, cfg, mask);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001172 raw_spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001173 return err;
1174}
1175
Yinghai Lu3145e942008-12-05 18:58:34 -08001176static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001177{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001178 int cpu, vector;
1179
Yinghai Lu497c9a12008-08-19 20:50:28 -07001180 BUG_ON(!cfg->vector);
1181
1182 vector = cfg->vector;
Tomoki Sekiyama1d44b302012-07-26 19:47:32 +09001183 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Prarit Bhargava93450052014-01-05 11:10:52 -05001184 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001185
1186 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001187 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001188
1189 if (likely(!cfg->move_in_progress))
1190 return;
Tomoki Sekiyama1d44b302012-07-26 19:47:32 +09001191 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Prarit Bhargava93450052014-01-05 11:10:52 -05001192 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001193 if (per_cpu(vector_irq, cpu)[vector] != irq)
1194 continue;
Prarit Bhargava93450052014-01-05 11:10:52 -05001195 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001196 break;
1197 }
1198 }
1199 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001200}
1201
1202void __setup_vector_irq(int cpu)
1203{
1204 /* Initialize vector_irq on a new cpu */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001205 int irq, vector;
1206 struct irq_cfg *cfg;
1207
Suresh Siddha9d133e52010-01-29 11:42:21 -08001208 /*
1209 * vector_lock will make sure that we don't run into irq vector
1210 * assignments that might be happening on another cpu in parallel,
1211 * while we setup our initial vector to irq mappings.
1212 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001213 raw_spin_lock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001214 /* Mark the inuse vectors */
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001215 for_each_active_irq(irq) {
Thomas Gleixner2c778652011-03-12 12:20:43 +01001216 cfg = irq_get_chip_data(irq);
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001217 if (!cfg)
1218 continue;
Suresh Siddha36e9e1e2010-03-15 14:33:06 -08001219
Mike Travis22f65d32008-12-16 17:33:56 -08001220 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001221 continue;
1222 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001223 per_cpu(vector_irq, cpu)[vector] = irq;
1224 }
1225 /* Mark the free vectors */
1226 for (vector = 0; vector < NR_VECTORS; ++vector) {
1227 irq = per_cpu(vector_irq, cpu)[vector];
Prarit Bhargava93450052014-01-05 11:10:52 -05001228 if (irq <= VECTOR_UNDEFINED)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001229 continue;
1230
1231 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001232 if (!cpumask_test_cpu(cpu, cfg->domain))
Prarit Bhargava93450052014-01-05 11:10:52 -05001233 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001234 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001235 raw_spin_unlock(&vector_lock);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001236}
Glauber Costa3fde6902008-05-28 20:34:19 -07001237
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001238static struct irq_chip ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001240#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001241static inline int IO_APIC_irq_trigger(int irq)
1242{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001243 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001244
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001245 for (apic = 0; apic < nr_ioapics; apic++) {
Suresh Siddhab69c6c32011-05-18 16:31:35 -07001246 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001247 idx = find_irq_entry(apic, pin, mp_INT);
1248 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1249 return irq_trigger(idx);
1250 }
1251 }
1252 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001253 * nonexistent IRQs are edge default
1254 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001255 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001256}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001257#else
1258static inline int IO_APIC_irq_trigger(int irq)
1259{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001260 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001261}
1262#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001263
Thomas Gleixner1a0e62a2011-03-12 13:47:18 +01001264static void ioapic_register_intr(unsigned int irq, struct irq_cfg *cfg,
1265 unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001267 struct irq_chip *chip = &ioapic_chip;
1268 irq_flow_handler_t hdl;
1269 bool fasteoi;
Yinghai Lu199751d2008-08-19 20:50:27 -07001270
Jan Beulich6ebcc002006-06-26 13:56:46 +02001271 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001272 trigger == IOAPIC_LEVEL) {
Thomas Gleixner60c69942010-09-28 17:28:38 +02001273 irq_set_status_flags(irq, IRQ_LEVEL);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001274 fasteoi = true;
1275 } else {
Thomas Gleixner60c69942010-09-28 17:28:38 +02001276 irq_clear_status_flags(irq, IRQ_LEVEL);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001277 fasteoi = false;
1278 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001279
Joerg Roedel2976fd82012-09-26 12:44:48 +02001280 if (setup_remapped_irq(irq, cfg, chip))
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001281 fasteoi = trigger != 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001282
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01001283 hdl = fasteoi ? handle_fasteoi_irq : handle_edge_irq;
1284 irq_set_chip_and_handler_name(irq, chip, hdl,
1285 fasteoi ? "fasteoi" : "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001286}
1287
Joerg Roedela6a25dd2012-09-26 12:44:40 +02001288int native_setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
1289 unsigned int destination, int vector,
1290 struct io_apic_irq_attr *attr)
Yinghai Luc5b47122011-10-12 00:33:15 -07001291{
Yinghai Luc5b47122011-10-12 00:33:15 -07001292 memset(entry, 0, sizeof(*entry));
1293
1294 entry->delivery_mode = apic->irq_delivery_mode;
1295 entry->dest_mode = apic->irq_dest_mode;
1296 entry->dest = destination;
1297 entry->vector = vector;
1298 entry->mask = 0; /* enable IRQ */
1299 entry->trigger = attr->trigger;
1300 entry->polarity = attr->polarity;
1301
1302 /*
1303 * Mask level triggered irqs.
1304 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1305 */
1306 if (attr->trigger)
1307 entry->mask = 1;
1308
Yinghai Lu497c9a12008-08-19 20:50:28 -07001309 return 0;
1310}
1311
Yinghai Lue4aff812011-10-12 00:33:05 -07001312static void setup_ioapic_irq(unsigned int irq, struct irq_cfg *cfg,
1313 struct io_apic_irq_attr *attr)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001314{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001315 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001316 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001317
1318 if (!IO_APIC_IRQ(irq))
1319 return;
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001320
Ingo Molnarfe402e12009-01-28 04:32:51 +01001321 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001322 return;
1323
Alexander Gordeevff164322012-06-07 15:15:59 +02001324 if (apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus(),
1325 &dest)) {
1326 pr_warn("Failed to obtain apicid for ioapic %d, pin %d\n",
1327 mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
1328 __clear_irq_vector(irq, cfg);
1329
1330 return;
1331 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001332
1333 apic_printk(APIC_VERBOSE,KERN_DEBUG
1334 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
Naga Chumbalkar7fece832011-07-08 18:46:42 +00001335 "IRQ %d Mode:%i Active:%i Dest:%d)\n",
Yinghai Lue4aff812011-10-12 00:33:05 -07001336 attr->ioapic, mpc_ioapic_id(attr->ioapic), attr->ioapic_pin,
1337 cfg->vector, irq, attr->trigger, attr->polarity, dest);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001338
Joerg Roedela6a25dd2012-09-26 12:44:40 +02001339 if (x86_io_apic_ops.setup_entry(irq, &entry, dest, cfg->vector, attr)) {
1340 pr_warn("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Yinghai Luc5b47122011-10-12 00:33:15 -07001341 mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001342 __clear_irq_vector(irq, cfg);
Yinghai Luc5b47122011-10-12 00:33:15 -07001343
Yinghai Lu497c9a12008-08-19 20:50:28 -07001344 return;
1345 }
1346
Yinghai Lue4aff812011-10-12 00:33:05 -07001347 ioapic_register_intr(irq, cfg, attr->trigger);
Jacob Panb81bb372009-11-09 11:27:04 -08001348 if (irq < legacy_pic->nr_legacy_irqs)
Thomas Gleixner4305df92010-09-28 15:01:33 +02001349 legacy_pic->mask(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001350
Yinghai Lue4aff812011-10-12 00:33:05 -07001351 ioapic_write_entry(attr->ioapic, attr->ioapic_pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Yinghai Lu6f50d452011-10-12 00:33:48 -07001354static bool __init io_apic_pin_not_connected(int idx, int ioapic_idx, int pin)
Thomas Gleixnerc8d6b8f2011-02-23 14:29:34 +01001355{
1356 if (idx != -1)
1357 return false;
1358
1359 apic_printk(APIC_VERBOSE, KERN_DEBUG " apic %d pin %d not connected\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001360 mpc_ioapic_id(ioapic_idx), pin);
Thomas Gleixnerc8d6b8f2011-02-23 14:29:34 +01001361 return true;
1362}
1363
Yinghai Lu6f50d452011-10-12 00:33:48 -07001364static void __init __io_apic_setup_irqs(unsigned int ioapic_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001366 int idx, node = cpu_to_node(0);
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001367 struct io_apic_irq_attr attr;
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001368 unsigned int pin, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Yinghai Lu6f50d452011-10-12 00:33:48 -07001370 for (pin = 0; pin < ioapics[ioapic_idx].nr_registers; pin++) {
1371 idx = find_irq_entry(ioapic_idx, pin, mp_INT);
1372 if (io_apic_pin_not_connected(idx, ioapic_idx, pin))
Yinghai Lub9c61b702009-05-06 10:10:06 -07001373 continue;
Yinghai Lub9c61b702009-05-06 10:10:06 -07001374
Yinghai Lu6f50d452011-10-12 00:33:48 -07001375 irq = pin_2_irq(idx, ioapic_idx, pin);
Yinghai Lub9c61b702009-05-06 10:10:06 -07001376
Yinghai Lu6f50d452011-10-12 00:33:48 -07001377 if ((ioapic_idx > 0) && (irq > 16))
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001378 continue;
1379
Yinghai Lub9c61b702009-05-06 10:10:06 -07001380 /*
1381 * Skip the timer IRQ if there's a quirk handler
1382 * installed and if it returns 1:
1383 */
1384 if (apic->multi_timer_check &&
Yinghai Lu6f50d452011-10-12 00:33:48 -07001385 apic->multi_timer_check(ioapic_idx, irq))
Yinghai Lub9c61b702009-05-06 10:10:06 -07001386 continue;
1387
Yinghai Lu6f50d452011-10-12 00:33:48 -07001388 set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001389 irq_polarity(idx));
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02001390
Thomas Gleixner2d57e372011-02-23 14:40:35 +01001391 io_apic_setup_irq_pin(irq, node, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001395static void __init setup_IO_APIC_irqs(void)
1396{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001397 unsigned int ioapic_idx;
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001398
1399 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1400
Yinghai Lu6f50d452011-10-12 00:33:48 -07001401 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1402 __io_apic_setup_irqs(ioapic_idx);
Thomas Gleixnered972cc2011-02-23 14:31:36 +01001403}
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405/*
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001406 * for the gsit that is not in first ioapic
1407 * but could not use acpi_register_gsi()
1408 * like some special sci in IBM x3330
1409 */
1410void setup_IO_APIC_irq_extra(u32 gsi)
1411{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001412 int ioapic_idx = 0, pin, idx, irq, node = cpu_to_node(0);
Thomas Gleixnerda1ad9d2011-02-23 14:52:16 +01001413 struct io_apic_irq_attr attr;
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001414
1415 /*
1416 * Convert 'gsi' to 'ioapic.pin'.
1417 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001418 ioapic_idx = mp_find_ioapic(gsi);
1419 if (ioapic_idx < 0)
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001420 return;
1421
Yinghai Lu6f50d452011-10-12 00:33:48 -07001422 pin = mp_find_ioapic_pin(ioapic_idx, gsi);
1423 idx = find_irq_entry(ioapic_idx, pin, mp_INT);
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001424 if (idx == -1)
1425 return;
1426
Yinghai Lu6f50d452011-10-12 00:33:48 -07001427 irq = pin_2_irq(idx, ioapic_idx, pin);
Yinghai Lufe6dab42010-10-08 22:44:02 -07001428
1429 /* Only handle the non legacy irqs on secondary ioapics */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001430 if (ioapic_idx == 0 || irq < NR_IRQS_LEGACY)
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001431 return;
Yinghai Lufe6dab42010-10-08 22:44:02 -07001432
Yinghai Lu6f50d452011-10-12 00:33:48 -07001433 set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
Thomas Gleixnerda1ad9d2011-02-23 14:52:16 +01001434 irq_polarity(idx));
1435
Thomas Gleixner710dcda2011-02-23 17:47:41 +01001436 io_apic_setup_irq_pin_once(irq, node, &attr);
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001437}
1438
1439/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001440 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001442static void __init setup_timer_IRQ0_pin(unsigned int ioapic_idx,
Alexander Gordeev49d0c7a2012-06-05 13:23:15 +02001443 unsigned int pin, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 struct IO_APIC_route_entry entry;
Alexander Gordeevff164322012-06-07 15:15:59 +02001446 unsigned int dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001448 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /*
1451 * We use logical delivery to get the timer IRQ
1452 * to the first CPU.
1453 */
Alexander Gordeeva5a39152012-06-14 09:49:35 +02001454 if (unlikely(apic->cpu_mask_to_apicid_and(apic->target_cpus(),
1455 apic->target_cpus(), &dest)))
Alexander Gordeevff164322012-06-07 15:15:59 +02001456 dest = BAD_APICID;
1457
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001458 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001459 entry.mask = 0; /* don't mask IRQ for edge */
Alexander Gordeevff164322012-06-07 15:15:59 +02001460 entry.dest = dest;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001461 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 entry.polarity = 0;
1463 entry.trigger = 0;
1464 entry.vector = vector;
1465
1466 /*
1467 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001468 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
Thomas Gleixner2c778652011-03-12 12:20:43 +01001470 irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
1471 "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /*
1474 * Add it to the IO-APIC irq-routing table:
1475 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001476 ioapic_write_entry(ioapic_idx, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
Joerg Roedelafcc8a42012-09-26 12:44:36 +02001479void native_io_apic_print_entries(unsigned int apic, unsigned int nr_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Yinghai Lucda417d2011-10-12 00:33:39 -07001481 int i;
Joerg Roedelafcc8a42012-09-26 12:44:36 +02001482
1483 pr_debug(" NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:\n");
1484
1485 for (i = 0; i <= nr_entries; i++) {
1486 struct IO_APIC_route_entry entry;
1487
1488 entry = ioapic_read_entry(apic, i);
1489
1490 pr_debug(" %02x %02X ", i, entry.dest);
1491 pr_cont("%1d %1d %1d %1d %1d "
1492 "%1d %1d %02X\n",
1493 entry.mask,
1494 entry.trigger,
1495 entry.irr,
1496 entry.polarity,
1497 entry.delivery_status,
1498 entry.dest_mode,
1499 entry.delivery_mode,
1500 entry.vector);
1501 }
1502}
1503
1504void intel_ir_io_apic_print_entries(unsigned int apic,
1505 unsigned int nr_entries)
1506{
1507 int i;
1508
1509 pr_debug(" NR Indx Fmt Mask Trig IRR Pol Stat Indx2 Zero Vect:\n");
1510
1511 for (i = 0; i <= nr_entries; i++) {
1512 struct IR_IO_APIC_route_entry *ir_entry;
1513 struct IO_APIC_route_entry entry;
1514
1515 entry = ioapic_read_entry(apic, i);
1516
1517 ir_entry = (struct IR_IO_APIC_route_entry *)&entry;
1518
1519 pr_debug(" %02x %04X ", i, ir_entry->index);
1520 pr_cont("%1d %1d %1d %1d %1d "
1521 "%1d %1d %X %02X\n",
1522 ir_entry->format,
1523 ir_entry->mask,
1524 ir_entry->trigger,
1525 ir_entry->irr,
1526 ir_entry->polarity,
1527 ir_entry->delivery_status,
1528 ir_entry->index2,
1529 ir_entry->zero,
1530 ir_entry->vector);
1531 }
1532}
1533
Yoshihiro YUNOMAE17405452013-08-20 16:01:07 +09001534void ioapic_zap_locks(void)
1535{
1536 raw_spin_lock_init(&ioapic_lock);
1537}
1538
Joerg Roedelafcc8a42012-09-26 12:44:36 +02001539__apicdebuginit(void) print_IO_APIC(int ioapic_idx)
1540{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 union IO_APIC_reg_00 reg_00;
1542 union IO_APIC_reg_01 reg_01;
1543 union IO_APIC_reg_02 reg_02;
1544 union IO_APIC_reg_03 reg_03;
1545 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001547 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001548 reg_00.raw = io_apic_read(ioapic_idx, 0);
1549 reg_01.raw = io_apic_read(ioapic_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (reg_01.bits.version >= 0x10)
Yinghai Lu6f50d452011-10-12 00:33:48 -07001551 reg_02.raw = io_apic_read(ioapic_idx, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001552 if (reg_01.bits.version >= 0x20)
Yinghai Lu6f50d452011-10-12 00:33:48 -07001553 reg_03.raw = io_apic_read(ioapic_idx, 3);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001554 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Yinghai Lu6f50d452011-10-12 00:33:48 -07001556 printk(KERN_DEBUG "IO APIC #%d......\n", mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1558 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1559 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1560 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Ingo Molnar54168ed2008-08-20 09:07:45 +02001562 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Naga Chumbalkarbd6a46e2011-07-08 18:46:36 +00001563 printk(KERN_DEBUG "....... : max redirection entries: %02X\n",
1564 reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
Naga Chumbalkarbd6a46e2011-07-08 18:46:36 +00001567 printk(KERN_DEBUG "....... : IO APIC version: %02X\n",
1568 reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 /*
1571 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1572 * but the value of reg_02 is read as the previous read register
1573 * value, so ignore it if reg_02 == reg_01.
1574 */
1575 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1576 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1577 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
1580 /*
1581 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1582 * or reg_03, but the value of reg_0[23] is read as the previous read
1583 * register value, so ignore it if reg_03 == reg_0[12].
1584 */
1585 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1586 reg_03.raw != reg_01.raw) {
1587 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1588 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
1591 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1592
Joerg Roedelafcc8a42012-09-26 12:44:36 +02001593 x86_io_apic_ops.print_entries(ioapic_idx, reg_01.bits.entries);
Yinghai Lucda417d2011-10-12 00:33:39 -07001594}
1595
1596__apicdebuginit(void) print_IO_APICs(void)
1597{
Yinghai Lu6f50d452011-10-12 00:33:48 -07001598 int ioapic_idx;
Yinghai Lucda417d2011-10-12 00:33:39 -07001599 struct irq_cfg *cfg;
1600 unsigned int irq;
Mathias Nyman6fd36ba2011-11-10 13:45:24 +00001601 struct irq_chip *chip;
Yinghai Lucda417d2011-10-12 00:33:39 -07001602
1603 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001604 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
Yinghai Lucda417d2011-10-12 00:33:39 -07001605 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001606 mpc_ioapic_id(ioapic_idx),
1607 ioapics[ioapic_idx].nr_registers);
Yinghai Lucda417d2011-10-12 00:33:39 -07001608
1609 /*
1610 * We are a bit conservative about what we expect. We have to
1611 * know about every hardware change ASAP.
1612 */
1613 printk(KERN_INFO "testing the IO APIC.......................\n");
1614
Yinghai Lu6f50d452011-10-12 00:33:48 -07001615 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1616 print_IO_APIC(ioapic_idx);
Naga Chumbalkar42f0efc2011-07-12 21:17:35 +00001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02001619 for_each_active_irq(irq) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001620 struct irq_pin_list *entry;
1621
Mathias Nyman6fd36ba2011-11-10 13:45:24 +00001622 chip = irq_get_chip(irq);
1623 if (chip != &ioapic_chip)
1624 continue;
1625
Thomas Gleixner2c778652011-03-12 12:20:43 +01001626 cfg = irq_get_chip_data(irq);
Daniel Kiper05e40762010-08-20 00:46:16 +02001627 if (!cfg)
1628 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001629 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001630 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001632 printk(KERN_DEBUG "IRQ%d ", irq);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04001633 for_each_irq_pin(entry, cfg->irq_2_pin)
Joe Perchesc767a542012-05-21 19:50:07 -07001634 pr_cont("-> %d:%d", entry->apic, entry->pin);
1635 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
1637
1638 printk(KERN_INFO ".................................... done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
Ingo Molnar251e1e42009-07-02 08:54:01 +02001641__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001643 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Ingo Molnar251e1e42009-07-02 08:54:01 +02001645 printk(KERN_DEBUG);
1646
1647 for (i = 0; i < 8; i++)
Joe Perchesc767a542012-05-21 19:50:07 -07001648 pr_cont("%08x", apic_read(base + i*0x10));
Ingo Molnar251e1e42009-07-02 08:54:01 +02001649
Joe Perchesc767a542012-05-21 19:50:07 -07001650 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001653__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001655 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001656 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Ingo Molnar251e1e42009-07-02 08:54:01 +02001658 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001660 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001661 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 v = apic_read(APIC_LVR);
1663 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1664 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001665 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 v = apic_read(APIC_TASKPRI);
1668 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1669
Ingo Molnar54168ed2008-08-20 09:07:45 +02001670 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001671 if (!APIC_XAPIC(ver)) {
1672 v = apic_read(APIC_ARBPRI);
1673 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1674 v & APIC_ARBPRI_MASK);
1675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 v = apic_read(APIC_PROCPRI);
1677 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1678 }
1679
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001680 /*
1681 * Remote read supported only in the 82489DX and local APIC for
1682 * Pentium processors.
1683 */
1684 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1685 v = apic_read(APIC_RRR);
1686 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1687 }
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 v = apic_read(APIC_LDR);
1690 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001691 if (!x2apic_enabled()) {
1692 v = apic_read(APIC_DFR);
1693 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 v = apic_read(APIC_SPIV);
1696 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1697
1698 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001699 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001701 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001703 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Ingo Molnar54168ed2008-08-20 09:07:45 +02001705 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1706 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 v = apic_read(APIC_ESR);
1710 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1711 }
1712
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001713 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001714 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1715 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 v = apic_read(APIC_LVTT);
1718 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1719
1720 if (maxlvt > 3) { /* PC is LVT#4. */
1721 v = apic_read(APIC_LVTPC);
1722 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1723 }
1724 v = apic_read(APIC_LVT0);
1725 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1726 v = apic_read(APIC_LVT1);
1727 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1728
1729 if (maxlvt > 2) { /* ERR is LVT#3. */
1730 v = apic_read(APIC_LVTERR);
1731 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1732 }
1733
1734 v = apic_read(APIC_TMICT);
1735 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1736 v = apic_read(APIC_TMCCT);
1737 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1738 v = apic_read(APIC_TDCR);
1739 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001740
1741 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1742 v = apic_read(APIC_EFEAT);
1743 maxlvt = (v >> 16) & 0xff;
1744 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1745 v = apic_read(APIC_ECTRL);
1746 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1747 for (i = 0; i < maxlvt; i++) {
1748 v = apic_read(APIC_EILVTn(i));
1749 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1750 }
1751 }
Joe Perchesc767a542012-05-21 19:50:07 -07001752 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001755__apicdebuginit(void) print_local_APICs(int maxcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001757 int cpu;
1758
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001759 if (!maxcpu)
1760 return;
1761
Yinghai Luffd5aae2008-08-19 20:50:50 -07001762 preempt_disable();
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001763 for_each_online_cpu(cpu) {
1764 if (cpu >= maxcpu)
1765 break;
Yinghai Luffd5aae2008-08-19 20:50:50 -07001766 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001767 }
Yinghai Luffd5aae2008-08-19 20:50:50 -07001768 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001771__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 unsigned int v;
1774 unsigned long flags;
1775
Jacob Panb81bb372009-11-09 11:27:04 -08001776 if (!legacy_pic->nr_legacy_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return;
1778
1779 printk(KERN_DEBUG "\nprinting PIC contents\n");
1780
Thomas Gleixner5619c282009-07-25 18:35:11 +02001781 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 v = inb(0xa1) << 8 | inb(0x21);
1784 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1785
1786 v = inb(0xa0) << 8 | inb(0x20);
1787 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1788
Ingo Molnar54168ed2008-08-20 09:07:45 +02001789 outb(0x0b,0xa0);
1790 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001792 outb(0x0a,0xa0);
1793 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Thomas Gleixner5619c282009-07-25 18:35:11 +02001795 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1798
1799 v = inb(0x4d1) << 8 | inb(0x4d0);
1800 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1801}
1802
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001803static int __initdata show_lapic = 1;
1804static __init int setup_show_lapic(char *arg)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001805{
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001806 int num = -1;
1807
1808 if (strcmp(arg, "all") == 0) {
1809 show_lapic = CONFIG_NR_CPUS;
1810 } else {
1811 get_option(&arg, &num);
1812 if (num >= 0)
1813 show_lapic = num;
1814 }
1815
1816 return 1;
1817}
1818__setup("show_lapic=", setup_show_lapic);
1819
1820__apicdebuginit(int) print_ICs(void)
1821{
1822 if (apic_verbosity == APIC_QUIET)
1823 return 0;
1824
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001825 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001826
1827 /* don't print out if apic is not there */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001828 if (!cpu_has_apic && !apic_from_smp_config())
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001829 return 0;
1830
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001831 print_local_APICs(show_lapic);
Yinghai Lucda417d2011-10-12 00:33:39 -07001832 print_IO_APICs();
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001833
1834 return 0;
1835}
1836
Naga Chumbalkarded1f6a2011-07-08 08:36:34 +00001837late_initcall(print_ICs);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Yinghai Luefa25592008-08-19 20:50:36 -07001840/* Where if anywhere is the i8259 connect in external int mode */
1841static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1842
Ingo Molnar54168ed2008-08-20 09:07:45 +02001843void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001845 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001846 int apic;
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001847
Jacob Panb81bb372009-11-09 11:27:04 -08001848 if (!legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001849 return;
1850
Ingo Molnar54168ed2008-08-20 09:07:45 +02001851 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001852 int pin;
1853 /* See if any of the pins is in ExtINT mode */
Suresh Siddhab69c6c32011-05-18 16:31:35 -07001854 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001855 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001856 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001857
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001858 /* If the interrupt line is enabled and in ExtInt mode
1859 * I have found the pin where the i8259 is connected.
1860 */
1861 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1862 ioapic_i8259.apic = apic;
1863 ioapic_i8259.pin = pin;
1864 goto found_i8259;
1865 }
1866 }
1867 }
1868 found_i8259:
1869 /* Look to see what if the MP table has reported the ExtINT */
1870 /* If we could not find the appropriate pin by looking at the ioapic
1871 * the i8259 probably is not connected the ioapic but give the
1872 * mptable a chance anyway.
1873 */
1874 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1875 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1876 /* Trust the MP table if nothing is setup in the hardware */
1877 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1878 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1879 ioapic_i8259.pin = i8259_pin;
1880 ioapic_i8259.apic = i8259_apic;
1881 }
1882 /* Complain if the MP table and the hardware disagree */
1883 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1884 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1885 {
1886 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888
1889 /*
1890 * Do not trust the IO-APIC being empty at bootup
1891 */
1892 clear_IO_APIC();
1893}
1894
Joerg Roedel1c4248c2012-09-26 12:44:35 +02001895void native_disable_io_apic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
1897 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001898 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001899 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001900 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001901 */
Joerg Roedel1c4248c2012-09-26 12:44:35 +02001902 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001903 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001904
1905 memset(&entry, 0, sizeof(entry));
1906 entry.mask = 0; /* Enabled */
1907 entry.trigger = 0; /* Edge */
1908 entry.irr = 0;
1909 entry.polarity = 0; /* High */
1910 entry.delivery_status = 0;
1911 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001912 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001913 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001914 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001915
1916 /*
1917 * Add it to the IO-APIC irq-routing table:
1918 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001919 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001920 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001921
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001922 if (cpu_has_apic || apic_from_smp_config())
Joerg Roedel1c4248c2012-09-26 12:44:35 +02001923 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1924
1925}
1926
1927/*
1928 * Not an __init, needed by the reboot code
1929 */
1930void disable_IO_APIC(void)
1931{
1932 /*
1933 * Clear the IO-APIC before rebooting:
1934 */
1935 clear_IO_APIC();
1936
1937 if (!legacy_pic->nr_legacy_irqs)
1938 return;
1939
1940 x86_io_apic_ops.disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941}
1942
Ingo Molnar54168ed2008-08-20 09:07:45 +02001943#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944/*
1945 * function to set the IO-APIC physical IDs based on the
1946 * values stored in the MPC table.
1947 *
1948 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1949 */
Sebastian Andrzej Siewiora38c5382010-11-26 17:50:20 +01001950void __init setup_ioapic_ids_from_mpc_nocheck(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 union IO_APIC_reg_00 reg_00;
1953 physid_mask_t phys_id_present_map;
Yinghai Lu6f50d452011-10-12 00:33:48 -07001954 int ioapic_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 int i;
1956 unsigned char old_id;
1957 unsigned long flags;
1958
Natalie Protasevichca05fea2005-06-23 00:08:22 -07001959 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 * This is broken; anything with a real cpu count has to
1961 * circumvent this idiocy regardless.
1962 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03001963 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 /*
1966 * Set the IOAPIC ID to the value stored in the MPC table.
1967 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07001968 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 /* Read the register 0 value */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001970 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001971 reg_00.raw = io_apic_read(ioapic_idx, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001972 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001973
Yinghai Lu6f50d452011-10-12 00:33:48 -07001974 old_id = mpc_ioapic_id(ioapic_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Yinghai Lu6f50d452011-10-12 00:33:48 -07001976 if (mpc_ioapic_id(ioapic_idx) >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001978 ioapic_idx, mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1980 reg_00.bits.ID);
Yinghai Lu6f50d452011-10-12 00:33:48 -07001981 ioapics[ioapic_idx].mp_config.apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 /*
1985 * Sanity check, is the ID really free? Every APIC in a
1986 * system must have a unique ID or we get lots of nice
1987 * 'stuck on smp_invalidate_needed IPI wait' messages.
1988 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03001989 if (apic->check_apicid_used(&phys_id_present_map,
Yinghai Lu6f50d452011-10-12 00:33:48 -07001990 mpc_ioapic_id(ioapic_idx))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07001992 ioapic_idx, mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 for (i = 0; i < get_physical_broadcast(); i++)
1994 if (!physid_isset(i, phys_id_present_map))
1995 break;
1996 if (i >= get_physical_broadcast())
1997 panic("Max APIC ID exceeded!\n");
1998 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1999 i);
2000 physid_set(i, phys_id_present_map);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002001 ioapics[ioapic_idx].mp_config.apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 } else {
2003 physid_mask_t tmp;
Yinghai Lu6f50d452011-10-12 00:33:48 -07002004 apic->apicid_to_cpu_present(mpc_ioapic_id(ioapic_idx),
Suresh Siddhad5371432011-05-18 16:31:37 -07002005 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 apic_printk(APIC_VERBOSE, "Setting %d in the "
2007 "phys_id_present_map\n",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002008 mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2010 }
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /*
2013 * We need to adjust the IRQ routing table
2014 * if the ID changed.
2015 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07002016 if (old_id != mpc_ioapic_id(ioapic_idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302018 if (mp_irqs[i].dstapic == old_id)
2019 mp_irqs[i].dstapic
Yinghai Lu6f50d452011-10-12 00:33:48 -07002020 = mpc_ioapic_id(ioapic_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 /*
Yinghai Lu60d79fd2010-12-07 00:59:49 -08002023 * Update the ID register according to the right value
2024 * from the MPC table if they are different.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002025 */
Yinghai Lu6f50d452011-10-12 00:33:48 -07002026 if (mpc_ioapic_id(ioapic_idx) == reg_00.bits.ID)
Yinghai Lu60d79fd2010-12-07 00:59:49 -08002027 continue;
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 apic_printk(APIC_VERBOSE, KERN_INFO
2030 "...changing IO-APIC physical APIC ID to %d ...",
Yinghai Lu6f50d452011-10-12 00:33:48 -07002031 mpc_ioapic_id(ioapic_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Yinghai Lu6f50d452011-10-12 00:33:48 -07002033 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002034 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002035 io_apic_write(ioapic_idx, 0, reg_00.raw);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002036 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 /*
2039 * Sanity check
2040 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002041 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002042 reg_00.raw = io_apic_read(ioapic_idx, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002043 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002044 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx))
Joe Perchesc767a542012-05-21 19:50:07 -07002045 pr_cont("could not set ID!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 else
2047 apic_printk(APIC_VERBOSE, " ok.\n");
2048 }
2049}
Sebastian Andrzej Siewiora38c5382010-11-26 17:50:20 +01002050
2051void __init setup_ioapic_ids_from_mpc(void)
2052{
2053
2054 if (acpi_ioapic)
2055 return;
2056 /*
2057 * Don't check I/O APIC IDs for xAPIC systems. They have
2058 * no meaning without the serial APIC bus.
2059 */
2060 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2061 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2062 return;
2063 setup_ioapic_ids_from_mpc_nocheck();
2064}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002065#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002067int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002068
2069static int __init notimercheck(char *s)
2070{
2071 no_timer_check = 1;
2072 return 1;
2073}
2074__setup("no_timer_check", notimercheck);
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076/*
2077 * There is a nasty bug in some older SMP boards, their mptable lies
2078 * about the timer IRQ. We do the following to work around the situation:
2079 *
2080 * - timer IRQ defaults to IO-APIC IRQ
2081 * - if this function detects that timer IRQs are defunct, then we fall
2082 * back to ISA timer IRQs
2083 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002084static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002087 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Zachary Amsden8542b202006-12-07 02:14:09 +01002089 if (no_timer_check)
2090 return 1;
2091
Ingo Molnar4aae0702007-12-18 18:05:58 +01002092 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 local_irq_enable();
2094 /* Let ten ticks pass... */
2095 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002096 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /*
2099 * Expect a few ticks at least, to be sure some possible
2100 * glue logic does not lock up after one or two first
2101 * ticks in a non-ExtINT mode. Also the local APIC
2102 * might have cached one ExtINT interrupt. Finally, at
2103 * least one tick may be lost due to delays.
2104 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002105
2106 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002107 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 return 0;
2110}
2111
2112/*
2113 * In the SMP+IOAPIC case it might happen that there are an unspecified
2114 * number of pending IRQ events unhandled. These cases are very rare,
2115 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2116 * better to do it this way as thus we do not have to be aware of
2117 * 'pending' interrupts in the IRQ path, except at this point.
2118 */
2119/*
2120 * Edge triggered needs to resend any interrupt
2121 * that was delayed but this is now handled in the device
2122 * independent code.
2123 */
2124
2125/*
2126 * Starting up a edge-triggered IO-APIC interrupt is
2127 * nasty - we need to make sure that we get the edge.
2128 * If it is already asserted for some reason, we need
2129 * return 1 to indicate that is was pending.
2130 *
2131 * This is not complete - we should be able to fake
2132 * an edge even if it isn't on the 8259A...
2133 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002134
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002135static unsigned int startup_ioapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002137 int was_pending = 0, irq = data->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 unsigned long flags;
2139
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002140 raw_spin_lock_irqsave(&ioapic_lock, flags);
Jacob Panb81bb372009-11-09 11:27:04 -08002141 if (irq < legacy_pic->nr_legacy_irqs) {
Thomas Gleixner4305df92010-09-28 15:01:33 +02002142 legacy_pic->mask(irq);
Jacob Panb81bb372009-11-09 11:27:04 -08002143 if (legacy_pic->irq_pending(irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 was_pending = 1;
2145 }
Thomas Gleixner61a38ce2010-09-28 16:00:34 +02002146 __unmask_ioapic(data->chip_data);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002147 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 return was_pending;
2150}
2151
Thomas Gleixner90297c52010-09-28 16:03:54 +02002152static int ioapic_retrigger_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002154 struct irq_cfg *cfg = data->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002155 unsigned long flags;
Fenghua Yu8d966a02012-11-13 11:32:49 -08002156 int cpu;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002157
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002158 raw_spin_lock_irqsave(&vector_lock, flags);
Fenghua Yu8d966a02012-11-13 11:32:49 -08002159 cpu = cpumask_first_and(cfg->domain, cpu_online_mask);
2160 apic->send_IPI_mask(cpumask_of(cpu), cfg->vector);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002161 raw_spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002162
2163 return 1;
2164}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002165
2166/*
2167 * Level and edge triggered IO-APIC interrupts need different handling,
2168 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2169 * handled with the level-triggered descriptor, but that one has slightly
2170 * more overhead. Level-triggered interrupts cannot be handled with the
2171 * edge-triggered handler, without risking IRQ storms and other ugly
2172 * races.
2173 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002174
Yinghai Lu497c9a12008-08-19 20:50:28 -07002175#ifdef CONFIG_SMP
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002176void send_cleanup_vector(struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002177{
2178 cpumask_var_t cleanup_mask;
2179
2180 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2181 unsigned int i;
Gary Hadee85abf82009-04-08 14:07:25 -07002182 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2183 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2184 } else {
2185 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002186 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2187 free_cpumask_var(cleanup_mask);
2188 }
2189 cfg->move_in_progress = 0;
2190}
2191
Yinghai Lu497c9a12008-08-19 20:50:28 -07002192asmlinkage void smp_irq_move_cleanup_interrupt(void)
2193{
2194 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002195
Yinghai Lu497c9a12008-08-19 20:50:28 -07002196 ack_APIC_irq();
2197 irq_enter();
Frederic Weisbecker98ad1cc2011-10-07 18:22:09 +02002198 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002199
2200 me = smp_processor_id();
2201 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
Prarit Bhargavac7a730f2014-01-13 08:40:20 -05002202 int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002203 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002204 struct irq_desc *desc;
2205 struct irq_cfg *cfg;
Tejun Heo0a3aee02010-12-18 16:28:55 +01002206 irq = __this_cpu_read(vector_irq[vector]);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002207
Prarit Bhargava93450052014-01-05 11:10:52 -05002208 if (irq <= VECTOR_UNDEFINED)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002209 continue;
2210
Yinghai Lu497c9a12008-08-19 20:50:28 -07002211 desc = irq_to_desc(irq);
2212 if (!desc)
2213 continue;
2214
2215 cfg = irq_cfg(irq);
Dimitri Sivanich94777fc2012-10-16 07:50:21 -05002216 if (!cfg)
2217 continue;
2218
Thomas Gleixner239007b2009-11-17 16:46:45 +01002219 raw_spin_lock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002220
Suresh Siddha7f41c2e2010-01-06 10:56:31 -08002221 /*
2222 * Check if the irq migration is in progress. If so, we
2223 * haven't received the cleanup request yet for this irq.
2224 */
2225 if (cfg->move_in_progress)
2226 goto unlock;
2227
Mike Travis22f65d32008-12-16 17:33:56 -08002228 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002229 goto unlock;
2230
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002231 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2232 /*
2233 * Check if the vector that needs to be cleanedup is
2234 * registered at the cpu's IRR. If so, then this is not
2235 * the best time to clean it up. Lets clean it up in the
2236 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2237 * to myself.
2238 */
2239 if (irr & (1 << (vector % 32))) {
2240 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2241 goto unlock;
2242 }
Tejun Heo0a3aee02010-12-18 16:28:55 +01002243 __this_cpu_write(vector_irq[vector], -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002244unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +01002245 raw_spin_unlock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002246 }
2247
2248 irq_exit();
2249}
2250
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002251static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002252{
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002253 unsigned me;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002254
Yinghai Lufcef5912009-04-27 17:58:23 -07002255 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002256 return;
2257
Yinghai Lu497c9a12008-08-19 20:50:28 -07002258 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002259
Yinghai Lufcef5912009-04-27 17:58:23 -07002260 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002261 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002262}
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002263
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002264static void irq_complete_move(struct irq_cfg *cfg)
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002265{
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002266 __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002267}
2268
2269void irq_force_complete_move(int irq)
2270{
Thomas Gleixner2c778652011-03-12 12:20:43 +01002271 struct irq_cfg *cfg = irq_get_chip_data(irq);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002272
Prarit Bhargavabbd391a2010-04-27 11:24:42 -04002273 if (!cfg)
2274 return;
2275
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002276 __irq_complete_move(cfg, cfg->vector);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002277}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002278#else
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002279static inline void irq_complete_move(struct irq_cfg *cfg) { }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002280#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002281
Suresh Siddha7eb9ae02012-06-14 18:28:49 -07002282static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
2283{
2284 int apic, pin;
2285 struct irq_pin_list *entry;
2286 u8 vector = cfg->vector;
2287
2288 for_each_irq_pin(entry, cfg->irq_2_pin) {
2289 unsigned int reg;
2290
2291 apic = entry->apic;
2292 pin = entry->pin;
Joerg Roedel9f9d39e2012-09-26 12:44:46 +02002293
2294 io_apic_write(apic, 0x11 + pin*2, dest);
Suresh Siddha7eb9ae02012-06-14 18:28:49 -07002295 reg = io_apic_read(apic, 0x10 + pin*2);
2296 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2297 reg |= vector;
2298 io_apic_modify(apic, 0x10 + pin*2, reg);
2299 }
2300}
2301
2302/*
2303 * Either sets data->affinity to a valid value, and returns
2304 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
2305 * leaves data->affinity untouched.
2306 */
2307int __ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2308 unsigned int *dest_id)
2309{
2310 struct irq_cfg *cfg = data->chip_data;
2311 unsigned int irq = data->irq;
2312 int err;
2313
2314 if (!config_enabled(CONFIG_SMP))
2315 return -1;
2316
2317 if (!cpumask_intersects(mask, cpu_online_mask))
2318 return -EINVAL;
2319
2320 err = assign_irq_vector(irq, cfg, mask);
2321 if (err)
2322 return err;
2323
2324 err = apic->cpu_mask_to_apicid_and(mask, cfg->domain, dest_id);
2325 if (err) {
2326 if (assign_irq_vector(irq, cfg, data->affinity))
2327 pr_err("Failed to recover vector for irq %d\n", irq);
2328 return err;
2329 }
2330
2331 cpumask_copy(data->affinity, mask);
2332
2333 return 0;
2334}
2335
Joerg Roedel373dd7a2012-09-26 12:44:39 +02002336
2337int native_ioapic_set_affinity(struct irq_data *data,
2338 const struct cpumask *mask,
2339 bool force)
Suresh Siddha7eb9ae02012-06-14 18:28:49 -07002340{
2341 unsigned int dest, irq = data->irq;
2342 unsigned long flags;
2343 int ret;
2344
2345 if (!config_enabled(CONFIG_SMP))
2346 return -1;
2347
2348 raw_spin_lock_irqsave(&ioapic_lock, flags);
2349 ret = __ioapic_set_affinity(data, mask, &dest);
2350 if (!ret) {
2351 /* Only the high 8 bits are valid. */
2352 dest = SET_APIC_LOGICAL_ID(dest);
2353 __target_IO_APIC_irq(irq, dest, data->chip_data);
2354 ret = IRQ_SET_MASK_OK_NOCOPY;
2355 }
2356 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2357 return ret;
2358}
2359
Thomas Gleixner90297c52010-09-28 16:03:54 +02002360static void ack_apic_edge(struct irq_data *data)
Yinghai Lu1d025192008-08-19 20:50:34 -07002361{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002362 irq_complete_move(data->chip_data);
Thomas Gleixner08221112011-02-04 18:56:11 +01002363 irq_move_irq(data);
Yinghai Lu1d025192008-08-19 20:50:34 -07002364 ack_APIC_irq();
2365}
2366
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002367atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002368
Alexander Gordeev4da70722012-03-20 15:19:36 +01002369#ifdef CONFIG_GENERIC_PENDING_IRQ
Márton Némethd1ecad62012-05-08 00:24:20 -07002370static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
2371{
2372 struct irq_pin_list *entry;
2373 unsigned long flags;
2374
2375 raw_spin_lock_irqsave(&ioapic_lock, flags);
2376 for_each_irq_pin(entry, cfg->irq_2_pin) {
2377 unsigned int reg;
2378 int pin;
2379
2380 pin = entry->pin;
2381 reg = io_apic_read(entry->apic, 0x10 + pin*2);
2382 /* Is the remote IRR bit set? */
2383 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
2384 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2385 return true;
2386 }
2387 }
2388 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2389
2390 return false;
2391}
2392
Alexander Gordeev4da70722012-03-20 15:19:36 +01002393static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
2394{
2395 /* If we are moving the irq we need to mask it */
2396 if (unlikely(irqd_is_setaffinity_pending(data))) {
2397 mask_ioapic(cfg);
2398 return true;
2399 }
2400 return false;
2401}
2402
2403static inline void ioapic_irqd_unmask(struct irq_data *data,
2404 struct irq_cfg *cfg, bool masked)
2405{
2406 if (unlikely(masked)) {
2407 /* Only migrate the irq if the ack has been received.
2408 *
2409 * On rare occasions the broadcast level triggered ack gets
2410 * delayed going to ioapics, and if we reprogram the
2411 * vector while Remote IRR is still set the irq will never
2412 * fire again.
2413 *
2414 * To prevent this scenario we read the Remote IRR bit
2415 * of the ioapic. This has two effects.
2416 * - On any sane system the read of the ioapic will
2417 * flush writes (and acks) going to the ioapic from
2418 * this cpu.
2419 * - We get to see if the ACK has actually been delivered.
2420 *
2421 * Based on failed experiments of reprogramming the
2422 * ioapic entry from outside of irq context starting
2423 * with masking the ioapic entry and then polling until
2424 * Remote IRR was clear before reprogramming the
2425 * ioapic I don't trust the Remote IRR bit to be
2426 * completey accurate.
2427 *
2428 * However there appears to be no other way to plug
2429 * this race, so if the Remote IRR bit is not
2430 * accurate and is causing problems then it is a hardware bug
2431 * and you can go talk to the chipset vendor about it.
2432 */
2433 if (!io_apic_level_ack_pending(cfg))
2434 irq_move_masked_irq(data);
2435 unmask_ioapic(cfg);
2436 }
2437}
2438#else
2439static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
2440{
2441 return false;
2442}
2443static inline void ioapic_irqd_unmask(struct irq_data *data,
2444 struct irq_cfg *cfg, bool masked)
2445{
2446}
2447#endif
2448
Thomas Gleixner90297c52010-09-28 16:03:54 +02002449static void ack_apic_level(struct irq_data *data)
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002450{
Thomas Gleixner90297c52010-09-28 16:03:54 +02002451 struct irq_cfg *cfg = data->chip_data;
Alexander Gordeev4da70722012-03-20 15:19:36 +01002452 int i, irq = data->irq;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002453 unsigned long v;
Alexander Gordeev4da70722012-03-20 15:19:36 +01002454 bool masked;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002455
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002456 irq_complete_move(cfg);
Alexander Gordeev4da70722012-03-20 15:19:36 +01002457 masked = ioapic_irqd_mask(data, cfg);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002458
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002459 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002460 * It appears there is an erratum which affects at least version 0x11
2461 * of I/O APIC (that's the 82093AA and cores integrated into various
2462 * chipsets). Under certain conditions a level-triggered interrupt is
2463 * erroneously delivered as edge-triggered one but the respective IRR
2464 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2465 * message but it will never arrive and further interrupts are blocked
2466 * from the source. The exact reason is so far unknown, but the
2467 * phenomenon was observed when two consecutive interrupt requests
2468 * from a given source get delivered to the same CPU and the source is
2469 * temporarily disabled in between.
2470 *
2471 * A workaround is to simulate an EOI message manually. We achieve it
2472 * by setting the trigger mode to edge and then to level when the edge
2473 * trigger mode gets detected in the TMR of a local APIC for a
2474 * level-triggered interrupt. We mask the source for the time of the
2475 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2476 * The idea is from Manfred Spraul. --macro
Suresh Siddha1c839952009-12-01 15:31:17 -08002477 *
2478 * Also in the case when cpu goes offline, fixup_irqs() will forward
2479 * any unhandled interrupt on the offlined cpu to the new cpu
2480 * destination that is handling the corresponding interrupt. This
2481 * interrupt forwarding is done via IPI's. Hence, in this case also
2482 * level-triggered io-apic interrupt will be seen as an edge
2483 * interrupt in the IRR. And we can't rely on the cpu's EOI
2484 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2485 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2486 * supporting EOI register, we do an explicit EOI to clear the
2487 * remote IRR and on IO-APIC's which don't have an EOI register,
2488 * we use the above logic (mask+edge followed by unmask+level) from
2489 * Manfred Spraul to clear the remote IRR.
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002490 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002491 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002492 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002493
Ingo Molnar54168ed2008-08-20 09:07:45 +02002494 /*
2495 * We must acknowledge the irq before we move it or the acknowledge will
2496 * not propagate properly.
2497 */
2498 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002499
Suresh Siddha1c839952009-12-01 15:31:17 -08002500 /*
2501 * Tail end of clearing remote IRR bit (either by delivering the EOI
2502 * message via io-apic EOI register write or simulating it using
2503 * mask+edge followed by unnask+level logic) manually when the
2504 * level triggered interrupt is seen as the edge triggered interrupt
2505 * at the cpu.
2506 */
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002507 if (!(v & (1 << (i & 0x1f)))) {
2508 atomic_inc(&irq_mis_count);
2509
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002510 eoi_ioapic_irq(irq, cfg);
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002511 }
2512
Alexander Gordeev4da70722012-03-20 15:19:36 +01002513 ioapic_irqd_unmask(data, cfg, masked);
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002514}
Yinghai Lu1d025192008-08-19 20:50:34 -07002515
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002516static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002517 .name = "IO-APIC",
2518 .irq_startup = startup_ioapic_irq,
2519 .irq_mask = mask_ioapic_irq,
2520 .irq_unmask = unmask_ioapic_irq,
2521 .irq_ack = ack_apic_edge,
2522 .irq_eoi = ack_apic_level,
Joerg Roedel373dd7a2012-09-26 12:44:39 +02002523 .irq_set_affinity = native_ioapic_set_affinity,
Thomas Gleixnerf7e909e2010-10-08 21:40:23 +02002524 .irq_retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525};
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527static inline void init_IO_APIC_traps(void)
2528{
Yinghai Luda51a822008-08-19 20:50:25 -07002529 struct irq_cfg *cfg;
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02002530 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 /*
2533 * NOTE! The local APIC isn't very good at handling
2534 * multiple interrupts at the same interrupt level.
2535 * As the interrupt level is determined by taking the
2536 * vector number and shifting that right by 4, we
2537 * want to spread these out a bit so that they don't
2538 * all fall in the same interrupt level.
2539 *
2540 * Also, we've got to be careful not to trash gate
2541 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2542 */
Thomas Gleixnerad9f4332010-09-30 11:26:43 +02002543 for_each_active_irq(irq) {
Thomas Gleixner2c778652011-03-12 12:20:43 +01002544 cfg = irq_get_chip_data(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002545 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 /*
2547 * Hmm.. We don't have an entry for this,
2548 * so default to an old-fashioned 8259
2549 * interrupt if we can..
2550 */
Jacob Panb81bb372009-11-09 11:27:04 -08002551 if (irq < legacy_pic->nr_legacy_irqs)
2552 legacy_pic->make_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002553 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 /* Strange. Oh, well.. */
Thomas Gleixner2c778652011-03-12 12:20:43 +01002555 irq_set_chip(irq, &no_irq_chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
2557 }
2558}
2559
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002560/*
2561 * The local APIC irq-chip implementation:
2562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Thomas Gleixner90297c52010-09-28 16:03:54 +02002564static void mask_lapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
2566 unsigned long v;
2567
2568 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002569 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571
Thomas Gleixner90297c52010-09-28 16:03:54 +02002572static void unmask_lapic_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002574 unsigned long v;
2575
2576 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002577 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578}
2579
Thomas Gleixner90297c52010-09-28 16:03:54 +02002580static void ack_lapic_irq(struct irq_data *data)
Yinghai Lu1d025192008-08-19 20:50:34 -07002581{
2582 ack_APIC_irq();
2583}
2584
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002585static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002586 .name = "local-APIC",
Thomas Gleixner90297c52010-09-28 16:03:54 +02002587 .irq_mask = mask_lapic_irq,
2588 .irq_unmask = unmask_lapic_irq,
2589 .irq_ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590};
2591
Thomas Gleixner60c69942010-09-28 17:28:38 +02002592static void lapic_register_intr(int irq)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002593{
Thomas Gleixner60c69942010-09-28 17:28:38 +02002594 irq_clear_status_flags(irq, IRQ_LEVEL);
Thomas Gleixner2c778652011-03-12 12:20:43 +01002595 irq_set_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002596 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002597}
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599/*
2600 * This looks a bit hackish but it's about the only one way of sending
2601 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2602 * not support the ExtINT mode, unfortunately. We need to send these
2603 * cycles as some i82489DX-based boards have glue logic that keeps the
2604 * 8259A interrupt line asserted until INTA. --macro
2605 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002606static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002608 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 struct IO_APIC_route_entry entry0, entry1;
2610 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002612 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002613 if (pin == -1) {
2614 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002616 }
2617 apic = find_isa_irq_apic(8, mp_INT);
2618 if (apic == -1) {
2619 WARN_ON_ONCE(1);
2620 return;
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Andi Kleencf4c6a22006-09-26 10:52:30 +02002623 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002624 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626 memset(&entry1, 0, sizeof(entry1));
2627
2628 entry1.dest_mode = 0; /* physical delivery */
2629 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002630 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 entry1.delivery_mode = dest_ExtINT;
2632 entry1.polarity = entry0.polarity;
2633 entry1.trigger = 0;
2634 entry1.vector = 0;
2635
Andi Kleencf4c6a22006-09-26 10:52:30 +02002636 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 save_control = CMOS_READ(RTC_CONTROL);
2639 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2640 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2641 RTC_FREQ_SELECT);
2642 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2643
2644 i = 100;
2645 while (i-- > 0) {
2646 mdelay(10);
2647 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2648 i -= 10;
2649 }
2650
2651 CMOS_WRITE(save_control, RTC_CONTROL);
2652 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002653 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Andi Kleencf4c6a22006-09-26 10:52:30 +02002655 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656}
2657
Yinghai Luefa25592008-08-19 20:50:36 -07002658static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002659/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002660static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002661{
2662 disable_timer_pin_1 = 1;
2663 return 0;
2664}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002665early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002666
2667int timer_through_8259 __initdata;
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669/*
2670 * This code may look a bit paranoid, but it's supposed to cooperate with
2671 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2672 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2673 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002674 *
2675 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002677static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
Thomas Gleixner2c778652011-03-12 12:20:43 +01002679 struct irq_cfg *cfg = irq_get_chip_data(0);
Robert Richterf6e9456c2010-07-21 19:03:58 +02002680 int node = cpu_to_node(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002681 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002682 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002683 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002684
2685 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 /*
2688 * get/set the timer IRQ vector:
2689 */
Thomas Gleixner4305df92010-09-28 15:01:33 +02002690 legacy_pic->mask(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002691 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002694 * As IRQ0 is to be enabled in the 8259A, the virtual
2695 * wire has to be disabled in the local APIC. Also
2696 * timer interrupts need to be acknowledged manually in
2697 * the 8259A for the i82489DX when using the NMI
2698 * watchdog as that APIC treats NMIs as level-triggered.
2699 * The AEOI mode will finish them in the 8259A
2700 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002702 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Jacob Panb81bb372009-11-09 11:27:04 -08002703 legacy_pic->init(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002705 pin1 = find_isa_irq_pin(0, mp_INT);
2706 apic1 = find_isa_irq_apic(0, mp_INT);
2707 pin2 = ioapic_i8259.pin;
2708 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002710 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2711 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002712 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002714 /*
2715 * Some BIOS writers are clueless and report the ExtINTA
2716 * I/O APIC input from the cascaded 8259A as the timer
2717 * interrupt input. So just in case, if only one pin
2718 * was found above, try it both directly and through the
2719 * 8259A.
2720 */
2721 if (pin1 == -1) {
Joerg Roedel6a9f5de2012-09-26 12:44:41 +02002722 panic_if_irq_remap("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002723 pin1 = pin2;
2724 apic1 = apic2;
2725 no_pin1 = 1;
2726 } else if (pin2 == -1) {
2727 pin2 = pin1;
2728 apic2 = apic1;
2729 }
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (pin1 != -1) {
2732 /*
2733 * Ok, does IRQ0 through the IOAPIC work?
2734 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002735 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002736 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002737 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08002738 } else {
Thomas Gleixner60c69942010-09-28 17:28:38 +02002739 /* for edge trigger, setup_ioapic_irq already
Yinghai Luf72dcca2009-02-08 16:18:03 -08002740 * leave it unmasked.
2741 * so only need to unmask if it is level-trigger
2742 * do we really have level trigger timer?
2743 */
2744 int idx;
2745 idx = find_irq_entry(apic1, pin1, mp_INT);
2746 if (idx != -1 && irq_trigger(idx))
Thomas Gleixnerdd5f15e2010-09-28 15:18:35 +02002747 unmask_ioapic(cfg);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 if (timer_irq_works()) {
Chuck Ebbert66759a02005-09-12 18:49:25 +02002750 if (disable_timer_pin_1 > 0)
2751 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
Joerg Roedel6a9f5de2012-09-26 12:44:41 +02002754 panic_if_irq_remap("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08002755 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002756 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002757 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002758 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2759 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002761 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2762 "(IRQ0) through the 8259A ...\n");
2763 apic_printk(APIC_QUIET, KERN_INFO
2764 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 /*
2766 * legacy devices should be connected to IO APIC #0
2767 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002768 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002769 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Thomas Gleixner4305df92010-09-28 15:01:33 +02002770 legacy_pic->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002772 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002773 timer_through_8259 = 1;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002774 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776 /*
2777 * Cleanup, just in case ...
2778 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08002779 local_irq_disable();
Thomas Gleixner4305df92010-09-28 15:01:33 +02002780 legacy_pic->mask(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002781 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002782 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002785 apic_printk(APIC_QUIET, KERN_INFO
2786 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Thomas Gleixner60c69942010-09-28 17:28:38 +02002788 lapic_register_intr(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002789 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Thomas Gleixner4305df92010-09-28 15:01:33 +02002790 legacy_pic->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002793 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002794 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002796 local_irq_disable();
Thomas Gleixner4305df92010-09-28 15:01:33 +02002797 legacy_pic->mask(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002798 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002799 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002801 apic_printk(APIC_QUIET, KERN_INFO
2802 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Jacob Panb81bb372009-11-09 11:27:04 -08002804 legacy_pic->init(0);
2805 legacy_pic->make_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002806 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 unlock_ExtINT_logic();
2809
2810 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002811 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08002814 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002815 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Yinghai Lufb209bd2011-12-21 17:45:17 -08002816 if (x2apic_preenabled)
2817 apic_printk(APIC_QUIET, KERN_INFO
2818 "Perhaps problem with the pre-enabled x2apic mode\n"
2819 "Try booting with x2apic and interrupt-remapping disabled in the bios.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002821 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002822out:
2823 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824}
2825
2826/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002827 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2828 * to devices. However there may be an I/O APIC pin available for
2829 * this interrupt regardless. The pin may be left unconnected, but
2830 * typically it will be reused as an ExtINT cascade interrupt for
2831 * the master 8259A. In the MPS case such a pin will normally be
2832 * reported as an ExtINT interrupt in the MP table. With ACPI
2833 * there is no provision for ExtINT interrupts, and in the absence
2834 * of an override it would be treated as an ordinary ISA I/O APIC
2835 * interrupt, that is edge-triggered and unmasked by default. We
2836 * used to do this, but it caused problems on some systems because
2837 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2838 * the same ExtINT cascade interrupt to drive the local APIC of the
2839 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2840 * the I/O APIC in all cases now. No actual device should request
2841 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002843#define PIC_IRQS (1UL << PIC_CASCADE_IR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845void __init setup_IO_APIC(void)
2846{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002847
Ingo Molnar54168ed2008-08-20 09:07:45 +02002848 /*
2849 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2850 */
Jacob Panb81bb372009-11-09 11:27:04 -08002851 io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Ingo Molnar54168ed2008-08-20 09:07:45 +02002853 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002854 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02002855 * Set up IO-APIC IRQ routing.
2856 */
Thomas Gleixnerde934102009-08-20 09:27:29 +02002857 x86_init.mpparse.setup_ioapic_ids();
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 sync_Arb_IDs();
2860 setup_IO_APIC_irqs();
2861 init_IO_APIC_traps();
Jacob Panb81bb372009-11-09 11:27:04 -08002862 if (legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002863 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864}
2865
2866/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03002867 * Called after all the initialization is done. If we didn't find any
Ingo Molnar54168ed2008-08-20 09:07:45 +02002868 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871static int __init io_apic_bug_finalize(void)
2872{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002873 if (sis_apic_bug == -1)
2874 sis_apic_bug = 0;
2875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878late_initcall(io_apic_bug_finalize);
2879
Yinghai Lu6f50d452011-10-12 00:33:48 -07002880static void resume_ioapic_id(int ioapic_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 unsigned long flags;
2883 union IO_APIC_reg_00 reg_00;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002884
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002885 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu6f50d452011-10-12 00:33:48 -07002886 reg_00.raw = io_apic_read(ioapic_idx, 0);
2887 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx)) {
2888 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
2889 io_apic_write(ioapic_idx, 0, reg_00.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002891 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
2893
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002894static void ioapic_resume(void)
2895{
Yinghai Lu6f50d452011-10-12 00:33:48 -07002896 int ioapic_idx;
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002897
Yinghai Lu6f50d452011-10-12 00:33:48 -07002898 for (ioapic_idx = nr_ioapics - 1; ioapic_idx >= 0; ioapic_idx--)
2899 resume_ioapic_id(ioapic_idx);
Suresh Siddha15bac202011-05-18 16:31:34 -07002900
2901 restore_ioapic_entries();
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002902}
2903
2904static struct syscore_ops ioapic_syscore_ops = {
Suresh Siddha15bac202011-05-18 16:31:34 -07002905 .suspend = save_ioapic_entries,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 .resume = ioapic_resume,
2907};
2908
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002909static int __init ioapic_init_ops(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002911 register_syscore_ops(&ioapic_syscore_ops);
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return 0;
2914}
2915
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002916device_initcall(ioapic_init_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002918/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07002919 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002920 */
Alexander Gordeev51906e72012-11-19 16:01:29 +01002921unsigned int __create_irqs(unsigned int from, unsigned int count, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002922{
Alexander Gordeev51906e72012-11-19 16:01:29 +01002923 struct irq_cfg **cfg;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002924 unsigned long flags;
Alexander Gordeev51906e72012-11-19 16:01:29 +01002925 int irq, i;
Yinghai Lu199751d2008-08-19 20:50:27 -07002926
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02002927 if (from < nr_irqs_gsi)
2928 from = nr_irqs_gsi;
2929
Alexander Gordeev51906e72012-11-19 16:01:29 +01002930 cfg = kzalloc_node(count * sizeof(cfg[0]), GFP_KERNEL, node);
2931 if (!cfg)
2932 return 0;
2933
2934 irq = alloc_irqs_from(from, count, node);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02002935 if (irq < 0)
Alexander Gordeev51906e72012-11-19 16:01:29 +01002936 goto out_cfgs;
2937
2938 for (i = 0; i < count; i++) {
2939 cfg[i] = alloc_irq_cfg(irq + i, node);
2940 if (!cfg[i])
2941 goto out_irqs;
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02002942 }
Yinghai Luabcaa2b2009-02-08 16:18:03 -08002943
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002944 raw_spin_lock_irqsave(&vector_lock, flags);
Alexander Gordeev51906e72012-11-19 16:01:29 +01002945 for (i = 0; i < count; i++)
2946 if (__assign_irq_vector(irq + i, cfg[i], apic->target_cpus()))
2947 goto out_vecs;
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002948 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002949
Alexander Gordeev51906e72012-11-19 16:01:29 +01002950 for (i = 0; i < count; i++) {
2951 irq_set_chip_data(irq + i, cfg[i]);
2952 irq_clear_status_flags(irq + i, IRQ_NOREQUEST);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02002953 }
Alexander Gordeev51906e72012-11-19 16:01:29 +01002954
2955 kfree(cfg);
2956 return irq;
2957
2958out_vecs:
2959 for (i--; i >= 0; i--)
2960 __clear_irq_vector(irq + i, cfg[i]);
2961 raw_spin_unlock_irqrestore(&vector_lock, flags);
2962out_irqs:
2963 for (i = 0; i < count; i++)
2964 free_irq_at(irq + i, cfg[i]);
2965out_cfgs:
2966 kfree(cfg);
2967 return 0;
2968}
2969
2970unsigned int create_irq_nr(unsigned int from, int node)
2971{
2972 return __create_irqs(from, 1, node);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002973}
2974
Yinghai Lu199751d2008-08-19 20:50:27 -07002975int create_irq(void)
2976{
Robert Richterf6e9456c2010-07-21 19:03:58 +02002977 int node = cpu_to_node(0);
Yinghai Lube5d5352008-12-05 18:58:33 -08002978 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002979 int irq;
2980
Yinghai Lube5d5352008-12-05 18:58:33 -08002981 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07002982 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002983
2984 if (irq == 0)
2985 irq = -1;
2986
2987 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07002988}
2989
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002990void destroy_irq(unsigned int irq)
2991{
Thomas Gleixner2c778652011-03-12 12:20:43 +01002992 struct irq_cfg *cfg = irq_get_chip_data(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002993 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002994
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02002995 irq_set_status_flags(irq, IRQ_NOREQUEST|IRQ_NOPROBE);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07002996
Joerg Roedel11b4a1c2012-09-26 12:44:47 +02002997 free_remapped_irq(irq);
2998
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002999 raw_spin_lock_irqsave(&vector_lock, flags);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003000 __clear_irq_vector(irq, cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003001 raw_spin_unlock_irqrestore(&vector_lock, flags);
Thomas Gleixnerfbc6bff2010-09-28 20:34:53 +02003002 free_irq_at(irq, cfg);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003003}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003004
Joerg Roedel5afba622012-09-26 12:44:38 +02003005void destroy_irqs(unsigned int irq, unsigned int count)
Alexander Gordeev51906e72012-11-19 16:01:29 +01003006{
3007 unsigned int i;
3008
3009 for (i = 0; i < count; i++)
3010 destroy_irq(irq + i);
3011}
3012
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003013/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003014 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003015 */
Joerg Roedel76013842012-09-26 12:44:49 +02003016void native_compose_msi_msg(struct pci_dev *pdev,
3017 unsigned int irq, unsigned int dest,
3018 struct msi_msg *msg, u8 hpet_id)
3019{
3020 struct irq_cfg *cfg = irq_cfg(irq);
3021
3022 msg->address_hi = MSI_ADDR_BASE_HI;
3023
3024 if (x2apic_enabled())
3025 msg->address_hi |= MSI_ADDR_EXT_DEST_ID(dest);
3026
3027 msg->address_lo =
3028 MSI_ADDR_BASE_LO |
3029 ((apic->irq_dest_mode == 0) ?
3030 MSI_ADDR_DEST_MODE_PHYSICAL:
3031 MSI_ADDR_DEST_MODE_LOGICAL) |
3032 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3033 MSI_ADDR_REDIRECTION_CPU:
3034 MSI_ADDR_REDIRECTION_LOWPRI) |
3035 MSI_ADDR_DEST_ID(dest);
3036
3037 msg->data =
3038 MSI_DATA_TRIGGER_EDGE |
3039 MSI_DATA_LEVEL_ASSERT |
3040 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3041 MSI_DATA_DELIVERY_FIXED:
3042 MSI_DATA_DELIVERY_LOWPRI) |
3043 MSI_DATA_VECTOR(cfg->vector);
3044}
3045
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003046#ifdef CONFIG_PCI_MSI
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003047static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3048 struct msi_msg *msg, u8 hpet_id)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003049{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003050 struct irq_cfg *cfg;
3051 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003052 unsigned dest;
3053
Jan Beulichf1182632009-01-14 12:27:35 +00003054 if (disable_apic)
3055 return -ENXIO;
3056
Yinghai Lu3145e942008-12-05 18:58:34 -08003057 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003058 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003059 if (err)
3060 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003061
Alexander Gordeevff164322012-06-07 15:15:59 +02003062 err = apic->cpu_mask_to_apicid_and(cfg->domain,
3063 apic->target_cpus(), &dest);
3064 if (err)
3065 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003066
Joerg Roedel76013842012-09-26 12:44:49 +02003067 x86_msi.compose_msi_msg(pdev, irq, dest, msg, hpet_id);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07003068
Alexander Gordeev51906e72012-11-19 16:01:29 +01003069 return 0;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003070}
3071
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003072static int
3073msi_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003074{
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003075 struct irq_cfg *cfg = data->chip_data;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003076 struct msi_msg msg;
3077 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003078
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003079 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003080 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003081
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003082 __get_cached_msi_msg(data->msi_desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003083
3084 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003085 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003086 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3087 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3088
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003089 __write_msi_msg(data->msi_desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003090
Jiang Liuf841d792012-03-30 23:11:35 +08003091 return IRQ_SET_MASK_OK_NOCOPY;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003092}
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003093
3094/*
3095 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3096 * which implement the MSI or MSI-X Capability Structure.
3097 */
3098static struct irq_chip msi_chip = {
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003099 .name = "PCI-MSI",
3100 .irq_unmask = unmask_msi_irq,
3101 .irq_mask = mask_msi_irq,
3102 .irq_ack = ack_apic_edge,
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003103 .irq_set_affinity = msi_set_affinity,
Thomas Gleixner5346b2a2010-10-08 21:49:03 +02003104 .irq_retrigger = ioapic_retrigger_irq,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003105};
3106
Joerg Roedel5afba622012-09-26 12:44:38 +02003107int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc,
3108 unsigned int irq_base, unsigned int irq_offset)
Yinghai Lu1d025192008-08-19 20:50:34 -07003109{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003110 struct irq_chip *chip = &msi_chip;
Yinghai Lu1d025192008-08-19 20:50:34 -07003111 struct msi_msg msg;
Alexander Gordeev51906e72012-11-19 16:01:29 +01003112 unsigned int irq = irq_base + irq_offset;
Thomas Gleixner60c69942010-09-28 17:28:38 +02003113 int ret;
Yinghai Lu1d025192008-08-19 20:50:34 -07003114
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003115 ret = msi_compose_msg(dev, irq, &msg, -1);
Yinghai Lu1d025192008-08-19 20:50:34 -07003116 if (ret < 0)
3117 return ret;
3118
Alexander Gordeev51906e72012-11-19 16:01:29 +01003119 irq_set_msi_desc_off(irq_base, irq_offset, msidesc);
3120
3121 /*
3122 * MSI-X message is written per-IRQ, the offset is always 0.
3123 * MSI message denotes a contiguous group of IRQs, written for 0th IRQ.
3124 */
3125 if (!irq_offset)
3126 write_msi_msg(irq, &msg);
Yinghai Lu1d025192008-08-19 20:50:34 -07003127
Joerg Roedel2976fd82012-09-26 12:44:48 +02003128 setup_remapped_irq(irq, irq_get_chip_data(irq), chip);
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003129
3130 irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003131
Yinghai Luc81bba42008-09-25 11:53:11 -07003132 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3133
Yinghai Lu1d025192008-08-19 20:50:34 -07003134 return 0;
3135}
3136
Joerg Roedel5afba622012-09-26 12:44:38 +02003137int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003138{
Thomas Gleixner60c69942010-09-28 17:28:38 +02003139 unsigned int irq, irq_want;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003140 struct msi_desc *msidesc;
Joerg Roedel5afba622012-09-26 12:44:38 +02003141 int node, ret;
3142
3143 /* Multiple MSI vectors only supported with interrupt remapping */
3144 if (type == PCI_CAP_ID_MSI && nvec > 1)
3145 return 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003146
Yinghai Lud047f53a2009-04-27 18:02:23 -07003147 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003148 irq_want = nr_irqs_gsi;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003149 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003150 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003151 if (irq == 0)
Alexander Gordeev51906e72012-11-19 16:01:29 +01003152 return -ENOSPC;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003153
Joerg Roedel5afba622012-09-26 12:44:38 +02003154 irq_want = irq + 1;
3155
Alexander Gordeev51906e72012-11-19 16:01:29 +01003156 ret = setup_msi_irq(dev, msidesc, irq, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003157 if (ret < 0)
3158 goto error;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003159 }
3160 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003161
3162error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003163 destroy_irq(irq);
3164 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003165}
3166
Stefano Stabellini294ee6f2010-10-06 16:12:28 -04003167void native_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003168{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003169 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003170}
3171
Suresh Siddhad3f13812011-08-23 17:05:25 -07003172#ifdef CONFIG_DMAR_TABLE
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003173static int
3174dmar_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
3175 bool force)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003176{
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003177 struct irq_cfg *cfg = data->chip_data;
3178 unsigned int dest, irq = data->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003179 struct msi_msg msg;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003180
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003181 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003182 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003183
Ingo Molnar54168ed2008-08-20 09:07:45 +02003184 dmar_msi_read(irq, &msg);
3185
3186 msg.data &= ~MSI_DATA_VECTOR_MASK;
3187 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3188 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3189 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
Kenji Kaneshige086e8ce2010-12-01 09:40:32 -08003190 msg.address_hi = MSI_ADDR_BASE_HI | MSI_ADDR_EXT_DEST_ID(dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003191
3192 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003193
Jiang Liuf841d792012-03-30 23:11:35 +08003194 return IRQ_SET_MASK_OK_NOCOPY;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003195}
Yinghai Lu3145e942008-12-05 18:58:34 -08003196
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003197static struct irq_chip dmar_msi_type = {
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003198 .name = "DMAR_MSI",
3199 .irq_unmask = dmar_msi_unmask,
3200 .irq_mask = dmar_msi_mask,
3201 .irq_ack = ack_apic_edge,
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003202 .irq_set_affinity = dmar_msi_set_affinity,
Thomas Gleixnerfe52b2d2010-10-08 22:19:29 +02003203 .irq_retrigger = ioapic_retrigger_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003204};
3205
3206int arch_setup_dmar_msi(unsigned int irq)
3207{
3208 int ret;
3209 struct msi_msg msg;
3210
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003211 ret = msi_compose_msg(NULL, irq, &msg, -1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003212 if (ret < 0)
3213 return ret;
3214 dmar_msi_write(irq, &msg);
Thomas Gleixner2c778652011-03-12 12:20:43 +01003215 irq_set_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3216 "edge");
Ingo Molnar54168ed2008-08-20 09:07:45 +02003217 return 0;
3218}
3219#endif
3220
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003221#ifdef CONFIG_HPET_TIMER
3222
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003223static int hpet_msi_set_affinity(struct irq_data *data,
3224 const struct cpumask *mask, bool force)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003225{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003226 struct irq_cfg *cfg = data->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003227 struct msi_msg msg;
3228 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003229
Thomas Gleixner0e09ddf2010-10-08 22:21:26 +02003230 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003231 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003232
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003233 hpet_msi_read(data->handler_data, &msg);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003234
3235 msg.data &= ~MSI_DATA_VECTOR_MASK;
3236 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3237 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3238 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3239
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003240 hpet_msi_write(data->handler_data, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003241
Jiang Liuf841d792012-03-30 23:11:35 +08003242 return IRQ_SET_MASK_OK_NOCOPY;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003243}
Yinghai Lu3145e942008-12-05 18:58:34 -08003244
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003245static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003246 .name = "HPET_MSI",
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003247 .irq_unmask = hpet_msi_unmask,
3248 .irq_mask = hpet_msi_mask,
Thomas Gleixner90297c52010-09-28 16:03:54 +02003249 .irq_ack = ack_apic_edge,
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003250 .irq_set_affinity = hpet_msi_set_affinity,
Thomas Gleixner90297c52010-09-28 16:03:54 +02003251 .irq_retrigger = ioapic_retrigger_irq,
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003252};
3253
Joerg Roedel71054d82012-09-26 12:44:37 +02003254int default_setup_hpet_msi(unsigned int irq, unsigned int id)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003255{
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003256 struct irq_chip *chip = &hpet_msi_type;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003257 struct msi_msg msg;
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +02003258 int ret;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003259
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003260 ret = msi_compose_msg(NULL, irq, &msg, id);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003261 if (ret < 0)
3262 return ret;
3263
Thomas Gleixner2c778652011-03-12 12:20:43 +01003264 hpet_msi_write(irq_get_handler_data(irq), &msg);
Thomas Gleixner60c69942010-09-28 17:28:38 +02003265 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
Joerg Roedel2976fd82012-09-26 12:44:48 +02003266 setup_remapped_irq(irq, irq_get_chip_data(irq), chip);
Yinghai Luc81bba42008-09-25 11:53:11 -07003267
Thomas Gleixnerc60eaf22011-03-11 13:17:16 +01003268 irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003269 return 0;
3270}
3271#endif
3272
Ingo Molnar54168ed2008-08-20 09:07:45 +02003273#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003274/*
3275 * Hypertransport interrupt support
3276 */
3277#ifdef CONFIG_HT_IRQ
3278
Yinghai Lu497c9a12008-08-19 20:50:28 -07003279static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003280{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003281 struct ht_irq_msg msg;
3282 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003283
Yinghai Lu497c9a12008-08-19 20:50:28 -07003284 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003285 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003286
Yinghai Lu497c9a12008-08-19 20:50:28 -07003287 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003288 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003289
Eric W. Biedermanec683072006-11-08 17:44:57 -08003290 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003291}
3292
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003293static int
3294ht_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003295{
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003296 struct irq_cfg *cfg = data->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003297 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003298
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003299 if (__ioapic_set_affinity(data, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003300 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003301
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003302 target_ht_irq(data->irq, dest, cfg->vector);
Jiang Liuf841d792012-03-30 23:11:35 +08003303 return IRQ_SET_MASK_OK_NOCOPY;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003304}
Yinghai Lu3145e942008-12-05 18:58:34 -08003305
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003306static struct irq_chip ht_irq_chip = {
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003307 .name = "PCI-HT",
3308 .irq_mask = mask_ht_irq,
3309 .irq_unmask = unmask_ht_irq,
3310 .irq_ack = ack_apic_edge,
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003311 .irq_set_affinity = ht_set_affinity,
Thomas Gleixnerbe5b7bf2010-10-08 22:31:46 +02003312 .irq_retrigger = ioapic_retrigger_irq,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003313};
3314
3315int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3316{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003317 struct irq_cfg *cfg;
Alexander Gordeevff164322012-06-07 15:15:59 +02003318 struct ht_irq_msg msg;
3319 unsigned dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003320 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003321
Jan Beulichf1182632009-01-14 12:27:35 +00003322 if (disable_apic)
3323 return -ENXIO;
3324
Yinghai Lu3145e942008-12-05 18:58:34 -08003325 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003326 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Alexander Gordeevff164322012-06-07 15:15:59 +02003327 if (err)
3328 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003329
Alexander Gordeevff164322012-06-07 15:15:59 +02003330 err = apic->cpu_mask_to_apicid_and(cfg->domain,
3331 apic->target_cpus(), &dest);
3332 if (err)
3333 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003334
Alexander Gordeevff164322012-06-07 15:15:59 +02003335 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003336
Alexander Gordeevff164322012-06-07 15:15:59 +02003337 msg.address_lo =
3338 HT_IRQ_LOW_BASE |
3339 HT_IRQ_LOW_DEST_ID(dest) |
3340 HT_IRQ_LOW_VECTOR(cfg->vector) |
3341 ((apic->irq_dest_mode == 0) ?
3342 HT_IRQ_LOW_DM_PHYSICAL :
3343 HT_IRQ_LOW_DM_LOGICAL) |
3344 HT_IRQ_LOW_RQEOI_EDGE |
3345 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3346 HT_IRQ_LOW_MT_FIXED :
3347 HT_IRQ_LOW_MT_ARBITRATED) |
3348 HT_IRQ_LOW_IRQ_MASKED;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003349
Alexander Gordeevff164322012-06-07 15:15:59 +02003350 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003351
Alexander Gordeevff164322012-06-07 15:15:59 +02003352 irq_set_chip_and_handler_name(irq, &ht_irq_chip,
3353 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003354
Alexander Gordeevff164322012-06-07 15:15:59 +02003355 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
3356
3357 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003358}
3359#endif /* CONFIG_HT_IRQ */
3360
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +02003361static int
Thomas Gleixnerff973d02011-02-23 13:00:56 +01003362io_apic_setup_irq_pin(unsigned int irq, int node, struct io_apic_irq_attr *attr)
3363{
3364 struct irq_cfg *cfg = alloc_irq_and_cfg_at(irq, node);
3365 int ret;
3366
3367 if (!cfg)
3368 return -EINVAL;
3369 ret = __add_pin_to_irq_node(cfg, node, attr->ioapic, attr->ioapic_pin);
3370 if (!ret)
Yinghai Lue4aff812011-10-12 00:33:05 -07003371 setup_ioapic_irq(irq, cfg, attr);
Thomas Gleixnerff973d02011-02-23 13:00:56 +01003372 return ret;
3373}
3374
Sebastian Andrzej Siewior20443592011-04-27 16:30:52 +02003375int io_apic_setup_irq_pin_once(unsigned int irq, int node,
3376 struct io_apic_irq_attr *attr)
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003377{
Yinghai Lu6f50d452011-10-12 00:33:48 -07003378 unsigned int ioapic_idx = attr->ioapic, pin = attr->ioapic_pin;
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003379 int ret;
Liu Ping Fan25aa2952013-08-23 16:58:47 +08003380 struct IO_APIC_route_entry orig_entry;
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003381
3382 /* Avoid redundant programming */
Yinghai Lu6f50d452011-10-12 00:33:48 -07003383 if (test_bit(pin, ioapics[ioapic_idx].pin_programmed)) {
Liu Ping Fan25aa2952013-08-23 16:58:47 +08003384 pr_debug("Pin %d-%d already programmed\n", mpc_ioapic_id(ioapic_idx), pin);
3385 orig_entry = ioapic_read_entry(attr->ioapic, pin);
3386 if (attr->trigger == orig_entry.trigger && attr->polarity == orig_entry.polarity)
3387 return 0;
3388 return -EBUSY;
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003389 }
3390 ret = io_apic_setup_irq_pin(irq, node, attr);
3391 if (!ret)
Yinghai Lu6f50d452011-10-12 00:33:48 -07003392 set_bit(pin, ioapics[ioapic_idx].pin_programmed);
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003393 return ret;
3394}
3395
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003396static int __init io_apic_get_redir_entries(int ioapic)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003397{
3398 union IO_APIC_reg_01 reg_01;
3399 unsigned long flags;
3400
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003401 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003402 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003403 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003404
Eric W. Biederman4b6b19a2010-03-30 01:07:08 -07003405 /* The register returns the maximum index redir index
3406 * supported, which is one less than the total number of redir
3407 * entries.
3408 */
3409 return reg_01.bits.entries + 1;
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003410}
3411
Thomas Gleixner23f9b262010-10-15 15:38:50 -07003412static void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003413{
Eric W. Biederman4afc51a2010-03-30 01:07:14 -07003414 int nr;
Yinghai Lube5d5352008-12-05 18:58:33 -08003415
Eric W. Biedermana4384df2010-06-08 11:44:32 -07003416 nr = gsi_top + NR_IRQS_LEGACY;
Eric W. Biederman4afc51a2010-03-30 01:07:14 -07003417 if (nr > nr_irqs_gsi)
Yinghai Lube5d5352008-12-05 18:58:33 -08003418 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003419
3420 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003421}
3422
Jeremy Fitzhardinge7b586d72009-02-12 17:22:49 -08003423int get_nr_irqs_gsi(void)
3424{
3425 return nr_irqs_gsi;
3426}
3427
Thomas Gleixner62a08ae2014-04-24 09:50:53 +02003428unsigned int arch_dynirq_lower_bound(unsigned int from)
3429{
3430 return from < nr_irqs_gsi ? nr_irqs_gsi : from;
3431}
3432
Yinghai Lu4a046d12009-01-12 17:39:24 -08003433int __init arch_probe_nr_irqs(void)
3434{
3435 int nr;
3436
Yinghai Luf1ee5542009-02-08 16:18:03 -08003437 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3438 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003439
Yinghai Luf1ee5542009-02-08 16:18:03 -08003440 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3441#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3442 /*
3443 * for MSI and HT dyn irq
3444 */
3445 nr += nr_irqs_gsi * 16;
3446#endif
3447 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003448 nr_irqs = nr;
3449
Thomas Gleixnerb683de22010-09-27 20:55:03 +02003450 return NR_IRQS_LEGACY;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003451}
Yinghai Lu4a046d12009-01-12 17:39:24 -08003452
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003453int io_apic_set_pci_routing(struct device *dev, int irq,
3454 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003455{
Yinghai Lu5ef21832009-05-06 10:08:50 -07003456 int node;
3457
3458 if (!IO_APIC_IRQ(irq)) {
3459 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Thomas Gleixnere0799c02011-02-23 14:10:54 +01003460 irq_attr->ioapic);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003461 return -EINVAL;
3462 }
3463
Thomas Gleixnere0799c02011-02-23 14:10:54 +01003464 node = dev ? dev_to_node(dev) : cpu_to_node(0);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003465
Thomas Gleixner710dcda2011-02-23 17:47:41 +01003466 return io_apic_setup_irq_pin_once(irq, node, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003467}
3468
Feng Tang2a4ab642009-07-07 23:01:15 -04003469#ifdef CONFIG_X86_32
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003470static int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
3472 union IO_APIC_reg_00 reg_00;
3473 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3474 physid_mask_t tmp;
3475 unsigned long flags;
3476 int i = 0;
3477
3478 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003479 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3480 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003482 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3484 * advantage of new APIC bus architecture.
3485 */
3486
3487 if (physids_empty(apic_id_map))
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003488 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003490 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003492 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
3494 if (apic_id >= get_physical_broadcast()) {
3495 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3496 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3497 apic_id = reg_00.bits.ID;
3498 }
3499
3500 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003501 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 * 'stuck on smp_invalidate_needed IPI wait' messages.
3503 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003504 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506 for (i = 0; i < get_physical_broadcast(); i++) {
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003507 if (!apic->check_apicid_used(&apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 break;
3509 }
3510
3511 if (i == get_physical_broadcast())
3512 panic("Max apic_id exceeded!\n");
3513
3514 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3515 "trying %d\n", ioapic, apic_id, i);
3516
3517 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03003520 apic->apicid_to_cpu_present(apic_id, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 physids_or(apic_id_map, apic_id_map, tmp);
3522
3523 if (reg_00.bits.ID != apic_id) {
3524 reg_00.bits.ID = apic_id;
3525
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003526 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 io_apic_write(ioapic, 0, reg_00.raw);
3528 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003529 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
3531 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003532 if (reg_00.bits.ID != apic_id) {
Joe Perchesc767a542012-05-21 19:50:07 -07003533 pr_err("IOAPIC[%d]: Unable to change apic_id!\n",
3534 ioapic);
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003535 return -1;
3536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
3538
3539 apic_printk(APIC_VERBOSE, KERN_INFO
3540 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3541
3542 return apic_id;
3543}
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003544
3545static u8 __init io_apic_unique_id(u8 id)
3546{
3547 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3548 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3549 return io_apic_get_unique_id(nr_ioapics, id);
3550 else
3551 return id;
3552}
3553#else
3554static u8 __init io_apic_unique_id(u8 id)
3555{
3556 int i;
3557 DECLARE_BITMAP(used, 256);
3558
3559 bitmap_zero(used, 256);
3560 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddhad5371432011-05-18 16:31:37 -07003561 __set_bit(mpc_ioapic_id(i), used);
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003562 }
3563 if (!test_bit(id, used))
3564 return id;
3565 return find_first_zero_bit(used, 256);
3566}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00003567#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003569static int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
3571 union IO_APIC_reg_01 reg_01;
3572 unsigned long flags;
3573
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003574 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003576 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578 return reg_01.bits.version;
3579}
3580
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003581int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003582{
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003583 int ioapic, pin, idx;
Shaohua Li61fd47e2007-11-17 01:05:28 -05003584
3585 if (skip_ioapic_setup)
3586 return -1;
3587
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003588 ioapic = mp_find_ioapic(gsi);
3589 if (ioapic < 0)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003590 return -1;
3591
Eric W. Biederman9a0a91b2010-03-30 01:07:03 -07003592 pin = mp_find_ioapic_pin(ioapic, gsi);
3593 if (pin < 0)
3594 return -1;
3595
3596 idx = find_irq_entry(ioapic, pin, mp_INT);
3597 if (idx < 0)
3598 return -1;
3599
3600 *trigger = irq_trigger(idx);
3601 *polarity = irq_polarity(idx);
Shaohua Li61fd47e2007-11-17 01:05:28 -05003602 return 0;
3603}
3604
Yinghai Lu497c9a12008-08-19 20:50:28 -07003605/*
3606 * This function currently is only a helper for the i386 smp boot process where
3607 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01003608 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07003609 */
3610#ifdef CONFIG_SMP
3611void __init setup_ioapic_dest(void)
3612{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003613 int pin, ioapic, irq, irq_entry;
Mike Travis22f65d32008-12-16 17:33:56 -08003614 const struct cpumask *mask;
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003615 struct irq_data *idata;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003616
3617 if (skip_ioapic_setup == 1)
3618 return;
3619
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003620 for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
Suresh Siddhab69c6c32011-05-18 16:31:35 -07003621 for (pin = 0; pin < ioapics[ioapic].nr_registers; pin++) {
Yinghai Lub9c61b702009-05-06 10:10:06 -07003622 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3623 if (irq_entry == -1)
3624 continue;
3625 irq = pin_2_irq(irq_entry, ioapic, pin);
3626
Eric W. Biedermanfad53992010-02-28 01:06:34 -08003627 if ((ioapic > 0) && (irq > 16))
3628 continue;
3629
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003630 idata = irq_get_irq_data(irq);
Yinghai Lub9c61b702009-05-06 10:10:06 -07003631
3632 /*
3633 * Honour affinities which have been set in early boot
3634 */
Thomas Gleixner5451ddc2011-02-05 15:35:51 +01003635 if (!irqd_can_balance(idata) || irqd_affinity_was_set(idata))
3636 mask = idata->affinity;
Yinghai Lub9c61b702009-05-06 10:10:06 -07003637 else
3638 mask = apic->target_cpus();
3639
Joerg Roedel373dd7a2012-09-26 12:44:39 +02003640 x86_io_apic_ops.set_affinity(idata, mask, false);
Yinghai Lub9c61b702009-05-06 10:10:06 -07003641 }
3642
Yinghai Lu497c9a12008-08-19 20:50:28 -07003643}
3644#endif
3645
Ingo Molnar54168ed2008-08-20 09:07:45 +02003646#define IOAPIC_RESOURCE_NAME_SIZE 11
3647
3648static struct resource *ioapic_resources;
3649
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003650static struct resource * __init ioapic_setup_resources(int nr_ioapics)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003651{
3652 unsigned long n;
3653 struct resource *res;
3654 char *mem;
3655 int i;
3656
3657 if (nr_ioapics <= 0)
3658 return NULL;
3659
3660 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3661 n *= nr_ioapics;
3662
3663 mem = alloc_bootmem(n);
3664 res = (void *)mem;
3665
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003666 mem += sizeof(struct resource) * nr_ioapics;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003667
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003668 for (i = 0; i < nr_ioapics; i++) {
3669 res[i].name = mem;
3670 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Cyrill Gorcunov4343fe12009-11-08 18:54:31 +03003671 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003672 mem += IOAPIC_RESOURCE_NAME_SIZE;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003673 }
3674
3675 ioapic_resources = res;
3676
3677 return res;
3678}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003679
Konrad Rzeszutek Wilk4a8e2a32012-03-28 12:37:36 -04003680void __init native_io_apic_init_mappings(void)
Jeremy Fitzhardinge136d2492012-03-21 22:58:08 -04003681{
Yinghai Luf3294a32008-06-27 01:41:56 -07003682 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003683 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003684 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07003685
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003686 ioapic_res = ioapic_setup_resources(nr_ioapics);
Yinghai Luf3294a32008-06-27 01:41:56 -07003687 for (i = 0; i < nr_ioapics; i++) {
3688 if (smp_found_config) {
Suresh Siddhad5371432011-05-18 16:31:37 -07003689 ioapic_phys = mpc_ioapic_addr(i);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003690#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003691 if (!ioapic_phys) {
3692 printk(KERN_ERR
3693 "WARNING: bogus zero IO-APIC "
3694 "address found in MPTABLE, "
3695 "disabling IO/APIC support!\n");
3696 smp_found_config = 0;
3697 skip_ioapic_setup = 1;
3698 goto fake_ioapic_page;
3699 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003700#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07003701 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003702#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07003703fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003704#endif
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003705 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07003706 ioapic_phys = __pa(ioapic_phys);
3707 }
3708 set_fixmap_nocache(idx, ioapic_phys);
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003709 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
3710 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
3711 ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07003712 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003713
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003714 ioapic_res->start = ioapic_phys;
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03003715 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04003716 ioapic_res++;
Yinghai Luf3294a32008-06-27 01:41:56 -07003717 }
Thomas Gleixner23f9b262010-10-15 15:38:50 -07003718
3719 probe_nr_irqs_gsi();
Yinghai Luf3294a32008-06-27 01:41:56 -07003720}
3721
Yinghai Lu857fdc52009-07-10 09:36:20 -07003722void __init ioapic_insert_resources(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003723{
3724 int i;
3725 struct resource *r = ioapic_resources;
3726
3727 if (!r) {
Yinghai Lu857fdc52009-07-10 09:36:20 -07003728 if (nr_ioapics > 0)
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01003729 printk(KERN_ERR
3730 "IO APIC resources couldn't be allocated.\n");
Yinghai Lu857fdc52009-07-10 09:36:20 -07003731 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003732 }
3733
3734 for (i = 0; i < nr_ioapics; i++) {
3735 insert_resource(&iomem_resource, r);
3736 r++;
3737 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003738}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003739
Eric W. Biedermaneddb0c52010-03-30 01:07:09 -07003740int mp_find_ioapic(u32 gsi)
Feng Tang2a4ab642009-07-07 23:01:15 -04003741{
3742 int i = 0;
3743
Paul Bolle678301e2011-02-14 22:52:38 +01003744 if (nr_ioapics == 0)
3745 return -1;
3746
Feng Tang2a4ab642009-07-07 23:01:15 -04003747 /* Find the IOAPIC that manages this GSI. */
3748 for (i = 0; i < nr_ioapics; i++) {
Suresh Siddhac040aae2011-05-18 16:31:38 -07003749 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(i);
3750 if ((gsi >= gsi_cfg->gsi_base)
3751 && (gsi <= gsi_cfg->gsi_end))
Feng Tang2a4ab642009-07-07 23:01:15 -04003752 return i;
3753 }
3754
3755 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
3756 return -1;
3757}
3758
Eric W. Biedermaneddb0c52010-03-30 01:07:09 -07003759int mp_find_ioapic_pin(int ioapic, u32 gsi)
Feng Tang2a4ab642009-07-07 23:01:15 -04003760{
Suresh Siddhac040aae2011-05-18 16:31:38 -07003761 struct mp_ioapic_gsi *gsi_cfg;
3762
Feng Tang2a4ab642009-07-07 23:01:15 -04003763 if (WARN_ON(ioapic == -1))
3764 return -1;
Suresh Siddhac040aae2011-05-18 16:31:38 -07003765
3766 gsi_cfg = mp_ioapic_gsi_routing(ioapic);
3767 if (WARN_ON(gsi > gsi_cfg->gsi_end))
Feng Tang2a4ab642009-07-07 23:01:15 -04003768 return -1;
3769
Suresh Siddhac040aae2011-05-18 16:31:38 -07003770 return gsi - gsi_cfg->gsi_base;
Feng Tang2a4ab642009-07-07 23:01:15 -04003771}
3772
Thomas Gleixner41098ff2011-02-23 16:08:03 +01003773static __init int bad_ioapic(unsigned long address)
Feng Tang2a4ab642009-07-07 23:01:15 -04003774{
3775 if (nr_ioapics >= MAX_IO_APICS) {
Suresh Siddha73d63d02012-03-12 11:36:33 -07003776 pr_warn("WARNING: Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
3777 MAX_IO_APICS, nr_ioapics);
Feng Tang2a4ab642009-07-07 23:01:15 -04003778 return 1;
3779 }
3780 if (!address) {
Suresh Siddha73d63d02012-03-12 11:36:33 -07003781 pr_warn("WARNING: Bogus (zero) I/O APIC address found in table, skipping!\n");
Feng Tang2a4ab642009-07-07 23:01:15 -04003782 return 1;
3783 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003784 return 0;
3785}
3786
Suresh Siddha73d63d02012-03-12 11:36:33 -07003787static __init int bad_ioapic_register(int idx)
3788{
3789 union IO_APIC_reg_00 reg_00;
3790 union IO_APIC_reg_01 reg_01;
3791 union IO_APIC_reg_02 reg_02;
3792
3793 reg_00.raw = io_apic_read(idx, 0);
3794 reg_01.raw = io_apic_read(idx, 1);
3795 reg_02.raw = io_apic_read(idx, 2);
3796
3797 if (reg_00.raw == -1 && reg_01.raw == -1 && reg_02.raw == -1) {
3798 pr_warn("I/O APIC 0x%x registers return all ones, skipping!\n",
3799 mpc_ioapic_addr(idx));
3800 return 1;
3801 }
3802
3803 return 0;
3804}
3805
Feng Tang2a4ab642009-07-07 23:01:15 -04003806void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
3807{
3808 int idx = 0;
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07003809 int entries;
Suresh Siddhac040aae2011-05-18 16:31:38 -07003810 struct mp_ioapic_gsi *gsi_cfg;
Feng Tang2a4ab642009-07-07 23:01:15 -04003811
3812 if (bad_ioapic(address))
3813 return;
3814
3815 idx = nr_ioapics;
3816
Suresh Siddhad5371432011-05-18 16:31:37 -07003817 ioapics[idx].mp_config.type = MP_IOAPIC;
3818 ioapics[idx].mp_config.flags = MPC_APIC_USABLE;
3819 ioapics[idx].mp_config.apicaddr = address;
Feng Tang2a4ab642009-07-07 23:01:15 -04003820
3821 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Suresh Siddha73d63d02012-03-12 11:36:33 -07003822
3823 if (bad_ioapic_register(idx)) {
3824 clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
3825 return;
3826 }
3827
Suresh Siddhad5371432011-05-18 16:31:37 -07003828 ioapics[idx].mp_config.apicid = io_apic_unique_id(id);
3829 ioapics[idx].mp_config.apicver = io_apic_get_version(idx);
Feng Tang2a4ab642009-07-07 23:01:15 -04003830
3831 /*
3832 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
3833 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
3834 */
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07003835 entries = io_apic_get_redir_entries(idx);
Suresh Siddhac040aae2011-05-18 16:31:38 -07003836 gsi_cfg = mp_ioapic_gsi_routing(idx);
3837 gsi_cfg->gsi_base = gsi_base;
3838 gsi_cfg->gsi_end = gsi_base + entries - 1;
Eric W. Biederman7716a5c2010-03-30 01:07:12 -07003839
3840 /*
3841 * The number of IO-APIC IRQ registers (== #pins):
3842 */
Suresh Siddhab69c6c32011-05-18 16:31:35 -07003843 ioapics[idx].nr_registers = entries;
Feng Tang2a4ab642009-07-07 23:01:15 -04003844
Suresh Siddhac040aae2011-05-18 16:31:38 -07003845 if (gsi_cfg->gsi_end >= gsi_top)
3846 gsi_top = gsi_cfg->gsi_end + 1;
Feng Tang2a4ab642009-07-07 23:01:15 -04003847
Suresh Siddha73d63d02012-03-12 11:36:33 -07003848 pr_info("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, GSI %d-%d\n",
3849 idx, mpc_ioapic_id(idx),
3850 mpc_ioapic_ver(idx), mpc_ioapic_addr(idx),
3851 gsi_cfg->gsi_base, gsi_cfg->gsi_end);
Feng Tang2a4ab642009-07-07 23:01:15 -04003852
3853 nr_ioapics++;
3854}
Jacob Pan05ddafb2009-09-23 07:20:23 -07003855
3856/* Enable IOAPIC early just for system timer */
3857void __init pre_init_apic_IRQ0(void)
3858{
Thomas Gleixnerf880ec72011-02-23 13:07:54 +01003859 struct io_apic_irq_attr attr = { 0, 0, 0, 0 };
Jacob Pan05ddafb2009-09-23 07:20:23 -07003860
3861 printk(KERN_INFO "Early APIC setup for system timer0\n");
3862#ifndef CONFIG_SMP
Yinghai Lucb2ded32011-01-04 16:38:52 -08003863 physid_set_mask_of_physid(boot_cpu_physical_apicid,
3864 &phys_cpu_present_map);
Jacob Pan05ddafb2009-09-23 07:20:23 -07003865#endif
Jacob Pan05ddafb2009-09-23 07:20:23 -07003866 setup_local_APIC();
3867
Thomas Gleixnerf880ec72011-02-23 13:07:54 +01003868 io_apic_setup_irq_pin(0, 0, &attr);
Thomas Gleixner2c778652011-03-12 12:20:43 +01003869 irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
3870 "edge");
Jacob Pan05ddafb2009-09-23 07:20:23 -07003871}