blob: 44d9cf4e74de51d0f8a6aafd8cd3df0b07fb769a [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"
Paul Walmsleye2ed89f2012-04-13 06:34:26 -060027#include "common.h"
Felipe Balbib65ecd42014-09-08 17:54:43 -070028#include "../../drivers/irqchip/irqchip.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
Rajendra Nayak0addd612008-09-26 17:48:20 +053060/* Structure to save interrupt controller context */
Felipe Balbi272a8b02014-09-08 17:54:38 -070061struct omap_intc_regs {
Rajendra Nayak0addd612008-09-26 17:48:20 +053062 u32 sysconfig;
63 u32 protection;
64 u32 idle;
65 u32 threshold;
Felipe Balbia88ab432014-09-08 17:54:35 -070066 u32 ilr[INTCPS_NR_ILR_REGS];
Rajendra Nayak0addd612008-09-26 17:48:20 +053067 u32 mir[INTCPS_NR_MIR_REGS];
68};
Felipe Balbi131b48c2014-09-08 17:54:42 -070069static struct omap_intc_regs intc_context;
70
71static struct irq_domain *domain;
72static void __iomem *omap_irq_base;
73static int omap_nr_irqs = 96;
Rajendra Nayak0addd612008-09-26 17:48:20 +053074
Paul Walmsley2e7509e2008-10-09 17:51:28 +030075/* INTC bank register get/set */
Felipe Balbi71be00c2014-09-08 17:54:32 -070076static void intc_writel(u32 reg, u32 val)
Paul Walmsley2e7509e2008-10-09 17:51:28 +030077{
Felipe Balbi71be00c2014-09-08 17:54:32 -070078 writel_relaxed(val, omap_irq_base + reg);
Paul Walmsley2e7509e2008-10-09 17:51:28 +030079}
80
Felipe Balbi71be00c2014-09-08 17:54:32 -070081static u32 intc_readl(u32 reg)
Paul Walmsley2e7509e2008-10-09 17:51:28 +030082{
Felipe Balbi71be00c2014-09-08 17:54:32 -070083 return readl_relaxed(omap_irq_base + reg);
Paul Walmsley2e7509e2008-10-09 17:51:28 +030084}
85
Felipe Balbi131b48c2014-09-08 17:54:42 -070086void omap_intc_save_context(void)
87{
88 int i;
89
90 intc_context.sysconfig =
91 intc_readl(INTC_SYSCONFIG);
92 intc_context.protection =
93 intc_readl(INTC_PROTECTION);
94 intc_context.idle =
95 intc_readl(INTC_IDLE);
96 intc_context.threshold =
97 intc_readl(INTC_THRESHOLD);
98
99 for (i = 0; i < omap_nr_irqs; i++)
100 intc_context.ilr[i] =
101 intc_readl((INTC_ILR0 + 0x4 * i));
102 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
103 intc_context.mir[i] =
104 intc_readl(INTC_MIR0 + (0x20 * i));
105}
106
107void omap_intc_restore_context(void)
108{
109 int i;
110
111 intc_writel(INTC_SYSCONFIG, intc_context.sysconfig);
112 intc_writel(INTC_PROTECTION, intc_context.protection);
113 intc_writel(INTC_IDLE, intc_context.idle);
114 intc_writel(INTC_THRESHOLD, intc_context.threshold);
115
116 for (i = 0; i < omap_nr_irqs; i++)
117 intc_writel(INTC_ILR0 + 0x4 * i,
118 intc_context.ilr[i]);
119
120 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
121 intc_writel(INTC_MIR0 + 0x20 * i,
122 intc_context.mir[i]);
123 /* MIRs are saved and restore with other PRCM registers */
124}
125
126void omap3_intc_prepare_idle(void)
127{
128 /*
129 * Disable autoidle as it can stall interrupt controller,
130 * cf. errata ID i540 for 3430 (all revisions up to 3.1.x)
131 */
132 intc_writel(INTC_SYSCONFIG, 0);
133}
134
135void omap3_intc_resume_idle(void)
136{
137 /* Re-enable autoidle */
138 intc_writel(INTC_SYSCONFIG, 1);
139}
140
Tony Lindgren1dbae812005-11-10 14:26:51 +0000141/* XXX: FIQ and additional INTC support (only MPU at the moment) */
Lennert Buytenhekdf303472010-11-29 10:39:59 +0100142static void omap_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000143{
Felipe Balbi71be00c2014-09-08 17:54:32 -0700144 intc_writel(INTC_CONTROL, 0x1);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000145}
146
Lennert Buytenhekdf303472010-11-29 10:39:59 +0100147static void omap_mask_ack_irq(struct irq_data *d)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000148{
Tony Lindgren667a11f2011-05-16 02:07:38 -0700149 irq_gc_mask_disable_reg(d);
Lennert Buytenhekdf303472010-11-29 10:39:59 +0100150 omap_ack_irq(d);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000151}
152
Felipe Balbia88ab432014-09-08 17:54:35 -0700153static void __init omap_irq_soft_reset(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000154{
155 unsigned long tmp;
156
Felipe Balbi71be00c2014-09-08 17:54:32 -0700157 tmp = intc_readl(INTC_REVISION) & 0xff;
Felipe Balbia88ab432014-09-08 17:54:35 -0700158
Paul Walmsley7852ec02012-07-26 00:54:26 -0600159 pr_info("IRQ: Found an INTC at 0x%p (revision %ld.%ld) with %d interrupts\n",
Felipe Balbia88ab432014-09-08 17:54:35 -0700160 omap_irq_base, tmp >> 4, tmp & 0xf, omap_nr_irqs);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000161
Felipe Balbi71be00c2014-09-08 17:54:32 -0700162 tmp = intc_readl(INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000163 tmp |= 1 << 1; /* soft reset */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700164 intc_writel(INTC_SYSCONFIG, tmp);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000165
Felipe Balbi71be00c2014-09-08 17:54:32 -0700166 while (!(intc_readl(INTC_SYSSTATUS) & 0x1))
Tony Lindgren1dbae812005-11-10 14:26:51 +0000167 /* Wait for reset to complete */;
Juha Yrjola375e12a2006-12-06 17:13:50 -0800168
169 /* Enable autoidle */
Felipe Balbi71be00c2014-09-08 17:54:32 -0700170 intc_writel(INTC_SYSCONFIG, 1 << 0);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000171}
172
Jouni Hogander94434532009-02-03 15:49:04 -0800173int omap_irq_pending(void)
174{
Felipe Balbia88ab432014-09-08 17:54:35 -0700175 int irq;
Jouni Hogander94434532009-02-03 15:49:04 -0800176
Felipe Balbia88ab432014-09-08 17:54:35 -0700177 for (irq = 0; irq < omap_nr_irqs; irq += 32)
178 if (intc_readl(INTC_PENDING_IRQ0 +
179 ((irq >> 5) << 5)))
180 return 1;
Jouni Hogander94434532009-02-03 15:49:04 -0800181 return 0;
182}
183
Felipe Balbi131b48c2014-09-08 17:54:42 -0700184void omap3_intc_suspend(void)
185{
186 /* A pending interrupt would prevent OMAP from entering suspend */
187 omap_ack_irq(NULL);
188}
189
Tony Lindgren667a11f2011-05-16 02:07:38 -0700190static __init void
191omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
192{
193 struct irq_chip_generic *gc;
194 struct irq_chip_type *ct;
195
196 gc = irq_alloc_generic_chip("INTC", 1, irq_start, base,
197 handle_level_irq);
198 ct = gc->chip_types;
199 ct->chip.irq_ack = omap_mask_ack_irq;
200 ct->chip.irq_mask = irq_gc_mask_disable_reg;
201 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
NeilBrowne3c83c22012-04-25 13:05:24 +1000202 ct->chip.flags |= IRQCHIP_SKIP_SET_WAKE;
Tony Lindgren667a11f2011-05-16 02:07:38 -0700203
Tony Lindgren667a11f2011-05-16 02:07:38 -0700204 ct->regs.enable = INTC_MIR_CLEAR0;
205 ct->regs.disable = INTC_MIR_SET0;
206 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
207 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
208}
209
Felipe Balbia74f0a12014-09-08 17:54:55 -0700210static void __init omap_init_irq(u32 base, struct device_node *node)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000211{
Felipe Balbia88ab432014-09-08 17:54:35 -0700212 int j, irq_base;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000213
Tony Lindgren741e3a82011-05-17 03:51:26 -0700214 omap_irq_base = ioremap(base, SZ_4K);
215 if (WARN_ON(!omap_irq_base))
216 return;
217
Felipe Balbia74f0a12014-09-08 17:54:55 -0700218 irq_base = irq_alloc_descs(-1, 0, omap_nr_irqs, 0);
Benoit Cousson52fa2122011-11-30 19:21:07 +0100219 if (irq_base < 0) {
220 pr_warn("Couldn't allocate IRQ numbers\n");
221 irq_base = 0;
222 }
223
Felipe Balbia74f0a12014-09-08 17:54:55 -0700224 domain = irq_domain_add_legacy(node, omap_nr_irqs, irq_base, 0,
Felipe Balbia88ab432014-09-08 17:54:35 -0700225 &irq_domain_simple_ops, NULL);
Benoit Cousson52fa2122011-11-30 19:21:07 +0100226
Felipe Balbia88ab432014-09-08 17:54:35 -0700227 omap_irq_soft_reset();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000228
Felipe Balbia88ab432014-09-08 17:54:35 -0700229 for (j = 0; j < omap_nr_irqs; j += 32)
230 omap_alloc_gc(omap_irq_base + j, j + irq_base, 32);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000231}
232
Felipe Balbi2aced892014-09-08 17:54:52 -0700233static asmlinkage void __exception_irq_entry
234omap_intc_handle_irq(struct pt_regs *regs)
Marc Zyngier2db14992011-09-06 09:56:17 +0100235{
236 u32 irqnr;
Stefan Sørensen698b4852014-03-06 16:27:15 +0100237 int handled_irq = 0;
Marc Zyngier2db14992011-09-06 09:56:17 +0100238
239 do {
Felipe Balbi11983652014-09-08 17:54:37 -0700240 irqnr = intc_readl(INTC_PENDING_IRQ0);
Marc Zyngier2db14992011-09-06 09:56:17 +0100241 if (irqnr)
242 goto out;
243
Felipe Balbi11983652014-09-08 17:54:37 -0700244 irqnr = intc_readl(INTC_PENDING_IRQ1);
Marc Zyngier2db14992011-09-06 09:56:17 +0100245 if (irqnr)
246 goto out;
247
Felipe Balbi11983652014-09-08 17:54:37 -0700248 irqnr = intc_readl(INTC_PENDING_IRQ2);
Markus Pargmann0bebda62013-10-17 09:18:38 +0200249#if IS_ENABLED(CONFIG_SOC_TI81XX) || IS_ENABLED(CONFIG_SOC_AM33XX)
Marc Zyngier2db14992011-09-06 09:56:17 +0100250 if (irqnr)
251 goto out;
Felipe Balbi11983652014-09-08 17:54:37 -0700252 irqnr = intc_readl(INTC_PENDING_IRQ3);
Marc Zyngier2db14992011-09-06 09:56:17 +0100253#endif
254
255out:
256 if (!irqnr)
257 break;
258
Felipe Balbi11983652014-09-08 17:54:37 -0700259 irqnr = intc_readl(INTC_SIR);
Marc Zyngier2db14992011-09-06 09:56:17 +0100260 irqnr &= ACTIVEIRQ_MASK;
261
Benoit Cousson52fa2122011-11-30 19:21:07 +0100262 if (irqnr) {
263 irqnr = irq_find_mapping(domain, irqnr);
Marc Zyngier2db14992011-09-06 09:56:17 +0100264 handle_IRQ(irqnr, regs);
Stefan Sørensen698b4852014-03-06 16:27:15 +0100265 handled_irq = 1;
Benoit Cousson52fa2122011-11-30 19:21:07 +0100266 }
Marc Zyngier2db14992011-09-06 09:56:17 +0100267 } while (irqnr);
Stefan Sørensen698b4852014-03-06 16:27:15 +0100268
269 /* If an irq is masked or deasserted while active, we will
270 * keep ending up here with no irq handled. So remove it from
271 * the INTC with an ack.*/
272 if (!handled_irq)
273 omap_ack_irq(NULL);
Marc Zyngier2db14992011-09-06 09:56:17 +0100274}
275
Felipe Balbia4d3c5d2014-09-08 17:54:51 -0700276void __init omap2_init_irq(void)
277{
Felipe Balbia74f0a12014-09-08 17:54:55 -0700278 omap_nr_irqs = 96;
279 omap_init_irq(OMAP24XX_IC_BASE, NULL);
Felipe Balbi2aced892014-09-08 17:54:52 -0700280 set_handle_irq(omap_intc_handle_irq);
Felipe Balbia4d3c5d2014-09-08 17:54:51 -0700281}
282
283void __init omap3_init_irq(void)
284{
Felipe Balbia74f0a12014-09-08 17:54:55 -0700285 omap_nr_irqs = 96;
286 omap_init_irq(OMAP34XX_IC_BASE, NULL);
Felipe Balbi2aced892014-09-08 17:54:52 -0700287 set_handle_irq(omap_intc_handle_irq);
Felipe Balbia4d3c5d2014-09-08 17:54:51 -0700288}
289
290void __init ti81xx_init_irq(void)
291{
Felipe Balbia74f0a12014-09-08 17:54:55 -0700292 omap_nr_irqs = 96;
293 omap_init_irq(OMAP34XX_IC_BASE, NULL);
Felipe Balbi2aced892014-09-08 17:54:52 -0700294 set_handle_irq(omap_intc_handle_irq);
Felipe Balbia4d3c5d2014-09-08 17:54:51 -0700295}
296
Felipe Balbi00b6b032014-09-08 17:54:43 -0700297static int __init intc_of_init(struct device_node *node,
Benoit Cousson52fa2122011-11-30 19:21:07 +0100298 struct device_node *parent)
299{
300 struct resource res;
Felipe Balbia74f0a12014-09-08 17:54:55 -0700301
302 omap_nr_irqs = 96;
Benoit Cousson52fa2122011-11-30 19:21:07 +0100303
304 if (WARN_ON(!node))
305 return -ENODEV;
306
307 if (of_address_to_resource(node, 0, &res)) {
308 WARN(1, "unable to get intc registers\n");
309 return -EINVAL;
310 }
311
Felipe Balbi470f30d2014-09-08 17:54:47 -0700312 if (of_device_is_compatible(node, "ti,am33xx-intc"))
Felipe Balbia74f0a12014-09-08 17:54:55 -0700313 omap_nr_irqs = 128;
Felipe Balbi470f30d2014-09-08 17:54:47 -0700314
Felipe Balbia74f0a12014-09-08 17:54:55 -0700315 omap_init_irq(res.start, of_node_get(node));
Benoit Cousson52fa2122011-11-30 19:21:07 +0100316
Felipe Balbi2aced892014-09-08 17:54:52 -0700317 set_handle_irq(omap_intc_handle_irq);
Felipe Balbib15c76b2014-09-08 17:54:43 -0700318
Benoit Cousson52fa2122011-11-30 19:21:07 +0100319 return 0;
320}
321
Felipe Balbia35db9a2014-09-08 17:54:46 -0700322IRQCHIP_DECLARE(omap2_intc, "ti,omap2-intc", intc_of_init);
323IRQCHIP_DECLARE(omap3_intc, "ti,omap3-intc", intc_of_init);
324IRQCHIP_DECLARE(am33xx_intc, "ti,am33xx-intc", intc_of_init);