diff options
author | Kumar Gala <galak@freescale.com> | 2005-09-21 16:52:55 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-22 21:03:34 +1000 |
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 bd9674807f0..137ea0cf34d 100644 --- a/include/asm-ppc/irq.h +++ b/include/asm-ppc/irq.h @@ -24,6 +24,12 @@ */ #define ARCH_HAS_IRQ_PER_CPU +#define get_irq_desc(irq) (&irq_desc[(irq)]) + +/* Define a way to iterate across irqs. */ +#define for_each_irq(i) \ + for ((i) = 0; (i) < NR_IRQS; ++(i)) + #if defined(CONFIG_40x) #include <asm/ibm4xx.h> |