1
2
3
4
5
6
7
8
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
38#include <linux/gpio.h>
39#include <linux/init.h>
40#include <linux/module.h>
41#include <linux/sched.h>
42#include <linux/interrupt.h>
43#include <linux/io.h>
44
45#include <asm/irq.h>
46#include <asm/mach/irq.h>
47
48#include "soc.h"
49
50#include <mach/hardware.h>
51
52#include "common.h"
53
54#define IRQ_BANK(irq) ((irq) >> 5)
55#define IRQ_BIT(irq) ((irq) & 0x1f)
56
57struct omap_irq_bank {
58 unsigned long base_reg;
59 unsigned long trigger_map;
60 unsigned long wake_enable;
61};
62
63u32 omap_irq_flags;
64static unsigned int irq_bank_count;
65static struct omap_irq_bank *irq_banks;
66
67static inline unsigned int irq_bank_readl(int bank, int offset)
68{
69 return omap_readl(irq_banks[bank].base_reg + offset);
70}
71
72static inline void irq_bank_writel(unsigned long value, int bank, int offset)
73{
74 omap_writel(value, irq_banks[bank].base_reg + offset);
75}
76
77static void omap_ack_irq(struct irq_data *d)
78{
79 if (d->irq > 31)
80 omap_writel(0x1, OMAP_IH2_BASE + IRQ_CONTROL_REG_OFFSET);
81
82 omap_writel(0x1, OMAP_IH1_BASE + IRQ_CONTROL_REG_OFFSET);
83}
84
85static void omap_mask_irq(struct irq_data *d)
86{
87 int bank = IRQ_BANK(d->irq);
88 u32 l;
89
90 l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
91 l |= 1 << IRQ_BIT(d->irq);
92 omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
93}
94
95static void omap_unmask_irq(struct irq_data *d)
96{
97 int bank = IRQ_BANK(d->irq);
98 u32 l;
99
100 l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
101 l &= ~(1 << IRQ_BIT(d->irq));
102 omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
103}
104
105static void omap_mask_ack_irq(struct irq_data *d)
106{
107 omap_mask_irq(d);
108 omap_ack_irq(d);
109}
110
111static int omap_wake_irq(struct irq_data *d, unsigned int enable)
112{
113 int bank = IRQ_BANK(d->irq);
114
115 if (enable)
116 irq_banks[bank].wake_enable |= IRQ_BIT(d->irq);
117 else
118 irq_banks[bank].wake_enable &= ~IRQ_BIT(d->irq);
119
120 return 0;
121}
122
123
124
125
126
127
128
129
130
131static void omap_irq_set_cfg(int irq, int fiq, int priority, int trigger)
132{
133 signed int bank;
134 unsigned long val, offset;
135
136 bank = IRQ_BANK(irq);
137
138 fiq = bank ? 0 : (fiq & 0x1);
139 val = fiq | ((priority & 0x1f) << 2) | ((trigger & 0x1) << 1);
140 offset = IRQ_ILR0_REG_OFFSET + IRQ_BIT(irq) * 0x4;
141 irq_bank_writel(val, bank, offset);
142}
143
144#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
145static struct omap_irq_bank omap7xx_irq_banks[] = {
146 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3f8e22f },
147 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb9c1f2 },
148 { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0x800040f3 },
149};
150#endif
151
152#ifdef CONFIG_ARCH_OMAP15XX
153static struct omap_irq_bank omap1510_irq_banks[] = {
154 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3febfff },
155 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xffbfffed },
156};
157static struct omap_irq_bank omap310_irq_banks[] = {
158 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3faefc3 },
159 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0x65b3c061 },
160};
161#endif
162
163#if defined(CONFIG_ARCH_OMAP16XX)
164
165static struct omap_irq_bank omap1610_irq_banks[] = {
166 { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3fefe8f },
167 { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb7c1fd },
168 { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0xffffb7ff },
169 { .base_reg = OMAP_IH2_BASE + 0x200, .trigger_map = 0xffffffff },
170};
171#endif
172
173static struct irq_chip omap_irq_chip = {
174 .name = "MPU",
175 .irq_ack = omap_mask_ack_irq,
176 .irq_mask = omap_mask_irq,
177 .irq_unmask = omap_unmask_irq,
178 .irq_set_wake = omap_wake_irq,
179};
180
181void __init omap1_init_irq(void)
182{
183 int i, j;
184
185#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
186 if (cpu_is_omap7xx()) {
187 omap_irq_flags = INT_7XX_IH2_IRQ;
188 irq_banks = omap7xx_irq_banks;
189 irq_bank_count = ARRAY_SIZE(omap7xx_irq_banks);
190 }
191#endif
192#ifdef CONFIG_ARCH_OMAP15XX
193 if (cpu_is_omap1510()) {
194 omap_irq_flags = INT_1510_IH2_IRQ;
195 irq_banks = omap1510_irq_banks;
196 irq_bank_count = ARRAY_SIZE(omap1510_irq_banks);
197 }
198 if (cpu_is_omap310()) {
199 omap_irq_flags = INT_1510_IH2_IRQ;
200 irq_banks = omap310_irq_banks;
201 irq_bank_count = ARRAY_SIZE(omap310_irq_banks);
202 }
203#endif
204#if defined(CONFIG_ARCH_OMAP16XX)
205 if (cpu_is_omap16xx()) {
206 omap_irq_flags = INT_1510_IH2_IRQ;
207 irq_banks = omap1610_irq_banks;
208 irq_bank_count = ARRAY_SIZE(omap1610_irq_banks);
209 }
210#endif
211 printk("Total of %i interrupts in %i interrupt banks\n",
212 irq_bank_count * 32, irq_bank_count);
213
214
215 for (i = 0; i < irq_bank_count; i++) {
216 irq_bank_writel(~0x0, i, IRQ_MIR_REG_OFFSET);
217 irq_bank_writel(0x0, i, IRQ_ITR_REG_OFFSET);
218 }
219
220
221 irq_bank_writel(0x03, 0, IRQ_CONTROL_REG_OFFSET);
222 irq_bank_writel(0x03, 1, IRQ_CONTROL_REG_OFFSET);
223
224
225 if (cpu_is_omap7xx())
226 irq_bank_writel(0x0, 0, IRQ_GMR_REG_OFFSET);
227
228
229 for (i = 0; i < irq_bank_count; i++) {
230 for (j = i * 32; j < (i + 1) * 32; j++) {
231 int irq_trigger;
232
233 irq_trigger = irq_banks[i].trigger_map >> IRQ_BIT(j);
234 omap_irq_set_cfg(j, 0, 0, irq_trigger);
235
236 irq_set_chip_and_handler(j, &omap_irq_chip,
237 handle_level_irq);
238 set_irq_flags(j, IRQF_VALID);
239 }
240 }
241
242
243
244 if (cpu_is_omap7xx())
245 omap_unmask_irq(irq_get_irq_data(INT_7XX_IH2_IRQ));
246 else if (cpu_is_omap15xx())
247 omap_unmask_irq(irq_get_irq_data(INT_1510_IH2_IRQ));
248 else if (cpu_is_omap16xx())
249 omap_unmask_irq(irq_get_irq_data(INT_1610_IH2_IRQ));
250}
251