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 | ee0839c | 2012-02-24 10:34:35 -0800 | [diff] [blame] | 26 | #include <mach/hardware.h> |
| 27 | |
| 28 | #include "iomap.h" |
Paul Walmsley | e2ed89f | 2012-04-13 06:34:26 -0600 | [diff] [blame] | 29 | #include "common.h" |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 30 | |
| 31 | /* selected INTC register offsets */ |
| 32 | |
| 33 | #define INTC_REVISION 0x0000 |
| 34 | #define INTC_SYSCONFIG 0x0010 |
| 35 | #define INTC_SYSSTATUS 0x0014 |
Tony Lindgren | 6ccc4c0 | 2008-12-10 17:36:52 -0800 | [diff] [blame] | 36 | #define INTC_SIR 0x0040 |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 37 | #define INTC_CONTROL 0x0048 |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 38 | #define INTC_PROTECTION 0x004C |
| 39 | #define INTC_IDLE 0x0050 |
| 40 | #define INTC_THRESHOLD 0x0068 |
| 41 | #define INTC_MIR0 0x0084 |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 42 | #define INTC_MIR_CLEAR0 0x0088 |
| 43 | #define INTC_MIR_SET0 0x008c |
| 44 | #define INTC_PENDING_IRQ0 0x0098 |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 45 | /* Number of IRQ state bits in each MIR register */ |
| 46 | #define IRQ_BITS_PER_REG 32 |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 47 | |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 48 | #define OMAP2_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE) |
| 49 | #define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE) |
| 50 | #define INTCPS_SIR_IRQ_OFFSET 0x0040 /* omap2/3 active interrupt offset */ |
| 51 | #define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */ |
| 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 | */ |
| 59 | static struct omap_irq_bank { |
Russell King | e8a91c9 | 2008-09-01 22:07:37 +0100 | [diff] [blame] | 60 | void __iomem *base_reg; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 61 | unsigned int nr_irqs; |
| 62 | } __attribute__ ((aligned(4))) irq_banks[] = { |
| 63 | { |
| 64 | /* MPU INTC */ |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 65 | .nr_irqs = 96, |
Tony Lindgren | 646e3ed | 2008-10-06 15:49:36 +0300 | [diff] [blame] | 66 | }, |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 67 | }; |
| 68 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 69 | static struct irq_domain *domain; |
| 70 | |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 71 | /* Structure to save interrupt controller context */ |
| 72 | struct omap3_intc_regs { |
| 73 | u32 sysconfig; |
| 74 | u32 protection; |
| 75 | u32 idle; |
| 76 | u32 threshold; |
| 77 | u32 ilr[INTCPS_NR_IRQS]; |
| 78 | u32 mir[INTCPS_NR_MIR_REGS]; |
| 79 | }; |
| 80 | |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 81 | /* INTC bank register get/set */ |
| 82 | |
| 83 | static void intc_bank_write_reg(u32 val, struct omap_irq_bank *bank, u16 reg) |
| 84 | { |
| 85 | __raw_writel(val, bank->base_reg + reg); |
| 86 | } |
| 87 | |
| 88 | static u32 intc_bank_read_reg(struct omap_irq_bank *bank, u16 reg) |
| 89 | { |
| 90 | return __raw_readl(bank->base_reg + reg); |
| 91 | } |
| 92 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 93 | /* XXX: FIQ and additional INTC support (only MPU at the moment) */ |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 94 | static void omap_ack_irq(struct irq_data *d) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 95 | { |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 96 | intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 99 | static void omap_mask_ack_irq(struct irq_data *d) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 100 | { |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 101 | irq_gc_mask_disable_reg(d); |
Lennert Buytenhek | df30347 | 2010-11-29 10:39:59 +0100 | [diff] [blame] | 102 | omap_ack_irq(d); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 105 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) |
| 106 | { |
| 107 | unsigned long tmp; |
| 108 | |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 109 | tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff; |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame^] | 110 | pr_info("IRQ: Found an INTC at 0x%p (revision %ld.%ld) with %d interrupts\n", |
| 111 | bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 112 | |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 113 | tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 114 | tmp |= 1 << 1; /* soft reset */ |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 115 | intc_bank_write_reg(tmp, bank, INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 116 | |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 117 | while (!(intc_bank_read_reg(bank, INTC_SYSSTATUS) & 0x1)) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 118 | /* Wait for reset to complete */; |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 119 | |
| 120 | /* Enable autoidle */ |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 121 | intc_bank_write_reg(1 << 0, bank, INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Jouni Hogander | 9443453 | 2009-02-03 15:49:04 -0800 | [diff] [blame] | 124 | int omap_irq_pending(void) |
| 125 | { |
| 126 | int i; |
| 127 | |
| 128 | for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { |
| 129 | struct omap_irq_bank *bank = irq_banks + i; |
| 130 | int irq; |
| 131 | |
| 132 | for (irq = 0; irq < bank->nr_irqs; irq += 32) |
| 133 | if (intc_bank_read_reg(bank, INTC_PENDING_IRQ0 + |
| 134 | ((irq >> 5) << 5))) |
| 135 | return 1; |
| 136 | } |
| 137 | return 0; |
| 138 | } |
| 139 | |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 140 | static __init void |
| 141 | omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num) |
| 142 | { |
| 143 | struct irq_chip_generic *gc; |
| 144 | struct irq_chip_type *ct; |
| 145 | |
| 146 | gc = irq_alloc_generic_chip("INTC", 1, irq_start, base, |
| 147 | handle_level_irq); |
| 148 | ct = gc->chip_types; |
| 149 | ct->chip.irq_ack = omap_mask_ack_irq; |
| 150 | ct->chip.irq_mask = irq_gc_mask_disable_reg; |
| 151 | ct->chip.irq_unmask = irq_gc_unmask_enable_reg; |
NeilBrown | e3c83c2 | 2012-04-25 13:05:24 +1000 | [diff] [blame] | 152 | ct->chip.flags |= IRQCHIP_SKIP_SET_WAKE; |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 153 | |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 154 | ct->regs.enable = INTC_MIR_CLEAR0; |
| 155 | ct->regs.disable = INTC_MIR_SET0; |
| 156 | irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE, |
| 157 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); |
| 158 | } |
| 159 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 160 | static void __init omap_init_irq(u32 base, int nr_irqs, |
| 161 | struct device_node *node) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 162 | { |
Marc Zyngier | ab65be2 | 2011-11-15 17:22:45 +0000 | [diff] [blame] | 163 | void __iomem *omap_irq_base; |
Thomas Gleixner | 4b1135a | 2008-10-16 15:33:18 +0200 | [diff] [blame] | 164 | unsigned long nr_of_irqs = 0; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 165 | unsigned int nr_banks = 0; |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 166 | int i, j, irq_base; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 167 | |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 168 | omap_irq_base = ioremap(base, SZ_4K); |
| 169 | if (WARN_ON(!omap_irq_base)) |
| 170 | return; |
| 171 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 172 | irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0); |
| 173 | if (irq_base < 0) { |
| 174 | pr_warn("Couldn't allocate IRQ numbers\n"); |
| 175 | irq_base = 0; |
| 176 | } |
| 177 | |
| 178 | domain = irq_domain_add_legacy(node, nr_irqs, irq_base, 0, |
| 179 | &irq_domain_simple_ops, NULL); |
| 180 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 181 | for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { |
| 182 | struct omap_irq_bank *bank = irq_banks + i; |
| 183 | |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 184 | bank->nr_irqs = nr_irqs; |
Hemant Pedanekar | 0100171 | 2011-02-16 08:31:39 -0800 | [diff] [blame] | 185 | |
Tony Lindgren | 1b26fe8 | 2009-10-19 15:25:13 -0700 | [diff] [blame] | 186 | /* Static mapping, never released */ |
| 187 | bank->base_reg = ioremap(base, SZ_4K); |
| 188 | if (!bank->base_reg) { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 189 | pr_err("Could not ioremap irq bank%i\n", i); |
Tony Lindgren | 1b26fe8 | 2009-10-19 15:25:13 -0700 | [diff] [blame] | 190 | continue; |
| 191 | } |
Paul Walmsley | 2e7509e | 2008-10-09 17:51:28 +0300 | [diff] [blame] | 192 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 193 | omap_irq_bank_init_one(bank); |
| 194 | |
Tapani Utriainen | 5c30cdf | 2011-09-30 11:05:56 -0700 | [diff] [blame] | 195 | for (j = 0; j < bank->nr_irqs; j += 32) |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 196 | omap_alloc_gc(bank->base_reg + j, j + irq_base, 32); |
Tony Lindgren | 667a11f | 2011-05-16 02:07:38 -0700 | [diff] [blame] | 197 | |
Thomas Gleixner | 4b1135a | 2008-10-16 15:33:18 +0200 | [diff] [blame] | 198 | nr_of_irqs += bank->nr_irqs; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 199 | nr_banks++; |
| 200 | } |
| 201 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 202 | pr_info("Total of %ld interrupts on %d active controller%s\n", |
| 203 | nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : ""); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 206 | void __init omap2_init_irq(void) |
| 207 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 208 | omap_init_irq(OMAP24XX_IC_BASE, 96, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | void __init omap3_init_irq(void) |
| 212 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 213 | omap_init_irq(OMAP34XX_IC_BASE, 96, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Hemant Pedanekar | a920360 | 2011-12-13 10:46:44 -0800 | [diff] [blame] | 216 | void __init ti81xx_init_irq(void) |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 217 | { |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 218 | omap_init_irq(OMAP34XX_IC_BASE, 128, NULL); |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 221 | static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs *regs) |
| 222 | { |
| 223 | u32 irqnr; |
| 224 | |
| 225 | do { |
| 226 | irqnr = readl_relaxed(base_addr + 0x98); |
| 227 | if (irqnr) |
| 228 | goto out; |
| 229 | |
| 230 | irqnr = readl_relaxed(base_addr + 0xb8); |
| 231 | if (irqnr) |
| 232 | goto out; |
| 233 | |
| 234 | irqnr = readl_relaxed(base_addr + 0xd8); |
Kevin Hilman | 3395955 | 2012-05-10 11:10:07 -0700 | [diff] [blame] | 235 | #ifdef CONFIG_SOC_TI81XX |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 236 | if (irqnr) |
| 237 | goto out; |
| 238 | irqnr = readl_relaxed(base_addr + 0xf8); |
| 239 | #endif |
| 240 | |
| 241 | out: |
| 242 | if (!irqnr) |
| 243 | break; |
| 244 | |
| 245 | irqnr = readl_relaxed(base_addr + INTCPS_SIR_IRQ_OFFSET); |
| 246 | irqnr &= ACTIVEIRQ_MASK; |
| 247 | |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 248 | if (irqnr) { |
| 249 | irqnr = irq_find_mapping(domain, irqnr); |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 250 | handle_IRQ(irqnr, regs); |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 251 | } |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 252 | } while (irqnr); |
| 253 | } |
| 254 | |
| 255 | asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs) |
| 256 | { |
| 257 | void __iomem *base_addr = OMAP2_IRQ_BASE; |
| 258 | omap_intc_handle_irq(base_addr, regs); |
| 259 | } |
| 260 | |
R Sricharan | c4082d4 | 2012-06-05 16:31:06 +0530 | [diff] [blame] | 261 | int __init intc_of_init(struct device_node *node, |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 262 | struct device_node *parent) |
| 263 | { |
| 264 | struct resource res; |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 265 | u32 nr_irq = 96; |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 266 | |
| 267 | if (WARN_ON(!node)) |
| 268 | return -ENODEV; |
| 269 | |
| 270 | if (of_address_to_resource(node, 0, &res)) { |
| 271 | WARN(1, "unable to get intc registers\n"); |
| 272 | return -EINVAL; |
| 273 | } |
| 274 | |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 275 | if (of_property_read_u32(node, "ti,intc-size", &nr_irq)) |
| 276 | 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] | 277 | |
Venkatraman S | b56f2cb | 2012-06-25 15:56:39 +0530 | [diff] [blame] | 278 | omap_init_irq(res.start, nr_irq, of_node_get(node)); |
Benoit Cousson | 52fa212 | 2011-11-30 19:21:07 +0100 | [diff] [blame] | 279 | |
| 280 | return 0; |
| 281 | } |
| 282 | |
R Sricharan | c4082d4 | 2012-06-05 16:31:06 +0530 | [diff] [blame] | 283 | static struct of_device_id irq_match[] __initdata = { |
| 284 | { .compatible = "ti,omap2-intc", .data = intc_of_init, }, |
| 285 | { } |
| 286 | }; |
| 287 | |
| 288 | void __init omap_intc_of_init(void) |
| 289 | { |
| 290 | of_irq_init(irq_match); |
| 291 | } |
| 292 | |
Afzal Mohammed | 08f3098 | 2012-05-11 00:38:49 +0530 | [diff] [blame] | 293 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM33XX) |
Felipe Balbi | ee23b93 | 2011-01-27 16:39:43 -0800 | [diff] [blame] | 294 | static struct omap3_intc_regs intc_context[ARRAY_SIZE(irq_banks)]; |
| 295 | |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 296 | void omap_intc_save_context(void) |
| 297 | { |
| 298 | int ind = 0, i = 0; |
| 299 | for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) { |
| 300 | struct omap_irq_bank *bank = irq_banks + ind; |
| 301 | intc_context[ind].sysconfig = |
| 302 | intc_bank_read_reg(bank, INTC_SYSCONFIG); |
| 303 | intc_context[ind].protection = |
| 304 | intc_bank_read_reg(bank, INTC_PROTECTION); |
| 305 | intc_context[ind].idle = |
| 306 | intc_bank_read_reg(bank, INTC_IDLE); |
| 307 | intc_context[ind].threshold = |
| 308 | intc_bank_read_reg(bank, INTC_THRESHOLD); |
| 309 | for (i = 0; i < INTCPS_NR_IRQS; i++) |
| 310 | intc_context[ind].ilr[i] = |
Aaro Koskinen | 2329e7c | 2009-03-12 18:12:29 +0200 | [diff] [blame] | 311 | intc_bank_read_reg(bank, (0x100 + 0x4*i)); |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 312 | for (i = 0; i < INTCPS_NR_MIR_REGS; i++) |
| 313 | intc_context[ind].mir[i] = |
| 314 | intc_bank_read_reg(&irq_banks[0], INTC_MIR0 + |
| 315 | (0x20 * i)); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | void omap_intc_restore_context(void) |
| 320 | { |
| 321 | int ind = 0, i = 0; |
| 322 | |
| 323 | for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) { |
| 324 | struct omap_irq_bank *bank = irq_banks + ind; |
| 325 | intc_bank_write_reg(intc_context[ind].sysconfig, |
| 326 | bank, INTC_SYSCONFIG); |
| 327 | intc_bank_write_reg(intc_context[ind].sysconfig, |
| 328 | bank, INTC_SYSCONFIG); |
| 329 | intc_bank_write_reg(intc_context[ind].protection, |
| 330 | bank, INTC_PROTECTION); |
| 331 | intc_bank_write_reg(intc_context[ind].idle, |
| 332 | bank, INTC_IDLE); |
| 333 | intc_bank_write_reg(intc_context[ind].threshold, |
| 334 | bank, INTC_THRESHOLD); |
| 335 | for (i = 0; i < INTCPS_NR_IRQS; i++) |
| 336 | intc_bank_write_reg(intc_context[ind].ilr[i], |
Aaro Koskinen | 2329e7c | 2009-03-12 18:12:29 +0200 | [diff] [blame] | 337 | bank, (0x100 + 0x4*i)); |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 338 | for (i = 0; i < INTCPS_NR_MIR_REGS; i++) |
| 339 | intc_bank_write_reg(intc_context[ind].mir[i], |
| 340 | &irq_banks[0], INTC_MIR0 + (0x20 * i)); |
| 341 | } |
| 342 | /* MIRs are saved and restore with other PRCM registers */ |
| 343 | } |
Tero Kristo | 2bbe3af | 2009-10-23 19:03:48 +0300 | [diff] [blame] | 344 | |
| 345 | void omap3_intc_suspend(void) |
| 346 | { |
| 347 | /* A pending interrupt would prevent OMAP from entering suspend */ |
Paul Walmsley | a7022d6 | 2012-04-13 06:34:28 -0600 | [diff] [blame] | 348 | omap_ack_irq(NULL); |
Tero Kristo | 2bbe3af | 2009-10-23 19:03:48 +0300 | [diff] [blame] | 349 | } |
Tero Kristo | f18cc2f | 2009-10-23 19:03:50 +0300 | [diff] [blame] | 350 | |
| 351 | void omap3_intc_prepare_idle(void) |
| 352 | { |
Jean Pihet | 447b8da | 2010-11-17 17:52:11 +0000 | [diff] [blame] | 353 | /* |
| 354 | * Disable autoidle as it can stall interrupt controller, |
| 355 | * cf. errata ID i540 for 3430 (all revisions up to 3.1.x) |
| 356 | */ |
Tero Kristo | f18cc2f | 2009-10-23 19:03:50 +0300 | [diff] [blame] | 357 | intc_bank_write_reg(0, &irq_banks[0], INTC_SYSCONFIG); |
| 358 | } |
| 359 | |
| 360 | void omap3_intc_resume_idle(void) |
| 361 | { |
| 362 | /* Re-enable autoidle */ |
| 363 | intc_bank_write_reg(1, &irq_banks[0], INTC_SYSCONFIG); |
| 364 | } |
Marc Zyngier | 2db1499 | 2011-09-06 09:56:17 +0100 | [diff] [blame] | 365 | |
| 366 | asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs) |
| 367 | { |
| 368 | void __iomem *base_addr = OMAP3_IRQ_BASE; |
| 369 | omap_intc_handle_irq(base_addr, regs); |
| 370 | } |
Rajendra Nayak | 0addd61 | 2008-09-26 17:48:20 +0530 | [diff] [blame] | 371 | #endif /* CONFIG_ARCH_OMAP3 */ |