blob: 0f109e179cbbb598aa220e882644c9ead1b4c6df [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
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010040static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 unsigned int mask;
43
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010044 if (d->irq <= 10)
45 mask = 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010047 mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
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 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010073static void sa1100_low_gpio_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010075 GEDR = (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010078static void sa1100_low_gpio_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010080 ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010083static void sa1100_low_gpio_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010085 ICMR |= 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010088static int sa1100_low_gpio_wake(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 if (on)
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010091 PWER |= 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010093 PWER &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return 0;
95}
96
David Brownell38c677c2006-08-01 22:26:25 +010097static struct irq_chip sa1100_low_gpio_chip = {
98 .name = "GPIO-l",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010099 .irq_ack = sa1100_low_gpio_ack,
100 .irq_mask = sa1100_low_gpio_mask,
101 .irq_unmask = sa1100_low_gpio_unmask,
102 .irq_set_type = sa1100_gpio_type,
103 .irq_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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 mask >>= 11;
126 do {
127 if (mask & 1)
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100128 generic_handle_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 mask >>= 1;
130 irq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } while (mask);
132
133 mask = GEDR & 0xfffff800;
134 } while (mask);
135}
136
137/*
138 * Like GPIO0 to 10, GPIO11-27 IRQs need to be handled specially.
139 * In addition, the IRQs are all collected up into one bit in the
140 * interrupt controller registers.
141 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100142static void sa1100_high_gpio_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100144 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 GEDR = mask;
147}
148
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100149static void sa1100_high_gpio_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100151 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 GPIO_IRQ_mask &= ~mask;
154
155 GRER &= ~mask;
156 GFER &= ~mask;
157}
158
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100159static void sa1100_high_gpio_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100161 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 GPIO_IRQ_mask |= mask;
164
165 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
166 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
167}
168
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100169static int sa1100_high_gpio_wake(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 if (on)
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100172 PWER |= GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100174 PWER &= ~GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return 0;
176}
177
David Brownell38c677c2006-08-01 22:26:25 +0100178static struct irq_chip sa1100_high_gpio_chip = {
179 .name = "GPIO-h",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100180 .irq_ack = sa1100_high_gpio_ack,
181 .irq_mask = sa1100_high_gpio_mask,
182 .irq_unmask = sa1100_high_gpio_unmask,
183 .irq_set_type = sa1100_gpio_type,
184 .irq_set_wake = sa1100_high_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187/*
188 * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
189 * this is for internal IRQs i.e. from 11 to 31.
190 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100191static void sa1100_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100193 ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100196static void sa1100_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100198 ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Russell King19ca5d22006-05-06 11:26:30 +0100201/*
202 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
203 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100204static int sa1100_set_wake(struct irq_data *d, unsigned int on)
Russell King19ca5d22006-05-06 11:26:30 +0100205{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100206 if (d->irq == IRQ_RTCAlrm) {
Russell King19ca5d22006-05-06 11:26:30 +0100207 if (on)
208 PWER |= PWER_RTC;
209 else
210 PWER &= ~PWER_RTC;
211 return 0;
212 }
213 return -EINVAL;
214}
215
David Brownell38c677c2006-08-01 22:26:25 +0100216static struct irq_chip sa1100_normal_chip = {
217 .name = "SC",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100218 .irq_ack = sa1100_mask_irq,
219 .irq_mask = sa1100_mask_irq,
220 .irq_unmask = sa1100_unmask_irq,
221 .irq_set_wake = sa1100_set_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
224static struct resource irq_resource = {
225 .name = "irqs",
226 .start = 0x90050000,
227 .end = 0x9005ffff,
228};
229
230static struct sa1100irq_state {
231 unsigned int saved;
232 unsigned int icmr;
233 unsigned int iclr;
234 unsigned int iccr;
235} sa1100irq_state;
236
237static int sa1100irq_suspend(struct sys_device *dev, pm_message_t state)
238{
239 struct sa1100irq_state *st = &sa1100irq_state;
240
241 st->saved = 1;
242 st->icmr = ICMR;
243 st->iclr = ICLR;
244 st->iccr = ICCR;
245
246 /*
247 * Disable all GPIO-based interrupts.
248 */
249 ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7|
250 IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2|
251 IC_GPIO1|IC_GPIO0);
252
253 /*
254 * Set the appropriate edges for wakeup.
255 */
256 GRER = PWER & GPIO_IRQ_rising_edge;
257 GFER = PWER & GPIO_IRQ_falling_edge;
258
259 /*
260 * Clear any pending GPIO interrupts.
261 */
262 GEDR = GEDR;
263
264 return 0;
265}
266
267static int sa1100irq_resume(struct sys_device *dev)
268{
269 struct sa1100irq_state *st = &sa1100irq_state;
270
271 if (st->saved) {
272 ICCR = st->iccr;
273 ICLR = st->iclr;
274
275 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
276 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
277
278 ICMR = st->icmr;
279 }
280 return 0;
281}
282
283static struct sysdev_class sa1100irq_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100284 .name = "sa11x0-irq",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .suspend = sa1100irq_suspend,
286 .resume = sa1100irq_resume,
287};
288
289static struct sys_device sa1100irq_device = {
290 .id = 0,
291 .cls = &sa1100irq_sysclass,
292};
293
294static int __init sa1100irq_init_devicefs(void)
295{
296 sysdev_class_register(&sa1100irq_sysclass);
297 return sysdev_register(&sa1100irq_device);
298}
299
300device_initcall(sa1100irq_init_devicefs);
301
302void __init sa1100_init_irq(void)
303{
304 unsigned int irq;
305
306 request_resource(&iomem_resource, &irq_resource);
307
308 /* disable all IRQs */
309 ICMR = 0;
310
311 /* all IRQs are IRQ, not FIQ */
312 ICLR = 0;
313
314 /* clear all GPIO edge detects */
315 GFER = 0;
316 GRER = 0;
317 GEDR = -1;
318
319 /*
320 * Whatever the doc says, this has to be set for the wait-on-irq
321 * instruction to work... on a SA1100 rev 9 at least.
322 */
323 ICCR = 1;
324
325 for (irq = 0; irq <= 10; irq++) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100326 irq_set_chip(irq, &sa1100_low_gpio_chip);
327 irq_set_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
329 }
330
331 for (irq = 12; irq <= 31; irq++) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100332 irq_set_chip(irq, &sa1100_normal_chip);
333 irq_set_handler(irq, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 set_irq_flags(irq, IRQF_VALID);
335 }
336
337 for (irq = 32; irq <= 48; irq++) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100338 irq_set_chip(irq, &sa1100_high_gpio_chip);
339 irq_set_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
341 }
342
343 /*
344 * Install handler for GPIO 11-27 edge detect interrupts
345 */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100346 irq_set_chip(IRQ_GPIO11_27, &sa1100_normal_chip);
347 irq_set_chained_handler(IRQ_GPIO11_27, sa1100_high_gpio_handler);
Dmitry Baryshkov45528e32008-04-10 13:31:47 +0100348
349 sa1100_init_gpio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}