blob: 127b8718abfb0abd389334865f0bf3159b8e0fa3 [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() */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070040#ifdef CONFIG_ACPI
41#include <acpi/acpi_bus.h>
42#endif
43#include <linux/bootmem.h>
44#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070045#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070046
Yinghai Lud4057bd2008-08-19 20:50:38 -070047#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/io.h>
49#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053050#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070052#include <asm/proto.h>
53#include <asm/acpi.h>
54#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070056#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020057#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070058#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070059#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070060#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070061#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070062#include <asm/hpet.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053063#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar7b6aa332009-02-17 13:58:15 +010065#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010067#define __apicdebuginit(type) static type __init
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +040068#define for_each_irq_pin(entry, head) \
69 for (entry = head; entry; entry = entry->next)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020072 * Is the SiS APIC rmw bug present ?
73 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75int sis_apic_bug = -1;
76
Thomas Gleixnerdade7712009-07-25 18:39:36 +020077static DEFINE_RAW_SPINLOCK(ioapic_lock);
78static DEFINE_RAW_SPINLOCK(vector_lock);
Yinghai Luefa25592008-08-19 20:50:36 -070079
Yinghai Luefa25592008-08-19 20:50:36 -070080/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * # of IRQ routing registers
82 */
83int nr_ioapic_registers[MAX_IO_APICS];
84
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040085/* I/O APIC entries */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +053086struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040087int nr_ioapics;
88
Feng Tang2a4ab642009-07-07 23:01:15 -040089/* IO APIC gsi routing info */
90struct mp_ioapic_gsi mp_gsi_routing[MAX_IO_APICS];
91
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040092/* MP IRQ source entries */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +053093struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040094
95/* # of MP IRQ source entries */
96int mp_irq_entries;
97
Thomas Gleixnerbc078442009-08-29 18:09:57 +020098/* GSI interrupts */
99static int nr_irqs_gsi = NR_IRQS_LEGACY;
100
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +0400101#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
102int mp_bus_id_to_type[MAX_MP_BUSSES];
103#endif
104
105DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
106
Yinghai Luefa25592008-08-19 20:50:36 -0700107int skip_ioapic_setup;
108
Ingo Molnar65a4e572009-01-31 03:36:17 +0100109void arch_disable_smp_support(void)
110{
111#ifdef CONFIG_PCI
112 noioapicquirk = 1;
113 noioapicreroute = -1;
114#endif
115 skip_ioapic_setup = 1;
116}
117
Ingo Molnar54168ed2008-08-20 09:07:45 +0200118static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700119{
120 /* disable IO-APIC */
Ingo Molnar65a4e572009-01-31 03:36:17 +0100121 arch_disable_smp_support();
Yinghai Luefa25592008-08-19 20:50:36 -0700122 return 0;
123}
124early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200125
Yinghai Lu0f978f42008-08-19 20:50:26 -0700126struct irq_pin_list {
127 int apic, pin;
128 struct irq_pin_list *next;
129};
Yinghai Lu301e6192008-08-19 20:50:02 -0700130
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700131static struct irq_pin_list *get_one_free_irq_2_pin(int node)
Yinghai Lu0f978f42008-08-19 20:50:26 -0700132{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800133 struct irq_pin_list *pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700134
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800135 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
Yinghai Lu0f978f42008-08-19 20:50:26 -0700136
Yinghai Lu0f978f42008-08-19 20:50:26 -0700137 return pin;
138}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800140/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
141#ifdef CONFIG_SPARSE_IRQ
Suresh Siddha97943392010-01-19 12:20:54 -0800142static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800143#else
Suresh Siddha97943392010-01-19 12:20:54 -0800144static struct irq_cfg irq_cfgx[NR_IRQS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145#endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800146
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800147int __init arch_early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800148{
149 struct irq_cfg *cfg;
150 struct irq_desc *desc;
151 int count;
Yinghai Ludad213ae2009-05-28 18:14:40 -0700152 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800153 int i;
154
Jacob Pan1f912332010-02-05 04:06:56 -0800155 if (!legacy_pic->nr_legacy_irqs) {
156 nr_irqs_gsi = 0;
157 io_apic_irqs = ~0UL;
158 }
159
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800160 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 */
H. Peter Anvin54b56172010-02-22 16:25:18 -0800173 if (i < legacy_pic->nr_legacy_irqs) {
Suresh Siddha97943392010-01-19 12:20:54 -0800174 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{
Jacob Panb81bb372009-11-09 11:27:04 -0800855 if (irq < legacy_pic->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;
Suresh Siddha36e9e1e2010-03-15 14:33:06 -08001272
1273 /*
1274 * If it is a legacy IRQ handled by the legacy PIC, this cpu
1275 * will be part of the irq_cfg's domain.
1276 */
1277 if (irq < legacy_pic->nr_legacy_irqs && !IO_APIC_IRQ(irq))
1278 cpumask_set_cpu(cpu, cfg->domain);
1279
Mike Travis22f65d32008-12-16 17:33:56 -08001280 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001281 continue;
1282 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001283 per_cpu(vector_irq, cpu)[vector] = irq;
1284 }
1285 /* Mark the free vectors */
1286 for (vector = 0; vector < NR_VECTORS; ++vector) {
1287 irq = per_cpu(vector_irq, cpu)[vector];
1288 if (irq < 0)
1289 continue;
1290
1291 cfg = irq_cfg(irq);
Mike Travis22f65d32008-12-16 17:33:56 -08001292 if (!cpumask_test_cpu(cpu, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001293 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001294 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001295 raw_spin_unlock(&vector_lock);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001296}
Glauber Costa3fde6902008-05-28 20:34:19 -07001297
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001298static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001299static struct irq_chip ir_ioapic_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Ingo Molnar54168ed2008-08-20 09:07:45 +02001301#define IOAPIC_AUTO -1
1302#define IOAPIC_EDGE 0
1303#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001305#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001306static inline int IO_APIC_irq_trigger(int irq)
1307{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001308 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001309
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001310 for (apic = 0; apic < nr_ioapics; apic++) {
1311 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1312 idx = find_irq_entry(apic, pin, mp_INT);
1313 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1314 return irq_trigger(idx);
1315 }
1316 }
1317 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02001318 * nonexistent IRQs are edge default
1319 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001320 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001321}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001322#else
1323static inline int IO_APIC_irq_trigger(int irq)
1324{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001325 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001326}
1327#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001328
Yinghai Lu3145e942008-12-05 18:58:34 -08001329static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Yinghai Lu199751d2008-08-19 20:50:27 -07001331
Jan Beulich6ebcc002006-06-26 13:56:46 +02001332 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001333 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001334 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001335 else
1336 desc->status &= ~IRQ_LEVEL;
1337
Ingo Molnar54168ed2008-08-20 09:07:45 +02001338 if (irq_remapped(irq)) {
1339 desc->status |= IRQ_MOVE_PCNTXT;
1340 if (trigger)
1341 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1342 handle_fasteoi_irq,
1343 "fasteoi");
1344 else
1345 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1346 handle_edge_irq, "edge");
1347 return;
1348 }
Suresh Siddha29b61be2009-03-16 17:05:02 -07001349
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001350 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1351 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001352 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001353 handle_fasteoi_irq,
1354 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001355 else
Ingo Molnara460e742006-10-17 00:10:03 -07001356 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001357 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001358}
1359
Jeremy Fitzhardingeca97ab92009-02-09 12:05:47 -08001360int setup_ioapic_entry(int apic_id, int irq,
1361 struct IO_APIC_route_entry *entry,
1362 unsigned int destination, int trigger,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001363 int polarity, int vector, int pin)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001364{
1365 /*
1366 * add it to the IO-APIC irq-routing table:
1367 */
1368 memset(entry,0,sizeof(*entry));
1369
Ingo Molnar54168ed2008-08-20 09:07:45 +02001370 if (intr_remapping_enabled) {
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001371 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001372 struct irte irte;
1373 struct IR_IO_APIC_route_entry *ir_entry =
1374 (struct IR_IO_APIC_route_entry *) entry;
1375 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001376
Ingo Molnar54168ed2008-08-20 09:07:45 +02001377 if (!iommu)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001378 panic("No mapping iommu for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001379
1380 index = alloc_irte(iommu, irq, 1);
1381 if (index < 0)
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001382 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001383
1384 memset(&irte, 0, sizeof(irte));
1385
1386 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001387 irte.dst_mode = apic->irq_dest_mode;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001388 /*
1389 * Trigger mode in the IRTE will always be edge, and the
1390 * actual level or edge trigger will be setup in the IO-APIC
1391 * RTE. This will help simplify level triggered irq migration.
1392 * For more details, see the comments above explainig IO-APIC
1393 * irq migration in the presence of interrupt-remapping.
1394 */
1395 irte.trigger_mode = 0;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001396 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001397 irte.vector = vector;
1398 irte.dest_id = IRTE_DEST(destination);
1399
Weidong Hanf007e992009-05-23 00:41:15 +08001400 /* Set source-id of interrupt request */
1401 set_ioapic_sid(&irte, apic_id);
1402
Ingo Molnar54168ed2008-08-20 09:07:45 +02001403 modify_irte(irq, &irte);
1404
1405 ir_entry->index2 = (index >> 15) & 0x1;
1406 ir_entry->zero = 0;
1407 ir_entry->format = 1;
1408 ir_entry->index = (index & 0x7fff);
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001409 /*
1410 * IO-APIC RTE will be configured with virtual vector.
1411 * irq handler will do the explicit EOI to the io-apic.
1412 */
1413 ir_entry->vector = pin;
Suresh Siddha29b61be2009-03-16 17:05:02 -07001414 } else {
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001415 entry->delivery_mode = apic->irq_delivery_mode;
1416 entry->dest_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001417 entry->dest = destination;
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001418 entry->vector = vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001419 }
1420
1421 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001422 entry->trigger = trigger;
1423 entry->polarity = polarity;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001424
1425 /* Mask level triggered irqs.
1426 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1427 */
1428 if (trigger)
1429 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001430 return 0;
1431}
1432
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001433static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001434 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001435{
1436 struct irq_cfg *cfg;
1437 struct IO_APIC_route_entry entry;
Mike Travis22f65d32008-12-16 17:33:56 -08001438 unsigned int dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001439
1440 if (!IO_APIC_IRQ(irq))
1441 return;
1442
Yinghai Lu3145e942008-12-05 18:58:34 -08001443 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001444
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001445 /*
1446 * For legacy irqs, cfg->domain starts with cpu 0 for legacy
1447 * controllers like 8259. Now that IO-APIC can handle this irq, update
1448 * the cfg->domain.
1449 */
Yinghai Lu28c6a0b2010-02-23 20:27:48 -08001450 if (irq < legacy_pic->nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain))
Suresh Siddha69c89ef2010-01-29 11:42:20 -08001451 apic->vector_allocation_domain(0, cfg->domain);
1452
Ingo Molnarfe402e12009-01-28 04:32:51 +01001453 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
Yinghai Lu497c9a12008-08-19 20:50:28 -07001454 return;
1455
Ingo Molnardebccb32009-01-28 15:20:18 +01001456 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07001457
1458 apic_printk(APIC_VERBOSE,KERN_DEBUG
1459 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1460 "IRQ %d Mode:%i Active:%i)\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001461 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
Yinghai Lu497c9a12008-08-19 20:50:28 -07001462 irq, trigger, polarity);
1463
1464
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001465 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
Suresh Siddha0280f7c2009-03-16 17:05:01 -07001466 dest, trigger, polarity, cfg->vector, pin)) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001467 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001468 mp_ioapics[apic_id].apicid, pin);
Yinghai Lu3145e942008-12-05 18:58:34 -08001469 __clear_irq_vector(irq, cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001470 return;
1471 }
1472
Yinghai Lu3145e942008-12-05 18:58:34 -08001473 ioapic_register_intr(irq, desc, trigger);
Jacob Panb81bb372009-11-09 11:27:04 -08001474 if (irq < legacy_pic->nr_legacy_irqs)
1475 legacy_pic->chip->mask(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001476
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001477 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Yinghai Lub9c61b702009-05-06 10:10:06 -07001480static struct {
1481 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1482} mp_ioapic_routing[MAX_IO_APICS];
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484static void __init setup_IO_APIC_irqs(void)
1485{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001486 int apic_id, pin, idx, irq;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001487 int notcon = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001488 struct irq_desc *desc;
Yinghai Lu3145e942008-12-05 18:58:34 -08001489 struct irq_cfg *cfg;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07001490 int node = cpu_to_node(boot_cpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1493
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001494 for (apic_id = 0; apic_id < nr_ioapics; apic_id++)
Yinghai Lub9c61b702009-05-06 10:10:06 -07001495 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1496 idx = find_irq_entry(apic_id, pin, mp_INT);
1497 if (idx == -1) {
1498 if (!notcon) {
1499 notcon = 1;
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001500 apic_printk(APIC_VERBOSE,
Yinghai Lub9c61b702009-05-06 10:10:06 -07001501 KERN_DEBUG " %d-%d",
1502 mp_ioapics[apic_id].apicid, pin);
1503 } else
1504 apic_printk(APIC_VERBOSE, " %d-%d",
1505 mp_ioapics[apic_id].apicid, pin);
1506 continue;
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001507 }
Yinghai Lub9c61b702009-05-06 10:10:06 -07001508 if (notcon) {
1509 apic_printk(APIC_VERBOSE,
1510 " (apicid-pin) not connected\n");
1511 notcon = 0;
1512 }
1513
1514 irq = pin_2_irq(idx, apic_id, pin);
1515
Eric W. Biedermanfad53992010-02-28 01:06:34 -08001516 if ((apic_id > 0) && (irq > 16))
1517 continue;
1518
Yinghai Lub9c61b702009-05-06 10:10:06 -07001519 /*
1520 * Skip the timer IRQ if there's a quirk handler
1521 * installed and if it returns 1:
1522 */
1523 if (apic->multi_timer_check &&
1524 apic->multi_timer_check(apic_id, irq))
1525 continue;
1526
1527 desc = irq_to_desc_alloc_node(irq, node);
1528 if (!desc) {
1529 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1530 continue;
1531 }
1532 cfg = desc->chip_data;
1533 add_pin_to_irq_node(cfg, node, apic_id, pin);
Yinghai Lu4c6f18f2009-05-18 10:23:28 -07001534 /*
1535 * don't mark it in pin_programmed, so later acpi could
1536 * set it correctly when irq < 16
1537 */
Yinghai Lub9c61b702009-05-06 10:10:06 -07001538 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1539 irq_trigger(idx), irq_polarity(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001542 if (notcon)
1543 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001544 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547/*
Yinghai Lu18dce6b2010-02-10 01:20:05 -08001548 * for the gsit that is not in first ioapic
1549 * but could not use acpi_register_gsi()
1550 * like some special sci in IBM x3330
1551 */
1552void setup_IO_APIC_irq_extra(u32 gsi)
1553{
1554 int apic_id = 0, pin, idx, irq;
1555 int node = cpu_to_node(boot_cpu_id);
1556 struct irq_desc *desc;
1557 struct irq_cfg *cfg;
1558
1559 /*
1560 * Convert 'gsi' to 'ioapic.pin'.
1561 */
1562 apic_id = mp_find_ioapic(gsi);
1563 if (apic_id < 0)
1564 return;
1565
1566 pin = mp_find_ioapic_pin(apic_id, gsi);
1567 idx = find_irq_entry(apic_id, pin, mp_INT);
1568 if (idx == -1)
1569 return;
1570
1571 irq = pin_2_irq(idx, apic_id, pin);
1572#ifdef CONFIG_SPARSE_IRQ
1573 desc = irq_to_desc(irq);
1574 if (desc)
1575 return;
1576#endif
1577 desc = irq_to_desc_alloc_node(irq, node);
1578 if (!desc) {
1579 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1580 return;
1581 }
1582
1583 cfg = desc->chip_data;
1584 add_pin_to_irq_node(cfg, node, apic_id, pin);
1585
1586 if (test_bit(pin, mp_ioapic_routing[apic_id].pin_programmed)) {
1587 pr_debug("Pin %d-%d already programmed\n",
1588 mp_ioapics[apic_id].apicid, pin);
1589 return;
1590 }
1591 set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed);
1592
1593 setup_IO_APIC_irq(apic_id, pin, irq, desc,
1594 irq_trigger(idx), irq_polarity(idx));
1595}
1596
1597/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001598 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001600static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001601 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Ingo Molnar54168ed2008-08-20 09:07:45 +02001605 if (intr_remapping_enabled)
1606 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001607
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001608 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 /*
1611 * We use logical delivery to get the timer IRQ
1612 * to the first CPU.
1613 */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001614 entry.dest_mode = apic->irq_dest_mode;
Yinghai Luf72dcca2009-02-08 16:18:03 -08001615 entry.mask = 0; /* don't mask IRQ for edge */
Ingo Molnardebccb32009-01-28 15:20:18 +01001616 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01001617 entry.delivery_mode = apic->irq_delivery_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 entry.polarity = 0;
1619 entry.trigger = 0;
1620 entry.vector = vector;
1621
1622 /*
1623 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001624 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001626 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /*
1629 * Add it to the IO-APIC irq-routing table:
1630 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01001631 ioapic_write_entry(apic_id, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001634
1635__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 int apic, i;
1638 union IO_APIC_reg_00 reg_00;
1639 union IO_APIC_reg_01 reg_01;
1640 union IO_APIC_reg_02 reg_02;
1641 union IO_APIC_reg_03 reg_03;
1642 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001643 struct irq_cfg *cfg;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001644 struct irq_desc *desc;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001645 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001647 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 for (i = 0; i < nr_ioapics; i++)
1649 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301650 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /*
1653 * We are a bit conservative about what we expect. We have to
1654 * know about every hardware change ASAP.
1655 */
1656 printk(KERN_INFO "testing the IO APIC.......................\n");
1657
1658 for (apic = 0; apic < nr_ioapics; apic++) {
1659
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001660 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 reg_00.raw = io_apic_read(apic, 0);
1662 reg_01.raw = io_apic_read(apic, 1);
1663 if (reg_01.bits.version >= 0x10)
1664 reg_02.raw = io_apic_read(apic, 2);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02001665 if (reg_01.bits.version >= 0x20)
1666 reg_03.raw = io_apic_read(apic, 3);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001667 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Ingo Molnar54168ed2008-08-20 09:07:45 +02001669 printk("\n");
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301670 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1672 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1673 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1674 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Ingo Molnar54168ed2008-08-20 09:07:45 +02001676 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1680 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 /*
1683 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1684 * but the value of reg_02 is read as the previous read register
1685 * value, so ignore it if reg_02 == reg_01.
1686 */
1687 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1688 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1689 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 }
1691
1692 /*
1693 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1694 * or reg_03, but the value of reg_0[23] is read as the previous read
1695 * register value, so ignore it if reg_03 == reg_0[12].
1696 */
1697 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1698 reg_03.raw != reg_01.raw) {
1699 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1700 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 }
1702
1703 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1704
Yinghai Lud83e94a2008-08-19 20:50:33 -07001705 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
Frans Pop3235dc32010-02-06 18:47:17 +01001706 " Stat Dmod Deli Vect:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 for (i = 0; i <= reg_01.bits.entries; i++) {
1709 struct IO_APIC_route_entry entry;
1710
Andi Kleencf4c6a22006-09-26 10:52:30 +02001711 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Ingo Molnar54168ed2008-08-20 09:07:45 +02001713 printk(KERN_DEBUG " %02x %03X ",
1714 i,
1715 entry.dest
1716 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1719 entry.mask,
1720 entry.trigger,
1721 entry.irr,
1722 entry.polarity,
1723 entry.delivery_status,
1724 entry.dest_mode,
1725 entry.delivery_mode,
1726 entry.vector
1727 );
1728 }
1729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001731 for_each_irq_desc(irq, desc) {
1732 struct irq_pin_list *entry;
1733
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001734 cfg = desc->chip_data;
1735 entry = cfg->irq_2_pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001736 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001738 printk(KERN_DEBUG "IRQ%d ", irq);
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04001739 for_each_irq_pin(entry, cfg->irq_2_pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 printk("-> %d:%d", entry->apic, entry->pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 printk("\n");
1742 }
1743
1744 printk(KERN_INFO ".................................... done.\n");
1745
1746 return;
1747}
1748
Ingo Molnar251e1e42009-07-02 08:54:01 +02001749__apicdebuginit(void) print_APIC_field(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Ingo Molnar251e1e42009-07-02 08:54:01 +02001751 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Ingo Molnar251e1e42009-07-02 08:54:01 +02001753 printk(KERN_DEBUG);
1754
1755 for (i = 0; i < 8; i++)
1756 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1757
1758 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001761__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Andreas Herrmann97a52712009-05-08 18:23:50 +02001763 unsigned int i, v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001764 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Ingo Molnar251e1e42009-07-02 08:54:01 +02001766 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001768 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001769 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 v = apic_read(APIC_LVR);
1771 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1772 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001773 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 v = apic_read(APIC_TASKPRI);
1776 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1777
Ingo Molnar54168ed2008-08-20 09:07:45 +02001778 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001779 if (!APIC_XAPIC(ver)) {
1780 v = apic_read(APIC_ARBPRI);
1781 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1782 v & APIC_ARBPRI_MASK);
1783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 v = apic_read(APIC_PROCPRI);
1785 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1786 }
1787
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001788 /*
1789 * Remote read supported only in the 82489DX and local APIC for
1790 * Pentium processors.
1791 */
1792 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1793 v = apic_read(APIC_RRR);
1794 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 v = apic_read(APIC_LDR);
1798 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001799 if (!x2apic_enabled()) {
1800 v = apic_read(APIC_DFR);
1801 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 v = apic_read(APIC_SPIV);
1804 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1805
1806 printk(KERN_DEBUG "... APIC ISR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001807 print_APIC_field(APIC_ISR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 printk(KERN_DEBUG "... APIC TMR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001809 print_APIC_field(APIC_TMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 printk(KERN_DEBUG "... APIC IRR field:\n");
Ingo Molnar251e1e42009-07-02 08:54:01 +02001811 print_APIC_field(APIC_IRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Ingo Molnar54168ed2008-08-20 09:07:45 +02001813 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1814 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 v = apic_read(APIC_ESR);
1818 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1819 }
1820
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001821 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001822 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1823 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 v = apic_read(APIC_LVTT);
1826 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1827
1828 if (maxlvt > 3) { /* PC is LVT#4. */
1829 v = apic_read(APIC_LVTPC);
1830 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1831 }
1832 v = apic_read(APIC_LVT0);
1833 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1834 v = apic_read(APIC_LVT1);
1835 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1836
1837 if (maxlvt > 2) { /* ERR is LVT#3. */
1838 v = apic_read(APIC_LVTERR);
1839 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1840 }
1841
1842 v = apic_read(APIC_TMICT);
1843 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1844 v = apic_read(APIC_TMCCT);
1845 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1846 v = apic_read(APIC_TDCR);
1847 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
Andreas Herrmann97a52712009-05-08 18:23:50 +02001848
1849 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1850 v = apic_read(APIC_EFEAT);
1851 maxlvt = (v >> 16) & 0xff;
1852 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1853 v = apic_read(APIC_ECTRL);
1854 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1855 for (i = 0; i < maxlvt; i++) {
1856 v = apic_read(APIC_EILVTn(i));
1857 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1858 }
1859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 printk("\n");
1861}
1862
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001863__apicdebuginit(void) print_local_APICs(int maxcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001865 int cpu;
1866
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001867 if (!maxcpu)
1868 return;
1869
Yinghai Luffd5aae2008-08-19 20:50:50 -07001870 preempt_disable();
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001871 for_each_online_cpu(cpu) {
1872 if (cpu >= maxcpu)
1873 break;
Yinghai Luffd5aae2008-08-19 20:50:50 -07001874 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001875 }
Yinghai Luffd5aae2008-08-19 20:50:50 -07001876 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
1878
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001879__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 unsigned int v;
1882 unsigned long flags;
1883
Jacob Panb81bb372009-11-09 11:27:04 -08001884 if (!legacy_pic->nr_legacy_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return;
1886
1887 printk(KERN_DEBUG "\nprinting PIC contents\n");
1888
Thomas Gleixner5619c282009-07-25 18:35:11 +02001889 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 v = inb(0xa1) << 8 | inb(0x21);
1892 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1893
1894 v = inb(0xa0) << 8 | inb(0x20);
1895 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1896
Ingo Molnar54168ed2008-08-20 09:07:45 +02001897 outb(0x0b,0xa0);
1898 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001900 outb(0x0a,0xa0);
1901 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Thomas Gleixner5619c282009-07-25 18:35:11 +02001903 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1906
1907 v = inb(0x4d1) << 8 | inb(0x4d0);
1908 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1909}
1910
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001911static int __initdata show_lapic = 1;
1912static __init int setup_show_lapic(char *arg)
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001913{
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001914 int num = -1;
1915
1916 if (strcmp(arg, "all") == 0) {
1917 show_lapic = CONFIG_NR_CPUS;
1918 } else {
1919 get_option(&arg, &num);
1920 if (num >= 0)
1921 show_lapic = num;
1922 }
1923
1924 return 1;
1925}
1926__setup("show_lapic=", setup_show_lapic);
1927
1928__apicdebuginit(int) print_ICs(void)
1929{
1930 if (apic_verbosity == APIC_QUIET)
1931 return 0;
1932
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001933 print_PIC();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001934
1935 /* don't print out if apic is not there */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001936 if (!cpu_has_apic && !apic_from_smp_config())
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001937 return 0;
1938
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001939 print_local_APICs(show_lapic);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001940 print_IO_APIC();
1941
1942 return 0;
1943}
1944
Cyrill Gorcunov2626eb22009-10-14 00:07:05 +04001945fs_initcall(print_ICs);
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Yinghai Luefa25592008-08-19 20:50:36 -07001948/* Where if anywhere is the i8259 connect in external int mode */
1949static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1950
Ingo Molnar54168ed2008-08-20 09:07:45 +02001951void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001954 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001955 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 unsigned long flags;
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 /*
1959 * The number of IO-APIC IRQ registers (== #pins):
1960 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001961 for (apic = 0; apic < nr_ioapics; apic++) {
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001962 raw_spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001963 reg_01.raw = io_apic_read(apic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02001964 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001965 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1966 }
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001967
Jacob Panb81bb372009-11-09 11:27:04 -08001968 if (!legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02001969 return;
1970
Ingo Molnar54168ed2008-08-20 09:07:45 +02001971 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001972 int pin;
1973 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001974 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001975 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001976 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001977
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001978 /* If the interrupt line is enabled and in ExtInt mode
1979 * I have found the pin where the i8259 is connected.
1980 */
1981 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1982 ioapic_i8259.apic = apic;
1983 ioapic_i8259.pin = pin;
1984 goto found_i8259;
1985 }
1986 }
1987 }
1988 found_i8259:
1989 /* Look to see what if the MP table has reported the ExtINT */
1990 /* If we could not find the appropriate pin by looking at the ioapic
1991 * the i8259 probably is not connected the ioapic but give the
1992 * mptable a chance anyway.
1993 */
1994 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1995 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1996 /* Trust the MP table if nothing is setup in the hardware */
1997 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1998 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1999 ioapic_i8259.pin = i8259_pin;
2000 ioapic_i8259.apic = i8259_apic;
2001 }
2002 /* Complain if the MP table and the hardware disagree */
2003 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
2004 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
2005 {
2006 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
2008
2009 /*
2010 * Do not trust the IO-APIC being empty at bootup
2011 */
2012 clear_IO_APIC();
2013}
2014
2015/*
2016 * Not an __init, needed by the reboot code
2017 */
2018void disable_IO_APIC(void)
2019{
2020 /*
2021 * Clear the IO-APIC before rebooting:
2022 */
2023 clear_IO_APIC();
2024
Jacob Panb81bb372009-11-09 11:27:04 -08002025 if (!legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02002026 return;
2027
Eric W. Biederman650927e2005-06-25 14:57:44 -07002028 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02002029 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07002030 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02002031 * so legacy interrupts can be delivered.
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002032 *
2033 * With interrupt-remapping, for now we will use virtual wire A mode,
2034 * as virtual wire B is little complex (need to configure both
2035 * IOAPIC RTE aswell as interrupt-remapping table entry).
2036 * As this gets called during crash dump, keep this simple for now.
Eric W. Biederman650927e2005-06-25 14:57:44 -07002037 */
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002038 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07002039 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07002040
2041 memset(&entry, 0, sizeof(entry));
2042 entry.mask = 0; /* Enabled */
2043 entry.trigger = 0; /* Edge */
2044 entry.irr = 0;
2045 entry.polarity = 0; /* High */
2046 entry.delivery_status = 0;
2047 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002048 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07002049 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002050 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07002051
2052 /*
2053 * Add it to the IO-APIC irq-routing table:
2054 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02002055 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07002056 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002057
Suresh Siddha7c6d9f92009-03-16 17:04:59 -07002058 /*
2059 * Use virtual wire A mode when interrupt remapping is enabled.
2060 */
Cyrill Gorcunov83121362009-09-15 11:12:30 +04002061 if (cpu_has_apic || apic_from_smp_config())
Cyrill Gorcunov3f4c3952009-06-17 22:13:22 +04002062 disconnect_bsp_APIC(!intr_remapping_enabled &&
2063 ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Ingo Molnar54168ed2008-08-20 09:07:45 +02002066#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067/*
2068 * function to set the IO-APIC physical IDs based on the
2069 * values stored in the MPC table.
2070 *
2071 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2072 */
2073
Thomas Gleixnerde934102009-08-20 09:27:29 +02002074void __init setup_ioapic_ids_from_mpc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 union IO_APIC_reg_00 reg_00;
2077 physid_mask_t phys_id_present_map;
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002078 int apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 int i;
2080 unsigned char old_id;
2081 unsigned long flags;
2082
Thomas Gleixnerde934102009-08-20 09:27:29 +02002083 if (acpi_ioapic)
Yinghai Lud49c4282008-06-08 18:31:54 -07002084 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002086 * Don't check I/O APIC IDs for xAPIC systems. They have
2087 * no meaning without the serial APIC bus.
2088 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002089 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2090 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002091 return;
2092 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * This is broken; anything with a real cpu count has to
2094 * circumvent this idiocy regardless.
2095 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002096 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /*
2099 * Set the IOAPIC ID to the value stored in the MPC table.
2100 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002101 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 /* Read the register 0 value */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002104 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002105 reg_00.raw = io_apic_read(apic_id, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002106 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002107
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002108 old_id = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002110 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002112 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2114 reg_00.bits.ID);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002115 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 /*
2119 * Sanity check, is the ID really free? Every APIC in a
2120 * system must have a unique ID or we get lots of nice
2121 * 'stuck on smp_invalidate_needed IPI wait' messages.
2122 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002123 if (apic->check_apicid_used(&phys_id_present_map,
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002124 mp_ioapics[apic_id].apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002126 apic_id, mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 for (i = 0; i < get_physical_broadcast(); i++)
2128 if (!physid_isset(i, phys_id_present_map))
2129 break;
2130 if (i >= get_physical_broadcast())
2131 panic("Max APIC ID exceeded!\n");
2132 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2133 i);
2134 physid_set(i, phys_id_present_map);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002135 mp_ioapics[apic_id].apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 } else {
2137 physid_mask_t tmp;
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03002138 apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 apic_printk(APIC_VERBOSE, "Setting %d in the "
2140 "phys_id_present_map\n",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002141 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2143 }
2144
2145
2146 /*
2147 * We need to adjust the IRQ routing table
2148 * if the ID changed.
2149 */
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002150 if (old_id != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05302152 if (mp_irqs[i].dstapic == old_id)
2153 mp_irqs[i].dstapic
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002154 = mp_ioapics[apic_id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /*
2157 * Read the right value from the MPC table and
2158 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 apic_printk(APIC_VERBOSE, KERN_INFO
2161 "...changing IO-APIC physical APIC ID to %d ...",
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002162 mp_ioapics[apic_id].apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002164 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002165 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002166 io_apic_write(apic_id, 0, reg_00.raw);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002167 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 /*
2170 * Sanity check
2171 */
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002172 raw_spin_lock_irqsave(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002173 reg_00.raw = io_apic_read(apic_id, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002174 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnarc8d46cf2009-01-28 00:14:11 +01002175 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 printk("could not set ID!\n");
2177 else
2178 apic_printk(APIC_VERBOSE, " ok.\n");
2179 }
2180}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002183int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002184
2185static int __init notimercheck(char *s)
2186{
2187 no_timer_check = 1;
2188 return 1;
2189}
2190__setup("no_timer_check", notimercheck);
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192/*
2193 * There is a nasty bug in some older SMP boards, their mptable lies
2194 * about the timer IRQ. We do the following to work around the situation:
2195 *
2196 * - timer IRQ defaults to IO-APIC IRQ
2197 * - if this function detects that timer IRQs are defunct, then we fall
2198 * back to ISA timer IRQs
2199 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002200static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
2202 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002203 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Zachary Amsden8542b202006-12-07 02:14:09 +01002205 if (no_timer_check)
2206 return 1;
2207
Ingo Molnar4aae0702007-12-18 18:05:58 +01002208 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 local_irq_enable();
2210 /* Let ten ticks pass... */
2211 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002212 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214 /*
2215 * Expect a few ticks at least, to be sure some possible
2216 * glue logic does not lock up after one or two first
2217 * ticks in a non-ExtINT mode. Also the local APIC
2218 * might have cached one ExtINT interrupt. Finally, at
2219 * least one tick may be lost due to delays.
2220 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002221
2222 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002223 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return 0;
2226}
2227
2228/*
2229 * In the SMP+IOAPIC case it might happen that there are an unspecified
2230 * number of pending IRQ events unhandled. These cases are very rare,
2231 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2232 * better to do it this way as thus we do not have to be aware of
2233 * 'pending' interrupts in the IRQ path, except at this point.
2234 */
2235/*
2236 * Edge triggered needs to resend any interrupt
2237 * that was delayed but this is now handled in the device
2238 * independent code.
2239 */
2240
2241/*
2242 * Starting up a edge-triggered IO-APIC interrupt is
2243 * nasty - we need to make sure that we get the edge.
2244 * If it is already asserted for some reason, we need
2245 * return 1 to indicate that is was pending.
2246 *
2247 * This is not complete - we should be able to fake
2248 * an edge even if it isn't on the 8259A...
2249 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002250
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002251static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 int was_pending = 0;
2254 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002255 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002257 raw_spin_lock_irqsave(&ioapic_lock, flags);
Jacob Panb81bb372009-11-09 11:27:04 -08002258 if (irq < legacy_pic->nr_legacy_irqs) {
2259 legacy_pic->chip->mask(irq);
2260 if (legacy_pic->irq_pending(irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 was_pending = 1;
2262 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002263 cfg = irq_cfg(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002264 __unmask_IO_APIC_irq(cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002265 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 return was_pending;
2268}
2269
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002270static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002272
2273 struct irq_cfg *cfg = irq_cfg(irq);
2274 unsigned long flags;
2275
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002276 raw_spin_lock_irqsave(&vector_lock, flags);
Ingo Molnardac5f412009-01-28 15:42:24 +01002277 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002278 raw_spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002279
2280 return 1;
2281}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002282
2283/*
2284 * Level and edge triggered IO-APIC interrupts need different handling,
2285 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2286 * handled with the level-triggered descriptor, but that one has slightly
2287 * more overhead. Level-triggered interrupts cannot be handled with the
2288 * edge-triggered handler, without risking IRQ storms and other ugly
2289 * races.
2290 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002291
Yinghai Lu497c9a12008-08-19 20:50:28 -07002292#ifdef CONFIG_SMP
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002293void send_cleanup_vector(struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002294{
2295 cpumask_var_t cleanup_mask;
2296
2297 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2298 unsigned int i;
Gary Hadee85abf82009-04-08 14:07:25 -07002299 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2300 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2301 } else {
2302 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002303 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2304 free_cpumask_var(cleanup_mask);
2305 }
2306 cfg->move_in_progress = 0;
2307}
2308
Ingo Molnar44204712009-05-01 19:02:50 +02002309static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
Gary Hadee85abf82009-04-08 14:07:25 -07002310{
2311 int apic, pin;
2312 struct irq_pin_list *entry;
2313 u8 vector = cfg->vector;
2314
Cyrill Gorcunov2977fb32009-08-01 11:47:59 +04002315 for_each_irq_pin(entry, cfg->irq_2_pin) {
Gary Hadee85abf82009-04-08 14:07:25 -07002316 unsigned int reg;
2317
Gary Hadee85abf82009-04-08 14:07:25 -07002318 apic = entry->apic;
2319 pin = entry->pin;
2320 /*
2321 * With interrupt-remapping, destination information comes
2322 * from interrupt-remapping table entry.
2323 */
2324 if (!irq_remapped(irq))
2325 io_apic_write(apic, 0x11 + pin*2, dest);
2326 reg = io_apic_read(apic, 0x10 + pin*2);
2327 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2328 reg |= vector;
2329 io_apic_modify(apic, 0x10 + pin*2, reg);
Gary Hadee85abf82009-04-08 14:07:25 -07002330 }
2331}
2332
2333/*
2334 * Either sets desc->affinity to a valid value, and returns
Suresh Siddha18374d82009-12-17 18:29:46 -08002335 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
Gary Hadee85abf82009-04-08 14:07:25 -07002336 * leaves desc->affinity untouched.
2337 */
Dimitri Sivanich9338ad62009-10-13 15:32:36 -05002338unsigned int
Suresh Siddha18374d82009-12-17 18:29:46 -08002339set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask,
2340 unsigned int *dest_id)
Gary Hadee85abf82009-04-08 14:07:25 -07002341{
2342 struct irq_cfg *cfg;
2343 unsigned int irq;
2344
2345 if (!cpumask_intersects(mask, cpu_online_mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002346 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002347
2348 irq = desc->irq;
2349 cfg = desc->chip_data;
2350 if (assign_irq_vector(irq, cfg, mask))
Suresh Siddha18374d82009-12-17 18:29:46 -08002351 return -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002352
Gary Hadee85abf82009-04-08 14:07:25 -07002353 cpumask_copy(desc->affinity, mask);
2354
Suresh Siddha18374d82009-12-17 18:29:46 -08002355 *dest_id = apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
2356 return 0;
Gary Hadee85abf82009-04-08 14:07:25 -07002357}
2358
Ingo Molnar44204712009-05-01 19:02:50 +02002359static int
Gary Hadee85abf82009-04-08 14:07:25 -07002360set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
2361{
2362 struct irq_cfg *cfg;
2363 unsigned long flags;
2364 unsigned int dest;
2365 unsigned int irq;
Ingo Molnar44204712009-05-01 19:02:50 +02002366 int ret = -1;
Gary Hadee85abf82009-04-08 14:07:25 -07002367
2368 irq = desc->irq;
2369 cfg = desc->chip_data;
2370
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002371 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddha18374d82009-12-17 18:29:46 -08002372 ret = set_desc_affinity(desc, mask, &dest);
2373 if (!ret) {
Gary Hadee85abf82009-04-08 14:07:25 -07002374 /* Only the high 8 bits are valid. */
2375 dest = SET_APIC_LOGICAL_ID(dest);
2376 __target_IO_APIC_irq(irq, dest, cfg);
2377 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002378 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Ingo Molnar44204712009-05-01 19:02:50 +02002379
2380 return ret;
Gary Hadee85abf82009-04-08 14:07:25 -07002381}
2382
Ingo Molnar44204712009-05-01 19:02:50 +02002383static int
Gary Hadee85abf82009-04-08 14:07:25 -07002384set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
2385{
2386 struct irq_desc *desc;
2387
2388 desc = irq_to_desc(irq);
2389
Ingo Molnar44204712009-05-01 19:02:50 +02002390 return set_ioapic_affinity_irq_desc(desc, mask);
Gary Hadee85abf82009-04-08 14:07:25 -07002391}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002392
2393#ifdef CONFIG_INTR_REMAP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002394
2395/*
2396 * Migrate the IO-APIC irq in the presence of intr-remapping.
2397 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002398 * For both level and edge triggered, irq migration is a simple atomic
2399 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002400 *
Suresh Siddha0280f7c2009-03-16 17:05:01 -07002401 * For level triggered, we eliminate the io-apic RTE modification (with the
2402 * updated vector information), by using a virtual vector (io-apic pin number).
2403 * Real vector that is used for interrupting cpu will be coming from
2404 * the interrupt-remapping table entry.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002405 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002406static int
Mike Travise7986732008-12-16 17:33:52 -08002407migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002408{
2409 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002410 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002411 unsigned int dest;
Yinghai Lu3145e942008-12-05 18:58:34 -08002412 unsigned int irq;
Yinghai Lud5dedd42009-04-27 17:59:21 -07002413 int ret = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002414
Mike Travis22f65d32008-12-16 17:33:56 -08002415 if (!cpumask_intersects(mask, cpu_online_mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002416 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002417
Yinghai Lu3145e942008-12-05 18:58:34 -08002418 irq = desc->irq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002419 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002420 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002421
Yinghai Lu3145e942008-12-05 18:58:34 -08002422 cfg = desc->chip_data;
2423 if (assign_irq_vector(irq, cfg, mask))
Yinghai Lud5dedd42009-04-27 17:59:21 -07002424 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002425
Ingo Molnardebccb32009-01-28 15:20:18 +01002426 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002427
Ingo Molnar54168ed2008-08-20 09:07:45 +02002428 irte.vector = cfg->vector;
2429 irte.dest_id = IRTE_DEST(dest);
2430
2431 /*
2432 * Modified the IRTE and flushes the Interrupt entry cache.
2433 */
2434 modify_irte(irq, &irte);
2435
Mike Travis22f65d32008-12-16 17:33:56 -08002436 if (cfg->move_in_progress)
2437 send_cleanup_vector(cfg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002438
Mike Travis7f7ace02009-01-10 21:58:08 -08002439 cpumask_copy(desc->affinity, mask);
Yinghai Lud5dedd42009-04-27 17:59:21 -07002440
2441 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002442}
2443
Ingo Molnar54168ed2008-08-20 09:07:45 +02002444/*
2445 * Migrates the IRQ destination in the process context.
2446 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07002447static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Rusty Russell968ea6d2008-12-13 21:55:51 +10302448 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002449{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002450 return migrate_ioapic_irq_desc(desc, mask);
Yinghai Lu3145e942008-12-05 18:58:34 -08002451}
Yinghai Lud5dedd42009-04-27 17:59:21 -07002452static int set_ir_ioapic_affinity_irq(unsigned int irq,
Rusty Russell0de26522008-12-13 21:20:26 +10302453 const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02002454{
2455 struct irq_desc *desc = irq_to_desc(irq);
2456
Yinghai Lud5dedd42009-04-27 17:59:21 -07002457 return set_ir_ioapic_affinity_irq_desc(desc, mask);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002458}
Suresh Siddha29b61be2009-03-16 17:05:02 -07002459#else
Yinghai Lud5dedd42009-04-27 17:59:21 -07002460static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
Suresh Siddha29b61be2009-03-16 17:05:02 -07002461 const struct cpumask *mask)
2462{
Yinghai Lud5dedd42009-04-27 17:59:21 -07002463 return 0;
Suresh Siddha29b61be2009-03-16 17:05:02 -07002464}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002465#endif
2466
Yinghai Lu497c9a12008-08-19 20:50:28 -07002467asmlinkage void smp_irq_move_cleanup_interrupt(void)
2468{
2469 unsigned vector, me;
Hiroshi Shimamoto8f2466f2008-12-08 19:19:07 -08002470
Yinghai Lu497c9a12008-08-19 20:50:28 -07002471 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002472 exit_idle();
Yinghai Lu497c9a12008-08-19 20:50:28 -07002473 irq_enter();
2474
2475 me = smp_processor_id();
2476 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2477 unsigned int irq;
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002478 unsigned int irr;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002479 struct irq_desc *desc;
2480 struct irq_cfg *cfg;
2481 irq = __get_cpu_var(vector_irq)[vector];
2482
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002483 if (irq == -1)
2484 continue;
2485
Yinghai Lu497c9a12008-08-19 20:50:28 -07002486 desc = irq_to_desc(irq);
2487 if (!desc)
2488 continue;
2489
2490 cfg = irq_cfg(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +01002491 raw_spin_lock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002492
Suresh Siddha7f41c2e2010-01-06 10:56:31 -08002493 /*
2494 * Check if the irq migration is in progress. If so, we
2495 * haven't received the cleanup request yet for this irq.
2496 */
2497 if (cfg->move_in_progress)
2498 goto unlock;
2499
Mike Travis22f65d32008-12-16 17:33:56 -08002500 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002501 goto unlock;
2502
Suresh Siddha68a8ca52009-03-16 17:05:04 -07002503 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2504 /*
2505 * Check if the vector that needs to be cleanedup is
2506 * registered at the cpu's IRR. If so, then this is not
2507 * the best time to clean it up. Lets clean it up in the
2508 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2509 * to myself.
2510 */
2511 if (irr & (1 << (vector % 32))) {
2512 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2513 goto unlock;
2514 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07002515 __get_cpu_var(vector_irq)[vector] = -1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002516unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +01002517 raw_spin_unlock(&desc->lock);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002518 }
2519
2520 irq_exit();
2521}
2522
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002523static void __irq_complete_move(struct irq_desc **descp, unsigned vector)
Yinghai Lu497c9a12008-08-19 20:50:28 -07002524{
Yinghai Lu3145e942008-12-05 18:58:34 -08002525 struct irq_desc *desc = *descp;
2526 struct irq_cfg *cfg = desc->chip_data;
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002527 unsigned me;
Yinghai Lu497c9a12008-08-19 20:50:28 -07002528
Yinghai Lufcef5912009-04-27 17:58:23 -07002529 if (likely(!cfg->move_in_progress))
Yinghai Lu497c9a12008-08-19 20:50:28 -07002530 return;
2531
Yinghai Lu497c9a12008-08-19 20:50:28 -07002532 me = smp_processor_id();
Yinghai Lu10b888d2009-01-31 14:50:07 -08002533
Yinghai Lufcef5912009-04-27 17:58:23 -07002534 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
Mike Travis22f65d32008-12-16 17:33:56 -08002535 send_cleanup_vector(cfg);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002536}
Suresh Siddhaa5e74b82009-10-26 14:24:34 -08002537
2538static void irq_complete_move(struct irq_desc **descp)
2539{
2540 __irq_complete_move(descp, ~get_irq_regs()->orig_ax);
2541}
2542
2543void irq_force_complete_move(int irq)
2544{
2545 struct irq_desc *desc = irq_to_desc(irq);
2546 struct irq_cfg *cfg = desc->chip_data;
2547
2548 __irq_complete_move(&desc, cfg->vector);
2549}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002550#else
Yinghai Lu3145e942008-12-05 18:58:34 -08002551static inline void irq_complete_move(struct irq_desc **descp) {}
Yinghai Lu497c9a12008-08-19 20:50:28 -07002552#endif
Yinghai Lu3145e942008-12-05 18:58:34 -08002553
Yinghai Lu1d025192008-08-19 20:50:34 -07002554static void ack_apic_edge(unsigned int irq)
2555{
Yinghai Lu3145e942008-12-05 18:58:34 -08002556 struct irq_desc *desc = irq_to_desc(irq);
2557
2558 irq_complete_move(&desc);
Yinghai Lu1d025192008-08-19 20:50:34 -07002559 move_native_irq(irq);
2560 ack_APIC_irq();
2561}
2562
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002563atomic_t irq_mis_count;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002564
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002565/*
2566 * IO-APIC versions below 0x20 don't support EOI register.
2567 * For the record, here is the information about various versions:
2568 * 0Xh 82489DX
2569 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
2570 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
2571 * 30h-FFh Reserved
2572 *
2573 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
2574 * version as 0x2. This is an error with documentation and these ICH chips
2575 * use io-apic's of version 0x20.
2576 *
2577 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
2578 * Otherwise, we simulate the EOI message manually by changing the trigger
2579 * mode to edge and then back to level, with RTE being masked during this.
2580*/
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002581static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2582{
2583 struct irq_pin_list *entry;
2584
2585 for_each_irq_pin(entry, cfg->irq_2_pin) {
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002586 if (mp_ioapics[entry->apic].apicver >= 0x20) {
2587 /*
2588 * Intr-remapping uses pin number as the virtual vector
2589 * in the RTE. Actual vector is programmed in
2590 * intr-remapping table entry. Hence for the io-apic
2591 * EOI we use the pin number.
2592 */
2593 if (irq_remapped(irq))
2594 io_apic_eoi(entry->apic, entry->pin);
2595 else
2596 io_apic_eoi(entry->apic, cfg->vector);
2597 } else {
2598 __mask_and_edge_IO_APIC_irq(entry);
2599 __unmask_and_level_IO_APIC_irq(entry);
2600 }
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002601 }
2602}
2603
2604static void eoi_ioapic_irq(struct irq_desc *desc)
2605{
2606 struct irq_cfg *cfg;
2607 unsigned long flags;
2608 unsigned int irq;
2609
2610 irq = desc->irq;
2611 cfg = desc->chip_data;
2612
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002613 raw_spin_lock_irqsave(&ioapic_lock, flags);
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002614 __eoi_ioapic_irq(irq, cfg);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02002615 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Suresh Siddhab3ec0a32009-10-26 14:24:35 -08002616}
2617
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002618static void ack_apic_level(unsigned int irq)
2619{
Yinghai Lu3145e942008-12-05 18:58:34 -08002620 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002621 unsigned long v;
2622 int i;
Yinghai Lu3145e942008-12-05 18:58:34 -08002623 struct irq_cfg *cfg;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002624 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002625
Yinghai Lu3145e942008-12-05 18:58:34 -08002626 irq_complete_move(&desc);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002627#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002628 /* If we are moving the irq we need to mask it */
Yinghai Lu3145e942008-12-05 18:58:34 -08002629 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002630 do_unmask_irq = 1;
Yinghai Lu3145e942008-12-05 18:58:34 -08002631 mask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002632 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002633#endif
2634
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002635 /*
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002636 * It appears there is an erratum which affects at least version 0x11
2637 * of I/O APIC (that's the 82093AA and cores integrated into various
2638 * chipsets). Under certain conditions a level-triggered interrupt is
2639 * erroneously delivered as edge-triggered one but the respective IRR
2640 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2641 * message but it will never arrive and further interrupts are blocked
2642 * from the source. The exact reason is so far unknown, but the
2643 * phenomenon was observed when two consecutive interrupt requests
2644 * from a given source get delivered to the same CPU and the source is
2645 * temporarily disabled in between.
2646 *
2647 * A workaround is to simulate an EOI message manually. We achieve it
2648 * by setting the trigger mode to edge and then to level when the edge
2649 * trigger mode gets detected in the TMR of a local APIC for a
2650 * level-triggered interrupt. We mask the source for the time of the
2651 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2652 * The idea is from Manfred Spraul. --macro
Suresh Siddha1c839952009-12-01 15:31:17 -08002653 *
2654 * Also in the case when cpu goes offline, fixup_irqs() will forward
2655 * any unhandled interrupt on the offlined cpu to the new cpu
2656 * destination that is handling the corresponding interrupt. This
2657 * interrupt forwarding is done via IPI's. Hence, in this case also
2658 * level-triggered io-apic interrupt will be seen as an edge
2659 * interrupt in the IRR. And we can't rely on the cpu's EOI
2660 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2661 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2662 * supporting EOI register, we do an explicit EOI to clear the
2663 * remote IRR and on IO-APIC's which don't have an EOI register,
2664 * we use the above logic (mask+edge followed by unmask+level) from
2665 * Manfred Spraul to clear the remote IRR.
Jeremy Fitzhardinge916a0fe2009-06-08 03:00:22 -07002666 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002667 cfg = desc->chip_data;
2668 i = cfg->vector;
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002669 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002670
Ingo Molnar54168ed2008-08-20 09:07:45 +02002671 /*
2672 * We must acknowledge the irq before we move it or the acknowledge will
2673 * not propagate properly.
2674 */
2675 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002676
Suresh Siddha1c839952009-12-01 15:31:17 -08002677 /*
2678 * Tail end of clearing remote IRR bit (either by delivering the EOI
2679 * message via io-apic EOI register write or simulating it using
2680 * mask+edge followed by unnask+level logic) manually when the
2681 * level triggered interrupt is seen as the edge triggered interrupt
2682 * at the cpu.
2683 */
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002684 if (!(v & (1 << (i & 0x1f)))) {
2685 atomic_inc(&irq_mis_count);
2686
Suresh Siddhac29d9db2009-12-01 15:31:16 -08002687 eoi_ioapic_irq(desc);
Maciej W. Rozyckica64c472009-12-01 15:31:15 -08002688 }
2689
Ingo Molnar54168ed2008-08-20 09:07:45 +02002690 /* Now we can move and renable the irq */
2691 if (unlikely(do_unmask_irq)) {
2692 /* Only migrate the irq if the ack has been received.
2693 *
2694 * On rare occasions the broadcast level triggered ack gets
2695 * delayed going to ioapics, and if we reprogram the
2696 * vector while Remote IRR is still set the irq will never
2697 * fire again.
2698 *
2699 * To prevent this scenario we read the Remote IRR bit
2700 * of the ioapic. This has two effects.
2701 * - On any sane system the read of the ioapic will
2702 * flush writes (and acks) going to the ioapic from
2703 * this cpu.
2704 * - We get to see if the ACK has actually been delivered.
2705 *
2706 * Based on failed experiments of reprogramming the
2707 * ioapic entry from outside of irq context starting
2708 * with masking the ioapic entry and then polling until
2709 * Remote IRR was clear before reprogramming the
2710 * ioapic I don't trust the Remote IRR bit to be
2711 * completey accurate.
2712 *
2713 * However there appears to be no other way to plug
2714 * this race, so if the Remote IRR bit is not
2715 * accurate and is causing problems then it is a hardware bug
2716 * and you can go talk to the chipset vendor about it.
2717 */
Yinghai Lu3145e942008-12-05 18:58:34 -08002718 cfg = desc->chip_data;
2719 if (!io_apic_level_ack_pending(cfg))
Ingo Molnar54168ed2008-08-20 09:07:45 +02002720 move_masked_irq(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -08002721 unmask_IO_APIC_irq_desc(desc);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002722 }
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002723}
Yinghai Lu1d025192008-08-19 20:50:34 -07002724
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002725#ifdef CONFIG_INTR_REMAP
2726static void ir_ack_apic_edge(unsigned int irq)
2727{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002728 ack_APIC_irq();
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002729}
2730
2731static void ir_ack_apic_level(unsigned int irq)
2732{
Weidong Han5d0ae2d2009-04-17 16:42:13 +08002733 struct irq_desc *desc = irq_to_desc(irq);
2734
2735 ack_APIC_irq();
2736 eoi_ioapic_irq(desc);
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002737}
2738#endif /* CONFIG_INTR_REMAP */
2739
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002740static struct irq_chip ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002741 .name = "IO-APIC",
2742 .startup = startup_ioapic_irq,
2743 .mask = mask_IO_APIC_irq,
2744 .unmask = unmask_IO_APIC_irq,
2745 .ack = ack_apic_edge,
2746 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002747#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002748 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002749#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002750 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751};
2752
Ingo Molnar54168ed2008-08-20 09:07:45 +02002753static struct irq_chip ir_ioapic_chip __read_mostly = {
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002754 .name = "IR-IO-APIC",
2755 .startup = startup_ioapic_irq,
2756 .mask = mask_IO_APIC_irq,
2757 .unmask = unmask_IO_APIC_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302758#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08002759 .ack = ir_ack_apic_edge,
2760 .eoi = ir_ack_apic_level,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002761#ifdef CONFIG_SMP
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02002762 .set_affinity = set_ir_ioapic_affinity_irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02002763#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05302764#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002765 .retrigger = ioapic_retrigger_irq,
2766};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768static inline void init_IO_APIC_traps(void)
2769{
2770 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002771 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002772 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 /*
2775 * NOTE! The local APIC isn't very good at handling
2776 * multiple interrupts at the same interrupt level.
2777 * As the interrupt level is determined by taking the
2778 * vector number and shifting that right by 4, we
2779 * want to spread these out a bit so that they don't
2780 * all fall in the same interrupt level.
2781 *
2782 * Also, we've got to be careful not to trash gate
2783 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2784 */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002785 for_each_irq_desc(irq, desc) {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002786 cfg = desc->chip_data;
2787 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 /*
2789 * Hmm.. We don't have an entry for this,
2790 * so default to an old-fashioned 8259
2791 * interrupt if we can..
2792 */
Jacob Panb81bb372009-11-09 11:27:04 -08002793 if (irq < legacy_pic->nr_legacy_irqs)
2794 legacy_pic->make_irq(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08002795 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002797 desc->chip = &no_irq_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799 }
2800}
2801
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002802/*
2803 * The local APIC irq-chip implementation:
2804 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002806static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
2808 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
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002814static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002816 unsigned long v;
2817
2818 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002819 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820}
2821
Yinghai Lu3145e942008-12-05 18:58:34 -08002822static void ack_lapic_irq(unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002823{
2824 ack_APIC_irq();
2825}
2826
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002827static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002828 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002829 .mask = mask_lapic_irq,
2830 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002831 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832};
2833
Yinghai Lu3145e942008-12-05 18:58:34 -08002834static void lapic_register_intr(int irq, struct irq_desc *desc)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002835{
Yinghai Lu08678b02008-08-19 20:50:05 -07002836 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002837 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2838 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002839}
2840
Jan Beuliche9427102008-01-30 13:31:24 +01002841static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002844 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 * We put the 8259A master into AEOI mode and
2846 * unmask on all local APICs LVT0 as NMI.
2847 *
2848 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2849 * is from Maciej W. Rozycki - so we do not have to EOI from
2850 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2853
Jan Beuliche9427102008-01-30 13:31:24 +01002854 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856 apic_printk(APIC_VERBOSE, " done.\n");
2857}
2858
2859/*
2860 * This looks a bit hackish but it's about the only one way of sending
2861 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2862 * not support the ExtINT mode, unfortunately. We need to send these
2863 * cycles as some i82489DX-based boards have glue logic that keeps the
2864 * 8259A interrupt line asserted until INTA. --macro
2865 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002866static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002868 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct IO_APIC_route_entry entry0, entry1;
2870 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002872 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002873 if (pin == -1) {
2874 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002876 }
2877 apic = find_isa_irq_apic(8, mp_INT);
2878 if (apic == -1) {
2879 WARN_ON_ONCE(1);
2880 return;
2881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Andi Kleencf4c6a22006-09-26 10:52:30 +02002883 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002884 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886 memset(&entry1, 0, sizeof(entry1));
2887
2888 entry1.dest_mode = 0; /* physical delivery */
2889 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002890 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 entry1.delivery_mode = dest_ExtINT;
2892 entry1.polarity = entry0.polarity;
2893 entry1.trigger = 0;
2894 entry1.vector = 0;
2895
Andi Kleencf4c6a22006-09-26 10:52:30 +02002896 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898 save_control = CMOS_READ(RTC_CONTROL);
2899 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2900 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2901 RTC_FREQ_SELECT);
2902 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2903
2904 i = 100;
2905 while (i-- > 0) {
2906 mdelay(10);
2907 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2908 i -= 10;
2909 }
2910
2911 CMOS_WRITE(save_control, RTC_CONTROL);
2912 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002913 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Andi Kleencf4c6a22006-09-26 10:52:30 +02002915 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916}
2917
Yinghai Luefa25592008-08-19 20:50:36 -07002918static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002919/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002920static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002921{
2922 disable_timer_pin_1 = 1;
2923 return 0;
2924}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002925early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002926
2927int timer_through_8259 __initdata;
2928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929/*
2930 * This code may look a bit paranoid, but it's supposed to cooperate with
2931 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2932 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2933 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002934 *
2935 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002937static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938{
Yinghai Lu3145e942008-12-05 18:58:34 -08002939 struct irq_desc *desc = irq_to_desc(0);
2940 struct irq_cfg *cfg = desc->chip_data;
Yinghai Lu85ac16d2009-04-27 18:00:38 -07002941 int node = cpu_to_node(boot_cpu_id);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002942 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002943 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002944 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002945
2946 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 /*
2949 * get/set the timer IRQ vector:
2950 */
Jacob Panb81bb372009-11-09 11:27:04 -08002951 legacy_pic->chip->mask(0);
Ingo Molnarfe402e12009-01-28 04:32:51 +01002952 assign_irq_vector(0, cfg, apic->target_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002955 * As IRQ0 is to be enabled in the 8259A, the virtual
2956 * wire has to be disabled in the local APIC. Also
2957 * timer interrupts need to be acknowledged manually in
2958 * the 8259A for the i82489DX when using the NMI
2959 * watchdog as that APIC treats NMIs as level-triggered.
2960 * The AEOI mode will finish them in the 8259A
2961 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002963 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Jacob Panb81bb372009-11-09 11:27:04 -08002964 legacy_pic->init(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002965#ifdef CONFIG_X86_32
Yinghai Luf72dcca2009-02-08 16:18:03 -08002966 {
2967 unsigned int ver;
2968
2969 ver = apic_read(APIC_LVR);
2970 ver = GET_APIC_VERSION(ver);
2971 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2972 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002973#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002975 pin1 = find_isa_irq_pin(0, mp_INT);
2976 apic1 = find_isa_irq_apic(0, mp_INT);
2977 pin2 = ioapic_i8259.pin;
2978 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002980 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2981 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002982 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002984 /*
2985 * Some BIOS writers are clueless and report the ExtINTA
2986 * I/O APIC input from the cascaded 8259A as the timer
2987 * interrupt input. So just in case, if only one pin
2988 * was found above, try it both directly and through the
2989 * 8259A.
2990 */
2991 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002992 if (intr_remapping_enabled)
2993 panic("BIOS bug: timer not connected to IO-APIC");
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002994 pin1 = pin2;
2995 apic1 = apic2;
2996 no_pin1 = 1;
2997 } else if (pin2 == -1) {
2998 pin2 = pin1;
2999 apic2 = apic1;
3000 }
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (pin1 != -1) {
3003 /*
3004 * Ok, does IRQ0 through the IOAPIC work?
3005 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01003006 if (no_pin1) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003007 add_pin_to_irq_node(cfg, node, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003008 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Yinghai Luf72dcca2009-02-08 16:18:03 -08003009 } else {
3010 /* for edge trigger, setup_IO_APIC_irq already
3011 * leave it unmasked.
3012 * so only need to unmask if it is level-trigger
3013 * do we really have level trigger timer?
3014 */
3015 int idx;
3016 idx = find_irq_entry(apic1, pin1, mp_INT);
3017 if (idx != -1 && irq_trigger(idx))
3018 unmask_IO_APIC_irq_desc(desc);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01003019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 if (timer_irq_works()) {
3021 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 setup_nmi();
Jacob Panb81bb372009-11-09 11:27:04 -08003023 legacy_pic->chip->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02003025 if (disable_timer_pin_1 > 0)
3026 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01003027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003029 if (intr_remapping_enabled)
3030 panic("timer doesn't work through Interrupt-remapped IO-APIC");
Yinghai Luf72dcca2009-02-08 16:18:03 -08003031 local_irq_disable();
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08003032 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01003033 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003034 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
3035 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003037 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
3038 "(IRQ0) through the 8259A ...\n");
3039 apic_printk(APIC_QUIET, KERN_INFO
3040 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 /*
3042 * legacy devices should be connected to IO APIC #0
3043 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003044 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003045 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Jacob Panb81bb372009-11-09 11:27:04 -08003046 legacy_pic->chip->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003048 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01003049 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 if (nmi_watchdog == NMI_IO_APIC) {
Jacob Panb81bb372009-11-09 11:27:04 -08003051 legacy_pic->chip->mask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 setup_nmi();
Jacob Panb81bb372009-11-09 11:27:04 -08003053 legacy_pic->chip->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01003055 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
3057 /*
3058 * Cleanup, just in case ...
3059 */
Yinghai Luf72dcca2009-02-08 16:18:03 -08003060 local_irq_disable();
Jacob Panb81bb372009-11-09 11:27:04 -08003061 legacy_pic->chip->mask(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08003062 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003063 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003067 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
3068 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04003069 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02003071#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01003072 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003075 apic_printk(APIC_QUIET, KERN_INFO
3076 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Yinghai Lu3145e942008-12-05 18:58:34 -08003078 lapic_register_intr(0, desc);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003079 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Jacob Panb81bb372009-11-09 11:27:04 -08003080 legacy_pic->chip->unmask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
3082 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003083 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003084 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003086 local_irq_disable();
Jacob Panb81bb372009-11-09 11:27:04 -08003087 legacy_pic->chip->mask(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003088 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003089 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003091 apic_printk(APIC_QUIET, KERN_INFO
3092 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Jacob Panb81bb372009-11-09 11:27:04 -08003094 legacy_pic->init(0);
3095 legacy_pic->make_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01003096 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
3098 unlock_ExtINT_logic();
3099
3100 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003101 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 }
Yinghai Luf72dcca2009-02-08 16:18:03 -08003104 local_irq_disable();
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003105 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01003107 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01003108out:
3109 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
3111
3112/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01003113 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
3114 * to devices. However there may be an I/O APIC pin available for
3115 * this interrupt regardless. The pin may be left unconnected, but
3116 * typically it will be reused as an ExtINT cascade interrupt for
3117 * the master 8259A. In the MPS case such a pin will normally be
3118 * reported as an ExtINT interrupt in the MP table. With ACPI
3119 * there is no provision for ExtINT interrupts, and in the absence
3120 * of an override it would be treated as an ordinary ISA I/O APIC
3121 * interrupt, that is edge-triggered and unmasked by default. We
3122 * used to do this, but it caused problems on some systems because
3123 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3124 * the same ExtINT cascade interrupt to drive the local APIC of the
3125 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3126 * the I/O APIC in all cases now. No actual device should request
3127 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 */
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003129#define PIC_IRQS (1UL << PIC_CASCADE_IR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131void __init setup_IO_APIC(void)
3132{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003133
Ingo Molnar54168ed2008-08-20 09:07:45 +02003134 /*
3135 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3136 */
Jacob Panb81bb372009-11-09 11:27:04 -08003137 io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Ingo Molnar54168ed2008-08-20 09:07:45 +02003139 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003140 /*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003141 * Set up IO-APIC IRQ routing.
3142 */
Thomas Gleixnerde934102009-08-20 09:27:29 +02003143 x86_init.mpparse.setup_ioapic_ids();
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 sync_Arb_IDs();
3146 setup_IO_APIC_irqs();
3147 init_IO_APIC_traps();
Jacob Panb81bb372009-11-09 11:27:04 -08003148 if (legacy_pic->nr_legacy_irqs)
Thomas Gleixnerbc078442009-08-29 18:09:57 +02003149 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150}
3151
3152/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02003153 * Called after all the initialization is done. If we didnt find any
3154 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157static int __init io_apic_bug_finalize(void)
3158{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003159 if (sis_apic_bug == -1)
3160 sis_apic_bug = 0;
3161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162}
3163
3164late_initcall(io_apic_bug_finalize);
3165
3166struct sysfs_ioapic_data {
3167 struct sys_device dev;
3168 struct IO_APIC_route_entry entry[0];
3169};
Ingo Molnar54168ed2008-08-20 09:07:45 +02003170static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Pavel Machek438510f2005-04-16 15:25:24 -07003172static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
3174 struct IO_APIC_route_entry *entry;
3175 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 data = container_of(dev, struct sysfs_ioapic_data, dev);
3179 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003180 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3181 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183 return 0;
3184}
3185
3186static int ioapic_resume(struct sys_device *dev)
3187{
3188 struct IO_APIC_route_entry *entry;
3189 struct sysfs_ioapic_data *data;
3190 unsigned long flags;
3191 union IO_APIC_reg_00 reg_00;
3192 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 data = container_of(dev, struct sysfs_ioapic_data, dev);
3195 entry = data->entry;
3196
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003197 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 reg_00.raw = io_apic_read(dev->id, 0);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05303199 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3200 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 io_apic_write(dev->id, 0, reg_00.raw);
3202 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003203 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003204 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003205 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207 return 0;
3208}
3209
3210static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003211 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 .suspend = ioapic_suspend,
3213 .resume = ioapic_resume,
3214};
3215
3216static int __init ioapic_init_sysfs(void)
3217{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003218 struct sys_device * dev;
3219 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 error = sysdev_class_register(&ioapic_sysdev_class);
3222 if (error)
3223 return error;
3224
Ingo Molnar54168ed2008-08-20 09:07:45 +02003225 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003226 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003228 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 if (!mp_ioapic_data[i]) {
3230 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3231 continue;
3232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003234 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 dev->cls = &ioapic_sysdev_class;
3236 error = sysdev_register(dev);
3237 if (error) {
3238 kfree(mp_ioapic_data[i]);
3239 mp_ioapic_data[i] = NULL;
3240 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3241 continue;
3242 }
3243 }
3244
3245 return 0;
3246}
3247
3248device_initcall(ioapic_init_sysfs);
3249
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003250/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003251 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003252 */
Yinghai Lud047f53a2009-04-27 18:02:23 -07003253unsigned int create_irq_nr(unsigned int irq_want, int node)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003254{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003255 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003256 unsigned int irq;
3257 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003258 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003259 struct irq_cfg *cfg_new = NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003260 struct irq_desc *desc_new = NULL;
Yinghai Lu199751d2008-08-19 20:50:27 -07003261
3262 irq = 0;
Yinghai Luabcaa2b2009-02-08 16:18:03 -08003263 if (irq_want < nr_irqs_gsi)
3264 irq_want = nr_irqs_gsi;
3265
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003266 raw_spin_lock_irqsave(&vector_lock, flags);
Mike Travis95949492009-01-10 22:24:06 -08003267 for (new = irq_want; new < nr_irqs; new++) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -07003268 desc_new = irq_to_desc_alloc_node(new, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003269 if (!desc_new) {
3270 printk(KERN_INFO "can not get irq_desc for %d\n", new);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003271 continue;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003272 }
3273 cfg_new = desc_new->chip_data;
3274
3275 if (cfg_new->vector != 0)
3276 continue;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003277
Yinghai Lu15e957d2009-04-30 01:17:50 -07003278 desc_new = move_irq_desc(desc_new, node);
Yinghai Lu37ef2a32009-11-21 00:23:37 -08003279 cfg_new = desc_new->chip_data;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003280
Ingo Molnarfe402e12009-01-28 04:32:51 +01003281 if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003282 irq = new;
3283 break;
3284 }
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003285 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003286
Brandon Phiilpsced5b692010-02-10 01:20:06 -08003287 if (irq > 0)
3288 dynamic_irq_init_keep_chip_data(irq);
3289
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003290 return irq;
3291}
3292
Yinghai Lu199751d2008-08-19 20:50:27 -07003293int create_irq(void)
3294{
Yinghai Lud047f53a2009-04-27 18:02:23 -07003295 int node = cpu_to_node(boot_cpu_id);
Yinghai Lube5d5352008-12-05 18:58:33 -08003296 unsigned int irq_want;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003297 int irq;
3298
Yinghai Lube5d5352008-12-05 18:58:33 -08003299 irq_want = nr_irqs_gsi;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003300 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003301
3302 if (irq == 0)
3303 irq = -1;
3304
3305 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003306}
3307
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003308void destroy_irq(unsigned int irq)
3309{
3310 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003311
Brandon Phiilpsced5b692010-02-10 01:20:06 -08003312 dynamic_irq_cleanup_keep_chip_data(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003313
Ingo Molnar54168ed2008-08-20 09:07:45 +02003314 free_irte(irq);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003315 raw_spin_lock_irqsave(&vector_lock, flags);
Brandon Philipseb5b3792010-02-07 13:02:50 -08003316 __clear_irq_vector(irq, get_irq_chip_data(irq));
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003317 raw_spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003318}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003319
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003320/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003321 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003322 */
3323#ifdef CONFIG_PCI_MSI
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003324static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3325 struct msi_msg *msg, u8 hpet_id)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003326{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003327 struct irq_cfg *cfg;
3328 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003329 unsigned dest;
3330
Jan Beulichf1182632009-01-14 12:27:35 +00003331 if (disable_apic)
3332 return -ENXIO;
3333
Yinghai Lu3145e942008-12-05 18:58:34 -08003334 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003335 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Yinghai Lu497c9a12008-08-19 20:50:28 -07003336 if (err)
3337 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003338
Ingo Molnardebccb32009-01-28 15:20:18 +01003339 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003340
Ingo Molnar54168ed2008-08-20 09:07:45 +02003341 if (irq_remapped(irq)) {
3342 struct irte irte;
3343 int ir_index;
3344 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003345
Ingo Molnar54168ed2008-08-20 09:07:45 +02003346 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3347 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003348
Ingo Molnar54168ed2008-08-20 09:07:45 +02003349 memset (&irte, 0, sizeof(irte));
3350
3351 irte.present = 1;
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003352 irte.dst_mode = apic->irq_dest_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003353 irte.trigger_mode = 0; /* edge */
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003354 irte.dlvry_mode = apic->irq_delivery_mode;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003355 irte.vector = cfg->vector;
3356 irte.dest_id = IRTE_DEST(dest);
3357
Weidong Hanf007e992009-05-23 00:41:15 +08003358 /* Set source-id of interrupt request */
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003359 if (pdev)
3360 set_msi_sid(&irte, pdev);
3361 else
3362 set_hpet_sid(&irte, hpet_id);
Weidong Hanf007e992009-05-23 00:41:15 +08003363
Ingo Molnar54168ed2008-08-20 09:07:45 +02003364 modify_irte(irq, &irte);
3365
3366 msg->address_hi = MSI_ADDR_BASE_HI;
3367 msg->data = sub_handle;
3368 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3369 MSI_ADDR_IR_SHV |
3370 MSI_ADDR_IR_INDEX1(ir_index) |
3371 MSI_ADDR_IR_INDEX2(ir_index);
Suresh Siddha29b61be2009-03-16 17:05:02 -07003372 } else {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003373 if (x2apic_enabled())
3374 msg->address_hi = MSI_ADDR_BASE_HI |
3375 MSI_ADDR_EXT_DEST_ID(dest);
3376 else
3377 msg->address_hi = MSI_ADDR_BASE_HI;
3378
Ingo Molnar54168ed2008-08-20 09:07:45 +02003379 msg->address_lo =
3380 MSI_ADDR_BASE_LO |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003381 ((apic->irq_dest_mode == 0) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003382 MSI_ADDR_DEST_MODE_PHYSICAL:
3383 MSI_ADDR_DEST_MODE_LOGICAL) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003384 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003385 MSI_ADDR_REDIRECTION_CPU:
3386 MSI_ADDR_REDIRECTION_LOWPRI) |
3387 MSI_ADDR_DEST_ID(dest);
3388
3389 msg->data =
3390 MSI_DATA_TRIGGER_EDGE |
3391 MSI_DATA_LEVEL_ASSERT |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003392 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Ingo Molnar54168ed2008-08-20 09:07:45 +02003393 MSI_DATA_DELIVERY_FIXED:
3394 MSI_DATA_DELIVERY_LOWPRI) |
3395 MSI_DATA_VECTOR(cfg->vector);
3396 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003397 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003398}
3399
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003400#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003401static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003402{
Yinghai Lu3145e942008-12-05 18:58:34 -08003403 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003404 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003405 struct msi_msg msg;
3406 unsigned int dest;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003407
Suresh Siddha18374d82009-12-17 18:29:46 -08003408 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003409 return -1;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003410
Yinghai Lu3145e942008-12-05 18:58:34 -08003411 cfg = desc->chip_data;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003412
Yinghai Lu3145e942008-12-05 18:58:34 -08003413 read_msi_msg_desc(desc, &msg);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003414
3415 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003416 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003417 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3418 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3419
Yinghai Lu3145e942008-12-05 18:58:34 -08003420 write_msi_msg_desc(desc, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003421
3422 return 0;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003423}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003424#ifdef CONFIG_INTR_REMAP
3425/*
3426 * Migrate the MSI irq to another cpumask. This migration is
3427 * done in the process context using interrupt-remapping hardware.
3428 */
Yinghai Lud5dedd42009-04-27 17:59:21 -07003429static int
Mike Travise7986732008-12-16 17:33:52 -08003430ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003431{
Yinghai Lu3145e942008-12-05 18:58:34 -08003432 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnara7883de2008-12-19 00:59:09 +01003433 struct irq_cfg *cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003434 unsigned int dest;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003435 struct irte irte;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003436
3437 if (get_irte(irq, &irte))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003438 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003439
Suresh Siddha18374d82009-12-17 18:29:46 -08003440 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003441 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003442
Ingo Molnar54168ed2008-08-20 09:07:45 +02003443 irte.vector = cfg->vector;
3444 irte.dest_id = IRTE_DEST(dest);
3445
3446 /*
3447 * atomically update the IRTE with the new destination and vector.
3448 */
3449 modify_irte(irq, &irte);
3450
3451 /*
3452 * After this point, all the interrupts will start arriving
3453 * at the new destination. So, time to cleanup the previous
3454 * vector allocation.
3455 */
Mike Travis22f65d32008-12-16 17:33:56 -08003456 if (cfg->move_in_progress)
3457 send_cleanup_vector(cfg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003458
3459 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003460}
Yinghai Lu3145e942008-12-05 18:58:34 -08003461
Ingo Molnar54168ed2008-08-20 09:07:45 +02003462#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003463#endif /* CONFIG_SMP */
3464
3465/*
3466 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3467 * which implement the MSI or MSI-X Capability Structure.
3468 */
3469static struct irq_chip msi_chip = {
3470 .name = "PCI-MSI",
3471 .unmask = unmask_msi_irq,
3472 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003473 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003474#ifdef CONFIG_SMP
3475 .set_affinity = set_msi_irq_affinity,
3476#endif
3477 .retrigger = ioapic_retrigger_irq,
3478};
3479
Ingo Molnar54168ed2008-08-20 09:07:45 +02003480static struct irq_chip msi_ir_chip = {
3481 .name = "IR-PCI-MSI",
3482 .unmask = unmask_msi_irq,
3483 .mask = mask_msi_irq,
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303484#ifdef CONFIG_INTR_REMAP
Han, Weidongd0b03bd2009-04-03 17:15:50 +08003485 .ack = ir_ack_apic_edge,
Ingo Molnar54168ed2008-08-20 09:07:45 +02003486#ifdef CONFIG_SMP
3487 .set_affinity = ir_set_msi_irq_affinity,
3488#endif
Jaswinder Singh Rajputa1e38ca2009-03-23 02:11:25 +05303489#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02003490 .retrigger = ioapic_retrigger_irq,
3491};
3492
3493/*
3494 * Map the PCI dev to the corresponding remapping hardware unit
3495 * and allocate 'nvec' consecutive interrupt-remapping table entries
3496 * in it.
3497 */
3498static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3499{
3500 struct intel_iommu *iommu;
3501 int index;
3502
3503 iommu = map_dev_to_ir(dev);
3504 if (!iommu) {
3505 printk(KERN_ERR
3506 "Unable to map PCI %s to iommu\n", pci_name(dev));
3507 return -ENOENT;
3508 }
3509
3510 index = alloc_irte(iommu, irq, nvec);
3511 if (index < 0) {
3512 printk(KERN_ERR
3513 "Unable to allocate %d IRTE for PCI %s\n", nvec,
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02003514 pci_name(dev));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003515 return -ENOSPC;
3516 }
3517 return index;
3518}
Yinghai Lu1d025192008-08-19 20:50:34 -07003519
Yinghai Lu3145e942008-12-05 18:58:34 -08003520static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07003521{
3522 int ret;
3523 struct msi_msg msg;
3524
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003525 ret = msi_compose_msg(dev, irq, &msg, -1);
Yinghai Lu1d025192008-08-19 20:50:34 -07003526 if (ret < 0)
3527 return ret;
3528
Yinghai Lu3145e942008-12-05 18:58:34 -08003529 set_irq_msi(irq, msidesc);
Yinghai Lu1d025192008-08-19 20:50:34 -07003530 write_msi_msg(irq, &msg);
3531
Ingo Molnar54168ed2008-08-20 09:07:45 +02003532 if (irq_remapped(irq)) {
3533 struct irq_desc *desc = irq_to_desc(irq);
3534 /*
3535 * irq migration in process context
3536 */
3537 desc->status |= IRQ_MOVE_PCNTXT;
3538 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3539 } else
Ingo Molnar54168ed2008-08-20 09:07:45 +02003540 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003541
Yinghai Luc81bba42008-09-25 11:53:11 -07003542 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3543
Yinghai Lu1d025192008-08-19 20:50:34 -07003544 return 0;
3545}
3546
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003547int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3548{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003549 unsigned int irq;
3550 int ret, sub_handle;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003551 struct msi_desc *msidesc;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003552 unsigned int irq_want;
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003553 struct intel_iommu *iommu = NULL;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003554 int index = 0;
Yinghai Lud047f53a2009-04-27 18:02:23 -07003555 int node;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003556
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -04003557 /* x86 doesn't support multiple MSI yet */
3558 if (type == PCI_CAP_ID_MSI && nvec > 1)
3559 return 1;
3560
Yinghai Lud047f53a2009-04-27 18:02:23 -07003561 node = dev_to_node(&dev->dev);
Yinghai Lube5d5352008-12-05 18:58:33 -08003562 irq_want = nr_irqs_gsi;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003563 sub_handle = 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003564 list_for_each_entry(msidesc, &dev->msi_list, list) {
Yinghai Lud047f53a2009-04-27 18:02:23 -07003565 irq = create_irq_nr(irq_want, node);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003566 if (irq == 0)
3567 return -1;
Yinghai Luf1ee5542009-02-08 16:18:03 -08003568 irq_want = irq + 1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003569 if (!intr_remapping_enabled)
3570 goto no_ir;
3571
3572 if (!sub_handle) {
3573 /*
3574 * allocate the consecutive block of IRTE's
3575 * for 'nvec'
3576 */
3577 index = msi_alloc_irte(dev, irq, nvec);
3578 if (index < 0) {
3579 ret = index;
3580 goto error;
3581 }
3582 } else {
3583 iommu = map_dev_to_ir(dev);
3584 if (!iommu) {
3585 ret = -ENOENT;
3586 goto error;
3587 }
3588 /*
3589 * setup the mapping between the irq and the IRTE
3590 * base index, the sub_handle pointing to the
3591 * appropriate interrupt remap table entry.
3592 */
3593 set_irte_irq(irq, iommu, index, sub_handle);
3594 }
3595no_ir:
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08003596 ret = setup_msi_irq(dev, msidesc, irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003597 if (ret < 0)
3598 goto error;
3599 sub_handle++;
3600 }
3601 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003602
3603error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003604 destroy_irq(irq);
3605 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003606}
3607
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003608void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003609{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003610 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003611}
3612
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003613#if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003614#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003615static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003616{
Yinghai Lu3145e942008-12-05 18:58:34 -08003617 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003618 struct irq_cfg *cfg;
3619 struct msi_msg msg;
3620 unsigned int dest;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003621
Suresh Siddha18374d82009-12-17 18:29:46 -08003622 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003623 return -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003624
Yinghai Lu3145e942008-12-05 18:58:34 -08003625 cfg = desc->chip_data;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003626
3627 dmar_msi_read(irq, &msg);
3628
3629 msg.data &= ~MSI_DATA_VECTOR_MASK;
3630 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3631 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3632 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3633
3634 dmar_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003635
3636 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003637}
Yinghai Lu3145e942008-12-05 18:58:34 -08003638
Ingo Molnar54168ed2008-08-20 09:07:45 +02003639#endif /* CONFIG_SMP */
3640
Jaswinder Singh Rajput8f7007a2009-06-10 12:41:01 -07003641static struct irq_chip dmar_msi_type = {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003642 .name = "DMAR_MSI",
3643 .unmask = dmar_msi_unmask,
3644 .mask = dmar_msi_mask,
3645 .ack = ack_apic_edge,
3646#ifdef CONFIG_SMP
3647 .set_affinity = dmar_msi_set_affinity,
3648#endif
3649 .retrigger = ioapic_retrigger_irq,
3650};
3651
3652int arch_setup_dmar_msi(unsigned int irq)
3653{
3654 int ret;
3655 struct msi_msg msg;
3656
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003657 ret = msi_compose_msg(NULL, irq, &msg, -1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003658 if (ret < 0)
3659 return ret;
3660 dmar_msi_write(irq, &msg);
3661 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3662 "edge");
3663 return 0;
3664}
3665#endif
3666
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003667#ifdef CONFIG_HPET_TIMER
3668
3669#ifdef CONFIG_SMP
Yinghai Lud5dedd42009-04-27 17:59:21 -07003670static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003671{
Yinghai Lu3145e942008-12-05 18:58:34 -08003672 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003673 struct irq_cfg *cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003674 struct msi_msg msg;
3675 unsigned int dest;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003676
Suresh Siddha18374d82009-12-17 18:29:46 -08003677 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003678 return -1;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003679
Yinghai Lu3145e942008-12-05 18:58:34 -08003680 cfg = desc->chip_data;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003681
3682 hpet_msi_read(irq, &msg);
3683
3684 msg.data &= ~MSI_DATA_VECTOR_MASK;
3685 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3686 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3687 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3688
3689 hpet_msi_write(irq, &msg);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003690
3691 return 0;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003692}
Yinghai Lu3145e942008-12-05 18:58:34 -08003693
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003694#endif /* CONFIG_SMP */
3695
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003696static struct irq_chip ir_hpet_msi_type = {
3697 .name = "IR-HPET_MSI",
3698 .unmask = hpet_msi_unmask,
3699 .mask = hpet_msi_mask,
3700#ifdef CONFIG_INTR_REMAP
3701 .ack = ir_ack_apic_edge,
3702#ifdef CONFIG_SMP
3703 .set_affinity = ir_set_msi_irq_affinity,
3704#endif
3705#endif
3706 .retrigger = ioapic_retrigger_irq,
3707};
3708
Dmitri Vorobiev1cc18522009-03-22 19:11:09 +02003709static struct irq_chip hpet_msi_type = {
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003710 .name = "HPET_MSI",
3711 .unmask = hpet_msi_unmask,
3712 .mask = hpet_msi_mask,
3713 .ack = ack_apic_edge,
3714#ifdef CONFIG_SMP
3715 .set_affinity = hpet_msi_set_affinity,
3716#endif
3717 .retrigger = ioapic_retrigger_irq,
3718};
3719
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003720int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003721{
3722 int ret;
3723 struct msi_msg msg;
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003724 struct irq_desc *desc = irq_to_desc(irq);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003725
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003726 if (intr_remapping_enabled) {
3727 struct intel_iommu *iommu = map_hpet_to_ir(id);
3728 int index;
3729
3730 if (!iommu)
3731 return -1;
3732
3733 index = alloc_irte(iommu, irq, 1);
3734 if (index < 0)
3735 return -1;
3736 }
3737
3738 ret = msi_compose_msg(NULL, irq, &msg, id);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003739 if (ret < 0)
3740 return ret;
3741
3742 hpet_msi_write(irq, &msg);
Pallipadi, Venkatesh6ec3cfe2009-04-13 15:20:58 -07003743 desc->status |= IRQ_MOVE_PCNTXT;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -07003744 if (irq_remapped(irq))
3745 set_irq_chip_and_handler_name(irq, &ir_hpet_msi_type,
3746 handle_edge_irq, "edge");
3747 else
3748 set_irq_chip_and_handler_name(irq, &hpet_msi_type,
3749 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003750
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003751 return 0;
3752}
3753#endif
3754
Ingo Molnar54168ed2008-08-20 09:07:45 +02003755#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003756/*
3757 * Hypertransport interrupt support
3758 */
3759#ifdef CONFIG_HT_IRQ
3760
3761#ifdef CONFIG_SMP
3762
Yinghai Lu497c9a12008-08-19 20:50:28 -07003763static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003764{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003765 struct ht_irq_msg msg;
3766 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003767
Yinghai Lu497c9a12008-08-19 20:50:28 -07003768 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003769 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003770
Yinghai Lu497c9a12008-08-19 20:50:28 -07003771 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003772 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003773
Eric W. Biedermanec683072006-11-08 17:44:57 -08003774 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003775}
3776
Yinghai Lud5dedd42009-04-27 17:59:21 -07003777static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003778{
Yinghai Lu3145e942008-12-05 18:58:34 -08003779 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003780 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003781 unsigned int dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003782
Suresh Siddha18374d82009-12-17 18:29:46 -08003783 if (set_desc_affinity(desc, mask, &dest))
Yinghai Lud5dedd42009-04-27 17:59:21 -07003784 return -1;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003785
Yinghai Lu3145e942008-12-05 18:58:34 -08003786 cfg = desc->chip_data;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003787
Yinghai Lu497c9a12008-08-19 20:50:28 -07003788 target_ht_irq(irq, dest, cfg->vector);
Yinghai Lud5dedd42009-04-27 17:59:21 -07003789
3790 return 0;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003791}
Yinghai Lu3145e942008-12-05 18:58:34 -08003792
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003793#endif
3794
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003795static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003796 .name = "PCI-HT",
3797 .mask = mask_ht_irq,
3798 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003799 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003800#ifdef CONFIG_SMP
3801 .set_affinity = set_ht_irq_affinity,
3802#endif
3803 .retrigger = ioapic_retrigger_irq,
3804};
3805
3806int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3807{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003808 struct irq_cfg *cfg;
3809 int err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003810
Jan Beulichf1182632009-01-14 12:27:35 +00003811 if (disable_apic)
3812 return -ENXIO;
3813
Yinghai Lu3145e942008-12-05 18:58:34 -08003814 cfg = irq_cfg(irq);
Ingo Molnarfe402e12009-01-28 04:32:51 +01003815 err = assign_irq_vector(irq, cfg, apic->target_cpus());
Ingo Molnar54168ed2008-08-20 09:07:45 +02003816 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003817 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003818 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003819
Ingo Molnardebccb32009-01-28 15:20:18 +01003820 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3821 apic->target_cpus());
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003822
Eric W. Biedermanec683072006-11-08 17:44:57 -08003823 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003824
Eric W. Biedermanec683072006-11-08 17:44:57 -08003825 msg.address_lo =
3826 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003827 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003828 HT_IRQ_LOW_VECTOR(cfg->vector) |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003829 ((apic->irq_dest_mode == 0) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003830 HT_IRQ_LOW_DM_PHYSICAL :
3831 HT_IRQ_LOW_DM_LOGICAL) |
3832 HT_IRQ_LOW_RQEOI_EDGE |
Ingo Molnar9b5bc8d2009-01-28 04:09:58 +01003833 ((apic->irq_delivery_mode != dest_LowestPrio) ?
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003834 HT_IRQ_LOW_MT_FIXED :
3835 HT_IRQ_LOW_MT_ARBITRATED) |
3836 HT_IRQ_LOW_IRQ_MASKED;
3837
Eric W. Biedermanec683072006-11-08 17:44:57 -08003838 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003839
Ingo Molnara460e742006-10-17 00:10:03 -07003840 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3841 handle_edge_irq, "edge");
Yinghai Luc81bba42008-09-25 11:53:11 -07003842
3843 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003844 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003845 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003846}
3847#endif /* CONFIG_HT_IRQ */
3848
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003849int __init io_apic_get_redir_entries (int ioapic)
3850{
3851 union IO_APIC_reg_01 reg_01;
3852 unsigned long flags;
3853
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003854 raw_spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003855 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02003856 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003857
3858 return reg_01.bits.entries;
3859}
3860
Yinghai Lube5d5352008-12-05 18:58:33 -08003861void __init probe_nr_irqs_gsi(void)
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003862{
Yinghai Lube5d5352008-12-05 18:58:33 -08003863 int nr = 0;
3864
Yinghai Lucc6c5002009-02-08 16:18:03 -08003865 nr = acpi_probe_gsi();
3866 if (nr > nr_irqs_gsi) {
Yinghai Lube5d5352008-12-05 18:58:33 -08003867 nr_irqs_gsi = nr;
Yinghai Lucc6c5002009-02-08 16:18:03 -08003868 } else {
3869 /* for acpi=off or acpi is not compiled in */
3870 int idx;
3871
3872 nr = 0;
3873 for (idx = 0; idx < nr_ioapics; idx++)
3874 nr += io_apic_get_redir_entries(idx) + 1;
3875
3876 if (nr > nr_irqs_gsi)
3877 nr_irqs_gsi = nr;
3878 }
3879
3880 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003881}
3882
Yinghai Lu4a046d12009-01-12 17:39:24 -08003883#ifdef CONFIG_SPARSE_IRQ
3884int __init arch_probe_nr_irqs(void)
3885{
3886 int nr;
3887
Yinghai Luf1ee5542009-02-08 16:18:03 -08003888 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3889 nr_irqs = NR_VECTORS * nr_cpu_ids;
Yinghai Lu4a046d12009-01-12 17:39:24 -08003890
Yinghai Luf1ee5542009-02-08 16:18:03 -08003891 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3892#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3893 /*
3894 * for MSI and HT dyn irq
3895 */
3896 nr += nr_irqs_gsi * 16;
3897#endif
3898 if (nr < nr_irqs)
Yinghai Lu4a046d12009-01-12 17:39:24 -08003899 nr_irqs = nr;
3900
3901 return 0;
3902}
3903#endif
3904
Yinghai Lue5198072009-05-15 13:05:16 -07003905static int __io_apic_set_pci_routing(struct device *dev, int irq,
3906 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003907{
3908 struct irq_desc *desc;
3909 struct irq_cfg *cfg;
3910 int node;
Yinghai Lue5198072009-05-15 13:05:16 -07003911 int ioapic, pin;
3912 int trigger, polarity;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003913
Yinghai Lue5198072009-05-15 13:05:16 -07003914 ioapic = irq_attr->ioapic;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003915 if (!IO_APIC_IRQ(irq)) {
3916 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3917 ioapic);
3918 return -EINVAL;
3919 }
3920
3921 if (dev)
3922 node = dev_to_node(dev);
3923 else
3924 node = cpu_to_node(boot_cpu_id);
3925
3926 desc = irq_to_desc_alloc_node(irq, node);
3927 if (!desc) {
3928 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3929 return 0;
3930 }
3931
Yinghai Lue5198072009-05-15 13:05:16 -07003932 pin = irq_attr->ioapic_pin;
3933 trigger = irq_attr->trigger;
3934 polarity = irq_attr->polarity;
3935
Yinghai Lu5ef21832009-05-06 10:08:50 -07003936 /*
3937 * IRQs < 16 are already in the irq_2_pin[] map
3938 */
Jacob Panb81bb372009-11-09 11:27:04 -08003939 if (irq >= legacy_pic->nr_legacy_irqs) {
Yinghai Lu5ef21832009-05-06 10:08:50 -07003940 cfg = desc->chip_data;
Cyrill Gorcunovf3d19152009-08-06 00:09:31 +04003941 if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) {
3942 printk(KERN_INFO "can not add pin %d for irq %d\n",
3943 pin, irq);
3944 return 0;
3945 }
Yinghai Lu5ef21832009-05-06 10:08:50 -07003946 }
3947
Yinghai Lue5198072009-05-15 13:05:16 -07003948 setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003949
3950 return 0;
3951}
3952
Yinghai Lue5198072009-05-15 13:05:16 -07003953int io_apic_set_pci_routing(struct device *dev, int irq,
3954 struct io_apic_irq_attr *irq_attr)
Yinghai Lu5ef21832009-05-06 10:08:50 -07003955{
Yinghai Lue5198072009-05-15 13:05:16 -07003956 int ioapic, pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003957 /*
3958 * Avoid pin reprogramming. PRTs typically include entries
3959 * with redundant pin->gsi mappings (but unique PCI devices);
3960 * we only program the IOAPIC on the first.
3961 */
Yinghai Lue5198072009-05-15 13:05:16 -07003962 ioapic = irq_attr->ioapic;
3963 pin = irq_attr->ioapic_pin;
Yinghai Lu5ef21832009-05-06 10:08:50 -07003964 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3965 pr_debug("Pin %d-%d already programmed\n",
3966 mp_ioapics[ioapic].apicid, pin);
3967 return 0;
3968 }
3969 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3970
Yinghai Lue5198072009-05-15 13:05:16 -07003971 return __io_apic_set_pci_routing(dev, irq, irq_attr);
Yinghai Lu5ef21832009-05-06 10:08:50 -07003972}
3973
Feng Tang2a4ab642009-07-07 23:01:15 -04003974u8 __init io_apic_unique_id(u8 id)
3975{
3976#ifdef CONFIG_X86_32
3977 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3978 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3979 return io_apic_get_unique_id(nr_ioapics, id);
3980 else
3981 return id;
3982#else
3983 int i;
3984 DECLARE_BITMAP(used, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
Feng Tang2a4ab642009-07-07 23:01:15 -04003986 bitmap_zero(used, 256);
3987 for (i = 0; i < nr_ioapics; i++) {
3988 struct mpc_ioapic *ia = &mp_ioapics[i];
3989 __set_bit(ia->apicid, used);
3990 }
3991 if (!test_bit(id, used))
3992 return id;
3993 return find_first_zero_bit(used, 256);
3994#endif
3995}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Ingo Molnar54168ed2008-08-20 09:07:45 +02003997#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003998int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999{
4000 union IO_APIC_reg_00 reg_00;
4001 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
4002 physid_mask_t tmp;
4003 unsigned long flags;
4004 int i = 0;
4005
4006 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004007 * The P4 platform supports up to 256 APIC IDs on two separate APIC
4008 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
4012 * advantage of new APIC bus architecture.
4013 */
4014
4015 if (physids_empty(apic_id_map))
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004016 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004018 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004020 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
4022 if (apic_id >= get_physical_broadcast()) {
4023 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
4024 "%d\n", ioapic, apic_id, reg_00.bits.ID);
4025 apic_id = reg_00.bits.ID;
4026 }
4027
4028 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004029 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 * 'stuck on smp_invalidate_needed IPI wait' messages.
4031 */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004032 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
4034 for (i = 0; i < get_physical_broadcast(); i++) {
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004035 if (!apic->check_apicid_used(&apic_id_map, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 break;
4037 }
4038
4039 if (i == get_physical_broadcast())
4040 panic("Max apic_id exceeded!\n");
4041
4042 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
4043 "trying %d\n", ioapic, apic_id, i);
4044
4045 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +03004048 apic->apicid_to_cpu_present(apic_id, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 physids_or(apic_id_map, apic_id_map, tmp);
4050
4051 if (reg_00.bits.ID != apic_id) {
4052 reg_00.bits.ID = apic_id;
4053
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004054 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 io_apic_write(ioapic, 0, reg_00.raw);
4056 reg_00.raw = io_apic_read(ioapic, 0);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004057 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
4059 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01004060 if (reg_00.bits.ID != apic_id) {
4061 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
4062 return -1;
4063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 }
4065
4066 apic_printk(APIC_VERBOSE, KERN_INFO
4067 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
4068
4069 return apic_id;
4070}
Naga Chumbalkar58f892e2009-05-26 21:48:07 +00004071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02004073int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074{
4075 union IO_APIC_reg_01 reg_01;
4076 unsigned long flags;
4077
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004078 raw_spin_lock_irqsave(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 reg_01.raw = io_apic_read(ioapic, 1);
Thomas Gleixnerdade7712009-07-25 18:39:36 +02004080 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082 return reg_01.bits.version;
4083}
4084
Shaohua Li61fd47e2007-11-17 01:05:28 -05004085int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4086{
4087 int i;
4088
4089 if (skip_ioapic_setup)
4090 return -1;
4091
4092 for (i = 0; i < mp_irq_entries; i++)
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05304093 if (mp_irqs[i].irqtype == mp_INT &&
4094 mp_irqs[i].srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05004095 break;
4096 if (i >= mp_irq_entries)
4097 return -1;
4098
4099 *trigger = irq_trigger(i);
4100 *polarity = irq_polarity(i);
4101 return 0;
4102}
4103
Yinghai Lu497c9a12008-08-19 20:50:28 -07004104/*
4105 * This function currently is only a helper for the i386 smp boot process where
4106 * we need to reprogram the ioredtbls to cater for the cpus which have come online
Ingo Molnarfe402e12009-01-28 04:32:51 +01004107 * so mask in all cases should simply be apic->target_cpus()
Yinghai Lu497c9a12008-08-19 20:50:28 -07004108 */
4109#ifdef CONFIG_SMP
4110void __init setup_ioapic_dest(void)
4111{
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004112 int pin, ioapic, irq, irq_entry;
Thomas Gleixner6c2e9402008-11-07 12:33:49 +01004113 struct irq_desc *desc;
Mike Travis22f65d32008-12-16 17:33:56 -08004114 const struct cpumask *mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -07004115
4116 if (skip_ioapic_setup == 1)
4117 return;
4118
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004119 for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
Yinghai Lub9c61b702009-05-06 10:10:06 -07004120 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4121 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4122 if (irq_entry == -1)
4123 continue;
4124 irq = pin_2_irq(irq_entry, ioapic, pin);
4125
Eric W. Biedermanfad53992010-02-28 01:06:34 -08004126 if ((ioapic > 0) && (irq > 16))
4127 continue;
4128
Yinghai Lub9c61b702009-05-06 10:10:06 -07004129 desc = irq_to_desc(irq);
4130
4131 /*
4132 * Honour affinities which have been set in early boot
4133 */
4134 if (desc->status &
4135 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4136 mask = desc->affinity;
4137 else
4138 mask = apic->target_cpus();
4139
4140 if (intr_remapping_enabled)
4141 set_ir_ioapic_affinity_irq_desc(desc, mask);
4142 else
4143 set_ioapic_affinity_irq_desc(desc, mask);
4144 }
4145
Yinghai Lu497c9a12008-08-19 20:50:28 -07004146}
4147#endif
4148
Ingo Molnar54168ed2008-08-20 09:07:45 +02004149#define IOAPIC_RESOURCE_NAME_SIZE 11
4150
4151static struct resource *ioapic_resources;
4152
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004153static struct resource * __init ioapic_setup_resources(int nr_ioapics)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004154{
4155 unsigned long n;
4156 struct resource *res;
4157 char *mem;
4158 int i;
4159
4160 if (nr_ioapics <= 0)
4161 return NULL;
4162
4163 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4164 n *= nr_ioapics;
4165
4166 mem = alloc_bootmem(n);
4167 res = (void *)mem;
4168
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004169 mem += sizeof(struct resource) * nr_ioapics;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004170
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004171 for (i = 0; i < nr_ioapics; i++) {
4172 res[i].name = mem;
4173 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Cyrill Gorcunov4343fe12009-11-08 18:54:31 +03004174 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004175 mem += IOAPIC_RESOURCE_NAME_SIZE;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004176 }
4177
4178 ioapic_resources = res;
4179
4180 return res;
4181}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004182
Yinghai Luf3294a32008-06-27 01:41:56 -07004183void __init ioapic_init_mappings(void)
4184{
4185 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004186 struct resource *ioapic_res;
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004187 int i;
Yinghai Luf3294a32008-06-27 01:41:56 -07004188
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004189 ioapic_res = ioapic_setup_resources(nr_ioapics);
Yinghai Luf3294a32008-06-27 01:41:56 -07004190 for (i = 0; i < nr_ioapics; i++) {
4191 if (smp_found_config) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05304192 ioapic_phys = mp_ioapics[i].apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004193#ifdef CONFIG_X86_32
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +02004194 if (!ioapic_phys) {
4195 printk(KERN_ERR
4196 "WARNING: bogus zero IO-APIC "
4197 "address found in MPTABLE, "
4198 "disabling IO/APIC support!\n");
4199 smp_found_config = 0;
4200 skip_ioapic_setup = 1;
4201 goto fake_ioapic_page;
4202 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004203#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07004204 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02004205#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07004206fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02004207#endif
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004208 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07004209 ioapic_phys = __pa(ioapic_phys);
4210 }
4211 set_fixmap_nocache(idx, ioapic_phys);
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004212 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
4213 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
4214 ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07004215 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004216
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004217 ioapic_res->start = ioapic_phys;
Cyrill Gorcunove79c65a2009-11-16 18:14:26 +03004218 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
Cyrill Gorcunovffc43832009-08-24 21:53:39 +04004219 ioapic_res++;
Yinghai Luf3294a32008-06-27 01:41:56 -07004220 }
4221}
4222
Yinghai Lu857fdc52009-07-10 09:36:20 -07004223void __init ioapic_insert_resources(void)
Ingo Molnar54168ed2008-08-20 09:07:45 +02004224{
4225 int i;
4226 struct resource *r = ioapic_resources;
4227
4228 if (!r) {
Yinghai Lu857fdc52009-07-10 09:36:20 -07004229 if (nr_ioapics > 0)
Bartlomiej Zolnierkiewicz04c93ce2009-03-20 21:02:55 +01004230 printk(KERN_ERR
4231 "IO APIC resources couldn't be allocated.\n");
Yinghai Lu857fdc52009-07-10 09:36:20 -07004232 return;
Ingo Molnar54168ed2008-08-20 09:07:45 +02004233 }
4234
4235 for (i = 0; i < nr_ioapics; i++) {
4236 insert_resource(&iomem_resource, r);
4237 r++;
4238 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004239}
Ingo Molnar54168ed2008-08-20 09:07:45 +02004240
Feng Tang2a4ab642009-07-07 23:01:15 -04004241int mp_find_ioapic(int gsi)
4242{
4243 int i = 0;
4244
4245 /* Find the IOAPIC that manages this GSI. */
4246 for (i = 0; i < nr_ioapics; i++) {
4247 if ((gsi >= mp_gsi_routing[i].gsi_base)
4248 && (gsi <= mp_gsi_routing[i].gsi_end))
4249 return i;
4250 }
4251
4252 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
4253 return -1;
4254}
4255
4256int mp_find_ioapic_pin(int ioapic, int gsi)
4257{
4258 if (WARN_ON(ioapic == -1))
4259 return -1;
4260 if (WARN_ON(gsi > mp_gsi_routing[ioapic].gsi_end))
4261 return -1;
4262
4263 return gsi - mp_gsi_routing[ioapic].gsi_base;
4264}
4265
4266static int bad_ioapic(unsigned long address)
4267{
4268 if (nr_ioapics >= MAX_IO_APICS) {
4269 printk(KERN_WARNING "WARING: Max # of I/O APICs (%d) exceeded "
4270 "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
4271 return 1;
4272 }
4273 if (!address) {
4274 printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
4275 " found in table, skipping!\n");
4276 return 1;
4277 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02004278 return 0;
4279}
4280
Feng Tang2a4ab642009-07-07 23:01:15 -04004281void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
4282{
4283 int idx = 0;
4284
4285 if (bad_ioapic(address))
4286 return;
4287
4288 idx = nr_ioapics;
4289
4290 mp_ioapics[idx].type = MP_IOAPIC;
4291 mp_ioapics[idx].flags = MPC_APIC_USABLE;
4292 mp_ioapics[idx].apicaddr = address;
4293
4294 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
4295 mp_ioapics[idx].apicid = io_apic_unique_id(id);
4296 mp_ioapics[idx].apicver = io_apic_get_version(idx);
4297
4298 /*
4299 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
4300 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
4301 */
4302 mp_gsi_routing[idx].gsi_base = gsi_base;
4303 mp_gsi_routing[idx].gsi_end = gsi_base +
4304 io_apic_get_redir_entries(idx);
4305
4306 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
4307 "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
4308 mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
4309 mp_gsi_routing[idx].gsi_base, mp_gsi_routing[idx].gsi_end);
4310
4311 nr_ioapics++;
4312}
Jacob Pan05ddafb2009-09-23 07:20:23 -07004313
4314/* Enable IOAPIC early just for system timer */
4315void __init pre_init_apic_IRQ0(void)
4316{
4317 struct irq_cfg *cfg;
4318 struct irq_desc *desc;
4319
4320 printk(KERN_INFO "Early APIC setup for system timer0\n");
4321#ifndef CONFIG_SMP
4322 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
4323#endif
4324 desc = irq_to_desc_alloc_node(0, 0);
4325
4326 setup_local_APIC();
4327
4328 cfg = irq_cfg(0);
4329 add_pin_to_irq_node(cfg, 0, 0, 0);
4330 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
4331
4332 setup_IO_APIC_irq(0, 0, 0, desc, 0, 0);
4333}