blob: a5c748a4a56d44cc291356bced8af5fba9bcf79e [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/arm/mach-omap2/irq.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
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>
14#include <linux/init.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000015#include <linux/interrupt.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010016#include <mach/hardware.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000017#include <asm/mach/irq.h>
18#include <asm/irq.h>
19#include <asm/io.h>
20
21#define INTC_REVISION 0x0000
22#define INTC_SYSCONFIG 0x0010
23#define INTC_SYSSTATUS 0x0014
24#define INTC_CONTROL 0x0048
25#define INTC_MIR_CLEAR0 0x0088
26#define INTC_MIR_SET0 0x008c
27
28/*
29 * OMAP2 has a number of different interrupt controllers, each interrupt
30 * controller is identified as its own "bank". Register definitions are
31 * fairly consistent for each bank, but not all registers are implemented
32 * for each bank.. when in doubt, consult the TRM.
33 */
34static struct omap_irq_bank {
Russell Kinge8a91c92008-09-01 22:07:37 +010035 void __iomem *base_reg;
Tony Lindgren1dbae812005-11-10 14:26:51 +000036 unsigned int nr_irqs;
37} __attribute__ ((aligned(4))) irq_banks[] = {
38 {
39 /* MPU INTC */
Tony Lindgren646e3ed2008-10-06 15:49:36 +030040 .base_reg = 0,
Tony Lindgren1dbae812005-11-10 14:26:51 +000041 .nr_irqs = 96,
Tony Lindgren646e3ed2008-10-06 15:49:36 +030042 },
Tony Lindgren1dbae812005-11-10 14:26:51 +000043};
44
45/* XXX: FIQ and additional INTC support (only MPU at the moment) */
46static void omap_ack_irq(unsigned int irq)
47{
Juha Yrjola375e12a2006-12-06 17:13:50 -080048 __raw_writel(0x1, irq_banks[0].base_reg + INTC_CONTROL);
Tony Lindgren1dbae812005-11-10 14:26:51 +000049}
50
51static void omap_mask_irq(unsigned int irq)
52{
53 int offset = (irq >> 5) << 5;
54
55 if (irq >= 64) {
56 irq %= 64;
57 } else if (irq >= 32) {
58 irq %= 32;
59 }
60
Juha Yrjola375e12a2006-12-06 17:13:50 -080061 __raw_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_SET0 + offset);
Tony Lindgren1dbae812005-11-10 14:26:51 +000062}
63
64static void omap_unmask_irq(unsigned int irq)
65{
66 int offset = (irq >> 5) << 5;
67
68 if (irq >= 64) {
69 irq %= 64;
70 } else if (irq >= 32) {
71 irq %= 32;
72 }
73
Juha Yrjola375e12a2006-12-06 17:13:50 -080074 __raw_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_CLEAR0 + offset);
Tony Lindgren1dbae812005-11-10 14:26:51 +000075}
76
77static void omap_mask_ack_irq(unsigned int irq)
78{
79 omap_mask_irq(irq);
80 omap_ack_irq(irq);
81}
82
David Brownell38c677c2006-08-01 22:26:25 +010083static struct irq_chip omap_irq_chip = {
84 .name = "INTC",
Tony Lindgren1dbae812005-11-10 14:26:51 +000085 .ack = omap_mask_ack_irq,
86 .mask = omap_mask_irq,
87 .unmask = omap_unmask_irq,
88};
89
90static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank)
91{
92 unsigned long tmp;
93
Juha Yrjola375e12a2006-12-06 17:13:50 -080094 tmp = __raw_readl(bank->base_reg + INTC_REVISION) & 0xff;
Russell Kinge8a91c92008-09-01 22:07:37 +010095 printk(KERN_INFO "IRQ: Found an INTC at 0x%p "
Tony Lindgren1dbae812005-11-10 14:26:51 +000096 "(revision %ld.%ld) with %d interrupts\n",
97 bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs);
98
Juha Yrjola375e12a2006-12-06 17:13:50 -080099 tmp = __raw_readl(bank->base_reg + INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000100 tmp |= 1 << 1; /* soft reset */
Juha Yrjola375e12a2006-12-06 17:13:50 -0800101 __raw_writel(tmp, bank->base_reg + INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000102
Juha Yrjola375e12a2006-12-06 17:13:50 -0800103 while (!(__raw_readl(bank->base_reg + INTC_SYSSTATUS) & 0x1))
Tony Lindgren1dbae812005-11-10 14:26:51 +0000104 /* Wait for reset to complete */;
Juha Yrjola375e12a2006-12-06 17:13:50 -0800105
106 /* Enable autoidle */
107 __raw_writel(1 << 0, bank->base_reg + INTC_SYSCONFIG);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000108}
109
110void __init omap_init_irq(void)
111{
112 unsigned long nr_irqs = 0;
113 unsigned int nr_banks = 0;
114 int i;
115
116 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
117 struct omap_irq_bank *bank = irq_banks + i;
118
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300119 if (cpu_is_omap24xx())
120 bank->base_reg = IO_ADDRESS(OMAP24XX_IC_BASE);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000121 omap_irq_bank_init_one(bank);
122
123 nr_irqs += bank->nr_irqs;
124 nr_banks++;
125 }
126
127 printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n",
128 nr_irqs, nr_banks, nr_banks > 1 ? "s" : "");
129
130 for (i = 0; i < nr_irqs; i++) {
131 set_irq_chip(i, &omap_irq_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000132 set_irq_handler(i, handle_level_irq);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000133 set_irq_flags(i, IRQF_VALID);
134 }
135}
136