]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/arm/mach-imx/irq.c
[ARM] Convert asm/io.h to linux/io.h
[thirdparty/linux.git] / arch / arm / mach-imx / irq.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/mach-imx/irq.c
3 *
4 * Copyright (C) 1999 ARM Limited
5 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * 03/03/2004 Sascha Hauer <sascha@saschahauer.de>
22 * Copied from the motorola bsp package and added gpio demux
23 * interrupt handler
24 */
25
26#include <linux/init.h>
27#include <linux/list.h>
28#include <linux/timer.h>
fced80c7 29#include <linux/io.h>
1da177e4 30
a09e64fb 31#include <mach/hardware.h>
1da177e4 32#include <asm/irq.h>
1da177e4
LT
33
34#include <asm/mach/irq.h>
35
36/*
37 *
38 * We simply use the ENABLE DISABLE registers inside of the IMX
39 * to turn on/off specific interrupts. FIXME- We should
40 * also add support for the accelerated interrupt controller
41 * by putting offets to irq jump code in the appropriate
42 * places.
43 *
44 */
45
1c016b2c
PP
46#define INTCNTL_OFF 0x00
47#define NIMASK_OFF 0x04
48#define INTENNUM_OFF 0x08
49#define INTDISNUM_OFF 0x0C
50#define INTENABLEH_OFF 0x10
51#define INTENABLEL_OFF 0x14
52#define INTTYPEH_OFF 0x18
53#define INTTYPEL_OFF 0x1C
54#define NIPRIORITY_OFF(x) (0x20+4*(7-(x)))
55#define NIVECSR_OFF 0x40
56#define FIVECSR_OFF 0x44
57#define INTSRCH_OFF 0x48
58#define INTSRCL_OFF 0x4C
59#define INTFRCH_OFF 0x50
60#define INTFRCL_OFF 0x54
61#define NIPNDH_OFF 0x58
62#define NIPNDL_OFF 0x5C
63#define FIPNDH_OFF 0x60
64#define FIPNDL_OFF 0x64
1da177e4
LT
65
66#define VA_AITC_BASE IO_ADDRESS(IMX_AITC_BASE)
1c016b2c
PP
67#define IMX_AITC_INTCNTL (VA_AITC_BASE + INTCNTL_OFF)
68#define IMX_AITC_NIMASK (VA_AITC_BASE + NIMASK_OFF)
1da177e4 69#define IMX_AITC_INTENNUM (VA_AITC_BASE + INTENNUM_OFF)
1c016b2c
PP
70#define IMX_AITC_INTDISNUM (VA_AITC_BASE + INTDISNUM_OFF)
71#define IMX_AITC_INTENABLEH (VA_AITC_BASE + INTENABLEH_OFF)
72#define IMX_AITC_INTENABLEL (VA_AITC_BASE + INTENABLEL_OFF)
73#define IMX_AITC_INTTYPEH (VA_AITC_BASE + INTTYPEH_OFF)
74#define IMX_AITC_INTTYPEL (VA_AITC_BASE + INTTYPEL_OFF)
75#define IMX_AITC_NIPRIORITY(x) (VA_AITC_BASE + NIPRIORITY_OFF(x))
76#define IMX_AITC_NIVECSR (VA_AITC_BASE + NIVECSR_OFF)
77#define IMX_AITC_FIVECSR (VA_AITC_BASE + FIVECSR_OFF)
78#define IMX_AITC_INTSRCH (VA_AITC_BASE + INTSRCH_OFF)
79#define IMX_AITC_INTSRCL (VA_AITC_BASE + INTSRCL_OFF)
80#define IMX_AITC_INTFRCH (VA_AITC_BASE + INTFRCH_OFF)
81#define IMX_AITC_INTFRCL (VA_AITC_BASE + INTFRCL_OFF)
82#define IMX_AITC_NIPNDH (VA_AITC_BASE + NIPNDH_OFF)
83#define IMX_AITC_NIPNDL (VA_AITC_BASE + NIPNDL_OFF)
84#define IMX_AITC_FIPNDH (VA_AITC_BASE + FIPNDH_OFF)
85#define IMX_AITC_FIPNDL (VA_AITC_BASE + FIPNDL_OFF)
1da177e4
LT
86
87#if 0
88#define DEBUG_IRQ(fmt...) printk(fmt)
89#else
90#define DEBUG_IRQ(fmt...) do { } while (0)
91#endif
92
93static void
94imx_mask_irq(unsigned int irq)
95{
96 __raw_writel(irq, IMX_AITC_INTDISNUM);
97}
98
99static void
100imx_unmask_irq(unsigned int irq)
101{
102 __raw_writel(irq, IMX_AITC_INTENNUM);
103}
104
105static int
106imx_gpio_irq_type(unsigned int _irq, unsigned int type)
107{
108 unsigned int irq_type = 0, irq, reg, bit;
109
110 irq = _irq - IRQ_GPIOA(0);
111 reg = irq >> 5;
112 bit = 1 << (irq % 32);
113
6cab4860 114 if (type == IRQ_TYPE_PROBE) {
1da177e4
LT
115 /* Don't mess with enabled GPIOs using preconfigured edges or
116 GPIOs set to alternate function during probe */
117 /* TODO: support probe */
118// if ((GPIO_IRQ_rising_edge[idx] | GPIO_IRQ_falling_edge[idx]) &
119// GPIO_bit(gpio))
120// return 0;
121// if (GAFR(gpio) & (0x3 << (((gpio) & 0xf)*2)))
122// return 0;
6cab4860 123// type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
1da177e4
LT
124 }
125
126 GIUS(reg) |= bit;
127 DDIR(reg) &= ~(bit);
128
129 DEBUG_IRQ("setting type of irq %d to ", _irq);
130
6cab4860 131 if (type & IRQ_TYPE_EDGE_RISING) {
1da177e4
LT
132 DEBUG_IRQ("rising edges\n");
133 irq_type = 0x0;
134 }
6cab4860 135 if (type & IRQ_TYPE_EDGE_FALLING) {
1da177e4
LT
136 DEBUG_IRQ("falling edges\n");
137 irq_type = 0x1;
138 }
6cab4860 139 if (type & IRQ_TYPE_LEVEL_LOW) {
1da177e4
LT
140 DEBUG_IRQ("low level\n");
141 irq_type = 0x3;
142 }
6cab4860 143 if (type & IRQ_TYPE_LEVEL_HIGH) {
1da177e4
LT
144 DEBUG_IRQ("high level\n");
145 irq_type = 0x2;
146 }
147
148 if (irq % 32 < 16) {
149 ICR1(reg) = (ICR1(reg) & ~(0x3 << ((irq % 16) * 2))) |
150 (irq_type << ((irq % 16) * 2));
151 } else {
152 ICR2(reg) = (ICR2(reg) & ~(0x3 << ((irq % 16) * 2))) |
153 (irq_type << ((irq % 16) * 2));
154 }
155
156 return 0;
157
158}
159
160static void
161imx_gpio_ack_irq(unsigned int irq)
162{
8e86f427 163 DEBUG_IRQ("%s: irq %d\n", __func__, irq);
e2f04e18 164 ISR(IRQ_TO_REG(irq)) = 1 << ((irq - IRQ_GPIOA(0)) % 32);
1da177e4
LT
165}
166
167static void
168imx_gpio_mask_irq(unsigned int irq)
169{
8e86f427 170 DEBUG_IRQ("%s: irq %d\n", __func__, irq);
1da177e4
LT
171 IMR(IRQ_TO_REG(irq)) &= ~( 1 << ((irq - IRQ_GPIOA(0)) % 32));
172}
173
174static void
175imx_gpio_unmask_irq(unsigned int irq)
176{
8e86f427 177 DEBUG_IRQ("%s: irq %d\n", __func__, irq);
1da177e4
LT
178 IMR(IRQ_TO_REG(irq)) |= 1 << ((irq - IRQ_GPIOA(0)) % 32);
179}
180
181static void
182imx_gpio_handler(unsigned int mask, unsigned int irq,
10dd5ce2 183 struct irq_desc *desc)
1da177e4
LT
184{
185 desc = irq_desc + irq;
186 while (mask) {
187 if (mask & 1) {
188 DEBUG_IRQ("handling irq %d\n", irq);
0cd61b68 189 desc_handle_irq(irq, desc);
1da177e4
LT
190 }
191 irq++;
192 desc++;
193 mask >>= 1;
194 }
195}
196
197static void
10dd5ce2 198imx_gpioa_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
1da177e4
LT
199{
200 unsigned int mask, irq;
201
202 mask = ISR(0);
203 irq = IRQ_GPIOA(0);
0cd61b68 204 imx_gpio_handler(mask, irq, desc);
1da177e4
LT
205}
206
207static void
10dd5ce2 208imx_gpiob_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
1da177e4
LT
209{
210 unsigned int mask, irq;
211
212 mask = ISR(1);
213 irq = IRQ_GPIOB(0);
0cd61b68 214 imx_gpio_handler(mask, irq, desc);
1da177e4
LT
215}
216
217static void
10dd5ce2 218imx_gpioc_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
1da177e4
LT
219{
220 unsigned int mask, irq;
221
222 mask = ISR(2);
223 irq = IRQ_GPIOC(0);
0cd61b68 224 imx_gpio_handler(mask, irq, desc);
1da177e4
LT
225}
226
227static void
10dd5ce2 228imx_gpiod_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
1da177e4
LT
229{
230 unsigned int mask, irq;
231
232 mask = ISR(3);
233 irq = IRQ_GPIOD(0);
0cd61b68 234 imx_gpio_handler(mask, irq, desc);
1da177e4
LT
235}
236
38c677cb
DB
237static struct irq_chip imx_internal_chip = {
238 .name = "MPU",
1da177e4
LT
239 .ack = imx_mask_irq,
240 .mask = imx_mask_irq,
241 .unmask = imx_unmask_irq,
242};
243
38c677cb
DB
244static struct irq_chip imx_gpio_chip = {
245 .name = "GPIO",
1da177e4
LT
246 .ack = imx_gpio_ack_irq,
247 .mask = imx_gpio_mask_irq,
248 .unmask = imx_gpio_unmask_irq,
7801907b 249 .set_type = imx_gpio_irq_type,
1da177e4
LT
250};
251
252void __init
253imx_init_irq(void)
254{
255 unsigned int irq;
256
257 DEBUG_IRQ("Initializing imx interrupts\n");
258
1c016b2c
PP
259 /* Disable all interrupts initially. */
260 /* Do not rely on the bootloader. */
261 __raw_writel(0, IMX_AITC_INTENABLEH);
262 __raw_writel(0, IMX_AITC_INTENABLEL);
263
264 /* Mask all GPIO interrupts as well */
1da177e4
LT
265 IMR(0) = 0;
266 IMR(1) = 0;
267 IMR(2) = 0;
268 IMR(3) = 0;
269
270 for (irq = 0; irq < IMX_IRQS; irq++) {
271 set_irq_chip(irq, &imx_internal_chip);
10dd5ce2 272 set_irq_handler(irq, handle_level_irq);
1da177e4
LT
273 set_irq_flags(irq, IRQF_VALID);
274 }
275
276 for (irq = IRQ_GPIOA(0); irq < IRQ_GPIOD(32); irq++) {
277 set_irq_chip(irq, &imx_gpio_chip);
10dd5ce2 278 set_irq_handler(irq, handle_edge_irq);
1da177e4
LT
279 set_irq_flags(irq, IRQF_VALID);
280 }
281
282 set_irq_chained_handler(GPIO_INT_PORTA, imx_gpioa_demux_handler);
283 set_irq_chained_handler(GPIO_INT_PORTB, imx_gpiob_demux_handler);
284 set_irq_chained_handler(GPIO_INT_PORTC, imx_gpioc_demux_handler);
285 set_irq_chained_handler(GPIO_INT_PORTD, imx_gpiod_demux_handler);
286
1c016b2c
PP
287 /* Release masking of interrupts according to priority */
288 __raw_writel(-1, IMX_AITC_NIMASK);
1da177e4 289}