blob: c5b5212cc3f91544f42b27f73323f9cf0a9bfc42 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m68k/amiga/amiints.c -- Amiga Linux interrupt handling code
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file COPYING in the main directory of this archive
6 * for more details.
7 *
8 * 11/07/96: rewritten interrupt handling, irq lists are exists now only for
9 * this sources where it makes sense (VERTB/PORTS/EXTER) and you must
10 * be careful that dev_id for this sources is unique since this the
11 * only possibility to distinguish between different handlers for
12 * free_irq. irq lists also have different irq flags:
13 * - IRQ_FLG_FAST: handler is inserted at top of list (after other
14 * fast handlers)
15 * - IRQ_FLG_SLOW: handler is inserted at bottom of list and before
16 * they're executed irq level is set to the previous
17 * one, but handlers don't need to be reentrant, if
18 * reentrance occurred, slow handlers will be just
19 * called again.
20 * The whole interrupt handling for CIAs is moved to cia.c
21 * /Roman Zippel
22 *
23 * 07/08/99: rewamp of the interrupt handling - we now have two types of
24 * interrupts, normal and fast handlers, fast handlers being
Thomas Gleixnerb0b9fdc2006-07-01 19:29:19 -070025 * marked with IRQF_DISABLED and runs with all other interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * disabled. Normal interrupts disable their own source but
27 * run with all other interrupt sources enabled.
28 * PORTS and EXTER interrupts are always shared even if the
29 * drivers do not explicitly mark this when calling
30 * request_irq which they really should do.
31 * This is similar to the way interrupts are handled on all
32 * other architectures and makes a ton of sense besides
33 * having the advantage of making it easier to share
34 * drivers.
35 * /Jes
36 */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
Roman Zippelb5dc7842006-06-25 05:47:00 -070039#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/irq.h>
43#include <asm/traps.h>
44#include <asm/amigahw.h>
45#include <asm/amigaints.h>
46#include <asm/amipcmcia.h>
47
Roman Zippel74be8d02006-06-25 05:47:01 -070048static void amiga_enable_irq(unsigned int irq);
49static void amiga_disable_irq(unsigned int irq);
Al Viro2850bc22006-10-07 14:16:45 +010050static irqreturn_t ami_int1(int irq, void *dev_id);
51static irqreturn_t ami_int3(int irq, void *dev_id);
52static irqreturn_t ami_int4(int irq, void *dev_id);
53static irqreturn_t ami_int5(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Roman Zippel74be8d02006-06-25 05:47:01 -070055static struct irq_controller amiga_irq_controller = {
56 .name = "amiga",
Milind Arun Choudhary241258d2007-05-06 14:50:54 -070057 .lock = __SPIN_LOCK_UNLOCKED(amiga_irq_controller.lock),
Roman Zippel74be8d02006-06-25 05:47:01 -070058 .enable = amiga_enable_irq,
59 .disable = amiga_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*
63 * void amiga_init_IRQ(void)
64 *
65 * Parameters: None
66 *
67 * Returns: Nothing
68 *
69 * This function should be called during kernel startup to initialize
70 * the amiga IRQ handling routines.
71 */
72
73void __init amiga_init_IRQ(void)
74{
Geert Uytterhoeven66acd252008-12-30 14:00:34 +010075 if (request_irq(IRQ_AUTO_1, ami_int1, 0, "int1", NULL))
76 pr_err("Couldn't register int%d\n", 1);
77 if (request_irq(IRQ_AUTO_3, ami_int3, 0, "int3", NULL))
78 pr_err("Couldn't register int%d\n", 3);
79 if (request_irq(IRQ_AUTO_4, ami_int4, 0, "int4", NULL))
80 pr_err("Couldn't register int%d\n", 4);
81 if (request_irq(IRQ_AUTO_5, ami_int5, 0, "int5", NULL))
82 pr_err("Couldn't register int%d\n", 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Roman Zippel74be8d02006-06-25 05:47:01 -070084 m68k_setup_irq_controller(&amiga_irq_controller, IRQ_USER, AMI_STD_IRQS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /* turn off PCMCIA interrupts */
87 if (AMIGAHW_PRESENT(PCMCIA))
88 gayle.inten = GAYLE_IRQ_IDE;
89
90 /* turn off all interrupts and enable the master interrupt bit */
Al Virob4290a22006-01-12 01:06:12 -080091 amiga_custom.intena = 0x7fff;
92 amiga_custom.intreq = 0x7fff;
93 amiga_custom.intena = IF_SETCLR | IF_INTEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 cia_init_IRQ(&ciaa_base);
96 cia_init_IRQ(&ciab_base);
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/*
100 * Enable/disable a particular machine specific interrupt source.
101 * Note that this may affect other interrupts in case of a shared interrupt.
102 * This function should only be called for a _very_ short time to change some
103 * internal data, that may not be changed by the interrupt at the same time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
105
Roman Zippel74be8d02006-06-25 05:47:01 -0700106static void amiga_enable_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Roman Zippel74be8d02006-06-25 05:47:01 -0700108 amiga_custom.intena = IF_SETCLR | (1 << (irq - IRQ_USER));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Roman Zippel74be8d02006-06-25 05:47:01 -0700111static void amiga_disable_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Roman Zippel74be8d02006-06-25 05:47:01 -0700113 amiga_custom.intena = 1 << (irq - IRQ_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116/*
117 * The builtin Amiga hardware interrupt handlers.
118 */
119
Al Viro2850bc22006-10-07 14:16:45 +0100120static irqreturn_t ami_int1(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Al Virob4290a22006-01-12 01:06:12 -0800122 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 /* if serial transmit buffer empty, interrupt */
125 if (ints & IF_TBE) {
Al Virob4290a22006-01-12 01:06:12 -0800126 amiga_custom.intreq = IF_TBE;
Al Viro2850bc22006-10-07 14:16:45 +0100127 m68k_handle_int(IRQ_AMIGA_TBE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 /* if floppy disk transfer complete, interrupt */
131 if (ints & IF_DSKBLK) {
Al Virob4290a22006-01-12 01:06:12 -0800132 amiga_custom.intreq = IF_DSKBLK;
Al Viro2850bc22006-10-07 14:16:45 +0100133 m68k_handle_int(IRQ_AMIGA_DSKBLK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
136 /* if software interrupt set, interrupt */
137 if (ints & IF_SOFT) {
Al Virob4290a22006-01-12 01:06:12 -0800138 amiga_custom.intreq = IF_SOFT;
Al Viro2850bc22006-10-07 14:16:45 +0100139 m68k_handle_int(IRQ_AMIGA_SOFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 return IRQ_HANDLED;
142}
143
Al Viro2850bc22006-10-07 14:16:45 +0100144static irqreturn_t ami_int3(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Al Virob4290a22006-01-12 01:06:12 -0800146 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* if a blitter interrupt */
149 if (ints & IF_BLIT) {
Al Virob4290a22006-01-12 01:06:12 -0800150 amiga_custom.intreq = IF_BLIT;
Al Viro2850bc22006-10-07 14:16:45 +0100151 m68k_handle_int(IRQ_AMIGA_BLIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 /* if a copper interrupt */
155 if (ints & IF_COPER) {
Al Virob4290a22006-01-12 01:06:12 -0800156 amiga_custom.intreq = IF_COPER;
Al Viro2850bc22006-10-07 14:16:45 +0100157 m68k_handle_int(IRQ_AMIGA_COPPER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
160 /* if a vertical blank interrupt */
Roman Zippel74be8d02006-06-25 05:47:01 -0700161 if (ints & IF_VERTB) {
162 amiga_custom.intreq = IF_VERTB;
Al Viro2850bc22006-10-07 14:16:45 +0100163 m68k_handle_int(IRQ_AMIGA_VERTB);
Roman Zippel74be8d02006-06-25 05:47:01 -0700164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return IRQ_HANDLED;
166}
167
Al Viro2850bc22006-10-07 14:16:45 +0100168static irqreturn_t ami_int4(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Al Virob4290a22006-01-12 01:06:12 -0800170 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /* if audio 0 interrupt */
173 if (ints & IF_AUD0) {
Al Virob4290a22006-01-12 01:06:12 -0800174 amiga_custom.intreq = IF_AUD0;
Al Viro2850bc22006-10-07 14:16:45 +0100175 m68k_handle_int(IRQ_AMIGA_AUD0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 /* if audio 1 interrupt */
179 if (ints & IF_AUD1) {
Al Virob4290a22006-01-12 01:06:12 -0800180 amiga_custom.intreq = IF_AUD1;
Al Viro2850bc22006-10-07 14:16:45 +0100181 m68k_handle_int(IRQ_AMIGA_AUD1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 /* if audio 2 interrupt */
185 if (ints & IF_AUD2) {
Al Virob4290a22006-01-12 01:06:12 -0800186 amiga_custom.intreq = IF_AUD2;
Al Viro2850bc22006-10-07 14:16:45 +0100187 m68k_handle_int(IRQ_AMIGA_AUD2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 /* if audio 3 interrupt */
191 if (ints & IF_AUD3) {
Al Virob4290a22006-01-12 01:06:12 -0800192 amiga_custom.intreq = IF_AUD3;
Al Viro2850bc22006-10-07 14:16:45 +0100193 m68k_handle_int(IRQ_AMIGA_AUD3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195 return IRQ_HANDLED;
196}
197
Al Viro2850bc22006-10-07 14:16:45 +0100198static irqreturn_t ami_int5(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Al Virob4290a22006-01-12 01:06:12 -0800200 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* if serial receive buffer full interrupt */
203 if (ints & IF_RBF) {
204 /* acknowledge of IF_RBF must be done by the serial interrupt */
Al Viro2850bc22006-10-07 14:16:45 +0100205 m68k_handle_int(IRQ_AMIGA_RBF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 /* if a disk sync interrupt */
209 if (ints & IF_DSKSYN) {
Al Virob4290a22006-01-12 01:06:12 -0800210 amiga_custom.intreq = IF_DSKSYN;
Al Viro2850bc22006-10-07 14:16:45 +0100211 m68k_handle_int(IRQ_AMIGA_DSKSYN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 return IRQ_HANDLED;
214}