Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap2/irq.c |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 3 | * |
| 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 Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 14 | #include <linux/module.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 15 | #include <linux/init.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 17 | #include <linux/io.h> |
Tony Lindgren | ee0839c | 2012-02-24 10:34:35 -0800 | [diff] [blame] | 18 | |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 19 | #include <asm/exception.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 20 | #include <asm/mach/irq.h> |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 21 | #include <linux/irqdomain.h> |
| 22 | #include <linux/of.h> |
| 23 | #include <linux/of_address.h> |
R Sricharan | c4082d4 | 2012-06-05 16:31:06 +0530 | [diff] [blame] | 24 | #include <linux/of_irq.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 25 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 26 | #include "soc.h" |
Tony Lindgren | ee0839c | 2012-02-24 10:34:35 -0800 | [diff] [blame] | 27 | #include "iomap.h" |
Paul Walmsley | e2ed89f | 2012-04-13 06:34:26 -0600 | [diff] [blame] | 28 | #include "common.h" |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 29 | |
| 30 | /* selected INTC register offsets */ |
| 31 | |
| 32 | #define INTC_REVISION 0x0000 |
| 33 | #define INTC_SYSCONFIG 0x0010 |
| 34 | #define INTC_SYSSTATUS 0x0014 |
Tony Lindgren | 6ccc4c0 | 2008-12-10 17:36:52 -0800 | [diff] [blame] | 35 | #define INTC_SIR 0x0040 |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 36 | #define INTC_CONTROL 0x0048 |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 37 | #define INTC_PROTECTION 0x004C |
| 38 | #define INTC_IDLE 0x0050 |
| 39 | #define INTC_THRESHOLD 0x0068 |
| 40 | #define INTC_MIR0 0x0084 |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 41 | #define INTC_MIR_CLEAR0 0x0088 |
| 42 | #define INTC_MIR_SET0 0x008c |
| 43 | #define INTC_PENDING_IRQ0 0x0098 |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 44 | #define INTC_PENDING_IRQ1 0x00b8 |
| 45 | #define INTC_PENDING_IRQ2 0x00d8 |
| 46 | #define INTC_PENDING_IRQ3 0x00f8 |
Felipe Balbi | 33c7c7b | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 47 | #define INTC_ILR0 0x0100 |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 48 | |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 49 | #define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */ |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 50 | #define INTCPS_NR_ILR_REGS 128 |
Tony Lindgren | 3003ce3 | 2012-09-04 17:43:29 -0700 | [diff] [blame] | 51 | #define INTCPS_NR_MIR_REGS 3 |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 52 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 53 | /* |
| 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 Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 59 | |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 60 | /* Structure to save interrupt controller context */ |
Felipe Balbi | 272a8b0 | 2014-09-08 17:54:38 -0700 | [diff] [blame] | 61 | struct omap_intc_regs { |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 62 | u32 sysconfig; |
| 63 | u32 protection; |
| 64 | u32 idle; |
| 65 | u32 threshold; |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 66 | u32 ilr[INTCPS_NR_ILR_REGS]; |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 67 | u32 mir[INTCPS_NR_MIR_REGS]; |
| 68 | }; |
Felipe Balbi | 131b48c | 2014-09-08 17:54:42 -0700 | [diff] [blame^] | 69 | static struct omap_intc_regs intc_context; |
| 70 | |
| 71 | static struct irq_domain *domain; |
| 72 | static void __iomem *omap_irq_base; |
| 73 | static int omap_nr_irqs = 96; |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 74 | |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 75 | /* INTC bank register get/set */ |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 76 | static void intc_writel(u32 reg, u32 val) |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 77 | { |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 78 | writel_relaxed(val, omap_irq_base + reg); |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 79 | } |
| 80 | |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 81 | static u32 intc_readl(u32 reg) |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 82 | { |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 83 | return readl_relaxed(omap_irq_base + reg); |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 84 | } |
| 85 | |
Felipe Balbi | 131b48c | 2014-09-08 17:54:42 -0700 | [diff] [blame^] | 86 | void 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 | |
| 107 | void 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 | |
| 126 | void 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 | |
| 135 | void omap3_intc_resume_idle(void) |
| 136 | { |
| 137 | /* Re-enable autoidle */ |
| 138 | intc_writel(INTC_SYSCONFIG, 1); |
| 139 | } |
| 140 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 141 | /* XXX: FIQ and additional INTC support (only MPU at the moment) */ |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 142 | static void omap_ack_irq(struct irq_data *d) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 143 | { |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 144 | intc_writel(INTC_CONTROL, 0x1); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 147 | static void omap_mask_ack_irq(struct irq_data *d) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 148 | { |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 149 | irq_gc_mask_disable_reg(d); |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 150 | omap_ack_irq(d); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 153 | static void __init omap_irq_soft_reset(void) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 154 | { |
| 155 | unsigned long tmp; |
| 156 | |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 157 | tmp = intc_readl(INTC_REVISION) & 0xff; |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 158 | |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 159 | pr_info("IRQ: Found an INTC at 0x%p (revision %ld.%ld) with %d interrupts\n", |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 160 | omap_irq_base, tmp >> 4, tmp & 0xf, omap_nr_irqs); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 161 | |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 162 | tmp = intc_readl(INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 163 | tmp |= 1 << 1; /* soft reset */ |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 164 | intc_writel(INTC_SYSCONFIG, tmp); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 165 | |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 166 | while (!(intc_readl(INTC_SYSSTATUS) & 0x1)) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 167 | /* Wait for reset to complete */; |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 168 | |
| 169 | /* Enable autoidle */ |
Felipe Balbi | 71be00c | 2014-09-08 17:54:32 -0700 | [diff] [blame] | 170 | intc_writel(INTC_SYSCONFIG, 1 << 0); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Jouni Hogander | 9443453 | 2009-02-03 15:49:04 -0800 | [diff] [blame] | 173 | int omap_irq_pending(void) |
| 174 | { |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 175 | int irq; |
Jouni Hogander | 9443453 | 2009-02-03 15:49:04 -0800 | [diff] [blame] | 176 | |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 177 | for (irq = 0; irq < omap_nr_irqs; irq += 32) |
| 178 | if (intc_readl(INTC_PENDING_IRQ0 + |
| 179 | ((irq >> 5) << 5))) |
| 180 | return 1; |
Jouni Hogander | 9443453 | 2009-02-03 15:49:04 -0800 | [diff] [blame] | 181 | return 0; |
| 182 | } |
| 183 | |
Felipe Balbi | 131b48c | 2014-09-08 17:54:42 -0700 | [diff] [blame^] | 184 | void omap3_intc_suspend(void) |
| 185 | { |
| 186 | /* A pending interrupt would prevent OMAP from entering suspend */ |
| 187 | omap_ack_irq(NULL); |
| 188 | } |
| 189 | |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 190 | static __init void |
| 191 | omap_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; |
NeilBrown | e3c83c2 | 2012-04-25 13:05:24 +1000 | [diff] [blame] | 202 | ct->chip.flags |= IRQCHIP_SKIP_SET_WAKE; |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 203 | |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 204 | 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 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 210 | static void __init omap_init_irq(u32 base, int nr_irqs, |
| 211 | struct device_node *node) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 212 | { |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 213 | int j, irq_base; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 214 | |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 215 | omap_irq_base = ioremap(base, SZ_4K); |
| 216 | if (WARN_ON(!omap_irq_base)) |
| 217 | return; |
| 218 | |
Felipe Balbi | 421b090 | 2014-09-08 17:54:34 -0700 | [diff] [blame] | 219 | omap_nr_irqs = nr_irqs; |
| 220 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 221 | irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0); |
| 222 | if (irq_base < 0) { |
| 223 | pr_warn("Couldn't allocate IRQ numbers\n"); |
| 224 | irq_base = 0; |
| 225 | } |
| 226 | |
| 227 | domain = irq_domain_add_legacy(node, nr_irqs, irq_base, 0, |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 228 | &irq_domain_simple_ops, NULL); |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 229 | |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 230 | omap_irq_soft_reset(); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 231 | |
Felipe Balbi | a88ab43 | 2014-09-08 17:54:35 -0700 | [diff] [blame] | 232 | for (j = 0; j < omap_nr_irqs; j += 32) |
| 233 | omap_alloc_gc(omap_irq_base + j, j + irq_base, 32); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 236 | void __init omap2_init_irq(void) |
| 237 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 238 | omap_init_irq(OMAP24XX_IC_BASE, 96, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | void __init omap3_init_irq(void) |
| 242 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 243 | omap_init_irq(OMAP34XX_IC_BASE, 96, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Hemant Pedanekar | a920360 | 2011-12-13 10:46:44 -0800 | [diff] [blame] | 246 | void __init ti81xx_init_irq(void) |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 247 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 248 | omap_init_irq(OMAP34XX_IC_BASE, 128, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 249 | } |
| 250 | |
Felipe Balbi | d1e66d6 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 251 | static inline void omap_intc_handle_irq(struct pt_regs *regs) |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 252 | { |
| 253 | u32 irqnr; |
Stefan Sørensen | 698b485 | 2014-03-06 16:27:15 +0100 | [diff] [blame] | 254 | int handled_irq = 0; |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 255 | |
| 256 | do { |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 257 | irqnr = intc_readl(INTC_PENDING_IRQ0); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 258 | if (irqnr) |
| 259 | goto out; |
| 260 | |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 261 | irqnr = intc_readl(INTC_PENDING_IRQ1); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 262 | if (irqnr) |
| 263 | goto out; |
| 264 | |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 265 | irqnr = intc_readl(INTC_PENDING_IRQ2); |
Markus Pargmann | 0bebda6 | 2013-10-17 09:18:38 +0200 | [diff] [blame] | 266 | #if IS_ENABLED(CONFIG_SOC_TI81XX) || IS_ENABLED(CONFIG_SOC_AM33XX) |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 267 | if (irqnr) |
| 268 | goto out; |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 269 | irqnr = intc_readl(INTC_PENDING_IRQ3); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 270 | #endif |
| 271 | |
| 272 | out: |
| 273 | if (!irqnr) |
| 274 | break; |
| 275 | |
Felipe Balbi | 1198365 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 276 | irqnr = intc_readl(INTC_SIR); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 277 | irqnr &= ACTIVEIRQ_MASK; |
| 278 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 279 | if (irqnr) { |
| 280 | irqnr = irq_find_mapping(domain, irqnr); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 281 | handle_IRQ(irqnr, regs); |
Stefan Sørensen | 698b485 | 2014-03-06 16:27:15 +0100 | [diff] [blame] | 282 | handled_irq = 1; |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 283 | } |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 284 | } while (irqnr); |
Stefan Sørensen | 698b485 | 2014-03-06 16:27:15 +0100 | [diff] [blame] | 285 | |
| 286 | /* If an irq is masked or deasserted while active, we will |
| 287 | * keep ending up here with no irq handled. So remove it from |
| 288 | * the INTC with an ack.*/ |
| 289 | if (!handled_irq) |
| 290 | omap_ack_irq(NULL); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs) |
| 294 | { |
Felipe Balbi | d1e66d6 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 295 | omap_intc_handle_irq(regs); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 296 | } |
| 297 | |
R Sricharan | c4082d4 | 2012-06-05 16:31:06 +0530 | [diff] [blame] | 298 | int __init intc_of_init(struct device_node *node, |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 299 | struct device_node *parent) |
| 300 | { |
| 301 | struct resource res; |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 302 | u32 nr_irq = 96; |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 303 | |
| 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 | |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 312 | if (of_property_read_u32(node, "ti,intc-size", &nr_irq)) |
| 313 | pr_warn("unable to get intc-size, default to %d\n", nr_irq); |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 314 | |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 315 | omap_init_irq(res.start, nr_irq, of_node_get(node)); |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | |
Uwe Kleine-König | 3195760 | 2014-09-10 10:26:17 +0200 | [diff] [blame] | 320 | static const struct of_device_id irq_match[] __initconst = { |
R Sricharan | c4082d4 | 2012-06-05 16:31:06 +0530 | [diff] [blame] | 321 | { .compatible = "ti,omap2-intc", .data = intc_of_init, }, |
| 322 | { } |
| 323 | }; |
| 324 | |
| 325 | void __init omap_intc_of_init(void) |
| 326 | { |
| 327 | of_irq_init(irq_match); |
| 328 | } |
| 329 | |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 330 | asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs) |
| 331 | { |
Felipe Balbi | d1e66d6 | 2014-09-08 17:54:37 -0700 | [diff] [blame] | 332 | omap_intc_handle_irq(regs); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 333 | } |