blob: a8da471265844df9f7b3c03918d0b3162da05853 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Geert Uytterhoeven92b1bd52011-05-31 11:11:01 +02002 * Amiga Linux interrupt handling code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/init.h>
Roman Zippelb5dc7842006-06-25 05:47:00 -070010#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
Geert Uytterhoeven978ef7e2011-05-31 22:08:28 +020012#ifdef CONFIG_GENERIC_HARDIRQS
13#include <linux/irq.h>
14#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/irq.h>
17#include <asm/traps.h>
18#include <asm/amigahw.h>
19#include <asm/amigaints.h>
20#include <asm/amipcmcia.h>
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * Enable/disable a particular machine specific interrupt source.
25 * Note that this may affect other interrupts in case of a shared interrupt.
26 * This function should only be called for a _very_ short time to change some
27 * internal data, that may not be changed by the interrupt at the same time.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +020030static void amiga_irq_enable(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +020032 amiga_custom.intena = IF_SETCLR | (1 << (data->irq - IRQ_USER));
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +020035static void amiga_irq_disable(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Geert Uytterhoevene8abf5e2011-04-17 22:53:04 +020037 amiga_custom.intena = 1 << (data->irq - IRQ_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Geert Uytterhoeven92b1bd52011-05-31 11:11:01 +020040static struct irq_chip amiga_irq_chip = {
41 .name = "amiga",
42 .irq_enable = amiga_irq_enable,
43 .irq_disable = amiga_irq_disable,
44};
45
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * The builtin Amiga hardware interrupt handlers.
49 */
50
Geert Uytterhoevenfb1b6462011-06-01 11:49:18 +020051#ifdef CONFIG_GENERIC_HARDIRQS
52static void ami_int1(unsigned int irq, struct irq_desc *desc)
53{
54 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
55
56 /* if serial transmit buffer empty, interrupt */
57 if (ints & IF_TBE) {
58 amiga_custom.intreq = IF_TBE;
59 generic_handle_irq(IRQ_AMIGA_TBE);
60 }
61
62 /* if floppy disk transfer complete, interrupt */
63 if (ints & IF_DSKBLK) {
64 amiga_custom.intreq = IF_DSKBLK;
65 generic_handle_irq(IRQ_AMIGA_DSKBLK);
66 }
67
68 /* if software interrupt set, interrupt */
69 if (ints & IF_SOFT) {
70 amiga_custom.intreq = IF_SOFT;
71 generic_handle_irq(IRQ_AMIGA_SOFT);
72 }
73}
74
75static void ami_int3(unsigned int irq, struct irq_desc *desc)
76{
77 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
78
79 /* if a blitter interrupt */
80 if (ints & IF_BLIT) {
81 amiga_custom.intreq = IF_BLIT;
82 generic_handle_irq(IRQ_AMIGA_BLIT);
83 }
84
85 /* if a copper interrupt */
86 if (ints & IF_COPER) {
87 amiga_custom.intreq = IF_COPER;
88 generic_handle_irq(IRQ_AMIGA_COPPER);
89 }
90
91 /* if a vertical blank interrupt */
92 if (ints & IF_VERTB) {
93 amiga_custom.intreq = IF_VERTB;
94 generic_handle_irq(IRQ_AMIGA_VERTB);
95 }
96}
97
98static void ami_int4(unsigned int irq, struct irq_desc *desc)
99{
100 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
101
102 /* if audio 0 interrupt */
103 if (ints & IF_AUD0) {
104 amiga_custom.intreq = IF_AUD0;
105 generic_handle_irq(IRQ_AMIGA_AUD0);
106 }
107
108 /* if audio 1 interrupt */
109 if (ints & IF_AUD1) {
110 amiga_custom.intreq = IF_AUD1;
111 generic_handle_irq(IRQ_AMIGA_AUD1);
112 }
113
114 /* if audio 2 interrupt */
115 if (ints & IF_AUD2) {
116 amiga_custom.intreq = IF_AUD2;
117 generic_handle_irq(IRQ_AMIGA_AUD2);
118 }
119
120 /* if audio 3 interrupt */
121 if (ints & IF_AUD3) {
122 amiga_custom.intreq = IF_AUD3;
123 generic_handle_irq(IRQ_AMIGA_AUD3);
124 }
125}
126
127static void ami_int5(unsigned int irq, struct irq_desc *desc)
128{
129 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
130
131 /* if serial receive buffer full interrupt */
132 if (ints & IF_RBF) {
133 /* acknowledge of IF_RBF must be done by the serial interrupt */
134 generic_handle_irq(IRQ_AMIGA_RBF);
135 }
136
137 /* if a disk sync interrupt */
138 if (ints & IF_DSKSYN) {
139 amiga_custom.intreq = IF_DSKSYN;
140 generic_handle_irq(IRQ_AMIGA_DSKSYN);
141 }
142}
143#else /* !CONFIG_GENERIC_HARDIRQS */
Al Viro2850bc22006-10-07 14:16:45 +0100144static irqreturn_t ami_int1(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 serial transmit buffer empty, interrupt */
149 if (ints & IF_TBE) {
Al Virob4290a22006-01-12 01:06:12 -0800150 amiga_custom.intreq = IF_TBE;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200151 generic_handle_irq(IRQ_AMIGA_TBE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 /* if floppy disk transfer complete, interrupt */
155 if (ints & IF_DSKBLK) {
Al Virob4290a22006-01-12 01:06:12 -0800156 amiga_custom.intreq = IF_DSKBLK;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200157 generic_handle_irq(IRQ_AMIGA_DSKBLK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
160 /* if software interrupt set, interrupt */
161 if (ints & IF_SOFT) {
Al Virob4290a22006-01-12 01:06:12 -0800162 amiga_custom.intreq = IF_SOFT;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200163 generic_handle_irq(IRQ_AMIGA_SOFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165 return IRQ_HANDLED;
166}
167
Al Viro2850bc22006-10-07 14:16:45 +0100168static irqreturn_t ami_int3(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 a blitter interrupt */
173 if (ints & IF_BLIT) {
Al Virob4290a22006-01-12 01:06:12 -0800174 amiga_custom.intreq = IF_BLIT;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200175 generic_handle_irq(IRQ_AMIGA_BLIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 /* if a copper interrupt */
179 if (ints & IF_COPER) {
Al Virob4290a22006-01-12 01:06:12 -0800180 amiga_custom.intreq = IF_COPER;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200181 generic_handle_irq(IRQ_AMIGA_COPPER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 /* if a vertical blank interrupt */
Roman Zippel74be8d02006-06-25 05:47:01 -0700185 if (ints & IF_VERTB) {
186 amiga_custom.intreq = IF_VERTB;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200187 generic_handle_irq(IRQ_AMIGA_VERTB);
Roman Zippel74be8d02006-06-25 05:47:01 -0700188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return IRQ_HANDLED;
190}
191
Al Viro2850bc22006-10-07 14:16:45 +0100192static irqreturn_t ami_int4(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Al Virob4290a22006-01-12 01:06:12 -0800194 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* if audio 0 interrupt */
197 if (ints & IF_AUD0) {
Al Virob4290a22006-01-12 01:06:12 -0800198 amiga_custom.intreq = IF_AUD0;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200199 generic_handle_irq(IRQ_AMIGA_AUD0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* if audio 1 interrupt */
203 if (ints & IF_AUD1) {
Al Virob4290a22006-01-12 01:06:12 -0800204 amiga_custom.intreq = IF_AUD1;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200205 generic_handle_irq(IRQ_AMIGA_AUD1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 /* if audio 2 interrupt */
209 if (ints & IF_AUD2) {
Al Virob4290a22006-01-12 01:06:12 -0800210 amiga_custom.intreq = IF_AUD2;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200211 generic_handle_irq(IRQ_AMIGA_AUD2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214 /* if audio 3 interrupt */
215 if (ints & IF_AUD3) {
Al Virob4290a22006-01-12 01:06:12 -0800216 amiga_custom.intreq = IF_AUD3;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200217 generic_handle_irq(IRQ_AMIGA_AUD3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219 return IRQ_HANDLED;
220}
221
Al Viro2850bc22006-10-07 14:16:45 +0100222static irqreturn_t ami_int5(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Al Virob4290a22006-01-12 01:06:12 -0800224 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* if serial receive buffer full interrupt */
227 if (ints & IF_RBF) {
228 /* acknowledge of IF_RBF must be done by the serial interrupt */
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200229 generic_handle_irq(IRQ_AMIGA_RBF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
232 /* if a disk sync interrupt */
233 if (ints & IF_DSKSYN) {
Al Virob4290a22006-01-12 01:06:12 -0800234 amiga_custom.intreq = IF_DSKSYN;
Geert Uytterhoeven1425df82011-07-01 20:39:19 +0200235 generic_handle_irq(IRQ_AMIGA_DSKSYN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 return IRQ_HANDLED;
238}
Geert Uytterhoevenfb1b6462011-06-01 11:49:18 +0200239#endif /* !CONFIG_GENERIC_HARDIRQS */
Geert Uytterhoeven92b1bd52011-05-31 11:11:01 +0200240
241
242/*
243 * void amiga_init_IRQ(void)
244 *
245 * Parameters: None
246 *
247 * Returns: Nothing
248 *
249 * This function should be called during kernel startup to initialize
250 * the amiga IRQ handling routines.
251 */
252
253void __init amiga_init_IRQ(void)
254{
Geert Uytterhoevenfb1b6462011-06-01 11:49:18 +0200255#ifdef CONFIG_GENERIC_HARDIRQS
256 m68k_setup_irq_controller(&amiga_irq_chip, handle_simple_irq, IRQ_USER,
257 AMI_STD_IRQS);
258
259 irq_set_chained_handler(IRQ_AUTO_1, ami_int1);
260 irq_set_chained_handler(IRQ_AUTO_3, ami_int3);
261 irq_set_chained_handler(IRQ_AUTO_4, ami_int4);
262 irq_set_chained_handler(IRQ_AUTO_5, ami_int5);
263#else /* !CONFIG_GENERIC_HARDIRQS */
Geert Uytterhoeven92b1bd52011-05-31 11:11:01 +0200264 if (request_irq(IRQ_AUTO_1, ami_int1, 0, "int1", NULL))
265 pr_err("Couldn't register int%d\n", 1);
266 if (request_irq(IRQ_AUTO_3, ami_int3, 0, "int3", NULL))
267 pr_err("Couldn't register int%d\n", 3);
268 if (request_irq(IRQ_AUTO_4, ami_int4, 0, "int4", NULL))
269 pr_err("Couldn't register int%d\n", 4);
270 if (request_irq(IRQ_AUTO_5, ami_int5, 0, "int5", NULL))
271 pr_err("Couldn't register int%d\n", 5);
272
273 m68k_setup_irq_controller(&amiga_irq_chip, handle_simple_irq, IRQ_USER,
274 AMI_STD_IRQS);
Geert Uytterhoevenfb1b6462011-06-01 11:49:18 +0200275#endif /* !CONFIG_GENERIC_HARDIRQS */
Geert Uytterhoeven92b1bd52011-05-31 11:11:01 +0200276
277 /* turn off PCMCIA interrupts */
278 if (AMIGAHW_PRESENT(PCMCIA))
279 gayle.inten = GAYLE_IRQ_IDE;
280
281 /* turn off all interrupts and enable the master interrupt bit */
282 amiga_custom.intena = 0x7fff;
283 amiga_custom.intreq = 0x7fff;
284 amiga_custom.intena = IF_SETCLR | IF_INTEN;
285
286 cia_init_IRQ(&ciaa_base);
287 cia_init_IRQ(&ciab_base);
288}