Gabor Juhos | d4a67d9 | 2011-01-04 21:28:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org> |
| 3 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
| 4 | * |
| 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. |
| 8 | */ |
| 9 | #ifndef __ASM_MACH_ATH79_IRQ_H |
| 10 | #define __ASM_MACH_ATH79_IRQ_H |
| 11 | |
| 12 | #define MIPS_CPU_IRQ_BASE 0 |
Gabor Juhos | 5333033 | 2013-02-15 18:53:47 +0000 | [diff] [blame] | 13 | #define NR_IRQS 51 |
Gabor Juhos | d4a67d9 | 2011-01-04 21:28:14 +0100 | [diff] [blame] | 14 | |
Gabor Juhos | 7e69c10 | 2013-02-07 19:32:23 +0000 | [diff] [blame] | 15 | #define ATH79_CPU_IRQ(_x) (MIPS_CPU_IRQ_BASE + (_x)) |
| 16 | |
Gabor Juhos | d4a67d9 | 2011-01-04 21:28:14 +0100 | [diff] [blame] | 17 | #define ATH79_MISC_IRQ_BASE 8 |
Gabor Juhos | 2f8501b | 2011-06-05 23:38:44 +0200 | [diff] [blame] | 18 | #define ATH79_MISC_IRQ_COUNT 32 |
Gabor Juhos | 9c099c4 | 2013-01-29 16:13:17 +0000 | [diff] [blame] | 19 | #define ATH79_MISC_IRQ(_x) (ATH79_MISC_IRQ_BASE + (_x)) |
Gabor Juhos | d4a67d9 | 2011-01-04 21:28:14 +0100 | [diff] [blame] | 20 | |
Gabor Juhos | 93ef85b | 2012-03-14 10:36:06 +0100 | [diff] [blame] | 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)) |
| 24 | |
Gabor Juhos | fce5cc6 | 2012-03-14 10:45:25 +0100 | [diff] [blame] | 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)) |
| 28 | |
Gabor Juhos | 5333033 | 2013-02-15 18:53:47 +0000 | [diff] [blame] | 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)) |
| 32 | |
Gabor Juhos | d4a67d9 | 2011-01-04 21:28:14 +0100 | [diff] [blame] | 33 | #include_next <irq.h> |
| 34 | |
| 35 | #endif /* __ASM_MACH_ATH79_IRQ_H */ |