blob: 1b3000618e64ff95b0cc776a43f6e1a5bbd8defa [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>
Tony Lindgrenee0839c2012-02-24 10:34:35 -080018
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>
R Sricharanc4082d42012-06-05 16:31:06 +053024#include <linux/of_irq.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000025
Tony Lindgrendbc04162012-08-31 10:59:07 -070026#include "soc.h"
Tony Lindgrenee0839c2012-02-24 10:34:35 -080027#include "iomap.h"
Paul Walmsleye2ed89f2012-04-13 06:34:26 -060028#include "common.h"
Paul Walmsley2e7509e2008-10-09 17:51:28 +030029
30/* selected INTC register offsets */
31
32#define INTC_REVISION 0x0000
33#define INTC_SYSCONFIG 0x0010
34#define INTC_SYSSTATUS 0x0014
Tony Lindgren6ccc4c02008-12-10 17:36:52 -080035#define INTC_SIR 0x0040
Paul Walmsley2e7509e2008-10-09 17:51:28 +030036#define INTC_CONTROL 0x0048
Rajendra Nayak0addd612008-09-26 17:48:20 +053037#define INTC_PROTECTION 0x004C
38#define INTC_IDLE 0x0050
39#define INTC_THRESHOLD 0x0068
40#define INTC_MIR0 0x0084
Paul Walmsley2e7509e2008-10-09 17:51:28 +030041#define INTC_MIR_CLEAR0 0x0088
42#define INTC_MIR_SET0 0x008c
43#define INTC_PENDING_IRQ0 0x0098
Felipe Balbi11983652014-09-08 17:54:37 -070044#define INTC_PENDING_IRQ1 0x00b8
45#define INTC_PENDING_IRQ2 0x00d8
46#define INTC_PENDING_IRQ3 0x00f8
Felipe Balbi33c7c7b2014-09-08 17:54:32 -070047#define INTC_ILR0 0x0100
Tony Lindgren1dbae812005-11-10 14:26:51 +000048
Marc Zyngier2db14992011-09-06 09:56:17 +010049#define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */
Felipe Balbia88ab432014-09-08 17:54:35 -070050#define INTCPS_NR_ILR_REGS 128
Tony Lindgren3003ce32012-09-04 17:43:29 -070051#define INTCPS_NR_MIR_REGS 3
Marc Zyngier2db14992011-09-06 09:56:17 +010052
Tony Lindgren1dbae812005-11-10 14:26:51 +000053/*
54 * OMAP2 has a number of different interrupt controllers, each interrupt
55 * controller is identified as its own "bank". Register definitions are
56 * fairly consistent for each bank, but not all registers are implemented
57 * for each bank.. when in doubt, consult the TRM.
58 */
Tony Lindgren1dbae812005-11-10 14:26:51 +000059
Benoit Cousson52fa2122011-11-30 19:21:07 +010060static struct irq_domain *domain;
Felipe Balbi176da6c2014-09-08 17:54:31 -070061static void __iomem *omap_irq_base;
Felipe Balbi421b0902014-09-08 17:54:34 -070062static int omap_nr_irqs = 96;
Benoit Cousson52fa2122011-11-30 19:21:07 +010063
Rajendra Nayak0addd612008-09-26 17:48:20 +053064/* Structure to save interrupt controller context */
Felipe Balbi272a8b02014-09-08 17:54:38 -070065struct omap_intc_regs {
Rajendra Nayak0addd612008-09-26 17:48:20 +053066 u32 sysconfig;
67 u32 protection;
68 u32 idle;
69 u32 threshold;
Felipe Balbia88ab432014-09-08 17:54:35 -070070 u32 ilr[INTCPS_NR_ILR_REGS];
Rajendra Nayak0addd612008-09-26 17:48:20 +053071 u32 mir[INTCPS_NR_MIR_REGS];
72};
73
Paul Walmsley2e7509e2008-10-09 17:51:28 +030074/* INTC bank register get/set */
Felipe Balbi71be00c2014-09-08 17:54:32 -070075static void intc_writel(u32 reg, u32 val)
Paul Walmsley2e7509e2008-10-09 17:51:28 +030076{
Felipe Balbi71be00c2014-09-08 17:54:32 -070077 writel_relaxed(val, omap_irq_base + reg);
Paul Walmsley2e7509e2008-10-09 17:51:28 +030078}
79
Felipe Balbi71be00c2014-09-08 17:54:32 -070080static u32 intc_readl(u32 reg)
Paul Walmsley2e7509e2008-10-09 17:51:28 +030081{
Felipe Balbi71be00c2014-09-08 17:54:32 -070082 return readl_relaxed(omap_irq_base + reg);
Paul Walmsley2e7509e2008-10-09 17:51:28 +030083}
84
Tony Lindgren1dbae812005-11-10 14:26:51 +000085/* XXX: FIQ and additional INTC support (only MPU at the moment) */
Lennert Buytenhekdf303472010-11-29 10:39:59 +010086static void omap_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +000087{
Felipe Balbi71be00c2014-09-08 17:54:32 -070088 intc_writel(INTC_CONTROL, 0x1);
Tony Lindgren1dbae812005-11-10 14:26:51 +000089}
90
Lennert Buytenhekdf303472010-11-29 10:39:59 +010091static void omap_mask_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +000092{
Tony Lindgren667a11f2011-05-16 02:07:38 -070093 irq_gc_mask_disable_reg(d);
Lennert Buytenhekdf303472010-11-29 10:39:59 +010094 omap_ack_irq(d);
Tony Lindgren1dbae812005-11-10 14:26:51 +000095}
96
Felipe Balbia88ab432014-09-08 17:54:35 -070097static void __init omap_irq_soft_reset(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +000098{
99 unsigned long tmp;
100
Felipe Balbi71be00c2014-09-08 17:54:32 -0700101 tmp = intc_readl(INTC_REVISION) & 0xff;
Felipe Balbia88ab432014-09-08 17:54:35 -0700102
Paul Walmsley7852ec02012-07-26 00:54:26 -0600103 pr_info("IRQ: Found an INTC at 0x%p (revision %ld.%ld) with %d interrupts\n",
Felipe Balbia88ab432014-09-08 17:54:35 -0700104 omap_irq_base, tmp >> 4, tmp & 0xf, omap_nr_irqs);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000105
Felipe Balbi71be00c2014-09-08 17:54:32 -0700106 tmp = intc_readl(INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000107 tmp |= 1 << 1; /* soft reset */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700108 intc_writel(INTC_SYSCONFIG, tmp);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000109
Felipe Balbi71be00c2014-09-08 17:54:32 -0700110 while (!(intc_readl(INTC_SYSSTATUS) & 0x1))
Tony Lindgren1dbae812005-11-10 14:26:51 +0000111 /* Wait for reset to complete */;
Juha Yrjola375e12a2006-12-06 17:13:50 -0800112
113 /* Enable autoidle */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700114 intc_writel(INTC_SYSCONFIG, 1 << 0);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000115}
116
Jouni Hogander94434532009-02-03 15:49:04 -0800117int omap_irq_pending(void)
118{
Felipe Balbia88ab432014-09-08 17:54:35 -0700119 int irq;
Jouni Hogander94434532009-02-03 15:49:04 -0800120
Felipe Balbia88ab432014-09-08 17:54:35 -0700121 for (irq = 0; irq < omap_nr_irqs; irq += 32)
122 if (intc_readl(INTC_PENDING_IRQ0 +
123 ((irq >> 5) << 5)))
124 return 1;
Jouni Hogander94434532009-02-03 15:49:04 -0800125 return 0;
126}
127
Tony Lindgren667a11f2011-05-16 02:07:38 -0700128static __init void
129omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
130{
131 struct irq_chip_generic *gc;
132 struct irq_chip_type *ct;
133
134 gc = irq_alloc_generic_chip("INTC", 1, irq_start, base,
135 handle_level_irq);
136 ct = gc->chip_types;
137 ct->chip.irq_ack = omap_mask_ack_irq;
138 ct->chip.irq_mask = irq_gc_mask_disable_reg;
139 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
NeilBrowne3c83c22012-04-25 13:05:24 +1000140 ct->chip.flags |= IRQCHIP_SKIP_SET_WAKE;
Tony Lindgren667a11f2011-05-16 02:07:38 -0700141
Tony Lindgren667a11f2011-05-16 02:07:38 -0700142 ct->regs.enable = INTC_MIR_CLEAR0;
143 ct->regs.disable = INTC_MIR_SET0;
144 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
145 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
146}
147
Benoit Cousson52fa2122011-11-30 19:21:07 +0100148static void __init omap_init_irq(u32 base, int nr_irqs,
149 struct device_node *node)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000150{
Felipe Balbia88ab432014-09-08 17:54:35 -0700151 int j, irq_base;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000152
Tony Lindgren741e3a82011-05-17 03:51:26 -0700153 omap_irq_base = ioremap(base, SZ_4K);
154 if (WARN_ON(!omap_irq_base))
155 return;
156
Felipe Balbi421b0902014-09-08 17:54:34 -0700157 omap_nr_irqs = nr_irqs;
158
Benoit Cousson52fa2122011-11-30 19:21:07 +0100159 irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0);
160 if (irq_base < 0) {
161 pr_warn("Couldn't allocate IRQ numbers\n");
162 irq_base = 0;
163 }
164
165 domain = irq_domain_add_legacy(node, nr_irqs, irq_base, 0,
Felipe Balbia88ab432014-09-08 17:54:35 -0700166 &irq_domain_simple_ops, NULL);
Benoit Cousson52fa2122011-11-30 19:21:07 +0100167
Felipe Balbia88ab432014-09-08 17:54:35 -0700168 omap_irq_soft_reset();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000169
Felipe Balbia88ab432014-09-08 17:54:35 -0700170 for (j = 0; j < omap_nr_irqs; j += 32)
171 omap_alloc_gc(omap_irq_base + j, j + irq_base, 32);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000172}
173
Tony Lindgren741e3a82011-05-17 03:51:26 -0700174void __init omap2_init_irq(void)
175{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100176 omap_init_irq(OMAP24XX_IC_BASE, 96, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700177}
178
179void __init omap3_init_irq(void)
180{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100181 omap_init_irq(OMAP34XX_IC_BASE, 96, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700182}
183
Hemant Pedanekara9203602011-12-13 10:46:44 -0800184void __init ti81xx_init_irq(void)
Tony Lindgren741e3a82011-05-17 03:51:26 -0700185{
Benoit Cousson52fa2122011-11-30 19:21:07 +0100186 omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
Tony Lindgren741e3a82011-05-17 03:51:26 -0700187}
188
Felipe Balbid1e66d62014-09-08 17:54:37 -0700189static inline void omap_intc_handle_irq(struct pt_regs *regs)
Marc Zyngier2db14992011-09-06 09:56:17 +0100190{
191 u32 irqnr;
Stefan Sørensen698b4852014-03-06 16:27:15 +0100192 int handled_irq = 0;
Marc Zyngier2db14992011-09-06 09:56:17 +0100193
194 do {
Felipe Balbi11983652014-09-08 17:54:37 -0700195 irqnr = intc_readl(INTC_PENDING_IRQ0);
Marc Zyngier2db14992011-09-06 09:56:17 +0100196 if (irqnr)
197 goto out;
198
Felipe Balbi11983652014-09-08 17:54:37 -0700199 irqnr = intc_readl(INTC_PENDING_IRQ1);
Marc Zyngier2db14992011-09-06 09:56:17 +0100200 if (irqnr)
201 goto out;
202
Felipe Balbi11983652014-09-08 17:54:37 -0700203 irqnr = intc_readl(INTC_PENDING_IRQ2);
Markus Pargmann0bebda62013-10-17 09:18:38 +0200204#if IS_ENABLED(CONFIG_SOC_TI81XX) || IS_ENABLED(CONFIG_SOC_AM33XX)
Marc Zyngier2db14992011-09-06 09:56:17 +0100205 if (irqnr)
206 goto out;
Felipe Balbi11983652014-09-08 17:54:37 -0700207 irqnr = intc_readl(INTC_PENDING_IRQ3);
Marc Zyngier2db14992011-09-06 09:56:17 +0100208#endif
209
210out:
211 if (!irqnr)
212 break;
213
Felipe Balbi11983652014-09-08 17:54:37 -0700214 irqnr = intc_readl(INTC_SIR);
Marc Zyngier2db14992011-09-06 09:56:17 +0100215 irqnr &= ACTIVEIRQ_MASK;
216
Benoit Cousson52fa2122011-11-30 19:21:07 +0100217 if (irqnr) {
218 irqnr = irq_find_mapping(domain, irqnr);
Marc Zyngier2db14992011-09-06 09:56:17 +0100219 handle_IRQ(irqnr, regs);
Stefan Sørensen698b4852014-03-06 16:27:15 +0100220 handled_irq = 1;
Benoit Cousson52fa2122011-11-30 19:21:07 +0100221 }
Marc Zyngier2db14992011-09-06 09:56:17 +0100222 } while (irqnr);
Stefan Sørensen698b4852014-03-06 16:27:15 +0100223
224 /* If an irq is masked or deasserted while active, we will
225 * keep ending up here with no irq handled. So remove it from
226 * the INTC with an ack.*/
227 if (!handled_irq)
228 omap_ack_irq(NULL);
Marc Zyngier2db14992011-09-06 09:56:17 +0100229}
230
231asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs)
232{
Felipe Balbid1e66d62014-09-08 17:54:37 -0700233 omap_intc_handle_irq(regs);
Marc Zyngier2db14992011-09-06 09:56:17 +0100234}
235
R Sricharanc4082d42012-06-05 16:31:06 +0530236int __init intc_of_init(struct device_node *node,
Benoit Cousson52fa2122011-11-30 19:21:07 +0100237 struct device_node *parent)
238{
239 struct resource res;
Venkatraman Sb56f2cb2012-06-25 15:56:39 +0530240 u32 nr_irq = 96;
Benoit Cousson52fa2122011-11-30 19:21:07 +0100241
242 if (WARN_ON(!node))
243 return -ENODEV;
244
245 if (of_address_to_resource(node, 0, &res)) {
246 WARN(1, "unable to get intc registers\n");
247 return -EINVAL;
248 }
249
Venkatraman Sb56f2cb2012-06-25 15:56:39 +0530250 if (of_property_read_u32(node, "ti,intc-size", &nr_irq))
251 pr_warn("unable to get intc-size, default to %d\n", nr_irq);
Benoit Cousson52fa2122011-11-30 19:21:07 +0100252
Venkatraman Sb56f2cb2012-06-25 15:56:39 +0530253 omap_init_irq(res.start, nr_irq, of_node_get(node));
Benoit Cousson52fa2122011-11-30 19:21:07 +0100254
255 return 0;
256}
257
Uwe Kleine-König31957602014-09-10 10:26:17 +0200258static const struct of_device_id irq_match[] __initconst = {
R Sricharanc4082d42012-06-05 16:31:06 +0530259 { .compatible = "ti,omap2-intc", .data = intc_of_init, },
260 { }
261};
262
263void __init omap_intc_of_init(void)
264{
265 of_irq_init(irq_match);
266}
267
Afzal Mohammed08f30982012-05-11 00:38:49 +0530268#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM33XX)
Felipe Balbi272a8b02014-09-08 17:54:38 -0700269static struct omap_intc_regs intc_context;
Felipe Balbiee23b932011-01-27 16:39:43 -0800270
Rajendra Nayak0addd612008-09-26 17:48:20 +0530271void omap_intc_save_context(void)
272{
Felipe Balbia88ab432014-09-08 17:54:35 -0700273 int i;
274
275 intc_context.sysconfig =
276 intc_readl(INTC_SYSCONFIG);
277 intc_context.protection =
278 intc_readl(INTC_PROTECTION);
279 intc_context.idle =
280 intc_readl(INTC_IDLE);
281 intc_context.threshold =
282 intc_readl(INTC_THRESHOLD);
283
284 for (i = 0; i < omap_nr_irqs; i++)
285 intc_context.ilr[i] =
286 intc_readl((INTC_ILR0 + 0x4 * i));
287 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
288 intc_context.mir[i] =
289 intc_readl(INTC_MIR0 + (0x20 * i));
Rajendra Nayak0addd612008-09-26 17:48:20 +0530290}
291
292void omap_intc_restore_context(void)
293{
Felipe Balbia88ab432014-09-08 17:54:35 -0700294 int i;
Rajendra Nayak0addd612008-09-26 17:48:20 +0530295
Felipe Balbia88ab432014-09-08 17:54:35 -0700296 intc_writel(INTC_SYSCONFIG, intc_context.sysconfig);
297 intc_writel(INTC_PROTECTION, intc_context.protection);
298 intc_writel(INTC_IDLE, intc_context.idle);
299 intc_writel(INTC_THRESHOLD, intc_context.threshold);
300
301 for (i = 0; i < omap_nr_irqs; i++)
302 intc_writel(INTC_ILR0 + 0x4 * i,
303 intc_context.ilr[i]);
304
305 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
306 intc_writel(INTC_MIR0 + 0x20 * i,
307 intc_context.mir[i]);
Rajendra Nayak0addd612008-09-26 17:48:20 +0530308 /* MIRs are saved and restore with other PRCM registers */
309}
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300310
311void omap3_intc_suspend(void)
312{
313 /* A pending interrupt would prevent OMAP from entering suspend */
Paul Walmsleya7022d62012-04-13 06:34:28 -0600314 omap_ack_irq(NULL);
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300315}
Tero Kristof18cc2f2009-10-23 19:03:50 +0300316
317void omap3_intc_prepare_idle(void)
318{
Jean Pihet447b8da2010-11-17 17:52:11 +0000319 /*
320 * Disable autoidle as it can stall interrupt controller,
321 * cf. errata ID i540 for 3430 (all revisions up to 3.1.x)
322 */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700323 intc_writel(INTC_SYSCONFIG, 0);
Tero Kristof18cc2f2009-10-23 19:03:50 +0300324}
325
326void omap3_intc_resume_idle(void)
327{
328 /* Re-enable autoidle */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700329 intc_writel(INTC_SYSCONFIG, 1);
Tero Kristof18cc2f2009-10-23 19:03:50 +0300330}
Marc Zyngier2db14992011-09-06 09:56:17 +0100331
332asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs)
333{
Felipe Balbid1e66d62014-09-08 17:54:37 -0700334 omap_intc_handle_irq(regs);
Marc Zyngier2db14992011-09-06 09:56:17 +0100335}
Rajendra Nayak0addd612008-09-26 17:48:20 +0530336#endif /* CONFIG_ARCH_OMAP3 */