IRQ handler rewrite by Gabor Juhos, uses C no longer assembly
[openwrt/staging/chunkeey.git] / target / linux / adm5120-2.6 / files / include / asm-mips / mach-adm5120 / adm5120_intc.h
1 /*
2 * ADM5120 interrupt controller definitions
3 *
4 * This header file defines the hardware registers of the ADM5120 SoC
5 * built-in interrupt controller.
6 *
7 * Copyright (C) 2007 OpenWrt.org
8 * Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the
22 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA.
24 */
25 #ifndef _ADM5120_INTC_H_
26 #define _ADM5120_INTC_H_
27
28 /*
29 * INTC register offsets
30 */
31 #define INTC_REG_IRQ_STATUS 0x00 /* Interrupt status after masking */
32 #define INTC_REG_IRQ_RAW_STATUS 0x04 /* Interrupt status before masking */
33 #define INTC_REG_IRQ_ENABLE 0x08 /* Used to enable the interrupt sources */
34 #define INTC_REG_IRQ_ENABLE_CLEAR 0x0C /* Used to disable the interrupt sources */
35 #define INTC_REG_IRQ_DISABLE INTC_REG_IRQ_ENABLE_CLEAR
36 #define INTC_REG_INT_MODE 0x14 /* The interrupt mode of the sources */
37 #define INTC_REG_FIQ_STATUS 0x18 /* FIQ status */
38 #define INTC_REG_IRQ_TEST_SOURCE 0x1C
39 #define INTC_REG_IRQ_SOURCE_SELECT 0x20
40 #define INTC_REG_INT_LEVEL 0x24
41
42 /*
43 * INTC IRQ numbers
44 */
45 #define INTC_IRQ_TIMER 0 /* built in timer */
46 #define INTC_IRQ_UART0 1 /* built-in UART0 */
47 #define INTC_IRQ_UART1 2 /* built-in UART1 */
48 #define INTC_IRQ_USBC 3 /* USB Host Controller */
49 #define INTC_IRQ_GPIO2 4 /* GPIO line 2 */
50 #define INTC_IRQ_GPIO4 5 /* GPIO line 4 */
51 #define INTC_IRQ_PCI0 6 /* PCI slot 2 */
52 #define INTC_IRQ_PCI1 7 /* PCI slot 3 */
53 #define INTC_IRQ_PCI2 8 /* PCI slot 4 */
54 #define INTC_IRQ_SWITCH 9 /* built-in ethernet switch */
55 #define INTC_IRQ_LAST INTC_IRQ_SWITCH
56 #define INTC_IRQ_COUNT 10
57
58 /*
59 * INTC register bits
60 */
61 #define INTC_INT_TIMER ( 1 << INTC_IRQ_TIMER )
62 #define INTC_INT_UART0 ( 1 << INTC_IRQ_UART0 )
63 #define INTC_INT_UART1 ( 1 << INTC_IRQ_UART1 )
64 #define INTC_INT_USBC ( 1 << INTC_IRQ_USBC )
65 #define INTC_INT_INTX0 ( 1 << INTC_IRQ_INTX0 )
66 #define INTC_INT_INTX1 ( 1 << INTC_IRQ_INTX1 )
67 #define INTC_INT_PCI0 ( 1 << INTC_IRQ_PCI0 )
68 #define INTC_INT_PCI1 ( 1 << INTC_IRQ_PCI1 )
69 #define INTC_INT_PCI2 ( 1 << INTC_IRQ_PCI2 )
70 #define INTC_INT_SWITCH ( 1 << INTC_IRQ_SWITCH )
71 #define INTC_INT_ALL (( 1 << INTC_IRQ_COUNT)-1)
72
73 #endif /* _ADM5120_INTC_H_ */