blob: 97e1e3ec2edf2ac4ac361e60d1d4c01f47775374 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.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() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053049#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070051#include <asm/proto.h>
52#include <asm/acpi.h>
53#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070055#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020056#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070057#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070058#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070059#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070060#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070061#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053062#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Ingo Molnar7b6aa332009-02-17 13:58:15 +010064#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010066#define __apicdebuginit(type) static type __init
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +040067#define for_each_irq_pin(entry, head) \
68 for (entry = head; entry; entry = entry->next)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020071 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int sis_apic_bug = -1;
75
Thomas Gleixnerdade7712009-07-25 18:39:36 +020076static DEFINE_RAW_SPINLOCK(ioapic_lock);
77static DEFINE_RAW_SPINLOCK(vector_lock);
Yinghai Luefa25592008-08-19 20:50:36 -070078
Yinghai Luefa25592008-08-19 20:50:36 -070079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * # of IRQ routing registers
81 */
82int nr_ioapic_registers[MAX_IO_APICS];
83
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040084/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053085struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040086int nr_ioapics;
87
Feng Tang2a4ab642009-07-07 23:01:15 -040088/* IO APIC gsi routing info */
89struct mp_ioapic_gsi mp_gsi_routing[MAX_IO_APICS];
90
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040091/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053092struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040093
94/* # of MP IRQ source entries */
95int mp_irq_entries;
96
Thomas Gleixnerbc078442009-08-29 18:09:57 +020097/* GSI interrupts */
98static int nr_irqs_gsi = NR_IRQS_LEGACY;
99
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +0400100#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
101int mp_bus_id_to_type[MAX_MP_BUSSES];
102#endif
103
104DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
105
Yinghai Luefa25592008-08-19 20:50:36 -0700106int skip_ioapic_setup;
107
Ingo Molnar65a4e572009-01-31 03:36:17 +0100108void arch_disable_smp_support(void)
109{
110#ifdef CONFIG_PCI
111 noioapicquirk = 1;
112 noioapicreroute = -1;
113#endif
114 skip_ioapic_setup = 1;
115}
116
Ingo Molnar54168ed2008-08-20 09:07:45 +0200117static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700118{
119 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100120 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700121 return 0;
122}
123early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200124
Yinghai Lu0f978f42008-08-19 20:50:26 -0700125struct irq_pin_list {
126 int apic, pin;
127 struct irq_pin_list *next;
128};
Yinghai Lu301e6192008-08-19 20:50:02 -0700129
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700130static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700131{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800132 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700133
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700135
Yinghai Lu0f978f42008-08-19 20:50:26 -0700136 return pin;
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800139/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
140#ifdef CONFIG_SPARSE_IRQ
Suresh Siddha97943392010-01-19 12:20:54 -0800141static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800142#else
Suresh Siddha97943392010-01-19 12:20:54 -0800143static struct irq_cfg irq_cfgx[NR_IRQS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145
Thomas Gleixnerbc078442009-08-29 18:09:57 +0200146void __init io_apic_disable_legacy(void)
147{
148 nr_legacy_irqs = 0;
149 nr_irqs_gsi = 0;
150}
151
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800152int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800153{
154 struct irq_cfg *cfg;
155 struct irq_desc *desc;
156 int count;
Yinghai Ludad213ae2009-05-28 18:14:40 -0700157 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800158 int i;
159
160 cfg = irq_cfgx;
161 count = ARRAY_SIZE(irq_cfgx);
Yinghai Ludad213ae2009-05-28 18:14:40 -0700162 node= cpu_to_node(boot_cpu_id);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800163
164 for (i = 0; i < count; i++) {
165 desc = irq_to_desc(i);
166 desc->chip_data = &cfg[i];
Yinghai Lu12274e92009-06-11 15:07:48 -0700167 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
168 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
Suresh Siddha97943392010-01-19 12:20:54 -0800169 /*
170 * For legacy IRQ's, start with assigning irq0 to irq15 to
171 * IRQ0_VECTOR to IRQ15_VECTOR on cpu 0.
172 */
173 if (i < nr_legacy_irqs) {
174 cfg[i].vector = IRQ0_VECTOR + i;
175 cpumask_set_cpu(0, cfg[i].domain);
176 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800177 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800178
179 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800180}
181
182#ifdef CONFIG_SPARSE_IRQ
Dimitri Sivanich9338ad62009-10-13 15:32:36 -0500183struct irq_cfg *irq_cfg(unsigned int irq)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800184{
185 struct irq_cfg *cfg = NULL;
186 struct irq_desc *desc;
187
188 desc = irq_to_desc(irq);
189 if (desc)
190 cfg = desc->chip_data;
191
192 return cfg;
193}
194
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700195static struct irq_cfg *get_one_free_irq_cfg(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800196{
197 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800198
199 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
Mike Travis22f65d32008-12-16 17:33:56 -0800200 if (cfg) {
Li Zefan79f55992009-06-15 14:58:26 +0800201 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800202 kfree(cfg);
203 cfg = NULL;
Li Zefan79f55992009-06-15 14:58:26 +0800204 } else if (!zalloc_cpumask_var_node(&cfg->old_domain,
Mike Travis80855f72008-12-31 18:08:47 -0800205 GFP_ATOMIC, node)) {
Mike Travis22f65d32008-12-16 17:33:56 -0800206 free_cpumask_var(cfg->domain);
207 kfree(cfg);
208 cfg = NULL;
Mike Travis22f65d32008-12-16 17:33:56 -0800209 }
210 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800211
212 return cfg;
213}
214
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700215int arch_init_chip_data(struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800216{
217 struct irq_cfg *cfg;
218
219 cfg = desc->chip_data;
220 if (!cfg) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700221 desc->chip_data = get_one_free_irq_cfg(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800222 if (!desc->chip_data) {
223 printk(KERN_ERR "can not alloc irq_cfg\n");
224 BUG_ON(1);
225 }
226 }
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800227
228 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800229}
230
Yinghai Lufcef5912009-04-27 17:58:23 -0700231/* for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800232static void
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700233init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800234{
235 struct irq_pin_list *old_entry, *head, *tail, *entry;
236
237 cfg->irq_2_pin = NULL;
238 old_entry = old_cfg->irq_2_pin;
239 if (!old_entry)
240 return;
241
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700242 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800243 if (!entry)
244 return;
245
246 entry->apic = old_entry->apic;
247 entry->pin = old_entry->pin;
248 head = entry;
249 tail = entry;
250 old_entry = old_entry->next;
251 while (old_entry) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700252 entry = get_one_free_irq_2_pin(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800253 if (!entry) {
254 entry = head;
255 while (entry) {
256 head = entry->next;
257 kfree(entry);
258 entry = head;
259 }
260 /* still use the old one */
261 return;
262 }
263 entry->apic = old_entry->apic;
264 entry->pin = old_entry->pin;
265 tail->next = entry;
266 tail = entry;
267 old_entry = old_entry->next;
268 }
269
270 tail->next = NULL;
271 cfg->irq_2_pin = head;
272}
273
274static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
275{
276 struct irq_pin_list *entry, *next;
277
278 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
279 return;
280
281 entry = old_cfg->irq_2_pin;
282
283 while (entry) {
284 next = entry->next;
285 kfree(entry);
286 entry = next;
287 }
288 old_cfg->irq_2_pin = NULL;
289}
290
291void arch_init_copy_chip_data(struct irq_desc *old_desc,
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700292 struct irq_desc *desc, int node)
Yinghai Lu48a1b102008-12-11 00:15:01 -0800293{
294 struct irq_cfg *cfg;
295 struct irq_cfg *old_cfg;
296
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700297 cfg = get_one_free_irq_cfg(node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800298
299 if (!cfg)
300 return;
301
302 desc->chip_data = cfg;
303
304 old_cfg = old_desc->chip_data;
305
306 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
307
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700308 init_copy_irq_2_pin(old_cfg, cfg, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800309}
310
311static void free_irq_cfg(struct irq_cfg *old_cfg)
312{
313 kfree(old_cfg);
314}
315
316void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
317{
318 struct irq_cfg *old_cfg, *cfg;
319
320 old_cfg = old_desc->chip_data;
321 cfg = desc->chip_data;
322
323 if (old_cfg == cfg)
324 return;
325
326 if (old_cfg) {
327 free_irq_2_pin(old_cfg, cfg);
328 free_irq_cfg(old_cfg);
329 old_desc->chip_data = NULL;
330 }
331}
Yinghai Lufcef5912009-04-27 17:58:23 -0700332/* end for move_irq_desc */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800333
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800334#else
Dimitri Sivanich9338ad62009-10-13 15:32:36 -0500335struct irq_cfg *irq_cfg(unsigned int irq)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800336{
337 return irq < nr_irqs ? irq_cfgx + irq : NULL;
338}
339
340#endif
341
Linus Torvalds130fe052006-11-01 09:11:00 -0800342struct io_apic {
343 unsigned int index;
344 unsigned int unused[3];
345 unsigned int data;
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700346 unsigned int unused2[11];
347 unsigned int eoi;
Linus Torvalds130fe052006-11-01 09:11:00 -0800348};
349
350static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
351{
352 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530353 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800354}
355
Suresh Siddha0280f7c2009-03-16 17:05:01 -0700356static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
357{
358 struct io_apic __iomem *io_apic = io_apic_base(apic);
359 writel(vector, &io_apic->eoi);
360}
361
Linus Torvalds130fe052006-11-01 09:11:00 -0800362static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
363{
364 struct io_apic __iomem *io_apic = io_apic_base(apic);
365 writel(reg, &io_apic->index);
366 return readl(&io_apic->data);
367}
368
369static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
370{
371 struct io_apic __iomem *io_apic = io_apic_base(apic);
372 writel(reg, &io_apic->index);
373 writel(value, &io_apic->data);
374}
375
376/*
377 * Re-write a value: to be used for read-modify-write
378 * cycles where the read already set up the index register.
379 *
380 * Older SiS APIC requires we rewrite the index register
381 */
382static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
383{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200384 struct io_apic __iomem *io_apic = io_apic_base(apic);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200385
386 if (sis_apic_bug)
387 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800388 writel(value, &io_apic->data);
389}
390
Yinghai Lu3145e942008-12-05 18:58:34 -0800391static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700392{
393 struct irq_pin_list *entry;
394 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700395
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200396 raw_spin_lock_irqsave(&ioapic_lock, flags);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400397 for_each_irq_pin(entry, cfg->irq_2_pin) {
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700398 unsigned int reg;
399 int pin;
400
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700401 pin = entry->pin;
402 reg = io_apic_read(entry->apic, 0x10 + pin*2);
403 /* Is the remote IRR bit set? */
404 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200405 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700406 return true;
407 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700408 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200409 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700410
411 return false;
412}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700413
Andi Kleencf4c6a22006-09-26 10:52:30 +0200414union entry_union {
415 struct { u32 w1, w2; };
416 struct IO_APIC_route_entry entry;
417};
418
419static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
420{
421 union entry_union eu;
422 unsigned long flags;
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200423 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200424 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
425 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200426 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200427 return eu.entry;
428}
429
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800430/*
431 * When we write a new IO APIC routing entry, we need to write the high
432 * word first! If the mask bit in the low word is clear, we will enable
433 * the interrupt, and we need to make sure the entry is fully populated
434 * before that happens.
435 */
Andi Kleend15512f2006-12-07 02:14:07 +0100436static void
437__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
438{
Figo.zhang50a8d4d2009-06-17 22:25:20 +0800439 union entry_union eu = {{0, 0}};
440
Andi Kleend15512f2006-12-07 02:14:07 +0100441 eu.entry = e;
442 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
443 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
444}
445
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -0800446void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
Andi Kleencf4c6a22006-09-26 10:52:30 +0200447{
448 unsigned long flags;
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200449 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100450 __ioapic_write_entry(apic, pin, e);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200451 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800452}
453
454/*
455 * When we mask an IO APIC routing entry, we need to write the low
456 * word first, in order to set the mask bit before we change the
457 * high bits!
458 */
459static void ioapic_mask_entry(int apic, int pin)
460{
461 unsigned long flags;
462 union entry_union eu = { .entry.mask = 1 };
463
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200464 raw_spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200465 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
466 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200467 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200468}
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
471 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
472 * shared ISA-space IRQs, so we have to support them. We are super
473 * fast in the common case, and fast for shared ISA-space IRQs.
474 */
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400475static int
476add_pin_to_irq_node_nopanic(struct irq_cfg *cfg, int node, int apic, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400478 struct irq_pin_list **last, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400480 /* don't allow duplicates */
481 last = &cfg->irq_2_pin;
482 for_each_irq_pin(entry, cfg->irq_2_pin) {
Yinghai Lu0f978f42008-08-19 20:50:26 -0700483 if (entry->apic == apic && entry->pin == pin)
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400484 return 0;
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400485 last = &entry->next;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700486 }
487
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700488 entry = get_one_free_irq_2_pin(node);
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400489 if (!entry) {
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400490 printk(KERN_ERR "can not alloc irq_pin_list (%d,%d,%d)\n",
491 node, apic, pin);
492 return -ENOMEM;
Cyrill Gorcunova7428cd2009-08-01 11:48:00 +0400493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 entry->apic = apic;
495 entry->pin = pin;
Jeremy Fitzhardinge875e68e2009-06-08 03:24:11 -0700496
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400497 *last = entry;
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +0400498 return 0;
499}
500
501static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
502{
503 if (add_pin_to_irq_node_nopanic(cfg, node, apic, pin))
504 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/*
508 * Reroute an IRQ to a different pin.
509 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700510static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700511 int oldapic, int oldpin,
512 int newapic, int newpin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Jeremy Fitzhardinge535b6422009-06-08 03:29:26 -0700514 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +0400516 for_each_irq_pin(entry, cfg->irq_2_pin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (entry->apic == oldapic && entry->pin == oldpin) {
518 entry->apic = newapic;
519 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700520 /* every one is different, right? */
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700521 return;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700524
Jeremy Fitzhardinge4eea6ff2009-06-08 03:32:15 -0700525 /* old apic/pin didn't exist, so just add new ones */
526 add_pin_to_irq_node(cfg, node, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800529static void __io_apic_modify_irq(struct irq_pin_list *entry,
530 int mask_and, int mask_or,
531 void (*final)(struct irq_pin_list *entry))
532{
533 unsigned int reg, pin;
534
535 pin = entry->pin;
536 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
537 reg &= mask_and;
538 reg |= mask_or;
539 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
540 if (final)
541 final(entry);
542}
543
Jeremy Fitzhardinge2f210de2009-06-08 02:55:22 -0700544static void io_apic_modify_irq(struct irq_cfg *cfg,
545 int mask_and, int mask_or,
546 void (*final)(struct irq_pin_list *entry))
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400547{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400548 struct irq_pin_list *entry;
549
Suresh Siddhac29d9db2009-12-01 15:31:16 -0800550 for_each_irq_pin(entry, cfg->irq_2_pin)
551 __io_apic_modify_irq(entry, mask_and, mask_or, final);
552}
553
554static void __mask_and_edge_IO_APIC_irq(struct irq_pin_list *entry)
555{
556 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_LEVEL_TRIGGER,
557 IO_APIC_REDIR_MASKED, NULL);
558}
559
560static void __unmask_and_level_IO_APIC_irq(struct irq_pin_list *entry)
561{
562 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_MASKED,
563 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700564}
565
Yinghai Lu3145e942008-12-05 18:58:34 -0800566static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400567{
Yinghai Lu3145e942008-12-05 18:58:34 -0800568 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400569}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700570
Jaswinder Singh Rajput7f3e6322008-12-29 20:34:35 +0530571static void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700572{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400573 /*
574 * Synchronize the IO-APIC and the CPU by doing
575 * a dummy read from the IO-APIC
576 */
577 struct io_apic __iomem *io_apic;
578 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700579 readl(&io_apic->data);
580}
581
Yinghai Lu3145e942008-12-05 18:58:34 -0800582static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400583{
Yinghai Lu3145e942008-12-05 18:58:34 -0800584 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400585}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700586
Yinghai Lu3145e942008-12-05 18:58:34 -0800587static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Yinghai Lu3145e942008-12-05 18:58:34 -0800589 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 unsigned long flags;
591
Yinghai Lu3145e942008-12-05 18:58:34 -0800592 BUG_ON(!cfg);
593
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200594 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800595 __mask_IO_APIC_irq(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200596 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Yinghai Lu3145e942008-12-05 18:58:34 -0800599static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Yinghai Lu3145e942008-12-05 18:58:34 -0800601 struct irq_cfg *cfg = desc->chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unsigned long flags;
603
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200604 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -0800605 __unmask_IO_APIC_irq(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +0200606 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Yinghai Lu3145e942008-12-05 18:58:34 -0800609static void mask_IO_APIC_irq(unsigned int irq)
610{
611 struct irq_desc *desc = irq_to_desc(irq);
612
613 mask_IO_APIC_irq_desc(desc);
614}
615static void unmask_IO_APIC_irq(unsigned int irq)
616{
617 struct irq_desc *desc = irq_to_desc(irq);
618
619 unmask_IO_APIC_irq_desc(desc);
620}
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
623{
624 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200627 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (entry.delivery_mode == dest_SMI)
629 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /*
631 * Disable it in the IO-APIC irq-routing table:
632 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800633 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Ingo Molnar54168ed2008-08-20 09:07:45 +0200636static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 int apic, pin;
639
640 for (apic = 0; apic < nr_ioapics; apic++)
641 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
642 clear_IO_APIC_pin(apic, pin);
643}
644
Ingo Molnar54168ed2008-08-20 09:07:45 +0200645#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646/*
647 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
648 * specific CPU-side IRQs.
649 */
650
651#define MAX_PIRQS 8
Yinghai Lu3bd25d02009-02-15 02:54:03 -0800652static int pirq_entries[MAX_PIRQS] = {
653 [0 ... MAX_PIRQS - 1] = -1
654};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656static int __init ioapic_pirq_setup(char *str)
657{
658 int i, max;
659 int ints[MAX_PIRQS+1];
660
661 get_options(str, ARRAY_SIZE(ints), ints);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 apic_printk(APIC_VERBOSE, KERN_INFO
664 "PIRQ redirection, working around broken MP-BIOS.\n");
665 max = MAX_PIRQS;
666 if (ints[0] < MAX_PIRQS)
667 max = ints[0];
668
669 for (i = 0; i < max; i++) {
670 apic_printk(APIC_VERBOSE, KERN_DEBUG
671 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
672 /*
673 * PIRQs are mapped upside down, usually.
674 */
675 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
676 }
677 return 1;
678}
679
680__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200681#endif /* CONFIG_X86_32 */
682
Fenghua Yub24696b2009-03-27 14:22:44 -0700683struct IO_APIC_route_entry **alloc_ioapic_entries(void)
684{
685 int apic;
686 struct IO_APIC_route_entry **ioapic_entries;
687
688 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
689 GFP_ATOMIC);
690 if (!ioapic_entries)
691 return 0;
692
693 for (apic = 0; apic < nr_ioapics; apic++) {
694 ioapic_entries[apic] =
695 kzalloc(sizeof(struct IO_APIC_route_entry) *
696 nr_ioapic_registers[apic], GFP_ATOMIC);
697 if (!ioapic_entries[apic])
698 goto nomem;
699 }
700
701 return ioapic_entries;
702
703nomem:
704 while (--apic >= 0)
705 kfree(ioapic_entries[apic]);
706 kfree(ioapic_entries);
707
708 return 0;
709}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200710
711/*
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700712 * Saves all the IO-APIC RTE's
Ingo Molnar54168ed2008-08-20 09:07:45 +0200713 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700714int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200715{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200716 int apic, pin;
717
Fenghua Yub24696b2009-03-27 14:22:44 -0700718 if (!ioapic_entries)
719 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200720
721 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700722 if (!ioapic_entries[apic])
723 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200724
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700725 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
Fenghua Yub24696b2009-03-27 14:22:44 -0700726 ioapic_entries[apic][pin] =
Ingo Molnar54168ed2008-08-20 09:07:45 +0200727 ioapic_read_entry(apic, pin);
Fenghua Yub24696b2009-03-27 14:22:44 -0700728 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400729
Ingo Molnar54168ed2008-08-20 09:07:45 +0200730 return 0;
731}
732
Fenghua Yub24696b2009-03-27 14:22:44 -0700733/*
734 * Mask all IO APIC entries.
735 */
736void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700737{
738 int apic, pin;
739
Fenghua Yub24696b2009-03-27 14:22:44 -0700740 if (!ioapic_entries)
741 return;
742
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700743 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700744 if (!ioapic_entries[apic])
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700745 break;
Fenghua Yub24696b2009-03-27 14:22:44 -0700746
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700747 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
748 struct IO_APIC_route_entry entry;
749
Fenghua Yub24696b2009-03-27 14:22:44 -0700750 entry = ioapic_entries[apic][pin];
Suresh Siddha05c3dc22009-03-16 17:05:03 -0700751 if (!entry.mask) {
752 entry.mask = 1;
753 ioapic_write_entry(apic, pin, entry);
754 }
755 }
756 }
757}
758
Fenghua Yub24696b2009-03-27 14:22:44 -0700759/*
760 * Restore IO APIC entries which was saved in ioapic_entries.
761 */
762int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200763{
764 int apic, pin;
765
Fenghua Yub24696b2009-03-27 14:22:44 -0700766 if (!ioapic_entries)
767 return -ENOMEM;
768
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400769 for (apic = 0; apic < nr_ioapics; apic++) {
Fenghua Yub24696b2009-03-27 14:22:44 -0700770 if (!ioapic_entries[apic])
771 return -ENOMEM;
772
Ingo Molnar54168ed2008-08-20 09:07:45 +0200773 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
774 ioapic_write_entry(apic, pin,
Fenghua Yub24696b2009-03-27 14:22:44 -0700775 ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400776 }
Fenghua Yub24696b2009-03-27 14:22:44 -0700777 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200778}
779
Fenghua Yub24696b2009-03-27 14:22:44 -0700780void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
781{
782 int apic;
783
784 for (apic = 0; apic < nr_ioapics; apic++)
785 kfree(ioapic_entries[apic]);
786
787 kfree(ioapic_entries);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200788}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790/*
791 * Find the IRQ entry number of a certain pin.
792 */
793static int find_irq_entry(int apic, int pin, int type)
794{
795 int i;
796
797 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530798 if (mp_irqs[i].irqtype == type &&
799 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
800 mp_irqs[i].dstapic == MP_APIC_ALL) &&
801 mp_irqs[i].dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return i;
803
804 return -1;
805}
806
807/*
808 * Find the pin to which IRQ[irq] (ISA) is connected
809 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800810static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 int i;
813
814 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530815 int lbus = mp_irqs[i].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300817 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530818 (mp_irqs[i].irqtype == type) &&
819 (mp_irqs[i].srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530821 return mp_irqs[i].dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 return -1;
824}
825
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800826static int __init find_isa_irq_apic(int irq, int type)
827{
828 int i;
829
830 for (i = 0; i < mp_irq_entries; i++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530831 int lbus = mp_irqs[i].srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800832
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300833 if (test_bit(lbus, mp_bus_not_pci) &&
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530834 (mp_irqs[i].irqtype == type) &&
835 (mp_irqs[i].srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800836 break;
837 }
838 if (i < mp_irq_entries) {
839 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200840 for(apic = 0; apic < nr_ioapics; apic++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530841 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800842 return apic;
843 }
844 }
845
846 return -1;
847}
848
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300849#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/*
851 * EISA Edge/Level control register, ELCR
852 */
853static int EISA_ELCR(unsigned int irq)
854{
Thomas Gleixnerbc078442009-08-29 18:09:57 +0200855 if (irq < nr_legacy_irqs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 unsigned int port = 0x4d0 + (irq >> 3);
857 return (inb(port) >> (irq & 7)) & 1;
858 }
859 apic_printk(APIC_VERBOSE, KERN_INFO
860 "Broken MPtable reports ISA irq %d\n", irq);
861 return 0;
862}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200863
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300864#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300866/* ISA interrupts are always polarity zero edge triggered,
867 * when listed as conforming in the MP table. */
868
869#define default_ISA_trigger(idx) (0)
870#define default_ISA_polarity(idx) (0)
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872/* EISA interrupts are always polarity zero and can be edge or level
873 * trigger depending on the ELCR value. If an interrupt is listed as
874 * EISA conforming in the MP table, that means its trigger type must
875 * be read in from the ELCR */
876
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530877#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300878#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880/* PCI interrupts are always polarity one level triggered,
881 * when listed as conforming in the MP table. */
882
883#define default_PCI_trigger(idx) (1)
884#define default_PCI_polarity(idx) (1)
885
886/* MCA interrupts are always polarity zero level triggered,
887 * when listed as conforming in the MP table. */
888
889#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300890#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Shaohua Li61fd47e2007-11-17 01:05:28 -0500892static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530894 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 int polarity;
896
897 /*
898 * Determine IRQ line polarity (high active or low active):
899 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530900 switch (mp_irqs[idx].irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200902 case 0: /* conforms, ie. bus-type dependent polarity */
903 if (test_bit(bus, mp_bus_not_pci))
904 polarity = default_ISA_polarity(idx);
905 else
906 polarity = default_PCI_polarity(idx);
907 break;
908 case 1: /* high active */
909 {
910 polarity = 0;
911 break;
912 }
913 case 2: /* reserved */
914 {
915 printk(KERN_WARNING "broken BIOS!!\n");
916 polarity = 1;
917 break;
918 }
919 case 3: /* low active */
920 {
921 polarity = 1;
922 break;
923 }
924 default: /* invalid */
925 {
926 printk(KERN_WARNING "broken BIOS!!\n");
927 polarity = 1;
928 break;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 return polarity;
932}
933
934static int MPBIOS_trigger(int idx)
935{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530936 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int trigger;
938
939 /*
940 * Determine IRQ trigger mode (edge or level sensitive):
941 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530942 switch ((mp_irqs[idx].irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200944 case 0: /* conforms, ie. bus-type dependent */
945 if (test_bit(bus, mp_bus_not_pci))
946 trigger = default_ISA_trigger(idx);
947 else
948 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300949#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +0200950 switch (mp_bus_id_to_type[bus]) {
951 case MP_BUS_ISA: /* ISA pin */
952 {
953 /* set before the switch */
954 break;
955 }
956 case MP_BUS_EISA: /* EISA pin */
957 {
958 trigger = default_EISA_trigger(idx);
959 break;
960 }
961 case MP_BUS_PCI: /* PCI pin */
962 {
963 /* set before the switch */
964 break;
965 }
966 case MP_BUS_MCA: /* MCA pin */
967 {
968 trigger = default_MCA_trigger(idx);
969 break;
970 }
971 default:
972 {
973 printk(KERN_WARNING "broken BIOS!!\n");
974 trigger = 1;
975 break;
976 }
977 }
978#endif
979 break;
980 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200981 {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200982 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200983 break;
984 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200985 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200986 {
987 printk(KERN_WARNING "broken BIOS!!\n");
988 trigger = 1;
989 break;
990 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200991 case 3: /* level */
992 {
993 trigger = 1;
994 break;
995 }
996 default: /* invalid */
997 {
998 printk(KERN_WARNING "broken BIOS!!\n");
999 trigger = 0;
1000 break;
1001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003 return trigger;
1004}
1005
1006static inline int irq_polarity(int idx)
1007{
1008 return MPBIOS_polarity(idx);
1009}
1010
1011static inline int irq_trigger(int idx)
1012{
1013 return MPBIOS_trigger(idx);
1014}
1015
Yinghai Luefa25592008-08-19 20:50:36 -07001016int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017static int pin_2_irq(int idx, int apic, int pin)
1018{
1019 int irq, i;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301020 int bus = mp_irqs[idx].srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 /*
1023 * Debugging check, we are in big trouble if this message pops up!
1024 */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301025 if (mp_irqs[idx].dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1027
Ingo Molnar54168ed2008-08-20 09:07:45 +02001028 if (test_bit(bus, mp_bus_not_pci)) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301029 irq = mp_irqs[idx].srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001030 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001031 /*
1032 * PCI IRQs are mapped in order
1033 */
1034 i = irq = 0;
1035 while (i < apic)
1036 irq += nr_ioapic_registers[i++];
1037 irq += pin;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001038 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001039 * For MPS mode, so far only needed by ES7000 platform
1040 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001041 if (ioapic_renumber_irq)
1042 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
Ingo Molnar54168ed2008-08-20 09:07:45 +02001045#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /*
1047 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1048 */
1049 if ((pin >= 16) && (pin <= 23)) {
1050 if (pirq_entries[pin-16] != -1) {
1051 if (!pirq_entries[pin-16]) {
1052 apic_printk(APIC_VERBOSE, KERN_DEBUG
1053 "disabling PIRQ%d\n", pin-16);
1054 } else {
1055 irq = pirq_entries[pin-16];
1056 apic_printk(APIC_VERBOSE, KERN_DEBUG
1057 "using PIRQ%d -> IRQ %d\n",
1058 pin-16, irq);
1059 }
1060 }
1061 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001062#endif
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return irq;
1065}
1066
Yinghai Lue20c06f2009-05-06 10:08:22 -07001067/*
1068 * Find a specific PCI IRQ entry.
1069 * Not an __init, possibly needed by modules
1070 */
1071int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
Yinghai Lue5198072009-05-15 13:05:16 -07001072 struct io_apic_irq_attr *irq_attr)
Yinghai Lue20c06f2009-05-06 10:08:22 -07001073{
1074 int apic, i, best_guess = -1;
1075
1076 apic_printk(APIC_DEBUG,
1077 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1078 bus, slot, pin);
1079 if (test_bit(bus, mp_bus_not_pci)) {
1080 apic_printk(APIC_VERBOSE,
1081 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
1082 return -1;
1083 }
1084 for (i = 0; i < mp_irq_entries; i++) {
1085 int lbus = mp_irqs[i].srcbus;
1086
1087 for (apic = 0; apic < nr_ioapics; apic++)
1088 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
1089 mp_irqs[i].dstapic == MP_APIC_ALL)
1090 break;
1091
1092 if (!test_bit(lbus, mp_bus_not_pci) &&
1093 !mp_irqs[i].irqtype &&
1094 (bus == lbus) &&
1095 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
1096 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1097
1098 if (!(apic || IO_APIC_IRQ(irq)))
1099 continue;
1100
1101 if (pin == (mp_irqs[i].srcbusirq & 3)) {
Yinghai Lue5198072009-05-15 13:05:16 -07001102 set_io_apic_irq_attr(irq_attr, apic,
1103 mp_irqs[i].dstirq,
1104 irq_trigger(i),
1105 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001106 return irq;
1107 }
1108 /*
1109 * Use the first all-but-pin matching entry as a
1110 * best-guess fuzzy result for broken mptables.
1111 */
1112 if (best_guess < 0) {
Yinghai Lue5198072009-05-15 13:05:16 -07001113 set_io_apic_irq_attr(irq_attr, apic,
1114 mp_irqs[i].dstirq,
1115 irq_trigger(i),
1116 irq_polarity(i));
Yinghai Lue20c06f2009-05-06 10:08:22 -07001117 best_guess = irq;
1118 }
1119 }
1120 }
1121 return best_guess;
1122}
1123EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1124
Yinghai Lu497c9a12008-08-19 20:50:28 -07001125void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001127 /* Used to the online set of cpus does not change
1128 * during assign_irq_vector.
1129 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001130 raw_spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
Yinghai Lu497c9a12008-08-19 20:50:28 -07001133void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001134{
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001135 raw_spin_unlock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001136}
1137
Mike Travise7986732008-12-16 17:33:52 -08001138static int
1139__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001140{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001141 /*
1142 * NOTE! The local APIC isn't very good at handling
1143 * multiple interrupts at the same interrupt level.
1144 * As the interrupt level is determined by taking the
1145 * vector number and shifting that right by 4, we
1146 * want to spread these out a bit so that they don't
1147 * all fall in the same interrupt level.
1148 *
1149 * Also, we've got to be careful not to trash gate
1150 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1151 */
Suresh Siddha6579b472010-01-13 16:19:11 -08001152 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
H. Peter Anvinea943962010-01-04 21:14:41 -08001153 static int current_offset = VECTOR_OFFSET_START % 8;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001154 unsigned int old_vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001155 int cpu, err;
1156 cpumask_var_t tmp_mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001157
Suresh Siddha23359a82009-10-26 14:24:33 -08001158 if (cfg->move_in_progress)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001159 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001160
Mike Travis22f65d32008-12-16 17:33:56 -08001161 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1162 return -ENOMEM;
Yinghai Lu3145e942008-12-05 18:58:34 -08001163
Ingo Molnar54168ed2008-08-20 09:07:45 +02001164 old_vector = cfg->vector;
1165 if (old_vector) {
Mike Travis22f65d32008-12-16 17:33:56 -08001166 cpumask_and(tmp_mask, mask, cpu_online_mask);
1167 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1168 if (!cpumask_empty(tmp_mask)) {
1169 free_cpumask_var(tmp_mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001170 return 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001171 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001172 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001173
Mike Travise7986732008-12-16 17:33:52 -08001174 /* Only try and allocate irqs on cpus that are present */
Mike Travis22f65d32008-12-16 17:33:56 -08001175 err = -ENOSPC;
1176 for_each_cpu_and(cpu, mask, cpu_online_mask) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001177 int new_cpu;
1178 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001179
Ingo Molnare2d40b12009-01-28 06:50:47 +01001180 apic->vector_allocation_domain(cpu, tmp_mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001181
Ingo Molnar54168ed2008-08-20 09:07:45 +02001182 vector = current_vector;
1183 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001184next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001185 vector += 8;
1186 if (vector >= first_system_vector) {
Mike Travise7986732008-12-16 17:33:52 -08001187 /* If out of vectors on large boxen, must share them. */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001188 offset = (offset + 1) % 8;
Suresh Siddha6579b472010-01-13 16:19:11 -08001189 vector = FIRST_EXTERNAL_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001190 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001191 if (unlikely(current_vector == vector))
1192 continue;
Yinghai Lub77b8812008-12-19 15:23:44 -08001193
1194 if (test_bit(vector, used_vectors))
Ingo Molnar54168ed2008-08-20 09:07:45 +02001195 goto next;
Yinghai Lub77b8812008-12-19 15:23:44 -08001196
Mike Travis22f65d32008-12-16 17:33:56 -08001197 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001198 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1199 goto next;
1200 /* Found one! */
1201 current_vector = vector;
1202 current_offset = offset;
1203 if (old_vector) {
1204 cfg->move_in_progress = 1;
Mike Travis22f65d32008-12-16 17:33:56 -08001205 cpumask_copy(cfg->old_domain, cfg->domain);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001206 }
Mike Travis22f65d32008-12-16 17:33:56 -08001207 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001208 per_cpu(vector_irq, new_cpu)[vector] = irq;
1209 cfg->vector = vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001210 cpumask_copy(cfg->domain, tmp_mask);
1211 err = 0;
1212 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001213 }
Mike Travis22f65d32008-12-16 17:33:56 -08001214 free_cpumask_var(tmp_mask);
1215 return err;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001216}
1217
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05001218int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001219{
1220 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001221 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001222
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001223 raw_spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu3145e942008-12-05 18:58:34 -08001224 err = __assign_irq_vector(irq, cfg, mask);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001225 raw_spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001226 return err;
1227}
1228
Yinghai Lu3145e942008-12-05 18:58:34 -08001229static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001230{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001231 int cpu, vector;
1232
Yinghai Lu497c9a12008-08-19 20:50:28 -07001233 BUG_ON(!cfg->vector);
1234
1235 vector = cfg->vector;
Mike Travis22f65d32008-12-16 17:33:56 -08001236 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001237 per_cpu(vector_irq, cpu)[vector] = -1;
1238
1239 cfg->vector = 0;
Mike Travis22f65d32008-12-16 17:33:56 -08001240 cpumask_clear(cfg->domain);
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001241
1242 if (likely(!cfg->move_in_progress))
1243 return;
Mike Travis22f65d32008-12-16 17:33:56 -08001244 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
Matthew Wilcox0ca4b6b2008-11-20 14:09:33 -07001245 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1246 vector++) {
1247 if (per_cpu(vector_irq, cpu)[vector] != irq)
1248 continue;
1249 per_cpu(vector_irq, cpu)[vector] = -1;
1250 break;
1251 }
1252 }
1253 cfg->move_in_progress = 0;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001254}
1255
1256void __setup_vector_irq(int cpu)
1257{
1258 /* Initialize vector_irq on a new cpu */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001259 int irq, vector;
1260 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001261 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001262
Suresh Siddha9d133e52010-01-29 11:42:21 -08001263 /*
1264 * vector_lock will make sure that we don't run into irq vector
1265 * assignments that might be happening on another cpu in parallel,
1266 * while we setup our initial vector to irq mappings.
1267 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001268 raw_spin_lock(&vector_lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001269 /* Mark the inuse vectors */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001270 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001271 cfg = desc->chip_data;
Mike Travis22f65d32008-12-16 17:33:56 -08001272 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001273 continue;
1274 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001275 per_cpu(vector_irq, cpu)[vector] = irq;
1276 }
1277 /* Mark the free vectors */
1278 for (vector = 0; vector < NR_VECTORS; ++vector) {
1279 irq = per_cpu(vector_irq, cpu)[vector];
1280 if (irq < 0)
1281 continue;
1282
1283 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001284 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001285 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001286 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001287 raw_spin_unlock(&vector_lock);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001288}
Glauber Costa3fde6902008-05-28 20:34:19 -07001289
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001290static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001291static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Ingo Molnar54168ed2008-08-20 09:07:45 +02001293#define IOAPIC_AUTO -1
1294#define IOAPIC_EDGE 0
1295#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001297#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001298static inline int IO_APIC_irq_trigger(int irq)
1299{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001300 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001301
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001302 for (apic = 0; apic < nr_ioapics; apic++) {
1303 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1304 idx = find_irq_entry(apic, pin, mp_INT);
1305 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1306 return irq_trigger(idx);
1307 }
1308 }
1309 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001310 * nonexistent IRQs are edge default
1311 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001312 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001313}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001314#else
1315static inline int IO_APIC_irq_trigger(int irq)
1316{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001317 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001318}
1319#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001320
Yinghai Lu3145e942008-12-05 18:58:34 -08001321static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Yinghai Lu199751d2008-08-19 20:50:27 -07001323
Jan Beulich6ebcc002006-06-26 13:56:46 +02001324 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001325 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001326 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001327 else
1328 desc->status &= ~IRQ_LEVEL;
1329
Ingo Molnar54168ed2008-08-20 09:07:45 +02001330 if (irq_remapped(irq)) {
1331 desc->status |= IRQ_MOVE_PCNTXT;
1332 if (trigger)
1333 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1334 handle_fasteoi_irq,
1335 "fasteoi");
1336 else
1337 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1338 handle_edge_irq, "edge");
1339 return;
1340 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001341
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001342 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1343 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001344 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001345 handle_fasteoi_irq,
1346 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001347 else
Ingo Molnara460e742006-10-17 00:10:03 -07001348 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001349 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001350}
1351
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001352int setup_ioapic_entry(int apic_id, int irq,
1353 struct IO_APIC_route_entry *entry,
1354 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001355 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001356{
1357 /*
1358 * add it to the IO-APIC irq-routing table:
1359 */
1360 memset(entry,0,sizeof(*entry));
1361
Ingo Molnar54168ed2008-08-20 09:07:45 +02001362 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001363 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001364 struct irte irte;
1365 struct IR_IO_APIC_route_entry *ir_entry =
1366 (struct IR_IO_APIC_route_entry *) entry;
1367 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001368
Ingo Molnar54168ed2008-08-20 09:07:45 +02001369 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001370 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001371
1372 index = alloc_irte(iommu, irq, 1);
1373 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001374 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001375
1376 memset(&irte, 0, sizeof(irte));
1377
1378 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001379 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001380 /*
1381 * Trigger mode in the IRTE will always be edge, and the
1382 * actual level or edge trigger will be setup in the IO-APIC
1383 * RTE. This will help simplify level triggered irq migration.
1384 * For more details, see the comments above explainig IO-APIC
1385 * irq migration in the presence of interrupt-remapping.
1386 */
1387 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001388 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001389 irte.vector = vector;
1390 irte.dest_id = IRTE_DEST(destination);
1391
Weidong Hanf007e992009-05-23 00:41:15 +08001392 /* Set source-id of interrupt request */
1393 set_ioapic_sid(&irte, apic_id);
1394
Ingo Molnar54168ed2008-08-20 09:07:45 +02001395 modify_irte(irq, &irte);
1396
1397 ir_entry->index2 = (index >> 15) & 0x1;
1398 ir_entry->zero = 0;
1399 ir_entry->format = 1;
1400 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001401 /*
1402 * IO-APIC RTE will be configured with virtual vector.
1403 * irq handler will do the explicit EOI to the io-apic.
1404 */
1405 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001406 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001407 entry->delivery_mode = apic->irq_delivery_mode;
1408 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001409 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001410 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001411 }
1412
1413 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001414 entry->trigger = trigger;
1415 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001416
1417 /* Mask level triggered irqs.
1418 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1419 */
1420 if (trigger)
1421 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001422 return 0;
1423}
1424
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001425static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001426 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001427{
1428 struct irq_cfg *cfg;
1429 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001430 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001431
1432 if (!IO_APIC_IRQ(irq))
1433 return;
1434
Yinghai Lu3145e942008-12-05 18:58:34 -08001435 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001436
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001437 /*
1438 * For legacy irqs, cfg->domain starts with cpu 0 for legacy
1439 * controllers like 8259. Now that IO-APIC can handle this irq, update
1440 * the cfg->domain.
1441 */
1442 if (irq < nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain))
1443 apic->vector_allocation_domain(0, cfg->domain);
1444
Ingo Molnarfe402e12009-01-28 04:32:51 +01001445 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001446 return;
1447
Ingo Molnardebccb32009-01-28 15:20:18 +01001448 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001449
1450 apic_printk(APIC_VERBOSE,KERN_DEBUG
1451 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1452 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001453 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001454 irq, trigger, polarity);
1455
1456
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001457 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001458 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001459 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001460 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001461 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001462 return;
1463 }
1464
Yinghai Lu3145e942008-12-05 18:58:34 -08001465 ioapic_register_intr(irq, desc, trigger);
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001466 if (irq < nr_legacy_irqs)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001467 disable_8259A_irq(irq);
1468
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001469 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Yinghai Lub9c61b702009-05-06 10:10:06 -07001472static struct {
1473 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1474} mp_ioapic_routing[MAX_IO_APICS];
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476static void __init setup_IO_APIC_irqs(void)
1477{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001478 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001479 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001480 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001481 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001482 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1485
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001486 for (apic_id = 0; apic_id < nr_ioapics; apic_id++)
Yinghai Lub9c61b702009-05-06 10:10:06 -07001487 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1488 idx = find_irq_entry(apic_id, pin, mp_INT);
1489 if (idx == -1) {
1490 if (!notcon) {
1491 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001492 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001493 KERN_DEBUG " %d-%d",
1494 mp_ioapics[apic_id].apicid, pin);
1495 } else
1496 apic_printk(APIC_VERBOSE, " %d-%d",
1497 mp_ioapics[apic_id].apicid, pin);
1498 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001499 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001500 if (notcon) {
1501 apic_printk(APIC_VERBOSE,
1502 " (apicid-pin) not connected\n");
1503 notcon = 0;
1504 }
1505
1506 irq = pin_2_irq(idx, apic_id, pin);
1507
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001508 if ((apic_id > 0) && (irq > 16))
1509 continue;
1510
Yinghai Lub9c61b702009-05-06 10:10:06 -07001511 /*
1512 * Skip the timer IRQ if there's a quirk handler
1513 * installed and if it returns 1:
1514 */
1515 if (apic->multi_timer_check &&
1516 apic->multi_timer_check(apic_id, irq))
1517 continue;
1518
1519 desc = irq_to_desc_alloc_node(irq, node);
1520 if (!desc) {
1521 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1522 continue;
1523 }
1524 cfg = desc->chip_data;
1525 add_pin_to_irq_node(cfg, node, apic_id, pin);
Yinghai Lu4c6f18f2009-05-18 10:23:28 -07001526 /*
1527 * don't mark it in pin_programmed, so later acpi could
1528 * set it correctly when irq < 16
1529 */
Yinghai Lub9c61b702009-05-06 10:10:06 -07001530 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1531 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001534 if (notcon)
1535 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001536 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001540 * for the gsit that is not in first ioapic
1541 * but could not use acpi_register_gsi()
1542 * like some special sci in IBM x3330
1543 */
1544void setup_IO_APIC_irq_extra(u32 gsi)
1545{
1546 int apic_id = 0, pin, idx, irq;
1547 int node = cpu_to_node(boot_cpu_id);
1548 struct irq_desc *desc;
1549 struct irq_cfg *cfg;
1550
1551 /*
1552 * Convert 'gsi' to 'ioapic.pin'.
1553 */
1554 apic_id = mp_find_ioapic(gsi);
1555 if (apic_id < 0)
1556 return;
1557
1558 pin = mp_find_ioapic_pin(apic_id, gsi);
1559 idx = find_irq_entry(apic_id, pin, mp_INT);
1560 if (idx == -1)
1561 return;
1562
1563 irq = pin_2_irq(idx, apic_id, pin);
1564#ifdef CONFIG_SPARSE_IRQ
1565 desc = irq_to_desc(irq);
1566 if (desc)
1567 return;
1568#endif
1569 desc = irq_to_desc_alloc_node(irq, node);
1570 if (!desc) {
1571 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1572 return;
1573 }
1574
1575 cfg = desc->chip_data;
1576 add_pin_to_irq_node(cfg, node, apic_id, pin);
1577
1578 if (test_bit(pin, mp_ioapic_routing[apic_id].pin_programmed)) {
1579 pr_debug("Pin %d-%d already programmed\n",
1580 mp_ioapics[apic_id].apicid, pin);
1581 return;
1582 }
1583 set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed);
1584
1585 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1586 irq_trigger(idx), irq_polarity(idx));
1587}
1588
1589/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001590 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001592static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001593 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Ingo Molnar54168ed2008-08-20 09:07:45 +02001597 if (intr_remapping_enabled)
1598 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001599
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001600 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 /*
1603 * We use logical delivery to get the timer IRQ
1604 * to the first CPU.
1605 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001606 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001607 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001608 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001609 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 entry.polarity = 0;
1611 entry.trigger = 0;
1612 entry.vector = vector;
1613
1614 /*
1615 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001616 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001618 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 /*
1621 * Add it to the IO-APIC irq-routing table:
1622 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001623 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001626
1627__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
1629 int apic, i;
1630 union IO_APIC_reg_00 reg_00;
1631 union IO_APIC_reg_01 reg_01;
1632 union IO_APIC_reg_02 reg_02;
1633 union IO_APIC_reg_03 reg_03;
1634 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001635 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001636 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001637 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001639 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 for (i = 0; i < nr_ioapics; i++)
1641 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301642 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 /*
1645 * We are a bit conservative about what we expect. We have to
1646 * know about every hardware change ASAP.
1647 */
1648 printk(KERN_INFO "testing the IO APIC.......................\n");
1649
1650 for (apic = 0; apic < nr_ioapics; apic++) {
1651
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001652 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 reg_00.raw = io_apic_read(apic, 0);
1654 reg_01.raw = io_apic_read(apic, 1);
1655 if (reg_01.bits.version >= 0x10)
1656 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001657 if (reg_01.bits.version >= 0x20)
1658 reg_03.raw = io_apic_read(apic, 3);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001659 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Ingo Molnar54168ed2008-08-20 09:07:45 +02001661 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301662 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1664 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1665 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1666 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Ingo Molnar54168ed2008-08-20 09:07:45 +02001668 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1672 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 /*
1675 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1676 * but the value of reg_02 is read as the previous read register
1677 * value, so ignore it if reg_02 == reg_01.
1678 */
1679 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1680 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1681 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
1683
1684 /*
1685 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1686 * or reg_03, but the value of reg_0[23] is read as the previous read
1687 * register value, so ignore it if reg_03 == reg_0[12].
1688 */
1689 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1690 reg_03.raw != reg_01.raw) {
1691 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1692 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694
1695 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1696
Yinghai Lud83e94a2008-08-19 20:50:33 -07001697 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1698 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 for (i = 0; i <= reg_01.bits.entries; i++) {
1701 struct IO_APIC_route_entry entry;
1702
Andi Kleencf4c6a22006-09-26 10:52:30 +02001703 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Ingo Molnar54168ed2008-08-20 09:07:45 +02001705 printk(KERN_DEBUG " %02x %03X ",
1706 i,
1707 entry.dest
1708 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1711 entry.mask,
1712 entry.trigger,
1713 entry.irr,
1714 entry.polarity,
1715 entry.delivery_status,
1716 entry.dest_mode,
1717 entry.delivery_mode,
1718 entry.vector
1719 );
1720 }
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001723 for_each_irq_desc(irq, desc) {
1724 struct irq_pin_list *entry;
1725
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001726 cfg = desc->chip_data;
1727 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001728 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001730 printk(KERN_DEBUG "IRQ%d ", irq);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04001731 for_each_irq_pin(entry, cfg->irq_2_pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 printk("-> %d:%d", entry->apic, entry->pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 printk("\n");
1734 }
1735
1736 printk(KERN_INFO ".................................... done.\n");
1737
1738 return;
1739}
1740
Ingo Molnar251e1e42009-07-02 08:54:01 +02001741__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001743 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Ingo Molnar251e1e42009-07-02 08:54:01 +02001745 printk(KERN_DEBUG);
1746
1747 for (i = 0; i < 8; i++)
1748 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1749
1750 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001753__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001755 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001756 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Ingo Molnar251e1e42009-07-02 08:54:01 +02001758 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001760 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001761 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 v = apic_read(APIC_LVR);
1763 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1764 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001765 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 v = apic_read(APIC_TASKPRI);
1768 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1769
Ingo Molnar54168ed2008-08-20 09:07:45 +02001770 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001771 if (!APIC_XAPIC(ver)) {
1772 v = apic_read(APIC_ARBPRI);
1773 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1774 v & APIC_ARBPRI_MASK);
1775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 v = apic_read(APIC_PROCPRI);
1777 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1778 }
1779
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001780 /*
1781 * Remote read supported only in the 82489DX and local APIC for
1782 * Pentium processors.
1783 */
1784 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1785 v = apic_read(APIC_RRR);
1786 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1787 }
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 v = apic_read(APIC_LDR);
1790 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001791 if (!x2apic_enabled()) {
1792 v = apic_read(APIC_DFR);
1793 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 v = apic_read(APIC_SPIV);
1796 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1797
1798 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001799 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001801 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001803 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Ingo Molnar54168ed2008-08-20 09:07:45 +02001805 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1806 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 v = apic_read(APIC_ESR);
1810 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1811 }
1812
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001813 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001814 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1815 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 v = apic_read(APIC_LVTT);
1818 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1819
1820 if (maxlvt > 3) { /* PC is LVT#4. */
1821 v = apic_read(APIC_LVTPC);
1822 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1823 }
1824 v = apic_read(APIC_LVT0);
1825 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1826 v = apic_read(APIC_LVT1);
1827 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1828
1829 if (maxlvt > 2) { /* ERR is LVT#3. */
1830 v = apic_read(APIC_LVTERR);
1831 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1832 }
1833
1834 v = apic_read(APIC_TMICT);
1835 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1836 v = apic_read(APIC_TMCCT);
1837 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1838 v = apic_read(APIC_TDCR);
1839 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001840
1841 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1842 v = apic_read(APIC_EFEAT);
1843 maxlvt = (v >> 16) & 0xff;
1844 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1845 v = apic_read(APIC_ECTRL);
1846 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1847 for (i = 0; i < maxlvt; i++) {
1848 v = apic_read(APIC_EILVTn(i));
1849 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1850 }
1851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 printk("\n");
1853}
1854
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001855__apicdebuginit(void) print_local_APICs(int maxcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001857 int cpu;
1858
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001859 if (!maxcpu)
1860 return;
1861
Yinghai Luffd5aae2008-08-19 20:50:50 -07001862 preempt_disable();
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001863 for_each_online_cpu(cpu) {
1864 if (cpu >= maxcpu)
1865 break;
Yinghai Luffd5aae2008-08-19 20:50:50 -07001866 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001867 }
Yinghai Luffd5aae2008-08-19 20:50:50 -07001868 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001871__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 unsigned int v;
1874 unsigned long flags;
1875
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001876 if (!nr_legacy_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return;
1878
1879 printk(KERN_DEBUG "\nprinting PIC contents\n");
1880
Thomas Gleixner5619c282009-07-25 18:35:11 +02001881 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 v = inb(0xa1) << 8 | inb(0x21);
1884 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1885
1886 v = inb(0xa0) << 8 | inb(0x20);
1887 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1888
Ingo Molnar54168ed2008-08-20 09:07:45 +02001889 outb(0x0b,0xa0);
1890 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001892 outb(0x0a,0xa0);
1893 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Thomas Gleixner5619c282009-07-25 18:35:11 +02001895 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1898
1899 v = inb(0x4d1) << 8 | inb(0x4d0);
1900 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1901}
1902
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001903static int __initdata show_lapic = 1;
1904static __init int setup_show_lapic(char *arg)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001905{
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001906 int num = -1;
1907
1908 if (strcmp(arg, "all") == 0) {
1909 show_lapic = CONFIG_NR_CPUS;
1910 } else {
1911 get_option(&arg, &num);
1912 if (num >= 0)
1913 show_lapic = num;
1914 }
1915
1916 return 1;
1917}
1918__setup("show_lapic=", setup_show_lapic);
1919
1920__apicdebuginit(int) print_ICs(void)
1921{
1922 if (apic_verbosity == APIC_QUIET)
1923 return 0;
1924
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001925 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001926
1927 /* don't print out if apic is not there */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001928 if (!cpu_has_apic && !apic_from_smp_config())
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001929 return 0;
1930
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001931 print_local_APICs(show_lapic);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001932 print_IO_APIC();
1933
1934 return 0;
1935}
1936
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001937fs_initcall(print_ICs);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Yinghai Luefa25592008-08-19 20:50:36 -07001940/* Where if anywhere is the i8259 connect in external int mode */
1941static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1942
Ingo Molnar54168ed2008-08-20 09:07:45 +02001943void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001946 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001947 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 unsigned long flags;
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 /*
1951 * The number of IO-APIC IRQ registers (== #pins):
1952 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001953 for (apic = 0; apic < nr_ioapics; apic++) {
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001954 raw_spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001955 reg_01.raw = io_apic_read(apic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001956 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001957 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1958 }
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001959
1960 if (!nr_legacy_irqs)
1961 return;
1962
Ingo Molnar54168ed2008-08-20 09:07:45 +02001963 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001964 int pin;
1965 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001966 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001967 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001968 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001969
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001970 /* If the interrupt line is enabled and in ExtInt mode
1971 * I have found the pin where the i8259 is connected.
1972 */
1973 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1974 ioapic_i8259.apic = apic;
1975 ioapic_i8259.pin = pin;
1976 goto found_i8259;
1977 }
1978 }
1979 }
1980 found_i8259:
1981 /* Look to see what if the MP table has reported the ExtINT */
1982 /* If we could not find the appropriate pin by looking at the ioapic
1983 * the i8259 probably is not connected the ioapic but give the
1984 * mptable a chance anyway.
1985 */
1986 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1987 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1988 /* Trust the MP table if nothing is setup in the hardware */
1989 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1990 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1991 ioapic_i8259.pin = i8259_pin;
1992 ioapic_i8259.apic = i8259_apic;
1993 }
1994 /* Complain if the MP table and the hardware disagree */
1995 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1996 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1997 {
1998 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000
2001 /*
2002 * Do not trust the IO-APIC being empty at bootup
2003 */
2004 clear_IO_APIC();
2005}
2006
2007/*
2008 * Not an __init, needed by the reboot code
2009 */
2010void disable_IO_APIC(void)
2011{
2012 /*
2013 * Clear the IO-APIC before rebooting:
2014 */
2015 clear_IO_APIC();
2016
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002017 if (!nr_legacy_irqs)
2018 return;
2019
Eric W. Biederman650927e2005-06-25 14:57:44 -07002020 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002021 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002022 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002023 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002024 *
2025 * With interrupt-remapping, for now we will use virtual wire A mode,
2026 * as virtual wire B is little complex (need to configure both
2027 * IOAPIC RTE aswell as interrupt-remapping table entry).
2028 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002029 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002030 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002031 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002032
2033 memset(&entry, 0, sizeof(entry));
2034 entry.mask = 0; /* Enabled */
2035 entry.trigger = 0; /* Edge */
2036 entry.irr = 0;
2037 entry.polarity = 0; /* High */
2038 entry.delivery_status = 0;
2039 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002040 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002041 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002042 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002043
2044 /*
2045 * Add it to the IO-APIC irq-routing table:
2046 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002047 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002048 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002049
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002050 /*
2051 * Use virtual wire A mode when interrupt remapping is enabled.
2052 */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04002053 if (cpu_has_apic || apic_from_smp_config())
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04002054 disconnect_bsp_APIC(!intr_remapping_enabled &&
2055 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056}
2057
Ingo Molnar54168ed2008-08-20 09:07:45 +02002058#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059/*
2060 * function to set the IO-APIC physical IDs based on the
2061 * values stored in the MPC table.
2062 *
2063 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2064 */
2065
Thomas Gleixnerde934102009-08-20 09:27:29 +02002066void __init setup_ioapic_ids_from_mpc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
2068 union IO_APIC_reg_00 reg_00;
2069 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002070 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 int i;
2072 unsigned char old_id;
2073 unsigned long flags;
2074
Thomas Gleixnerde934102009-08-20 09:27:29 +02002075 if (acpi_ioapic)
Yinghai Lud49c4282008-06-08 18:31:54 -07002076 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002078 * Don't check I/O APIC IDs for xAPIC systems. They have
2079 * no meaning without the serial APIC bus.
2080 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002081 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2082 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002083 return;
2084 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * This is broken; anything with a real cpu count has to
2086 * circumvent this idiocy regardless.
2087 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002088 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /*
2091 * Set the IOAPIC ID to the value stored in the MPC table.
2092 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002093 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 /* Read the register 0 value */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002096 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002097 reg_00.raw = io_apic_read(apic_id, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002098 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002099
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002100 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002102 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002104 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2106 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002107 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 /*
2111 * Sanity check, is the ID really free? Every APIC in a
2112 * system must have a unique ID or we get lots of nice
2113 * 'stuck on smp_invalidate_needed IPI wait' messages.
2114 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002115 if (apic->check_apicid_used(&phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002116 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002118 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 for (i = 0; i < get_physical_broadcast(); i++)
2120 if (!physid_isset(i, phys_id_present_map))
2121 break;
2122 if (i >= get_physical_broadcast())
2123 panic("Max APIC ID exceeded!\n");
2124 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2125 i);
2126 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002127 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 } else {
2129 physid_mask_t tmp;
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002130 apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 apic_printk(APIC_VERBOSE, "Setting %d in the "
2132 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002133 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2135 }
2136
2137
2138 /*
2139 * We need to adjust the IRQ routing table
2140 * if the ID changed.
2141 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002142 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302144 if (mp_irqs[i].dstapic == old_id)
2145 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002146 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 /*
2149 * Read the right value from the MPC table and
2150 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 apic_printk(APIC_VERBOSE, KERN_INFO
2153 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002154 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002156 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002157 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002158 io_apic_write(apic_id, 0, reg_00.raw);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002159 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 /*
2162 * Sanity check
2163 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002164 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002165 reg_00.raw = io_apic_read(apic_id, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002166 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002167 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 printk("could not set ID!\n");
2169 else
2170 apic_printk(APIC_VERBOSE, " ok.\n");
2171 }
2172}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002173#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002175int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002176
2177static int __init notimercheck(char *s)
2178{
2179 no_timer_check = 1;
2180 return 1;
2181}
2182__setup("no_timer_check", notimercheck);
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184/*
2185 * There is a nasty bug in some older SMP boards, their mptable lies
2186 * about the timer IRQ. We do the following to work around the situation:
2187 *
2188 * - timer IRQ defaults to IO-APIC IRQ
2189 * - if this function detects that timer IRQs are defunct, then we fall
2190 * back to ISA timer IRQs
2191 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002192static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002195 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Zachary Amsden8542b202006-12-07 02:14:09 +01002197 if (no_timer_check)
2198 return 1;
2199
Ingo Molnar4aae0702007-12-18 18:05:58 +01002200 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 local_irq_enable();
2202 /* Let ten ticks pass... */
2203 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002204 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 /*
2207 * Expect a few ticks at least, to be sure some possible
2208 * glue logic does not lock up after one or two first
2209 * ticks in a non-ExtINT mode. Also the local APIC
2210 * might have cached one ExtINT interrupt. Finally, at
2211 * least one tick may be lost due to delays.
2212 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002213
2214 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002215 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return 0;
2218}
2219
2220/*
2221 * In the SMP+IOAPIC case it might happen that there are an unspecified
2222 * number of pending IRQ events unhandled. These cases are very rare,
2223 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2224 * better to do it this way as thus we do not have to be aware of
2225 * 'pending' interrupts in the IRQ path, except at this point.
2226 */
2227/*
2228 * Edge triggered needs to resend any interrupt
2229 * that was delayed but this is now handled in the device
2230 * independent code.
2231 */
2232
2233/*
2234 * Starting up a edge-triggered IO-APIC interrupt is
2235 * nasty - we need to make sure that we get the edge.
2236 * If it is already asserted for some reason, we need
2237 * return 1 to indicate that is was pending.
2238 *
2239 * This is not complete - we should be able to fake
2240 * an edge even if it isn't on the 8259A...
2241 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002242
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002243static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
2245 int was_pending = 0;
2246 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002247 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002249 raw_spin_lock_irqsave(&ioapic_lock, flags);
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002250 if (irq < nr_legacy_irqs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 disable_8259A_irq(irq);
2252 if (i8259A_irq_pending(irq))
2253 was_pending = 1;
2254 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002255 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002256 __unmask_IO_APIC_irq(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002257 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 return was_pending;
2260}
2261
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002262static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002264
2265 struct irq_cfg *cfg = irq_cfg(irq);
2266 unsigned long flags;
2267
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002268 raw_spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002269 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002270 raw_spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002271
2272 return 1;
2273}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002274
2275/*
2276 * Level and edge triggered IO-APIC interrupts need different handling,
2277 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2278 * handled with the level-triggered descriptor, but that one has slightly
2279 * more overhead. Level-triggered interrupts cannot be handled with the
2280 * edge-triggered handler, without risking IRQ storms and other ugly
2281 * races.
2282 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002283
Yinghai Lu497c9a12008-08-19 20:50:28 -07002284#ifdef CONFIG_SMP
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002285void send_cleanup_vector(struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002286{
2287 cpumask_var_t cleanup_mask;
2288
2289 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2290 unsigned int i;
Gary Hadee85abf82009-04-08 14:07:25 -07002291 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2292 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2293 } else {
2294 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002295 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2296 free_cpumask_var(cleanup_mask);
2297 }
2298 cfg->move_in_progress = 0;
2299}
2300
Ingo Molnar44204712009-05-01 19:02:50 +02002301static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002302{
2303 int apic, pin;
2304 struct irq_pin_list *entry;
2305 u8 vector = cfg->vector;
2306
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04002307 for_each_irq_pin(entry, cfg->irq_2_pin) {
Gary Hadee85abf82009-04-08 14:07:25 -07002308 unsigned int reg;
2309
Gary Hadee85abf82009-04-08 14:07:25 -07002310 apic = entry->apic;
2311 pin = entry->pin;
2312 /*
2313 * With interrupt-remapping, destination information comes
2314 * from interrupt-remapping table entry.
2315 */
2316 if (!irq_remapped(irq))
2317 io_apic_write(apic, 0x11 + pin*2, dest);
2318 reg = io_apic_read(apic, 0x10 + pin*2);
2319 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2320 reg |= vector;
2321 io_apic_modify(apic, 0x10 + pin*2, reg);
Gary Hadee85abf82009-04-08 14:07:25 -07002322 }
2323}
2324
2325/*
2326 * Either sets desc->affinity to a valid value, and returns
Suresh Siddha18374d82009-12-17 18:29:46 -08002327 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
Gary Hadee85abf82009-04-08 14:07:25 -07002328 * leaves desc->affinity untouched.
2329 */
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002330unsigned int
Suresh Siddha18374d82009-12-17 18:29:46 -08002331set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask,
2332 unsigned int *dest_id)
Gary Hadee85abf82009-04-08 14:07:25 -07002333{
2334 struct irq_cfg *cfg;
2335 unsigned int irq;
2336
2337 if (!cpumask_intersects(mask, cpu_online_mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002338 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002339
2340 irq = desc->irq;
2341 cfg = desc->chip_data;
2342 if (assign_irq_vector(irq, cfg, mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002343 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002344
Gary Hadee85abf82009-04-08 14:07:25 -07002345 cpumask_copy(desc->affinity, mask);
2346
Suresh Siddha18374d82009-12-17 18:29:46 -08002347 *dest_id = apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2348 return 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002349}
2350
Ingo Molnar44204712009-05-01 19:02:50 +02002351static int
Gary Hadee85abf82009-04-08 14:07:25 -07002352set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2353{
2354 struct irq_cfg *cfg;
2355 unsigned long flags;
2356 unsigned int dest;
2357 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002358 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002359
2360 irq = desc->irq;
2361 cfg = desc->chip_data;
2362
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002363 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddha18374d82009-12-17 18:29:46 -08002364 ret = set_desc_affinity(desc, mask, &dest);
2365 if (!ret) {
Gary Hadee85abf82009-04-08 14:07:25 -07002366 /* Only the high 8 bits are valid. */
2367 dest = SET_APIC_LOGICAL_ID(dest);
2368 __target_IO_APIC_irq(irq, dest, cfg);
2369 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002370 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002371
2372 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002373}
2374
Ingo Molnar44204712009-05-01 19:02:50 +02002375static int
Gary Hadee85abf82009-04-08 14:07:25 -07002376set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2377{
2378 struct irq_desc *desc;
2379
2380 desc = irq_to_desc(irq);
2381
Ingo Molnar44204712009-05-01 19:02:50 +02002382 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002383}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002384
2385#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002386
2387/*
2388 * Migrate the IO-APIC irq in the presence of intr-remapping.
2389 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002390 * For both level and edge triggered, irq migration is a simple atomic
2391 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002393 * For level triggered, we eliminate the io-apic RTE modification (with the
2394 * updated vector information), by using a virtual vector (io-apic pin number).
2395 * Real vector that is used for interrupting cpu will be coming from
2396 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002397 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002398static int
Mike Travise7986732008-12-16 17:33:52 -08002399migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002400{
2401 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002402 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002403 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002404 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002405 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002406
Mike Travis22f65d32008-12-16 17:33:56 -08002407 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002408 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002409
Yinghai Lu3145e942008-12-05 18:58:34 -08002410 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002411 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002412 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002413
Yinghai Lu3145e942008-12-05 18:58:34 -08002414 cfg = desc->chip_data;
2415 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002416 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002417
Ingo Molnardebccb32009-01-28 15:20:18 +01002418 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002419
Ingo Molnar54168ed2008-08-20 09:07:45 +02002420 irte.vector = cfg->vector;
2421 irte.dest_id = IRTE_DEST(dest);
2422
2423 /*
2424 * Modified the IRTE and flushes the Interrupt entry cache.
2425 */
2426 modify_irte(irq, &irte);
2427
Mike Travis22f65d32008-12-16 17:33:56 -08002428 if (cfg->move_in_progress)
2429 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002430
Mike Travis7f7ace02009-01-10 21:58:08 -08002431 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002432
2433 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002434}
2435
Ingo Molnar54168ed2008-08-20 09:07:45 +02002436/*
2437 * Migrates the IRQ destination in the process context.
2438 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002439static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302440 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002441{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002442 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002443}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002444static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302445 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002446{
2447 struct irq_desc *desc = irq_to_desc(irq);
2448
Yinghai Lud5dedd42009-04-27 17:59:21 -07002449 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002450}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002451#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002452static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002453 const struct cpumask *mask)
2454{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002455 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002456}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002457#endif
2458
Yinghai Lu497c9a12008-08-19 20:50:28 -07002459asmlinkage void smp_irq_move_cleanup_interrupt(void)
2460{
2461 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002462
Yinghai Lu497c9a12008-08-19 20:50:28 -07002463 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002464 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002465 irq_enter();
2466
2467 me = smp_processor_id();
2468 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2469 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002470 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002471 struct irq_desc *desc;
2472 struct irq_cfg *cfg;
2473 irq = __get_cpu_var(vector_irq)[vector];
2474
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002475 if (irq == -1)
2476 continue;
2477
Yinghai Lu497c9a12008-08-19 20:50:28 -07002478 desc = irq_to_desc(irq);
2479 if (!desc)
2480 continue;
2481
2482 cfg = irq_cfg(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +01002483 raw_spin_lock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002484
Suresh Siddha7f41c2e2010-01-06 10:56:31 -08002485 /*
2486 * Check if the irq migration is in progress. If so, we
2487 * haven't received the cleanup request yet for this irq.
2488 */
2489 if (cfg->move_in_progress)
2490 goto unlock;
2491
Mike Travis22f65d32008-12-16 17:33:56 -08002492 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002493 goto unlock;
2494
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002495 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2496 /*
2497 * Check if the vector that needs to be cleanedup is
2498 * registered at the cpu's IRR. If so, then this is not
2499 * the best time to clean it up. Lets clean it up in the
2500 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2501 * to myself.
2502 */
2503 if (irr & (1 << (vector % 32))) {
2504 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2505 goto unlock;
2506 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002507 __get_cpu_var(vector_irq)[vector] = -1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002508unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +01002509 raw_spin_unlock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002510 }
2511
2512 irq_exit();
2513}
2514
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002515static void __irq_complete_move(struct irq_desc **descp, unsigned vector)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002516{
Yinghai Lu3145e942008-12-05 18:58:34 -08002517 struct irq_desc *desc = *descp;
2518 struct irq_cfg *cfg = desc->chip_data;
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002519 unsigned me;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002520
Yinghai Lufcef5912009-04-27 17:58:23 -07002521 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002522 return;
2523
Yinghai Lu497c9a12008-08-19 20:50:28 -07002524 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002525
Yinghai Lufcef5912009-04-27 17:58:23 -07002526 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002527 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002528}
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002529
2530static void irq_complete_move(struct irq_desc **descp)
2531{
2532 __irq_complete_move(descp, ~get_irq_regs()->orig_ax);
2533}
2534
2535void irq_force_complete_move(int irq)
2536{
2537 struct irq_desc *desc = irq_to_desc(irq);
2538 struct irq_cfg *cfg = desc->chip_data;
2539
2540 __irq_complete_move(&desc, cfg->vector);
2541}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002542#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002543static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002544#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002545
Yinghai Lu1d025192008-08-19 20:50:34 -07002546static void ack_apic_edge(unsigned int irq)
2547{
Yinghai Lu3145e942008-12-05 18:58:34 -08002548 struct irq_desc *desc = irq_to_desc(irq);
2549
2550 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002551 move_native_irq(irq);
2552 ack_APIC_irq();
2553}
2554
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002555atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002556
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002557/*
2558 * IO-APIC versions below 0x20 don't support EOI register.
2559 * For the record, here is the information about various versions:
2560 * 0Xh 82489DX
2561 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
2562 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
2563 * 30h-FFh Reserved
2564 *
2565 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
2566 * version as 0x2. This is an error with documentation and these ICH chips
2567 * use io-apic's of version 0x20.
2568 *
2569 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
2570 * Otherwise, we simulate the EOI message manually by changing the trigger
2571 * mode to edge and then back to level, with RTE being masked during this.
2572*/
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002573static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2574{
2575 struct irq_pin_list *entry;
2576
2577 for_each_irq_pin(entry, cfg->irq_2_pin) {
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002578 if (mp_ioapics[entry->apic].apicver >= 0x20) {
2579 /*
2580 * Intr-remapping uses pin number as the virtual vector
2581 * in the RTE. Actual vector is programmed in
2582 * intr-remapping table entry. Hence for the io-apic
2583 * EOI we use the pin number.
2584 */
2585 if (irq_remapped(irq))
2586 io_apic_eoi(entry->apic, entry->pin);
2587 else
2588 io_apic_eoi(entry->apic, cfg->vector);
2589 } else {
2590 __mask_and_edge_IO_APIC_irq(entry);
2591 __unmask_and_level_IO_APIC_irq(entry);
2592 }
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002593 }
2594}
2595
2596static void eoi_ioapic_irq(struct irq_desc *desc)
2597{
2598 struct irq_cfg *cfg;
2599 unsigned long flags;
2600 unsigned int irq;
2601
2602 irq = desc->irq;
2603 cfg = desc->chip_data;
2604
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002605 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002606 __eoi_ioapic_irq(irq, cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002607 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002608}
2609
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002610static void ack_apic_level(unsigned int irq)
2611{
Yinghai Lu3145e942008-12-05 18:58:34 -08002612 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002613 unsigned long v;
2614 int i;
Yinghai Lu3145e942008-12-05 18:58:34 -08002615 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002616 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002617
Yinghai Lu3145e942008-12-05 18:58:34 -08002618 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002619#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002620 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002621 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002622 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002623 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002624 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002625#endif
2626
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002627 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002628 * It appears there is an erratum which affects at least version 0x11
2629 * of I/O APIC (that's the 82093AA and cores integrated into various
2630 * chipsets). Under certain conditions a level-triggered interrupt is
2631 * erroneously delivered as edge-triggered one but the respective IRR
2632 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2633 * message but it will never arrive and further interrupts are blocked
2634 * from the source. The exact reason is so far unknown, but the
2635 * phenomenon was observed when two consecutive interrupt requests
2636 * from a given source get delivered to the same CPU and the source is
2637 * temporarily disabled in between.
2638 *
2639 * A workaround is to simulate an EOI message manually. We achieve it
2640 * by setting the trigger mode to edge and then to level when the edge
2641 * trigger mode gets detected in the TMR of a local APIC for a
2642 * level-triggered interrupt. We mask the source for the time of the
2643 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2644 * The idea is from Manfred Spraul. --macro
Suresh Siddha1c839952009-12-01 15:31:17 -08002645 *
2646 * Also in the case when cpu goes offline, fixup_irqs() will forward
2647 * any unhandled interrupt on the offlined cpu to the new cpu
2648 * destination that is handling the corresponding interrupt. This
2649 * interrupt forwarding is done via IPI's. Hence, in this case also
2650 * level-triggered io-apic interrupt will be seen as an edge
2651 * interrupt in the IRR. And we can't rely on the cpu's EOI
2652 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2653 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2654 * supporting EOI register, we do an explicit EOI to clear the
2655 * remote IRR and on IO-APIC's which don't have an EOI register,
2656 * we use the above logic (mask+edge followed by unmask+level) from
2657 * Manfred Spraul to clear the remote IRR.
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002658 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002659 cfg = desc->chip_data;
2660 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002661 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002662
Ingo Molnar54168ed2008-08-20 09:07:45 +02002663 /*
2664 * We must acknowledge the irq before we move it or the acknowledge will
2665 * not propagate properly.
2666 */
2667 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002668
Suresh Siddha1c839952009-12-01 15:31:17 -08002669 /*
2670 * Tail end of clearing remote IRR bit (either by delivering the EOI
2671 * message via io-apic EOI register write or simulating it using
2672 * mask+edge followed by unnask+level logic) manually when the
2673 * level triggered interrupt is seen as the edge triggered interrupt
2674 * at the cpu.
2675 */
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002676 if (!(v & (1 << (i & 0x1f)))) {
2677 atomic_inc(&irq_mis_count);
2678
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002679 eoi_ioapic_irq(desc);
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002680 }
2681
Ingo Molnar54168ed2008-08-20 09:07:45 +02002682 /* Now we can move and renable the irq */
2683 if (unlikely(do_unmask_irq)) {
2684 /* Only migrate the irq if the ack has been received.
2685 *
2686 * On rare occasions the broadcast level triggered ack gets
2687 * delayed going to ioapics, and if we reprogram the
2688 * vector while Remote IRR is still set the irq will never
2689 * fire again.
2690 *
2691 * To prevent this scenario we read the Remote IRR bit
2692 * of the ioapic. This has two effects.
2693 * - On any sane system the read of the ioapic will
2694 * flush writes (and acks) going to the ioapic from
2695 * this cpu.
2696 * - We get to see if the ACK has actually been delivered.
2697 *
2698 * Based on failed experiments of reprogramming the
2699 * ioapic entry from outside of irq context starting
2700 * with masking the ioapic entry and then polling until
2701 * Remote IRR was clear before reprogramming the
2702 * ioapic I don't trust the Remote IRR bit to be
2703 * completey accurate.
2704 *
2705 * However there appears to be no other way to plug
2706 * this race, so if the Remote IRR bit is not
2707 * accurate and is causing problems then it is a hardware bug
2708 * and you can go talk to the chipset vendor about it.
2709 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002710 cfg = desc->chip_data;
2711 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002712 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002713 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002714 }
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002715}
Yinghai Lu1d025192008-08-19 20:50:34 -07002716
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002717#ifdef CONFIG_INTR_REMAP
2718static void ir_ack_apic_edge(unsigned int irq)
2719{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002720 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002721}
2722
2723static void ir_ack_apic_level(unsigned int irq)
2724{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002725 struct irq_desc *desc = irq_to_desc(irq);
2726
2727 ack_APIC_irq();
2728 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002729}
2730#endif /* CONFIG_INTR_REMAP */
2731
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002732static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002733 .name = "IO-APIC",
2734 .startup = startup_ioapic_irq,
2735 .mask = mask_IO_APIC_irq,
2736 .unmask = unmask_IO_APIC_irq,
2737 .ack = ack_apic_edge,
2738 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002739#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002740 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002741#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002742 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743};
2744
Ingo Molnar54168ed2008-08-20 09:07:45 +02002745static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002746 .name = "IR-IO-APIC",
2747 .startup = startup_ioapic_irq,
2748 .mask = mask_IO_APIC_irq,
2749 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302750#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002751 .ack = ir_ack_apic_edge,
2752 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002753#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002754 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002755#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302756#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002757 .retrigger = ioapic_retrigger_irq,
2758};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760static inline void init_IO_APIC_traps(void)
2761{
2762 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002763 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002764 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 /*
2767 * NOTE! The local APIC isn't very good at handling
2768 * multiple interrupts at the same interrupt level.
2769 * As the interrupt level is determined by taking the
2770 * vector number and shifting that right by 4, we
2771 * want to spread these out a bit so that they don't
2772 * all fall in the same interrupt level.
2773 *
2774 * Also, we've got to be careful not to trash gate
2775 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2776 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002777 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002778 cfg = desc->chip_data;
2779 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 /*
2781 * Hmm.. We don't have an entry for this,
2782 * so default to an old-fashioned 8259
2783 * interrupt if we can..
2784 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002785 if (irq < nr_legacy_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 make_8259A_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002787 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002789 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
2791 }
2792}
2793
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002794/*
2795 * The local APIC irq-chip implementation:
2796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002798static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
2800 unsigned long v;
2801
2802 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002803 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002806static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002808 unsigned long v;
2809
2810 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002811 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
Yinghai Lu3145e942008-12-05 18:58:34 -08002814static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002815{
2816 ack_APIC_irq();
2817}
2818
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002819static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002820 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002821 .mask = mask_lapic_irq,
2822 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002823 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824};
2825
Yinghai Lu3145e942008-12-05 18:58:34 -08002826static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002827{
Yinghai Lu08678b02008-08-19 20:50:05 -07002828 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002829 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2830 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002831}
2832
Jan Beuliche9427102008-01-30 13:31:24 +01002833static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
2835 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002836 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 * We put the 8259A master into AEOI mode and
2838 * unmask on all local APICs LVT0 as NMI.
2839 *
2840 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2841 * is from Maciej W. Rozycki - so we do not have to EOI from
2842 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2845
Jan Beuliche9427102008-01-30 13:31:24 +01002846 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 apic_printk(APIC_VERBOSE, " done.\n");
2849}
2850
2851/*
2852 * This looks a bit hackish but it's about the only one way of sending
2853 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2854 * not support the ExtINT mode, unfortunately. We need to send these
2855 * cycles as some i82489DX-based boards have glue logic that keeps the
2856 * 8259A interrupt line asserted until INTA. --macro
2857 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002858static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002860 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 struct IO_APIC_route_entry entry0, entry1;
2862 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002864 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002865 if (pin == -1) {
2866 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002868 }
2869 apic = find_isa_irq_apic(8, mp_INT);
2870 if (apic == -1) {
2871 WARN_ON_ONCE(1);
2872 return;
2873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Andi Kleencf4c6a22006-09-26 10:52:30 +02002875 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002876 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
2878 memset(&entry1, 0, sizeof(entry1));
2879
2880 entry1.dest_mode = 0; /* physical delivery */
2881 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002882 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 entry1.delivery_mode = dest_ExtINT;
2884 entry1.polarity = entry0.polarity;
2885 entry1.trigger = 0;
2886 entry1.vector = 0;
2887
Andi Kleencf4c6a22006-09-26 10:52:30 +02002888 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 save_control = CMOS_READ(RTC_CONTROL);
2891 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2892 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2893 RTC_FREQ_SELECT);
2894 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2895
2896 i = 100;
2897 while (i-- > 0) {
2898 mdelay(10);
2899 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2900 i -= 10;
2901 }
2902
2903 CMOS_WRITE(save_control, RTC_CONTROL);
2904 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002905 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Andi Kleencf4c6a22006-09-26 10:52:30 +02002907 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908}
2909
Yinghai Luefa25592008-08-19 20:50:36 -07002910static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002911/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002912static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002913{
2914 disable_timer_pin_1 = 1;
2915 return 0;
2916}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002917early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002918
2919int timer_through_8259 __initdata;
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921/*
2922 * This code may look a bit paranoid, but it's supposed to cooperate with
2923 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2924 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2925 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002926 *
2927 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002929static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
Yinghai Lu3145e942008-12-05 18:58:34 -08002931 struct irq_desc *desc = irq_to_desc(0);
2932 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002933 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002934 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002935 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002936 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002937
2938 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 /*
2941 * get/set the timer IRQ vector:
2942 */
2943 disable_8259A_irq(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002944 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002947 * As IRQ0 is to be enabled in the 8259A, the virtual
2948 * wire has to be disabled in the local APIC. Also
2949 * timer interrupts need to be acknowledged manually in
2950 * the 8259A for the i82489DX when using the NMI
2951 * watchdog as that APIC treats NMIs as level-triggered.
2952 * The AEOI mode will finish them in the 8259A
2953 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002955 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002957#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002958 {
2959 unsigned int ver;
2960
2961 ver = apic_read(APIC_LVR);
2962 ver = GET_APIC_VERSION(ver);
2963 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2964 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002965#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002967 pin1 = find_isa_irq_pin(0, mp_INT);
2968 apic1 = find_isa_irq_apic(0, mp_INT);
2969 pin2 = ioapic_i8259.pin;
2970 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002972 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2973 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002974 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002976 /*
2977 * Some BIOS writers are clueless and report the ExtINTA
2978 * I/O APIC input from the cascaded 8259A as the timer
2979 * interrupt input. So just in case, if only one pin
2980 * was found above, try it both directly and through the
2981 * 8259A.
2982 */
2983 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002984 if (intr_remapping_enabled)
2985 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002986 pin1 = pin2;
2987 apic1 = apic2;
2988 no_pin1 = 1;
2989 } else if (pin2 == -1) {
2990 pin2 = pin1;
2991 apic2 = apic1;
2992 }
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 if (pin1 != -1) {
2995 /*
2996 * Ok, does IRQ0 through the IOAPIC work?
2997 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002998 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002999 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003000 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08003001 } else {
3002 /* for edge trigger, setup_IO_APIC_irq already
3003 * leave it unmasked.
3004 * so only need to unmask if it is level-trigger
3005 * do we really have level trigger timer?
3006 */
3007 int idx;
3008 idx = find_irq_entry(apic1, pin1, mp_INT);
3009 if (idx != -1 && irq_trigger(idx))
3010 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01003011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 if (timer_irq_works()) {
3013 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 setup_nmi();
3015 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02003017 if (disable_timer_pin_1 > 0)
3018 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01003019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003021 if (intr_remapping_enabled)
3022 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08003023 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08003024 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01003025 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003026 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
3027 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003029 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
3030 "(IRQ0) through the 8259A ...\n");
3031 apic_printk(APIC_QUIET, KERN_INFO
3032 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 /*
3034 * legacy devices should be connected to IO APIC #0
3035 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003036 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003037 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01003038 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003040 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01003041 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01003043 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01003045 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01003047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 }
3049 /*
3050 * Cleanup, just in case ...
3051 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08003052 local_irq_disable();
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01003053 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08003054 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003055 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003059 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
3060 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04003061 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003063#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01003064 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003065#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003067 apic_printk(APIC_QUIET, KERN_INFO
3068 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Yinghai Lu3145e942008-12-05 18:58:34 -08003070 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003071 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 enable_8259A_irq(0);
3073
3074 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003075 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003078 local_irq_disable();
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01003079 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003080 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003081 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003083 apic_printk(APIC_QUIET, KERN_INFO
3084 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 init_8259A(0);
3087 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003088 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
3090 unlock_ExtINT_logic();
3091
3092 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003093 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003094 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003096 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003097 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003099 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003100out:
3101 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
3104/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003105 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3106 * to devices. However there may be an I/O APIC pin available for
3107 * this interrupt regardless. The pin may be left unconnected, but
3108 * typically it will be reused as an ExtINT cascade interrupt for
3109 * the master 8259A. In the MPS case such a pin will normally be
3110 * reported as an ExtINT interrupt in the MP table. With ACPI
3111 * there is no provision for ExtINT interrupts, and in the absence
3112 * of an override it would be treated as an ordinary ISA I/O APIC
3113 * interrupt, that is edge-triggered and unmasked by default. We
3114 * used to do this, but it caused problems on some systems because
3115 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3116 * the same ExtINT cascade interrupt to drive the local APIC of the
3117 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3118 * the I/O APIC in all cases now. No actual device should request
3119 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003121#define PIC_IRQS (1UL << PIC_CASCADE_IR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123void __init setup_IO_APIC(void)
3124{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003125
Ingo Molnar54168ed2008-08-20 09:07:45 +02003126 /*
3127 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3128 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003129 io_apic_irqs = nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Ingo Molnar54168ed2008-08-20 09:07:45 +02003131 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003132 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003133 * Set up IO-APIC IRQ routing.
3134 */
Thomas Gleixnerde934102009-08-20 09:27:29 +02003135 x86_init.mpparse.setup_ioapic_ids();
3136
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 sync_Arb_IDs();
3138 setup_IO_APIC_irqs();
3139 init_IO_APIC_traps();
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003140 if (nr_legacy_irqs)
3141 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142}
3143
3144/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003145 * Called after all the initialization is done. If we didnt find any
3146 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149static int __init io_apic_bug_finalize(void)
3150{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003151 if (sis_apic_bug == -1)
3152 sis_apic_bug = 0;
3153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
3155
3156late_initcall(io_apic_bug_finalize);
3157
3158struct sysfs_ioapic_data {
3159 struct sys_device dev;
3160 struct IO_APIC_route_entry entry[0];
3161};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003162static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Pavel Machek438510f2005-04-16 15:25:24 -07003164static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165{
3166 struct IO_APIC_route_entry *entry;
3167 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 data = container_of(dev, struct sysfs_ioapic_data, dev);
3171 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003172 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3173 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 return 0;
3176}
3177
3178static int ioapic_resume(struct sys_device *dev)
3179{
3180 struct IO_APIC_route_entry *entry;
3181 struct sysfs_ioapic_data *data;
3182 unsigned long flags;
3183 union IO_APIC_reg_00 reg_00;
3184 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 data = container_of(dev, struct sysfs_ioapic_data, dev);
3187 entry = data->entry;
3188
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003189 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303191 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3192 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 io_apic_write(dev->id, 0, reg_00.raw);
3194 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003195 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003196 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003197 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
3199 return 0;
3200}
3201
3202static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003203 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 .suspend = ioapic_suspend,
3205 .resume = ioapic_resume,
3206};
3207
3208static int __init ioapic_init_sysfs(void)
3209{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003210 struct sys_device * dev;
3211 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 error = sysdev_class_register(&ioapic_sysdev_class);
3214 if (error)
3215 return error;
3216
Ingo Molnar54168ed2008-08-20 09:07:45 +02003217 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003218 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003220 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 if (!mp_ioapic_data[i]) {
3222 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3223 continue;
3224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003226 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 dev->cls = &ioapic_sysdev_class;
3228 error = sysdev_register(dev);
3229 if (error) {
3230 kfree(mp_ioapic_data[i]);
3231 mp_ioapic_data[i] = NULL;
3232 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3233 continue;
3234 }
3235 }
3236
3237 return 0;
3238}
3239
3240device_initcall(ioapic_init_sysfs);
3241
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003242/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003243 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003244 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003245unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003246{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003247 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003248 unsigned int irq;
3249 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003250 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003251 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003252 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003253
3254 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003255 if (irq_want < nr_irqs_gsi)
3256 irq_want = nr_irqs_gsi;
3257
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003258 raw_spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003259 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003260 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003261 if (!desc_new) {
3262 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003263 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003264 }
3265 cfg_new = desc_new->chip_data;
3266
3267 if (cfg_new->vector != 0)
3268 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003269
Yinghai Lu15e957d2009-04-30 01:17:50 -07003270 desc_new = move_irq_desc(desc_new, node);
Yinghai Lu37ef2a32009-11-21 00:23:37 -08003271 cfg_new = desc_new->chip_data;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003272
Ingo Molnarfe402e12009-01-28 04:32:51 +01003273 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003274 irq = new;
3275 break;
3276 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003277 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003278
Brandon Phiilpsced5b692010-02-10 01:20:06 -08003279 if (irq > 0)
3280 dynamic_irq_init_keep_chip_data(irq);
3281
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003282 return irq;
3283}
3284
Yinghai Lu199751d2008-08-19 20:50:27 -07003285int create_irq(void)
3286{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003287 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003288 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003289 int irq;
3290
Yinghai Lube5d5352008-12-05 18:58:33 -08003291 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003292 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003293
3294 if (irq == 0)
3295 irq = -1;
3296
3297 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003298}
3299
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003300void destroy_irq(unsigned int irq)
3301{
3302 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003303
Brandon Phiilpsced5b692010-02-10 01:20:06 -08003304 dynamic_irq_cleanup_keep_chip_data(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003305
Ingo Molnar54168ed2008-08-20 09:07:45 +02003306 free_irte(irq);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003307 raw_spin_lock_irqsave(&vector_lock, flags);
Brandon Philipseb5b3792010-02-07 13:02:50 -08003308 __clear_irq_vector(irq, get_irq_chip_data(irq));
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003309 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003310}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003311
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003312/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003313 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003314 */
3315#ifdef CONFIG_PCI_MSI
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003316static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3317 struct msi_msg *msg, u8 hpet_id)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003318{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003319 struct irq_cfg *cfg;
3320 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003321 unsigned dest;
3322
Jan Beulichf1182632009-01-14 12:27:35 +00003323 if (disable_apic)
3324 return -ENXIO;
3325
Yinghai Lu3145e942008-12-05 18:58:34 -08003326 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003327 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003328 if (err)
3329 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003330
Ingo Molnardebccb32009-01-28 15:20:18 +01003331 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003332
Ingo Molnar54168ed2008-08-20 09:07:45 +02003333 if (irq_remapped(irq)) {
3334 struct irte irte;
3335 int ir_index;
3336 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003337
Ingo Molnar54168ed2008-08-20 09:07:45 +02003338 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3339 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003340
Ingo Molnar54168ed2008-08-20 09:07:45 +02003341 memset (&irte, 0, sizeof(irte));
3342
3343 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003344 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003345 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003346 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003347 irte.vector = cfg->vector;
3348 irte.dest_id = IRTE_DEST(dest);
3349
Weidong Hanf007e992009-05-23 00:41:15 +08003350 /* Set source-id of interrupt request */
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003351 if (pdev)
3352 set_msi_sid(&irte, pdev);
3353 else
3354 set_hpet_sid(&irte, hpet_id);
Weidong Hanf007e992009-05-23 00:41:15 +08003355
Ingo Molnar54168ed2008-08-20 09:07:45 +02003356 modify_irte(irq, &irte);
3357
3358 msg->address_hi = MSI_ADDR_BASE_HI;
3359 msg->data = sub_handle;
3360 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3361 MSI_ADDR_IR_SHV |
3362 MSI_ADDR_IR_INDEX1(ir_index) |
3363 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003364 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003365 if (x2apic_enabled())
3366 msg->address_hi = MSI_ADDR_BASE_HI |
3367 MSI_ADDR_EXT_DEST_ID(dest);
3368 else
3369 msg->address_hi = MSI_ADDR_BASE_HI;
3370
Ingo Molnar54168ed2008-08-20 09:07:45 +02003371 msg->address_lo =
3372 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003373 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003374 MSI_ADDR_DEST_MODE_PHYSICAL:
3375 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003376 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003377 MSI_ADDR_REDIRECTION_CPU:
3378 MSI_ADDR_REDIRECTION_LOWPRI) |
3379 MSI_ADDR_DEST_ID(dest);
3380
3381 msg->data =
3382 MSI_DATA_TRIGGER_EDGE |
3383 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003384 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003385 MSI_DATA_DELIVERY_FIXED:
3386 MSI_DATA_DELIVERY_LOWPRI) |
3387 MSI_DATA_VECTOR(cfg->vector);
3388 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003389 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003390}
3391
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003392#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003393static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003394{
Yinghai Lu3145e942008-12-05 18:58:34 -08003395 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003396 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003397 struct msi_msg msg;
3398 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003399
Suresh Siddha18374d82009-12-17 18:29:46 -08003400 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003401 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003402
Yinghai Lu3145e942008-12-05 18:58:34 -08003403 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003404
Yinghai Lu3145e942008-12-05 18:58:34 -08003405 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003406
3407 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003408 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003409 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3410 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3411
Yinghai Lu3145e942008-12-05 18:58:34 -08003412 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003413
3414 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003415}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003416#ifdef CONFIG_INTR_REMAP
3417/*
3418 * Migrate the MSI irq to another cpumask. This migration is
3419 * done in the process context using interrupt-remapping hardware.
3420 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003421static int
Mike Travise7986732008-12-16 17:33:52 -08003422ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003423{
Yinghai Lu3145e942008-12-05 18:58:34 -08003424 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003425 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003426 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003427 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003428
3429 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003430 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003431
Suresh Siddha18374d82009-12-17 18:29:46 -08003432 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003433 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003434
Ingo Molnar54168ed2008-08-20 09:07:45 +02003435 irte.vector = cfg->vector;
3436 irte.dest_id = IRTE_DEST(dest);
3437
3438 /*
3439 * atomically update the IRTE with the new destination and vector.
3440 */
3441 modify_irte(irq, &irte);
3442
3443 /*
3444 * After this point, all the interrupts will start arriving
3445 * at the new destination. So, time to cleanup the previous
3446 * vector allocation.
3447 */
Mike Travis22f65d32008-12-16 17:33:56 -08003448 if (cfg->move_in_progress)
3449 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003450
3451 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003452}
Yinghai Lu3145e942008-12-05 18:58:34 -08003453
Ingo Molnar54168ed2008-08-20 09:07:45 +02003454#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003455#endif /* CONFIG_SMP */
3456
3457/*
3458 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3459 * which implement the MSI or MSI-X Capability Structure.
3460 */
3461static struct irq_chip msi_chip = {
3462 .name = "PCI-MSI",
3463 .unmask = unmask_msi_irq,
3464 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003465 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003466#ifdef CONFIG_SMP
3467 .set_affinity = set_msi_irq_affinity,
3468#endif
3469 .retrigger = ioapic_retrigger_irq,
3470};
3471
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472static struct irq_chip msi_ir_chip = {
3473 .name = "IR-PCI-MSI",
3474 .unmask = unmask_msi_irq,
3475 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303476#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003477 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003478#ifdef CONFIG_SMP
3479 .set_affinity = ir_set_msi_irq_affinity,
3480#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303481#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003482 .retrigger = ioapic_retrigger_irq,
3483};
3484
3485/*
3486 * Map the PCI dev to the corresponding remapping hardware unit
3487 * and allocate 'nvec' consecutive interrupt-remapping table entries
3488 * in it.
3489 */
3490static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3491{
3492 struct intel_iommu *iommu;
3493 int index;
3494
3495 iommu = map_dev_to_ir(dev);
3496 if (!iommu) {
3497 printk(KERN_ERR
3498 "Unable to map PCI %s to iommu\n", pci_name(dev));
3499 return -ENOENT;
3500 }
3501
3502 index = alloc_irte(iommu, irq, nvec);
3503 if (index < 0) {
3504 printk(KERN_ERR
3505 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003506 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003507 return -ENOSPC;
3508 }
3509 return index;
3510}
Yinghai Lu1d025192008-08-19 20:50:34 -07003511
Yinghai Lu3145e942008-12-05 18:58:34 -08003512static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003513{
3514 int ret;
3515 struct msi_msg msg;
3516
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003517 ret = msi_compose_msg(dev, irq, &msg, -1);
Yinghai Lu1d025192008-08-19 20:50:34 -07003518 if (ret < 0)
3519 return ret;
3520
Yinghai Lu3145e942008-12-05 18:58:34 -08003521 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003522 write_msi_msg(irq, &msg);
3523
Ingo Molnar54168ed2008-08-20 09:07:45 +02003524 if (irq_remapped(irq)) {
3525 struct irq_desc *desc = irq_to_desc(irq);
3526 /*
3527 * irq migration in process context
3528 */
3529 desc->status |= IRQ_MOVE_PCNTXT;
3530 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3531 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003532 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003533
Yinghai Luc81bba42008-09-25 11:53:11 -07003534 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3535
Yinghai Lu1d025192008-08-19 20:50:34 -07003536 return 0;
3537}
3538
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003539int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3540{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003541 unsigned int irq;
3542 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003543 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003544 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003545 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003546 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003547 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003548
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003549 /* x86 doesn't support multiple MSI yet */
3550 if (type == PCI_CAP_ID_MSI && nvec > 1)
3551 return 1;
3552
Yinghai Lud047f53a2009-04-27 18:02:23 -07003553 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003554 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003555 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003556 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003557 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003558 if (irq == 0)
3559 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003560 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003561 if (!intr_remapping_enabled)
3562 goto no_ir;
3563
3564 if (!sub_handle) {
3565 /*
3566 * allocate the consecutive block of IRTE's
3567 * for 'nvec'
3568 */
3569 index = msi_alloc_irte(dev, irq, nvec);
3570 if (index < 0) {
3571 ret = index;
3572 goto error;
3573 }
3574 } else {
3575 iommu = map_dev_to_ir(dev);
3576 if (!iommu) {
3577 ret = -ENOENT;
3578 goto error;
3579 }
3580 /*
3581 * setup the mapping between the irq and the IRTE
3582 * base index, the sub_handle pointing to the
3583 * appropriate interrupt remap table entry.
3584 */
3585 set_irte_irq(irq, iommu, index, sub_handle);
3586 }
3587no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003588 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003589 if (ret < 0)
3590 goto error;
3591 sub_handle++;
3592 }
3593 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003594
3595error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003596 destroy_irq(irq);
3597 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003598}
3599
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003600void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003601{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003602 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003603}
3604
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003605#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003606#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003607static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003608{
Yinghai Lu3145e942008-12-05 18:58:34 -08003609 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003610 struct irq_cfg *cfg;
3611 struct msi_msg msg;
3612 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003613
Suresh Siddha18374d82009-12-17 18:29:46 -08003614 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003615 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003616
Yinghai Lu3145e942008-12-05 18:58:34 -08003617 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003618
3619 dmar_msi_read(irq, &msg);
3620
3621 msg.data &= ~MSI_DATA_VECTOR_MASK;
3622 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3623 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3624 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3625
3626 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003627
3628 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003629}
Yinghai Lu3145e942008-12-05 18:58:34 -08003630
Ingo Molnar54168ed2008-08-20 09:07:45 +02003631#endif /* CONFIG_SMP */
3632
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003633static struct irq_chip dmar_msi_type = {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003634 .name = "DMAR_MSI",
3635 .unmask = dmar_msi_unmask,
3636 .mask = dmar_msi_mask,
3637 .ack = ack_apic_edge,
3638#ifdef CONFIG_SMP
3639 .set_affinity = dmar_msi_set_affinity,
3640#endif
3641 .retrigger = ioapic_retrigger_irq,
3642};
3643
3644int arch_setup_dmar_msi(unsigned int irq)
3645{
3646 int ret;
3647 struct msi_msg msg;
3648
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003649 ret = msi_compose_msg(NULL, irq, &msg, -1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003650 if (ret < 0)
3651 return ret;
3652 dmar_msi_write(irq, &msg);
3653 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3654 "edge");
3655 return 0;
3656}
3657#endif
3658
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003659#ifdef CONFIG_HPET_TIMER
3660
3661#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003662static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003663{
Yinghai Lu3145e942008-12-05 18:58:34 -08003664 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003665 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003666 struct msi_msg msg;
3667 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003668
Suresh Siddha18374d82009-12-17 18:29:46 -08003669 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003670 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003671
Yinghai Lu3145e942008-12-05 18:58:34 -08003672 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003673
3674 hpet_msi_read(irq, &msg);
3675
3676 msg.data &= ~MSI_DATA_VECTOR_MASK;
3677 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3678 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3679 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3680
3681 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003682
3683 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003684}
Yinghai Lu3145e942008-12-05 18:58:34 -08003685
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003686#endif /* CONFIG_SMP */
3687
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003688static struct irq_chip ir_hpet_msi_type = {
3689 .name = "IR-HPET_MSI",
3690 .unmask = hpet_msi_unmask,
3691 .mask = hpet_msi_mask,
3692#ifdef CONFIG_INTR_REMAP
3693 .ack = ir_ack_apic_edge,
3694#ifdef CONFIG_SMP
3695 .set_affinity = ir_set_msi_irq_affinity,
3696#endif
3697#endif
3698 .retrigger = ioapic_retrigger_irq,
3699};
3700
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003701static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003702 .name = "HPET_MSI",
3703 .unmask = hpet_msi_unmask,
3704 .mask = hpet_msi_mask,
3705 .ack = ack_apic_edge,
3706#ifdef CONFIG_SMP
3707 .set_affinity = hpet_msi_set_affinity,
3708#endif
3709 .retrigger = ioapic_retrigger_irq,
3710};
3711
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003712int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003713{
3714 int ret;
3715 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003716 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003717
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003718 if (intr_remapping_enabled) {
3719 struct intel_iommu *iommu = map_hpet_to_ir(id);
3720 int index;
3721
3722 if (!iommu)
3723 return -1;
3724
3725 index = alloc_irte(iommu, irq, 1);
3726 if (index < 0)
3727 return -1;
3728 }
3729
3730 ret = msi_compose_msg(NULL, irq, &msg, id);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003731 if (ret < 0)
3732 return ret;
3733
3734 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003735 desc->status |= IRQ_MOVE_PCNTXT;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003736 if (irq_remapped(irq))
3737 set_irq_chip_and_handler_name(irq, &ir_hpet_msi_type,
3738 handle_edge_irq, "edge");
3739 else
3740 set_irq_chip_and_handler_name(irq, &hpet_msi_type,
3741 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003742
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003743 return 0;
3744}
3745#endif
3746
Ingo Molnar54168ed2008-08-20 09:07:45 +02003747#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003748/*
3749 * Hypertransport interrupt support
3750 */
3751#ifdef CONFIG_HT_IRQ
3752
3753#ifdef CONFIG_SMP
3754
Yinghai Lu497c9a12008-08-19 20:50:28 -07003755static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003756{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003757 struct ht_irq_msg msg;
3758 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003759
Yinghai Lu497c9a12008-08-19 20:50:28 -07003760 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003761 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003762
Yinghai Lu497c9a12008-08-19 20:50:28 -07003763 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003764 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003765
Eric W. Biedermanec683072006-11-08 17:44:57 -08003766 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003767}
3768
Yinghai Lud5dedd42009-04-27 17:59:21 -07003769static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003770{
Yinghai Lu3145e942008-12-05 18:58:34 -08003771 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003772 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003773 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003774
Suresh Siddha18374d82009-12-17 18:29:46 -08003775 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003776 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003777
Yinghai Lu3145e942008-12-05 18:58:34 -08003778 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003779
Yinghai Lu497c9a12008-08-19 20:50:28 -07003780 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003781
3782 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003783}
Yinghai Lu3145e942008-12-05 18:58:34 -08003784
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003785#endif
3786
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003787static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003788 .name = "PCI-HT",
3789 .mask = mask_ht_irq,
3790 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003791 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003792#ifdef CONFIG_SMP
3793 .set_affinity = set_ht_irq_affinity,
3794#endif
3795 .retrigger = ioapic_retrigger_irq,
3796};
3797
3798int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3799{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003800 struct irq_cfg *cfg;
3801 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003802
Jan Beulichf1182632009-01-14 12:27:35 +00003803 if (disable_apic)
3804 return -ENXIO;
3805
Yinghai Lu3145e942008-12-05 18:58:34 -08003806 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003807 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003808 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003809 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003810 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003811
Ingo Molnardebccb32009-01-28 15:20:18 +01003812 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3813 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003814
Eric W. Biedermanec683072006-11-08 17:44:57 -08003815 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003816
Eric W. Biedermanec683072006-11-08 17:44:57 -08003817 msg.address_lo =
3818 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003819 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003820 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003821 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003822 HT_IRQ_LOW_DM_PHYSICAL :
3823 HT_IRQ_LOW_DM_LOGICAL) |
3824 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003825 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003826 HT_IRQ_LOW_MT_FIXED :
3827 HT_IRQ_LOW_MT_ARBITRATED) |
3828 HT_IRQ_LOW_IRQ_MASKED;
3829
Eric W. Biedermanec683072006-11-08 17:44:57 -08003830 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003831
Ingo Molnara460e742006-10-17 00:10:03 -07003832 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3833 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003834
3835 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003836 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003837 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003838}
3839#endif /* CONFIG_HT_IRQ */
3840
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003841int __init io_apic_get_redir_entries (int ioapic)
3842{
3843 union IO_APIC_reg_01 reg_01;
3844 unsigned long flags;
3845
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003846 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003847 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003848 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003849
3850 return reg_01.bits.entries;
3851}
3852
Yinghai Lube5d5352008-12-05 18:58:33 -08003853void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003854{
Yinghai Lube5d5352008-12-05 18:58:33 -08003855 int nr = 0;
3856
Yinghai Lucc6c5002009-02-08 16:18:03 -08003857 nr = acpi_probe_gsi();
3858 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003859 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003860 } else {
3861 /* for acpi=off or acpi is not compiled in */
3862 int idx;
3863
3864 nr = 0;
3865 for (idx = 0; idx < nr_ioapics; idx++)
3866 nr += io_apic_get_redir_entries(idx) + 1;
3867
3868 if (nr > nr_irqs_gsi)
3869 nr_irqs_gsi = nr;
3870 }
3871
3872 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003873}
3874
Ingo Molnar21c2fd92010-02-26 11:17:16 +01003875#ifdef CONFIG_SPARSE_IRQ
3876int __init arch_probe_nr_irqs(void)
3877{
3878 int nr;
3879
3880 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3881 nr_irqs = NR_VECTORS * nr_cpu_ids;
3882
3883 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3884#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3885 /*
3886 * for MSI and HT dyn irq
3887 */
3888 nr += nr_irqs_gsi * 16;
3889#endif
3890 if (nr < nr_irqs)
3891 nr_irqs = nr;
3892
3893 return 0;
3894}
3895#endif
3896
Yinghai Lue5198072009-05-15 13:05:16 -07003897static int __io_apic_set_pci_routing(struct device *dev, int irq,
3898 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003899{
3900 struct irq_desc *desc;
3901 struct irq_cfg *cfg;
3902 int node;
Yinghai Lue5198072009-05-15 13:05:16 -07003903 int ioapic, pin;
3904 int trigger, polarity;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003905
Yinghai Lue5198072009-05-15 13:05:16 -07003906 ioapic = irq_attr->ioapic;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003907 if (!IO_APIC_IRQ(irq)) {
3908 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3909 ioapic);
3910 return -EINVAL;
3911 }
3912
3913 if (dev)
3914 node = dev_to_node(dev);
3915 else
3916 node = cpu_to_node(boot_cpu_id);
3917
3918 desc = irq_to_desc_alloc_node(irq, node);
3919 if (!desc) {
3920 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3921 return 0;
3922 }
3923
Yinghai Lue5198072009-05-15 13:05:16 -07003924 pin = irq_attr->ioapic_pin;
3925 trigger = irq_attr->trigger;
3926 polarity = irq_attr->polarity;
3927
Yinghai Lu5ef21832009-05-06 10:08:50 -07003928 /*
3929 * IRQs < 16 are already in the irq_2_pin[] map
3930 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003931 if (irq >= nr_legacy_irqs) {
Yinghai Lu5ef21832009-05-06 10:08:50 -07003932 cfg = desc->chip_data;
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +04003933 if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) {
3934 printk(KERN_INFO "can not add pin %d for irq %d\n",
3935 pin, irq);
3936 return 0;
3937 }
Yinghai Lu5ef21832009-05-06 10:08:50 -07003938 }
3939
Yinghai Lue5198072009-05-15 13:05:16 -07003940 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003941
3942 return 0;
3943}
3944
Yinghai Lue5198072009-05-15 13:05:16 -07003945int io_apic_set_pci_routing(struct device *dev, int irq,
3946 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003947{
Yinghai Lue5198072009-05-15 13:05:16 -07003948 int ioapic, pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003949 /*
3950 * Avoid pin reprogramming. PRTs typically include entries
3951 * with redundant pin->gsi mappings (but unique PCI devices);
3952 * we only program the IOAPIC on the first.
3953 */
Yinghai Lue5198072009-05-15 13:05:16 -07003954 ioapic = irq_attr->ioapic;
3955 pin = irq_attr->ioapic_pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003956 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3957 pr_debug("Pin %d-%d already programmed\n",
3958 mp_ioapics[ioapic].apicid, pin);
3959 return 0;
3960 }
3961 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3962
Yinghai Lue5198072009-05-15 13:05:16 -07003963 return __io_apic_set_pci_routing(dev, irq, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003964}
3965
Feng Tang2a4ab642009-07-07 23:01:15 -04003966u8 __init io_apic_unique_id(u8 id)
3967{
3968#ifdef CONFIG_X86_32
3969 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3970 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3971 return io_apic_get_unique_id(nr_ioapics, id);
3972 else
3973 return id;
3974#else
3975 int i;
3976 DECLARE_BITMAP(used, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Feng Tang2a4ab642009-07-07 23:01:15 -04003978 bitmap_zero(used, 256);
3979 for (i = 0; i < nr_ioapics; i++) {
3980 struct mpc_ioapic *ia = &mp_ioapics[i];
3981 __set_bit(ia->apicid, used);
3982 }
3983 if (!test_bit(id, used))
3984 return id;
3985 return find_first_zero_bit(used, 256);
3986#endif
3987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
Ingo Molnar54168ed2008-08-20 09:07:45 +02003989#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003990int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
3992 union IO_APIC_reg_00 reg_00;
3993 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3994 physid_mask_t tmp;
3995 unsigned long flags;
3996 int i = 0;
3997
3998 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003999 * The P4 platform supports up to 256 APIC IDs on two separate APIC
4000 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
4004 * advantage of new APIC bus architecture.
4005 */
4006
4007 if (physids_empty(apic_id_map))
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004008 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004010 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004012 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014 if (apic_id >= get_physical_broadcast()) {
4015 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
4016 "%d\n", ioapic, apic_id, reg_00.bits.ID);
4017 apic_id = reg_00.bits.ID;
4018 }
4019
4020 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004021 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 * 'stuck on smp_invalidate_needed IPI wait' messages.
4023 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004024 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
4026 for (i = 0; i < get_physical_broadcast(); i++) {
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004027 if (!apic->check_apicid_used(&apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 break;
4029 }
4030
4031 if (i == get_physical_broadcast())
4032 panic("Max apic_id exceeded!\n");
4033
4034 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
4035 "trying %d\n", ioapic, apic_id, i);
4036
4037 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004040 apic->apicid_to_cpu_present(apic_id, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 physids_or(apic_id_map, apic_id_map, tmp);
4042
4043 if (reg_00.bits.ID != apic_id) {
4044 reg_00.bits.ID = apic_id;
4045
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004046 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 io_apic_write(ioapic, 0, reg_00.raw);
4048 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004049 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
4051 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01004052 if (reg_00.bits.ID != apic_id) {
4053 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
4054 return -1;
4055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 }
4057
4058 apic_printk(APIC_VERBOSE, KERN_INFO
4059 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
4060
4061 return apic_id;
4062}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00004063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004065int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
4067 union IO_APIC_reg_01 reg_01;
4068 unsigned long flags;
4069
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004070 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004072 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
4074 return reg_01.bits.version;
4075}
4076
Shaohua Li61fd47e2007-11-17 01:05:28 -05004077int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4078{
4079 int i;
4080
4081 if (skip_ioapic_setup)
4082 return -1;
4083
4084 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304085 if (mp_irqs[i].irqtype == mp_INT &&
4086 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004087 break;
4088 if (i >= mp_irq_entries)
4089 return -1;
4090
4091 *trigger = irq_trigger(i);
4092 *polarity = irq_polarity(i);
4093 return 0;
4094}
4095
Yinghai Lu497c9a12008-08-19 20:50:28 -07004096/*
4097 * This function currently is only a helper for the i386 smp boot process where
4098 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004099 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004100 */
4101#ifdef CONFIG_SMP
4102void __init setup_ioapic_dest(void)
4103{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004104 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004105 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004106 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004107
4108 if (skip_ioapic_setup == 1)
4109 return;
4110
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004111 for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
Yinghai Lub9c61b702009-05-06 10:10:06 -07004112 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4113 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4114 if (irq_entry == -1)
4115 continue;
4116 irq = pin_2_irq(irq_entry, ioapic, pin);
4117
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004118 if ((ioapic > 0) && (irq > 16))
4119 continue;
4120
Yinghai Lub9c61b702009-05-06 10:10:06 -07004121 desc = irq_to_desc(irq);
4122
4123 /*
4124 * Honour affinities which have been set in early boot
4125 */
4126 if (desc->status &
4127 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4128 mask = desc->affinity;
4129 else
4130 mask = apic->target_cpus();
4131
4132 if (intr_remapping_enabled)
4133 set_ir_ioapic_affinity_irq_desc(desc, mask);
4134 else
4135 set_ioapic_affinity_irq_desc(desc, mask);
4136 }
4137
Yinghai Lu497c9a12008-08-19 20:50:28 -07004138}
4139#endif
4140
Ingo Molnar54168ed2008-08-20 09:07:45 +02004141#define IOAPIC_RESOURCE_NAME_SIZE 11
4142
4143static struct resource *ioapic_resources;
4144
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004145static struct resource * __init ioapic_setup_resources(int nr_ioapics)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004146{
4147 unsigned long n;
4148 struct resource *res;
4149 char *mem;
4150 int i;
4151
4152 if (nr_ioapics <= 0)
4153 return NULL;
4154
4155 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4156 n *= nr_ioapics;
4157
4158 mem = alloc_bootmem(n);
4159 res = (void *)mem;
4160
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004161 mem += sizeof(struct resource) * nr_ioapics;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004162
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004163 for (i = 0; i < nr_ioapics; i++) {
4164 res[i].name = mem;
4165 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Cyrill Gorcunov4343fe12009-11-08 18:54:31 +03004166 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004167 mem += IOAPIC_RESOURCE_NAME_SIZE;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004168 }
4169
4170 ioapic_resources = res;
4171
4172 return res;
4173}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004174
Yinghai Luf3294a32008-06-27 01:41:56 -07004175void __init ioapic_init_mappings(void)
4176{
4177 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004178 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004179 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004180
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004181 ioapic_res = ioapic_setup_resources(nr_ioapics);
Yinghai Luf3294a32008-06-27 01:41:56 -07004182 for (i = 0; i < nr_ioapics; i++) {
4183 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304184 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004185#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004186 if (!ioapic_phys) {
4187 printk(KERN_ERR
4188 "WARNING: bogus zero IO-APIC "
4189 "address found in MPTABLE, "
4190 "disabling IO/APIC support!\n");
4191 smp_found_config = 0;
4192 skip_ioapic_setup = 1;
4193 goto fake_ioapic_page;
4194 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004195#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004196 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004197#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004198fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004199#endif
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004200 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004201 ioapic_phys = __pa(ioapic_phys);
4202 }
4203 set_fixmap_nocache(idx, ioapic_phys);
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004204 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
4205 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
4206 ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004207 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004208
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004209 ioapic_res->start = ioapic_phys;
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004210 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004211 ioapic_res++;
Yinghai Luf3294a32008-06-27 01:41:56 -07004212 }
4213}
4214
Yinghai Lu857fdc52009-07-10 09:36:20 -07004215void __init ioapic_insert_resources(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004216{
4217 int i;
4218 struct resource *r = ioapic_resources;
4219
4220 if (!r) {
Yinghai Lu857fdc52009-07-10 09:36:20 -07004221 if (nr_ioapics > 0)
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004222 printk(KERN_ERR
4223 "IO APIC resources couldn't be allocated.\n");
Yinghai Lu857fdc52009-07-10 09:36:20 -07004224 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004225 }
4226
4227 for (i = 0; i < nr_ioapics; i++) {
4228 insert_resource(&iomem_resource, r);
4229 r++;
4230 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004231}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004232
Feng Tang2a4ab642009-07-07 23:01:15 -04004233int mp_find_ioapic(int gsi)
4234{
4235 int i = 0;
4236
4237 /* Find the IOAPIC that manages this GSI. */
4238 for (i = 0; i < nr_ioapics; i++) {
4239 if ((gsi >= mp_gsi_routing[i].gsi_base)
4240 && (gsi <= mp_gsi_routing[i].gsi_end))
4241 return i;
4242 }
4243
4244 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
4245 return -1;
4246}
4247
4248int mp_find_ioapic_pin(int ioapic, int gsi)
4249{
4250 if (WARN_ON(ioapic == -1))
4251 return -1;
4252 if (WARN_ON(gsi > mp_gsi_routing[ioapic].gsi_end))
4253 return -1;
4254
4255 return gsi - mp_gsi_routing[ioapic].gsi_base;
4256}
4257
4258static int bad_ioapic(unsigned long address)
4259{
4260 if (nr_ioapics >= MAX_IO_APICS) {
4261 printk(KERN_WARNING "WARING: Max # of I/O APICs (%d) exceeded "
4262 "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
4263 return 1;
4264 }
4265 if (!address) {
4266 printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
4267 " found in table, skipping!\n");
4268 return 1;
4269 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004270 return 0;
4271}
4272
Feng Tang2a4ab642009-07-07 23:01:15 -04004273void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
4274{
4275 int idx = 0;
4276
4277 if (bad_ioapic(address))
4278 return;
4279
4280 idx = nr_ioapics;
4281
4282 mp_ioapics[idx].type = MP_IOAPIC;
4283 mp_ioapics[idx].flags = MPC_APIC_USABLE;
4284 mp_ioapics[idx].apicaddr = address;
4285
4286 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
4287 mp_ioapics[idx].apicid = io_apic_unique_id(id);
4288 mp_ioapics[idx].apicver = io_apic_get_version(idx);
4289
4290 /*
4291 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
4292 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
4293 */
4294 mp_gsi_routing[idx].gsi_base = gsi_base;
4295 mp_gsi_routing[idx].gsi_end = gsi_base +
4296 io_apic_get_redir_entries(idx);
4297
4298 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
4299 "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
4300 mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
4301 mp_gsi_routing[idx].gsi_base, mp_gsi_routing[idx].gsi_end);
4302
4303 nr_ioapics++;
4304}