diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2009-12-27 10:01:25 -0500 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-03-01 18:40:51 -0500 |
commit | 0dc726bb264ca5ecfdfab94a6937e0e9b9b26f64 (patch) | |
tree | 4c7341d035de7891bfe43d5dc6edbe1b482d5a28 /arch/arm/include/asm | |
parent | 19851c58e680f71d087b79b53edbf814193e1d33 (diff) |
[ARM] pxa: move board board IRQ definitions out of irqs.h
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/hardware/it8152.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/include/asm/hardware/it8152.h b/arch/arm/include/asm/hardware/it8152.h index 74b5fff7f575..6700c7fc7ebd 100644 --- a/arch/arm/include/asm/hardware/it8152.h +++ b/arch/arm/include/asm/hardware/it8152.h | |||
@@ -75,6 +75,18 @@ extern unsigned long it8152_base_address; | |||
75 | IT8152_PD_IRQ(1) USB (USBR) | 75 | IT8152_PD_IRQ(1) USB (USBR) |
76 | IT8152_PD_IRQ(0) Audio controller (ACR) | 76 | IT8152_PD_IRQ(0) Audio controller (ACR) |
77 | */ | 77 | */ |
78 | #define IT8152_IRQ(x) (IRQ_BOARD_END + (x)) | ||
79 | |||
80 | /* IRQ-sources in 3 groups - local devices, LPC (serial), and external PCI */ | ||
81 | #define IT8152_LD_IRQ_COUNT 9 | ||
82 | #define IT8152_LP_IRQ_COUNT 16 | ||
83 | #define IT8152_PD_IRQ_COUNT 15 | ||
84 | |||
85 | /* Priorities: */ | ||
86 | #define IT8152_PD_IRQ(i) IT8152_IRQ(i) | ||
87 | #define IT8152_LP_IRQ(i) (IT8152_IRQ(i) + IT8152_PD_IRQ_COUNT) | ||
88 | #define IT8152_LD_IRQ(i) (IT8152_IRQ(i) + IT8152_PD_IRQ_COUNT + IT8152_LP_IRQ_COUNT) | ||
89 | |||
78 | /* frequently used interrupts */ | 90 | /* frequently used interrupts */ |
79 | #define IT8152_PCISERR IT8152_PD_IRQ(14) | 91 | #define IT8152_PCISERR IT8152_PD_IRQ(14) |
80 | #define IT8152_H2PTADR IT8152_PD_IRQ(13) | 92 | #define IT8152_H2PTADR IT8152_PD_IRQ(13) |