diff options
author | Kumar Gala <galak@freescale.com> | 2005-09-21 17:52:55 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-22 07:03:34 -0400 |
commit | b671ad2befe37131af380183760862d5cbad858d (patch) | |
tree | c6c27d4adf742f360e5056f435601254f050781d /include/asm-ppc/irq.h | |
parent | fa2ac7a25f1b11c4a695c9288339d0476ecfaf38 (diff) |
[PATCH] powerpc: merged hw_irq.h
Merged hw_irq.h between ppc32 & ppc64. Added support to use the Book-E
wrtee[i] instructions that allow modifying MSR[EE] atomically.
Additionally, added get_irq_desc() macros to ppc32 to allow mask_irq(),
unmask_irq(), and ack_irq() to be common between ppc32 & ppc64.
Note: because 64-bit Book-E implementations only have a 32-bit MSR the
macro's for Book-E need to come before the PPC64 macro's to ensure the
right thing happends for 64-bit Book-E processors.
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc/irq.h')
-rw-r--r-- | include/asm-ppc/irq.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-ppc/irq.h b/include/asm-ppc/irq.h index bd9674807f05..137ea0cf34d3 100644 --- a/include/asm-ppc/irq.h +++ b/include/asm-ppc/irq.h | |||
@@ -24,6 +24,12 @@ | |||
24 | */ | 24 | */ |
25 | #define ARCH_HAS_IRQ_PER_CPU | 25 | #define ARCH_HAS_IRQ_PER_CPU |
26 | 26 | ||
27 | #define get_irq_desc(irq) (&irq_desc[(irq)]) | ||
28 | |||
29 | /* Define a way to iterate across irqs. */ | ||
30 | #define for_each_irq(i) \ | ||
31 | for ((i) = 0; (i) < NR_IRQS; ++(i)) | ||
32 | |||
27 | #if defined(CONFIG_40x) | 33 | #if defined(CONFIG_40x) |
28 | #include <asm/ibm4xx.h> | 34 | #include <asm/ibm4xx.h> |
29 | 35 | ||