blob: 4cc9cb64c81198876427e55891049cbe7c3d6e8e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/sched.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070028#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mc146818rtc.h>
30#include <linux/compiler.h>
31#include <linux/acpi.h>
Alexey Dobriyan129f6942005-06-23 00:08:33 -070032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sysdev.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070034#include <linux/msi.h>
Eric W. Biederman95d77882006-10-04 02:17:01 -070035#include <linux/htirq.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Eric W. Biedermanf26d6a22007-05-02 19:27:19 +020037#include <linux/kthread.h>
Ingo Molnar54168ed2008-08-20 09:07:45 +020038#include <linux/jiffies.h> /* time_after() */
Yinghai Lud4057bd2008-08-19 20:50:38 -070039#ifdef CONFIG_ACPI
40#include <acpi/acpi_bus.h>
41#endif
42#include <linux/bootmem.h>
43#include <linux/dmar.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070044#include <linux/hpet.h>
Ashok Raj54d5d422005-09-06 15:16:15 -070045
Yinghai Lud4057bd2008-08-19 20:50:38 -070046#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/io.h>
48#include <asm/smp.h>
49#include <asm/desc.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070050#include <asm/proto.h>
51#include <asm/acpi.h>
52#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/timer.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070054#include <asm/i8259.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020055#include <asm/nmi.h>
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -070056#include <asm/msidef.h>
Eric W. Biederman8b955b02006-10-04 02:16:55 -070057#include <asm/hypertransport.h>
Yinghai Lua4dbc342008-07-25 02:14:28 -070058#include <asm/setup.h>
Yinghai Lud4057bd2008-08-19 20:50:38 -070059#include <asm/irq_remapping.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070060#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yinghai Lu497c9a12008-08-19 20:50:28 -070062#include <mach_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020064#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +010066#define __apicdebuginit(type) static type __init
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
Ingo Molnar54168ed2008-08-20 09:07:45 +020069 * Is the SiS APIC rmw bug present ?
70 * -1 = don't know, 0 = no, 1 = yes
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72int sis_apic_bug = -1;
73
Yinghai Luefa25592008-08-19 20:50:36 -070074static DEFINE_SPINLOCK(ioapic_lock);
75static DEFINE_SPINLOCK(vector_lock);
76
Yinghai Luefa25592008-08-19 20:50:36 -070077/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * # of IRQ routing registers
79 */
80int nr_ioapic_registers[MAX_IO_APICS];
81
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040082/* I/O APIC entries */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +040083struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
Alexey Starikovskiy9f640cc2008-04-04 23:41:13 +040084int nr_ioapics;
85
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040086/* MP IRQ source entries */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +040087struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
Alexey Starikovskiy584f7342008-04-04 23:41:32 +040088
89/* # of MP IRQ source entries */
90int mp_irq_entries;
91
Alexey Starikovskiy8732fc42008-05-19 19:47:16 +040092#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
93int mp_bus_id_to_type[MAX_MP_BUSSES];
94#endif
95
96DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
97
Yinghai Luefa25592008-08-19 20:50:36 -070098int skip_ioapic_setup;
99
Ingo Molnar54168ed2008-08-20 09:07:45 +0200100static int __init parse_noapic(char *str)
Yinghai Luefa25592008-08-19 20:50:36 -0700101{
102 /* disable IO-APIC */
103 disable_ioapic_setup();
104 return 0;
105}
106early_param("noapic", parse_noapic);
Chuck Ebbert66759a02005-09-12 18:49:25 +0200107
Yinghai Luda51a822008-08-19 20:50:25 -0700108struct irq_cfg;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700109struct irq_pin_list;
Yinghai Lua1420f32008-08-19 20:50:24 -0700110struct irq_cfg {
Yinghai Luda51a822008-08-19 20:50:25 -0700111 unsigned int irq;
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700112#ifdef CONFIG_HAVE_SPARSE_IRQ
Yinghai Luda51a822008-08-19 20:50:25 -0700113 struct irq_cfg *next;
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700114#endif
Yinghai Lu0f978f42008-08-19 20:50:26 -0700115 struct irq_pin_list *irq_2_pin;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700116 cpumask_t domain;
117 cpumask_t old_domain;
118 unsigned move_cleanup_count;
Yinghai Lua1420f32008-08-19 20:50:24 -0700119 u8 vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700120 u8 move_in_progress : 1;
Yinghai Lua1420f32008-08-19 20:50:24 -0700121};
122
Yinghai Lua1420f32008-08-19 20:50:24 -0700123/* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
124static struct irq_cfg irq_cfg_legacy[] __initdata = {
Yinghai Lu497c9a12008-08-19 20:50:28 -0700125 [0] = { .irq = 0, .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
126 [1] = { .irq = 1, .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
127 [2] = { .irq = 2, .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
128 [3] = { .irq = 3, .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
129 [4] = { .irq = 4, .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
130 [5] = { .irq = 5, .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
131 [6] = { .irq = 6, .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
132 [7] = { .irq = 7, .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
133 [8] = { .irq = 8, .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
134 [9] = { .irq = 9, .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
135 [10] = { .irq = 10, .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
136 [11] = { .irq = 11, .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
137 [12] = { .irq = 12, .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
138 [13] = { .irq = 13, .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
139 [14] = { .irq = 14, .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
140 [15] = { .irq = 15, .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
Yinghai Lua1420f32008-08-19 20:50:24 -0700141};
142
Yinghai Luda51a822008-08-19 20:50:25 -0700143static struct irq_cfg irq_cfg_init = { .irq = -1U, };
Yinghai Lua1420f32008-08-19 20:50:24 -0700144
Yinghai Luda51a822008-08-19 20:50:25 -0700145static void init_one_irq_cfg(struct irq_cfg *cfg)
146{
147 memcpy(cfg, &irq_cfg_init, sizeof(struct irq_cfg));
Yinghai Lua1420f32008-08-19 20:50:24 -0700148}
149
150static struct irq_cfg *irq_cfgx;
Yinghai Lue89eb432008-08-20 20:46:25 -0700151
Cyrill Gorcunovac54a6c2008-09-04 22:37:50 +0400152#ifdef CONFIG_HAVE_SPARSE_IRQ
Yinghai Lue89eb432008-08-20 20:46:25 -0700153/*
154 * Protect the irq_cfgx_free freelist:
155 */
156static DEFINE_SPINLOCK(irq_cfg_lock);
157
Yinghai Luda51a822008-08-19 20:50:25 -0700158static struct irq_cfg *irq_cfgx_free;
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700159#endif
Cyrill Gorcunovac54a6c2008-09-04 22:37:50 +0400160
Yinghai Luda51a822008-08-19 20:50:25 -0700161static void __init init_work(void *data)
162{
163 struct dyn_array *da = data;
164 struct irq_cfg *cfg;
165 int legacy_count;
166 int i;
167
168 cfg = *da->name;
169
170 memcpy(cfg, irq_cfg_legacy, sizeof(irq_cfg_legacy));
171
Cyrill Gorcunov676f4a92008-09-04 22:37:49 +0400172 legacy_count = ARRAY_SIZE(irq_cfg_legacy);
Yinghai Luda51a822008-08-19 20:50:25 -0700173 for (i = legacy_count; i < *da->nr; i++)
174 init_one_irq_cfg(&cfg[i]);
175
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700176#ifdef CONFIG_HAVE_SPARSE_IRQ
Yinghai Luda51a822008-08-19 20:50:25 -0700177 for (i = 1; i < *da->nr; i++)
178 cfg[i-1].next = &cfg[i];
179
180 irq_cfgx_free = &irq_cfgx[legacy_count];
181 irq_cfgx[legacy_count - 1].next = NULL;
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700182#endif
Yinghai Luda51a822008-08-19 20:50:25 -0700183}
184
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700185#ifdef CONFIG_HAVE_SPARSE_IRQ
186/* need to be biger than size of irq_cfg_legacy */
187static int nr_irq_cfg = 32;
188
189static int __init parse_nr_irq_cfg(char *arg)
190{
191 if (arg) {
192 nr_irq_cfg = simple_strtoul(arg, NULL, 0);
193 if (nr_irq_cfg < 32)
194 nr_irq_cfg = 32;
195 }
196 return 0;
197}
198
199early_param("nr_irq_cfg", parse_nr_irq_cfg);
200
201#define for_each_irq_cfg(irqX, cfg) \
202 for (cfg = irq_cfgx, irqX = cfg->irq; cfg; cfg = cfg->next, irqX = cfg ? cfg->irq : -1U)
203
Yinghai Luda51a822008-08-19 20:50:25 -0700204
205DEFINE_DYN_ARRAY(irq_cfgx, sizeof(struct irq_cfg), nr_irq_cfg, PAGE_SIZE, init_work);
Yinghai Lua1420f32008-08-19 20:50:24 -0700206
207static struct irq_cfg *irq_cfg(unsigned int irq)
208{
Yinghai Luda51a822008-08-19 20:50:25 -0700209 struct irq_cfg *cfg;
Yinghai Lua1420f32008-08-19 20:50:24 -0700210
Yinghai Luda51a822008-08-19 20:50:25 -0700211 cfg = irq_cfgx;
212 while (cfg) {
213 if (cfg->irq == irq)
214 return cfg;
215
216 cfg = cfg->next;
217 }
218
219 return NULL;
220}
221
222static struct irq_cfg *irq_cfg_alloc(unsigned int irq)
223{
224 struct irq_cfg *cfg, *cfg_pri;
Yinghai Lue89eb432008-08-20 20:46:25 -0700225 unsigned long flags;
Yinghai Luda51a822008-08-19 20:50:25 -0700226 int count = 0;
Yinghai Lue89eb432008-08-20 20:46:25 -0700227 int i;
Yinghai Luda51a822008-08-19 20:50:25 -0700228
229 cfg_pri = cfg = irq_cfgx;
230 while (cfg) {
231 if (cfg->irq == irq)
232 return cfg;
233
234 cfg_pri = cfg;
235 cfg = cfg->next;
236 count++;
237 }
238
Yinghai Lue89eb432008-08-20 20:46:25 -0700239 spin_lock_irqsave(&irq_cfg_lock, flags);
Yinghai Luda51a822008-08-19 20:50:25 -0700240 if (!irq_cfgx_free) {
241 unsigned long phys;
242 unsigned long total_bytes;
243 /*
244 * we run out of pre-allocate ones, allocate more
245 */
246 printk(KERN_DEBUG "try to get more irq_cfg %d\n", nr_irq_cfg);
247
248 total_bytes = sizeof(struct irq_cfg) * nr_irq_cfg;
249 if (after_bootmem)
250 cfg = kzalloc(total_bytes, GFP_ATOMIC);
251 else
252 cfg = __alloc_bootmem_nopanic(total_bytes, PAGE_SIZE, 0);
253
254 if (!cfg)
255 panic("please boot with nr_irq_cfg= %d\n", count * 2);
256
257 phys = __pa(cfg);
258 printk(KERN_DEBUG "irq_irq ==> [%#lx - %#lx]\n", phys, phys + total_bytes);
259
260 for (i = 0; i < nr_irq_cfg; i++)
261 init_one_irq_cfg(&cfg[i]);
262
263 for (i = 1; i < nr_irq_cfg; i++)
264 cfg[i-1].next = &cfg[i];
265
266 irq_cfgx_free = cfg;
267 }
268
269 cfg = irq_cfgx_free;
270 irq_cfgx_free = irq_cfgx_free->next;
271 cfg->next = NULL;
272 if (cfg_pri)
273 cfg_pri->next = cfg;
274 else
275 irq_cfgx = cfg;
276 cfg->irq = irq;
Yinghai Lue89eb432008-08-20 20:46:25 -0700277
278 spin_unlock_irqrestore(&irq_cfg_lock, flags);
279
Yinghai Luda51a822008-08-19 20:50:25 -0700280 return cfg;
Yinghai Lua1420f32008-08-19 20:50:24 -0700281}
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700282#else
Yinghai Lua1420f32008-08-19 20:50:24 -0700283
Yinghai Lu8f09cd22008-08-19 20:50:51 -0700284#define for_each_irq_cfg(irq, cfg) \
285 for (irq = 0, cfg = &irq_cfgx[irq]; irq < nr_irqs; irq++, cfg = &irq_cfgx[irq])
286
287DEFINE_DYN_ARRAY(irq_cfgx, sizeof(struct irq_cfg), nr_irqs, PAGE_SIZE, init_work);
288
289struct irq_cfg *irq_cfg(unsigned int irq)
290{
291 if (irq < nr_irqs)
292 return &irq_cfgx[irq];
293
294 return NULL;
295}
296struct irq_cfg *irq_cfg_alloc(unsigned int irq)
297{
298 return irq_cfg(irq);
299}
300
301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*
303 * This is performance-critical, we want to do it O(1)
304 *
305 * the indexing order of this array favors 1:1 mappings
306 * between pins and IRQs.
307 */
308
Yinghai Lu0f978f42008-08-19 20:50:26 -0700309struct irq_pin_list {
310 int apic, pin;
311 struct irq_pin_list *next;
312};
Yinghai Lu301e6192008-08-19 20:50:02 -0700313
Yinghai Lu0f978f42008-08-19 20:50:26 -0700314static struct irq_pin_list *irq_2_pin_head;
315/* fill one page ? */
316static int nr_irq_2_pin = 0x100;
317static struct irq_pin_list *irq_2_pin_ptr;
318static void __init irq_2_pin_init_work(void *data)
319{
320 struct dyn_array *da = data;
321 struct irq_pin_list *pin;
322 int i;
323
324 pin = *da->name;
325
326 for (i = 1; i < *da->nr; i++)
327 pin[i-1].next = &pin[i];
328
329 irq_2_pin_ptr = &pin[0];
330}
331DEFINE_DYN_ARRAY(irq_2_pin_head, sizeof(struct irq_pin_list), nr_irq_2_pin, PAGE_SIZE, irq_2_pin_init_work);
332
333static struct irq_pin_list *get_one_free_irq_2_pin(void)
334{
335 struct irq_pin_list *pin;
336 int i;
337
338 pin = irq_2_pin_ptr;
339
340 if (pin) {
341 irq_2_pin_ptr = pin->next;
342 pin->next = NULL;
343 return pin;
344 }
345
346 /*
347 * we run out of pre-allocate ones, allocate more
348 */
349 printk(KERN_DEBUG "try to get more irq_2_pin %d\n", nr_irq_2_pin);
350
351 if (after_bootmem)
352 pin = kzalloc(sizeof(struct irq_pin_list)*nr_irq_2_pin,
353 GFP_ATOMIC);
354 else
355 pin = __alloc_bootmem_nopanic(sizeof(struct irq_pin_list) *
356 nr_irq_2_pin, PAGE_SIZE, 0);
357
358 if (!pin)
359 panic("can not get more irq_2_pin\n");
360
361 for (i = 1; i < nr_irq_2_pin; i++)
362 pin[i-1].next = &pin[i];
363
364 irq_2_pin_ptr = pin->next;
365 pin->next = NULL;
366
367 return pin;
368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Linus Torvalds130fe052006-11-01 09:11:00 -0800370struct io_apic {
371 unsigned int index;
372 unsigned int unused[3];
373 unsigned int data;
374};
375
376static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
377{
378 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400379 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
Linus Torvalds130fe052006-11-01 09:11:00 -0800380}
381
382static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
383{
384 struct io_apic __iomem *io_apic = io_apic_base(apic);
385 writel(reg, &io_apic->index);
386 return readl(&io_apic->data);
387}
388
389static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
390{
391 struct io_apic __iomem *io_apic = io_apic_base(apic);
392 writel(reg, &io_apic->index);
393 writel(value, &io_apic->data);
394}
395
396/*
397 * Re-write a value: to be used for read-modify-write
398 * cycles where the read already set up the index register.
399 *
400 * Older SiS APIC requires we rewrite the index register
401 */
402static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
403{
Ingo Molnar54168ed2008-08-20 09:07:45 +0200404 struct io_apic __iomem *io_apic = io_apic_base(apic);
405 if (sis_apic_bug)
406 writel(reg, &io_apic->index);
Linus Torvalds130fe052006-11-01 09:11:00 -0800407 writel(value, &io_apic->data);
408}
409
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700410static bool io_apic_level_ack_pending(unsigned int irq)
411{
412 struct irq_pin_list *entry;
413 unsigned long flags;
414 struct irq_cfg *cfg = irq_cfg(irq);
415
416 spin_lock_irqsave(&ioapic_lock, flags);
417 entry = cfg->irq_2_pin;
418 for (;;) {
419 unsigned int reg;
420 int pin;
421
422 if (!entry)
423 break;
424 pin = entry->pin;
425 reg = io_apic_read(entry->apic, 0x10 + pin*2);
426 /* Is the remote IRR bit set? */
427 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
428 spin_unlock_irqrestore(&ioapic_lock, flags);
429 return true;
430 }
431 if (!entry->next)
432 break;
433 entry = entry->next;
434 }
435 spin_unlock_irqrestore(&ioapic_lock, flags);
436
437 return false;
438}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700439
Andi Kleencf4c6a22006-09-26 10:52:30 +0200440union entry_union {
441 struct { u32 w1, w2; };
442 struct IO_APIC_route_entry entry;
443};
444
445static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
446{
447 union entry_union eu;
448 unsigned long flags;
449 spin_lock_irqsave(&ioapic_lock, flags);
450 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
451 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
452 spin_unlock_irqrestore(&ioapic_lock, flags);
453 return eu.entry;
454}
455
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800456/*
457 * When we write a new IO APIC routing entry, we need to write the high
458 * word first! If the mask bit in the low word is clear, we will enable
459 * the interrupt, and we need to make sure the entry is fully populated
460 * before that happens.
461 */
Andi Kleend15512f2006-12-07 02:14:07 +0100462static void
463__ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
464{
465 union entry_union eu;
466 eu.entry = e;
467 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
468 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
469}
470
Andi Kleencf4c6a22006-09-26 10:52:30 +0200471static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
472{
473 unsigned long flags;
Andi Kleencf4c6a22006-09-26 10:52:30 +0200474 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleend15512f2006-12-07 02:14:07 +0100475 __ioapic_write_entry(apic, pin, e);
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800476 spin_unlock_irqrestore(&ioapic_lock, flags);
477}
478
479/*
480 * When we mask an IO APIC routing entry, we need to write the low
481 * word first, in order to set the mask bit before we change the
482 * high bits!
483 */
484static void ioapic_mask_entry(int apic, int pin)
485{
486 unsigned long flags;
487 union entry_union eu = { .entry.mask = 1 };
488
489 spin_lock_irqsave(&ioapic_lock, flags);
Andi Kleencf4c6a22006-09-26 10:52:30 +0200490 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
491 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
492 spin_unlock_irqrestore(&ioapic_lock, flags);
493}
494
Yinghai Lu497c9a12008-08-19 20:50:28 -0700495#ifdef CONFIG_SMP
496static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
497{
498 int apic, pin;
499 struct irq_cfg *cfg;
500 struct irq_pin_list *entry;
501
502 cfg = irq_cfg(irq);
503 entry = cfg->irq_2_pin;
504 for (;;) {
505 unsigned int reg;
506
507 if (!entry)
508 break;
509
510 apic = entry->apic;
511 pin = entry->pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200512#ifdef CONFIG_INTR_REMAP
513 /*
514 * With interrupt-remapping, destination information comes
515 * from interrupt-remapping table entry.
516 */
517 if (!irq_remapped(irq))
518 io_apic_write(apic, 0x11 + pin*2, dest);
519#else
Yinghai Lu497c9a12008-08-19 20:50:28 -0700520 io_apic_write(apic, 0x11 + pin*2, dest);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200521#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -0700522 reg = io_apic_read(apic, 0x10 + pin*2);
523 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
524 reg |= vector;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200525 io_apic_modify(apic, 0x10 + pin*2, reg);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700526 if (!entry->next)
527 break;
528 entry = entry->next;
529 }
530}
Yinghai Luefa25592008-08-19 20:50:36 -0700531
532static int assign_irq_vector(int irq, cpumask_t mask);
533
Yinghai Lu497c9a12008-08-19 20:50:28 -0700534static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
535{
536 struct irq_cfg *cfg;
537 unsigned long flags;
538 unsigned int dest;
539 cpumask_t tmp;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200540 struct irq_desc *desc;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700541
Yinghai Lu497c9a12008-08-19 20:50:28 -0700542 cpus_and(tmp, mask, cpu_online_map);
543 if (cpus_empty(tmp))
544 return;
545
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700546 cfg = irq_cfg(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700547 if (assign_irq_vector(irq, mask))
548 return;
549
550 cpus_and(tmp, cfg->domain, mask);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700551 dest = cpu_mask_to_apicid(tmp);
552 /*
553 * Only the high 8 bits are valid.
554 */
555 dest = SET_APIC_LOGICAL_ID(dest);
556
Ingo Molnar54168ed2008-08-20 09:07:45 +0200557 desc = irq_to_desc(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700558 spin_lock_irqsave(&ioapic_lock, flags);
559 __target_IO_APIC_irq(irq, dest, cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200560 desc->affinity = mask;
Yinghai Lu497c9a12008-08-19 20:50:28 -0700561 spin_unlock_irqrestore(&ioapic_lock, flags);
562}
Yinghai Lu497c9a12008-08-19 20:50:28 -0700563#endif /* CONFIG_SMP */
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/*
566 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
567 * shared ISA-space IRQs, so we have to support them. We are super
568 * fast in the common case, and fast for shared ISA-space IRQs.
569 */
570static void add_pin_to_irq(unsigned int irq, int apic, int pin)
571{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700572 struct irq_cfg *cfg;
573 struct irq_pin_list *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Yinghai Lu0f978f42008-08-19 20:50:26 -0700575 /* first time to refer irq_cfg, so with new */
576 cfg = irq_cfg_alloc(irq);
577 entry = cfg->irq_2_pin;
578 if (!entry) {
579 entry = get_one_free_irq_2_pin();
580 cfg->irq_2_pin = entry;
581 entry->apic = apic;
582 entry->pin = pin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700583 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700585
586 while (entry->next) {
587 /* not again, please */
588 if (entry->apic == apic && entry->pin == pin)
589 return;
590
591 entry = entry->next;
592 }
593
594 entry->next = get_one_free_irq_2_pin();
595 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 entry->apic = apic;
597 entry->pin = pin;
598}
599
600/*
601 * Reroute an IRQ to a different pin.
602 */
603static void __init replace_pin_at_irq(unsigned int irq,
604 int oldapic, int oldpin,
605 int newapic, int newpin)
606{
Yinghai Lu0f978f42008-08-19 20:50:26 -0700607 struct irq_cfg *cfg = irq_cfg(irq);
608 struct irq_pin_list *entry = cfg->irq_2_pin;
609 int replaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Yinghai Lu0f978f42008-08-19 20:50:26 -0700611 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (entry->apic == oldapic && entry->pin == oldpin) {
613 entry->apic = newapic;
614 entry->pin = newpin;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700615 replaced = 1;
616 /* every one is different, right? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -0700618 }
619 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Yinghai Lu0f978f42008-08-19 20:50:26 -0700621
622 /* why? call replace before add? */
623 if (!replaced)
624 add_pin_to_irq(irq, newapic, newpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400627static inline void io_apic_modify_irq(unsigned int irq,
628 int mask_and, int mask_or,
629 void (*final)(struct irq_pin_list *entry))
630{
631 int pin;
632 struct irq_cfg *cfg;
633 struct irq_pin_list *entry;
634
635 cfg = irq_cfg(irq);
636 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
637 unsigned int reg;
638 pin = entry->pin;
639 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
640 reg &= mask_and;
641 reg |= mask_or;
642 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
643 if (final)
644 final(entry);
645 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700646}
647
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400648static void __unmask_IO_APIC_irq(unsigned int irq)
649{
650 io_apic_modify_irq(irq, ~IO_APIC_REDIR_MASKED, 0, NULL);
651}
Yinghai Lu4e738e22008-08-19 20:50:47 -0700652
653#ifdef CONFIG_X86_64
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400654void io_apic_sync(struct irq_pin_list *entry)
Yinghai Lu4e738e22008-08-19 20:50:47 -0700655{
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400656 /*
657 * Synchronize the IO-APIC and the CPU by doing
658 * a dummy read from the IO-APIC
659 */
660 struct io_apic __iomem *io_apic;
661 io_apic = io_apic_base(entry->apic);
Yinghai Lu4e738e22008-08-19 20:50:47 -0700662 readl(&io_apic->data);
663}
664
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400665static void __mask_IO_APIC_irq(unsigned int irq)
666{
667 io_apic_modify_irq(irq, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
668}
669#else /* CONFIG_X86_32 */
670static void __mask_IO_APIC_irq(unsigned int irq)
671{
672 io_apic_modify_irq(irq, ~0, IO_APIC_REDIR_MASKED, NULL);
673}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700674
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400675static void __mask_and_edge_IO_APIC_irq(unsigned int irq)
676{
677 io_apic_modify_irq(irq, ~IO_APIC_REDIR_LEVEL_TRIGGER,
678 IO_APIC_REDIR_MASKED, NULL);
679}
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700680
Cyrill Gorcunov87783be2008-09-10 22:19:50 +0400681static void __unmask_and_level_IO_APIC_irq(unsigned int irq)
682{
683 io_apic_modify_irq(irq, ~IO_APIC_REDIR_MASKED,
684 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
685}
686#endif /* CONFIG_X86_32 */
Yinghai Lu047c8fd2008-08-19 20:50:41 -0700687
Ingo Molnar54168ed2008-08-20 09:07:45 +0200688static void mask_IO_APIC_irq (unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 unsigned long flags;
691
692 spin_lock_irqsave(&ioapic_lock, flags);
693 __mask_IO_APIC_irq(irq);
694 spin_unlock_irqrestore(&ioapic_lock, flags);
695}
696
Ingo Molnar54168ed2008-08-20 09:07:45 +0200697static void unmask_IO_APIC_irq (unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 unsigned long flags;
700
701 spin_lock_irqsave(&ioapic_lock, flags);
702 __unmask_IO_APIC_irq(irq);
703 spin_unlock_irqrestore(&ioapic_lock, flags);
704}
705
706static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
707{
708 struct IO_APIC_route_entry entry;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +0200709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /* Check delivery_mode to be sure we're not clearing an SMI pin */
Andi Kleencf4c6a22006-09-26 10:52:30 +0200711 entry = ioapic_read_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (entry.delivery_mode == dest_SMI)
713 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * Disable it in the IO-APIC irq-routing table:
716 */
Linus Torvaldsf9dadfa2006-11-01 10:05:35 -0800717 ioapic_mask_entry(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Ingo Molnar54168ed2008-08-20 09:07:45 +0200720static void clear_IO_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int apic, pin;
723
724 for (apic = 0; apic < nr_ioapics; apic++)
725 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
726 clear_IO_APIC_pin(apic, pin);
727}
728
Ingo Molnar54168ed2008-08-20 09:07:45 +0200729#if !defined(CONFIG_SMP) && defined(CONFIG_X86_32)
Harvey Harrison75604d72008-01-30 13:31:17 +0100730void send_IPI_self(int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 unsigned int cfg;
733
734 /*
735 * Wait for idle.
736 */
737 apic_wait_icr_idle();
738 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
739 /*
740 * Send the IPI. The write to APIC_ICR fires this off.
741 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100742 apic_write(APIC_ICR, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200744#endif /* !CONFIG_SMP && CONFIG_X86_32*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Ingo Molnar54168ed2008-08-20 09:07:45 +0200746#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*
748 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
749 * specific CPU-side IRQs.
750 */
751
752#define MAX_PIRQS 8
753static int pirq_entries [MAX_PIRQS];
754static int pirqs_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756static int __init ioapic_pirq_setup(char *str)
757{
758 int i, max;
759 int ints[MAX_PIRQS+1];
760
761 get_options(str, ARRAY_SIZE(ints), ints);
762
763 for (i = 0; i < MAX_PIRQS; i++)
764 pirq_entries[i] = -1;
765
766 pirqs_enabled = 1;
767 apic_printk(APIC_VERBOSE, KERN_INFO
768 "PIRQ redirection, working around broken MP-BIOS.\n");
769 max = MAX_PIRQS;
770 if (ints[0] < MAX_PIRQS)
771 max = ints[0];
772
773 for (i = 0; i < max; i++) {
774 apic_printk(APIC_VERBOSE, KERN_DEBUG
775 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
776 /*
777 * PIRQs are mapped upside down, usually.
778 */
779 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
780 }
781 return 1;
782}
783
784__setup("pirq=", ioapic_pirq_setup);
Ingo Molnar54168ed2008-08-20 09:07:45 +0200785#endif /* CONFIG_X86_32 */
786
787#ifdef CONFIG_INTR_REMAP
788/* I/O APIC RTE contents at the OS boot up */
789static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
790
791/*
792 * Saves and masks all the unmasked IO-APIC RTE's
793 */
794int save_mask_IO_APIC_setup(void)
795{
796 union IO_APIC_reg_01 reg_01;
797 unsigned long flags;
798 int apic, pin;
799
800 /*
801 * The number of IO-APIC IRQ registers (== #pins):
802 */
803 for (apic = 0; apic < nr_ioapics; apic++) {
804 spin_lock_irqsave(&ioapic_lock, flags);
805 reg_01.raw = io_apic_read(apic, 1);
806 spin_unlock_irqrestore(&ioapic_lock, flags);
807 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
808 }
809
810 for (apic = 0; apic < nr_ioapics; apic++) {
811 early_ioapic_entries[apic] =
812 kzalloc(sizeof(struct IO_APIC_route_entry) *
813 nr_ioapic_registers[apic], GFP_KERNEL);
814 if (!early_ioapic_entries[apic])
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400815 goto nomem;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200816 }
817
818 for (apic = 0; apic < nr_ioapics; apic++)
819 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
820 struct IO_APIC_route_entry entry;
821
822 entry = early_ioapic_entries[apic][pin] =
823 ioapic_read_entry(apic, pin);
824 if (!entry.mask) {
825 entry.mask = 1;
826 ioapic_write_entry(apic, pin, entry);
827 }
828 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400829
Ingo Molnar54168ed2008-08-20 09:07:45 +0200830 return 0;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400831
832nomem:
833 for (; apic > 0; apic--)
834 kfree(early_ioapic_entries[apic]);
835 kfree(early_ioapic_entries[apic]);
836 memset(early_ioapic_entries, 0,
837 ARRAY_SIZE(early_ioapic_entries));
838
839 return -ENOMEM;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200840}
841
842void restore_IO_APIC_setup(void)
843{
844 int apic, pin;
845
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400846 for (apic = 0; apic < nr_ioapics; apic++) {
847 if (!early_ioapic_entries[apic])
848 break;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200849 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
850 ioapic_write_entry(apic, pin,
851 early_ioapic_entries[apic][pin]);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +0400852 kfree(early_ioapic_entries[apic]);
853 early_ioapic_entries[apic] = NULL;
854 }
Ingo Molnar54168ed2008-08-20 09:07:45 +0200855}
856
857void reinit_intr_remapped_IO_APIC(int intr_remapping)
858{
859 /*
860 * for now plain restore of previous settings.
861 * TBD: In the case of OS enabling interrupt-remapping,
862 * IO-APIC RTE's need to be setup to point to interrupt-remapping
863 * table entries. for now, do a plain restore, and wait for
864 * the setup_IO_APIC_irqs() to do proper initialization.
865 */
866 restore_IO_APIC_setup();
867}
868#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870/*
871 * Find the IRQ entry number of a certain pin.
872 */
873static int find_irq_entry(int apic, int pin, int type)
874{
875 int i;
876
877 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400878 if (mp_irqs[i].mp_irqtype == type &&
879 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
880 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
881 mp_irqs[i].mp_dstirq == pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return i;
883
884 return -1;
885}
886
887/*
888 * Find the pin to which IRQ[irq] (ISA) is connected
889 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800890static int __init find_isa_irq_pin(int irq, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 int i;
893
894 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400895 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Alexey Starikovskiyd27e2b82008-03-20 14:54:18 +0300897 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400898 (mp_irqs[i].mp_irqtype == type) &&
899 (mp_irqs[i].mp_srcbusirq == irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400901 return mp_irqs[i].mp_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903 return -1;
904}
905
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800906static int __init find_isa_irq_apic(int irq, int type)
907{
908 int i;
909
910 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400911 int lbus = mp_irqs[i].mp_srcbus;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800912
Alexey Starikovskiy73b29612008-03-20 14:54:24 +0300913 if (test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400914 (mp_irqs[i].mp_irqtype == type) &&
915 (mp_irqs[i].mp_srcbusirq == irq))
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800916 break;
917 }
918 if (i < mp_irq_entries) {
919 int apic;
Ingo Molnar54168ed2008-08-20 09:07:45 +0200920 for(apic = 0; apic < nr_ioapics; apic++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400921 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -0800922 return apic;
923 }
924 }
925
926 return -1;
927}
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929/*
930 * Find a specific PCI IRQ entry.
931 * Not an __init, possibly needed by modules
932 */
933static int pin_2_irq(int idx, int apic, int pin);
934
935int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
936{
937 int apic, i, best_guess = -1;
938
Ingo Molnar54168ed2008-08-20 09:07:45 +0200939 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
940 bus, slot, pin);
Alexey Starikovskiyce6444d2008-05-19 19:47:09 +0400941 if (test_bit(bus, mp_bus_not_pci)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200942 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return -1;
944 }
945 for (i = 0; i < mp_irq_entries; i++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400946 int lbus = mp_irqs[i].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 for (apic = 0; apic < nr_ioapics; apic++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400949 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
950 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952
Alexey Starikovskiy47cab822008-03-20 14:54:30 +0300953 if (!test_bit(lbus, mp_bus_not_pci) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400954 !mp_irqs[i].mp_irqtype &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 (bus == lbus) &&
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400956 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
Ingo Molnar54168ed2008-08-20 09:07:45 +0200957 int irq = pin_2_irq(i,apic,mp_irqs[i].mp_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 if (!(apic || IO_APIC_IRQ(irq)))
960 continue;
961
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400962 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return irq;
964 /*
965 * Use the first all-but-pin matching entry as a
966 * best-guess fuzzy result for broken mptables.
967 */
968 if (best_guess < 0)
969 best_guess = irq;
970 }
971 }
972 return best_guess;
973}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200974
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700975EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300977#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978/*
979 * EISA Edge/Level control register, ELCR
980 */
981static int EISA_ELCR(unsigned int irq)
982{
983 if (irq < 16) {
984 unsigned int port = 0x4d0 + (irq >> 3);
985 return (inb(port) >> (irq & 7)) & 1;
986 }
987 apic_printk(APIC_VERBOSE, KERN_INFO
988 "Broken MPtable reports ISA irq %d\n", irq);
989 return 0;
990}
Ingo Molnar54168ed2008-08-20 09:07:45 +0200991
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300992#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Alexey Starikovskiy67288012008-03-20 14:54:36 +0300994/* ISA interrupts are always polarity zero edge triggered,
995 * when listed as conforming in the MP table. */
996
997#define default_ISA_trigger(idx) (0)
998#define default_ISA_polarity(idx) (0)
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/* EISA interrupts are always polarity zero and can be edge or level
1001 * trigger depending on the ELCR value. If an interrupt is listed as
1002 * EISA conforming in the MP table, that means its trigger type must
1003 * be read in from the ELCR */
1004
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001005#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001006#define default_EISA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008/* PCI interrupts are always polarity one level triggered,
1009 * when listed as conforming in the MP table. */
1010
1011#define default_PCI_trigger(idx) (1)
1012#define default_PCI_polarity(idx) (1)
1013
1014/* MCA interrupts are always polarity zero level triggered,
1015 * when listed as conforming in the MP table. */
1016
1017#define default_MCA_trigger(idx) (1)
Alexey Starikovskiy67288012008-03-20 14:54:36 +03001018#define default_MCA_polarity(idx) default_ISA_polarity(idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Shaohua Li61fd47e2007-11-17 01:05:28 -05001020static int MPBIOS_polarity(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001022 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 int polarity;
1024
1025 /*
1026 * Determine IRQ line polarity (high active or low active):
1027 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001028 switch (mp_irqs[idx].mp_irqflag & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001030 case 0: /* conforms, ie. bus-type dependent polarity */
1031 if (test_bit(bus, mp_bus_not_pci))
1032 polarity = default_ISA_polarity(idx);
1033 else
1034 polarity = default_PCI_polarity(idx);
1035 break;
1036 case 1: /* high active */
1037 {
1038 polarity = 0;
1039 break;
1040 }
1041 case 2: /* reserved */
1042 {
1043 printk(KERN_WARNING "broken BIOS!!\n");
1044 polarity = 1;
1045 break;
1046 }
1047 case 3: /* low active */
1048 {
1049 polarity = 1;
1050 break;
1051 }
1052 default: /* invalid */
1053 {
1054 printk(KERN_WARNING "broken BIOS!!\n");
1055 polarity = 1;
1056 break;
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059 return polarity;
1060}
1061
1062static int MPBIOS_trigger(int idx)
1063{
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001064 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 int trigger;
1066
1067 /*
1068 * Determine IRQ trigger mode (edge or level sensitive):
1069 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001070 switch ((mp_irqs[idx].mp_irqflag>>2) & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001072 case 0: /* conforms, ie. bus-type dependent */
1073 if (test_bit(bus, mp_bus_not_pci))
1074 trigger = default_ISA_trigger(idx);
1075 else
1076 trigger = default_PCI_trigger(idx);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001077#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Ingo Molnar54168ed2008-08-20 09:07:45 +02001078 switch (mp_bus_id_to_type[bus]) {
1079 case MP_BUS_ISA: /* ISA pin */
1080 {
1081 /* set before the switch */
1082 break;
1083 }
1084 case MP_BUS_EISA: /* EISA pin */
1085 {
1086 trigger = default_EISA_trigger(idx);
1087 break;
1088 }
1089 case MP_BUS_PCI: /* PCI pin */
1090 {
1091 /* set before the switch */
1092 break;
1093 }
1094 case MP_BUS_MCA: /* MCA pin */
1095 {
1096 trigger = default_MCA_trigger(idx);
1097 break;
1098 }
1099 default:
1100 {
1101 printk(KERN_WARNING "broken BIOS!!\n");
1102 trigger = 1;
1103 break;
1104 }
1105 }
1106#endif
1107 break;
1108 case 1: /* edge */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001109 {
Ingo Molnar54168ed2008-08-20 09:07:45 +02001110 trigger = 0;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001111 break;
1112 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001113 case 2: /* reserved */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001114 {
1115 printk(KERN_WARNING "broken BIOS!!\n");
1116 trigger = 1;
1117 break;
1118 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001119 case 3: /* level */
1120 {
1121 trigger = 1;
1122 break;
1123 }
1124 default: /* invalid */
1125 {
1126 printk(KERN_WARNING "broken BIOS!!\n");
1127 trigger = 0;
1128 break;
1129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 return trigger;
1132}
1133
1134static inline int irq_polarity(int idx)
1135{
1136 return MPBIOS_polarity(idx);
1137}
1138
1139static inline int irq_trigger(int idx)
1140{
1141 return MPBIOS_trigger(idx);
1142}
1143
Yinghai Luefa25592008-08-19 20:50:36 -07001144int (*ioapic_renumber_irq)(int ioapic, int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145static int pin_2_irq(int idx, int apic, int pin)
1146{
1147 int irq, i;
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001148 int bus = mp_irqs[idx].mp_srcbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 /*
1151 * Debugging check, we are in big trouble if this message pops up!
1152 */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001153 if (mp_irqs[idx].mp_dstirq != pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1155
Ingo Molnar54168ed2008-08-20 09:07:45 +02001156 if (test_bit(bus, mp_bus_not_pci)) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001157 irq = mp_irqs[idx].mp_srcbusirq;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001158 } else {
Alexey Starikovskiy643befe2008-03-20 14:54:49 +03001159 /*
1160 * PCI IRQs are mapped in order
1161 */
1162 i = irq = 0;
1163 while (i < apic)
1164 irq += nr_ioapic_registers[i++];
1165 irq += pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001166 /*
1167 * For MPS mode, so far only needed by ES7000 platform
1168 */
1169 if (ioapic_renumber_irq)
1170 irq = ioapic_renumber_irq(apic, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
Ingo Molnar54168ed2008-08-20 09:07:45 +02001173#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /*
1175 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1176 */
1177 if ((pin >= 16) && (pin <= 23)) {
1178 if (pirq_entries[pin-16] != -1) {
1179 if (!pirq_entries[pin-16]) {
1180 apic_printk(APIC_VERBOSE, KERN_DEBUG
1181 "disabling PIRQ%d\n", pin-16);
1182 } else {
1183 irq = pirq_entries[pin-16];
1184 apic_printk(APIC_VERBOSE, KERN_DEBUG
1185 "using PIRQ%d -> IRQ %d\n",
1186 pin-16, irq);
1187 }
1188 }
1189 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001190#endif
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return irq;
1193}
1194
Yinghai Lu497c9a12008-08-19 20:50:28 -07001195void lock_vector_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001197 /* Used to the online set of cpus does not change
1198 * during assign_irq_vector.
1199 */
1200 spin_lock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Yinghai Lu497c9a12008-08-19 20:50:28 -07001203void unlock_vector_lock(void)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001204{
Yinghai Lu497c9a12008-08-19 20:50:28 -07001205 spin_unlock(&vector_lock);
1206}
1207
1208static int __assign_irq_vector(int irq, cpumask_t mask)
1209{
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001210 /*
1211 * NOTE! The local APIC isn't very good at handling
1212 * multiple interrupts at the same interrupt level.
1213 * As the interrupt level is determined by taking the
1214 * vector number and shifting that right by 4, we
1215 * want to spread these out a bit so that they don't
1216 * all fall in the same interrupt level.
1217 *
1218 * Also, we've got to be careful not to trash gate
1219 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1220 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001221 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1222 unsigned int old_vector;
1223 int cpu;
1224 struct irq_cfg *cfg;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001225
Ingo Molnar54168ed2008-08-20 09:07:45 +02001226 cfg = irq_cfg(irq);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001227
Ingo Molnar54168ed2008-08-20 09:07:45 +02001228 /* Only try and allocate irqs on cpus that are present */
1229 cpus_and(mask, mask, cpu_online_map);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001230
Ingo Molnar54168ed2008-08-20 09:07:45 +02001231 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1232 return -EBUSY;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001233
Ingo Molnar54168ed2008-08-20 09:07:45 +02001234 old_vector = cfg->vector;
1235 if (old_vector) {
1236 cpumask_t tmp;
1237 cpus_and(tmp, cfg->domain, mask);
1238 if (!cpus_empty(tmp))
1239 return 0;
1240 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07001241
Ingo Molnar54168ed2008-08-20 09:07:45 +02001242 for_each_cpu_mask_nr(cpu, mask) {
1243 cpumask_t domain, new_mask;
1244 int new_cpu;
1245 int vector, offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001246
Ingo Molnar54168ed2008-08-20 09:07:45 +02001247 domain = vector_allocation_domain(cpu);
1248 cpus_and(new_mask, domain, cpu_online_map);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001249
Ingo Molnar54168ed2008-08-20 09:07:45 +02001250 vector = current_vector;
1251 offset = current_offset;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001252next:
Ingo Molnar54168ed2008-08-20 09:07:45 +02001253 vector += 8;
1254 if (vector >= first_system_vector) {
1255 /* If we run out of vectors on large boxen, must share them. */
1256 offset = (offset + 1) % 8;
1257 vector = FIRST_DEVICE_VECTOR + offset;
Yinghai Lu7a959cf2008-08-19 20:50:32 -07001258 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001259 if (unlikely(current_vector == vector))
1260 continue;
1261#ifdef CONFIG_X86_64
1262 if (vector == IA32_SYSCALL_VECTOR)
1263 goto next;
1264#else
1265 if (vector == SYSCALL_VECTOR)
1266 goto next;
1267#endif
1268 for_each_cpu_mask_nr(new_cpu, new_mask)
1269 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1270 goto next;
1271 /* Found one! */
1272 current_vector = vector;
1273 current_offset = offset;
1274 if (old_vector) {
1275 cfg->move_in_progress = 1;
1276 cfg->old_domain = cfg->domain;
1277 }
1278 for_each_cpu_mask_nr(new_cpu, new_mask)
1279 per_cpu(vector_irq, new_cpu)[vector] = irq;
1280 cfg->vector = vector;
1281 cfg->domain = domain;
1282 return 0;
1283 }
1284 return -ENOSPC;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001285}
1286
1287static int assign_irq_vector(int irq, cpumask_t mask)
1288{
1289 int err;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001290 unsigned long flags;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001291
1292 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001293 err = __assign_irq_vector(irq, mask);
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001294 spin_unlock_irqrestore(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07001295 return err;
1296}
1297
1298static void __clear_irq_vector(int irq)
1299{
1300 struct irq_cfg *cfg;
1301 cpumask_t mask;
1302 int cpu, vector;
1303
1304 cfg = irq_cfg(irq);
1305 BUG_ON(!cfg->vector);
1306
1307 vector = cfg->vector;
1308 cpus_and(mask, cfg->domain, cpu_online_map);
1309 for_each_cpu_mask_nr(cpu, mask)
1310 per_cpu(vector_irq, cpu)[vector] = -1;
1311
1312 cfg->vector = 0;
1313 cpus_clear(cfg->domain);
1314}
1315
1316void __setup_vector_irq(int cpu)
1317{
1318 /* Initialize vector_irq on a new cpu */
1319 /* This function must be called with vector_lock held */
1320 int irq, vector;
1321 struct irq_cfg *cfg;
1322
1323 /* Mark the inuse vectors */
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001324 for_each_irq_cfg(irq, cfg) {
Yinghai Lu497c9a12008-08-19 20:50:28 -07001325 if (!cpu_isset(cpu, cfg->domain))
1326 continue;
1327 vector = cfg->vector;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001328 per_cpu(vector_irq, cpu)[vector] = irq;
1329 }
1330 /* Mark the free vectors */
1331 for (vector = 0; vector < NR_VECTORS; ++vector) {
1332 irq = per_cpu(vector_irq, cpu)[vector];
1333 if (irq < 0)
1334 continue;
1335
1336 cfg = irq_cfg(irq);
1337 if (!cpu_isset(cpu, cfg->domain))
1338 per_cpu(vector_irq, cpu)[vector] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001339 }
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07001340}
Glauber Costa3fde6902008-05-28 20:34:19 -07001341
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07001342static struct irq_chip ioapic_chip;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001343#ifdef CONFIG_INTR_REMAP
1344static struct irq_chip ir_ioapic_chip;
1345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Ingo Molnar54168ed2008-08-20 09:07:45 +02001347#define IOAPIC_AUTO -1
1348#define IOAPIC_EDGE 0
1349#define IOAPIC_LEVEL 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001351#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07001352static inline int IO_APIC_irq_trigger(int irq)
1353{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001354 int apic, idx, pin;
Yinghai Lu1d025192008-08-19 20:50:34 -07001355
Ingo Molnar54168ed2008-08-20 09:07:45 +02001356 for (apic = 0; apic < nr_ioapics; apic++) {
1357 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1358 idx = find_irq_entry(apic, pin, mp_INT);
1359 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1360 return irq_trigger(idx);
1361 }
1362 }
1363 /*
1364 * nonexistent IRQs are edge default
1365 */
1366 return 0;
Yinghai Lu1d025192008-08-19 20:50:34 -07001367}
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001368#else
1369static inline int IO_APIC_irq_trigger(int irq)
1370{
Ingo Molnar54168ed2008-08-20 09:07:45 +02001371 return 1;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001372}
1373#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07001374
Yinghai Lu497c9a12008-08-19 20:50:28 -07001375static void ioapic_register_intr(int irq, unsigned long trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Yinghai Lu08678b02008-08-19 20:50:05 -07001377 struct irq_desc *desc;
1378
Yinghai Lu199751d2008-08-19 20:50:27 -07001379 /* first time to use this irq_desc */
1380 if (irq < 16)
1381 desc = irq_to_desc(irq);
1382 else
1383 desc = irq_to_desc_alloc(irq);
1384
Jan Beulich6ebcc002006-06-26 13:56:46 +02001385 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001386 trigger == IOAPIC_LEVEL)
Yinghai Lu08678b02008-08-19 20:50:05 -07001387 desc->status |= IRQ_LEVEL;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001388 else
1389 desc->status &= ~IRQ_LEVEL;
1390
Ingo Molnar54168ed2008-08-20 09:07:45 +02001391#ifdef CONFIG_INTR_REMAP
1392 if (irq_remapped(irq)) {
1393 desc->status |= IRQ_MOVE_PCNTXT;
1394 if (trigger)
1395 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1396 handle_fasteoi_irq,
1397 "fasteoi");
1398 else
1399 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1400 handle_edge_irq, "edge");
1401 return;
1402 }
1403#endif
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001404 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1405 trigger == IOAPIC_LEVEL)
Ingo Molnara460e742006-10-17 00:10:03 -07001406 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001407 handle_fasteoi_irq,
1408 "fasteoi");
Yinghai Lu047c8fd2008-08-19 20:50:41 -07001409 else
Ingo Molnara460e742006-10-17 00:10:03 -07001410 set_irq_chip_and_handler_name(irq, &ioapic_chip,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001411 handle_edge_irq, "edge");
Yinghai Lu497c9a12008-08-19 20:50:28 -07001412}
1413
1414static int setup_ioapic_entry(int apic, int irq,
1415 struct IO_APIC_route_entry *entry,
1416 unsigned int destination, int trigger,
1417 int polarity, int vector)
1418{
1419 /*
1420 * add it to the IO-APIC irq-routing table:
1421 */
1422 memset(entry,0,sizeof(*entry));
1423
Ingo Molnar54168ed2008-08-20 09:07:45 +02001424#ifdef CONFIG_INTR_REMAP
1425 if (intr_remapping_enabled) {
1426 struct intel_iommu *iommu = map_ioapic_to_ir(apic);
1427 struct irte irte;
1428 struct IR_IO_APIC_route_entry *ir_entry =
1429 (struct IR_IO_APIC_route_entry *) entry;
1430 int index;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001431
Ingo Molnar54168ed2008-08-20 09:07:45 +02001432 if (!iommu)
1433 panic("No mapping iommu for ioapic %d\n", apic);
1434
1435 index = alloc_irte(iommu, irq, 1);
1436 if (index < 0)
1437 panic("Failed to allocate IRTE for ioapic %d\n", apic);
1438
1439 memset(&irte, 0, sizeof(irte));
1440
1441 irte.present = 1;
1442 irte.dst_mode = INT_DEST_MODE;
1443 irte.trigger_mode = trigger;
1444 irte.dlvry_mode = INT_DELIVERY_MODE;
1445 irte.vector = vector;
1446 irte.dest_id = IRTE_DEST(destination);
1447
1448 modify_irte(irq, &irte);
1449
1450 ir_entry->index2 = (index >> 15) & 0x1;
1451 ir_entry->zero = 0;
1452 ir_entry->format = 1;
1453 ir_entry->index = (index & 0x7fff);
1454 } else
1455#endif
1456 {
1457 entry->delivery_mode = INT_DELIVERY_MODE;
1458 entry->dest_mode = INT_DEST_MODE;
1459 entry->dest = destination;
1460 }
1461
1462 entry->mask = 0; /* enable IRQ */
Yinghai Lu497c9a12008-08-19 20:50:28 -07001463 entry->trigger = trigger;
1464 entry->polarity = polarity;
1465 entry->vector = vector;
1466
1467 /* Mask level triggered irqs.
1468 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1469 */
1470 if (trigger)
1471 entry->mask = 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07001472 return 0;
1473}
1474
1475static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
Ingo Molnar54168ed2008-08-20 09:07:45 +02001476 int trigger, int polarity)
Yinghai Lu497c9a12008-08-19 20:50:28 -07001477{
1478 struct irq_cfg *cfg;
1479 struct IO_APIC_route_entry entry;
1480 cpumask_t mask;
1481
1482 if (!IO_APIC_IRQ(irq))
1483 return;
1484
1485 cfg = irq_cfg(irq);
1486
1487 mask = TARGET_CPUS;
1488 if (assign_irq_vector(irq, mask))
1489 return;
1490
1491 cpus_and(mask, cfg->domain, mask);
1492
1493 apic_printk(APIC_VERBOSE,KERN_DEBUG
1494 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1495 "IRQ %d Mode:%i Active:%i)\n",
1496 apic, mp_ioapics[apic].mp_apicid, pin, cfg->vector,
1497 irq, trigger, polarity);
1498
1499
1500 if (setup_ioapic_entry(mp_ioapics[apic].mp_apicid, irq, &entry,
1501 cpu_mask_to_apicid(mask), trigger, polarity,
1502 cfg->vector)) {
1503 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1504 mp_ioapics[apic].mp_apicid, pin);
1505 __clear_irq_vector(irq);
1506 return;
1507 }
1508
1509 ioapic_register_intr(irq, trigger);
1510 if (irq < 16)
1511 disable_8259A_irq(irq);
1512
1513 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516static void __init setup_IO_APIC_irqs(void)
1517{
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001518 int apic, pin, idx, irq;
1519 int notcon = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1522
1523 for (apic = 0; apic < nr_ioapics; apic++) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001524 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001526 idx = find_irq_entry(apic, pin, mp_INT);
1527 if (idx == -1) {
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001528 if (!notcon) {
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001529 notcon = 1;
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001530 apic_printk(APIC_VERBOSE,
1531 KERN_DEBUG " %d-%d",
1532 mp_ioapics[apic].mp_apicid,
1533 pin);
1534 } else
1535 apic_printk(APIC_VERBOSE, " %d-%d",
1536 mp_ioapics[apic].mp_apicid,
1537 pin);
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001538 continue;
1539 }
Cyrill Gorcunov56ffa1a2008-09-13 13:11:16 +04001540 if (notcon) {
1541 apic_printk(APIC_VERBOSE,
1542 " (apicid-pin) not connected\n");
1543 notcon = 0;
1544 }
Yinghai Lu20d225b2007-10-17 18:04:41 +02001545
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001546 irq = pin_2_irq(idx, apic, pin);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001547#ifdef CONFIG_X86_32
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001548 if (multi_timer_check(apic, irq))
1549 continue;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001550#endif
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001551 add_pin_to_irq(irq, apic, pin);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001552
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001553 setup_IO_APIC_irq(apic, pin, irq,
1554 irq_trigger(idx), irq_polarity(idx));
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
Cyrill Gorcunov3c2cbd22008-09-06 14:15:33 +04001558 if (notcon)
1559 apic_printk(APIC_VERBOSE,
Cyrill Gorcunov2a554fb2008-09-08 19:38:06 +04001560 " (apicid-pin) not connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563/*
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001564 * Set up the timer pin, possibly with the 8259A-master behind.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 */
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001566static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1567 int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 struct IO_APIC_route_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Ingo Molnar54168ed2008-08-20 09:07:45 +02001571#ifdef CONFIG_INTR_REMAP
1572 if (intr_remapping_enabled)
1573 return;
1574#endif
1575
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001576 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /*
1579 * We use logical delivery to get the timer IRQ
1580 * to the first CPU.
1581 */
1582 entry.dest_mode = INT_DEST_MODE;
Maciej W. Rozycki03be7502008-05-27 21:19:45 +01001583 entry.mask = 1; /* mask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07001584 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 entry.delivery_mode = INT_DELIVERY_MODE;
1586 entry.polarity = 0;
1587 entry.trigger = 0;
1588 entry.vector = vector;
1589
1590 /*
1591 * The timer IRQ doesn't have to know that behind the
Maciej W. Rozyckif7633ce2008-05-27 21:19:34 +01001592 * scene we may have a 8259A-master in AEOI mode ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02001594 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 /*
1597 * Add it to the IO-APIC irq-routing table:
1598 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001599 ioapic_write_entry(apic, pin, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001602
1603__apicdebuginit(void) print_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 int apic, i;
1606 union IO_APIC_reg_00 reg_00;
1607 union IO_APIC_reg_01 reg_01;
1608 union IO_APIC_reg_02 reg_02;
1609 union IO_APIC_reg_03 reg_03;
1610 unsigned long flags;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001611 struct irq_cfg *cfg;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001612 unsigned int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 if (apic_verbosity == APIC_QUIET)
1615 return;
1616
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02001617 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 for (i = 0; i < nr_ioapics; i++)
1619 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001620 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 /*
1623 * We are a bit conservative about what we expect. We have to
1624 * know about every hardware change ASAP.
1625 */
1626 printk(KERN_INFO "testing the IO APIC.......................\n");
1627
1628 for (apic = 0; apic < nr_ioapics; apic++) {
1629
1630 spin_lock_irqsave(&ioapic_lock, flags);
1631 reg_00.raw = io_apic_read(apic, 0);
1632 reg_01.raw = io_apic_read(apic, 1);
1633 if (reg_01.bits.version >= 0x10)
1634 reg_02.raw = io_apic_read(apic, 2);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001635 if (reg_01.bits.version >= 0x20)
1636 reg_03.raw = io_apic_read(apic, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 spin_unlock_irqrestore(&ioapic_lock, flags);
1638
Ingo Molnar54168ed2008-08-20 09:07:45 +02001639 printk("\n");
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04001640 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1642 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1643 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1644 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Ingo Molnar54168ed2008-08-20 09:07:45 +02001646 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1650 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /*
1653 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1654 * but the value of reg_02 is read as the previous read register
1655 * value, so ignore it if reg_02 == reg_01.
1656 */
1657 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1658 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1659 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
1661
1662 /*
1663 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1664 * or reg_03, but the value of reg_0[23] is read as the previous read
1665 * register value, so ignore it if reg_03 == reg_0[12].
1666 */
1667 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1668 reg_03.raw != reg_01.raw) {
1669 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1670 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
1673 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1674
Yinghai Lud83e94a2008-08-19 20:50:33 -07001675 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1676 " Stat Dmod Deli Vect: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 for (i = 0; i <= reg_01.bits.entries; i++) {
1679 struct IO_APIC_route_entry entry;
1680
Andi Kleencf4c6a22006-09-26 10:52:30 +02001681 entry = ioapic_read_entry(apic, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Ingo Molnar54168ed2008-08-20 09:07:45 +02001683 printk(KERN_DEBUG " %02x %03X ",
1684 i,
1685 entry.dest
1686 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1689 entry.mask,
1690 entry.trigger,
1691 entry.irr,
1692 entry.polarity,
1693 entry.delivery_status,
1694 entry.dest_mode,
1695 entry.delivery_mode,
1696 entry.vector
1697 );
1698 }
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 printk(KERN_DEBUG "IRQ to pin mappings:\n");
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001701 for_each_irq_cfg(irq, cfg) {
Yinghai Lu0f978f42008-08-19 20:50:26 -07001702 struct irq_pin_list *entry = cfg->irq_2_pin;
1703 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 continue;
Yinghai Lu8f09cd22008-08-19 20:50:51 -07001705 printk(KERN_DEBUG "IRQ%d ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 for (;;) {
1707 printk("-> %d:%d", entry->apic, entry->pin);
1708 if (!entry->next)
1709 break;
Yinghai Lu0f978f42008-08-19 20:50:26 -07001710 entry = entry->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712 printk("\n");
1713 }
1714
1715 printk(KERN_INFO ".................................... done.\n");
1716
1717 return;
1718}
1719
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001720__apicdebuginit(void) print_APIC_bitfield(int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
1722 unsigned int v;
1723 int i, j;
1724
1725 if (apic_verbosity == APIC_QUIET)
1726 return;
1727
1728 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1729 for (i = 0; i < 8; i++) {
1730 v = apic_read(base + i*0x10);
1731 for (j = 0; j < 32; j++) {
1732 if (v & (1<<j))
1733 printk("1");
1734 else
1735 printk("0");
1736 }
1737 printk("\n");
1738 }
1739}
1740
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001741__apicdebuginit(void) print_local_APIC(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
1743 unsigned int v, ver, maxlvt;
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001744 u64 icr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
1746 if (apic_verbosity == APIC_QUIET)
1747 return;
1748
1749 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1750 smp_processor_id(), hard_smp_processor_id());
Andreas Herrmann66823112008-06-05 16:35:10 +02001751 v = apic_read(APIC_ID);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001752 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 v = apic_read(APIC_LVR);
1754 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1755 ver = GET_APIC_VERSION(v);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001756 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 v = apic_read(APIC_TASKPRI);
1759 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1760
Ingo Molnar54168ed2008-08-20 09:07:45 +02001761 if (APIC_INTEGRATED(ver)) { /* !82489DX */
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001762 if (!APIC_XAPIC(ver)) {
1763 v = apic_read(APIC_ARBPRI);
1764 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1765 v & APIC_ARBPRI_MASK);
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 v = apic_read(APIC_PROCPRI);
1768 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1769 }
1770
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001771 /*
1772 * Remote read supported only in the 82489DX and local APIC for
1773 * Pentium processors.
1774 */
1775 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1776 v = apic_read(APIC_RRR);
1777 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1778 }
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 v = apic_read(APIC_LDR);
1781 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
Yinghai Lua11b5ab2008-09-03 16:58:31 -07001782 if (!x2apic_enabled()) {
1783 v = apic_read(APIC_DFR);
1784 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 v = apic_read(APIC_SPIV);
1787 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1788
1789 printk(KERN_DEBUG "... APIC ISR field:\n");
1790 print_APIC_bitfield(APIC_ISR);
1791 printk(KERN_DEBUG "... APIC TMR field:\n");
1792 print_APIC_bitfield(APIC_TMR);
1793 printk(KERN_DEBUG "... APIC IRR field:\n");
1794 print_APIC_bitfield(APIC_IRR);
1795
Ingo Molnar54168ed2008-08-20 09:07:45 +02001796 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1797 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 apic_write(APIC_ESR, 0);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 v = apic_read(APIC_ESR);
1801 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1802 }
1803
Hiroshi Shimamoto7ab6af72008-07-30 17:36:48 -07001804 icr = apic_icr_read();
Ingo Molnar0c425ce2008-08-18 13:04:26 +02001805 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1806 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 v = apic_read(APIC_LVTT);
1809 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1810
1811 if (maxlvt > 3) { /* PC is LVT#4. */
1812 v = apic_read(APIC_LVTPC);
1813 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1814 }
1815 v = apic_read(APIC_LVT0);
1816 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1817 v = apic_read(APIC_LVT1);
1818 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1819
1820 if (maxlvt > 2) { /* ERR is LVT#3. */
1821 v = apic_read(APIC_LVTERR);
1822 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1823 }
1824
1825 v = apic_read(APIC_TMICT);
1826 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1827 v = apic_read(APIC_TMCCT);
1828 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1829 v = apic_read(APIC_TDCR);
1830 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1831 printk("\n");
1832}
1833
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001834__apicdebuginit(void) print_all_local_APICs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Yinghai Luffd5aae2008-08-19 20:50:50 -07001836 int cpu;
1837
1838 preempt_disable();
1839 for_each_online_cpu(cpu)
1840 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1841 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001844__apicdebuginit(void) print_PIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 unsigned int v;
1847 unsigned long flags;
1848
1849 if (apic_verbosity == APIC_QUIET)
1850 return;
1851
1852 printk(KERN_DEBUG "\nprinting PIC contents\n");
1853
1854 spin_lock_irqsave(&i8259A_lock, flags);
1855
1856 v = inb(0xa1) << 8 | inb(0x21);
1857 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1858
1859 v = inb(0xa0) << 8 | inb(0x20);
1860 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1861
Ingo Molnar54168ed2008-08-20 09:07:45 +02001862 outb(0x0b,0xa0);
1863 outb(0x0b,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 v = inb(0xa0) << 8 | inb(0x20);
Ingo Molnar54168ed2008-08-20 09:07:45 +02001865 outb(0x0a,0xa0);
1866 outb(0x0a,0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 spin_unlock_irqrestore(&i8259A_lock, flags);
1869
1870 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1871
1872 v = inb(0x4d1) << 8 | inb(0x4d0);
1873 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1874}
1875
Maciej W. Rozycki32f71af2008-07-21 00:52:49 +01001876__apicdebuginit(int) print_all_ICs(void)
1877{
1878 print_PIC();
1879 print_all_local_APICs();
1880 print_IO_APIC();
1881
1882 return 0;
1883}
1884
1885fs_initcall(print_all_ICs);
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Yinghai Luefa25592008-08-19 20:50:36 -07001888/* Where if anywhere is the i8259 connect in external int mode */
1889static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1890
Ingo Molnar54168ed2008-08-20 09:07:45 +02001891void __init enable_IO_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
1893 union IO_APIC_reg_01 reg_01;
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001894 int i8259_apic, i8259_pin;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001895 int apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 unsigned long flags;
1897
Ingo Molnar54168ed2008-08-20 09:07:45 +02001898#ifdef CONFIG_X86_32
1899 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (!pirqs_enabled)
1901 for (i = 0; i < MAX_PIRQS; i++)
1902 pirq_entries[i] = -1;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001903#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 /*
1906 * The number of IO-APIC IRQ registers (== #pins):
1907 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001908 for (apic = 0; apic < nr_ioapics; apic++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 spin_lock_irqsave(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001910 reg_01.raw = io_apic_read(apic, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 spin_unlock_irqrestore(&ioapic_lock, flags);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001912 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1913 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001914 for(apic = 0; apic < nr_ioapics; apic++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001915 int pin;
1916 /* See if any of the pins is in ExtINT mode */
Eric W. Biederman1008fdd2006-01-11 22:46:06 +01001917 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001918 struct IO_APIC_route_entry entry;
Andi Kleencf4c6a22006-09-26 10:52:30 +02001919 entry = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001920
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001921 /* If the interrupt line is enabled and in ExtInt mode
1922 * I have found the pin where the i8259 is connected.
1923 */
1924 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1925 ioapic_i8259.apic = apic;
1926 ioapic_i8259.pin = pin;
1927 goto found_i8259;
1928 }
1929 }
1930 }
1931 found_i8259:
1932 /* Look to see what if the MP table has reported the ExtINT */
1933 /* If we could not find the appropriate pin by looking at the ioapic
1934 * the i8259 probably is not connected the ioapic but give the
1935 * mptable a chance anyway.
1936 */
1937 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1938 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1939 /* Trust the MP table if nothing is setup in the hardware */
1940 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1941 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1942 ioapic_i8259.pin = i8259_pin;
1943 ioapic_i8259.apic = i8259_apic;
1944 }
1945 /* Complain if the MP table and the hardware disagree */
1946 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1947 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1948 {
1949 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951
1952 /*
1953 * Do not trust the IO-APIC being empty at bootup
1954 */
1955 clear_IO_APIC();
1956}
1957
1958/*
1959 * Not an __init, needed by the reboot code
1960 */
1961void disable_IO_APIC(void)
1962{
1963 /*
1964 * Clear the IO-APIC before rebooting:
1965 */
1966 clear_IO_APIC();
1967
Eric W. Biederman650927e2005-06-25 14:57:44 -07001968 /*
Karsten Wiese0b968d22005-09-09 12:59:04 +02001969 * If the i8259 is routed through an IOAPIC
Eric W. Biederman650927e2005-06-25 14:57:44 -07001970 * Put that IOAPIC in virtual wire mode
Karsten Wiese0b968d22005-09-09 12:59:04 +02001971 * so legacy interrupts can be delivered.
Eric W. Biederman650927e2005-06-25 14:57:44 -07001972 */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001973 if (ioapic_i8259.pin != -1) {
Eric W. Biederman650927e2005-06-25 14:57:44 -07001974 struct IO_APIC_route_entry entry;
Eric W. Biederman650927e2005-06-25 14:57:44 -07001975
1976 memset(&entry, 0, sizeof(entry));
1977 entry.mask = 0; /* Enabled */
1978 entry.trigger = 0; /* Edge */
1979 entry.irr = 0;
1980 entry.polarity = 0; /* High */
1981 entry.delivery_status = 0;
1982 entry.dest_mode = 0; /* Physical */
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001983 entry.delivery_mode = dest_ExtINT; /* ExtInt */
Eric W. Biederman650927e2005-06-25 14:57:44 -07001984 entry.vector = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02001985 entry.dest = read_apic_id();
Eric W. Biederman650927e2005-06-25 14:57:44 -07001986
1987 /*
1988 * Add it to the IO-APIC irq-routing table:
1989 */
Andi Kleencf4c6a22006-09-26 10:52:30 +02001990 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
Eric W. Biederman650927e2005-06-25 14:57:44 -07001991 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02001992
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08001993 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
Ingo Molnar54168ed2008-08-20 09:07:45 +02001996#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997/*
1998 * function to set the IO-APIC physical IDs based on the
1999 * values stored in the MPC table.
2000 *
2001 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2002 */
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004static void __init setup_ioapic_ids_from_mpc(void)
2005{
2006 union IO_APIC_reg_00 reg_00;
2007 physid_mask_t phys_id_present_map;
2008 int apic;
2009 int i;
2010 unsigned char old_id;
2011 unsigned long flags;
2012
Yinghai Lua4dbc342008-07-25 02:14:28 -07002013 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
Yinghai Lud49c4282008-06-08 18:31:54 -07002014 return;
Yinghai Lud49c4282008-06-08 18:31:54 -07002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002017 * Don't check I/O APIC IDs for xAPIC systems. They have
2018 * no meaning without the serial APIC bus.
2019 */
Shaohua Li7c5c1e42006-03-23 02:59:53 -08002020 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2021 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Natalie Protasevichca05fea2005-06-23 00:08:22 -07002022 return;
2023 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 * This is broken; anything with a real cpu count has to
2025 * circumvent this idiocy regardless.
2026 */
2027 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
2028
2029 /*
2030 * Set the IOAPIC ID to the value stored in the MPC table.
2031 */
2032 for (apic = 0; apic < nr_ioapics; apic++) {
2033
2034 /* Read the register 0 value */
2035 spin_lock_irqsave(&ioapic_lock, flags);
2036 reg_00.raw = io_apic_read(apic, 0);
2037 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002038
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002039 old_id = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002041 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002043 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2045 reg_00.bits.ID);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002046 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /*
2050 * Sanity check, is the ID really free? Every APIC in a
2051 * system must have a unique ID or we get lots of nice
2052 * 'stuck on smp_invalidate_needed IPI wait' messages.
2053 */
2054 if (check_apicid_used(phys_id_present_map,
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002055 mp_ioapics[apic].mp_apicid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002057 apic, mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 for (i = 0; i < get_physical_broadcast(); i++)
2059 if (!physid_isset(i, phys_id_present_map))
2060 break;
2061 if (i >= get_physical_broadcast())
2062 panic("Max APIC ID exceeded!\n");
2063 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2064 i);
2065 physid_set(i, phys_id_present_map);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002066 mp_ioapics[apic].mp_apicid = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 } else {
2068 physid_mask_t tmp;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002069 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 apic_printk(APIC_VERBOSE, "Setting %d in the "
2071 "phys_id_present_map\n",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002072 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2074 }
2075
2076
2077 /*
2078 * We need to adjust the IRQ routing table
2079 * if the ID changed.
2080 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002081 if (old_id != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04002083 if (mp_irqs[i].mp_dstapic == old_id)
2084 mp_irqs[i].mp_dstapic
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002085 = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 /*
2088 * Read the right value from the MPC table and
2089 * write it into the ID register.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 apic_printk(APIC_VERBOSE, KERN_INFO
2092 "...changing IO-APIC physical APIC ID to %d ...",
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002093 mp_ioapics[apic].mp_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002095 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 spin_lock_irqsave(&ioapic_lock, flags);
Yinghai Lua2d332f2008-08-21 12:56:32 -07002097 io_apic_write(apic, 0, reg_00.raw);
2098 spin_unlock_irqrestore(&ioapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /*
2101 * Sanity check
2102 */
2103 spin_lock_irqsave(&ioapic_lock, flags);
2104 reg_00.raw = io_apic_read(apic, 0);
2105 spin_unlock_irqrestore(&ioapic_lock, flags);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04002106 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 printk("could not set ID!\n");
2108 else
2109 apic_printk(APIC_VERBOSE, " ok.\n");
2110 }
2111}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +01002114int no_timer_check __initdata;
Zachary Amsden8542b202006-12-07 02:14:09 +01002115
2116static int __init notimercheck(char *s)
2117{
2118 no_timer_check = 1;
2119 return 1;
2120}
2121__setup("no_timer_check", notimercheck);
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123/*
2124 * There is a nasty bug in some older SMP boards, their mptable lies
2125 * about the timer IRQ. We do the following to work around the situation:
2126 *
2127 * - timer IRQ defaults to IO-APIC IRQ
2128 * - if this function detects that timer IRQs are defunct, then we fall
2129 * back to ISA timer IRQs
2130 */
Adrian Bunkf0a7a5c2007-07-21 17:10:29 +02002131static int __init timer_irq_works(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 unsigned long t1 = jiffies;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002134 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Zachary Amsden8542b202006-12-07 02:14:09 +01002136 if (no_timer_check)
2137 return 1;
2138
Ingo Molnar4aae0702007-12-18 18:05:58 +01002139 local_save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 local_irq_enable();
2141 /* Let ten ticks pass... */
2142 mdelay((10 * 1000) / HZ);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002143 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /*
2146 * Expect a few ticks at least, to be sure some possible
2147 * glue logic does not lock up after one or two first
2148 * ticks in a non-ExtINT mode. Also the local APIC
2149 * might have cached one ExtINT interrupt. Finally, at
2150 * least one tick may be lost due to delays.
2151 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002152
2153 /* jiffies wrap? */
Julia Lawall1d16b532008-01-30 13:32:19 +01002154 if (time_after(jiffies, t1 + 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
2157}
2158
2159/*
2160 * In the SMP+IOAPIC case it might happen that there are an unspecified
2161 * number of pending IRQ events unhandled. These cases are very rare,
2162 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2163 * better to do it this way as thus we do not have to be aware of
2164 * 'pending' interrupts in the IRQ path, except at this point.
2165 */
2166/*
2167 * Edge triggered needs to resend any interrupt
2168 * that was delayed but this is now handled in the device
2169 * independent code.
2170 */
2171
2172/*
2173 * Starting up a edge-triggered IO-APIC interrupt is
2174 * nasty - we need to make sure that we get the edge.
2175 * If it is already asserted for some reason, we need
2176 * return 1 to indicate that is was pending.
2177 *
2178 * This is not complete - we should be able to fake
2179 * an edge even if it isn't on the 8259A...
2180 */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002181
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002182static unsigned int startup_ioapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 int was_pending = 0;
2185 unsigned long flags;
2186
2187 spin_lock_irqsave(&ioapic_lock, flags);
2188 if (irq < 16) {
2189 disable_8259A_irq(irq);
2190 if (i8259A_irq_pending(irq))
2191 was_pending = 1;
2192 }
2193 __unmask_IO_APIC_irq(irq);
2194 spin_unlock_irqrestore(&ioapic_lock, flags);
2195
2196 return was_pending;
2197}
2198
Ingo Molnar54168ed2008-08-20 09:07:45 +02002199#ifdef CONFIG_X86_64
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002200static int ioapic_retrigger_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002202
2203 struct irq_cfg *cfg = irq_cfg(irq);
2204 unsigned long flags;
2205
2206 spin_lock_irqsave(&vector_lock, flags);
2207 send_IPI_mask(cpumask_of_cpu(first_cpu(cfg->domain)), cfg->vector);
2208 spin_unlock_irqrestore(&vector_lock, flags);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002209
2210 return 1;
2211}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002212#else
2213static int ioapic_retrigger_irq(unsigned int irq)
2214{
2215 send_IPI_self(irq_cfg(irq)->vector);
2216
2217 return 1;
2218}
2219#endif
2220
2221/*
2222 * Level and edge triggered IO-APIC interrupts need different handling,
2223 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2224 * handled with the level-triggered descriptor, but that one has slightly
2225 * more overhead. Level-triggered interrupts cannot be handled with the
2226 * edge-triggered handler, without risking IRQ storms and other ugly
2227 * races.
2228 */
Ingo Molnarc0ad90a2006-06-29 02:24:44 -07002229
Yinghai Lu497c9a12008-08-19 20:50:28 -07002230#ifdef CONFIG_SMP
Ingo Molnar54168ed2008-08-20 09:07:45 +02002231
2232#ifdef CONFIG_INTR_REMAP
2233static void ir_irq_migration(struct work_struct *work);
2234
2235static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration);
2236
2237/*
2238 * Migrate the IO-APIC irq in the presence of intr-remapping.
2239 *
2240 * For edge triggered, irq migration is a simple atomic update(of vector
2241 * and cpu destination) of IRTE and flush the hardware cache.
2242 *
2243 * For level triggered, we need to modify the io-apic RTE aswell with the update
2244 * vector information, along with modifying IRTE with vector and destination.
2245 * So irq migration for level triggered is little bit more complex compared to
2246 * edge triggered migration. But the good news is, we use the same algorithm
2247 * for level triggered migration as we have today, only difference being,
2248 * we now initiate the irq migration from process context instead of the
2249 * interrupt context.
2250 *
2251 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2252 * suppression) to the IO-APIC, level triggered irq migration will also be
2253 * as simple as edge triggered migration and we can do the irq migration
2254 * with a simple atomic update to IO-APIC RTE.
2255 */
2256static void migrate_ioapic_irq(int irq, cpumask_t mask)
2257{
2258 struct irq_cfg *cfg;
2259 struct irq_desc *desc;
2260 cpumask_t tmp, cleanup_mask;
2261 struct irte irte;
2262 int modify_ioapic_rte;
2263 unsigned int dest;
2264 unsigned long flags;
2265
2266 cpus_and(tmp, mask, cpu_online_map);
2267 if (cpus_empty(tmp))
2268 return;
2269
2270 if (get_irte(irq, &irte))
2271 return;
2272
2273 if (assign_irq_vector(irq, mask))
2274 return;
2275
2276 cfg = irq_cfg(irq);
2277 cpus_and(tmp, cfg->domain, mask);
2278 dest = cpu_mask_to_apicid(tmp);
2279
2280 desc = irq_to_desc(irq);
2281 modify_ioapic_rte = desc->status & IRQ_LEVEL;
2282 if (modify_ioapic_rte) {
2283 spin_lock_irqsave(&ioapic_lock, flags);
2284 __target_IO_APIC_irq(irq, dest, cfg->vector);
2285 spin_unlock_irqrestore(&ioapic_lock, flags);
2286 }
2287
2288 irte.vector = cfg->vector;
2289 irte.dest_id = IRTE_DEST(dest);
2290
2291 /*
2292 * Modified the IRTE and flushes the Interrupt entry cache.
2293 */
2294 modify_irte(irq, &irte);
2295
2296 if (cfg->move_in_progress) {
2297 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2298 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2299 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2300 cfg->move_in_progress = 0;
2301 }
2302
2303 desc->affinity = mask;
2304}
2305
2306static int migrate_irq_remapped_level(int irq)
2307{
2308 int ret = -1;
2309 struct irq_desc *desc = irq_to_desc(irq);
2310
2311 mask_IO_APIC_irq(irq);
2312
2313 if (io_apic_level_ack_pending(irq)) {
2314 /*
2315 * Interrupt in progress. Migrating irq now will change the
2316 * vector information in the IO-APIC RTE and that will confuse
2317 * the EOI broadcast performed by cpu.
2318 * So, delay the irq migration to the next instance.
2319 */
2320 schedule_delayed_work(&ir_migration_work, 1);
2321 goto unmask;
2322 }
2323
2324 /* everthing is clear. we have right of way */
2325 migrate_ioapic_irq(irq, desc->pending_mask);
2326
2327 ret = 0;
2328 desc->status &= ~IRQ_MOVE_PENDING;
2329 cpus_clear(desc->pending_mask);
2330
2331unmask:
2332 unmask_IO_APIC_irq(irq);
2333 return ret;
2334}
2335
2336static void ir_irq_migration(struct work_struct *work)
2337{
2338 unsigned int irq;
2339 struct irq_desc *desc;
2340
2341 for_each_irq_desc(irq, desc) {
2342 if (desc->status & IRQ_MOVE_PENDING) {
2343 unsigned long flags;
2344
2345 spin_lock_irqsave(&desc->lock, flags);
2346 if (!desc->chip->set_affinity ||
2347 !(desc->status & IRQ_MOVE_PENDING)) {
2348 desc->status &= ~IRQ_MOVE_PENDING;
2349 spin_unlock_irqrestore(&desc->lock, flags);
2350 continue;
2351 }
2352
2353 desc->chip->set_affinity(irq, desc->pending_mask);
2354 spin_unlock_irqrestore(&desc->lock, flags);
2355 }
2356 }
2357}
2358
2359/*
2360 * Migrates the IRQ destination in the process context.
2361 */
2362static void set_ir_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
2363{
2364 struct irq_desc *desc = irq_to_desc(irq);
2365
2366 if (desc->status & IRQ_LEVEL) {
2367 desc->status |= IRQ_MOVE_PENDING;
2368 desc->pending_mask = mask;
2369 migrate_irq_remapped_level(irq);
2370 return;
2371 }
2372
2373 migrate_ioapic_irq(irq, mask);
2374}
2375#endif
2376
Yinghai Lu497c9a12008-08-19 20:50:28 -07002377asmlinkage void smp_irq_move_cleanup_interrupt(void)
2378{
2379 unsigned vector, me;
2380 ack_APIC_irq();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002381#ifdef CONFIG_X86_64
2382 exit_idle();
2383#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002384 irq_enter();
2385
2386 me = smp_processor_id();
2387 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2388 unsigned int irq;
2389 struct irq_desc *desc;
2390 struct irq_cfg *cfg;
2391 irq = __get_cpu_var(vector_irq)[vector];
2392
2393 desc = irq_to_desc(irq);
2394 if (!desc)
2395 continue;
2396
2397 cfg = irq_cfg(irq);
2398 spin_lock(&desc->lock);
2399 if (!cfg->move_cleanup_count)
2400 goto unlock;
2401
2402 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
2403 goto unlock;
2404
2405 __get_cpu_var(vector_irq)[vector] = -1;
2406 cfg->move_cleanup_count--;
2407unlock:
2408 spin_unlock(&desc->lock);
2409 }
2410
2411 irq_exit();
2412}
2413
2414static void irq_complete_move(unsigned int irq)
2415{
2416 struct irq_cfg *cfg = irq_cfg(irq);
2417 unsigned vector, me;
2418
2419 if (likely(!cfg->move_in_progress))
2420 return;
2421
2422 vector = ~get_irq_regs()->orig_ax;
2423 me = smp_processor_id();
2424 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain)) {
2425 cpumask_t cleanup_mask;
2426
2427 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2428 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2429 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2430 cfg->move_in_progress = 0;
2431 }
2432}
2433#else
2434static inline void irq_complete_move(unsigned int irq) {}
2435#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002436#ifdef CONFIG_INTR_REMAP
2437static void ack_x2apic_level(unsigned int irq)
2438{
2439 ack_x2APIC_irq();
2440}
2441
2442static void ack_x2apic_edge(unsigned int irq)
2443{
2444 ack_x2APIC_irq();
2445}
2446#endif
Yinghai Lu497c9a12008-08-19 20:50:28 -07002447
Yinghai Lu1d025192008-08-19 20:50:34 -07002448static void ack_apic_edge(unsigned int irq)
2449{
2450 irq_complete_move(irq);
2451 move_native_irq(irq);
2452 ack_APIC_irq();
2453}
2454
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002455#ifdef CONFIG_X86_32
2456atomic_t irq_mis_count;
2457#endif
2458
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002459static void ack_apic_level(unsigned int irq)
2460{
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002461#ifdef CONFIG_X86_32
2462 unsigned long v;
2463 int i;
2464#endif
Ingo Molnar54168ed2008-08-20 09:07:45 +02002465 int do_unmask_irq = 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002466
Ingo Molnar54168ed2008-08-20 09:07:45 +02002467 irq_complete_move(irq);
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002468#ifdef CONFIG_GENERIC_PENDING_IRQ
Ingo Molnar54168ed2008-08-20 09:07:45 +02002469 /* If we are moving the irq we need to mask it */
2470 if (unlikely(irq_to_desc(irq)->status & IRQ_MOVE_PENDING)) {
2471 do_unmask_irq = 1;
2472 mask_IO_APIC_irq(irq);
2473 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002474#endif
2475
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002476#ifdef CONFIG_X86_32
2477 /*
2478 * It appears there is an erratum which affects at least version 0x11
2479 * of I/O APIC (that's the 82093AA and cores integrated into various
2480 * chipsets). Under certain conditions a level-triggered interrupt is
2481 * erroneously delivered as edge-triggered one but the respective IRR
2482 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2483 * message but it will never arrive and further interrupts are blocked
2484 * from the source. The exact reason is so far unknown, but the
2485 * phenomenon was observed when two consecutive interrupt requests
2486 * from a given source get delivered to the same CPU and the source is
2487 * temporarily disabled in between.
2488 *
2489 * A workaround is to simulate an EOI message manually. We achieve it
2490 * by setting the trigger mode to edge and then to level when the edge
2491 * trigger mode gets detected in the TMR of a local APIC for a
2492 * level-triggered interrupt. We mask the source for the time of the
2493 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2494 * The idea is from Manfred Spraul. --macro
2495 */
2496 i = irq_cfg(irq)->vector;
2497
2498 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2499#endif
2500
Ingo Molnar54168ed2008-08-20 09:07:45 +02002501 /*
2502 * We must acknowledge the irq before we move it or the acknowledge will
2503 * not propagate properly.
2504 */
2505 ack_APIC_irq();
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002506
Ingo Molnar54168ed2008-08-20 09:07:45 +02002507 /* Now we can move and renable the irq */
2508 if (unlikely(do_unmask_irq)) {
2509 /* Only migrate the irq if the ack has been received.
2510 *
2511 * On rare occasions the broadcast level triggered ack gets
2512 * delayed going to ioapics, and if we reprogram the
2513 * vector while Remote IRR is still set the irq will never
2514 * fire again.
2515 *
2516 * To prevent this scenario we read the Remote IRR bit
2517 * of the ioapic. This has two effects.
2518 * - On any sane system the read of the ioapic will
2519 * flush writes (and acks) going to the ioapic from
2520 * this cpu.
2521 * - We get to see if the ACK has actually been delivered.
2522 *
2523 * Based on failed experiments of reprogramming the
2524 * ioapic entry from outside of irq context starting
2525 * with masking the ioapic entry and then polling until
2526 * Remote IRR was clear before reprogramming the
2527 * ioapic I don't trust the Remote IRR bit to be
2528 * completey accurate.
2529 *
2530 * However there appears to be no other way to plug
2531 * this race, so if the Remote IRR bit is not
2532 * accurate and is causing problems then it is a hardware bug
2533 * and you can go talk to the chipset vendor about it.
2534 */
2535 if (!io_apic_level_ack_pending(irq))
2536 move_masked_irq(irq);
2537 unmask_IO_APIC_irq(irq);
2538 }
Yinghai Lu1d025192008-08-19 20:50:34 -07002539
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002540#ifdef CONFIG_X86_32
Yinghai Lu1d025192008-08-19 20:50:34 -07002541 if (!(v & (1 << (i & 0x1f)))) {
2542 atomic_inc(&irq_mis_count);
2543 spin_lock(&ioapic_lock);
2544 __mask_and_edge_IO_APIC_irq(irq);
2545 __unmask_and_level_IO_APIC_irq(irq);
2546 spin_unlock(&ioapic_lock);
2547 }
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002548#endif
Yinghai Lu3eb2cce2008-08-19 20:50:48 -07002549}
Yinghai Lu1d025192008-08-19 20:50:34 -07002550
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002551static struct irq_chip ioapic_chip __read_mostly = {
2552 .name = "IO-APIC",
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002553 .startup = startup_ioapic_irq,
2554 .mask = mask_IO_APIC_irq,
2555 .unmask = unmask_IO_APIC_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07002556 .ack = ack_apic_edge,
2557 .eoi = ack_apic_level,
Ashok Raj54d5d422005-09-06 15:16:15 -07002558#ifdef CONFIG_SMP
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002559 .set_affinity = set_ioapic_affinity_irq,
Ashok Raj54d5d422005-09-06 15:16:15 -07002560#endif
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07002561 .retrigger = ioapic_retrigger_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562};
2563
Ingo Molnar54168ed2008-08-20 09:07:45 +02002564#ifdef CONFIG_INTR_REMAP
2565static struct irq_chip ir_ioapic_chip __read_mostly = {
2566 .name = "IR-IO-APIC",
2567 .startup = startup_ioapic_irq,
2568 .mask = mask_IO_APIC_irq,
2569 .unmask = unmask_IO_APIC_irq,
2570 .ack = ack_x2apic_edge,
2571 .eoi = ack_x2apic_level,
2572#ifdef CONFIG_SMP
2573 .set_affinity = set_ir_ioapic_affinity_irq,
2574#endif
2575 .retrigger = ioapic_retrigger_irq,
2576};
2577#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579static inline void init_IO_APIC_traps(void)
2580{
2581 int irq;
Yinghai Lu08678b02008-08-19 20:50:05 -07002582 struct irq_desc *desc;
Yinghai Luda51a822008-08-19 20:50:25 -07002583 struct irq_cfg *cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 /*
2586 * NOTE! The local APIC isn't very good at handling
2587 * multiple interrupts at the same interrupt level.
2588 * As the interrupt level is determined by taking the
2589 * vector number and shifting that right by 4, we
2590 * want to spread these out a bit so that they don't
2591 * all fall in the same interrupt level.
2592 *
2593 * Also, we've got to be careful not to trash gate
2594 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2595 */
Yinghai Lu8f09cd22008-08-19 20:50:51 -07002596 for_each_irq_cfg(irq, cfg) {
Yinghai Luda51a822008-08-19 20:50:25 -07002597 if (IO_APIC_IRQ(irq) && !cfg->vector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 /*
2599 * Hmm.. We don't have an entry for this,
2600 * so default to an old-fashioned 8259
2601 * interrupt if we can..
2602 */
2603 if (irq < 16)
2604 make_8259A_irq(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -07002605 else {
2606 desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 /* Strange. Oh, well.. */
Yinghai Lu08678b02008-08-19 20:50:05 -07002608 desc->chip = &no_irq_chip;
2609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611 }
2612}
2613
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002614/*
2615 * The local APIC irq-chip implementation:
2616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002618static void mask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
2620 unsigned long v;
2621
2622 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002623 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002626static void unmask_lapic_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002628 unsigned long v;
2629
2630 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002631 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
2633
Ingo Molnar54168ed2008-08-20 09:07:45 +02002634static void ack_lapic_irq (unsigned int irq)
Yinghai Lu1d025192008-08-19 20:50:34 -07002635{
2636 ack_APIC_irq();
2637}
2638
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002639static struct irq_chip lapic_chip __read_mostly = {
Maciej W. Rozycki9a1c6192008-05-27 21:19:09 +01002640 .name = "local-APIC",
Ingo Molnarf5b9ed72006-10-04 02:16:26 -07002641 .mask = mask_lapic_irq,
2642 .unmask = unmask_lapic_irq,
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002643 .ack = ack_lapic_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644};
2645
Yinghai Lu497c9a12008-08-19 20:50:28 -07002646static void lapic_register_intr(int irq)
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002647{
Yinghai Lu08678b02008-08-19 20:50:05 -07002648 struct irq_desc *desc;
2649
2650 desc = irq_to_desc(irq);
2651 desc->status &= ~IRQ_LEVEL;
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002652 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2653 "edge");
Maciej W. Rozyckic88ac1d2008-07-11 19:35:17 +01002654}
2655
Jan Beuliche9427102008-01-30 13:31:24 +01002656static void __init setup_nmi(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002659 * Dirty trick to enable the NMI watchdog ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 * We put the 8259A master into AEOI mode and
2661 * unmask on all local APICs LVT0 as NMI.
2662 *
2663 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2664 * is from Maciej W. Rozycki - so we do not have to EOI from
2665 * the NMI handler or the timer interrupt.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2668
Jan Beuliche9427102008-01-30 13:31:24 +01002669 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 apic_printk(APIC_VERBOSE, " done.\n");
2672}
2673
2674/*
2675 * This looks a bit hackish but it's about the only one way of sending
2676 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2677 * not support the ExtINT mode, unfortunately. We need to send these
2678 * cycles as some i82489DX-based boards have glue logic that keeps the
2679 * 8259A interrupt line asserted until INTA. --macro
2680 */
Jacek Luczak28acf282008-04-12 17:41:12 +02002681static inline void __init unlock_ExtINT_logic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002683 int apic, pin, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 struct IO_APIC_route_entry entry0, entry1;
2685 unsigned char save_control, save_freq_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002687 pin = find_isa_irq_pin(8, mp_INT);
Adrian Bunk956fb532006-12-07 02:14:11 +01002688 if (pin == -1) {
2689 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 return;
Adrian Bunk956fb532006-12-07 02:14:11 +01002691 }
2692 apic = find_isa_irq_apic(8, mp_INT);
2693 if (apic == -1) {
2694 WARN_ON_ONCE(1);
2695 return;
2696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Andi Kleencf4c6a22006-09-26 10:52:30 +02002698 entry0 = ioapic_read_entry(apic, pin);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002699 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
2701 memset(&entry1, 0, sizeof(entry1));
2702
2703 entry1.dest_mode = 0; /* physical delivery */
2704 entry1.mask = 0; /* unmask IRQ now */
Yinghai Lud83e94a2008-08-19 20:50:33 -07002705 entry1.dest = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 entry1.delivery_mode = dest_ExtINT;
2707 entry1.polarity = entry0.polarity;
2708 entry1.trigger = 0;
2709 entry1.vector = 0;
2710
Andi Kleencf4c6a22006-09-26 10:52:30 +02002711 ioapic_write_entry(apic, pin, entry1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 save_control = CMOS_READ(RTC_CONTROL);
2714 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2715 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2716 RTC_FREQ_SELECT);
2717 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2718
2719 i = 100;
2720 while (i-- > 0) {
2721 mdelay(10);
2722 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2723 i -= 10;
2724 }
2725
2726 CMOS_WRITE(save_control, RTC_CONTROL);
2727 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002728 clear_IO_APIC_pin(apic, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Andi Kleencf4c6a22006-09-26 10:52:30 +02002730 ioapic_write_entry(apic, pin, entry0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
Yinghai Luefa25592008-08-19 20:50:36 -07002733static int disable_timer_pin_1 __initdata;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002734/* Actually the next is obsolete, but keep it for paranoid reasons -AK */
Ingo Molnar54168ed2008-08-20 09:07:45 +02002735static int __init disable_timer_pin_setup(char *arg)
Yinghai Luefa25592008-08-19 20:50:36 -07002736{
2737 disable_timer_pin_1 = 1;
2738 return 0;
2739}
Ingo Molnar54168ed2008-08-20 09:07:45 +02002740early_param("disable_timer_pin_1", disable_timer_pin_setup);
Yinghai Luefa25592008-08-19 20:50:36 -07002741
2742int timer_through_8259 __initdata;
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744/*
2745 * This code may look a bit paranoid, but it's supposed to cooperate with
2746 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2747 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2748 * fanatically on his truly buggy board.
Ingo Molnar54168ed2008-08-20 09:07:45 +02002749 *
2750 * FIXME: really need to revamp this for all platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 */
Zachary Amsden8542b202006-12-07 02:14:09 +01002752static inline void __init check_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
Yinghai Lu497c9a12008-08-19 20:50:28 -07002754 struct irq_cfg *cfg = irq_cfg(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002755 int apic1, pin1, apic2, pin2;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002756 unsigned long flags;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07002757 unsigned int ver;
2758 int no_pin1 = 0;
Ingo Molnar4aae0702007-12-18 18:05:58 +01002759
2760 local_irq_save(flags);
Maciej W. Rozyckid4d25de2007-11-26 20:42:19 +01002761
Ingo Molnar54168ed2008-08-20 09:07:45 +02002762 ver = apic_read(APIC_LVR);
2763 ver = GET_APIC_VERSION(ver);
Ingo Molnar6e908942008-03-21 14:32:36 +01002764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 /*
2766 * get/set the timer IRQ vector:
2767 */
2768 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002769 assign_irq_vector(0, TARGET_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 /*
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002772 * As IRQ0 is to be enabled in the 8259A, the virtual
2773 * wire has to be disabled in the local APIC. Also
2774 * timer interrupts need to be acknowledged manually in
2775 * the 8259A for the i82489DX when using the NMI
2776 * watchdog as that APIC treats NMIs as level-triggered.
2777 * The AEOI mode will finish them in the 8259A
2778 * automatically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002780 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 init_8259A(1);
Ingo Molnar54168ed2008-08-20 09:07:45 +02002782#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002783 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
Ingo Molnar54168ed2008-08-20 09:07:45 +02002784#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002786 pin1 = find_isa_irq_pin(0, mp_INT);
2787 apic1 = find_isa_irq_apic(0, mp_INT);
2788 pin2 = ioapic_i8259.pin;
2789 apic2 = ioapic_i8259.apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002791 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2792 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
Yinghai Lu497c9a12008-08-19 20:50:28 -07002793 cfg->vector, apic1, pin1, apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002795 /*
2796 * Some BIOS writers are clueless and report the ExtINTA
2797 * I/O APIC input from the cascaded 8259A as the timer
2798 * interrupt input. So just in case, if only one pin
2799 * was found above, try it both directly and through the
2800 * 8259A.
2801 */
2802 if (pin1 == -1) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02002803#ifdef CONFIG_INTR_REMAP
2804 if (intr_remapping_enabled)
2805 panic("BIOS bug: timer not connected to IO-APIC");
2806#endif
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002807 pin1 = pin2;
2808 apic1 = apic2;
2809 no_pin1 = 1;
2810 } else if (pin2 == -1) {
2811 pin2 = pin1;
2812 apic2 = apic1;
2813 }
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 if (pin1 != -1) {
2816 /*
2817 * Ok, does IRQ0 through the IOAPIC work?
2818 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002819 if (no_pin1) {
2820 add_pin_to_irq(0, apic1, pin1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002821 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 unmask_IO_APIC_irq(0);
2824 if (timer_irq_works()) {
2825 if (nmi_watchdog == NMI_IO_APIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 setup_nmi();
2827 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 }
Chuck Ebbert66759a02005-09-12 18:49:25 +02002829 if (disable_timer_pin_1 > 0)
2830 clear_IO_APIC_pin(0, pin1);
Ingo Molnar4aae0702007-12-18 18:05:58 +01002831 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002833#ifdef CONFIG_INTR_REMAP
2834 if (intr_remapping_enabled)
2835 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2836#endif
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002837 clear_IO_APIC_pin(apic1, pin1);
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002838 if (!no_pin1)
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002839 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2840 "8254 timer not connected to IO-APIC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002842 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2843 "(IRQ0) through the 8259A ...\n");
2844 apic_printk(APIC_QUIET, KERN_INFO
2845 "..... (found apic %d pin %d) ...\n", apic2, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 /*
2847 * legacy devices should be connected to IO APIC #0
2848 */
Maciej W. Rozycki691874f2008-05-27 21:19:51 +01002849 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002850 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
Maciej W. Rozycki24742ec2008-05-27 21:19:40 +01002851 unmask_IO_APIC_irq(0);
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002852 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002854 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
Maciej W. Rozycki35542c52008-05-21 22:10:22 +01002855 timer_through_8259 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002857 disable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 setup_nmi();
Maciej W. Rozycki60134eb2008-05-21 22:09:34 +01002859 enable_8259A_irq(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
Ingo Molnar4aae0702007-12-18 18:05:58 +01002861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 }
2863 /*
2864 * Cleanup, just in case ...
2865 */
Maciej W. Rozyckiecd29472008-05-21 22:09:19 +01002866 disable_8259A_irq(0);
Eric W. Biedermanfcfd6362005-10-30 14:59:39 -08002867 clear_IO_APIC_pin(apic2, pin2);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002868 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 if (nmi_watchdog == NMI_IO_APIC) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002872 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2873 "through the IO-APIC - disabling NMI Watchdog!\n");
Cyrill Gorcunov067fa0f2008-05-29 22:32:30 +04002874 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 }
Ingo Molnar54168ed2008-08-20 09:07:45 +02002876#ifdef CONFIG_X86_32
Maciej W. Rozyckid11d5792008-05-21 22:09:11 +01002877 timer_ack = 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002878#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002880 apic_printk(APIC_QUIET, KERN_INFO
2881 "...trying to set up timer as Virtual Wire IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Yinghai Lu497c9a12008-08-19 20:50:28 -07002883 lapic_register_intr(0);
2884 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 enable_8259A_irq(0);
2886
2887 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002888 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002889 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 }
Maciej W. Rozyckie67465f2008-05-21 22:09:26 +01002891 disable_8259A_irq(0);
Yinghai Lu497c9a12008-08-19 20:50:28 -07002892 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002893 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002895 apic_printk(APIC_QUIET, KERN_INFO
2896 "...trying to set up timer as ExtINT IRQ...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 init_8259A(0);
2899 make_8259A_irq(0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01002900 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902 unlock_ExtINT_logic();
2903
2904 if (timer_irq_works()) {
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002905 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002906 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002908 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
Maciej W. Rozycki49a66a0b2008-07-14 19:08:13 +01002910 "report. Then try booting with the 'noapic' option.\n");
Ingo Molnar4aae0702007-12-18 18:05:58 +01002911out:
2912 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913}
2914
2915/*
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002916 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2917 * to devices. However there may be an I/O APIC pin available for
2918 * this interrupt regardless. The pin may be left unconnected, but
2919 * typically it will be reused as an ExtINT cascade interrupt for
2920 * the master 8259A. In the MPS case such a pin will normally be
2921 * reported as an ExtINT interrupt in the MP table. With ACPI
2922 * there is no provision for ExtINT interrupts, and in the absence
2923 * of an override it would be treated as an ordinary ISA I/O APIC
2924 * interrupt, that is edge-triggered and unmasked by default. We
2925 * used to do this, but it caused problems on some systems because
2926 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2927 * the same ExtINT cascade interrupt to drive the local APIC of the
2928 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2929 * the I/O APIC in all cases now. No actual device should request
2930 * it anyway. --macro
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 */
2932#define PIC_IRQS (1 << PIC_CASCADE_IR)
2933
2934void __init setup_IO_APIC(void)
2935{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002936
2937#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 enable_IO_APIC();
Ingo Molnar54168ed2008-08-20 09:07:45 +02002939#else
2940 /*
2941 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2942 */
2943#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Maciej W. Rozyckiaf174782008-07-11 19:35:23 +01002945 io_apic_irqs = ~PIC_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Ingo Molnar54168ed2008-08-20 09:07:45 +02002947 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
2948 /*
2949 * Set up IO-APIC IRQ routing.
2950 */
2951#ifdef CONFIG_X86_32
2952 if (!acpi_ioapic)
2953 setup_ioapic_ids_from_mpc();
2954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 sync_Arb_IDs();
2956 setup_IO_APIC_irqs();
2957 init_IO_APIC_traps();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08002958 check_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959}
2960
2961/*
Ingo Molnar54168ed2008-08-20 09:07:45 +02002962 * Called after all the initialization is done. If we didnt find any
2963 * APIC bugs then we can allow the modify fast path
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 */
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966static int __init io_apic_bug_finalize(void)
2967{
Ingo Molnar54168ed2008-08-20 09:07:45 +02002968 if (sis_apic_bug == -1)
2969 sis_apic_bug = 0;
2970 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
2973late_initcall(io_apic_bug_finalize);
2974
2975struct sysfs_ioapic_data {
2976 struct sys_device dev;
2977 struct IO_APIC_route_entry entry[0];
2978};
Ingo Molnar54168ed2008-08-20 09:07:45 +02002979static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Pavel Machek438510f2005-04-16 15:25:24 -07002981static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
2983 struct IO_APIC_route_entry *entry;
2984 struct sysfs_ioapic_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02002986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 data = container_of(dev, struct sysfs_ioapic_data, dev);
2988 entry = data->entry;
Ingo Molnar54168ed2008-08-20 09:07:45 +02002989 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
2990 *entry = ioapic_read_entry(dev->id, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992 return 0;
2993}
2994
2995static int ioapic_resume(struct sys_device *dev)
2996{
2997 struct IO_APIC_route_entry *entry;
2998 struct sysfs_ioapic_data *data;
2999 unsigned long flags;
3000 union IO_APIC_reg_00 reg_00;
3001 int i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 data = container_of(dev, struct sysfs_ioapic_data, dev);
3004 entry = data->entry;
3005
3006 spin_lock_irqsave(&ioapic_lock, flags);
3007 reg_00.raw = io_apic_read(dev->id, 0);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +04003008 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
3009 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 io_apic_write(dev->id, 0, reg_00.raw);
3011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 spin_unlock_irqrestore(&ioapic_lock, flags);
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003013 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
Andi Kleencf4c6a22006-09-26 10:52:30 +02003014 ioapic_write_entry(dev->id, i, entry[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 return 0;
3017}
3018
3019static struct sysdev_class ioapic_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01003020 .name = "ioapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 .suspend = ioapic_suspend,
3022 .resume = ioapic_resume,
3023};
3024
3025static int __init ioapic_init_sysfs(void)
3026{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003027 struct sys_device * dev;
3028 int i, size, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030 error = sysdev_class_register(&ioapic_sysdev_class);
3031 if (error)
3032 return error;
3033
Ingo Molnar54168ed2008-08-20 09:07:45 +02003034 for (i = 0; i < nr_ioapics; i++ ) {
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003035 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 * sizeof(struct IO_APIC_route_entry);
Christophe Jaillet25556c12008-06-22 22:13:48 +02003037 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 if (!mp_ioapic_data[i]) {
3039 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3040 continue;
3041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 dev = &mp_ioapic_data[i]->dev;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003043 dev->id = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 dev->cls = &ioapic_sysdev_class;
3045 error = sysdev_register(dev);
3046 if (error) {
3047 kfree(mp_ioapic_data[i]);
3048 mp_ioapic_data[i] = NULL;
3049 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3050 continue;
3051 }
3052 }
3053
3054 return 0;
3055}
3056
3057device_initcall(ioapic_init_sysfs);
3058
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003059/*
Eric W. Biederman95d77882006-10-04 02:17:01 -07003060 * Dynamic irq allocate and deallocation
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003061 */
Yinghai Lu199751d2008-08-19 20:50:27 -07003062unsigned int create_irq_nr(unsigned int irq_want)
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003063{
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003064 /* Allocate an unused irq */
Ingo Molnar54168ed2008-08-20 09:07:45 +02003065 unsigned int irq;
3066 unsigned int new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003067 unsigned long flags;
Yinghai Luda51a822008-08-19 20:50:25 -07003068 struct irq_cfg *cfg_new;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003069
Yinghai Lu497c9a12008-08-19 20:50:28 -07003070#ifndef CONFIG_HAVE_SPARSE_IRQ
Yinghai Lu199751d2008-08-19 20:50:27 -07003071 irq_want = nr_irqs - 1;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003072#endif
Yinghai Lu199751d2008-08-19 20:50:27 -07003073
3074 irq = 0;
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003075 spin_lock_irqsave(&vector_lock, flags);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003076 for (new = irq_want; new > 0; new--) {
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003077 if (platform_legacy_irq(new))
3078 continue;
Yinghai Luda51a822008-08-19 20:50:25 -07003079 cfg_new = irq_cfg(new);
3080 if (cfg_new && cfg_new->vector != 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003081 continue;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003082 /* check if need to create one */
Yinghai Luda51a822008-08-19 20:50:25 -07003083 if (!cfg_new)
3084 cfg_new = irq_cfg_alloc(new);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003085 if (__assign_irq_vector(new, TARGET_CPUS) == 0)
Eric W. Biedermanace80ab2006-10-04 02:16:47 -07003086 irq = new;
3087 break;
3088 }
3089 spin_unlock_irqrestore(&vector_lock, flags);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003090
Yinghai Lu199751d2008-08-19 20:50:27 -07003091 if (irq > 0) {
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003092 dynamic_irq_init(irq);
3093 }
3094 return irq;
3095}
3096
Yinghai Lu199751d2008-08-19 20:50:27 -07003097int create_irq(void)
3098{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003099 int irq;
3100
3101 irq = create_irq_nr(nr_irqs - 1);
3102
3103 if (irq == 0)
3104 irq = -1;
3105
3106 return irq;
Yinghai Lu199751d2008-08-19 20:50:27 -07003107}
3108
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003109void destroy_irq(unsigned int irq)
3110{
3111 unsigned long flags;
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003112
3113 dynamic_irq_cleanup(irq);
3114
Ingo Molnar54168ed2008-08-20 09:07:45 +02003115#ifdef CONFIG_INTR_REMAP
3116 free_irte(irq);
3117#endif
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003118 spin_lock_irqsave(&vector_lock, flags);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003119 __clear_irq_vector(irq);
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003120 spin_unlock_irqrestore(&vector_lock, flags);
3121}
Eric W. Biederman3fc471e2006-10-04 02:16:39 -07003122
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003123/*
Simon Arlott27b46d72007-10-20 01:13:56 +02003124 * MSI message composition
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003125 */
3126#ifdef CONFIG_PCI_MSI
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003127static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003128{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003129 struct irq_cfg *cfg;
3130 int err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003131 unsigned dest;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003132 cpumask_t tmp;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003133
Yinghai Lu497c9a12008-08-19 20:50:28 -07003134 tmp = TARGET_CPUS;
3135 err = assign_irq_vector(irq, tmp);
3136 if (err)
3137 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003138
Yinghai Lu497c9a12008-08-19 20:50:28 -07003139 cfg = irq_cfg(irq);
3140 cpus_and(tmp, cfg->domain, tmp);
3141 dest = cpu_mask_to_apicid(tmp);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003142
Ingo Molnar54168ed2008-08-20 09:07:45 +02003143#ifdef CONFIG_INTR_REMAP
3144 if (irq_remapped(irq)) {
3145 struct irte irte;
3146 int ir_index;
3147 u16 sub_handle;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003148
Ingo Molnar54168ed2008-08-20 09:07:45 +02003149 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3150 BUG_ON(ir_index == -1);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003151
Ingo Molnar54168ed2008-08-20 09:07:45 +02003152 memset (&irte, 0, sizeof(irte));
3153
3154 irte.present = 1;
3155 irte.dst_mode = INT_DEST_MODE;
3156 irte.trigger_mode = 0; /* edge */
3157 irte.dlvry_mode = INT_DELIVERY_MODE;
3158 irte.vector = cfg->vector;
3159 irte.dest_id = IRTE_DEST(dest);
3160
3161 modify_irte(irq, &irte);
3162
3163 msg->address_hi = MSI_ADDR_BASE_HI;
3164 msg->data = sub_handle;
3165 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3166 MSI_ADDR_IR_SHV |
3167 MSI_ADDR_IR_INDEX1(ir_index) |
3168 MSI_ADDR_IR_INDEX2(ir_index);
3169 } else
3170#endif
3171 {
3172 msg->address_hi = MSI_ADDR_BASE_HI;
3173 msg->address_lo =
3174 MSI_ADDR_BASE_LO |
3175 ((INT_DEST_MODE == 0) ?
3176 MSI_ADDR_DEST_MODE_PHYSICAL:
3177 MSI_ADDR_DEST_MODE_LOGICAL) |
3178 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3179 MSI_ADDR_REDIRECTION_CPU:
3180 MSI_ADDR_REDIRECTION_LOWPRI) |
3181 MSI_ADDR_DEST_ID(dest);
3182
3183 msg->data =
3184 MSI_DATA_TRIGGER_EDGE |
3185 MSI_DATA_LEVEL_ASSERT |
3186 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3187 MSI_DATA_DELIVERY_FIXED:
3188 MSI_DATA_DELIVERY_LOWPRI) |
3189 MSI_DATA_VECTOR(cfg->vector);
3190 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003191 return err;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003192}
3193
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003194#ifdef CONFIG_SMP
3195static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
3196{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003197 struct irq_cfg *cfg;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003198 struct msi_msg msg;
3199 unsigned int dest;
3200 cpumask_t tmp;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003201 struct irq_desc *desc;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003202
3203 cpus_and(tmp, mask, cpu_online_map);
3204 if (cpus_empty(tmp))
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003205 return;
3206
Yinghai Lu497c9a12008-08-19 20:50:28 -07003207 if (assign_irq_vector(irq, mask))
3208 return;
3209
3210 cfg = irq_cfg(irq);
3211 cpus_and(tmp, cfg->domain, mask);
3212 dest = cpu_mask_to_apicid(tmp);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003213
3214 read_msi_msg(irq, &msg);
3215
3216 msg.data &= ~MSI_DATA_VECTOR_MASK;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003217 msg.data |= MSI_DATA_VECTOR(cfg->vector);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003218 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3219 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3220
3221 write_msi_msg(irq, &msg);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003222 desc = irq_to_desc(irq);
3223 desc->affinity = mask;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003224}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003225
3226#ifdef CONFIG_INTR_REMAP
3227/*
3228 * Migrate the MSI irq to another cpumask. This migration is
3229 * done in the process context using interrupt-remapping hardware.
3230 */
3231static void ir_set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
3232{
3233 struct irq_cfg *cfg;
3234 unsigned int dest;
3235 cpumask_t tmp, cleanup_mask;
3236 struct irte irte;
3237 struct irq_desc *desc;
3238
3239 cpus_and(tmp, mask, cpu_online_map);
3240 if (cpus_empty(tmp))
3241 return;
3242
3243 if (get_irte(irq, &irte))
3244 return;
3245
3246 if (assign_irq_vector(irq, mask))
3247 return;
3248
3249 cfg = irq_cfg(irq);
3250 cpus_and(tmp, cfg->domain, mask);
3251 dest = cpu_mask_to_apicid(tmp);
3252
3253 irte.vector = cfg->vector;
3254 irte.dest_id = IRTE_DEST(dest);
3255
3256 /*
3257 * atomically update the IRTE with the new destination and vector.
3258 */
3259 modify_irte(irq, &irte);
3260
3261 /*
3262 * After this point, all the interrupts will start arriving
3263 * at the new destination. So, time to cleanup the previous
3264 * vector allocation.
3265 */
3266 if (cfg->move_in_progress) {
3267 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
3268 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
3269 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
3270 cfg->move_in_progress = 0;
3271 }
3272
3273 desc = irq_to_desc(irq);
3274 desc->affinity = mask;
3275}
3276#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003277#endif /* CONFIG_SMP */
3278
3279/*
3280 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3281 * which implement the MSI or MSI-X Capability Structure.
3282 */
3283static struct irq_chip msi_chip = {
3284 .name = "PCI-MSI",
3285 .unmask = unmask_msi_irq,
3286 .mask = mask_msi_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003287 .ack = ack_apic_edge,
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003288#ifdef CONFIG_SMP
3289 .set_affinity = set_msi_irq_affinity,
3290#endif
3291 .retrigger = ioapic_retrigger_irq,
3292};
3293
Ingo Molnar54168ed2008-08-20 09:07:45 +02003294#ifdef CONFIG_INTR_REMAP
3295static struct irq_chip msi_ir_chip = {
3296 .name = "IR-PCI-MSI",
3297 .unmask = unmask_msi_irq,
3298 .mask = mask_msi_irq,
3299 .ack = ack_x2apic_edge,
3300#ifdef CONFIG_SMP
3301 .set_affinity = ir_set_msi_irq_affinity,
3302#endif
3303 .retrigger = ioapic_retrigger_irq,
3304};
3305
3306/*
3307 * Map the PCI dev to the corresponding remapping hardware unit
3308 * and allocate 'nvec' consecutive interrupt-remapping table entries
3309 * in it.
3310 */
3311static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3312{
3313 struct intel_iommu *iommu;
3314 int index;
3315
3316 iommu = map_dev_to_ir(dev);
3317 if (!iommu) {
3318 printk(KERN_ERR
3319 "Unable to map PCI %s to iommu\n", pci_name(dev));
3320 return -ENOENT;
3321 }
3322
3323 index = alloc_irte(iommu, irq, nvec);
3324 if (index < 0) {
3325 printk(KERN_ERR
3326 "Unable to allocate %d IRTE for PCI %s\n", nvec,
3327 pci_name(dev));
3328 return -ENOSPC;
3329 }
3330 return index;
3331}
3332#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07003333
3334static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc, int irq)
3335{
3336 int ret;
3337 struct msi_msg msg;
3338
3339 ret = msi_compose_msg(dev, irq, &msg);
3340 if (ret < 0)
3341 return ret;
3342
3343 set_irq_msi(irq, desc);
3344 write_msi_msg(irq, &msg);
3345
Ingo Molnar54168ed2008-08-20 09:07:45 +02003346#ifdef CONFIG_INTR_REMAP
3347 if (irq_remapped(irq)) {
3348 struct irq_desc *desc = irq_to_desc(irq);
3349 /*
3350 * irq migration in process context
3351 */
3352 desc->status |= IRQ_MOVE_PCNTXT;
3353 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3354 } else
3355#endif
3356 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
Yinghai Lu1d025192008-08-19 20:50:34 -07003357
3358 return 0;
3359}
3360
Yinghai Lu199751d2008-08-19 20:50:27 -07003361static unsigned int build_irq_for_pci_dev(struct pci_dev *dev)
3362{
3363 unsigned int irq;
3364
3365 irq = dev->bus->number;
3366 irq <<= 8;
3367 irq |= dev->devfn;
3368 irq <<= 12;
3369
3370 return irq;
3371}
3372
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003373int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003374{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003375 unsigned int irq;
3376 int ret;
Yinghai Lu199751d2008-08-19 20:50:27 -07003377 unsigned int irq_want;
3378
3379 irq_want = build_irq_for_pci_dev(dev) + 0x100;
3380
3381 irq = create_irq_nr(irq_want);
Yinghai Lu199751d2008-08-19 20:50:27 -07003382 if (irq == 0)
3383 return -1;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003384
Ingo Molnar54168ed2008-08-20 09:07:45 +02003385#ifdef CONFIG_INTR_REMAP
3386 if (!intr_remapping_enabled)
3387 goto no_ir;
3388
3389 ret = msi_alloc_irte(dev, irq, 1);
3390 if (ret < 0)
3391 goto error;
3392no_ir:
3393#endif
Yinghai Lu1d025192008-08-19 20:50:34 -07003394 ret = setup_msi_irq(dev, desc, irq);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003395 if (ret < 0) {
3396 destroy_irq(irq);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003397 return ret;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003398 }
Michael Ellerman7fe37302007-04-18 19:39:21 +10003399 return 0;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003400
3401#ifdef CONFIG_INTR_REMAP
3402error:
3403 destroy_irq(irq);
3404 return ret;
3405#endif
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003406}
3407
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003408int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3409{
Ingo Molnar54168ed2008-08-20 09:07:45 +02003410 unsigned int irq;
3411 int ret, sub_handle;
3412 struct msi_desc *desc;
3413 unsigned int irq_want;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003414
Ingo Molnar54168ed2008-08-20 09:07:45 +02003415#ifdef CONFIG_INTR_REMAP
3416 struct intel_iommu *iommu = 0;
3417 int index = 0;
3418#endif
3419
3420 irq_want = build_irq_for_pci_dev(dev) + 0x100;
3421 sub_handle = 0;
3422 list_for_each_entry(desc, &dev->msi_list, list) {
3423 irq = create_irq_nr(irq_want--);
3424 if (irq == 0)
3425 return -1;
3426#ifdef CONFIG_INTR_REMAP
3427 if (!intr_remapping_enabled)
3428 goto no_ir;
3429
3430 if (!sub_handle) {
3431 /*
3432 * allocate the consecutive block of IRTE's
3433 * for 'nvec'
3434 */
3435 index = msi_alloc_irte(dev, irq, nvec);
3436 if (index < 0) {
3437 ret = index;
3438 goto error;
3439 }
3440 } else {
3441 iommu = map_dev_to_ir(dev);
3442 if (!iommu) {
3443 ret = -ENOENT;
3444 goto error;
3445 }
3446 /*
3447 * setup the mapping between the irq and the IRTE
3448 * base index, the sub_handle pointing to the
3449 * appropriate interrupt remap table entry.
3450 */
3451 set_irte_irq(irq, iommu, index, sub_handle);
3452 }
3453no_ir:
3454#endif
3455 ret = setup_msi_irq(dev, desc, irq);
3456 if (ret < 0)
3457 goto error;
3458 sub_handle++;
3459 }
3460 return 0;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003461
3462error:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003463 destroy_irq(irq);
3464 return ret;
Yinghai Lu047c8fd2008-08-19 20:50:41 -07003465}
3466
Eric W. Biederman3b7d1922006-10-04 02:16:59 -07003467void arch_teardown_msi_irq(unsigned int irq)
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003468{
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -07003469 destroy_irq(irq);
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003470}
3471
Ingo Molnar54168ed2008-08-20 09:07:45 +02003472#ifdef CONFIG_DMAR
3473#ifdef CONFIG_SMP
3474static void dmar_msi_set_affinity(unsigned int irq, cpumask_t mask)
3475{
3476 struct irq_cfg *cfg;
3477 struct msi_msg msg;
3478 unsigned int dest;
3479 cpumask_t tmp;
3480 struct irq_desc *desc;
Eric W. Biederman2d3fcc12006-10-04 02:16:43 -07003481
Ingo Molnar54168ed2008-08-20 09:07:45 +02003482 cpus_and(tmp, mask, cpu_online_map);
3483 if (cpus_empty(tmp))
3484 return;
3485
3486 if (assign_irq_vector(irq, mask))
3487 return;
3488
3489 cfg = irq_cfg(irq);
3490 cpus_and(tmp, cfg->domain, mask);
3491 dest = cpu_mask_to_apicid(tmp);
3492
3493 dmar_msi_read(irq, &msg);
3494
3495 msg.data &= ~MSI_DATA_VECTOR_MASK;
3496 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3497 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3498 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3499
3500 dmar_msi_write(irq, &msg);
3501 desc = irq_to_desc(irq);
3502 desc->affinity = mask;
3503}
3504#endif /* CONFIG_SMP */
3505
3506struct irq_chip dmar_msi_type = {
3507 .name = "DMAR_MSI",
3508 .unmask = dmar_msi_unmask,
3509 .mask = dmar_msi_mask,
3510 .ack = ack_apic_edge,
3511#ifdef CONFIG_SMP
3512 .set_affinity = dmar_msi_set_affinity,
3513#endif
3514 .retrigger = ioapic_retrigger_irq,
3515};
3516
3517int arch_setup_dmar_msi(unsigned int irq)
3518{
3519 int ret;
3520 struct msi_msg msg;
3521
3522 ret = msi_compose_msg(NULL, irq, &msg);
3523 if (ret < 0)
3524 return ret;
3525 dmar_msi_write(irq, &msg);
3526 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3527 "edge");
3528 return 0;
3529}
3530#endif
3531
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -07003532#ifdef CONFIG_HPET_TIMER
3533
3534#ifdef CONFIG_SMP
3535static void hpet_msi_set_affinity(unsigned int irq, cpumask_t mask)
3536{
3537 struct irq_cfg *cfg;
3538 struct irq_desc *desc;
3539 struct msi_msg msg;
3540 unsigned int dest;
3541 cpumask_t tmp;
3542
3543 cpus_and(tmp, mask, cpu_online_map);
3544 if (cpus_empty(tmp))
3545 return;
3546
3547 if (assign_irq_vector(irq, mask))
3548 return;
3549
3550 cfg = irq_cfg(irq);
3551 cpus_and(tmp, cfg->domain, mask);
3552 dest = cpu_mask_to_apicid(tmp);
3553
3554 hpet_msi_read(irq, &msg);
3555
3556 msg.data &= ~MSI_DATA_VECTOR_MASK;
3557 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3558 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3559 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3560
3561 hpet_msi_write(irq, &msg);
3562 desc = irq_to_desc(irq);
3563 desc->affinity = mask;
3564}
3565#endif /* CONFIG_SMP */
3566
3567struct irq_chip hpet_msi_type = {
3568 .name = "HPET_MSI",
3569 .unmask = hpet_msi_unmask,
3570 .mask = hpet_msi_mask,
3571 .ack = ack_apic_edge,
3572#ifdef CONFIG_SMP
3573 .set_affinity = hpet_msi_set_affinity,
3574#endif
3575 .retrigger = ioapic_retrigger_irq,
3576};
3577
3578int arch_setup_hpet_msi(unsigned int irq)
3579{
3580 int ret;
3581 struct msi_msg msg;
3582
3583 ret = msi_compose_msg(NULL, irq, &msg);
3584 if (ret < 0)
3585 return ret;
3586
3587 hpet_msi_write(irq, &msg);
3588 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3589 "edge");
3590 return 0;
3591}
3592#endif
3593
Ingo Molnar54168ed2008-08-20 09:07:45 +02003594#endif /* CONFIG_PCI_MSI */
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003595/*
3596 * Hypertransport interrupt support
3597 */
3598#ifdef CONFIG_HT_IRQ
3599
3600#ifdef CONFIG_SMP
3601
Yinghai Lu497c9a12008-08-19 20:50:28 -07003602static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003603{
Eric W. Biedermanec683072006-11-08 17:44:57 -08003604 struct ht_irq_msg msg;
3605 fetch_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003606
Yinghai Lu497c9a12008-08-19 20:50:28 -07003607 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003608 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003609
Yinghai Lu497c9a12008-08-19 20:50:28 -07003610 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
Eric W. Biedermanec683072006-11-08 17:44:57 -08003611 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003612
Eric W. Biedermanec683072006-11-08 17:44:57 -08003613 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003614}
3615
3616static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
3617{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003618 struct irq_cfg *cfg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003619 unsigned int dest;
3620 cpumask_t tmp;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003621 struct irq_desc *desc;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003622
3623 cpus_and(tmp, mask, cpu_online_map);
3624 if (cpus_empty(tmp))
Yinghai Lu497c9a12008-08-19 20:50:28 -07003625 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003626
Yinghai Lu497c9a12008-08-19 20:50:28 -07003627 if (assign_irq_vector(irq, mask))
3628 return;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003629
Yinghai Lu497c9a12008-08-19 20:50:28 -07003630 cfg = irq_cfg(irq);
3631 cpus_and(tmp, cfg->domain, mask);
3632 dest = cpu_mask_to_apicid(tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003633
Yinghai Lu497c9a12008-08-19 20:50:28 -07003634 target_ht_irq(irq, dest, cfg->vector);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003635 desc = irq_to_desc(irq);
3636 desc->affinity = mask;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003637}
3638#endif
3639
Aneesh Kumar K.Vc37e1082006-10-11 01:20:43 -07003640static struct irq_chip ht_irq_chip = {
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003641 .name = "PCI-HT",
3642 .mask = mask_ht_irq,
3643 .unmask = unmask_ht_irq,
Yinghai Lu1d025192008-08-19 20:50:34 -07003644 .ack = ack_apic_edge,
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003645#ifdef CONFIG_SMP
3646 .set_affinity = set_ht_irq_affinity,
3647#endif
3648 .retrigger = ioapic_retrigger_irq,
3649};
3650
3651int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3652{
Yinghai Lu497c9a12008-08-19 20:50:28 -07003653 struct irq_cfg *cfg;
3654 int err;
3655 cpumask_t tmp;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003656
Yinghai Lu497c9a12008-08-19 20:50:28 -07003657 tmp = TARGET_CPUS;
3658 err = assign_irq_vector(irq, tmp);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003659 if (!err) {
Eric W. Biedermanec683072006-11-08 17:44:57 -08003660 struct ht_irq_msg msg;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003661 unsigned dest;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003662
Yinghai Lu497c9a12008-08-19 20:50:28 -07003663 cfg = irq_cfg(irq);
3664 cpus_and(tmp, cfg->domain, tmp);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003665 dest = cpu_mask_to_apicid(tmp);
3666
Eric W. Biedermanec683072006-11-08 17:44:57 -08003667 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003668
Eric W. Biedermanec683072006-11-08 17:44:57 -08003669 msg.address_lo =
3670 HT_IRQ_LOW_BASE |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003671 HT_IRQ_LOW_DEST_ID(dest) |
Yinghai Lu497c9a12008-08-19 20:50:28 -07003672 HT_IRQ_LOW_VECTOR(cfg->vector) |
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003673 ((INT_DEST_MODE == 0) ?
3674 HT_IRQ_LOW_DM_PHYSICAL :
3675 HT_IRQ_LOW_DM_LOGICAL) |
3676 HT_IRQ_LOW_RQEOI_EDGE |
3677 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3678 HT_IRQ_LOW_MT_FIXED :
3679 HT_IRQ_LOW_MT_ARBITRATED) |
3680 HT_IRQ_LOW_IRQ_MASKED;
3681
Eric W. Biedermanec683072006-11-08 17:44:57 -08003682 write_ht_irq_msg(irq, &msg);
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003683
Ingo Molnara460e742006-10-17 00:10:03 -07003684 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3685 handle_edge_irq, "edge");
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003686 }
Yinghai Lu497c9a12008-08-19 20:50:28 -07003687 return err;
Eric W. Biederman8b955b02006-10-04 02:16:55 -07003688}
3689#endif /* CONFIG_HT_IRQ */
3690
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003691int __init io_apic_get_redir_entries (int ioapic)
3692{
3693 union IO_APIC_reg_01 reg_01;
3694 unsigned long flags;
3695
3696 spin_lock_irqsave(&ioapic_lock, flags);
3697 reg_01.raw = io_apic_read(ioapic, 1);
3698 spin_unlock_irqrestore(&ioapic_lock, flags);
3699
3700 return reg_01.bits.entries;
3701}
3702
3703int __init probe_nr_irqs(void)
3704{
3705 int idx;
3706 int nr = 0;
Yinghai Lu052c0bf2008-08-21 13:10:09 -07003707#ifndef CONFIG_XEN
3708 int nr_min = 32;
3709#else
3710 int nr_min = NR_IRQS;
3711#endif
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003712
3713 for (idx = 0; idx < nr_ioapics; idx++)
Yinghai Lu052c0bf2008-08-21 13:10:09 -07003714 nr += io_apic_get_redir_entries(idx) + 1;
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003715
3716 /* double it for hotplug and msi and nmi */
3717 nr <<= 1;
3718
3719 /* something wrong ? */
Yinghai Lu052c0bf2008-08-21 13:10:09 -07003720 if (nr < nr_min)
3721 nr = nr_min;
Yinghai Lu9d6a4d02008-08-19 20:50:52 -07003722
3723 return nr;
3724}
3725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726/* --------------------------------------------------------------------------
Ingo Molnar54168ed2008-08-20 09:07:45 +02003727 ACPI-based IOAPIC Configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 -------------------------------------------------------------------------- */
3729
Len Brown888ba6c2005-08-24 12:07:20 -04003730#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Ingo Molnar54168ed2008-08-20 09:07:45 +02003732#ifdef CONFIG_X86_32
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003733int __init io_apic_get_unique_id(int ioapic, int apic_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
3735 union IO_APIC_reg_00 reg_00;
3736 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3737 physid_mask_t tmp;
3738 unsigned long flags;
3739 int i = 0;
3740
3741 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003742 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3743 * buses (one for LAPICs, one for IOAPICs), where predecessors only
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 * supports up to 16 on one shared APIC bus.
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003745 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3747 * advantage of new APIC bus architecture.
3748 */
3749
3750 if (physids_empty(apic_id_map))
3751 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
3752
3753 spin_lock_irqsave(&ioapic_lock, flags);
3754 reg_00.raw = io_apic_read(ioapic, 0);
3755 spin_unlock_irqrestore(&ioapic_lock, flags);
3756
3757 if (apic_id >= get_physical_broadcast()) {
3758 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3759 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3760 apic_id = reg_00.bits.ID;
3761 }
3762
3763 /*
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003764 * Every APIC in a system must have a unique ID or we get lots of nice
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 * 'stuck on smp_invalidate_needed IPI wait' messages.
3766 */
3767 if (check_apicid_used(apic_id_map, apic_id)) {
3768
3769 for (i = 0; i < get_physical_broadcast(); i++) {
3770 if (!check_apicid_used(apic_id_map, i))
3771 break;
3772 }
3773
3774 if (i == get_physical_broadcast())
3775 panic("Max apic_id exceeded!\n");
3776
3777 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3778 "trying %d\n", ioapic, apic_id, i);
3779
3780 apic_id = i;
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
3783 tmp = apicid_to_cpu_present(apic_id);
3784 physids_or(apic_id_map, apic_id_map, tmp);
3785
3786 if (reg_00.bits.ID != apic_id) {
3787 reg_00.bits.ID = apic_id;
3788
3789 spin_lock_irqsave(&ioapic_lock, flags);
3790 io_apic_write(ioapic, 0, reg_00.raw);
3791 reg_00.raw = io_apic_read(ioapic, 0);
3792 spin_unlock_irqrestore(&ioapic_lock, flags);
3793
3794 /* Sanity check */
Andreas Deresch6070f9e2006-02-26 04:18:34 +01003795 if (reg_00.bits.ID != apic_id) {
3796 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3797 return -1;
3798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 }
3800
3801 apic_printk(APIC_VERBOSE, KERN_INFO
3802 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3803
3804 return apic_id;
3805}
3806
Paolo Ciarrocchi36062442008-06-08 13:07:18 +02003807int __init io_apic_get_version(int ioapic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808{
3809 union IO_APIC_reg_01 reg_01;
3810 unsigned long flags;
3811
3812 spin_lock_irqsave(&ioapic_lock, flags);
3813 reg_01.raw = io_apic_read(ioapic, 1);
3814 spin_unlock_irqrestore(&ioapic_lock, flags);
3815
3816 return reg_01.bits.version;
3817}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003818#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Ingo Molnar54168ed2008-08-20 09:07:45 +02003820int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 if (!IO_APIC_IRQ(irq)) {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003823 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 ioapic);
3825 return -EINVAL;
3826 }
3827
3828 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 * IRQs < 16 are already in the irq_2_pin[] map
3830 */
3831 if (irq >= 16)
3832 add_pin_to_irq(irq, ioapic, pin);
3833
Yinghai Lu497c9a12008-08-19 20:50:28 -07003834 setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836 return 0;
3837}
3838
Ingo Molnar54168ed2008-08-20 09:07:45 +02003839
Shaohua Li61fd47e2007-11-17 01:05:28 -05003840int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3841{
3842 int i;
3843
3844 if (skip_ioapic_setup)
3845 return -1;
3846
3847 for (i = 0; i < mp_irq_entries; i++)
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04003848 if (mp_irqs[i].mp_irqtype == mp_INT &&
3849 mp_irqs[i].mp_srcbusirq == bus_irq)
Shaohua Li61fd47e2007-11-17 01:05:28 -05003850 break;
3851 if (i >= mp_irq_entries)
3852 return -1;
3853
3854 *trigger = irq_trigger(i);
3855 *polarity = irq_polarity(i);
3856 return 0;
3857}
3858
Len Brown888ba6c2005-08-24 12:07:20 -04003859#endif /* CONFIG_ACPI */
Rusty Russell1a3f2392006-09-26 10:52:32 +02003860
Yinghai Lu497c9a12008-08-19 20:50:28 -07003861/*
3862 * This function currently is only a helper for the i386 smp boot process where
3863 * we need to reprogram the ioredtbls to cater for the cpus which have come online
3864 * so mask in all cases should simply be TARGET_CPUS
3865 */
3866#ifdef CONFIG_SMP
3867void __init setup_ioapic_dest(void)
3868{
3869 int pin, ioapic, irq, irq_entry;
3870 struct irq_cfg *cfg;
Yinghai Lu497c9a12008-08-19 20:50:28 -07003871
3872 if (skip_ioapic_setup == 1)
3873 return;
3874
3875 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
3876 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
3877 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3878 if (irq_entry == -1)
3879 continue;
3880 irq = pin_2_irq(irq_entry, ioapic, pin);
3881
3882 /* setup_IO_APIC_irqs could fail to get vector for some device
3883 * when you have too many devices, because at that time only boot
3884 * cpu is online.
3885 */
3886 cfg = irq_cfg(irq);
3887 if (!cfg->vector)
3888 setup_IO_APIC_irq(ioapic, pin, irq,
3889 irq_trigger(irq_entry),
3890 irq_polarity(irq_entry));
Ingo Molnar54168ed2008-08-20 09:07:45 +02003891#ifdef CONFIG_INTR_REMAP
3892 else if (intr_remapping_enabled)
3893 set_ir_ioapic_affinity_irq(irq, TARGET_CPUS);
3894#endif
3895 else
Yinghai Lu497c9a12008-08-19 20:50:28 -07003896 set_ioapic_affinity_irq(irq, TARGET_CPUS);
Yinghai Lu497c9a12008-08-19 20:50:28 -07003897 }
3898
3899 }
3900}
3901#endif
3902
Ingo Molnar54168ed2008-08-20 09:07:45 +02003903#define IOAPIC_RESOURCE_NAME_SIZE 11
3904
3905static struct resource *ioapic_resources;
3906
3907static struct resource * __init ioapic_setup_resources(void)
3908{
3909 unsigned long n;
3910 struct resource *res;
3911 char *mem;
3912 int i;
3913
3914 if (nr_ioapics <= 0)
3915 return NULL;
3916
3917 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3918 n *= nr_ioapics;
3919
3920 mem = alloc_bootmem(n);
3921 res = (void *)mem;
3922
3923 if (mem != NULL) {
3924 mem += sizeof(struct resource) * nr_ioapics;
3925
3926 for (i = 0; i < nr_ioapics; i++) {
3927 res[i].name = mem;
3928 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
3929 sprintf(mem, "IOAPIC %u", i);
3930 mem += IOAPIC_RESOURCE_NAME_SIZE;
3931 }
3932 }
3933
3934 ioapic_resources = res;
3935
3936 return res;
3937}
Ingo Molnar54168ed2008-08-20 09:07:45 +02003938
Yinghai Luf3294a32008-06-27 01:41:56 -07003939void __init ioapic_init_mappings(void)
3940{
3941 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
3942 int i;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003943 struct resource *ioapic_res;
Yinghai Luf3294a32008-06-27 01:41:56 -07003944
Ingo Molnar54168ed2008-08-20 09:07:45 +02003945 ioapic_res = ioapic_setup_resources();
Yinghai Luf3294a32008-06-27 01:41:56 -07003946 for (i = 0; i < nr_ioapics; i++) {
3947 if (smp_found_config) {
3948 ioapic_phys = mp_ioapics[i].mp_apicaddr;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003949#ifdef CONFIG_X86_32
3950 if (!ioapic_phys) {
3951 printk(KERN_ERR
3952 "WARNING: bogus zero IO-APIC "
3953 "address found in MPTABLE, "
3954 "disabling IO/APIC support!\n");
3955 smp_found_config = 0;
3956 skip_ioapic_setup = 1;
3957 goto fake_ioapic_page;
3958 }
3959#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07003960 } else {
Ingo Molnar54168ed2008-08-20 09:07:45 +02003961#ifdef CONFIG_X86_32
Yinghai Luf3294a32008-06-27 01:41:56 -07003962fake_ioapic_page:
Ingo Molnar54168ed2008-08-20 09:07:45 +02003963#endif
Yinghai Luf3294a32008-06-27 01:41:56 -07003964 ioapic_phys = (unsigned long)
Ingo Molnar54168ed2008-08-20 09:07:45 +02003965 alloc_bootmem_pages(PAGE_SIZE);
Yinghai Luf3294a32008-06-27 01:41:56 -07003966 ioapic_phys = __pa(ioapic_phys);
3967 }
3968 set_fixmap_nocache(idx, ioapic_phys);
Ingo Molnar54168ed2008-08-20 09:07:45 +02003969 apic_printk(APIC_VERBOSE,
3970 "mapped IOAPIC to %08lx (%08lx)\n",
3971 __fix_to_virt(idx), ioapic_phys);
Yinghai Luf3294a32008-06-27 01:41:56 -07003972 idx++;
Ingo Molnar54168ed2008-08-20 09:07:45 +02003973
Ingo Molnar54168ed2008-08-20 09:07:45 +02003974 if (ioapic_res != NULL) {
3975 ioapic_res->start = ioapic_phys;
3976 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
3977 ioapic_res++;
3978 }
Yinghai Luf3294a32008-06-27 01:41:56 -07003979 }
3980}
3981
Ingo Molnar54168ed2008-08-20 09:07:45 +02003982static int __init ioapic_insert_resources(void)
3983{
3984 int i;
3985 struct resource *r = ioapic_resources;
3986
3987 if (!r) {
3988 printk(KERN_ERR
3989 "IO APIC resources could be not be allocated.\n");
3990 return -1;
3991 }
3992
3993 for (i = 0; i < nr_ioapics; i++) {
3994 insert_resource(&iomem_resource, r);
3995 r++;
3996 }
3997
3998 return 0;
3999}
4000
4001/* Insert the IO APIC resources after PCI initialization has occured to handle
4002 * IO APICS that are mapped in on a BAR in PCI space. */
4003late_initcall(ioapic_insert_resources);