blob: ca607571782426bd05ecc087b8644563c196ec64 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/irq.c
3 *
eric miaoe3630db2008-03-04 11:42:26 +08004 * Generic PXA IRQ handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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>
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020018#include <linux/syscore_ops.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080019#include <linux/io.h>
20#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Jamie Iles5a567d72011-10-08 11:20:42 +010022#include <asm/exception.h>
23
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080025#include <mach/irqs.h>
Eric Miaoa58fbcd2009-01-06 17:37:37 +080026#include <mach/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "generic.h"
29
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080030#define IRQ_BASE (void __iomem *)io_p2v(0x40d00000)
Haojian Zhuangc482ae42009-11-02 14:02:21 -050031
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080032#define ICIP (0x000)
33#define ICMR (0x004)
34#define ICLR (0x008)
35#define ICFR (0x00c)
36#define ICPR (0x010)
37#define ICCR (0x014)
38#define ICHP (0x018)
39#define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
40 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
41 (0x144 + (((i) - 64) << 2)))
Eric Miaoa551e4f2011-04-27 22:48:05 +080042#define ICHP_VAL_IRQ (1 << 31)
43#define ICHP_IRQ(i) (((i) >> 16) & 0x7fff)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080044#define IPR_VALID (1 << 31)
45#define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
46
47#define MAX_INTERNAL_IRQS 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * This is for peripheral IRQs internal to the PXA chip.
51 */
52
eric miaof6fb7af2008-03-04 13:53:05 +080053static int pxa_internal_irq_nr;
54
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +080055static inline int cpu_has_ipr(void)
56{
57 return !cpu_is_pxa25x();
58}
59
Eric Miaoa1015a12011-01-12 16:42:24 -060060static inline void __iomem *irq_base(int i)
61{
62 static unsigned long phys_base[] = {
63 0x40d00000,
64 0x40d0009c,
65 0x40d00130,
66 };
67
68 return (void __iomem *)io_p2v(phys_base[i]);
69}
70
Eric Miao5d284e32011-04-27 22:48:04 +080071void pxa_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010073 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080074 uint32_t icmr = __raw_readl(base + ICMR);
75
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010076 icmr &= ~(1 << IRQ_BIT(d->irq));
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080077 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Eric Miao5d284e32011-04-27 22:48:04 +080080void pxa_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010082 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080083 uint32_t icmr = __raw_readl(base + ICMR);
84
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010085 icmr |= 1 << IRQ_BIT(d->irq);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080086 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
eric miaof6fb7af2008-03-04 13:53:05 +080089static struct irq_chip pxa_internal_irq_chip = {
David Brownell38c677c2006-08-01 22:26:25 +010090 .name = "SC",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010091 .irq_ack = pxa_mask_irq,
92 .irq_mask = pxa_mask_irq,
93 .irq_unmask = pxa_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Eric Miaoa58fbcd2009-01-06 17:37:37 +080096/*
97 * GPIO IRQs for GPIO 0 and 1
98 */
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010099static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type)
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800100{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100101 int gpio = d->irq - IRQ_GPIO0;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800102
103 if (__gpio_is_occupied(gpio)) {
104 pr_err("%s failed: GPIO is configured\n", __func__);
105 return -EINVAL;
106 }
107
108 if (type & IRQ_TYPE_EDGE_RISING)
109 GRER0 |= GPIO_bit(gpio);
110 else
111 GRER0 &= ~GPIO_bit(gpio);
112
113 if (type & IRQ_TYPE_EDGE_FALLING)
114 GFER0 |= GPIO_bit(gpio);
115 else
116 GFER0 &= ~GPIO_bit(gpio);
117
118 return 0;
119}
120
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100121static void pxa_ack_low_gpio(struct irq_data *d)
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800122{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100123 GEDR0 = (1 << (d->irq - IRQ_GPIO0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800124}
125
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800126static struct irq_chip pxa_low_gpio_chip = {
127 .name = "GPIO-l",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100128 .irq_ack = pxa_ack_low_gpio,
Eric Miaoa1015a12011-01-12 16:42:24 -0600129 .irq_mask = pxa_mask_irq,
130 .irq_unmask = pxa_unmask_irq,
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100131 .irq_set_type = pxa_set_low_gpio_type,
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800132};
133
Eric Miaoa551e4f2011-04-27 22:48:05 +0800134asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs)
135{
136 uint32_t icip, icmr, mask;
137
138 do {
139 icip = __raw_readl(IRQ_BASE + ICIP);
140 icmr = __raw_readl(IRQ_BASE + ICMR);
141 mask = icip & icmr;
142
143 if (mask == 0)
144 break;
145
146 handle_IRQ(PXA_IRQ(fls(mask) - 1), regs);
147 } while (1);
148}
149
150asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs)
151{
152 uint32_t ichp;
153
154 do {
155 __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp));
156
157 if ((ichp & ICHP_VAL_IRQ) == 0)
158 break;
159
160 handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs);
161 } while (1);
162}
163
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800164static void __init pxa_init_low_gpio_irq(set_wake_t fn)
165{
166 int irq;
167
168 /* clear edge detection on GPIO 0 and 1 */
169 GFER0 &= ~0x3;
170 GRER0 &= ~0x3;
171 GEDR0 = 0x3;
172
173 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100174 irq_set_chip_and_handler(irq, &pxa_low_gpio_chip,
175 handle_edge_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100176 irq_set_chip_data(irq, irq_base(0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800177 set_irq_flags(irq, IRQF_VALID);
178 }
179
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100180 pxa_low_gpio_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800181}
182
eric miaob9e25ac2008-03-04 14:19:58 +0800183void __init pxa_init_irq(int irq_nr, set_wake_t fn)
Eric Miao53665a52007-06-06 06:36:04 +0100184{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800185 int irq, i, n;
Eric Miao53665a52007-06-06 06:36:04 +0100186
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500187 BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
188
eric miaof6fb7af2008-03-04 13:53:05 +0800189 pxa_internal_irq_nr = irq_nr;
Eric Miao53665a52007-06-06 06:36:04 +0100190
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800191 for (n = 0; n < irq_nr; n += 32) {
Marek Vasut1b624fb2011-01-10 23:53:12 +0100192 void __iomem *base = irq_base(n >> 5);
Eric Miao53665a52007-06-06 06:36:04 +0100193
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800194 __raw_writel(0, base + ICMR); /* disable all IRQs */
195 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
196 for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
197 /* initialize interrupt priority */
198 if (cpu_has_ipr())
199 __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
200
201 irq = PXA_IRQ(i);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100202 irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
203 handle_level_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100204 irq_set_chip_data(irq, base);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800205 set_irq_flags(irq, IRQF_VALID);
206 }
Haojian Zhuangd2c37062009-08-19 19:49:31 +0800207 }
208
Eric Miao53665a52007-06-06 06:36:04 +0100209 /* only unmasked interrupts kick us out of idle */
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800210 __raw_writel(1, irq_base(0) + ICCR);
Eric Miao53665a52007-06-06 06:36:04 +0100211
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100212 pxa_internal_irq_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800213 pxa_init_low_gpio_irq(fn);
eric miaoc95530c2007-08-29 10:22:17 +0100214}
eric miaoc01655042008-01-28 23:00:02 +0000215
216#ifdef CONFIG_PM
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500217static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
218static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
eric miaoc01655042008-01-28 23:00:02 +0000219
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200220static int pxa_irq_suspend(void)
eric miaoc01655042008-01-28 23:00:02 +0000221{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800222 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800223
Marek Vasut1b624fb2011-01-10 23:53:12 +0100224 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800225 void __iomem *base = irq_base(i);
226
227 saved_icmr[i] = __raw_readl(base + ICMR);
228 __raw_writel(0, base + ICMR);
eric miaoc01655042008-01-28 23:00:02 +0000229 }
Eric Miaoc70f5a62010-01-11 20:39:37 +0800230
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +0800231 if (cpu_has_ipr()) {
Eric Miaoc70f5a62010-01-11 20:39:37 +0800232 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800233 saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800234 }
eric miaoc01655042008-01-28 23:00:02 +0000235
236 return 0;
237}
238
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200239static void pxa_irq_resume(void)
eric miaoc01655042008-01-28 23:00:02 +0000240{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800241 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800242
Marek Vasut1b624fb2011-01-10 23:53:12 +0100243 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800244 void __iomem *base = irq_base(i);
245
246 __raw_writel(saved_icmr[i], base + ICMR);
247 __raw_writel(0, base + ICLR);
248 }
249
Marek Vasut57879b82011-01-10 00:29:04 +0100250 if (cpu_has_ipr())
Eric Miaoc70f5a62010-01-11 20:39:37 +0800251 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800252 __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800253
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800254 __raw_writel(1, IRQ_BASE + ICCR);
eric miaoc01655042008-01-28 23:00:02 +0000255}
256#else
257#define pxa_irq_suspend NULL
258#define pxa_irq_resume NULL
259#endif
260
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200261struct syscore_ops pxa_irq_syscore_ops = {
eric miaoc01655042008-01-28 23:00:02 +0000262 .suspend = pxa_irq_suspend,
263 .resume = pxa_irq_resume,
264};