2 * linux/arch/arm/mach-pxa/irq.c
4 * Generic PXA IRQ handling, GPIO IRQ demultiplexing, etc.
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
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.
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/interrupt.h>
18 #include <linux/sysdev.h>
20 #include <asm/hardware.h>
22 #include <asm/mach/irq.h>
23 #include <asm/arch/pxa-regs.h>
29 * This is for peripheral IRQs internal to the PXA chip.
32 static void pxa_mask_low_irq(unsigned int irq)
37 static void pxa_unmask_low_irq(unsigned int irq)
42 static struct irq_chip pxa_internal_chip_low = {
44 .ack = pxa_mask_low_irq,
45 .mask = pxa_mask_low_irq,
46 .unmask = pxa_unmask_low_irq,
49 void __init pxa_init_irq_low(void)
53 /* disable all IRQs */
56 /* all IRQs are IRQ, not FIQ */
59 /* only unmasked interrupts kick us out of idle */
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);
69 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
72 * This is for the second set of internal IRQs as found on the PXA27x.
75 static void pxa_mask_high_irq(unsigned int irq)
77 ICMR2 &= ~(1 << (irq - 32));
80 static void pxa_unmask_high_irq(unsigned int irq)
82 ICMR2 |= (1 << (irq - 32));
85 static struct irq_chip pxa_internal_chip_high = {
87 .ack = pxa_mask_high_irq,
88 .mask = pxa_mask_high_irq,
89 .unmask = pxa_unmask_high_irq,
92 void __init pxa_init_irq_high(void)
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);
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.
113 static long GPIO_IRQ_rising_edge[4];
114 static long GPIO_IRQ_falling_edge[4];
115 static long GPIO_IRQ_mask[4];
117 static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
121 gpio = IRQ_TO_GPIO(irq);
124 if (type == IRQT_PROBE) {
125 /* Don't mess with enabled GPIOs using preconfigured edges or
126 GPIOs set to alternate function or to output during probe */
127 if ((GPIO_IRQ_rising_edge[idx] | GPIO_IRQ_falling_edge[idx] | GPDR(gpio)) &
130 if (GAFR(gpio) & (0x3 << (((gpio) & 0xf)*2)))
132 type = __IRQT_RISEDGE | __IRQT_FALEDGE;
135 /* printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio); */
137 pxa_gpio_mode(gpio | GPIO_IN);
139 if (type & __IRQT_RISEDGE) {
140 /* printk("rising "); */
141 __set_bit (gpio, GPIO_IRQ_rising_edge);
143 __clear_bit (gpio, GPIO_IRQ_rising_edge);
146 if (type & __IRQT_FALEDGE) {
147 /* printk("falling "); */
148 __set_bit (gpio, GPIO_IRQ_falling_edge);
150 __clear_bit (gpio, GPIO_IRQ_falling_edge);
153 /* printk("edges\n"); */
155 GRER(gpio) = GPIO_IRQ_rising_edge[idx] & GPIO_IRQ_mask[idx];
156 GFER(gpio) = GPIO_IRQ_falling_edge[idx] & GPIO_IRQ_mask[idx];
161 * GPIO IRQs must be acknowledged. This is for GPIO 0 and 1.
164 static void pxa_ack_low_gpio(unsigned int irq)
166 GEDR0 = (1 << (irq - IRQ_GPIO0));
169 static struct irq_chip pxa_low_gpio_chip = {
171 .ack = pxa_ack_low_gpio,
172 .mask = pxa_mask_low_irq,
173 .unmask = pxa_unmask_low_irq,
174 .set_type = pxa_gpio_irq_type,
178 * Demux handler for GPIO>=2 edge detect interrupts
181 static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
189 mask = GEDR0 & GPIO_IRQ_mask[0] & ~3;
193 desc = irq_desc + irq;
197 desc_handle_irq(irq, desc);
205 mask = GEDR1 & GPIO_IRQ_mask[1];
209 desc = irq_desc + irq;
212 desc_handle_irq(irq, desc);
220 mask = GEDR2 & GPIO_IRQ_mask[2];
224 desc = irq_desc + irq;
227 desc_handle_irq(irq, desc);
235 mask = GEDR3 & GPIO_IRQ_mask[3];
239 desc = irq_desc + irq;
242 desc_handle_irq(irq, desc);
252 static void pxa_ack_muxed_gpio(unsigned int irq)
254 int gpio = irq - IRQ_GPIO(2) + 2;
255 GEDR(gpio) = GPIO_bit(gpio);
258 static void pxa_mask_muxed_gpio(unsigned int irq)
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);
266 static void pxa_unmask_muxed_gpio(unsigned int irq)
268 int gpio = irq - IRQ_GPIO(2) + 2;
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];
275 static struct irq_chip pxa_muxed_gpio_chip = {
277 .ack = pxa_ack_muxed_gpio,
278 .mask = pxa_mask_muxed_gpio,
279 .unmask = pxa_unmask_muxed_gpio,
280 .set_type = pxa_gpio_irq_type,
283 void __init pxa_init_irq_gpio(int gpio_nr)
287 pxa_last_gpio = gpio_nr - 1;
289 /* clear all GPIO edge detects */
290 for (i = 0; i < gpio_nr; i += 32) {
296 /* GPIO 0 and 1 must have their mask bit always set */
297 GPIO_IRQ_mask[0] = 3;
299 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
300 set_irq_chip(irq, &pxa_low_gpio_chip);
301 set_irq_handler(irq, handle_edge_irq);
302 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
305 for (irq = IRQ_GPIO(2); irq < IRQ_GPIO(gpio_nr); irq++) {
306 set_irq_chip(irq, &pxa_muxed_gpio_chip);
307 set_irq_handler(irq, handle_edge_irq);
308 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
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);
315 pxa_init_gpio(gpio_nr);
318 void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int))
320 pxa_internal_chip_low.set_wake = set_wake;
322 pxa_internal_chip_high.set_wake = set_wake;
324 pxa_low_gpio_chip.set_wake = set_wake;
325 pxa_muxed_gpio_chip.set_wake = set_wake;
329 static unsigned long saved_icmr[2];
331 static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state)
335 saved_icmr[0] = ICMR;
338 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
340 saved_icmr[1] = ICMR2;
351 static int pxa_irq_resume(struct sys_device *dev)
355 ICMR = saved_icmr[0];
359 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
361 ICMR2 = saved_icmr[1];
372 #define pxa_irq_suspend NULL
373 #define pxa_irq_resume NULL
376 struct sysdev_class pxa_irq_sysclass = {
378 .suspend = pxa_irq_suspend,
379 .resume = pxa_irq_resume,
382 static int __init pxa_irq_init(void)
384 return sysdev_class_register(&pxa_irq_sysclass);
387 core_initcall(pxa_irq_init);