blob: e5b104b7fce65e1ca7e6ad1db216950905024ddd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tony Lindgren7c38cf02005-09-08 23:07:38 +01002 * linux/arch/arm/mach-omap1/irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Interrupt handler for all OMAP boards
5 *
6 * Copyright (C) 2004 Nokia Corporation
7 * Written by Tony Lindgren <tony@atomide.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02008 * Major cleanups by Juha Yrjölä <juha.yrjola@nokia.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Completely re-written to support various OMAP chips with bank specific
11 * interrupt handlers.
12 *
13 * Some snippets of the code taken from the older OMAP interrupt handler
14 * Copyright (C) 2001 RidgeRun, Inc. Greg Lonnon <glonnon@ridgerun.com>
15 *
16 * GPIO interrupt handler moved to gpio.c by Juha Yrjola
17 *
18 * This program is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the
20 * Free Software Foundation; either version 2 of the License, or (at your
21 * option) any later version.
22 *
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
26 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
29 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
30 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 * You should have received a copy of the GNU General Public License along
35 * with this program; if not, write to the Free Software Foundation, Inc.,
36 * 675 Mass Ave, Cambridge, MA 02139, USA.
37 */
Russell King2f8163b2011-07-26 10:53:52 +010038#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/init.h>
40#include <linux/module.h>
41#include <linux/sched.h>
42#include <linux/interrupt.h>
Russell Kingfced80c2008-09-06 12:10:45 +010043#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/irq.h>
47#include <asm/mach/irq.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070048#include <plat/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define IRQ_BANK(irq) ((irq) >> 5)
51#define IRQ_BIT(irq) ((irq) & 0x1f)
52
53struct omap_irq_bank {
54 unsigned long base_reg;
55 unsigned long trigger_map;
Tony Lindgren3b59b6b2005-07-10 19:58:09 +010056 unsigned long wake_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Tony Lindgrenefe318a2011-01-27 15:52:16 -080059u32 omap_irq_flags;
Tony Lindgren120db2c2006-04-02 17:46:27 +010060static unsigned int irq_bank_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static struct omap_irq_bank *irq_banks;
62
63static inline unsigned int irq_bank_readl(int bank, int offset)
64{
65 return omap_readl(irq_banks[bank].base_reg + offset);
66}
67
68static inline void irq_bank_writel(unsigned long value, int bank, int offset)
69{
70 omap_writel(value, irq_banks[bank].base_reg + offset);
71}
72
Lennert Buytenheka51eef72010-11-29 10:39:27 +010073static void omap_ack_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010075 if (d->irq > 31)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 omap_writel(0x1, OMAP_IH2_BASE + IRQ_CONTROL_REG_OFFSET);
77
78 omap_writel(0x1, OMAP_IH1_BASE + IRQ_CONTROL_REG_OFFSET);
79}
80
Lennert Buytenheka51eef72010-11-29 10:39:27 +010081static void omap_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010083 int bank = IRQ_BANK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 u32 l;
85
86 l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
Lennert Buytenheka51eef72010-11-29 10:39:27 +010087 l |= 1 << IRQ_BIT(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
89}
90
Lennert Buytenheka51eef72010-11-29 10:39:27 +010091static void omap_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010093 int bank = IRQ_BANK(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 u32 l;
95
96 l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
Lennert Buytenheka51eef72010-11-29 10:39:27 +010097 l &= ~(1 << IRQ_BIT(d->irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
99}
100
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100101static void omap_mask_ack_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100103 omap_mask_irq(d);
104 omap_ack_irq(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100107static int omap_wake_irq(struct irq_data *d, unsigned int enable)
Tony Lindgren3b59b6b2005-07-10 19:58:09 +0100108{
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100109 int bank = IRQ_BANK(d->irq);
Tony Lindgren3b59b6b2005-07-10 19:58:09 +0100110
111 if (enable)
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100112 irq_banks[bank].wake_enable |= IRQ_BIT(d->irq);
Tony Lindgren3b59b6b2005-07-10 19:58:09 +0100113 else
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100114 irq_banks[bank].wake_enable &= ~IRQ_BIT(d->irq);
Tony Lindgren3b59b6b2005-07-10 19:58:09 +0100115
116 return 0;
117}
118
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * Allows tuning the IRQ type and priority
122 *
123 * NOTE: There is currently no OMAP fiq handler for Linux. Read the
124 * mailing list threads on FIQ handlers if you are planning to
125 * add a FIQ handler for OMAP.
126 */
127static void omap_irq_set_cfg(int irq, int fiq, int priority, int trigger)
128{
129 signed int bank;
130 unsigned long val, offset;
131
132 bank = IRQ_BANK(irq);
133 /* FIQ is only available on bank 0 interrupts */
134 fiq = bank ? 0 : (fiq & 0x1);
135 val = fiq | ((priority & 0x1f) << 2) | ((trigger & 0x1) << 1);
136 offset = IRQ_ILR0_REG_OFFSET + IRQ_BIT(irq) * 0x4;
137 irq_bank_writel(val, bank, offset);
138}
139
Alistair Buxton559663b2009-09-22 06:33:04 +0100140#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100141static struct omap_irq_bank omap7xx_irq_banks[] = {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100142 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3f8e22f },
143 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb9c1f2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0x800040f3 },
145};
146#endif
147
Tony Lindgren3179a012005-11-10 14:26:48 +0000148#ifdef CONFIG_ARCH_OMAP15XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static struct omap_irq_bank omap1510_irq_banks[] = {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100150 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3febfff },
151 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xffbfffed },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
Tony Lindgren3179a012005-11-10 14:26:48 +0000153static struct omap_irq_bank omap310_irq_banks[] = {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100154 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3faefc3 },
155 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0x65b3c061 },
Tony Lindgren3179a012005-11-10 14:26:48 +0000156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif
158
159#if defined(CONFIG_ARCH_OMAP16XX)
160
161static struct omap_irq_bank omap1610_irq_banks[] = {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100162 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3fefe8f },
163 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb7c1fd },
Tony Lindgren3b59b6b2005-07-10 19:58:09 +0100164 { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0xffffb7ff },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 { .base_reg = OMAP_IH2_BASE + 0x200, .trigger_map = 0xffffffff },
166};
167#endif
168
David Brownell38c677c2006-08-01 22:26:25 +0100169static struct irq_chip omap_irq_chip = {
170 .name = "MPU",
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100171 .irq_ack = omap_mask_ack_irq,
172 .irq_mask = omap_mask_irq,
173 .irq_unmask = omap_unmask_irq,
174 .irq_set_wake = omap_wake_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
Tony Lindgren741e3a82011-05-17 03:51:26 -0700177void __init omap1_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 int i, j;
180
Alistair Buxton559663b2009-09-22 06:33:04 +0100181#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
182 if (cpu_is_omap7xx()) {
Tony Lindgren03a9e512010-12-09 15:49:23 -0800183 omap_irq_flags = INT_7XX_IH2_IRQ;
Alistair Buxton7c006922009-09-22 10:02:58 +0100184 irq_banks = omap7xx_irq_banks;
185 irq_bank_count = ARRAY_SIZE(omap7xx_irq_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187#endif
Tony Lindgren3179a012005-11-10 14:26:48 +0000188#ifdef CONFIG_ARCH_OMAP15XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (cpu_is_omap1510()) {
Tony Lindgren03a9e512010-12-09 15:49:23 -0800190 omap_irq_flags = INT_1510_IH2_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 irq_banks = omap1510_irq_banks;
192 irq_bank_count = ARRAY_SIZE(omap1510_irq_banks);
193 }
Tony Lindgren3179a012005-11-10 14:26:48 +0000194 if (cpu_is_omap310()) {
Tony Lindgren03a9e512010-12-09 15:49:23 -0800195 omap_irq_flags = INT_1510_IH2_IRQ;
Tony Lindgren3179a012005-11-10 14:26:48 +0000196 irq_banks = omap310_irq_banks;
197 irq_bank_count = ARRAY_SIZE(omap310_irq_banks);
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200#if defined(CONFIG_ARCH_OMAP16XX)
201 if (cpu_is_omap16xx()) {
Tony Lindgren03a9e512010-12-09 15:49:23 -0800202 omap_irq_flags = INT_1510_IH2_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 irq_banks = omap1610_irq_banks;
204 irq_bank_count = ARRAY_SIZE(omap1610_irq_banks);
205 }
206#endif
207 printk("Total of %i interrupts in %i interrupt banks\n",
208 irq_bank_count * 32, irq_bank_count);
209
210 /* Mask and clear all interrupts */
211 for (i = 0; i < irq_bank_count; i++) {
212 irq_bank_writel(~0x0, i, IRQ_MIR_REG_OFFSET);
213 irq_bank_writel(0x0, i, IRQ_ITR_REG_OFFSET);
214 }
215
216 /* Clear any pending interrupts */
217 irq_bank_writel(0x03, 0, IRQ_CONTROL_REG_OFFSET);
218 irq_bank_writel(0x03, 1, IRQ_CONTROL_REG_OFFSET);
219
220 /* Enable interrupts in global mask */
Zebediah C. McClure59185ee2009-03-23 18:07:45 -0700221 if (cpu_is_omap7xx())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 irq_bank_writel(0x0, 0, IRQ_GMR_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* Install the interrupt handlers for each bank */
225 for (i = 0; i < irq_bank_count; i++) {
226 for (j = i * 32; j < (i + 1) * 32; j++) {
227 int irq_trigger;
228
229 irq_trigger = irq_banks[i].trigger_map >> IRQ_BIT(j);
230 omap_irq_set_cfg(j, 0, 0, irq_trigger);
231
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100232 irq_set_chip_and_handler(j, &omap_irq_chip,
233 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 set_irq_flags(j, IRQF_VALID);
235 }
236 }
237
238 /* Unmask level 2 handler */
Tony Lindgren3179a012005-11-10 14:26:48 +0000239
Alistair Buxton559663b2009-09-22 06:33:04 +0100240 if (cpu_is_omap7xx())
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100241 omap_unmask_irq(irq_get_irq_data(INT_7XX_IH2_IRQ));
Andrzej Zaborowskief557d72006-12-06 17:13:48 -0800242 else if (cpu_is_omap15xx())
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100243 omap_unmask_irq(irq_get_irq_data(INT_1510_IH2_IRQ));
Tony Lindgren3179a012005-11-10 14:26:48 +0000244 else if (cpu_is_omap16xx())
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100245 omap_unmask_irq(irq_get_irq_data(INT_1610_IH2_IRQ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}