blob: 0eecd83c624e3d98573d542efb834e7371cffc00 [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>
Daniel Mack089d0362012-07-22 19:50:22 +020020#include <linux/of_address.h>
21#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jamie Iles5a567d72011-10-08 11:20:42 +010023#include <asm/exception.h>
24
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080026#include <mach/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "generic.h"
29
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080030#define ICIP (0x000)
31#define ICMR (0x004)
32#define ICLR (0x008)
33#define ICFR (0x00c)
34#define ICPR (0x010)
35#define ICCR (0x014)
36#define ICHP (0x018)
37#define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
38 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
39 (0x144 + (((i) - 64) << 2)))
Eric Miaoa551e4f2011-04-27 22:48:05 +080040#define ICHP_VAL_IRQ (1 << 31)
41#define ICHP_IRQ(i) (((i) >> 16) & 0x7fff)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080042#define IPR_VALID (1 << 31)
43#define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
44
45#define MAX_INTERNAL_IRQS 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * This is for peripheral IRQs internal to the PXA chip.
49 */
50
Daniel Mack089d0362012-07-22 19:50:22 +020051static void __iomem *pxa_irq_base;
eric miaof6fb7af2008-03-04 13:53:05 +080052static int pxa_internal_irq_nr;
Daniel Mack089d0362012-07-22 19:50:22 +020053static bool cpu_has_ipr;
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +080054
Eric Miaoa1015a12011-01-12 16:42:24 -060055static inline void __iomem *irq_base(int i)
56{
Daniel Mack089d0362012-07-22 19:50:22 +020057 static unsigned long phys_base_offset[] = {
58 0x0,
59 0x9c,
60 0x130,
Eric Miaoa1015a12011-01-12 16:42:24 -060061 };
62
Daniel Mack089d0362012-07-22 19:50:22 +020063 return pxa_irq_base + phys_base_offset[i];
Eric Miaoa1015a12011-01-12 16:42:24 -060064}
65
Eric Miao5d284e32011-04-27 22:48:04 +080066void pxa_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010068 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080069 uint32_t icmr = __raw_readl(base + ICMR);
70
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010071 icmr &= ~(1 << IRQ_BIT(d->irq));
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080072 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Eric Miao5d284e32011-04-27 22:48:04 +080075void pxa_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010077 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080078 uint32_t icmr = __raw_readl(base + ICMR);
79
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010080 icmr |= 1 << IRQ_BIT(d->irq);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080081 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
eric miaof6fb7af2008-03-04 13:53:05 +080084static struct irq_chip pxa_internal_irq_chip = {
David Brownell38c677c2006-08-01 22:26:25 +010085 .name = "SC",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010086 .irq_ack = pxa_mask_irq,
87 .irq_mask = pxa_mask_irq,
88 .irq_unmask = pxa_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Eric Miaoa551e4f2011-04-27 22:48:05 +080091asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs)
92{
93 uint32_t icip, icmr, mask;
94
95 do {
Daniel Mack089d0362012-07-22 19:50:22 +020096 icip = __raw_readl(pxa_irq_base + ICIP);
97 icmr = __raw_readl(pxa_irq_base + ICMR);
Eric Miaoa551e4f2011-04-27 22:48:05 +080098 mask = icip & icmr;
99
100 if (mask == 0)
101 break;
102
103 handle_IRQ(PXA_IRQ(fls(mask) - 1), regs);
104 } while (1);
105}
106
107asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs)
108{
109 uint32_t ichp;
110
111 do {
112 __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp));
113
114 if ((ichp & ICHP_VAL_IRQ) == 0)
115 break;
116
117 handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs);
118 } while (1);
119}
120
Haojian Zhuang157d2642011-10-17 20:37:52 +0800121void __init pxa_init_irq(int irq_nr, int (*fn)(struct irq_data *, unsigned int))
Eric Miao53665a52007-06-06 06:36:04 +0100122{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800123 int irq, i, n;
Eric Miao53665a52007-06-06 06:36:04 +0100124
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500125 BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
126
eric miaof6fb7af2008-03-04 13:53:05 +0800127 pxa_internal_irq_nr = irq_nr;
Daniel Mack089d0362012-07-22 19:50:22 +0200128 cpu_has_ipr = !cpu_is_pxa25x();
129 pxa_irq_base = io_p2v(0x40d00000);
Eric Miao53665a52007-06-06 06:36:04 +0100130
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800131 for (n = 0; n < irq_nr; n += 32) {
Marek Vasut1b624fb2011-01-10 23:53:12 +0100132 void __iomem *base = irq_base(n >> 5);
Eric Miao53665a52007-06-06 06:36:04 +0100133
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800134 __raw_writel(0, base + ICMR); /* disable all IRQs */
135 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
136 for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
137 /* initialize interrupt priority */
Daniel Mack089d0362012-07-22 19:50:22 +0200138 if (cpu_has_ipr)
139 __raw_writel(i | IPR_VALID, pxa_irq_base + IPR(i));
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800140
141 irq = PXA_IRQ(i);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100142 irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
143 handle_level_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100144 irq_set_chip_data(irq, base);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800145 set_irq_flags(irq, IRQF_VALID);
146 }
Haojian Zhuangd2c37062009-08-19 19:49:31 +0800147 }
148
Eric Miao53665a52007-06-06 06:36:04 +0100149 /* only unmasked interrupts kick us out of idle */
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800150 __raw_writel(1, irq_base(0) + ICCR);
Eric Miao53665a52007-06-06 06:36:04 +0100151
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100152 pxa_internal_irq_chip.irq_set_wake = fn;
eric miaoc95530c2007-08-29 10:22:17 +0100153}
eric miaoc01655042008-01-28 23:00:02 +0000154
155#ifdef CONFIG_PM
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500156static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
157static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
eric miaoc01655042008-01-28 23:00:02 +0000158
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200159static int pxa_irq_suspend(void)
eric miaoc01655042008-01-28 23:00:02 +0000160{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800161 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800162
Marek Vasut1b624fb2011-01-10 23:53:12 +0100163 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800164 void __iomem *base = irq_base(i);
165
166 saved_icmr[i] = __raw_readl(base + ICMR);
167 __raw_writel(0, base + ICMR);
eric miaoc01655042008-01-28 23:00:02 +0000168 }
Eric Miaoc70f5a62010-01-11 20:39:37 +0800169
Daniel Mack089d0362012-07-22 19:50:22 +0200170 if (cpu_has_ipr) {
Eric Miaoc70f5a62010-01-11 20:39:37 +0800171 for (i = 0; i < pxa_internal_irq_nr; i++)
Daniel Mack089d0362012-07-22 19:50:22 +0200172 saved_ipr[i] = __raw_readl(pxa_irq_base + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800173 }
eric miaoc01655042008-01-28 23:00:02 +0000174
175 return 0;
176}
177
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200178static void pxa_irq_resume(void)
eric miaoc01655042008-01-28 23:00:02 +0000179{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800180 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800181
Marek Vasut1b624fb2011-01-10 23:53:12 +0100182 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800183 void __iomem *base = irq_base(i);
184
185 __raw_writel(saved_icmr[i], base + ICMR);
186 __raw_writel(0, base + ICLR);
187 }
188
Daniel Mack089d0362012-07-22 19:50:22 +0200189 if (cpu_has_ipr)
Eric Miaoc70f5a62010-01-11 20:39:37 +0800190 for (i = 0; i < pxa_internal_irq_nr; i++)
Daniel Mack089d0362012-07-22 19:50:22 +0200191 __raw_writel(saved_ipr[i], pxa_irq_base + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800192
Daniel Mack089d0362012-07-22 19:50:22 +0200193 __raw_writel(1, pxa_irq_base + ICCR);
eric miaoc01655042008-01-28 23:00:02 +0000194}
195#else
196#define pxa_irq_suspend NULL
197#define pxa_irq_resume NULL
198#endif
199
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200200struct syscore_ops pxa_irq_syscore_ops = {
eric miaoc01655042008-01-28 23:00:02 +0000201 .suspend = pxa_irq_suspend,
202 .resume = pxa_irq_resume,
203};
Daniel Mack089d0362012-07-22 19:50:22 +0200204
205#ifdef CONFIG_OF
206static struct irq_domain *pxa_irq_domain;
207
208static int pxa_irq_map(struct irq_domain *h, unsigned int virq,
209 irq_hw_number_t hw)
210{
211 void __iomem *base = irq_base(hw / 32);
212
213 /* initialize interrupt priority */
214 if (cpu_has_ipr)
215 __raw_writel(hw | IPR_VALID, pxa_irq_base + IPR(hw));
216
217 irq_set_chip_and_handler(hw, &pxa_internal_irq_chip,
218 handle_level_irq);
219 irq_set_chip_data(hw, base);
220 set_irq_flags(hw, IRQF_VALID);
221
222 return 0;
223}
224
225static struct irq_domain_ops pxa_irq_ops = {
226 .map = pxa_irq_map,
227 .xlate = irq_domain_xlate_onecell,
228};
229
230static const struct of_device_id intc_ids[] __initconst = {
231 { .compatible = "marvell,pxa-intc", },
232 {}
233};
234
235void __init pxa_dt_irq_init(int (*fn)(struct irq_data *, unsigned int))
236{
237 struct device_node *node;
Daniel Mack089d0362012-07-22 19:50:22 +0200238 struct resource res;
239 int n, ret;
240
241 node = of_find_matching_node(NULL, intc_ids);
242 if (!node) {
243 pr_err("Failed to find interrupt controller in arch-pxa\n");
244 return;
245 }
Daniel Mack089d0362012-07-22 19:50:22 +0200246
247 ret = of_property_read_u32(node, "marvell,intc-nr-irqs",
248 &pxa_internal_irq_nr);
249 if (ret) {
250 pr_err("Not found marvell,intc-nr-irqs property\n");
251 return;
252 }
253
254 ret = of_address_to_resource(node, 0, &res);
255 if (ret < 0) {
256 pr_err("No registers defined for node\n");
257 return;
258 }
259 pxa_irq_base = io_p2v(res.start);
260
261 if (of_find_property(node, "marvell,intc-priority", NULL))
262 cpu_has_ipr = 1;
263
264 ret = irq_alloc_descs(-1, 0, pxa_internal_irq_nr, 0);
265 if (ret < 0) {
266 pr_err("Failed to allocate IRQ numbers\n");
267 return;
268 }
269
270 pxa_irq_domain = irq_domain_add_legacy(node, pxa_internal_irq_nr, 0, 0,
271 &pxa_irq_ops, NULL);
272 if (!pxa_irq_domain)
273 panic("Unable to add PXA IRQ domain\n");
274
275 irq_set_default_host(pxa_irq_domain);
276
277 for (n = 0; n < pxa_internal_irq_nr; n += 32) {
278 void __iomem *base = irq_base(n >> 5);
279
280 __raw_writel(0, base + ICMR); /* disable all IRQs */
281 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
282 }
283
284 /* only unmasked interrupts kick us out of idle */
285 __raw_writel(1, irq_base(0) + ICCR);
286
287 pxa_internal_irq_chip.irq_set_wake = fn;
288}
289#endif /* CONFIG_OF */