blob: 516ccc25d7fd0ae7df5f76f2ecf693a40be9f817 [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>
Rafael J. Wysocki90533982011-04-22 22:03:03 +020017#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/hardware.h>
Rob Herringf314f332012-02-24 00:06:51 +010020#include <mach/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mach/irq.h>
22
23#include "generic.h"
24
25
26/*
27 * SA1100 GPIO edge detection for IRQs:
28 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
29 * Use this instead of directly setting GRER/GFER.
30 */
31static int GPIO_IRQ_rising_edge;
32static int GPIO_IRQ_falling_edge;
33static int GPIO_IRQ_mask = (1 << 11) - 1;
34
35/*
36 * To get the GPIO number from an IRQ number
37 */
38#define GPIO_11_27_IRQ(i) ((i) - 21)
39#define GPIO11_27_MASK(irq) (1 << GPIO_11_27_IRQ(irq))
40
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010041static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 unsigned int mask;
44
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010045 if (d->irq <= 10)
46 mask = 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010048 mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010050 if (type == IRQ_TYPE_PROBE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask)
52 return 0;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010053 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 }
55
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010056 if (type & IRQ_TYPE_EDGE_RISING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 GPIO_IRQ_rising_edge |= mask;
58 } else
59 GPIO_IRQ_rising_edge &= ~mask;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010060 if (type & IRQ_TYPE_EDGE_FALLING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 GPIO_IRQ_falling_edge |= mask;
62 } else
63 GPIO_IRQ_falling_edge &= ~mask;
64
65 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
66 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
67
68 return 0;
69}
70
71/*
72 * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 10.
73 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010074static void sa1100_low_gpio_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010076 GEDR = (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010079static void sa1100_low_gpio_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010081 ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010084static void sa1100_low_gpio_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010086 ICMR |= 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010089static int sa1100_low_gpio_wake(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 if (on)
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010092 PWER |= 1 << d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010094 PWER &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return 0;
96}
97
David Brownell38c677c2006-08-01 22:26:25 +010098static struct irq_chip sa1100_low_gpio_chip = {
99 .name = "GPIO-l",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100100 .irq_ack = sa1100_low_gpio_ack,
101 .irq_mask = sa1100_low_gpio_mask,
102 .irq_unmask = sa1100_low_gpio_unmask,
103 .irq_set_type = sa1100_gpio_type,
104 .irq_set_wake = sa1100_low_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107/*
108 * IRQ11 (GPIO11 through 27) handler. We enter here with the
109 * irq_controller_lock held, and IRQs disabled. Decode the IRQ
110 * and call the handler.
111 */
112static void
Russell King10dd5ce2006-11-23 11:41:32 +0000113sa1100_high_gpio_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 unsigned int mask;
116
117 mask = GEDR & 0xfffff800;
118 do {
119 /*
120 * clear down all currently active IRQ sources.
121 * We will be processing them all.
122 */
123 GEDR = mask;
124
125 irq = IRQ_GPIO11;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 mask >>= 11;
127 do {
128 if (mask & 1)
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100129 generic_handle_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mask >>= 1;
131 irq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 } while (mask);
133
134 mask = GEDR & 0xfffff800;
135 } while (mask);
136}
137
138/*
139 * Like GPIO0 to 10, GPIO11-27 IRQs need to be handled specially.
140 * In addition, the IRQs are all collected up into one bit in the
141 * interrupt controller registers.
142 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100143static void sa1100_high_gpio_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100145 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 GEDR = mask;
148}
149
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100150static void sa1100_high_gpio_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100152 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 GPIO_IRQ_mask &= ~mask;
155
156 GRER &= ~mask;
157 GFER &= ~mask;
158}
159
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100160static void sa1100_high_gpio_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100162 unsigned int mask = GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 GPIO_IRQ_mask |= mask;
165
166 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
167 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
168}
169
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100170static int sa1100_high_gpio_wake(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 if (on)
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100173 PWER |= GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 else
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100175 PWER &= ~GPIO11_27_MASK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return 0;
177}
178
David Brownell38c677c2006-08-01 22:26:25 +0100179static struct irq_chip sa1100_high_gpio_chip = {
180 .name = "GPIO-h",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100181 .irq_ack = sa1100_high_gpio_ack,
182 .irq_mask = sa1100_high_gpio_mask,
183 .irq_unmask = sa1100_high_gpio_unmask,
184 .irq_set_type = sa1100_gpio_type,
185 .irq_set_wake = sa1100_high_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186};
187
188/*
189 * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
190 * this is for internal IRQs i.e. from 11 to 31.
191 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100192static void sa1100_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100194 ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100197static void sa1100_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100199 ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Russell King19ca5d22006-05-06 11:26:30 +0100202/*
203 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
204 */
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100205static int sa1100_set_wake(struct irq_data *d, unsigned int on)
Russell King19ca5d22006-05-06 11:26:30 +0100206{
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100207 if (d->irq == IRQ_RTCAlrm) {
Russell King19ca5d22006-05-06 11:26:30 +0100208 if (on)
209 PWER |= PWER_RTC;
210 else
211 PWER &= ~PWER_RTC;
212 return 0;
213 }
214 return -EINVAL;
215}
216
David Brownell38c677c2006-08-01 22:26:25 +0100217static struct irq_chip sa1100_normal_chip = {
218 .name = "SC",
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100219 .irq_ack = sa1100_mask_irq,
220 .irq_mask = sa1100_mask_irq,
221 .irq_unmask = sa1100_unmask_irq,
222 .irq_set_wake = sa1100_set_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
Russell Kinga1810992012-01-12 10:25:29 +0000225static struct resource irq_resource =
226 DEFINE_RES_MEM_NAMED(0x90050000, SZ_64K, "irqs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228static struct sa1100irq_state {
229 unsigned int saved;
230 unsigned int icmr;
231 unsigned int iclr;
232 unsigned int iccr;
233} sa1100irq_state;
234
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200235static int sa1100irq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct sa1100irq_state *st = &sa1100irq_state;
238
239 st->saved = 1;
240 st->icmr = ICMR;
241 st->iclr = ICLR;
242 st->iccr = ICCR;
243
244 /*
245 * Disable all GPIO-based interrupts.
246 */
247 ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7|
248 IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2|
249 IC_GPIO1|IC_GPIO0);
250
251 /*
252 * Set the appropriate edges for wakeup.
253 */
254 GRER = PWER & GPIO_IRQ_rising_edge;
255 GFER = PWER & GPIO_IRQ_falling_edge;
256
257 /*
258 * Clear any pending GPIO interrupts.
259 */
260 GEDR = GEDR;
261
262 return 0;
263}
264
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200265static void sa1100irq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct sa1100irq_state *st = &sa1100irq_state;
268
269 if (st->saved) {
270 ICCR = st->iccr;
271 ICLR = st->iclr;
272
273 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
274 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
275
276 ICMR = st->icmr;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200280static struct syscore_ops sa1100irq_syscore_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .suspend = sa1100irq_suspend,
282 .resume = sa1100irq_resume,
283};
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static int __init sa1100irq_init_devicefs(void)
286{
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200287 register_syscore_ops(&sa1100irq_syscore_ops);
288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291device_initcall(sa1100irq_init_devicefs);
292
293void __init sa1100_init_irq(void)
294{
295 unsigned int irq;
296
297 request_resource(&iomem_resource, &irq_resource);
298
299 /* disable all IRQs */
300 ICMR = 0;
301
302 /* all IRQs are IRQ, not FIQ */
303 ICLR = 0;
304
305 /* clear all GPIO edge detects */
306 GFER = 0;
307 GRER = 0;
308 GEDR = -1;
309
310 /*
311 * Whatever the doc says, this has to be set for the wait-on-irq
312 * instruction to work... on a SA1100 rev 9 at least.
313 */
314 ICCR = 1;
315
316 for (irq = 0; irq <= 10; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100317 irq_set_chip_and_handler(irq, &sa1100_low_gpio_chip,
318 handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
320 }
321
322 for (irq = 12; irq <= 31; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100323 irq_set_chip_and_handler(irq, &sa1100_normal_chip,
324 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 set_irq_flags(irq, IRQF_VALID);
326 }
327
328 for (irq = 32; irq <= 48; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100329 irq_set_chip_and_handler(irq, &sa1100_high_gpio_chip,
330 handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
332 }
333
334 /*
335 * Install handler for GPIO 11-27 edge detect interrupts
336 */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100337 irq_set_chip(IRQ_GPIO11_27, &sa1100_normal_chip);
338 irq_set_chained_handler(IRQ_GPIO11_27, sa1100_high_gpio_handler);
Dmitry Baryshkov45528e32008-04-10 13:31:47 +0100339
340 sa1100_init_gpio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}