irq.c 7.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * linux/arch/arm/mach-omap1/irq.c
L
Linus Torvalds 已提交
3 4 5 6 7
 *
 * Interrupt handler for all OMAP boards
 *
 * Copyright (C) 2004 Nokia Corporation
 * Written by Tony Lindgren <tony@atomide.com>
8
 * Major cleanups by Juha Yrjölä <juha.yrjola@nokia.com>
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *
 * Completely re-written to support various OMAP chips with bank specific
 * interrupt handlers.
 *
 * Some snippets of the code taken from the older OMAP interrupt handler
 * Copyright (C) 2001 RidgeRun, Inc. Greg Lonnon <glonnon@ridgerun.com>
 *
 * GPIO interrupt handler moved to gpio.c by Juha Yrjola
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * You should have received a copy of the  GNU General Public License along
 * with this program; if not, write  to the Free Software Foundation, Inc.,
 * 675 Mass Ave, Cambridge, MA 02139, USA.
 */
38
#include <linux/gpio.h>
L
Linus Torvalds 已提交
39 40 41 42
#include <linux/init.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
43
#include <linux/io.h>
L
Linus Torvalds 已提交
44 45 46

#include <asm/irq.h>
#include <asm/mach/irq.h>
47

48
#include <plat/cpu.h>
L
Linus Torvalds 已提交
49

50 51
#include <mach/hardware.h>

L
Linus Torvalds 已提交
52 53 54 55 56 57
#define IRQ_BANK(irq) ((irq) >> 5)
#define IRQ_BIT(irq)  ((irq) & 0x1f)

struct omap_irq_bank {
	unsigned long base_reg;
	unsigned long trigger_map;
58
	unsigned long wake_enable;
L
Linus Torvalds 已提交
59 60
};

61
u32 omap_irq_flags;
62
static unsigned int irq_bank_count;
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74
static struct omap_irq_bank *irq_banks;

static inline unsigned int irq_bank_readl(int bank, int offset)
{
	return omap_readl(irq_banks[bank].base_reg + offset);
}

static inline void irq_bank_writel(unsigned long value, int bank, int offset)
{
	omap_writel(value, irq_banks[bank].base_reg + offset);
}

75
static void omap_ack_irq(struct irq_data *d)
L
Linus Torvalds 已提交
76
{
77
	if (d->irq > 31)
L
Linus Torvalds 已提交
78 79 80 81 82
		omap_writel(0x1, OMAP_IH2_BASE + IRQ_CONTROL_REG_OFFSET);

	omap_writel(0x1, OMAP_IH1_BASE + IRQ_CONTROL_REG_OFFSET);
}

83
static void omap_mask_irq(struct irq_data *d)
L
Linus Torvalds 已提交
84
{
85
	int bank = IRQ_BANK(d->irq);
L
Linus Torvalds 已提交
86 87 88
	u32 l;

	l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
89
	l |= 1 << IRQ_BIT(d->irq);
L
Linus Torvalds 已提交
90 91 92
	omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
}

93
static void omap_unmask_irq(struct irq_data *d)
L
Linus Torvalds 已提交
94
{
95
	int bank = IRQ_BANK(d->irq);
L
Linus Torvalds 已提交
96 97 98
	u32 l;

	l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
99
	l &= ~(1 << IRQ_BIT(d->irq));
L
Linus Torvalds 已提交
100 101 102
	omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
}

103
static void omap_mask_ack_irq(struct irq_data *d)
L
Linus Torvalds 已提交
104
{
105 106
	omap_mask_irq(d);
	omap_ack_irq(d);
L
Linus Torvalds 已提交
107 108
}

109
static int omap_wake_irq(struct irq_data *d, unsigned int enable)
110
{
111
	int bank = IRQ_BANK(d->irq);
112 113

	if (enable)
114
		irq_banks[bank].wake_enable |= IRQ_BIT(d->irq);
115
	else
116
		irq_banks[bank].wake_enable &= ~IRQ_BIT(d->irq);
117 118 119 120 121

	return 0;
}


L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
/*
 * Allows tuning the IRQ type and priority
 *
 * NOTE: There is currently no OMAP fiq handler for Linux. Read the
 *	 mailing list threads on FIQ handlers if you are planning to
 *	 add a FIQ handler for OMAP.
 */
static void omap_irq_set_cfg(int irq, int fiq, int priority, int trigger)
{
	signed int bank;
	unsigned long val, offset;

	bank = IRQ_BANK(irq);
	/* FIQ is only available on bank 0 interrupts */
	fiq = bank ? 0 : (fiq & 0x1);
	val = fiq | ((priority & 0x1f) << 2) | ((trigger & 0x1) << 1);
	offset = IRQ_ILR0_REG_OFFSET + IRQ_BIT(irq) * 0x4;
	irq_bank_writel(val, bank, offset);
}

142
#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
143
static struct omap_irq_bank omap7xx_irq_banks[] = {
144 145
	{ .base_reg = OMAP_IH1_BASE,		.trigger_map = 0xb3f8e22f },
	{ .base_reg = OMAP_IH2_BASE,		.trigger_map = 0xfdb9c1f2 },
L
Linus Torvalds 已提交
146 147 148 149
	{ .base_reg = OMAP_IH2_BASE + 0x100,	.trigger_map = 0x800040f3 },
};
#endif

