2 * linux/arch/arm/mach-at91/irq.c
4 * Copyright (C) 2004 SAN People
5 * Copyright (C) 2004 ATMEL
6 * Copyright (C) Rick Bronson
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.
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.
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
23 #include <linux/init.h>
24 #include <linux/module.h>
26 #include <linux/types.h>
28 #include <asm/hardware.h>
30 #include <asm/mach-types.h>
31 #include <asm/setup.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/irq.h>
35 #include <asm/mach/map.h>
38 static void at91_aic_mask_irq(unsigned int irq
)
40 /* Disable interrupt on AIC */
41 at91_sys_write(AT91_AIC_IDCR
, 1 << irq
);
44 static void at91_aic_unmask_irq(unsigned int irq
)
46 /* Enable interrupt on AIC */
47 at91_sys_write(AT91_AIC_IECR
, 1 << irq
);
50 unsigned int at91_extern_irq
;
52 #define is_extern_irq(irq) ((1 << (irq)) & at91_extern_irq)
54 static int at91_aic_set_type(unsigned irq
, unsigned type
)
56 unsigned int smr
, srctype
;
60 srctype
= AT91_AIC_SRCTYPE_HIGH
;
63 srctype
= AT91_AIC_SRCTYPE_RISING
;
66 if ((irq
== AT91_ID_FIQ
) || is_extern_irq(irq
)) /* only supported on external interrupts */
67 srctype
= AT91_AIC_SRCTYPE_LOW
;
72 if ((irq
== AT91_ID_FIQ
) || is_extern_irq(irq
)) /* only supported on external interrupts */
73 srctype
= AT91_AIC_SRCTYPE_FALLING
;
81 smr
= at91_sys_read(AT91_AIC_SMR(irq
)) & ~AT91_AIC_SRCTYPE
;
82 at91_sys_write(AT91_AIC_SMR(irq
), smr
| srctype
);
91 static int at91_aic_set_wake(unsigned irq
, unsigned value
)
93 if (unlikely(irq
>= 32))
97 wakeups
|= (1 << irq
);
99 wakeups
&= ~(1 << irq
);
104 void at91_irq_suspend(void)
106 backups
= at91_sys_read(AT91_AIC_IMR
);
107 at91_sys_write(AT91_AIC_IDCR
, backups
);
108 at91_sys_write(AT91_AIC_IECR
, wakeups
);
111 void at91_irq_resume(void)
113 at91_sys_write(AT91_AIC_IDCR
, wakeups
);
114 at91_sys_write(AT91_AIC_IECR
, backups
);
118 #define at91_aic_set_wake NULL
121 static struct irq_chip at91_aic_chip
= {
123 .ack
= at91_aic_mask_irq
,
124 .mask
= at91_aic_mask_irq
,
125 .unmask
= at91_aic_unmask_irq
,
126 .set_type
= at91_aic_set_type
,
127 .set_wake
= at91_aic_set_wake
,
131 * Initialize the AIC interrupt controller.
133 void __init
at91_aic_init(unsigned int priority
[NR_AIC_IRQS
])
138 * The IVR is used by macro get_irqnr_and_base to read and verify.
139 * The irq number is NR_AIC_IRQS when a spurious interrupt has occurred.
141 for (i
= 0; i
< NR_AIC_IRQS
; i
++) {
142 /* Put irq number in Source Vector Register: */
143 at91_sys_write(AT91_AIC_SVR(i
), i
);
144 /* Active Low interrupt, with the specified priority */
145 at91_sys_write(AT91_AIC_SMR(i
), AT91_AIC_SRCTYPE_LOW
| priority
[i
]);
147 set_irq_chip(i
, &at91_aic_chip
);
148 set_irq_handler(i
, handle_level_irq
);
149 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
151 /* Perform 8 End Of Interrupt Command to make sure AIC will not Lock out nIRQ */
153 at91_sys_write(AT91_AIC_EOICR
, 0);
157 * Spurious Interrupt ID in Spurious Vector Register is NR_AIC_IRQS
158 * When there is no current interrupt, the IRQ Vector Register reads the value stored in AIC_SPU
160 at91_sys_write(AT91_AIC_SPU
, NR_AIC_IRQS
);
162 /* No debugging in AIC: Debug (Protect) Control Register */
163 at91_sys_write(AT91_AIC_DCR
, 0);
165 /* Disable and clear all interrupts initially */
166 at91_sys_write(AT91_AIC_IDCR
, 0xFFFFFFFF);
167 at91_sys_write(AT91_AIC_ICCR
, 0xFFFFFFFF);