2 * linux/arch/arm/mach-sa1100/irq.c
4 * Copyright (C) 1999-2001 Nicolas Pitre
6 * Generic IRQ handling for the SA11x0, GPIO 11-27 IRQ demultiplexing.
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.
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
16 #include <linux/ioport.h>
17 #include <linux/syscore_ops.h>
19 #include <mach/hardware.h>
20 #include <asm/mach/irq.h>
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.
30 static int GPIO_IRQ_rising_edge
;
31 static int GPIO_IRQ_falling_edge
;
32 static int GPIO_IRQ_mask
= (1 << 11) - 1;
35 * To get the GPIO number from an IRQ number
37 #define GPIO_11_27_IRQ(i) ((i) - 21)
38 #define GPIO11_27_MASK(irq) (1 << GPIO_11_27_IRQ(irq))
40 static int sa1100_gpio_type(struct irq_data
*d
, unsigned int type
)
47 mask
= GPIO11_27_MASK(d
->irq
);
49 if (type
== IRQ_TYPE_PROBE
) {
50 if ((GPIO_IRQ_rising_edge
| GPIO_IRQ_falling_edge
) & mask
)
52 type
= IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
;
55 if (type
& IRQ_TYPE_EDGE_RISING
) {
56 GPIO_IRQ_rising_edge
|= mask
;
58 GPIO_IRQ_rising_edge
&= ~mask
;
59 if (type
& IRQ_TYPE_EDGE_FALLING
) {
60 GPIO_IRQ_falling_edge
|= mask
;
62 GPIO_IRQ_falling_edge
&= ~mask
;
64 GRER
= GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
;
65 GFER
= GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
;
71 * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 10.
73 static void sa1100_low_gpio_ack(struct irq_data
*d
)
78 static void sa1100_low_gpio_mask(struct irq_data
*d
)
80 ICMR
&= ~(1 << d
->irq
);
83 static void sa1100_low_gpio_unmask(struct irq_data
*d
)
88 static int sa1100_low_gpio_wake(struct irq_data
*d
, unsigned int on
)
93 PWER
&= ~(1 << d
->irq
);
97 static struct irq_chip sa1100_low_gpio_chip
= {
99 .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
,
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.
112 sa1100_high_gpio_handler(unsigned int irq
, struct irq_desc
*desc
)
116 mask
= GEDR
& 0xfffff800;
119 * clear down all currently active IRQ sources.
120 * We will be processing them all.
128 generic_handle_irq(irq
);
133 mask
= GEDR
& 0xfffff800;
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.
142 static void sa1100_high_gpio_ack(struct irq_data
*d
)
144 unsigned int mask
= GPIO11_27_MASK(d
->irq
);
149 static void sa1100_high_gpio_mask(struct irq_data
*d
)
151 unsigned int mask
= GPIO11_27_MASK(d
->irq
);
153 GPIO_IRQ_mask
&= ~mask
;
159 static void sa1100_high_gpio_unmask(struct irq_data
*d
)
161 unsigned int mask
= GPIO11_27_MASK(d
->irq
);
163 GPIO_IRQ_mask
|= mask
;
165 GRER
= GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
;
166 GFER
= GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
;
169 static int sa1100_high_gpio_wake(struct irq_data
*d
, unsigned int on
)
172 PWER
|= GPIO11_27_MASK(d
->irq
);
174 PWER
&= ~GPIO11_27_MASK(d
->irq
);
178 static struct irq_chip sa1100_high_gpio_chip
= {
180 .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
,
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.
191 static void sa1100_mask_irq(struct irq_data
*d
)
193 ICMR
&= ~(1 << d
->irq
);
196 static void sa1100_unmask_irq(struct irq_data
*d
)
198 ICMR
|= (1 << d
->irq
);
202 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
204 static int sa1100_set_wake(struct irq_data
*d
, unsigned int on
)
206 if (d
->irq
== IRQ_RTCAlrm
) {
216 static struct irq_chip sa1100_normal_chip
= {
218 .irq_ack
= sa1100_mask_irq
,
219 .irq_mask
= sa1100_mask_irq
,
220 .irq_unmask
= sa1100_unmask_irq
,
221 .irq_set_wake
= sa1100_set_wake
,
224 static struct resource irq_resource
= {
230 static struct sa1100irq_state
{
237 static int sa1100irq_suspend(void)
239 struct sa1100irq_state
*st
= &sa1100irq_state
;
247 * Disable all GPIO-based interrupts.
249 ICMR
&= ~(IC_GPIO11_27
|IC_GPIO10
|IC_GPIO9
|IC_GPIO8
|IC_GPIO7
|
250 IC_GPIO6
|IC_GPIO5
|IC_GPIO4
|IC_GPIO3
|IC_GPIO2
|
254 * Set the appropriate edges for wakeup.
256 GRER
= PWER
& GPIO_IRQ_rising_edge
;
257 GFER
= PWER
& GPIO_IRQ_falling_edge
;
260 * Clear any pending GPIO interrupts.
267 static void sa1100irq_resume(void)
269 struct sa1100irq_state
*st
= &sa1100irq_state
;
275 GRER
= GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
;
276 GFER
= GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
;
282 static struct syscore_ops sa1100irq_syscore_ops
= {
283 .suspend
= sa1100irq_suspend
,
284 .resume
= sa1100irq_resume
,
287 static int __init
sa1100irq_init_devicefs(void)
289 register_syscore_ops(&sa1100irq_syscore_ops
);
293 device_initcall(sa1100irq_init_devicefs
);
295 void __init
sa1100_init_irq(void)
299 request_resource(&iomem_resource
, &irq_resource
);
301 /* disable all IRQs */
304 /* all IRQs are IRQ, not FIQ */
307 /* clear all GPIO edge detects */
313 * Whatever the doc says, this has to be set for the wait-on-irq
314 * instruction to work... on a SA1100 rev 9 at least.
318 for (irq
= 0; irq
<= 10; irq
++) {
319 irq_set_chip_and_handler(irq
, &sa1100_low_gpio_chip
,
321 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
324 for (irq
= 12; irq
<= 31; irq
++) {
325 irq_set_chip_and_handler(irq
, &sa1100_normal_chip
,
327 set_irq_flags(irq
, IRQF_VALID
);
330 for (irq
= 32; irq
<= 48; irq
++) {
331 irq_set_chip_and_handler(irq
, &sa1100_high_gpio_chip
,
333 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
337 * Install handler for GPIO 11-27 edge detect interrupts
339 irq_set_chip(IRQ_GPIO11_27
, &sa1100_normal_chip
);
340 irq_set_chained_handler(IRQ_GPIO11_27
, sa1100_high_gpio_handler
);