150
#ifdef CONFIG_ARCH_OMAP15XX
L
Linus Torvalds 已提交
151
static struct omap_irq_bank omap1510_irq_banks[] = {
152 153
	{ .base_reg = OMAP_IH1_BASE,		.trigger_map = 0xb3febfff },
	{ .base_reg = OMAP_IH2_BASE,		.trigger_map = 0xffbfffed },
L
Linus Torvalds 已提交
154
};
155
static struct omap_irq_bank omap310_irq_banks[] = {
156 157
	{ .base_reg = OMAP_IH1_BASE,		.trigger_map = 0xb3faefc3 },
	{ .base_reg = OMAP_IH2_BASE,		.trigger_map = 0x65b3c061 },
158
};
L
Linus Torvalds 已提交
159 160 161 162 163
#endif

#if defined(CONFIG_ARCH_OMAP16XX)

static struct omap_irq_bank omap1610_irq_banks[] = {
164 165
	{ .base_reg = OMAP_IH1_BASE,		.trigger_map = 0xb3fefe8f },
	{ .base_reg = OMAP_IH2_BASE,		.trigger_map = 0xfdb7c1fd },
166
	{ .base_reg = OMAP_IH2_BASE + 0x100,	.trigger_map = 0xffffb7ff },
L
Linus Torvalds 已提交
167 168 169 170
	{ .base_reg = OMAP_IH2_BASE + 0x200,	.trigger_map = 0xffffffff },
};
#endif

171 172
static struct irq_chip omap_irq_chip = {
	.name		= "MPU",
173 174 175 176
	.irq_ack	= omap_mask_ack_irq,
	.irq_mask	= omap_mask_irq,
	.irq_unmask	= omap_unmask_irq,
	.irq_set_wake	= omap_wake_irq,
L
Linus Torvalds 已提交
177 178
};

179
void __init omap1_init_irq(void)
L
Linus Torvalds 已提交
180 181 182
{
	int i, j;

183 184
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
	if (cpu_is_omap7xx()) {
185
		omap_irq_flags = INT_7XX_IH2_IRQ;
186 187
		irq_banks = omap7xx_irq_banks;
		irq_bank_count = ARRAY_SIZE(omap7xx_irq_banks);
L
Linus Torvalds 已提交
188 189
	}
#endif
190
#ifdef CONFIG_ARCH_OMAP15XX
L
Linus Torvalds 已提交
191
	if (cpu_is_omap1510()) {
192
		omap_irq_flags = INT_1510_IH2_IRQ;
L
Linus Torvalds 已提交
193 194 195
		irq_banks = omap1510_irq_banks;
		irq_bank_count = ARRAY_SIZE(omap1510_irq_banks);
	}
196
	if (cpu_is_omap310()) {
197
		omap_irq_flags = INT_1510_IH2_IRQ;
198 199 200
		irq_banks = omap310_irq_banks;
		irq_bank_count = ARRAY_SIZE(omap310_irq_banks);
	}
L
Linus Torvalds 已提交
201 202 203
#endif
#if defined(CONFIG_ARCH_OMAP16XX)
	if (cpu_is_omap16xx()) {
204
		omap_irq_flags = INT_1510_IH2_IRQ;
L
Linus Torvalds 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
		irq_banks = omap1610_irq_banks;
		irq_bank_count = ARRAY_SIZE(omap1610_irq_banks);
	}
#endif
	printk("Total of %i interrupts in %i interrupt banks\n",
	       irq_bank_count * 32, irq_bank_count);

	/* Mask and clear all interrupts */
	for (i = 0; i < irq_bank_count; i++) {
		irq_bank_writel(~0x0, i, IRQ_MIR_REG_OFFSET);
		irq_bank_writel(0x0, i, IRQ_ITR_REG_OFFSET);
	}

	/* Clear any pending interrupts */
	irq_bank_writel(0x03, 0, IRQ_CONTROL_REG_OFFSET);
	irq_bank_writel(0x03, 1, IRQ_CONTROL_REG_OFFSET);

	/* Enable interrupts in global mask */
223
	if (cpu_is_omap7xx())
L
Linus Torvalds 已提交
224 225 226 227 228 229 230 231 232 233
		irq_bank_writel(0x0, 0, IRQ_GMR_REG_OFFSET);

	/* Install the interrupt handlers for each bank */
	for (i = 0; i < irq_bank_count; i++) {
		for (j = i * 32; j < (i + 1) * 32; j++) {
			int irq_trigger;

			irq_trigger = irq_banks[i].trigger_map >> IRQ_BIT(j);
			omap_irq_set_cfg(j, 0, 0, irq_trigger);

234 235
			irq_set_chip_and_handler(j, &omap_irq_chip,
						 handle_level_irq);
L
Linus Torvalds 已提交
236 237 238 239 240
			set_irq_flags(j, IRQF_VALID);
		}
	}

	/* Unmask level 2 handler */
241

242
	if (cpu_is_omap7xx())
243
		omap_unmask_irq(irq_get_irq_data(INT_7XX_IH2_IRQ));
244
	else if (cpu_is_omap15xx())
245
		omap_unmask_irq(irq_get_irq_data(INT_1510_IH2_IRQ));
246
	else if (cpu_is_omap16xx())
247
		omap_unmask_irq(irq_get_irq_data(INT_1610_IH2_IRQ));
L
Linus Torvalds 已提交
248
}