blob: 5a1d5eef10a4cb6365b0d53ee3bd84b52f703a1e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/irq.c
3 *
4 * Generic PXA IRQ handling, GPIO IRQ demultiplexing, etc.
5 *
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/interrupt.h>
eric miaoc01655042008-01-28 23:00:02 +000018#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/hardware.h>
21#include <asm/irq.h>
22#include <asm/mach/irq.h>
23#include <asm/arch/pxa-regs.h>
24
25#include "generic.h"
26
27
28/*
29 * This is for peripheral IRQs internal to the PXA chip.
30 */
31
32static void pxa_mask_low_irq(unsigned int irq)
33{
Eric Miao486c9552007-06-06 06:22:20 +010034 ICMR &= ~(1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37static void pxa_unmask_low_irq(unsigned int irq)
38{
Eric Miao486c9552007-06-06 06:22:20 +010039 ICMR |= (1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
David Brownell38c677c2006-08-01 22:26:25 +010042static struct irq_chip pxa_internal_chip_low = {
43 .name = "SC",
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .ack = pxa_mask_low_irq,
45 .mask = pxa_mask_low_irq,
46 .unmask = pxa_unmask_low_irq,
47};
48
Eric Miao53665a52007-06-06 06:36:04 +010049void __init pxa_init_irq_low(void)
50{
51 int irq;
52
53 /* disable all IRQs */
54 ICMR = 0;
55
56 /* all IRQs are IRQ, not FIQ */
57 ICLR = 0;
58
59 /* only unmasked interrupts kick us out of idle */
60 ICCR = 1;
61
62 for (irq = PXA_IRQ(0); irq <= PXA_IRQ(31); irq++) {
63 set_irq_chip(irq, &pxa_internal_chip_low);
64 set_irq_handler(irq, handle_level_irq);
65 set_irq_flags(irq, IRQF_VALID);
66 }
67}
68
eric miao2c8086a2007-09-11 19:13:17 -070069#if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
72 * This is for the second set of internal IRQs as found on the PXA27x.
73 */
74
75static void pxa_mask_high_irq(unsigned int irq)
76{
Eric Miao486c9552007-06-06 06:22:20 +010077 ICMR2 &= ~(1 << (irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80static void pxa_unmask_high_irq(unsigned int irq)
81{
Eric Miao486c9552007-06-06 06:22:20 +010082 ICMR2 |= (1 << (irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
David Brownell38c677c2006-08-01 22:26:25 +010085static struct irq_chip pxa_internal_chip_high = {
86 .name = "SC-hi",
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .ack = pxa_mask_high_irq,
88 .mask = pxa_mask_high_irq,
89 .unmask = pxa_unmask_high_irq,
90};
91
Eric Miaoc08b7b32007-06-06 06:32:38 +010092void __init pxa_init_irq_high(void)
93{
94 int irq;
95
96 ICMR2 = 0;
97 ICLR2 = 0;
98
99 for (irq = PXA_IRQ(32); irq < PXA_IRQ(64); irq++) {
100 set_irq_chip(irq, &pxa_internal_chip_high);
101 set_irq_handler(irq, handle_level_irq);
102 set_irq_flags(irq, IRQF_VALID);
103 }
104}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
106
107/*
108 * PXA GPIO edge detection for IRQs:
109 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
110 * Use this instead of directly setting GRER/GFER.
111 */
112
113static long GPIO_IRQ_rising_edge[4];
114static long GPIO_IRQ_falling_edge[4];
115static long GPIO_IRQ_mask[4];
116
117static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
118{
119 int gpio, idx;
120
121 gpio = IRQ_TO_GPIO(irq);
122 idx = gpio >> 5;
123
124 if (type == IRQT_PROBE) {
125 /* Don't mess with enabled GPIOs using preconfigured edges or
Guennadi Liakhovetskie0331082006-06-28 16:42:02 +0100126 GPIOs set to alternate function or to output during probe */
127 if ((GPIO_IRQ_rising_edge[idx] | GPIO_IRQ_falling_edge[idx] | GPDR(gpio)) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 GPIO_bit(gpio))
129 return 0;
130 if (GAFR(gpio) & (0x3 << (((gpio) & 0xf)*2)))
131 return 0;
132 type = __IRQT_RISEDGE | __IRQT_FALEDGE;
133 }
134
135 /* printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio); */
136
137 pxa_gpio_mode(gpio | GPIO_IN);
138
139 if (type & __IRQT_RISEDGE) {
140 /* printk("rising "); */
141 __set_bit (gpio, GPIO_IRQ_rising_edge);
Philipp Zabel4fe4a2b2007-02-26 01:44:57 +0100142 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 __clear_bit (gpio, GPIO_IRQ_rising_edge);
Philipp Zabel4fe4a2b2007-02-26 01:44:57 +0100144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (type & __IRQT_FALEDGE) {
147 /* printk("falling "); */
148 __set_bit (gpio, GPIO_IRQ_falling_edge);
Philipp Zabel4fe4a2b2007-02-26 01:44:57 +0100149 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 __clear_bit (gpio, GPIO_IRQ_falling_edge);
Philipp Zabel4fe4a2b2007-02-26 01:44:57 +0100151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* printk("edges\n"); */
154
155 GRER(gpio) = GPIO_IRQ_rising_edge[idx] & GPIO_IRQ_mask[idx];
156 GFER(gpio) = GPIO_IRQ_falling_edge[idx] & GPIO_IRQ_mask[idx];
157 return 0;
158}
159
160/*
161 * GPIO IRQs must be acknowledged. This is for GPIO 0 and 1.
162 */
163
164static void pxa_ack_low_gpio(unsigned int irq)
165{
166 GEDR0 = (1 << (irq - IRQ_GPIO0));
167}
168
David Brownell38c677c2006-08-01 22:26:25 +0100169static struct irq_chip pxa_low_gpio_chip = {
170 .name = "GPIO-l",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .ack = pxa_ack_low_gpio,
172 .mask = pxa_mask_low_irq,
173 .unmask = pxa_unmask_low_irq,
Russell King78019072005-09-04 19:43:13 +0100174 .set_type = pxa_gpio_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
177/*
178 * Demux handler for GPIO>=2 edge detect interrupts
179 */
180
Russell King10dd5ce2006-11-23 11:41:32 +0000181static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 unsigned int mask;
184 int loop;
185
186 do {
187 loop = 0;
188
Eric Miao4a3dcd32007-06-06 06:45:18 +0100189 mask = GEDR0 & GPIO_IRQ_mask[0] & ~3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (mask) {
191 GEDR0 = mask;
192 irq = IRQ_GPIO(2);
193 desc = irq_desc + irq;
194 mask >>= 2;
195 do {
196 if (mask & 1)
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700197 desc_handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 irq++;
199 desc++;
200 mask >>= 1;
201 } while (mask);
202 loop = 1;
203 }
204
Eric Miao4a3dcd32007-06-06 06:45:18 +0100205 mask = GEDR1 & GPIO_IRQ_mask[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (mask) {
207 GEDR1 = mask;
208 irq = IRQ_GPIO(32);
209 desc = irq_desc + irq;
210 do {
211 if (mask & 1)
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700212 desc_handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 irq++;
214 desc++;
215 mask >>= 1;
216 } while (mask);
217 loop = 1;
218 }
219
Eric Miao4a3dcd32007-06-06 06:45:18 +0100220 mask = GEDR2 & GPIO_IRQ_mask[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (mask) {
222 GEDR2 = mask;
223 irq = IRQ_GPIO(64);
224 desc = irq_desc + irq;
225 do {
226 if (mask & 1)
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700227 desc_handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 irq++;
229 desc++;
230 mask >>= 1;
231 } while (mask);
232 loop = 1;
233 }
234
Eric Miao4a3dcd32007-06-06 06:45:18 +0100235 mask = GEDR3 & GPIO_IRQ_mask[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (mask) {
237 GEDR3 = mask;
238 irq = IRQ_GPIO(96);
239 desc = irq_desc + irq;
240 do {
241 if (mask & 1)
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700242 desc_handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 irq++;
244 desc++;
245 mask >>= 1;
246 } while (mask);
247 loop = 1;
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 } while (loop);
250}
251
252static void pxa_ack_muxed_gpio(unsigned int irq)
253{
254 int gpio = irq - IRQ_GPIO(2) + 2;
255 GEDR(gpio) = GPIO_bit(gpio);
256}
257
258static void pxa_mask_muxed_gpio(unsigned int irq)
259{
260 int gpio = irq - IRQ_GPIO(2) + 2;
261 __clear_bit(gpio, GPIO_IRQ_mask);
262 GRER(gpio) &= ~GPIO_bit(gpio);
263 GFER(gpio) &= ~GPIO_bit(gpio);
264}
265
266static void pxa_unmask_muxed_gpio(unsigned int irq)
267{
268 int gpio = irq - IRQ_GPIO(2) + 2;
269 int idx = gpio >> 5;
270 __set_bit(gpio, GPIO_IRQ_mask);
271 GRER(gpio) = GPIO_IRQ_rising_edge[idx] & GPIO_IRQ_mask[idx];
272 GFER(gpio) = GPIO_IRQ_falling_edge[idx] & GPIO_IRQ_mask[idx];
273}
274
David Brownell38c677c2006-08-01 22:26:25 +0100275static struct irq_chip pxa_muxed_gpio_chip = {
276 .name = "GPIO",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .ack = pxa_ack_muxed_gpio,
278 .mask = pxa_mask_muxed_gpio,
279 .unmask = pxa_unmask_muxed_gpio,
Russell King78019072005-09-04 19:43:13 +0100280 .set_type = pxa_gpio_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281};
282
Eric Miao348f2e32007-06-06 06:37:15 +0100283void __init pxa_init_irq_gpio(int gpio_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Eric Miao348f2e32007-06-06 06:37:15 +0100285 int irq, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
eric miao30f0b402007-08-29 10:18:47 +0100287 pxa_last_gpio = gpio_nr - 1;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* clear all GPIO edge detects */
Eric Miao348f2e32007-06-06 06:37:15 +0100290 for (i = 0; i < gpio_nr; i += 32) {
291 GFER(i) = 0;
292 GRER(i) = 0;
293 GEDR(i) = GEDR(i);
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* GPIO 0 and 1 must have their mask bit always set */
297 GPIO_IRQ_mask[0] = 3;
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
300 set_irq_chip(irq, &pxa_low_gpio_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000301 set_irq_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
303 }
304
Samuelfd51bcc2007-08-28 19:56:34 +0100305 for (irq = IRQ_GPIO(2); irq < IRQ_GPIO(gpio_nr); irq++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 set_irq_chip(irq, &pxa_muxed_gpio_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000307 set_irq_handler(irq, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
309 }
310
311 /* Install handler for GPIO>=2 edge detect interrupts */
312 set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low);
313 set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler);
314}
eric miaoc95530c2007-08-29 10:22:17 +0100315
316void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int))
317{
318 pxa_internal_chip_low.set_wake = set_wake;
319#ifdef CONFIG_PXA27x
320 pxa_internal_chip_high.set_wake = set_wake;
321#endif
322 pxa_low_gpio_chip.set_wake = set_wake;
323 pxa_muxed_gpio_chip.set_wake = set_wake;
324}
eric miaoc01655042008-01-28 23:00:02 +0000325
326#ifdef CONFIG_PM
327static unsigned long saved_icmr[2];
328
329static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state)
330{
331 switch (dev->id) {
332 case 0:
333 saved_icmr[0] = ICMR;
334 ICMR = 0;
335 break;
336#if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
337 case 1:
338 saved_icmr[1] = ICMR2;
339 ICMR2 = 0;
340 break;
341#endif
342 default:
343 return -EINVAL;
344 }
345
346 return 0;
347}
348
349static int pxa_irq_resume(struct sys_device *dev)
350{
351 switch (dev->id) {
352 case 0:
353 ICMR = saved_icmr[0];
354 ICLR = 0;
355 ICCR = 1;
356 break;
357#if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
358 case 1:
359 ICMR2 = saved_icmr[1];
360 ICLR2 = 0;
361 break;
362#endif
363 default:
364 return -EINVAL;
365 }
366
367 return 0;
368}
369#else
370#define pxa_irq_suspend NULL
371#define pxa_irq_resume NULL
372#endif
373
374struct sysdev_class pxa_irq_sysclass = {
375 .name = "irq",
376 .suspend = pxa_irq_suspend,
377 .resume = pxa_irq_resume,
378};
379
380static int __init pxa_irq_init(void)
381{
382 return sysdev_class_register(&pxa_irq_sysclass);
383}
384
385core_initcall(pxa_irq_init);