blob: 75ca2f44c78e78f6aed5198713680d3b84e993e0 [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * linux/arch/arm/mach-at91/irq.c
SAN People73a59c12006-01-09 17:05:41 +00003 *
4 * Copyright (C) 2004 SAN People
5 * Copyright (C) 2004 ATMEL
6 * Copyright (C) Rick Bronson
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
SAN People73a59c12006-01-09 17:05:41 +000023#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/mm.h>
26#include <linux/types.h>
Nicolas Ferree2615012011-11-22 22:26:09 +010027#include <linux/irq.h>
28#include <linux/of.h>
29#include <linux/of_address.h>
30#include <linux/of_irq.h>
31#include <linux/irqdomain.h>
32#include <linux/err.h>
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +020033#include <linux/slab.h>
SAN People73a59c12006-01-09 17:05:41 +000034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
SAN People73a59c12006-01-09 17:05:41 +000036#include <asm/irq.h>
SAN People73a59c12006-01-09 17:05:41 +000037#include <asm/setup.h>
38
Ludovic Desroches3e135462012-06-11 15:38:03 +020039#include <asm/exception.h>
SAN People73a59c12006-01-09 17:05:41 +000040#include <asm/mach/arch.h>
41#include <asm/mach/irq.h>
42#include <asm/mach/map.h>
43
Ludovic Desroches8fe82a52012-06-21 14:47:27 +020044#include <mach/at91_aic.h>
45
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +080046void __iomem *at91_aic_base;
Nicolas Ferree2615012011-11-22 22:26:09 +010047static struct irq_domain *at91_aic_domain;
48static struct device_node *at91_aic_np;
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +020049static unsigned int *at91_aic_irq_priorities;
SAN People73a59c12006-01-09 17:05:41 +000050
Ludovic Desroches3e135462012-06-11 15:38:03 +020051asmlinkage void __exception_irq_entry at91_aic_handle_irq(struct pt_regs *regs)
52{
53 u32 irqnr;
54 u32 irqstat;
55
56 irqnr = at91_aic_read(AT91_AIC_IVR);
57 irqstat = at91_aic_read(AT91_AIC_ISR);
58
59 /*
60 * ISR value is 0 when there is no current interrupt or when there is
61 * a spurious interrupt
62 */
63 if (!irqstat)
64 at91_aic_write(AT91_AIC_EOICR, 0);
65 else
66 handle_IRQ(irqnr, regs);
67}
68
Lennert Buytenhekda0f9402010-11-29 10:26:19 +010069static void at91_aic_mask_irq(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +000070{
71 /* Disable interrupt on AIC */
Nicolas Ferree2615012011-11-22 22:26:09 +010072 at91_aic_write(AT91_AIC_IDCR, 1 << d->hwirq);
SAN People73a59c12006-01-09 17:05:41 +000073}
74
Lennert Buytenhekda0f9402010-11-29 10:26:19 +010075static void at91_aic_unmask_irq(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +000076{
77 /* Enable interrupt on AIC */
Nicolas Ferree2615012011-11-22 22:26:09 +010078 at91_aic_write(AT91_AIC_IECR, 1 << d->hwirq);
SAN People73a59c12006-01-09 17:05:41 +000079}
80
Ludovic Desroches42a859d2012-05-25 14:11:51 +020081static void at91_aic_eoi(struct irq_data *d)
82{
83 /*
84 * Mark end-of-interrupt on AIC, the controller doesn't care about
85 * the value written. Moreover it's a write-only register.
86 */
87 at91_aic_write(AT91_AIC_EOICR, 0);
88}
89
Andrew Victor1f4fd0a2006-11-30 10:01:47 +010090unsigned int at91_extern_irq;
91
Nicolas Ferree2615012011-11-22 22:26:09 +010092#define is_extern_irq(hwirq) ((1 << (hwirq)) & at91_extern_irq)
Andrew Victor1f4fd0a2006-11-30 10:01:47 +010093
Lennert Buytenhekda0f9402010-11-29 10:26:19 +010094static int at91_aic_set_type(struct irq_data *d, unsigned type)
SAN People73a59c12006-01-09 17:05:41 +000095{
96 unsigned int smr, srctype;
97
SAN People73a59c12006-01-09 17:05:41 +000098 switch (type) {
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010099 case IRQ_TYPE_LEVEL_HIGH:
SAN People73a59c12006-01-09 17:05:41 +0000100 srctype = AT91_AIC_SRCTYPE_HIGH;
101 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100102 case IRQ_TYPE_EDGE_RISING:
SAN People73a59c12006-01-09 17:05:41 +0000103 srctype = AT91_AIC_SRCTYPE_RISING;
104 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100105 case IRQ_TYPE_LEVEL_LOW:
Nicolas Ferree2615012011-11-22 22:26:09 +0100106 if ((d->hwirq == AT91_ID_FIQ) || is_extern_irq(d->hwirq)) /* only supported on external interrupts */
Andrew Victor1f4fd0a2006-11-30 10:01:47 +0100107 srctype = AT91_AIC_SRCTYPE_LOW;
108 else
Andrew Victor37f2e4bc2006-06-19 15:26:52 +0100109 return -EINVAL;
SAN People73a59c12006-01-09 17:05:41 +0000110 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100111 case IRQ_TYPE_EDGE_FALLING:
Nicolas Ferree2615012011-11-22 22:26:09 +0100112 if ((d->hwirq == AT91_ID_FIQ) || is_extern_irq(d->hwirq)) /* only supported on external interrupts */
Andrew Victor1f4fd0a2006-11-30 10:01:47 +0100113 srctype = AT91_AIC_SRCTYPE_FALLING;
114 else
Andrew Victor37f2e4bc2006-06-19 15:26:52 +0100115 return -EINVAL;
SAN People73a59c12006-01-09 17:05:41 +0000116 break;
117 default:
118 return -EINVAL;
119 }
120
Nicolas Ferree2615012011-11-22 22:26:09 +0100121 smr = at91_aic_read(AT91_AIC_SMR(d->hwirq)) & ~AT91_AIC_SRCTYPE;
122 at91_aic_write(AT91_AIC_SMR(d->hwirq), smr | srctype);
SAN People73a59c12006-01-09 17:05:41 +0000123 return 0;
124}
125
Andrew Victor683c66b2006-06-19 15:26:53 +0100126#ifdef CONFIG_PM
127
128static u32 wakeups;
129static u32 backups;
130
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100131static int at91_aic_set_wake(struct irq_data *d, unsigned value)
Andrew Victor683c66b2006-06-19 15:26:53 +0100132{
Nicolas Ferree2615012011-11-22 22:26:09 +0100133 if (unlikely(d->hwirq >= NR_AIC_IRQS))
Andrew Victor683c66b2006-06-19 15:26:53 +0100134 return -EINVAL;
135
136 if (value)
Nicolas Ferree2615012011-11-22 22:26:09 +0100137 wakeups |= (1 << d->hwirq);
Andrew Victor683c66b2006-06-19 15:26:53 +0100138 else
Nicolas Ferree2615012011-11-22 22:26:09 +0100139 wakeups &= ~(1 << d->hwirq);
Andrew Victor683c66b2006-06-19 15:26:53 +0100140
141 return 0;
142}
143
144void at91_irq_suspend(void)
145{
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +0800146 backups = at91_aic_read(AT91_AIC_IMR);
147 at91_aic_write(AT91_AIC_IDCR, backups);
148 at91_aic_write(AT91_AIC_IECR, wakeups);
Andrew Victor683c66b2006-06-19 15:26:53 +0100149}
150
151void at91_irq_resume(void)
152{
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +0800153 at91_aic_write(AT91_AIC_IDCR, wakeups);
154 at91_aic_write(AT91_AIC_IECR, backups);
Andrew Victor683c66b2006-06-19 15:26:53 +0100155}
156
157#else
Andrew Victorba854e12006-07-05 17:22:52 +0100158#define at91_aic_set_wake NULL
Andrew Victor683c66b2006-06-19 15:26:53 +0100159#endif
160
David Brownell38c677c2006-08-01 22:26:25 +0100161static struct irq_chip at91_aic_chip = {
162 .name = "AIC",
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100163 .irq_mask = at91_aic_mask_irq,
164 .irq_unmask = at91_aic_unmask_irq,
165 .irq_set_type = at91_aic_set_type,
166 .irq_set_wake = at91_aic_set_wake,
Ludovic Desroches42a859d2012-05-25 14:11:51 +0200167 .irq_eoi = at91_aic_eoi,
SAN People73a59c12006-01-09 17:05:41 +0000168};
169
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100170static void __init at91_aic_hw_init(unsigned int spu_vector)
171{
172 int i;
173
174 /*
175 * Perform 8 End Of Interrupt Command to make sure AIC
176 * will not Lock out nIRQ
177 */
178 for (i = 0; i < 8; i++)
179 at91_aic_write(AT91_AIC_EOICR, 0);
180
181 /*
182 * Spurious Interrupt ID in Spurious Vector Register.
183 * When there is no current interrupt, the IRQ Vector Register
184 * reads the value stored in AIC_SPU
185 */
186 at91_aic_write(AT91_AIC_SPU, spu_vector);
187
188 /* No debugging in AIC: Debug (Protect) Control Register */
189 at91_aic_write(AT91_AIC_DCR, 0);
190
191 /* Disable and clear all interrupts initially */
192 at91_aic_write(AT91_AIC_IDCR, 0xFFFFFFFF);
193 at91_aic_write(AT91_AIC_ICCR, 0xFFFFFFFF);
194}
195
Nicolas Ferree2615012011-11-22 22:26:09 +0100196#if defined(CONFIG_OF)
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100197static int at91_aic_irq_map(struct irq_domain *h, unsigned int virq,
198 irq_hw_number_t hw)
199{
200 /* Put virq number in Source Vector Register */
201 at91_aic_write(AT91_AIC_SVR(hw), virq);
202
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +0200203 /* Active Low interrupt, with priority */
204 at91_aic_write(AT91_AIC_SMR(hw),
205 AT91_AIC_SRCTYPE_LOW | at91_aic_irq_priorities[hw]);
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100206
Ludovic Desroches42a859d2012-05-25 14:11:51 +0200207 irq_set_chip_and_handler(virq, &at91_aic_chip, handle_fasteoi_irq);
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100208 set_irq_flags(virq, IRQF_VALID | IRQF_PROBE);
209
210 return 0;
211}
212
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +0200213static int at91_aic_irq_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
214 const u32 *intspec, unsigned int intsize,
215 irq_hw_number_t *out_hwirq, unsigned int *out_type)
216{
217 if (WARN_ON(intsize < 3))
218 return -EINVAL;
219 if (WARN_ON(intspec[0] >= NR_AIC_IRQS))
220 return -EINVAL;
221 if (WARN_ON((intspec[2] < AT91_AIC_IRQ_MIN_PRIORITY)
222 || (intspec[2] > AT91_AIC_IRQ_MAX_PRIORITY)))
223 return -EINVAL;
224
225 *out_hwirq = intspec[0];
226 *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK;
227 at91_aic_irq_priorities[*out_hwirq] = intspec[2];
228
229 return 0;
230}
231
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100232static struct irq_domain_ops at91_aic_irq_ops = {
233 .map = at91_aic_irq_map,
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +0200234 .xlate = at91_aic_irq_domain_xlate,
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100235};
236
237int __init at91_aic_of_init(struct device_node *node,
Nicolas Ferree2615012011-11-22 22:26:09 +0100238 struct device_node *parent)
239{
Jean-Christophe PLAGNIOL-VILLARDc6573942012-04-09 19:36:36 +0800240 struct property *prop;
241 const __be32 *p;
242 u32 val;
243
Ludovic Desrochesf8a073e2012-06-20 16:13:30 +0200244 at91_aic_irq_priorities = kzalloc(NR_AIC_IRQS
245 * sizeof(*at91_aic_irq_priorities),
246 GFP_KERNEL);
247 if (!at91_aic_irq_priorities)
248 return -ENOMEM;
249
Nicolas Ferree2615012011-11-22 22:26:09 +0100250 at91_aic_base = of_iomap(node, 0);
251 at91_aic_np = node;
252
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100253 at91_aic_domain = irq_domain_add_linear(at91_aic_np, NR_AIC_IRQS,
254 &at91_aic_irq_ops, NULL);
255 if (!at91_aic_domain)
256 panic("Unable to add AIC irq domain (DT)\n");
257
Jean-Christophe PLAGNIOL-VILLARDc6573942012-04-09 19:36:36 +0800258 at91_extern_irq = 0;
259 of_property_for_each_u32(node, "atmel,external-irqs", prop, p, val) {
260 if (val > 31)
261 pr_warn("AIC: external irq %d > 31 skip it\n", val);
262 else
263 at91_extern_irq |= (1 << val);
264 }
265
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100266 irq_set_default_host(at91_aic_domain);
267
268 at91_aic_hw_init(NR_AIC_IRQS);
269
Nicolas Ferree2615012011-11-22 22:26:09 +0100270 return 0;
271}
Nicolas Ferree2615012011-11-22 22:26:09 +0100272#endif
273
SAN People73a59c12006-01-09 17:05:41 +0000274/*
275 * Initialize the AIC interrupt controller.
276 */
Andrew Victorba854e12006-07-05 17:22:52 +0100277void __init at91_aic_init(unsigned int priority[NR_AIC_IRQS])
SAN People73a59c12006-01-09 17:05:41 +0000278{
279 unsigned int i;
Nicolas Ferree2615012011-11-22 22:26:09 +0100280 int irq_base;
SAN People73a59c12006-01-09 17:05:41 +0000281
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100282 at91_aic_base = ioremap(AT91_AIC, 512);
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +0800283 if (!at91_aic_base)
Nicolas Ferree2615012011-11-22 22:26:09 +0100284 panic("Unable to ioremap AIC registers\n");
285
286 /* Add irq domain for AIC */
287 irq_base = irq_alloc_descs(-1, 0, NR_AIC_IRQS, 0);
288 if (irq_base < 0) {
289 WARN(1, "Cannot allocate irq_descs, assuming pre-allocated\n");
290 irq_base = 0;
291 }
292 at91_aic_domain = irq_domain_add_legacy(at91_aic_np, NR_AIC_IRQS,
293 irq_base, 0,
294 &irq_domain_simple_ops, NULL);
295
296 if (!at91_aic_domain)
297 panic("Unable to add AIC irq domain\n");
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +0800298
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100299 irq_set_default_host(at91_aic_domain);
300
SAN People73a59c12006-01-09 17:05:41 +0000301 /*
302 * The IVR is used by macro get_irqnr_and_base to read and verify.
303 * The irq number is NR_AIC_IRQS when a spurious interrupt has occurred.
304 */
305 for (i = 0; i < NR_AIC_IRQS; i++) {
Nicolas Ferree2615012011-11-22 22:26:09 +0100306 /* Put hardware irq number in Source Vector Register: */
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200307 at91_aic_write(AT91_AIC_SVR(i), NR_IRQS_LEGACY + i);
Andrew Victorba854e12006-07-05 17:22:52 +0100308 /* Active Low interrupt, with the specified priority */
Jean-Christophe PLAGNIOL-VILLARDbe6d4322011-11-03 01:12:50 +0800309 at91_aic_write(AT91_AIC_SMR(i), AT91_AIC_SRCTYPE_LOW | priority[i]);
SAN People73a59c12006-01-09 17:05:41 +0000310
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200311 irq_set_chip_and_handler(NR_IRQS_LEGACY + i, &at91_aic_chip, handle_fasteoi_irq);
SAN People73a59c12006-01-09 17:05:41 +0000312 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
SAN People73a59c12006-01-09 17:05:41 +0000313 }
314
Nicolas Ferre8014d6f2012-02-14 18:08:14 +0100315 at91_aic_hw_init(NR_AIC_IRQS);
SAN People73a59c12006-01-09 17:05:41 +0000316}