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>
12 * 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
16 * 00/10/27 Asit Mallick, Goutham Rao <goutham.rao@intel.com> IRQ vector
17 * allocation PCI to vector mapping, shared PCI
19 * 00/10/27 D. Mosberger Document things a bit more to make them more
20 * understandable. Clean up much of the old
22 * 01/07/27 J.I. Lee PCI irq routing, Platform/Legacy interrupts
23 * and fixes for ACPI S5(SoftOff) support.
24 * 02/01/23 J.I. Lee iosapic pgm fixes for PCI irq routing from _PRT
25 * 02/01/07 E. Focht <efocht@ess.nec.de> Redirectable interrupt
26 * vectors in iosapic_set_affinity(),
27 * initializations for /proc/irq/#/smp_affinity
28 * 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
30 * 02/04/30 J.I. Lee bug fix in find_iosapic to fix ACPI PCI IRQ to
31 * IOSAPIC mapping error
32 * 02/07/29 T. Kochi Allocate interrupt vectors dynamically
33 * 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
37 * 03/02/19 B. Helgaas Make pcat_compat system-wide, not per-IOSAPIC.
38 * Remove iosapic_address & gsi_base from
39 * external interfaces. Rationalize
40 * __init/__devinit attributes.
41 * 04/12/04 Ashok Raj <ashok.raj@intel.com> Intel Corporation 2004
42 * Updated to work with irq migration necessary
46 * Here is what the interrupt logic between a PCI device and the kernel looks
49 * (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).
54 * (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.
61 * (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
65 * (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
71 * platform_local_vector_to_irq(vector) APIs to differentiate the mapping.
72 * Please see also include/asm-ia64/hw_irq.h for those APIs.
74 * To sum up, there are three levels of mappings involved:
76 * PCI pin -> global system interrupt (GSI) -> IA-64 vector <-> IRQ
78 * 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.
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>
90 #include <linux/string.h>
91 #include <linux/bootmem.h>
93 #include <asm/delay.h>
94 #include <asm/hw_irq.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>
102 #undef DEBUG_INTERRUPT_ROUTING
104 #ifdef DEBUG_INTERRUPT_ROUTING
105 #define DBG(fmt...) printk(fmt)
110 #define NR_PREALLOCATE_RTE_ENTRIES \
111 (PAGE_SIZE / sizeof(struct iosapic_rte_info))
112 #define RTE_PREALLOCATED (1)
114 static DEFINE_SPINLOCK(iosapic_lock
);
117 * These tables map IA-64 vectors to the IOSAPIC pin that generates this
121 struct iosapic_rte_info
{
122 struct list_head rte_list
; /* node in list of RTEs sharing the
124 char __iomem
*addr
; /* base address of IOSAPIC */
125 unsigned int gsi_base
; /* first GSI assigned to this
127 char rte_index
; /* IOSAPIC RTE index */
128 int refcnt
; /* reference counter */
129 unsigned int flags
; /* flags */
130 } ____cacheline_aligned
;
132 static struct iosapic_intr_info
{
133 struct list_head rtes
; /* RTEs using this vector (empty =>
134 * not an IOSAPIC interrupt) */
135 int count
; /* # of RTEs that shares this vector */
136 u32 low32
; /* current value of low word of
137 * Redirection table entry */
138 unsigned int dest
; /* destination CPU physical ID */
139 unsigned char dmode
: 3; /* delivery mode (see iosapic.h) */
140 unsigned char polarity
: 1; /* interrupt polarity
142 unsigned char trigger
: 1; /* trigger mode (see iosapic.h) */
143 } iosapic_intr_info
[IA64_NUM_VECTORS
];
145 static struct iosapic
{
146 char __iomem
*addr
; /* base address of IOSAPIC */
147 unsigned int gsi_base
; /* first GSI assigned to this
149 unsigned short num_rte
; /* # of RTEs on this IOSAPIC */
150 int rtes_inuse
; /* # of RTEs in use on this IOSAPIC */
152 unsigned short node
; /* numa node association via pxm */
154 } iosapic_lists
[NR_IOSAPICS
];
156 static unsigned char pcat_compat __devinitdata
; /* 8259 compatibility flag */
158 static int iosapic_kmalloc_ok
;
159 static LIST_HEAD(free_rte_list
);
162 * Find an IOSAPIC associated with a GSI
165 find_iosapic (unsigned int gsi
)
169 for (i
= 0; i
< NR_IOSAPICS
; i
++) {
170 if ((unsigned) (gsi
- iosapic_lists
[i
].gsi_base
) <
171 iosapic_lists
[i
].num_rte
)
179 _gsi_to_vector (unsigned int gsi
)
181 struct iosapic_intr_info
*info
;
182 struct iosapic_rte_info
*rte
;
184 for (info
= iosapic_intr_info
; info
<
185 iosapic_intr_info
+ IA64_NUM_VECTORS
; ++info
)
186 list_for_each_entry(rte
, &info
->rtes
, rte_list
)
187 if (rte
->gsi_base
+ rte
->rte_index
== gsi
)
188 return info
- iosapic_intr_info
;
193 * Translate GSI number to the corresponding IA-64 interrupt vector. If no
194 * entry exists, return -1.
197 gsi_to_vector (unsigned int gsi
)
199 return _gsi_to_vector(gsi
);
203 gsi_to_irq (unsigned int gsi
)
208 * XXX fix me: this assumes an identity mapping between IA-64 vector
209 * and Linux irq numbers...
211 spin_lock_irqsave(&iosapic_lock
, flags
);
213 irq
= _gsi_to_vector(gsi
);
215 spin_unlock_irqrestore(&iosapic_lock
, flags
);
220 static struct iosapic_rte_info
*gsi_vector_to_rte(unsigned int gsi
,
223 struct iosapic_rte_info
*rte
;
225 list_for_each_entry(rte
, &iosapic_intr_info
[vec
].rtes
, rte_list
)
226 if (rte
->gsi_base
+ rte
->rte_index
== gsi
)
232 set_rte (unsigned int gsi
, unsigned int vector
, unsigned int dest
, int mask
)
234 unsigned long pol
, trigger
, dmode
;
239 struct iosapic_rte_info
*rte
;
241 DBG(KERN_DEBUG
"IOSAPIC: routing vector %d to 0x%x\n", vector
, dest
);
243 rte
= gsi_vector_to_rte(gsi
, vector
);
245 return; /* not an IOSAPIC interrupt */
247 rte_index
= rte
->rte_index
;
249 pol
= iosapic_intr_info
[vector
].polarity
;
250 trigger
= iosapic_intr_info
[vector
].trigger
;
251 dmode
= iosapic_intr_info
[vector
].dmode
;
253 redir
= (dmode
== IOSAPIC_LOWEST_PRIORITY
) ? 1 : 0;
259 for (irq
= 0; irq
< NR_IRQS
; ++irq
)
260 if (irq_to_vector(irq
) == vector
) {
261 set_irq_affinity_info(irq
,
262 (int)(dest
& 0xffff),
269 low32
= ((pol
<< IOSAPIC_POLARITY_SHIFT
) |
270 (trigger
<< IOSAPIC_TRIGGER_SHIFT
) |
271 (dmode
<< IOSAPIC_DELIVERY_SHIFT
) |
272 ((mask
? 1 : 0) << IOSAPIC_MASK_SHIFT
) |
275 /* dest contains both id and eid */
276 high32
= (dest
<< IOSAPIC_DEST_SHIFT
);
278 iosapic_write(addr
, IOSAPIC_RTE_HIGH(rte_index
), high32
);
279 iosapic_write(addr
, IOSAPIC_RTE_LOW(rte_index
), low32
);
280 iosapic_intr_info
[vector
].low32
= low32
;
281 iosapic_intr_info
[vector
].dest
= dest
;
285 nop (unsigned int irq
)
293 kexec_disable_iosapic(void)
295 struct iosapic_intr_info
*info
;
296 struct iosapic_rte_info
*rte
;
298 for (info
= iosapic_intr_info
; info
<
299 iosapic_intr_info
+ IA64_NUM_VECTORS
; ++info
, ++vec
) {
300 list_for_each_entry(rte
, &info
->rtes
,
302 iosapic_write(rte
->addr
,
303 IOSAPIC_RTE_LOW(rte
->rte_index
),
305 iosapic_eoi(rte
->addr
, vec
);
312 mask_irq (unsigned int irq
)
318 ia64_vector vec
= irq_to_vector(irq
);
319 struct iosapic_rte_info
*rte
;
321 if (list_empty(&iosapic_intr_info
[vec
].rtes
))
322 return; /* not an IOSAPIC interrupt! */
324 spin_lock_irqsave(&iosapic_lock
, flags
);
326 /* set only the mask bit */
327 low32
= iosapic_intr_info
[vec
].low32
|= IOSAPIC_MASK
;
328 list_for_each_entry(rte
, &iosapic_intr_info
[vec
].rtes
,
331 rte_index
= rte
->rte_index
;
332 iosapic_write(addr
, IOSAPIC_RTE_LOW(rte_index
), low32
);
335 spin_unlock_irqrestore(&iosapic_lock
, flags
);
339 unmask_irq (unsigned int irq
)
345 ia64_vector vec
= irq_to_vector(irq
);
346 struct iosapic_rte_info
*rte
;
348 if (list_empty(&iosapic_intr_info
[vec
].rtes
))
349 return; /* not an IOSAPIC interrupt! */
351 spin_lock_irqsave(&iosapic_lock
, flags
);
353 low32
= iosapic_intr_info
[vec
].low32
&= ~IOSAPIC_MASK
;
354 list_for_each_entry(rte
, &iosapic_intr_info
[vec
].rtes
,
357 rte_index
= rte
->rte_index
;
358 iosapic_write(addr
, IOSAPIC_RTE_LOW(rte_index
), low32
);
361 spin_unlock_irqrestore(&iosapic_lock
, flags
);
366 iosapic_set_affinity (unsigned int irq
, cpumask_t mask
)
373 int redir
= (irq
& IA64_IRQ_REDIRECTED
) ? 1 : 0;
375 struct iosapic_rte_info
*rte
;
377 irq
&= (~IA64_IRQ_REDIRECTED
);
378 vec
= irq_to_vector(irq
);
380 if (cpus_empty(mask
))
383 dest
= cpu_physical_id(first_cpu(mask
));
385 if (list_empty(&iosapic_intr_info
[vec
].rtes
))
386 return; /* not an IOSAPIC interrupt */
388 set_irq_affinity_info(irq
, dest
, redir
);
390 /* dest contains both id and eid */
391 high32
= dest
<< IOSAPIC_DEST_SHIFT
;
393 spin_lock_irqsave(&iosapic_lock
, flags
);
395 low32
= iosapic_intr_info
[vec
].low32
&
396 ~(7 << IOSAPIC_DELIVERY_SHIFT
);
399 /* change delivery mode to lowest priority */
400 low32
|= (IOSAPIC_LOWEST_PRIORITY
<<
401 IOSAPIC_DELIVERY_SHIFT
);
403 /* change delivery mode to fixed */
404 low32
|= (IOSAPIC_FIXED
<< IOSAPIC_DELIVERY_SHIFT
);
406 iosapic_intr_info
[vec
].low32
= low32
;
407 iosapic_intr_info
[vec
].dest
= dest
;
408 list_for_each_entry(rte
, &iosapic_intr_info
[vec
].rtes
,
411 rte_index
= rte
->rte_index
;
412 iosapic_write(addr
, IOSAPIC_RTE_HIGH(rte_index
),
414 iosapic_write(addr
, IOSAPIC_RTE_LOW(rte_index
), low32
);
417 spin_unlock_irqrestore(&iosapic_lock
, flags
);
422 * Handlers for level-triggered interrupts.
426 iosapic_startup_level_irq (unsigned int irq
)
433 iosapic_end_level_irq (unsigned int irq
)
435 ia64_vector vec
= irq_to_vector(irq
);
436 struct iosapic_rte_info
*rte
;
438 move_native_irq(irq
);
439 list_for_each_entry(rte
, &iosapic_intr_info
[vec
].rtes
, rte_list
)
440 iosapic_eoi(rte
->addr
, vec
);
443 #define iosapic_shutdown_level_irq mask_irq
444 #define iosapic_enable_level_irq unmask_irq
445 #define iosapic_disable_level_irq mask_irq
446 #define iosapic_ack_level_irq nop
448 struct irq_chip irq_type_iosapic_level
= {
449 .name
= "IO-SAPIC-level",
450 .startup
= iosapic_startup_level_irq
,
451 .shutdown
= iosapic_shutdown_level_irq
,
452 .enable
= iosapic_enable_level_irq
,
453 .disable
= iosapic_disable_level_irq
,
454 .ack
= iosapic_ack_level_irq
,
455 .end
= iosapic_end_level_irq
,
457 .unmask
= unmask_irq
,
458 .set_affinity
= iosapic_set_affinity
462 * Handlers for edge-triggered interrupts.
466 iosapic_startup_edge_irq (unsigned int irq
)
470 * IOSAPIC simply drops interrupts pended while the
471 * corresponding pin was masked, so we can't know if an
472 * interrupt is pending already. Let's hope not...
478 iosapic_ack_edge_irq (unsigned int irq
)
480 irq_desc_t
*idesc
= irq_desc
+ irq
;
482 move_native_irq(irq
);
484 * Once we have recorded IRQ_PENDING already, we can mask the
485 * interrupt for real. This prevents IRQ storms from unhandled
488 if ((idesc
->status
& (IRQ_PENDING
|IRQ_DISABLED
)) ==
489 (IRQ_PENDING
|IRQ_DISABLED
))
493 #define iosapic_enable_edge_irq unmask_irq
494 #define iosapic_disable_edge_irq nop
495 #define iosapic_end_edge_irq nop
497 struct irq_chip irq_type_iosapic_edge
= {
498 .name
= "IO-SAPIC-edge",
499 .startup
= iosapic_startup_edge_irq
,
500 .shutdown
= iosapic_disable_edge_irq
,
501 .enable
= iosapic_enable_edge_irq
,
502 .disable
= iosapic_disable_edge_irq
,
503 .ack
= iosapic_ack_edge_irq
,
504 .end
= iosapic_end_edge_irq
,
506 .unmask
= unmask_irq
,
507 .set_affinity
= iosapic_set_affinity
511 iosapic_version (char __iomem
*addr
)
514 * IOSAPIC Version Register return 32 bit structure like:
516 * unsigned int version : 8;
517 * unsigned int reserved1 : 8;
518 * unsigned int max_redir : 8;
519 * unsigned int reserved2 : 8;
522 return iosapic_read(addr
, IOSAPIC_VERSION
);
525 static int iosapic_find_sharable_vector (unsigned long trigger
,
528 int i
, vector
= -1, min_count
= -1;
529 struct iosapic_intr_info
*info
;
532 * shared vectors for edge-triggered interrupts are not
535 if (trigger
== IOSAPIC_EDGE
)
538 for (i
= IA64_FIRST_DEVICE_VECTOR
; i
<= IA64_LAST_DEVICE_VECTOR
; i
++) {
539 info
= &iosapic_intr_info
[i
];
540 if (info
->trigger
== trigger
&& info
->polarity
== pol
&&
541 (info
->dmode
== IOSAPIC_FIXED
|| info
->dmode
==
542 IOSAPIC_LOWEST_PRIORITY
)) {
543 if (min_count
== -1 || info
->count
< min_count
) {
545 min_count
= info
->count
;
554 * if the given vector is already owned by other,
555 * assign a new vector for the other and make the vector available
558 iosapic_reassign_vector (int vector
)
562 if (!list_empty(&iosapic_intr_info
[vector
].rtes
)) {
563 new_vector
= assign_irq_vector(AUTO_ASSIGN
);
565 panic("%s: out of interrupt vectors!\n", __FUNCTION__
);
566 printk(KERN_INFO
"Reassigning vector %d to %d\n",
568 memcpy(&iosapic_intr_info
[new_vector
], &iosapic_intr_info
[vector
],
569 sizeof(struct iosapic_intr_info
));
570 INIT_LIST_HEAD(&iosapic_intr_info
[new_vector
].rtes
);
571 list_move(iosapic_intr_info
[vector
].rtes
.next
,
572 &iosapic_intr_info
[new_vector
].rtes
);
573 memset(&iosapic_intr_info
[vector
], 0,
574 sizeof(struct iosapic_intr_info
));
575 iosapic_intr_info
[vector
].low32
= IOSAPIC_MASK
;
576 INIT_LIST_HEAD(&iosapic_intr_info
[vector
].rtes
);
580 static struct iosapic_rte_info
*iosapic_alloc_rte (void)
583 struct iosapic_rte_info
*rte
;
584 int preallocated
= 0;
586 if (!iosapic_kmalloc_ok
&& list_empty(&free_rte_list
)) {
587 rte
= alloc_bootmem(sizeof(struct iosapic_rte_info
) *
588 NR_PREALLOCATE_RTE_ENTRIES
);
591 for (i
= 0; i
< NR_PREALLOCATE_RTE_ENTRIES
; i
++, rte
++)
592 list_add(&rte
->rte_list
, &free_rte_list
);
595 if (!list_empty(&free_rte_list
)) {
596 rte
= list_entry(free_rte_list
.next
, struct iosapic_rte_info
,
598 list_del(&rte
->rte_list
);
601 rte
= kmalloc(sizeof(struct iosapic_rte_info
), GFP_ATOMIC
);
606 memset(rte
, 0, sizeof(struct iosapic_rte_info
));
608 rte
->flags
|= RTE_PREALLOCATED
;
613 static void iosapic_free_rte (struct iosapic_rte_info
*rte
)
615 if (rte
->flags
& RTE_PREALLOCATED
)
616 list_add_tail(&rte
->rte_list
, &free_rte_list
);
621 static inline int vector_is_shared (int vector
)
623 return (iosapic_intr_info
[vector
].count
> 1);
627 register_intr (unsigned int gsi
, int vector
, unsigned char delivery
,
628 unsigned long polarity
, unsigned long trigger
)
631 struct hw_interrupt_type
*irq_type
;
634 unsigned long gsi_base
;
635 void __iomem
*iosapic_address
;
636 struct iosapic_rte_info
*rte
;
638 index
= find_iosapic(gsi
);
640 printk(KERN_WARNING
"%s: No IOSAPIC for GSI %u\n",
645 iosapic_address
= iosapic_lists
[index
].addr
;
646 gsi_base
= iosapic_lists
[index
].gsi_base
;
648 rte
= gsi_vector_to_rte(gsi
, vector
);
650 rte
= iosapic_alloc_rte();
652 printk(KERN_WARNING
"%s: cannot allocate memory\n",
657 rte_index
= gsi
- gsi_base
;
658 rte
->rte_index
= rte_index
;
659 rte
->addr
= iosapic_address
;
660 rte
->gsi_base
= gsi_base
;
662 list_add_tail(&rte
->rte_list
, &iosapic_intr_info
[vector
].rtes
);
663 iosapic_intr_info
[vector
].count
++;
664 iosapic_lists
[index
].rtes_inuse
++;
666 else if (vector_is_shared(vector
)) {
667 struct iosapic_intr_info
*info
= &iosapic_intr_info
[vector
];
668 if (info
->trigger
!= trigger
|| info
->polarity
!= polarity
) {
670 "%s: cannot override the interrupt\n",
676 iosapic_intr_info
[vector
].polarity
= polarity
;
677 iosapic_intr_info
[vector
].dmode
= delivery
;
678 iosapic_intr_info
[vector
].trigger
= trigger
;
680 if (trigger
== IOSAPIC_EDGE
)
681 irq_type
= &irq_type_iosapic_edge
;
683 irq_type
= &irq_type_iosapic_level
;
685 idesc
= irq_desc
+ vector
;
686 if (idesc
->chip
!= irq_type
) {
687 if (idesc
->chip
!= &no_irq_type
)
689 "%s: changing vector %d from %s to %s\n",
690 __FUNCTION__
, vector
,
691 idesc
->chip
->name
, irq_type
->name
);
692 idesc
->chip
= irq_type
;
698 get_target_cpu (unsigned int gsi
, int vector
)
702 extern int cpe_vector
;
705 * In case of vector shared by multiple RTEs, all RTEs that
706 * share the vector need to use the same destination CPU.
708 if (!list_empty(&iosapic_intr_info
[vector
].rtes
))
709 return iosapic_intr_info
[vector
].dest
;
712 * If the platform supports redirection via XTP, let it
713 * distribute interrupts.
715 if (smp_int_redirect
& SMP_IRQ_REDIRECTION
)
716 return cpu_physical_id(smp_processor_id());
719 * Some interrupts (ACPI SCI, for instance) are registered
720 * before the BSP is marked as online.
722 if (!cpu_online(smp_processor_id()))
723 return cpu_physical_id(smp_processor_id());
726 if (cpe_vector
> 0 && vector
== IA64_CPEP_VECTOR
)
727 return get_cpei_target_cpu();
732 int num_cpus
, cpu_index
, iosapic_index
, numa_cpu
, i
= 0;
735 iosapic_index
= find_iosapic(gsi
);
736 if (iosapic_index
< 0 ||
737 iosapic_lists
[iosapic_index
].node
== MAX_NUMNODES
)
738 goto skip_numa_setup
;
740 cpu_mask
= node_to_cpumask(iosapic_lists
[iosapic_index
].node
);
742 for_each_cpu_mask(numa_cpu
, cpu_mask
) {
743 if (!cpu_online(numa_cpu
))
744 cpu_clear(numa_cpu
, cpu_mask
);
747 num_cpus
= cpus_weight(cpu_mask
);
750 goto skip_numa_setup
;
752 /* Use vector assignment to distribute across cpus in node */
753 cpu_index
= vector
% num_cpus
;
755 for (numa_cpu
= first_cpu(cpu_mask
) ; i
< cpu_index
; i
++)
756 numa_cpu
= next_cpu(numa_cpu
, cpu_mask
);
758 if (numa_cpu
!= NR_CPUS
)
759 return cpu_physical_id(numa_cpu
);
764 * Otherwise, round-robin interrupt vectors across all the
765 * processors. (It'd be nice if we could be smarter in the
769 if (++cpu
>= NR_CPUS
)
771 } while (!cpu_online(cpu
));
773 return cpu_physical_id(cpu
);
774 #else /* CONFIG_SMP */
775 return cpu_physical_id(smp_processor_id());
780 * ACPI can describe IOSAPIC interrupts via static tables and namespace
781 * methods. This provides an interface to register those interrupts and
782 * program the IOSAPIC RTE.
785 iosapic_register_intr (unsigned int gsi
,
786 unsigned long polarity
, unsigned long trigger
)
788 int vector
, mask
= 1, err
;
791 struct iosapic_rte_info
*rte
;
795 * If this GSI has already been registered (i.e., it's a
796 * shared interrupt, or we lost a race to register it),
797 * don't touch the RTE.
799 spin_lock_irqsave(&iosapic_lock
, flags
);
801 vector
= gsi_to_vector(gsi
);
803 rte
= gsi_vector_to_rte(gsi
, vector
);
805 spin_unlock_irqrestore(&iosapic_lock
, flags
);
809 spin_unlock_irqrestore(&iosapic_lock
, flags
);
811 /* If vector is running out, we try to find a sharable vector */
812 vector
= assign_irq_vector(AUTO_ASSIGN
);
814 vector
= iosapic_find_sharable_vector(trigger
, polarity
);
819 spin_lock_irqsave(&irq_desc
[vector
].lock
, flags
);
820 spin_lock(&iosapic_lock
);
822 if (gsi_to_vector(gsi
) > 0) {
823 if (list_empty(&iosapic_intr_info
[vector
].rtes
))
824 free_irq_vector(vector
);
825 spin_unlock(&iosapic_lock
);
826 spin_unlock_irqrestore(&irq_desc
[vector
].lock
,
831 dest
= get_target_cpu(gsi
, vector
);
832 err
= register_intr(gsi
, vector
, IOSAPIC_LOWEST_PRIORITY
,
835 spin_unlock(&iosapic_lock
);
836 spin_unlock_irqrestore(&irq_desc
[vector
].lock
,
842 * If the vector is shared and already unmasked for
843 * other interrupt sources, don't mask it.
845 low32
= iosapic_intr_info
[vector
].low32
;
846 if (vector_is_shared(vector
) && !(low32
& IOSAPIC_MASK
))
848 set_rte(gsi
, vector
, dest
, mask
);
850 spin_unlock(&iosapic_lock
);
851 spin_unlock_irqrestore(&irq_desc
[vector
].lock
, flags
);
853 printk(KERN_INFO
"GSI %u (%s, %s) -> CPU %d (0x%04x) vector %d\n",
854 gsi
, (trigger
== IOSAPIC_EDGE
? "edge" : "level"),
855 (polarity
== IOSAPIC_POL_HIGH
? "high" : "low"),
856 cpu_logical_id(dest
), dest
, vector
);
862 iosapic_unregister_intr (unsigned int gsi
)
865 int irq
, vector
, index
;
868 unsigned long trigger
, polarity
;
870 struct iosapic_rte_info
*rte
;
873 * If the irq associated with the gsi is not found,
874 * iosapic_unregister_intr() is unbalanced. We need to check
875 * this again after getting locks.
877 irq
= gsi_to_irq(gsi
);
879 printk(KERN_ERR
"iosapic_unregister_intr(%u) unbalanced\n",
884 vector
= irq_to_vector(irq
);
886 idesc
= irq_desc
+ irq
;
887 spin_lock_irqsave(&idesc
->lock
, flags
);
888 spin_lock(&iosapic_lock
);
890 if ((rte
= gsi_vector_to_rte(gsi
, vector
)) == NULL
) {
892 "iosapic_unregister_intr(%u) unbalanced\n",
898 if (--rte
->refcnt
> 0)
901 /* Mask the interrupt */
902 low32
= iosapic_intr_info
[vector
].low32
| IOSAPIC_MASK
;
903 iosapic_write(rte
->addr
, IOSAPIC_RTE_LOW(rte
->rte_index
),
906 /* Remove the rte entry from the list */
907 list_del(&rte
->rte_list
);
908 iosapic_intr_info
[vector
].count
--;
909 iosapic_free_rte(rte
);
910 index
= find_iosapic(gsi
);
911 iosapic_lists
[index
].rtes_inuse
--;
912 WARN_ON(iosapic_lists
[index
].rtes_inuse
< 0);
914 trigger
= iosapic_intr_info
[vector
].trigger
;
915 polarity
= iosapic_intr_info
[vector
].polarity
;
916 dest
= iosapic_intr_info
[vector
].dest
;
918 "GSI %u (%s, %s) -> CPU %d (0x%04x)"
919 " vector %d unregistered\n",
920 gsi
, (trigger
== IOSAPIC_EDGE
? "edge" : "level"),
921 (polarity
== IOSAPIC_POL_HIGH
? "high" : "low"),
922 cpu_logical_id(dest
), dest
, vector
);
924 if (list_empty(&iosapic_intr_info
[vector
].rtes
)) {
926 BUG_ON(iosapic_intr_info
[vector
].count
);
928 /* Clear the interrupt controller descriptor */
929 idesc
->chip
= &no_irq_type
;
933 cpus_setall(idesc
->affinity
);
936 /* Clear the interrupt information */
937 memset(&iosapic_intr_info
[vector
], 0,
938 sizeof(struct iosapic_intr_info
));
939 iosapic_intr_info
[vector
].low32
|= IOSAPIC_MASK
;
940 INIT_LIST_HEAD(&iosapic_intr_info
[vector
].rtes
);
944 "interrupt handlers still exist on"
949 /* Free the interrupt vector */
950 free_irq_vector(vector
);
954 spin_unlock(&iosapic_lock
);
955 spin_unlock_irqrestore(&idesc
->lock
, flags
);
959 * ACPI calls this when it finds an entry for a platform interrupt.
962 iosapic_register_platform_intr (u32 int_type
, unsigned int gsi
,
963 int iosapic_vector
, u16 eid
, u16 id
,
964 unsigned long polarity
, unsigned long trigger
)
966 static const char * const name
[] = {"unknown", "PMI", "INIT", "CPEI"};
967 unsigned char delivery
;
968 int vector
, mask
= 0;
969 unsigned int dest
= ((id
<< 8) | eid
) & 0xffff;
972 case ACPI_INTERRUPT_PMI
:
973 vector
= iosapic_vector
;
975 * since PMI vector is alloc'd by FW(ACPI) not by kernel,
976 * we need to make sure the vector is available
978 iosapic_reassign_vector(vector
);
979 delivery
= IOSAPIC_PMI
;
981 case ACPI_INTERRUPT_INIT
:
982 vector
= assign_irq_vector(AUTO_ASSIGN
);
984 panic("%s: out of interrupt vectors!\n", __FUNCTION__
);
985 delivery
= IOSAPIC_INIT
;
987 case ACPI_INTERRUPT_CPEI
:
988 vector
= IA64_CPE_VECTOR
;
989 delivery
= IOSAPIC_LOWEST_PRIORITY
;
993 printk(KERN_ERR
"%s: invalid int type 0x%x\n", __FUNCTION__
,
998 register_intr(gsi
, vector
, delivery
, polarity
, trigger
);
1001 "PLATFORM int %s (0x%x): GSI %u (%s, %s) -> CPU %d (0x%04x)"
1003 int_type
< ARRAY_SIZE(name
) ? name
[int_type
] : "unknown",
1004 int_type
, gsi
, (trigger
== IOSAPIC_EDGE
? "edge" : "level"),
1005 (polarity
== IOSAPIC_POL_HIGH
? "high" : "low"),
1006 cpu_logical_id(dest
), dest
, vector
);
1008 set_rte(gsi
, vector
, dest
, mask
);
1013 * ACPI calls this when it finds an entry for a legacy ISA IRQ override.
1016 iosapic_override_isa_irq (unsigned int isa_irq
, unsigned int gsi
,
1017 unsigned long polarity
,
1018 unsigned long trigger
)
1021 unsigned int dest
= cpu_physical_id(smp_processor_id());
1023 vector
= isa_irq_to_vector(isa_irq
);
1025 register_intr(gsi
, vector
, IOSAPIC_LOWEST_PRIORITY
, polarity
, trigger
);
1027 DBG("ISA: IRQ %u -> GSI %u (%s,%s) -> CPU %d (0x%04x) vector %d\n",
1028 isa_irq
, gsi
, trigger
== IOSAPIC_EDGE
? "edge" : "level",
1029 polarity
== IOSAPIC_POL_HIGH
? "high" : "low",
1030 cpu_logical_id(dest
), dest
, vector
);
1032 set_rte(gsi
, vector
, dest
, 1);
1036 iosapic_system_init (int system_pcat_compat
)
1040 for (vector
= 0; vector
< IA64_NUM_VECTORS
; ++vector
) {
1041 iosapic_intr_info
[vector
].low32
= IOSAPIC_MASK
;
1042 /* mark as unused */
1043 INIT_LIST_HEAD(&iosapic_intr_info
[vector
].rtes
);
1046 pcat_compat
= system_pcat_compat
;
1049 * Disable the compatibility mode interrupts (8259 style),
1050 * needs IN/OUT support enabled.
1053 "%s: Disabling PC-AT compatible 8259 interrupts\n",
1061 iosapic_alloc (void)
1065 for (index
= 0; index
< NR_IOSAPICS
; index
++)
1066 if (!iosapic_lists
[index
].addr
)
1069 printk(KERN_WARNING
"%s: failed to allocate iosapic\n", __FUNCTION__
);
1074 iosapic_free (int index
)
1076 memset(&iosapic_lists
[index
], 0, sizeof(iosapic_lists
[0]));
1080 iosapic_check_gsi_range (unsigned int gsi_base
, unsigned int ver
)
1083 unsigned int gsi_end
, base
, end
;
1085 /* check gsi range */
1086 gsi_end
= gsi_base
+ ((ver
>> 16) & 0xff);
1087 for (index
= 0; index
< NR_IOSAPICS
; index
++) {
1088 if (!iosapic_lists
[index
].addr
)
1091 base
= iosapic_lists
[index
].gsi_base
;
1092 end
= base
+ iosapic_lists
[index
].num_rte
- 1;
1094 if (gsi_end
< base
|| end
< gsi_base
)
1103 iosapic_init (unsigned long phys_addr
, unsigned int gsi_base
)
1105 int num_rte
, err
, index
;
1106 unsigned int isa_irq
, ver
;
1108 unsigned long flags
;
1110 spin_lock_irqsave(&iosapic_lock
, flags
);
1112 addr
= ioremap(phys_addr
, 0);
1113 ver
= iosapic_version(addr
);
1115 if ((err
= iosapic_check_gsi_range(gsi_base
, ver
))) {
1117 spin_unlock_irqrestore(&iosapic_lock
, flags
);
1122 * The MAX_REDIR register holds the highest input pin
1123 * number (starting from 0).
1124 * We add 1 so that we can use it for number of pins (= RTEs)
1126 num_rte
= ((ver
>> 16) & 0xff) + 1;
1128 index
= iosapic_alloc();
1129 iosapic_lists
[index
].addr
= addr
;
1130 iosapic_lists
[index
].gsi_base
= gsi_base
;
1131 iosapic_lists
[index
].num_rte
= num_rte
;
1133 iosapic_lists
[index
].node
= MAX_NUMNODES
;
1136 spin_unlock_irqrestore(&iosapic_lock
, flags
);
1138 if ((gsi_base
== 0) && pcat_compat
) {
1140 * Map the legacy ISA devices into the IOSAPIC data. Some of
1141 * these may get reprogrammed later on with data from the ACPI
1142 * Interrupt Source Override table.
1144 for (isa_irq
= 0; isa_irq
< 16; ++isa_irq
)
1145 iosapic_override_isa_irq(isa_irq
, isa_irq
,
1152 #ifdef CONFIG_HOTPLUG
1154 iosapic_remove (unsigned int gsi_base
)
1157 unsigned long flags
;
1159 spin_lock_irqsave(&iosapic_lock
, flags
);
1161 index
= find_iosapic(gsi_base
);
1163 printk(KERN_WARNING
"%s: No IOSAPIC for GSI base %u\n",
1164 __FUNCTION__
, gsi_base
);
1168 if (iosapic_lists
[index
].rtes_inuse
) {
1171 "%s: IOSAPIC for GSI base %u is busy\n",
1172 __FUNCTION__
, gsi_base
);
1176 iounmap(iosapic_lists
[index
].addr
);
1177 iosapic_free(index
);
1180 spin_unlock_irqrestore(&iosapic_lock
, flags
);
1183 #endif /* CONFIG_HOTPLUG */
1187 map_iosapic_to_node(unsigned int gsi_base
, int node
)
1191 index
= find_iosapic(gsi_base
);
1193 printk(KERN_WARNING
"%s: No IOSAPIC for GSI %u\n",
1194 __FUNCTION__
, gsi_base
);
1197 iosapic_lists
[index
].node
= node
;
1202 static int __init
iosapic_enable_kmalloc (void)
1204 iosapic_kmalloc_ok
= 1;
1207 core_initcall (iosapic_enable_kmalloc
);