blob: b3dcdb7e7fc731ee048d9e764c6e28b0a66c3abf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * I/O SAPIC support.
3 *
4 * Copyright (C) 1999 Intel Corp.
5 * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com>
6 * Copyright (C) 2000-2002 J.I. Lee <jung-ik.lee@intel.com>
7 * Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co.
8 * David Mosberger-Tang <davidm@hpl.hp.com>
9 * Copyright (C) 1999 VA Linux Systems
10 * Copyright (C) 1999,2000 Walt Drummond <drummond@valinux.com>
11 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090012 * 00/04/19 D. Mosberger Rewritten to mirror more closely the x86 I/O
13 * APIC code. In particular, we now have separate
14 * handlers for edge and level triggered
15 * interrupts.
16 * 00/10/27 Asit Mallick, Goutham Rao <goutham.rao@intel.com> IRQ vector
17 * allocation PCI to vector mapping, shared PCI
18 * interrupts.
19 * 00/10/27 D. Mosberger Document things a bit more to make them more
20 * understandable. Clean up much of the old
21 * IOSAPIC cruft.
22 * 01/07/27 J.I. Lee PCI irq routing, Platform/Legacy interrupts
23 * and fixes for ACPI S5(SoftOff) support.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 02/01/23 J.I. Lee iosapic pgm fixes for PCI irq routing from _PRT
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090025 * 02/01/07 E. Focht <efocht@ess.nec.de> Redirectable interrupt
26 * vectors in iosapic_set_affinity(),
27 * initializations for /proc/irq/#/smp_affinity
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * 02/04/02 P. Diefenbaugh Cleaned up ACPI PCI IRQ routing.
29 * 02/04/18 J.I. Lee bug fix in iosapic_init_pci_irq
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090030 * 02/04/30 J.I. Lee bug fix in find_iosapic to fix ACPI PCI IRQ to
31 * IOSAPIC mapping error
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * 02/07/29 T. Kochi Allocate interrupt vectors dynamically
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090033 * 02/08/04 T. Kochi Cleaned up terminology (irq, global system
34 * interrupt, vector, etc.)
35 * 02/09/20 D. Mosberger Simplified by taking advantage of ACPI's
36 * pci_irq code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * 03/02/19 B. Helgaas Make pcat_compat system-wide, not per-IOSAPIC.
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090038 * Remove iosapic_address & gsi_base from
39 * external interfaces. Rationalize
40 * __init/__devinit attributes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * 04/12/04 Ashok Raj <ashok.raj@intel.com> Intel Corporation 2004
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090042 * Updated to work with irq migration necessary
43 * for CPU Hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 */
45/*
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090046 * Here is what the interrupt logic between a PCI device and the kernel looks
47 * like:
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090049 * (1) A PCI device raises one of the four interrupt pins (INTA, INTB, INTC,
50 * INTD). The device is uniquely identified by its bus-, and slot-number
51 * (the function number does not matter here because all functions share
52 * the same interrupt lines).
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090054 * (2) The motherboard routes the interrupt line to a pin on a IOSAPIC
55 * controller. Multiple interrupt lines may have to share the same
56 * IOSAPIC pin (if they're level triggered and use the same polarity).
57 * Each interrupt line has a unique Global System Interrupt (GSI) number
58 * which can be calculated as the sum of the controller's base GSI number
59 * and the IOSAPIC pin number to which the line connects.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090061 * (3) The IOSAPIC uses an internal routing table entries (RTEs) to map the
62 * IOSAPIC pin into the IA-64 interrupt vector. This interrupt vector is then
63 * sent to the CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090065 * (4) The kernel recognizes an interrupt as an IRQ. The IRQ interface is
66 * used as architecture-independent interrupt handling mechanism in Linux.
67 * As an IRQ is a number, we have to have
68 * IA-64 interrupt vector number <-> IRQ number mapping. On smaller
69 * systems, we use one-to-one mapping between IA-64 vector and IRQ. A
70 * platform can implement platform_irq_to_vector(irq) and
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * platform_local_vector_to_irq(vector) APIs to differentiate the mapping.
72 * Please see also include/asm-ia64/hw_irq.h for those APIs.
73 *
74 * To sum up, there are three levels of mappings involved:
75 *
76 * PCI pin -> global system interrupt (GSI) -> IA-64 vector <-> IRQ
77 *
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +090078 * Note: The term "IRQ" is loosely used everywhere in Linux kernel to
79 * describeinterrupts. Now we use "IRQ" only for Linux IRQ's. ISA IRQ
80 * (isa_irq) is the only exception in this source code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#include <linux/acpi.h>
84#include <linux/init.h>
85#include <linux/irq.h>
86#include <linux/kernel.h>
87#include <linux/list.h>
88#include <linux/pci.h>
89#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include <linux/string.h>
Kenji Kaneshige24eeb562005-04-25 13:26:23 -070091#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <asm/delay.h>
94#include <asm/hw_irq.h>
95#include <asm/io.h>
96#include <asm/iosapic.h>
97#include <asm/machvec.h>
98#include <asm/processor.h>
99#include <asm/ptrace.h>
100#include <asm/system.h>
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#undef DEBUG_INTERRUPT_ROUTING
103
104#ifdef DEBUG_INTERRUPT_ROUTING
105#define DBG(fmt...) printk(fmt)
106#else
107#define DBG(fmt...)
108#endif
109
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900110#define NR_PREALLOCATE_RTE_ENTRIES \
111 (PAGE_SIZE / sizeof(struct iosapic_rte_info))
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700112#define RTE_PREALLOCATED (1)
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static DEFINE_SPINLOCK(iosapic_lock);
115
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900116/*
117 * These tables map IA-64 vectors to the IOSAPIC pin that generates this
118 * vector.
119 */
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900120static struct iosapic {
121 char __iomem *addr; /* base address of IOSAPIC */
122 unsigned int gsi_base; /* GSI base */
123 unsigned short num_rte; /* # of RTEs on this IOSAPIC */
124 int rtes_inuse; /* # of RTEs in use on this IOSAPIC */
125#ifdef CONFIG_NUMA
126 unsigned short node; /* numa node association via pxm */
127#endif
128} iosapic_lists[NR_IOSAPICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700130struct iosapic_rte_info {
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900131 struct list_head rte_list; /* RTEs sharing the same vector */
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700132 char rte_index; /* IOSAPIC RTE index */
133 int refcnt; /* reference counter */
134 unsigned int flags; /* flags */
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900135 struct iosapic *iosapic;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700136} ____cacheline_aligned;
137
138static struct iosapic_intr_info {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900139 struct list_head rtes; /* RTEs using this vector (empty =>
140 * not an IOSAPIC interrupt) */
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700141 int count; /* # of RTEs that shares this vector */
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900142 u32 low32; /* current value of low word of
143 * Redirection table entry */
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700144 unsigned int dest; /* destination CPU physical ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 unsigned char dmode : 3; /* delivery mode (see iosapic.h) */
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900146 unsigned char polarity: 1; /* interrupt polarity
147 * (see iosapic.h) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 unsigned char trigger : 1; /* trigger mode (see iosapic.h) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149} iosapic_intr_info[IA64_NUM_VECTORS];
150
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700151static unsigned char pcat_compat __devinitdata; /* 8259 compatibility flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700153static int iosapic_kmalloc_ok;
154static LIST_HEAD(free_rte_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/*
157 * Find an IOSAPIC associated with a GSI
158 */
159static inline int
160find_iosapic (unsigned int gsi)
161{
162 int i;
163
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700164 for (i = 0; i < NR_IOSAPICS; i++) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900165 if ((unsigned) (gsi - iosapic_lists[i].gsi_base) <
166 iosapic_lists[i].num_rte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return i;
168 }
169
170 return -1;
171}
172
173static inline int
174_gsi_to_vector (unsigned int gsi)
175{
176 struct iosapic_intr_info *info;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700177 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900179 for (info = iosapic_intr_info; info <
180 iosapic_intr_info + IA64_NUM_VECTORS; ++info)
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700181 list_for_each_entry(rte, &info->rtes, rte_list)
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900182 if (rte->iosapic->gsi_base + rte->rte_index == gsi)
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700183 return info - iosapic_intr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -1;
185}
186
187/*
188 * Translate GSI number to the corresponding IA-64 interrupt vector. If no
189 * entry exists, return -1.
190 */
191inline int
192gsi_to_vector (unsigned int gsi)
193{
194 return _gsi_to_vector(gsi);
195}
196
197int
198gsi_to_irq (unsigned int gsi)
199{
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700200 unsigned long flags;
201 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /*
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900203 * XXX fix me: this assumes an identity mapping between IA-64 vector
204 * and Linux irq numbers...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 */
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700206 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900207 irq = _gsi_to_vector(gsi);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700208 spin_unlock_irqrestore(&iosapic_lock, flags);
209
210 return irq;
211}
212
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900213static struct iosapic_rte_info *gsi_vector_to_rte(unsigned int gsi,
214 unsigned int vec)
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700215{
216 struct iosapic_rte_info *rte;
217
218 list_for_each_entry(rte, &iosapic_intr_info[vec].rtes, rte_list)
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900219 if (rte->iosapic->gsi_base + rte->rte_index == gsi)
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700220 return rte;
221 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224static void
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700225set_rte (unsigned int gsi, unsigned int vector, unsigned int dest, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 unsigned long pol, trigger, dmode;
228 u32 low32, high32;
229 char __iomem *addr;
230 int rte_index;
231 char redir;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700232 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 DBG(KERN_DEBUG"IOSAPIC: routing vector %d to 0x%x\n", vector, dest);
235
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700236 rte = gsi_vector_to_rte(gsi, vector);
237 if (!rte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return; /* not an IOSAPIC interrupt */
239
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700240 rte_index = rte->rte_index;
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900241 addr = rte->iosapic->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 pol = iosapic_intr_info[vector].polarity;
243 trigger = iosapic_intr_info[vector].trigger;
244 dmode = iosapic_intr_info[vector].dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 redir = (dmode == IOSAPIC_LOWEST_PRIORITY) ? 1 : 0;
247
248#ifdef CONFIG_SMP
249 {
250 unsigned int irq;
251
252 for (irq = 0; irq < NR_IRQS; ++irq)
253 if (irq_to_vector(irq) == vector) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900254 set_irq_affinity_info(irq,
255 (int)(dest & 0xffff),
256 redir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 }
259 }
260#endif
261
262 low32 = ((pol << IOSAPIC_POLARITY_SHIFT) |
263 (trigger << IOSAPIC_TRIGGER_SHIFT) |
264 (dmode << IOSAPIC_DELIVERY_SHIFT) |
265 ((mask ? 1 : 0) << IOSAPIC_MASK_SHIFT) |
266 vector);
267
268 /* dest contains both id and eid */
269 high32 = (dest << IOSAPIC_DEST_SHIFT);
270
271 iosapic_write(addr, IOSAPIC_RTE_HIGH(rte_index), high32);
272 iosapic_write(addr, IOSAPIC_RTE_LOW(rte_index), low32);
273 iosapic_intr_info[vector].low32 = low32;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700274 iosapic_intr_info[vector].dest = dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static void
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900278nop (unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 /* do nothing... */
281}
282
Zou Nan haia79561132006-12-07 09:51:35 -0800283
284#ifdef CONFIG_KEXEC
285void
286kexec_disable_iosapic(void)
287{
288 struct iosapic_intr_info *info;
289 struct iosapic_rte_info *rte;
290 u8 vec = 0;
291 for (info = iosapic_intr_info; info <
292 iosapic_intr_info + IA64_NUM_VECTORS; ++info, ++vec) {
293 list_for_each_entry(rte, &info->rtes,
294 rte_list) {
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900295 iosapic_write(rte->iosapic->addr,
Zou Nan haia79561132006-12-07 09:51:35 -0800296 IOSAPIC_RTE_LOW(rte->rte_index),
297 IOSAPIC_MASK|vec);
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900298 iosapic_eoi(rte->iosapic->addr, vec);
Zou Nan haia79561132006-12-07 09:51:35 -0800299 }
300 }
301}
302#endif
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static void
305mask_irq (unsigned int irq)
306{
307 unsigned long flags;
308 char __iomem *addr;
309 u32 low32;
310 int rte_index;
311 ia64_vector vec = irq_to_vector(irq);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700312 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700314 if (list_empty(&iosapic_intr_info[vec].rtes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return; /* not an IOSAPIC interrupt! */
316
317 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900318 /* set only the mask bit */
319 low32 = iosapic_intr_info[vec].low32 |= IOSAPIC_MASK;
320 list_for_each_entry(rte, &iosapic_intr_info[vec].rtes, rte_list) {
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900321 addr = rte->iosapic->addr;
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900322 rte_index = rte->rte_index;
323 iosapic_write(addr, IOSAPIC_RTE_LOW(rte_index), low32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 spin_unlock_irqrestore(&iosapic_lock, flags);
326}
327
328static void
329unmask_irq (unsigned int irq)
330{
331 unsigned long flags;
332 char __iomem *addr;
333 u32 low32;
334 int rte_index;
335 ia64_vector vec = irq_to_vector(irq);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700336 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700338 if (list_empty(&iosapic_intr_info[vec].rtes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return; /* not an IOSAPIC interrupt! */
340
341 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900342 low32 = iosapic_intr_info[vec].low32 &= ~IOSAPIC_MASK;
343 list_for_each_entry(rte, &iosapic_intr_info[vec].rtes, rte_list) {
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900344 addr = rte->iosapic->addr;
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900345 rte_index = rte->rte_index;
346 iosapic_write(addr, IOSAPIC_RTE_LOW(rte_index), low32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 spin_unlock_irqrestore(&iosapic_lock, flags);
349}
350
351
352static void
353iosapic_set_affinity (unsigned int irq, cpumask_t mask)
354{
355#ifdef CONFIG_SMP
356 unsigned long flags;
357 u32 high32, low32;
358 int dest, rte_index;
359 char __iomem *addr;
360 int redir = (irq & IA64_IRQ_REDIRECTED) ? 1 : 0;
361 ia64_vector vec;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700362 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 irq &= (~IA64_IRQ_REDIRECTED);
365 vec = irq_to_vector(irq);
366
367 if (cpus_empty(mask))
368 return;
369
370 dest = cpu_physical_id(first_cpu(mask));
371
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700372 if (list_empty(&iosapic_intr_info[vec].rtes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return; /* not an IOSAPIC interrupt */
374
375 set_irq_affinity_info(irq, dest, redir);
376
377 /* dest contains both id and eid */
378 high32 = dest << IOSAPIC_DEST_SHIFT;
379
380 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900381 low32 = iosapic_intr_info[vec].low32 & ~(7 << IOSAPIC_DELIVERY_SHIFT);
382 if (redir)
383 /* change delivery mode to lowest priority */
384 low32 |= (IOSAPIC_LOWEST_PRIORITY << IOSAPIC_DELIVERY_SHIFT);
385 else
386 /* change delivery mode to fixed */
387 low32 |= (IOSAPIC_FIXED << IOSAPIC_DELIVERY_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900389 iosapic_intr_info[vec].low32 = low32;
390 iosapic_intr_info[vec].dest = dest;
391 list_for_each_entry(rte, &iosapic_intr_info[vec].rtes, rte_list) {
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900392 addr = rte->iosapic->addr;
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900393 rte_index = rte->rte_index;
394 iosapic_write(addr, IOSAPIC_RTE_HIGH(rte_index), high32);
395 iosapic_write(addr, IOSAPIC_RTE_LOW(rte_index), low32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 spin_unlock_irqrestore(&iosapic_lock, flags);
398#endif
399}
400
401/*
402 * Handlers for level-triggered interrupts.
403 */
404
405static unsigned int
406iosapic_startup_level_irq (unsigned int irq)
407{
408 unmask_irq(irq);
409 return 0;
410}
411
412static void
413iosapic_end_level_irq (unsigned int irq)
414{
415 ia64_vector vec = irq_to_vector(irq);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700416 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Chen, Kenneth W41503de2006-05-16 16:29:00 -0700418 move_native_irq(irq);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700419 list_for_each_entry(rte, &iosapic_intr_info[vec].rtes, rte_list)
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900420 iosapic_eoi(rte->iosapic->addr, vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423#define iosapic_shutdown_level_irq mask_irq
424#define iosapic_enable_level_irq unmask_irq
425#define iosapic_disable_level_irq mask_irq
426#define iosapic_ack_level_irq nop
427
KAMEZAWA Hiroyukie253eb02007-03-07 14:57:35 -0800428struct irq_chip irq_type_iosapic_level = {
Ingo Molnar06344db2006-11-16 00:43:02 -0800429 .name = "IO-SAPIC-level",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .startup = iosapic_startup_level_irq,
431 .shutdown = iosapic_shutdown_level_irq,
432 .enable = iosapic_enable_level_irq,
433 .disable = iosapic_disable_level_irq,
434 .ack = iosapic_ack_level_irq,
435 .end = iosapic_end_level_irq,
KAMEZAWA Hiroyukie253eb02007-03-07 14:57:35 -0800436 .mask = mask_irq,
437 .unmask = unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 .set_affinity = iosapic_set_affinity
439};
440
441/*
442 * Handlers for edge-triggered interrupts.
443 */
444
445static unsigned int
446iosapic_startup_edge_irq (unsigned int irq)
447{
448 unmask_irq(irq);
449 /*
450 * IOSAPIC simply drops interrupts pended while the
451 * corresponding pin was masked, so we can't know if an
452 * interrupt is pending already. Let's hope not...
453 */
454 return 0;
455}
456
457static void
458iosapic_ack_edge_irq (unsigned int irq)
459{
Ingo Molnara8553ac2006-06-29 02:24:38 -0700460 irq_desc_t *idesc = irq_desc + irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Chen, Kenneth W41503de2006-05-16 16:29:00 -0700462 move_native_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * Once we have recorded IRQ_PENDING already, we can mask the
465 * interrupt for real. This prevents IRQ storms from unhandled
466 * devices.
467 */
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900468 if ((idesc->status & (IRQ_PENDING|IRQ_DISABLED)) ==
469 (IRQ_PENDING|IRQ_DISABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 mask_irq(irq);
471}
472
473#define iosapic_enable_edge_irq unmask_irq
474#define iosapic_disable_edge_irq nop
475#define iosapic_end_edge_irq nop
476
KAMEZAWA Hiroyukie253eb02007-03-07 14:57:35 -0800477struct irq_chip irq_type_iosapic_edge = {
Ingo Molnar06344db2006-11-16 00:43:02 -0800478 .name = "IO-SAPIC-edge",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .startup = iosapic_startup_edge_irq,
480 .shutdown = iosapic_disable_edge_irq,
481 .enable = iosapic_enable_edge_irq,
482 .disable = iosapic_disable_edge_irq,
483 .ack = iosapic_ack_edge_irq,
484 .end = iosapic_end_edge_irq,
KAMEZAWA Hiroyukie253eb02007-03-07 14:57:35 -0800485 .mask = mask_irq,
486 .unmask = unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 .set_affinity = iosapic_set_affinity
488};
489
490unsigned int
491iosapic_version (char __iomem *addr)
492{
493 /*
494 * IOSAPIC Version Register return 32 bit structure like:
495 * {
496 * unsigned int version : 8;
497 * unsigned int reserved1 : 8;
498 * unsigned int max_redir : 8;
499 * unsigned int reserved2 : 8;
500 * }
501 */
502 return iosapic_read(addr, IOSAPIC_VERSION);
503}
504
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900505static int iosapic_find_sharable_vector (unsigned long trigger,
506 unsigned long pol)
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700507{
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900508 int i, vector = -ENOSPC, min_count = -1;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700509 struct iosapic_intr_info *info;
510
511 /*
512 * shared vectors for edge-triggered interrupts are not
513 * supported yet
514 */
515 if (trigger == IOSAPIC_EDGE)
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900516 return -EINVAL;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700517
518 for (i = IA64_FIRST_DEVICE_VECTOR; i <= IA64_LAST_DEVICE_VECTOR; i++) {
519 info = &iosapic_intr_info[i];
520 if (info->trigger == trigger && info->polarity == pol &&
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900521 (info->dmode == IOSAPIC_FIXED || info->dmode ==
522 IOSAPIC_LOWEST_PRIORITY)) {
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700523 if (min_count == -1 || info->count < min_count) {
524 vector = i;
525 min_count = info->count;
526 }
527 }
528 }
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700529
530 return vector;
531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/*
534 * if the given vector is already owned by other,
535 * assign a new vector for the other and make the vector available
536 */
537static void __init
538iosapic_reassign_vector (int vector)
539{
540 int new_vector;
541
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700542 if (!list_empty(&iosapic_intr_info[vector].rtes)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 new_vector = assign_irq_vector(AUTO_ASSIGN);
Kenji Kaneshige3b5cc092005-07-10 21:49:00 -0700544 if (new_vector < 0)
545 panic("%s: out of interrupt vectors!\n", __FUNCTION__);
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900546 printk(KERN_INFO "Reassigning vector %d to %d\n",
547 vector, new_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 memcpy(&iosapic_intr_info[new_vector], &iosapic_intr_info[vector],
549 sizeof(struct iosapic_intr_info));
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700550 INIT_LIST_HEAD(&iosapic_intr_info[new_vector].rtes);
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900551 list_move(iosapic_intr_info[vector].rtes.next,
552 &iosapic_intr_info[new_vector].rtes);
553 memset(&iosapic_intr_info[vector], 0,
554 sizeof(struct iosapic_intr_info));
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700555 iosapic_intr_info[vector].low32 = IOSAPIC_MASK;
556 INIT_LIST_HEAD(&iosapic_intr_info[vector].rtes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558}
559
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700560static struct iosapic_rte_info *iosapic_alloc_rte (void)
561{
562 int i;
563 struct iosapic_rte_info *rte;
564 int preallocated = 0;
565
566 if (!iosapic_kmalloc_ok && list_empty(&free_rte_list)) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900567 rte = alloc_bootmem(sizeof(struct iosapic_rte_info) *
568 NR_PREALLOCATE_RTE_ENTRIES);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700569 if (!rte)
570 return NULL;
571 for (i = 0; i < NR_PREALLOCATE_RTE_ENTRIES; i++, rte++)
572 list_add(&rte->rte_list, &free_rte_list);
573 }
574
575 if (!list_empty(&free_rte_list)) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900576 rte = list_entry(free_rte_list.next, struct iosapic_rte_info,
577 rte_list);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700578 list_del(&rte->rte_list);
579 preallocated++;
580 } else {
581 rte = kmalloc(sizeof(struct iosapic_rte_info), GFP_ATOMIC);
582 if (!rte)
583 return NULL;
584 }
585
586 memset(rte, 0, sizeof(struct iosapic_rte_info));
587 if (preallocated)
588 rte->flags |= RTE_PREALLOCATED;
589
590 return rte;
591}
592
593static void iosapic_free_rte (struct iosapic_rte_info *rte)
594{
595 if (rte->flags & RTE_PREALLOCATED)
596 list_add_tail(&rte->rte_list, &free_rte_list);
597 else
598 kfree(rte);
599}
600
601static inline int vector_is_shared (int vector)
602{
603 return (iosapic_intr_info[vector].count > 1);
604}
605
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400606static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607register_intr (unsigned int gsi, int vector, unsigned char delivery,
608 unsigned long polarity, unsigned long trigger)
609{
610 irq_desc_t *idesc;
611 struct hw_interrupt_type *irq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int index;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700613 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 index = find_iosapic(gsi);
616 if (index < 0) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900617 printk(KERN_WARNING "%s: No IOSAPIC for GSI %u\n",
618 __FUNCTION__, gsi);
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400619 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700622 rte = gsi_vector_to_rte(gsi, vector);
623 if (!rte) {
624 rte = iosapic_alloc_rte();
625 if (!rte) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900626 printk(KERN_WARNING "%s: cannot allocate memory\n",
627 __FUNCTION__);
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400628 return -ENOMEM;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700629 }
630
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900631 rte->iosapic = &iosapic_lists[index];
632 rte->rte_index = gsi - rte->iosapic->gsi_base;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700633 rte->refcnt++;
634 list_add_tail(&rte->rte_list, &iosapic_intr_info[vector].rtes);
635 iosapic_intr_info[vector].count++;
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700636 iosapic_lists[index].rtes_inuse++;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700637 }
638 else if (vector_is_shared(vector)) {
639 struct iosapic_intr_info *info = &iosapic_intr_info[vector];
640 if (info->trigger != trigger || info->polarity != polarity) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900641 printk (KERN_WARNING
642 "%s: cannot override the interrupt\n",
643 __FUNCTION__);
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400644 return -EINVAL;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700645 }
646 }
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 iosapic_intr_info[vector].polarity = polarity;
649 iosapic_intr_info[vector].dmode = delivery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 iosapic_intr_info[vector].trigger = trigger;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (trigger == IOSAPIC_EDGE)
653 irq_type = &irq_type_iosapic_edge;
654 else
655 irq_type = &irq_type_iosapic_level;
656
Ingo Molnara8553ac2006-06-29 02:24:38 -0700657 idesc = irq_desc + vector;
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700658 if (idesc->chip != irq_type) {
659 if (idesc->chip != &no_irq_type)
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900660 printk(KERN_WARNING
661 "%s: changing vector %d from %s to %s\n",
662 __FUNCTION__, vector,
Andrew Morton351a5832006-11-16 00:42:58 -0800663 idesc->chip->name, irq_type->name);
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700664 idesc->chip = irq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669static unsigned int
670get_target_cpu (unsigned int gsi, int vector)
671{
672#ifdef CONFIG_SMP
673 static int cpu = -1;
Ashok Rajff741902005-11-11 14:32:40 -0800674 extern int cpe_vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /*
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700677 * In case of vector shared by multiple RTEs, all RTEs that
678 * share the vector need to use the same destination CPU.
679 */
680 if (!list_empty(&iosapic_intr_info[vector].rtes))
681 return iosapic_intr_info[vector].dest;
682
683 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 * If the platform supports redirection via XTP, let it
685 * distribute interrupts.
686 */
687 if (smp_int_redirect & SMP_IRQ_REDIRECTION)
688 return cpu_physical_id(smp_processor_id());
689
690 /*
691 * Some interrupts (ACPI SCI, for instance) are registered
692 * before the BSP is marked as online.
693 */
694 if (!cpu_online(smp_processor_id()))
695 return cpu_physical_id(smp_processor_id());
696
Ashok Rajff741902005-11-11 14:32:40 -0800697#ifdef CONFIG_ACPI
Ashok Rajb88e9262006-01-19 16:18:47 -0800698 if (cpe_vector > 0 && vector == IA64_CPEP_VECTOR)
699 return get_cpei_target_cpu();
Ashok Rajff741902005-11-11 14:32:40 -0800700#endif
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#ifdef CONFIG_NUMA
703 {
704 int num_cpus, cpu_index, iosapic_index, numa_cpu, i = 0;
705 cpumask_t cpu_mask;
706
707 iosapic_index = find_iosapic(gsi);
708 if (iosapic_index < 0 ||
709 iosapic_lists[iosapic_index].node == MAX_NUMNODES)
710 goto skip_numa_setup;
711
712 cpu_mask = node_to_cpumask(iosapic_lists[iosapic_index].node);
713
714 for_each_cpu_mask(numa_cpu, cpu_mask) {
715 if (!cpu_online(numa_cpu))
716 cpu_clear(numa_cpu, cpu_mask);
717 }
718
719 num_cpus = cpus_weight(cpu_mask);
720
721 if (!num_cpus)
722 goto skip_numa_setup;
723
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900724 /* Use vector assignment to distribute across cpus in node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 cpu_index = vector % num_cpus;
726
727 for (numa_cpu = first_cpu(cpu_mask) ; i < cpu_index ; i++)
728 numa_cpu = next_cpu(numa_cpu, cpu_mask);
729
730 if (numa_cpu != NR_CPUS)
731 return cpu_physical_id(numa_cpu);
732 }
733skip_numa_setup:
734#endif
735 /*
736 * Otherwise, round-robin interrupt vectors across all the
737 * processors. (It'd be nice if we could be smarter in the
738 * case of NUMA.)
739 */
740 do {
741 if (++cpu >= NR_CPUS)
742 cpu = 0;
743 } while (!cpu_online(cpu));
744
745 return cpu_physical_id(cpu);
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900746#else /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return cpu_physical_id(smp_processor_id());
748#endif
749}
750
751/*
752 * ACPI can describe IOSAPIC interrupts via static tables and namespace
753 * methods. This provides an interface to register those interrupts and
754 * program the IOSAPIC RTE.
755 */
756int
757iosapic_register_intr (unsigned int gsi,
758 unsigned long polarity, unsigned long trigger)
759{
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400760 int vector, mask = 1, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 unsigned int dest;
762 unsigned long flags;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700763 struct iosapic_rte_info *rte;
764 u32 low32;
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /*
767 * If this GSI has already been registered (i.e., it's a
768 * shared interrupt, or we lost a race to register it),
769 * don't touch the RTE.
770 */
771 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900772 vector = gsi_to_vector(gsi);
773 if (vector > 0) {
774 rte = gsi_vector_to_rte(gsi, vector);
775 rte->refcnt++;
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900776 goto unlock_iosapic_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700779 /* If vector is running out, we try to find a sharable vector */
Kenji Kaneshige3b5cc092005-07-10 21:49:00 -0700780 vector = assign_irq_vector(AUTO_ASSIGN);
781 if (vector < 0) {
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700782 vector = iosapic_find_sharable_vector(trigger, polarity);
Kenji Kaneshige14454a12005-07-28 14:42:00 -0400783 if (vector < 0)
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900784 goto unlock_iosapic_lock;
Kenji Kaneshige3b5cc092005-07-10 21:49:00 -0700785 }
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700786
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900787 spin_lock(&irq_desc[vector].lock);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900788 dest = get_target_cpu(gsi, vector);
789 err = register_intr(gsi, vector, IOSAPIC_LOWEST_PRIORITY,
790 polarity, trigger);
791 if (err < 0) {
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900792 vector = err;
793 goto unlock_all;
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900794 }
795
796 /*
797 * If the vector is shared and already unmasked for other
798 * interrupt sources, don't mask it.
799 */
800 low32 = iosapic_intr_info[vector].low32;
801 if (vector_is_shared(vector) && !(low32 & IOSAPIC_MASK))
802 mask = 0;
803 set_rte(gsi, vector, dest, mask);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 printk(KERN_INFO "GSI %u (%s, %s) -> CPU %d (0x%04x) vector %d\n",
806 gsi, (trigger == IOSAPIC_EDGE ? "edge" : "level"),
807 (polarity == IOSAPIC_POL_HIGH ? "high" : "low"),
808 cpu_logical_id(dest), dest, vector);
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900809 unlock_all:
810 spin_unlock(&irq_desc[vector].lock);
811 unlock_iosapic_lock:
812 spin_unlock_irqrestore(&iosapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return vector;
814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816void
817iosapic_unregister_intr (unsigned int gsi)
818{
819 unsigned long flags;
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700820 int irq, vector, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 irq_desc_t *idesc;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700822 u32 low32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 unsigned long trigger, polarity;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700824 unsigned int dest;
825 struct iosapic_rte_info *rte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /*
828 * If the irq associated with the gsi is not found,
829 * iosapic_unregister_intr() is unbalanced. We need to check
830 * this again after getting locks.
831 */
832 irq = gsi_to_irq(gsi);
833 if (irq < 0) {
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900834 printk(KERN_ERR "iosapic_unregister_intr(%u) unbalanced\n",
835 gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 WARN_ON(1);
837 return;
838 }
839 vector = irq_to_vector(irq);
840
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900841 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900842 if ((rte = gsi_vector_to_rte(gsi, vector)) == NULL) {
843 printk(KERN_ERR "iosapic_unregister_intr(%u) unbalanced\n",
844 gsi);
845 WARN_ON(1);
846 goto out;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900849 if (--rte->refcnt > 0)
850 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900852 /* Remove the rte entry from the list */
853 idesc = irq_desc + irq;
854 spin_lock(&idesc->lock);
855 list_del(&rte->rte_list);
856 spin_unlock(&idesc->lock);
857
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900858 /* Mask the interrupt */
859 low32 = iosapic_intr_info[vector].low32 | IOSAPIC_MASK;
Yasuaki Ishimatsuc5e3f9e2007-07-17 21:20:42 +0900860 iosapic_write(rte->iosapic->addr,
861 IOSAPIC_RTE_LOW(rte->rte_index), low32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900863 iosapic_intr_info[vector].count--;
864 iosapic_free_rte(rte);
865 index = find_iosapic(gsi);
866 iosapic_lists[index].rtes_inuse--;
867 WARN_ON(iosapic_lists[index].rtes_inuse < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900869 trigger = iosapic_intr_info[vector].trigger;
870 polarity = iosapic_intr_info[vector].polarity;
871 dest = iosapic_intr_info[vector].dest;
872 printk(KERN_INFO
873 "GSI %u (%s, %s) -> CPU %d (0x%04x) vector %d unregistered\n",
874 gsi, (trigger == IOSAPIC_EDGE ? "edge" : "level"),
875 (polarity == IOSAPIC_POL_HIGH ? "high" : "low"),
876 cpu_logical_id(dest), dest, vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900878 if (list_empty(&iosapic_intr_info[vector].rtes)) {
879 /* Sanity check */
880 BUG_ON(iosapic_intr_info[vector].count);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700881
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900882 /* Clear the interrupt controller descriptor */
883 idesc->chip = &no_irq_type;
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700884
Alex Williamson451fe002007-01-24 22:48:04 -0700885#ifdef CONFIG_SMP
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900886 /* Clear affinity */
887 cpus_setall(idesc->affinity);
Alex Williamson451fe002007-01-24 22:48:04 -0700888#endif
889
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900890 /* Clear the interrupt information */
891 memset(&iosapic_intr_info[vector], 0,
892 sizeof(struct iosapic_intr_info));
893 iosapic_intr_info[vector].low32 |= IOSAPIC_MASK;
894 INIT_LIST_HEAD(&iosapic_intr_info[vector].rtes);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700895
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900896 if (idesc->action) {
897 printk(KERN_ERR
898 "interrupt handlers still exist on IRQ %u\n",
899 irq);
900 WARN_ON(1);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700901 }
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +0900902
903 /* Free the interrupt vector */
904 free_irq_vector(vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700906 out:
Yasuaki Ishimatsu40598cb2007-07-17 21:20:54 +0900907 spin_unlock_irqrestore(&iosapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910/*
911 * ACPI calls this when it finds an entry for a platform interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 */
913int __init
914iosapic_register_platform_intr (u32 int_type, unsigned int gsi,
915 int iosapic_vector, u16 eid, u16 id,
916 unsigned long polarity, unsigned long trigger)
917{
918 static const char * const name[] = {"unknown", "PMI", "INIT", "CPEI"};
919 unsigned char delivery;
920 int vector, mask = 0;
921 unsigned int dest = ((id << 8) | eid) & 0xffff;
922
923 switch (int_type) {
924 case ACPI_INTERRUPT_PMI:
925 vector = iosapic_vector;
926 /*
927 * since PMI vector is alloc'd by FW(ACPI) not by kernel,
928 * we need to make sure the vector is available
929 */
930 iosapic_reassign_vector(vector);
931 delivery = IOSAPIC_PMI;
932 break;
933 case ACPI_INTERRUPT_INIT:
934 vector = assign_irq_vector(AUTO_ASSIGN);
Kenji Kaneshige3b5cc092005-07-10 21:49:00 -0700935 if (vector < 0)
936 panic("%s: out of interrupt vectors!\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 delivery = IOSAPIC_INIT;
938 break;
939 case ACPI_INTERRUPT_CPEI:
940 vector = IA64_CPE_VECTOR;
941 delivery = IOSAPIC_LOWEST_PRIORITY;
942 mask = 1;
943 break;
944 default:
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900945 printk(KERN_ERR "%s: invalid int type 0x%x\n", __FUNCTION__,
946 int_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return -1;
948 }
949
950 register_intr(gsi, vector, delivery, polarity, trigger);
951
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900952 printk(KERN_INFO
953 "PLATFORM int %s (0x%x): GSI %u (%s, %s) -> CPU %d (0x%04x)"
954 " vector %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 int_type < ARRAY_SIZE(name) ? name[int_type] : "unknown",
956 int_type, gsi, (trigger == IOSAPIC_EDGE ? "edge" : "level"),
957 (polarity == IOSAPIC_POL_HIGH ? "high" : "low"),
958 cpu_logical_id(dest), dest, vector);
959
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700960 set_rte(gsi, vector, dest, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return vector;
962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/*
965 * ACPI calls this when it finds an entry for a legacy ISA IRQ override.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
Tony Luck0f7ac292007-05-07 13:17:00 -0700967void __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968iosapic_override_isa_irq (unsigned int isa_irq, unsigned int gsi,
969 unsigned long polarity,
970 unsigned long trigger)
971{
972 int vector;
973 unsigned int dest = cpu_physical_id(smp_processor_id());
974
975 vector = isa_irq_to_vector(isa_irq);
976
977 register_intr(gsi, vector, IOSAPIC_LOWEST_PRIORITY, polarity, trigger);
978
979 DBG("ISA: IRQ %u -> GSI %u (%s,%s) -> CPU %d (0x%04x) vector %d\n",
980 isa_irq, gsi, trigger == IOSAPIC_EDGE ? "edge" : "level",
981 polarity == IOSAPIC_POL_HIGH ? "high" : "low",
982 cpu_logical_id(dest), dest, vector);
983
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700984 set_rte(gsi, vector, dest, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
987void __init
988iosapic_system_init (int system_pcat_compat)
989{
990 int vector;
991
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700992 for (vector = 0; vector < IA64_NUM_VECTORS; ++vector) {
993 iosapic_intr_info[vector].low32 = IOSAPIC_MASK;
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +0900994 /* mark as unused */
995 INIT_LIST_HEAD(&iosapic_intr_info[vector].rtes);
Kenji Kaneshige24eeb562005-04-25 13:26:23 -0700996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 pcat_compat = system_pcat_compat;
999 if (pcat_compat) {
1000 /*
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +09001001 * Disable the compatibility mode interrupts (8259 style),
1002 * needs IN/OUT support enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +09001004 printk(KERN_INFO
1005 "%s: Disabling PC-AT compatible 8259 interrupts\n",
1006 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 outb(0xff, 0xA1);
1008 outb(0xff, 0x21);
1009 }
1010}
1011
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001012static inline int
1013iosapic_alloc (void)
1014{
1015 int index;
1016
1017 for (index = 0; index < NR_IOSAPICS; index++)
1018 if (!iosapic_lists[index].addr)
1019 return index;
1020
1021 printk(KERN_WARNING "%s: failed to allocate iosapic\n", __FUNCTION__);
1022 return -1;
1023}
1024
1025static inline void
1026iosapic_free (int index)
1027{
1028 memset(&iosapic_lists[index], 0, sizeof(iosapic_lists[0]));
1029}
1030
1031static inline int
1032iosapic_check_gsi_range (unsigned int gsi_base, unsigned int ver)
1033{
1034 int index;
1035 unsigned int gsi_end, base, end;
1036
1037 /* check gsi range */
1038 gsi_end = gsi_base + ((ver >> 16) & 0xff);
1039 for (index = 0; index < NR_IOSAPICS; index++) {
1040 if (!iosapic_lists[index].addr)
1041 continue;
1042
1043 base = iosapic_lists[index].gsi_base;
1044 end = base + iosapic_lists[index].num_rte - 1;
1045
Satoru Takeuchie6d1ba52006-03-27 17:13:46 +09001046 if (gsi_end < base || end < gsi_base)
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001047 continue; /* OK */
1048
1049 return -EBUSY;
1050 }
1051 return 0;
1052}
1053
1054int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055iosapic_init (unsigned long phys_addr, unsigned int gsi_base)
1056{
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001057 int num_rte, err, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 unsigned int isa_irq, ver;
1059 char __iomem *addr;
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001060 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001062 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +09001063 addr = ioremap(phys_addr, 0);
1064 ver = iosapic_version(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +09001066 if ((err = iosapic_check_gsi_range(gsi_base, ver))) {
1067 iounmap(addr);
1068 spin_unlock_irqrestore(&iosapic_lock, flags);
1069 return err;
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001070 }
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +09001071
1072 /*
1073 * The MAX_REDIR register holds the highest input pin number
1074 * (starting from 0). We add 1 so that we can use it for
1075 * number of pins (= RTEs)
1076 */
1077 num_rte = ((ver >> 16) & 0xff) + 1;
1078
1079 index = iosapic_alloc();
1080 iosapic_lists[index].addr = addr;
1081 iosapic_lists[index].gsi_base = gsi_base;
1082 iosapic_lists[index].num_rte = num_rte;
1083#ifdef CONFIG_NUMA
1084 iosapic_lists[index].node = MAX_NUMNODES;
1085#endif
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001086 spin_unlock_irqrestore(&iosapic_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 if ((gsi_base == 0) && pcat_compat) {
1089 /*
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +09001090 * Map the legacy ISA devices into the IOSAPIC data. Some of
1091 * these may get reprogrammed later on with data from the ACPI
1092 * Interrupt Source Override table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 */
1094 for (isa_irq = 0; isa_irq < 16; ++isa_irq)
Satoru Takeuchi46cba3d2006-03-27 17:12:19 +09001095 iosapic_override_isa_irq(isa_irq, isa_irq,
1096 IOSAPIC_POL_HIGH,
1097 IOSAPIC_EDGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001102#ifdef CONFIG_HOTPLUG
1103int
1104iosapic_remove (unsigned int gsi_base)
1105{
1106 int index, err = 0;
1107 unsigned long flags;
1108
1109 spin_lock_irqsave(&iosapic_lock, flags);
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +09001110 index = find_iosapic(gsi_base);
1111 if (index < 0) {
1112 printk(KERN_WARNING "%s: No IOSAPIC for GSI base %u\n",
1113 __FUNCTION__, gsi_base);
1114 goto out;
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001115 }
Yasuaki Ishimatsue3a8f7b2007-07-17 21:20:29 +09001116
1117 if (iosapic_lists[index].rtes_inuse) {
1118 err = -EBUSY;
1119 printk(KERN_WARNING "%s: IOSAPIC for GSI base %u is busy\n",
1120 __FUNCTION__, gsi_base);
1121 goto out;
1122 }
1123
1124 iounmap(iosapic_lists[index].addr);
1125 iosapic_free(index);
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001126 out:
1127 spin_unlock_irqrestore(&iosapic_lock, flags);
1128 return err;
1129}
1130#endif /* CONFIG_HOTPLUG */
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132#ifdef CONFIG_NUMA
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001133void __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134map_iosapic_to_node(unsigned int gsi_base, int node)
1135{
1136 int index;
1137
1138 index = find_iosapic(gsi_base);
1139 if (index < 0) {
1140 printk(KERN_WARNING "%s: No IOSAPIC for GSI %u\n",
1141 __FUNCTION__, gsi_base);
1142 return;
1143 }
1144 iosapic_lists[index].node = node;
1145 return;
1146}
1147#endif
Kenji Kaneshige24eeb562005-04-25 13:26:23 -07001148
1149static int __init iosapic_enable_kmalloc (void)
1150{
1151 iosapic_kmalloc_ok = 1;
1152 return 0;
1153}
1154core_initcall (iosapic_enable_kmalloc);