2 * Interrupt handler for DaVinci boards.
4 * Copyright (C) 2006 Texas Instruments.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
27 #include <mach/hardware.h>
28 #include <asm/mach/irq.h>
30 #define IRQ_BIT(irq) ((irq) & 0x1f)
32 #define FIQ_REG0_OFFSET 0x0000
33 #define FIQ_REG1_OFFSET 0x0004
34 #define IRQ_REG0_OFFSET 0x0008
35 #define IRQ_REG1_OFFSET 0x000C
36 #define IRQ_ENT_REG0_OFFSET 0x0018
37 #define IRQ_ENT_REG1_OFFSET 0x001C
38 #define IRQ_INCTL_REG_OFFSET 0x0020
39 #define IRQ_EABASE_REG_OFFSET 0x0024
40 #define IRQ_INTPRI0_REG_OFFSET 0x0030
41 #define IRQ_INTPRI7_REG_OFFSET 0x004C
43 #define INTC_BASE IO_ADDRESS(DAVINCI_ARM_INTC_BASE)
45 static inline unsigned int davinci_irq_readl(int offset)
47 return __raw_readl(INTC_BASE + offset);
50 static inline void davinci_irq_writel(unsigned long value, int offset)
52 __raw_writel(value, INTC_BASE + offset);
55 /* Disable interrupt */
56 static void davinci_mask_irq(unsigned int irq)
61 mask = 1 << IRQ_BIT(irq);
64 l = davinci_irq_readl(IRQ_ENT_REG1_OFFSET);
66 davinci_irq_writel(l, IRQ_ENT_REG1_OFFSET);
68 l = davinci_irq_readl(IRQ_ENT_REG0_OFFSET);
70 davinci_irq_writel(l, IRQ_ENT_REG0_OFFSET);
74 /* Enable interrupt */
75 static void davinci_unmask_irq(unsigned int irq)
80 mask = 1 << IRQ_BIT(irq);
83 l = davinci_irq_readl(IRQ_ENT_REG1_OFFSET);
85 davinci_irq_writel(l, IRQ_ENT_REG1_OFFSET);
87 l = davinci_irq_readl(IRQ_ENT_REG0_OFFSET);
89 davinci_irq_writel(l, IRQ_ENT_REG0_OFFSET);
94 static void davinci_ack_irq(unsigned int irq)
98 mask = 1 << IRQ_BIT(irq);
101 davinci_irq_writel(mask, IRQ_REG1_OFFSET);
103 davinci_irq_writel(mask, IRQ_REG0_OFFSET);
106 static struct irq_chip davinci_irq_chip_0 = {
108 .ack = davinci_ack_irq,
109 .mask = davinci_mask_irq,
110 .unmask = davinci_unmask_irq,
114 /* FIQ are pri 0-1; otherwise 2-7, with 7 lowest priority */
115 static const u8 default_priorities[DAVINCI_N_AINTC_IRQ] __initdata = {
132 [IRQ_CCINT0] = 5, /* dma */
133 [IRQ_CCERRINT] = 5, /* dma */
134 [IRQ_TCERRINT0] = 5, /* dma */
135 [IRQ_TCERRINT] = 5, /* dma */
148 [IRQ_TINT0_TINT12] = 2, /* clockevent */
149 [IRQ_TINT0_TINT34] = 2, /* clocksource */
150 [IRQ_TINT1_TINT12] = 7, /* DSP timer */
151 [IRQ_TINT1_TINT34] = 7, /* system tick */
182 /* ARM Interrupt Controller Initialization */
183 void __init davinci_irq_init(void)
186 const u8 *priority = default_priorities;
188 /* Clear all interrupt requests */
189 davinci_irq_writel(~0x0, FIQ_REG0_OFFSET);
190 davinci_irq_writel(~0x0, FIQ_REG1_OFFSET);
191 davinci_irq_writel(~0x0, IRQ_REG0_OFFSET);
192 davinci_irq_writel(~0x0, IRQ_REG1_OFFSET);
194 /* Disable all interrupts */
195 davinci_irq_writel(0x0, IRQ_ENT_REG0_OFFSET);
196 davinci_irq_writel(0x0, IRQ_ENT_REG1_OFFSET);
198 /* Interrupts disabled immediately, IRQ entry reflects all */
199 davinci_irq_writel(0x0, IRQ_INCTL_REG_OFFSET);
201 /* we don't use the hardware vector table, just its entry addresses */
202 davinci_irq_writel(0, IRQ_EABASE_REG_OFFSET);
204 /* Clear all interrupt requests */
205 davinci_irq_writel(~0x0, FIQ_REG0_OFFSET);
206 davinci_irq_writel(~0x0, FIQ_REG1_OFFSET);
207 davinci_irq_writel(~0x0, IRQ_REG0_OFFSET);
208 davinci_irq_writel(~0x0, IRQ_REG1_OFFSET);
210 for (i = IRQ_INTPRI0_REG_OFFSET; i <= IRQ_INTPRI7_REG_OFFSET; i += 4) {
214 for (j = 0, pri = 0; j < 32; j += 4, priority++)
215 pri |= (*priority & 0x07) << j;
216 davinci_irq_writel(pri, i);
219 /* set up genirq dispatch for ARM INTC */
220 for (i = 0; i < DAVINCI_N_AINTC_IRQ; i++) {
221 set_irq_chip(i, &davinci_irq_chip_0);
222 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
223 if (i != IRQ_TINT1_TINT34)
224 set_irq_handler(i, handle_edge_irq);
226 set_irq_handler(i, handle_level_irq);