blob: d493a230addf17ee47ebdcbe9ec9ea216b035c6c [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/interrupt.h>
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020017#include <linux/syscore_ops.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080018#include <linux/io.h>
19#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/hardware.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080022#include <mach/irqs.h>
Linus Walleijf55be1b2011-09-28 09:11:30 +010023#include <mach/gpio-pxa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "generic.h"
26
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080027#define IRQ_BASE (void __iomem *)io_p2v(0x40d00000)
Haojian Zhuangc482ae42009-11-02 14:02:21 -050028
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080029#define ICIP (0x000)
30#define ICMR (0x004)
31#define ICLR (0x008)
32#define ICFR (0x00c)
33#define ICPR (0x010)
34#define ICCR (0x014)
35#define ICHP (0x018)
36#define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
37 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
38 (0x144 + (((i) - 64) << 2)))
Eric Miaoa551e4f2011-04-27 22:48:05 +080039#define ICHP_VAL_IRQ (1 << 31)
40#define ICHP_IRQ(i) (((i) >> 16) & 0x7fff)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080041#define IPR_VALID (1 << 31)
42#define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
43
44#define MAX_INTERNAL_IRQS 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * This is for peripheral IRQs internal to the PXA chip.
48 */
49
eric miaof6fb7af2008-03-04 13:53:05 +080050static int pxa_internal_irq_nr;
51
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +080052static inline int cpu_has_ipr(void)
53{
54 return !cpu_is_pxa25x();
55}
56
Eric Miaoa1015a12011-01-12 16:42:24 -060057static inline void __iomem *irq_base(int i)
58{
59 static unsigned long phys_base[] = {
60 0x40d00000,
61 0x40d0009c,
62 0x40d00130,
63 };
64
65 return (void __iomem *)io_p2v(phys_base[i]);
66}
67
Eric Miao5d284e32011-04-27 22:48:04 +080068void pxa_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010070 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080071 uint32_t icmr = __raw_readl(base + ICMR);
72
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010073 icmr &= ~(1 << IRQ_BIT(d->irq));
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080074 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Eric Miao5d284e32011-04-27 22:48:04 +080077void pxa_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010079 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080080 uint32_t icmr = __raw_readl(base + ICMR);
81
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010082 icmr |= 1 << IRQ_BIT(d->irq);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080083 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
eric miaof6fb7af2008-03-04 13:53:05 +080086static struct irq_chip pxa_internal_irq_chip = {
David Brownell38c677c2006-08-01 22:26:25 +010087 .name = "SC",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010088 .irq_ack = pxa_mask_irq,
89 .irq_mask = pxa_mask_irq,
90 .irq_unmask = pxa_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
Eric Miaoa58fbcd2009-01-06 17:37:37 +080093/*
94 * GPIO IRQs for GPIO 0 and 1
95 */
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010096static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type)
Eric Miaoa58fbcd2009-01-06 17:37:37 +080097{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010098 int gpio = d->irq - IRQ_GPIO0;
Eric Miaoa58fbcd2009-01-06 17:37:37 +080099
100 if (__gpio_is_occupied(gpio)) {
101 pr_err("%s failed: GPIO is configured\n", __func__);
102 return -EINVAL;
103 }
104
105 if (type & IRQ_TYPE_EDGE_RISING)
106 GRER0 |= GPIO_bit(gpio);
107 else
108 GRER0 &= ~GPIO_bit(gpio);
109
110 if (type & IRQ_TYPE_EDGE_FALLING)
111 GFER0 |= GPIO_bit(gpio);
112 else
113 GFER0 &= ~GPIO_bit(gpio);
114
115 return 0;
116}
117
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100118static void pxa_ack_low_gpio(struct irq_data *d)
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800119{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100120 GEDR0 = (1 << (d->irq - IRQ_GPIO0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800121}
122
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800123static struct irq_chip pxa_low_gpio_chip = {
124 .name = "GPIO-l",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100125 .irq_ack = pxa_ack_low_gpio,
Eric Miaoa1015a12011-01-12 16:42:24 -0600126 .irq_mask = pxa_mask_irq,
127 .irq_unmask = pxa_unmask_irq,
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100128 .irq_set_type = pxa_set_low_gpio_type,
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800129};
130
Eric Miaoa551e4f2011-04-27 22:48:05 +0800131asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs)
132{
133 uint32_t icip, icmr, mask;
134
135 do {
136 icip = __raw_readl(IRQ_BASE + ICIP);
137 icmr = __raw_readl(IRQ_BASE + ICMR);
138 mask = icip & icmr;
139
140 if (mask == 0)
141 break;
142
143 handle_IRQ(PXA_IRQ(fls(mask) - 1), regs);
144 } while (1);
145}
146
147asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs)
148{
149 uint32_t ichp;
150
151 do {
152 __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp));
153
154 if ((ichp & ICHP_VAL_IRQ) == 0)
155 break;
156
157 handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs);
158 } while (1);
159}
160
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800161static void __init pxa_init_low_gpio_irq(set_wake_t fn)
162{
163 int irq;
164
165 /* clear edge detection on GPIO 0 and 1 */
166 GFER0 &= ~0x3;
167 GRER0 &= ~0x3;
168 GEDR0 = 0x3;
169
170 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100171 irq_set_chip_and_handler(irq, &pxa_low_gpio_chip,
172 handle_edge_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100173 irq_set_chip_data(irq, irq_base(0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800174 set_irq_flags(irq, IRQF_VALID);
175 }
176
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100177 pxa_low_gpio_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800178}
179
eric miaob9e25ac2008-03-04 14:19:58 +0800180void __init pxa_init_irq(int irq_nr, set_wake_t fn)
Eric Miao53665a52007-06-06 06:36:04 +0100181{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800182 int irq, i, n;
Eric Miao53665a52007-06-06 06:36:04 +0100183
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500184 BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
185
eric miaof6fb7af2008-03-04 13:53:05 +0800186 pxa_internal_irq_nr = irq_nr;
Eric Miao53665a52007-06-06 06:36:04 +0100187
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800188 for (n = 0; n < irq_nr; n += 32) {
Marek Vasut1b624fb2011-01-10 23:53:12 +0100189 void __iomem *base = irq_base(n >> 5);
Eric Miao53665a52007-06-06 06:36:04 +0100190
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800191 __raw_writel(0, base + ICMR); /* disable all IRQs */
192 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
193 for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
194 /* initialize interrupt priority */
195 if (cpu_has_ipr())
196 __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
197
198 irq = PXA_IRQ(i);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100199 irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
200 handle_level_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100201 irq_set_chip_data(irq, base);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800202 set_irq_flags(irq, IRQF_VALID);
203 }
Haojian Zhuangd2c37062009-08-19 19:49:31 +0800204 }
205
Eric Miao53665a52007-06-06 06:36:04 +0100206 /* only unmasked interrupts kick us out of idle */
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800207 __raw_writel(1, irq_base(0) + ICCR);
Eric Miao53665a52007-06-06 06:36:04 +0100208
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100209 pxa_internal_irq_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800210 pxa_init_low_gpio_irq(fn);
eric miaoc95530c2007-08-29 10:22:17 +0100211}
eric miaoc01655042008-01-28 23:00:02 +0000212
213#ifdef CONFIG_PM
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500214static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
215static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
eric miaoc01655042008-01-28 23:00:02 +0000216
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200217static int pxa_irq_suspend(void)
eric miaoc01655042008-01-28 23:00:02 +0000218{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800219 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800220
Marek Vasut1b624fb2011-01-10 23:53:12 +0100221 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800222 void __iomem *base = irq_base(i);
223
224 saved_icmr[i] = __raw_readl(base + ICMR);
225 __raw_writel(0, base + ICMR);
eric miaoc01655042008-01-28 23:00:02 +0000226 }
Eric Miaoc70f5a62010-01-11 20:39:37 +0800227
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +0800228 if (cpu_has_ipr()) {
Eric Miaoc70f5a62010-01-11 20:39:37 +0800229 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800230 saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800231 }
eric miaoc01655042008-01-28 23:00:02 +0000232
233 return 0;
234}
235
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200236static void pxa_irq_resume(void)
eric miaoc01655042008-01-28 23:00:02 +0000237{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800238 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800239
Marek Vasut1b624fb2011-01-10 23:53:12 +0100240 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800241 void __iomem *base = irq_base(i);
242
243 __raw_writel(saved_icmr[i], base + ICMR);
244 __raw_writel(0, base + ICLR);
245 }
246
Marek Vasut57879b82011-01-10 00:29:04 +0100247 if (cpu_has_ipr())
Eric Miaoc70f5a62010-01-11 20:39:37 +0800248 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800249 __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800250
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800251 __raw_writel(1, IRQ_BASE + ICCR);
eric miaoc01655042008-01-28 23:00:02 +0000252}
253#else
254#define pxa_irq_suspend NULL
255#define pxa_irq_resume NULL
256#endif
257
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200258struct syscore_ops pxa_irq_syscore_ops = {
eric miaoc01655042008-01-28 23:00:02 +0000259 .suspend = pxa_irq_suspend,
260 .resume = pxa_irq_resume,
261};