blob: 26eaf37ce4d931dae322411a589d8c36dae3af1c [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/arm/mach-omap2/irq.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
4 * Interrupt handler for OMAP2 boards.
5 *
6 * Copyright (C) 2005 Nokia Corporation
7 * Author: Paul Mundt <paul.mundt@nokia.com>
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13#include <linux/kernel.h>
Benoit Cousson52fa2122011-11-30 19:21:07 +010014#include <linux/module.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000015#include <linux/init.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000016#include <linux/interrupt.h>
Paul Walmsley2e7509e2008-10-09 17:51:28 +030017#include <linux/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/hardware.h>
Marc Zyngier2db14992011-09-06 09:56:17 +010019#include <asm/exception.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000020#include <asm/mach/irq.h>
Benoit Cousson52fa2122011-11-30 19:21:07 +010021#include <linux/irqdomain.h>
22#include <linux/of.h>
23#include <linux/of_address.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000024
Paul Walmsley2e7509e2008-10-09 17:51:28 +030025
26/* selected INTC register offsets */
27
28#define INTC_REVISION 0x0000
29#define INTC_SYSCONFIG 0x0010
30#define INTC_SYSSTATUS 0x0014
Tony Lindgren6ccc4c02008-12-10 17:36:52 -080031#define INTC_SIR 0x0040
Paul Walmsley2e7509e2008-10-09 17:51:28 +030032#define INTC_CONTROL 0x0048
Rajendra Nayak0addd612008-09-26 17:48:20 +053033#define INTC_PROTECTION 0x004C
34#define INTC_IDLE 0x0050
35#define INTC_THRESHOLD 0x0068
36#define INTC_MIR0 0x0084
Paul Walmsley2e7509e2008-10-09 17:51:28 +030037#define INTC_MIR_CLEAR0 0x0088
38#define INTC_MIR_SET0 0x008c
39#define INTC_PENDING_IRQ0 0x0098
Paul Walmsley2e7509e2008-10-09 17:51:28 +030040/* Number of IRQ state bits in each MIR register */
41#define IRQ_BITS_PER_REG 32
Tony Lindgren1dbae812005-11-10 14:26:51 +000042
Marc Zyngier2db14992011-09-06 09:56:17 +010043#define OMAP2_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE)
44#define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE)
45#define INTCPS_SIR_IRQ_OFFSET 0x0040 /* omap2/3 active interrupt offset */
46#define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */
47
Tony Lindgren1dbae812005-11-10 14:26:51 +000048/*
49 * OMAP2 has a number of different interrupt controllers, each interrupt
50 * controller is identified as its own "bank". Register definitions are
51 * fairly consistent for each bank, but not all registers are implemented
52 * for each bank.. when in doubt, consult the TRM.
53 */
54static struct omap_irq_bank {
Russell Kinge8a91c92008-09-01 22:07:37 +010055 void __iomem *base_reg;
Tony Lindgren1dbae812005-11-10 14:26:51 +000056 unsigned int nr_irqs;
57} __attribute__ ((aligned(4))) irq_banks[] = {
58 {
59 /* MPU INTC */
Tony Lindgren1dbae812005-11-10 14:26:51 +000060 .nr_irqs = 96,
Tony Lindgren646e3ed2008-10-06 15:49:36 +030061 },
Tony Lindgren1dbae812005-11-10 14:26:51 +000062};
63
Benoit Cousson52fa2122011-11-30 19:21:07 +010064static struct irq_domain *domain;
65
Rajendra Nayak0addd612008-09-26 17:48:20 +053066/* Structure to save interrupt controller context */
67struct omap3_intc_regs {
68 u32 sysconfig;
69 u32 protection;
70 u32 idle;
71 u32 threshold;
72 u32 ilr[INTCPS_NR_IRQS];
73 u32 mir[INTCPS_NR_MIR_REGS];
74};
75
Paul Walmsley2e7509e2008-10-09 17:51:28 +030076/* INTC bank register get/set */
77
78static void intc_bank_write_reg(u32 val, struct omap_irq_bank *bank, u16 reg)
79{
80 __raw_writel(val, bank->base_reg + reg);
81}
82
83static u32 intc_bank_read_reg(struct omap_irq_bank *bank, u16 reg)
84{
85 return __raw_readl(bank->base_reg + reg);
86}
87
Tony Lindgren1dbae812005-11-10 14:26:51 +000088/* XXX: FIQ and additional INTC support (only MPU at the moment) */
Lennert Buytenhekdf303472010-11-29 10:39:59 +010089static void omap_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +000090{
Paul Walmsley2e7509e2008-10-09 17:51:28 +030091 intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL);
Tony Lindgren1dbae812005-11-10 14:26:51 +000092}
93
Lennert Buytenhekdf303472010-11-29 10:39:59 +010094static void omap_mask_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +000095{
Tony Lindgren667a11f2011-05-16 02:07:38 -070096 irq_gc_mask_disable_reg(d);
Lennert Buytenhekdf303472010-11-29 10:39:59 +010097 omap_ack_irq(d);
Tony Lindgren1dbae812005-11-10 14:26:51 +000098}
99
Tony Lindgren1dbae812005-11-10 14:26:51 +0000100static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank)
101{
102 unsigned long tmp;
103
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300104 tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff;
Russell Kinge8a91c92008-09-01 22:07:37 +0100105 printk(KERN_INFO "IRQ: Found an INTC at 0x%p "
Tony Lindgren1dbae812005-11-10 14:26:51 +0000106 "(revision %ld.%ld) with %d interrupts\n",
107 bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs);
108
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300109 tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000110 tmp |= 1 << 1; /* soft reset */
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300111 intc_bank_write_reg(tmp, bank, INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000112
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300113 while (!(intc_bank_read_reg(bank, INTC_SYSSTATUS) & 0x1))
Tony Lindgren1dbae812005-11-10 14:26:51 +0000114 /* Wait for reset to complete */;
Juha Yrjola375e12a2006-12-06 17:13:50 -0800115
116 /* Enable autoidle */
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300117 intc_bank_write_reg(1 << 0, bank, INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000118}
119
Jouni Hogander94434532009-02-03 15:49:04 -0800120int omap_irq_pending(void)
121{
122 int i;
123
124 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
125 struct omap_irq_bank *bank = irq_banks + i;
126 int irq;
127
128 for (irq = 0; irq < bank->nr_irqs; irq += 32)
129 if (intc_bank_read_reg(bank, INTC_PENDING_IRQ0 +
130 ((irq >> 5) << 5)))
131 return 1;
132 }
133 return 0;
134}
135
Tony Lindgren667a11f2011-05-16 02:07:38 -0700136static __init void
137omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
138{
139 struct irq_chip_generic *gc;
140 struct irq_chip_type *ct;
141
142 gc = irq_alloc_generic_chip("INTC", 1, irq_start, base,
143 handle_level_irq);
144 ct = gc->chip_types;
145 ct->chip.irq_ack = omap_mask_ack_irq;
146 ct->chip.irq_mask = irq_gc_mask_disable_reg;
147 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
148
149 ct->regs.ack = INTC_CONTROL;
150 ct->regs.enable = INTC_MIR_CLEAR0;
151 ct->regs.disable = INTC_MIR_SET0;
152 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
153 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
154}
155
Benoit Cousson52fa2122011-11-30 19:21:07 +0100156static void __init omap_init_irq(u32 base, int nr_irqs,
157 struct device_node *node)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000158{
Marc Zyngierab65be22011-11-15 17:22:45 +0000159 void __iomem *omap_irq_base;
Thomas Gleixner4b1135a2008-10-16 15:33:18 +0200160 unsigned long nr_of_irqs = 0;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000161 unsigned int nr_banks = 0;
Benoit Cousson52fa2122011-11-30 19:21:07 +0100162 int i, j, irq_base;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000163
Tony Lindgren741e3a82011-05-17 03:51:26 -0700164 omap_irq_base = ioremap(base, SZ_4K);
165 if (WARN_ON(!omap_irq_base))
166 return;
167
Benoit Cousson52fa2122011-11-30 19:21:07 +0100168 irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0);
169 if (irq_base < 0) {
170 pr_warn("Couldn't allocate IRQ numbers\n");
171 irq_base = 0;
172 }
173
174 domain = irq_domain_add_legacy(node, nr_irqs, irq_base, 0,
175 &irq_domain_simple_ops, NULL);
176
Tony Lindgren1dbae812005-11-10 14:26:51 +0000177 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
178 struct omap_irq_bank *bank = irq_banks + i;
179
Tony Lindgren741e3a82011-05-17 03:51:26 -0700180 bank->nr_irqs = nr_irqs;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800181
Tony Lindgren1b26fe82009-10-19 15:25:13 -0700182 /* Static mapping, never released */
183 bank->base_reg = ioremap(base, SZ_4K);
184 if (!bank->base_reg) {
Benoit Cousson52fa2122011-11-30 19:21:07 +0100185 pr_err("Could not ioremap irq bank%i\n", i);
Tony Lindgren1b26fe82009-10-19 15:25:13 -0700186 continue;
187 }
Paul Walmsley2e7509e2008-10-09 17:51:28 +0300188
Tony Lindgren1dbae812005-11-10 14:26:51 +0000189 omap_irq_bank_init_one(bank);
190
Tapani Utriainen5c30cdf2011-09-30 11:05:56 -0700191 for (j = 0; j < bank->nr_irqs; j += 32)
Benoit Cousson52fa2122011-11-30 19:21:07 +0100192 omap_alloc_gc(bank->base_reg + j, j + irq_base, 32);
Tony Lindgren667a11f2011-05-16 02:07:38 -0700193
Thomas Gleixner4b1135a2008-10-16 15:33:18 +0200194 nr_of_irqs += bank->nr_irqs;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000195 nr_banks++;
196 }
197
Benoit Cousson52fa2122011-11-30 19:21:07 +0100198 pr_info("Total of %ld interrupts on %d active controller%s\n",
199 nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : "");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000200}
201
Tony Lindgren741e3a82011-05-17 03:51:26 -0700202void __init omap2_init_irq(void)
203{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100204 omap_init_irq(OMAP24XX_IC_BASE, 96, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700205}
206
207void __init omap3_init_irq(void)
208{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100209 omap_init_irq(OMAP34XX_IC_BASE, 96, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700210}
211
Hemant Pedanekara9203602011-12-13 10:46:44 -0800212void __init ti81xx_init_irq(void)
Tony Lindgren741e3a82011-05-17 03:51:26 -0700213{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100214 omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700215}
216
Marc Zyngier2db14992011-09-06 09:56:17 +0100217static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs *regs)
218{
219 u32 irqnr;
220
221 do {
222 irqnr = readl_relaxed(base_addr + 0x98);
223 if (irqnr)
224 goto out;
225
226 irqnr = readl_relaxed(base_addr + 0xb8);
227 if (irqnr)
228 goto out;
229
230 irqnr = readl_relaxed(base_addr + 0xd8);
231#ifdef CONFIG_SOC_OMAPTI816X
232 if (irqnr)
233 goto out;
234 irqnr = readl_relaxed(base_addr + 0xf8);
235#endif
236
237out:
238 if (!irqnr)
239 break;
240
241 irqnr = readl_relaxed(base_addr + INTCPS_SIR_IRQ_OFFSET);
242 irqnr &= ACTIVEIRQ_MASK;
243
Benoit Cousson52fa2122011-11-30 19:21:07 +0100244 if (irqnr) {
245 irqnr = irq_find_mapping(domain, irqnr);
Marc Zyngier2db14992011-09-06 09:56:17 +0100246 handle_IRQ(irqnr, regs);
Benoit Cousson52fa2122011-11-30 19:21:07 +0100247 }
Marc Zyngier2db14992011-09-06 09:56:17 +0100248 } while (irqnr);
249}
250
251asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs)
252{
253 void __iomem *base_addr = OMAP2_IRQ_BASE;
254 omap_intc_handle_irq(base_addr, regs);
255}
256
Benoit Cousson52fa2122011-11-30 19:21:07 +0100257int __init omap_intc_of_init(struct device_node *node,
258 struct device_node *parent)
259{
260 struct resource res;
261 u32 nr_irqs = 96;
262
263 if (WARN_ON(!node))
264 return -ENODEV;
265
266 if (of_address_to_resource(node, 0, &res)) {
267 WARN(1, "unable to get intc registers\n");
268 return -EINVAL;
269 }
270
271 if (of_property_read_u32(node, "ti,intc-size", &nr_irqs))
272 pr_warn("unable to get intc-size, default to %d\n", nr_irqs);
273
274 omap_init_irq(res.start, nr_irqs, of_node_get(node));
275
276 return 0;
277}
278
Rajendra Nayak0addd612008-09-26 17:48:20 +0530279#ifdef CONFIG_ARCH_OMAP3
Felipe Balbiee23b932011-01-27 16:39:43 -0800280static struct omap3_intc_regs intc_context[ARRAY_SIZE(irq_banks)];
281
Rajendra Nayak0addd612008-09-26 17:48:20 +0530282void omap_intc_save_context(void)
283{
284 int ind = 0, i = 0;
285 for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) {
286 struct omap_irq_bank *bank = irq_banks + ind;
287 intc_context[ind].sysconfig =
288 intc_bank_read_reg(bank, INTC_SYSCONFIG);
289 intc_context[ind].protection =
290 intc_bank_read_reg(bank, INTC_PROTECTION);
291 intc_context[ind].idle =
292 intc_bank_read_reg(bank, INTC_IDLE);
293 intc_context[ind].threshold =
294 intc_bank_read_reg(bank, INTC_THRESHOLD);
295 for (i = 0; i < INTCPS_NR_IRQS; i++)
296 intc_context[ind].ilr[i] =
Aaro Koskinen2329e7c2009-03-12 18:12:29 +0200297 intc_bank_read_reg(bank, (0x100 + 0x4*i));
Rajendra Nayak0addd612008-09-26 17:48:20 +0530298 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
299 intc_context[ind].mir[i] =
300 intc_bank_read_reg(&irq_banks[0], INTC_MIR0 +
301 (0x20 * i));
302 }
303}
304
305void omap_intc_restore_context(void)
306{
307 int ind = 0, i = 0;
308
309 for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) {
310 struct omap_irq_bank *bank = irq_banks + ind;
311 intc_bank_write_reg(intc_context[ind].sysconfig,
312 bank, INTC_SYSCONFIG);
313 intc_bank_write_reg(intc_context[ind].sysconfig,
314 bank, INTC_SYSCONFIG);
315 intc_bank_write_reg(intc_context[ind].protection,
316 bank, INTC_PROTECTION);
317 intc_bank_write_reg(intc_context[ind].idle,
318 bank, INTC_IDLE);
319 intc_bank_write_reg(intc_context[ind].threshold,
320 bank, INTC_THRESHOLD);
321 for (i = 0; i < INTCPS_NR_IRQS; i++)
322 intc_bank_write_reg(intc_context[ind].ilr[i],
Aaro Koskinen2329e7c2009-03-12 18:12:29 +0200323 bank, (0x100 + 0x4*i));
Rajendra Nayak0addd612008-09-26 17:48:20 +0530324 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
325 intc_bank_write_reg(intc_context[ind].mir[i],
326 &irq_banks[0], INTC_MIR0 + (0x20 * i));
327 }
328 /* MIRs are saved and restore with other PRCM registers */
329}
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300330
331void omap3_intc_suspend(void)
332{
333 /* A pending interrupt would prevent OMAP from entering suspend */
334 omap_ack_irq(0);
335}
Tero Kristof18cc2f2009-10-23 19:03:50 +0300336
337void omap3_intc_prepare_idle(void)
338{
Jean Pihet447b8da2010-11-17 17:52:11 +0000339 /*
340 * Disable autoidle as it can stall interrupt controller,
341 * cf. errata ID i540 for 3430 (all revisions up to 3.1.x)
342 */
Tero Kristof18cc2f2009-10-23 19:03:50 +0300343 intc_bank_write_reg(0, &irq_banks[0], INTC_SYSCONFIG);
344}
345
346void omap3_intc_resume_idle(void)
347{
348 /* Re-enable autoidle */
349 intc_bank_write_reg(1, &irq_banks[0], INTC_SYSCONFIG);
350}
Marc Zyngier2db14992011-09-06 09:56:17 +0100351
352asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs)
353{
354 void __iomem *base_addr = OMAP3_IRQ_BASE;
355 omap_intc_handle_irq(base_addr, regs);
356}
Rajendra Nayak0addd612008-09-26 17:48:20 +0530357#endif /* CONFIG_ARCH_OMAP3 */