2 * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
3 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
9 #ifndef __ASM_MACH_ATH79_IRQ_H
10 #define __ASM_MACH_ATH79_IRQ_H
12 #define MIPS_CPU_IRQ_BASE 0
15 #define ATH79_CPU_IRQ(_x) (MIPS_CPU_IRQ_BASE + (_x))
17 #define ATH79_MISC_IRQ_BASE 8
18 #define ATH79_MISC_IRQ_COUNT 32
19 #define ATH79_MISC_IRQ(_x) (ATH79_MISC_IRQ_BASE + (_x))
21 #define ATH79_PCI_IRQ_BASE (ATH79_MISC_IRQ_BASE + ATH79_MISC_IRQ_COUNT)
22 #define ATH79_PCI_IRQ_COUNT 6
23 #define ATH79_PCI_IRQ(_x) (ATH79_PCI_IRQ_BASE + (_x))
25 #define ATH79_IP2_IRQ_BASE (ATH79_PCI_IRQ_BASE + ATH79_PCI_IRQ_COUNT)
26 #define ATH79_IP2_IRQ_COUNT 2
27 #define ATH79_IP2_IRQ(_x) (ATH79_IP2_IRQ_BASE + (_x))
29 #define ATH79_IP3_IRQ_BASE (ATH79_IP2_IRQ_BASE + ATH79_IP2_IRQ_COUNT)
30 #define ATH79_IP3_IRQ_COUNT 3
31 #define ATH79_IP3_IRQ(_x) (ATH79_IP3_IRQ_BASE + (_x))
35 #endif /* __ASM_MACH_ATH79_IRQ_H */