blob: 86369a8f0cea79696ddb2256401cf0be221f2ac2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-sa1100/irq.c
3 *
4 * Copyright (C) 1999-2001 Nicolas Pitre
5 *
6 * Generic IRQ handling for the SA11x0, GPIO 11-27 IRQ demultiplexing.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12#include <linux/init.h>
13#include <linux/module.h>
Thomas Gleixner119c6412006-07-01 22:32:38 +010014#include <linux/interrupt.h>
15#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sysdev.h>
18
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/mach/irq.h>
21
22#include "generic.h"
23
24
25/*
26 * SA1100 GPIO edge detection for IRQs:
27 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
28 * Use this instead of directly setting GRER/GFER.
29 */
30static int GPIO_IRQ_rising_edge;
31static int GPIO_IRQ_falling_edge;
32static int GPIO_IRQ_mask = (1 << 11) - 1;
33
34/*
35 * To get the GPIO number from an IRQ number
36 */
37#define GPIO_11_27_IRQ(i) ((i) - 21)
38#define GPIO11_27_MASK(irq) (1 << GPIO_11_27_IRQ(irq))
39
40static int sa1100_gpio_type(unsigned int irq, unsigned int type)
41{
42 unsigned int mask;
43
44 if (irq <= 10)
45 mask = 1 << irq;
46 else
47 mask = GPIO11_27_MASK(irq);
48
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010049 if (type == IRQ_TYPE_PROBE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask)
51 return 0;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010052 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 }
54
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010055 if (type & IRQ_TYPE_EDGE_RISING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 GPIO_IRQ_rising_edge |= mask;
57 } else
58 GPIO_IRQ_rising_edge &= ~mask;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010059 if (type & IRQ_TYPE_EDGE_FALLING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 GPIO_IRQ_falling_edge |= mask;
61 } else
62 GPIO_IRQ_falling_edge &= ~mask;
63
64 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
65 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
66
67 return 0;
68}
69
70/*
71 * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 10.
72 */
73static void sa1100_low_gpio_ack(unsigned int irq)
74{
75 GEDR = (1 << irq);
76}
77
78static void sa1100_low_gpio_mask(unsigned int irq)
79{
80 ICMR &= ~(1 << irq);
81}
82
83static void sa1100_low_gpio_unmask(unsigned int irq)
84{
85 ICMR |= 1 << irq;
86}
87
88static int sa1100_low_gpio_wake(unsigned int irq, unsigned int on)
89{
90 if (on)
91 PWER |= 1 << irq;
92 else
93 PWER &= ~(1 << irq);
94 return 0;
95}
96
David Brownell38c677c2006-08-01 22:26:25 +010097static struct irq_chip sa1100_low_gpio_chip = {
98 .name = "GPIO-l",
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .ack = sa1100_low_gpio_ack,
100 .mask = sa1100_low_gpio_mask,
101 .unmask = sa1100_low_gpio_unmask,
Russell King78019072005-09-04 19:43:13 +0100102 .set_type = sa1100_gpio_type,
103 .set_wake = sa1100_low_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106/*
107 * IRQ11 (GPIO11 through 27) handler. We enter here with the
108 * irq_controller_lock held, and IRQs disabled. Decode the IRQ
109 * and call the handler.
110 */
111static void
Russell King10dd5ce2006-11-23 11:41:32 +0000112sa1100_high_gpio_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 unsigned int mask;
115
116 mask = GEDR & 0xfffff800;
117 do {
118 /*
119 * clear down all currently active IRQ sources.
120 * We will be processing them all.
121 */
122 GEDR = mask;
123
124 irq = IRQ_GPIO11;
125 desc = irq_desc + irq;
126 mask >>= 11;
127 do {
128 if (mask & 1)
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700129 desc_handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mask >>= 1;
131 irq++;
132 desc++;
133 } while (mask);
134
135 mask = GEDR & 0xfffff800;
136 } while (mask);
137}
138
139/*
140 * Like GPIO0 to 10, GPIO11-27 IRQs need to be handled specially.
141 * In addition, the IRQs are all collected up into one bit in the
142 * interrupt controller registers.
143 */
144static void sa1100_high_gpio_ack(unsigned int irq)
145{
146 unsigned int mask = GPIO11_27_MASK(irq);
147
148 GEDR = mask;
149}
150
151static void sa1100_high_gpio_mask(unsigned int irq)
152{
153 unsigned int mask = GPIO11_27_MASK(irq);
154
155 GPIO_IRQ_mask &= ~mask;
156
157 GRER &= ~mask;
158 GFER &= ~mask;
159}
160
161static void sa1100_high_gpio_unmask(unsigned int irq)
162{
163 unsigned int mask = GPIO11_27_MASK(irq);
164
165 GPIO_IRQ_mask |= mask;
166
167 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
168 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
169}
170
171static int sa1100_high_gpio_wake(unsigned int irq, unsigned int on)
172{
173 if (on)
174 PWER |= GPIO11_27_MASK(irq);
175 else
176 PWER &= ~GPIO11_27_MASK(irq);
177 return 0;
178}
179
David Brownell38c677c2006-08-01 22:26:25 +0100180static struct irq_chip sa1100_high_gpio_chip = {
181 .name = "GPIO-h",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .ack = sa1100_high_gpio_ack,
183 .mask = sa1100_high_gpio_mask,
184 .unmask = sa1100_high_gpio_unmask,
Russell King78019072005-09-04 19:43:13 +0100185 .set_type = sa1100_gpio_type,
186 .set_wake = sa1100_high_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
189/*
190 * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
191 * this is for internal IRQs i.e. from 11 to 31.
192 */
193static void sa1100_mask_irq(unsigned int irq)
194{
195 ICMR &= ~(1 << irq);
196}
197
198static void sa1100_unmask_irq(unsigned int irq)
199{
200 ICMR |= (1 << irq);
201}
202
Russell King19ca5d22006-05-06 11:26:30 +0100203/*
204 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
205 */
206static int sa1100_set_wake(unsigned int irq, unsigned int on)
207{
208 if (irq == IRQ_RTCAlrm) {
209 if (on)
210 PWER |= PWER_RTC;
211 else
212 PWER &= ~PWER_RTC;
213 return 0;
214 }
215 return -EINVAL;
216}
217
David Brownell38c677c2006-08-01 22:26:25 +0100218static struct irq_chip sa1100_normal_chip = {
219 .name = "SC",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 .ack = sa1100_mask_irq,
221 .mask = sa1100_mask_irq,
222 .unmask = sa1100_unmask_irq,
Russell King19ca5d22006-05-06 11:26:30 +0100223 .set_wake = sa1100_set_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
226static struct resource irq_resource = {
227 .name = "irqs",
228 .start = 0x90050000,
229 .end = 0x9005ffff,
230};
231
232static struct sa1100irq_state {
233 unsigned int saved;
234 unsigned int icmr;
235 unsigned int iclr;
236 unsigned int iccr;
237} sa1100irq_state;
238
239static int sa1100irq_suspend(struct sys_device *dev, pm_message_t state)
240{
241 struct sa1100irq_state *st = &sa1100irq_state;
242
243 st->saved = 1;
244 st->icmr = ICMR;
245 st->iclr = ICLR;
246 st->iccr = ICCR;
247
248 /*
249 * Disable all GPIO-based interrupts.
250 */
251 ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7|
252 IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2|
253 IC_GPIO1|IC_GPIO0);
254
255 /*
256 * Set the appropriate edges for wakeup.
257 */
258 GRER = PWER & GPIO_IRQ_rising_edge;
259 GFER = PWER & GPIO_IRQ_falling_edge;
260
261 /*
262 * Clear any pending GPIO interrupts.
263 */
264 GEDR = GEDR;
265
266 return 0;
267}
268
269static int sa1100irq_resume(struct sys_device *dev)
270{
271 struct sa1100irq_state *st = &sa1100irq_state;
272
273 if (st->saved) {
274 ICCR = st->iccr;
275 ICLR = st->iclr;
276
277 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
278 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
279
280 ICMR = st->icmr;
281 }
282 return 0;
283}
284
285static struct sysdev_class sa1100irq_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100286 .name = "sa11x0-irq",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .suspend = sa1100irq_suspend,
288 .resume = sa1100irq_resume,
289};
290
291static struct sys_device sa1100irq_device = {
292 .id = 0,
293 .cls = &sa1100irq_sysclass,
294};
295
296static int __init sa1100irq_init_devicefs(void)
297{
298 sysdev_class_register(&sa1100irq_sysclass);
299 return sysdev_register(&sa1100irq_device);
300}
301
302device_initcall(sa1100irq_init_devicefs);
303
304void __init sa1100_init_irq(void)
305{
306 unsigned int irq;
307
308 request_resource(&iomem_resource, &irq_resource);
309
310 /* disable all IRQs */
311 ICMR = 0;
312
313 /* all IRQs are IRQ, not FIQ */
314 ICLR = 0;
315
316 /* clear all GPIO edge detects */
317 GFER = 0;
318 GRER = 0;
319 GEDR = -1;
320
321 /*
322 * Whatever the doc says, this has to be set for the wait-on-irq
323 * instruction to work... on a SA1100 rev 9 at least.
324 */
325 ICCR = 1;
326
327 for (irq = 0; irq <= 10; irq++) {
328 set_irq_chip(irq, &sa1100_low_gpio_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000329 set_irq_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
331 }
332
333 for (irq = 12; irq <= 31; irq++) {
334 set_irq_chip(irq, &sa1100_normal_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000335 set_irq_handler(irq, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 set_irq_flags(irq, IRQF_VALID);
337 }
338
339 for (irq = 32; irq <= 48; irq++) {
340 set_irq_chip(irq, &sa1100_high_gpio_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000341 set_irq_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
343 }
344
345 /*
346 * Install handler for GPIO 11-27 edge detect interrupts
347 */
348 set_irq_chip(IRQ_GPIO11_27, &sa1100_normal_chip);
349 set_irq_chained_handler(IRQ_GPIO11_27, sa1100_high_gpio_handler);
Dmitry Baryshkov45528e32008-04-10 13:31:47 +0100350
351 sa1100_init_gpio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}