]> Pileus Git - ~andy/linux/blob - arch/arm/mach-omap2/irq.c
c11e8a84c947d90caf3cc9e2c25bdf6d33d635cf
[~andy/linux] / arch / arm / mach-omap2 / irq.c
1 /*
2  * linux/arch/arm/mach-omap2/irq.c
3  *
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/module.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/io.h>
18
19 #include <asm/exception.h>
20 #include <asm/mach/irq.h>
21 #include <linux/irqdomain.h>
22 #include <linux/of.h>
23 #include <linux/of_address.h>
24
25 #include <mach/hardware.h>
26
27 #include "iomap.h"
28
29 /* selected INTC register offsets */
30
31 #define INTC_REVISION           0x0000
32 #define INTC_SYSCONFIG          0x0010
33 #define INTC_SYSSTATUS          0x0014
34 #define INTC_SIR                0x0040
35 #define INTC_CONTROL            0x0048
36 #define INTC_PROTECTION         0x004C
37 #define INTC_IDLE               0x0050
38 #define INTC_THRESHOLD          0x0068
39 #define INTC_MIR0               0x0084
40 #define INTC_MIR_CLEAR0         0x0088
41 #define INTC_MIR_SET0           0x008c
42 #define INTC_PENDING_IRQ0       0x0098
43 /* Number of IRQ state bits in each MIR register */
44 #define IRQ_BITS_PER_REG        32
45
46 #define OMAP2_IRQ_BASE          OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE)
47 #define OMAP3_IRQ_BASE          OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE)
48 #define INTCPS_SIR_IRQ_OFFSET   0x0040  /* omap2/3 active interrupt offset */
49 #define ACTIVEIRQ_MASK          0x7f    /* omap2/3 active interrupt bits */
50
51 /*
52  * OMAP2 has a number of different interrupt controllers, each interrupt
53  * controller is identified as its own "bank". Register definitions are
54  * fairly consistent for each bank, but not all registers are implemented
55  * for each bank.. when in doubt, consult the TRM.
56  */
57 static struct omap_irq_bank {
58         void __iomem *base_reg;
59         unsigned int nr_irqs;
60 } __attribute__ ((aligned(4))) irq_banks[] = {
61         {
62                 /* MPU INTC */
63                 .nr_irqs        = 96,
64         },
65 };
66
67 static struct irq_domain *domain;
68
69 /* Structure to save interrupt controller context */
70 struct omap3_intc_regs {
71         u32 sysconfig;
72         u32 protection;
73         u32 idle;
74         u32 threshold;
75         u32 ilr[INTCPS_NR_IRQS];
76         u32 mir[INTCPS_NR_MIR_REGS];
77 };
78
79 /* INTC bank register get/set */
80
81 static void intc_bank_write_reg(u32 val, struct omap_irq_bank *bank, u16 reg)
82 {
83         __raw_writel(val, bank->base_reg + reg);
84 }
85
86 static u32 intc_bank_read_reg(struct omap_irq_bank *bank, u16 reg)
87 {
88         return __raw_readl(bank->base_reg + reg);
89 }
90
91 /* XXX: FIQ and additional INTC support (only MPU at the moment) */
92 static void omap_ack_irq(struct irq_data *d)
93 {
94         intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL);
95 }
96
97 static void omap_mask_ack_irq(struct irq_data *d)
98 {
99         irq_gc_mask_disable_reg(d);
100         omap_ack_irq(d);
101 }
102
103 static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank)
104 {
105         unsigned long tmp;
106
107         tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff;
108         printk(KERN_INFO "IRQ: Found an INTC at 0x%p "
109                          "(revision %ld.%ld) with %d interrupts\n",
110                          bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs);
111
112         tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG);
113         tmp |= 1 << 1;  /* soft reset */
114         intc_bank_write_reg(tmp, bank, INTC_SYSCONFIG);
115
116         while (!(intc_bank_read_reg(bank, INTC_SYSSTATUS) & 0x1))
117                 /* Wait for reset to complete */;
118
119         /* Enable autoidle */
120         intc_bank_write_reg(1 << 0, bank, INTC_SYSCONFIG);
121 }
122
123 int omap_irq_pending(void)
124 {
125         int i;
126
127         for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
128                 struct omap_irq_bank *bank = irq_banks + i;
129                 int irq;
130
131                 for (irq = 0; irq < bank->nr_irqs; irq += 32)
132                         if (intc_bank_read_reg(bank, INTC_PENDING_IRQ0 +
133                                                ((irq >> 5) << 5)))
134                                 return 1;
135         }
136         return 0;
137 }
138
139 static __init void
140 omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
141 {
142         struct irq_chip_generic *gc;
143         struct irq_chip_type *ct;
144
145         gc = irq_alloc_generic_chip("INTC", 1, irq_start, base,
146                                         handle_level_irq);
147         ct = gc->chip_types;
148         ct->chip.irq_ack = omap_mask_ack_irq;
149         ct->chip.irq_mask = irq_gc_mask_disable_reg;
150         ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
151
152         ct->regs.enable = INTC_MIR_CLEAR0;
153         ct->regs.disable = INTC_MIR_SET0;
154         irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
155                                 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
156 }
157
158 static void __init omap_init_irq(u32 base, int nr_irqs,
159                                  struct device_node *node)
160 {
161         void __iomem *omap_irq_base;
162         unsigned long nr_of_irqs = 0;
163         unsigned int nr_banks = 0;
164         int i, j, irq_base;
165
166         omap_irq_base = ioremap(base, SZ_4K);
167         if (WARN_ON(!omap_irq_base))
168                 return;
169
170         irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0);
171         if (irq_base < 0) {
172                 pr_warn("Couldn't allocate IRQ numbers\n");
173                 irq_base = 0;
174         }
175
176         domain = irq_domain_add_legacy(node, nr_irqs, irq_base, 0,
177                                        &irq_domain_simple_ops, NULL);
178
179         for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
180                 struct omap_irq_bank *bank = irq_banks + i;
181
182                 bank->nr_irqs = nr_irqs;
183
184                 /* Static mapping, never released */
185                 bank->base_reg = ioremap(base, SZ_4K);
186                 if (!bank->base_reg) {
187                         pr_err("Could not ioremap irq bank%i\n", i);
188                         continue;
189                 }
190
191                 omap_irq_bank_init_one(bank);
192
193                 for (j = 0; j < bank->nr_irqs; j += 32)
194                         omap_alloc_gc(bank->base_reg + j, j + irq_base, 32);
195
196                 nr_of_irqs += bank->nr_irqs;
197                 nr_banks++;
198         }
199
200         pr_info("Total of %ld interrupts on %d active controller%s\n",
201                 nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : "");
202 }
203
204 void __init omap2_init_irq(void)
205 {
206         omap_init_irq(OMAP24XX_IC_BASE, 96, NULL);
207 }
208
209 void __init omap3_init_irq(void)
210 {
211         omap_init_irq(OMAP34XX_IC_BASE, 96, NULL);
212 }
213
214 void __init ti81xx_init_irq(void)
215 {
216         omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
217 }
218
219 static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs *regs)
220 {
221         u32 irqnr;
222
223         do {
224                 irqnr = readl_relaxed(base_addr + 0x98);
225                 if (irqnr)
226                         goto out;
227
228                 irqnr = readl_relaxed(base_addr + 0xb8);
229                 if (irqnr)
230                         goto out;
231
232                 irqnr = readl_relaxed(base_addr + 0xd8);
233 #ifdef CONFIG_SOC_OMAPTI816X
234                 if (irqnr)
235                         goto out;
236                 irqnr = readl_relaxed(base_addr + 0xf8);
237 #endif
238
239 out:
240                 if (!irqnr)
241                         break;
242
243                 irqnr = readl_relaxed(base_addr + INTCPS_SIR_IRQ_OFFSET);
244                 irqnr &= ACTIVEIRQ_MASK;
245
246                 if (irqnr) {
247                         irqnr = irq_find_mapping(domain, irqnr);
248                         handle_IRQ(irqnr, regs);
249                 }
250         } while (irqnr);
251 }
252
253 asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs)
254 {
255         void __iomem *base_addr = OMAP2_IRQ_BASE;
256         omap_intc_handle_irq(base_addr, regs);
257 }
258
259 int __init omap_intc_of_init(struct device_node *node,
260                              struct device_node *parent)
261 {
262         struct resource res;
263         u32 nr_irqs = 96;
264
265         if (WARN_ON(!node))
266                 return -ENODEV;
267
268         if (of_address_to_resource(node, 0, &res)) {
269                 WARN(1, "unable to get intc registers\n");
270                 return -EINVAL;
271         }
272
273         if (of_property_read_u32(node, "ti,intc-size", &nr_irqs))
274                 pr_warn("unable to get intc-size, default to %d\n", nr_irqs);
275
276         omap_init_irq(res.start, nr_irqs, of_node_get(node));
277
278         return 0;
279 }
280
281 #ifdef CONFIG_ARCH_OMAP3
282 static struct omap3_intc_regs intc_context[ARRAY_SIZE(irq_banks)];
283
284 void omap_intc_save_context(void)
285 {
286         int ind = 0, i = 0;
287         for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) {
288                 struct omap_irq_bank *bank = irq_banks + ind;
289                 intc_context[ind].sysconfig =
290                         intc_bank_read_reg(bank, INTC_SYSCONFIG);
291                 intc_context[ind].protection =
292                         intc_bank_read_reg(bank, INTC_PROTECTION);
293                 intc_context[ind].idle =
294                         intc_bank_read_reg(bank, INTC_IDLE);
295                 intc_context[ind].threshold =
296                         intc_bank_read_reg(bank, INTC_THRESHOLD);
297                 for (i = 0; i < INTCPS_NR_IRQS; i++)
298                         intc_context[ind].ilr[i] =
299                                 intc_bank_read_reg(bank, (0x100 + 0x4*i));
300                 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
301                         intc_context[ind].mir[i] =
302                                 intc_bank_read_reg(&irq_banks[0], INTC_MIR0 +
303                                 (0x20 * i));
304         }
305 }
306
307 void omap_intc_restore_context(void)
308 {
309         int ind = 0, i = 0;
310
311         for (ind = 0; ind < ARRAY_SIZE(irq_banks); ind++) {
312                 struct omap_irq_bank *bank = irq_banks + ind;
313                 intc_bank_write_reg(intc_context[ind].sysconfig,
314                                         bank, INTC_SYSCONFIG);
315                 intc_bank_write_reg(intc_context[ind].sysconfig,
316                                         bank, INTC_SYSCONFIG);
317                 intc_bank_write_reg(intc_context[ind].protection,
318                                         bank, INTC_PROTECTION);
319                 intc_bank_write_reg(intc_context[ind].idle,
320                                         bank, INTC_IDLE);
321                 intc_bank_write_reg(intc_context[ind].threshold,
322                                         bank, INTC_THRESHOLD);
323                 for (i = 0; i < INTCPS_NR_IRQS; i++)
324                         intc_bank_write_reg(intc_context[ind].ilr[i],
325                                 bank, (0x100 + 0x4*i));
326                 for (i = 0; i < INTCPS_NR_MIR_REGS; i++)
327                         intc_bank_write_reg(intc_context[ind].mir[i],
328                                  &irq_banks[0], INTC_MIR0 + (0x20 * i));
329         }
330         /* MIRs are saved and restore with other PRCM registers */
331 }
332
333 void omap3_intc_suspend(void)
334 {
335         /* A pending interrupt would prevent OMAP from entering suspend */
336         omap_ack_irq(0);
337 }
338
339 void omap3_intc_prepare_idle(void)
340 {
341         /*
342          * Disable autoidle as it can stall interrupt controller,
343          * cf. errata ID i540 for 3430 (all revisions up to 3.1.x)
344          */
345         intc_bank_write_reg(0, &irq_banks[0], INTC_SYSCONFIG);
346 }
347
348 void omap3_intc_resume_idle(void)
349 {
350         /* Re-enable autoidle */
351         intc_bank_write_reg(1, &irq_banks[0], INTC_SYSCONFIG);
352 }
353
354 asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs)
355 {
356         void __iomem *base_addr = OMAP3_IRQ_BASE;
357         omap_intc_handle_irq(base_addr, regs);
358 }
359 #endif /* CONFIG_ARCH_OMAP3 */