2 * linux/arch/m68k/amiga/amiints.c -- Amiga Linux interrupt handling code
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
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
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
20 * The whole interrupt handling for CIAs is moved to cia.c
23 * 07/08/99: rewamp of the interrupt handling - we now have two types of
24 * interrupts, normal and fast handlers, fast handlers being
25 * marked with SA_INTERRUPT and runs with all other interrupts
26 * 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
38 #include <linux/types.h>
39 #include <linux/kernel.h>
40 #include <linux/sched.h>
41 #include <linux/kernel_stat.h>
42 #include <linux/init.h>
43 #include <linux/errno.h>
44 #include <linux/seq_file.h>
46 #include <asm/system.h>
48 #include <asm/traps.h>
49 #include <asm/amigahw.h>
50 #include <asm/amigaints.h>
51 #include <asm/amipcmcia.h>
53 extern int cia_request_irq(struct ciabase *base,int irq,
54 irqreturn_t (*handler)(int, void *, struct pt_regs *),
55 unsigned long flags, const char *devname, void *dev_id);
56 extern void cia_free_irq(struct ciabase *base, unsigned int irq, void *dev_id);
57 extern void cia_init_IRQ(struct ciabase *base);
58 extern int cia_get_irq_list(struct ciabase *base, struct seq_file *p);
60 /* irq node variables for amiga interrupt sources */
61 static irq_node_t *ami_irq_list[AMI_STD_IRQS];
63 static unsigned short amiga_intena_vals[AMI_STD_IRQS] = {
64 [IRQ_AMIGA_VERTB-IRQ_USER] = IF_VERTB,
65 [IRQ_AMIGA_COPPER-IRQ_USER] = IF_COPER,
66 [IRQ_AMIGA_AUD0-IRQ_USER] = IF_AUD0,
67 [IRQ_AMIGA_AUD1-IRQ_USER] = IF_AUD1,
68 [IRQ_AMIGA_AUD2-IRQ_USER] = IF_AUD2,
69 [IRQ_AMIGA_AUD3-IRQ_USER] = IF_AUD3,
70 [IRQ_AMIGA_BLIT-IRQ_USER] = IF_BLIT,
71 [IRQ_AMIGA_DSKSYN-IRQ_USER] = IF_DSKSYN,
72 [IRQ_AMIGA_DSKBLK-IRQ_USER] = IF_DSKBLK,
73 [IRQ_AMIGA_RBF-IRQ_USER] = IF_RBF,
74 [IRQ_AMIGA_TBE-IRQ_USER] = IF_TBE,
75 [IRQ_AMIGA_SOFT-IRQ_USER] = IF_SOFT,
76 [IRQ_AMIGA_PORTS-IRQ_USER] = IF_PORTS,
77 [IRQ_AMIGA_EXTER-IRQ_USER] = IF_EXTER
79 static const unsigned char ami_servers[AMI_STD_IRQS] = {
80 [IRQ_AMIGA_VERTB-IRQ_USER] = 1,
81 [IRQ_AMIGA_PORTS-IRQ_USER] = 1,
82 [IRQ_AMIGA_EXTER-IRQ_USER] = 1
85 static short ami_ablecount[AMI_IRQS];
87 static irqreturn_t ami_badint(int irq, void *dev_id, struct pt_regs *fp)
94 * void amiga_init_IRQ(void)
100 * This function should be called during kernel startup to initialize
101 * the amiga IRQ handling routines.
104 void __init amiga_init_IRQ(void)
108 /* initialize handlers */
109 for (i = 0; i < AMI_STD_IRQS; i++) {
110 if (ami_servers[i]) {
111 ami_irq_list[i] = NULL;
113 ami_irq_list[i] = new_irq_node();
114 ami_irq_list[i]->handler = ami_badint;
115 ami_irq_list[i]->flags = 0;
116 ami_irq_list[i]->dev_id = NULL;
117 ami_irq_list[i]->devname = NULL;
118 ami_irq_list[i]->next = NULL;
121 for (i = 0; i < AMI_IRQS; i++)
122 ami_ablecount[i] = 0;
124 /* turn off PCMCIA interrupts */
125 if (AMIGAHW_PRESENT(PCMCIA))
126 gayle.inten = GAYLE_IRQ_IDE;
128 /* turn off all interrupts and enable the master interrupt bit */
129 amiga_custom.intena = 0x7fff;
130 amiga_custom.intreq = 0x7fff;
131 amiga_custom.intena = IF_SETCLR | IF_INTEN;
133 cia_init_IRQ(&ciaa_base);
134 cia_init_IRQ(&ciab_base);
137 static inline int amiga_insert_irq(irq_node_t **list, irq_node_t *node)
143 printk("%s: Warning: dev_id of %s is zero\n",
144 __FUNCTION__, node->devname);
146 local_irq_save(flags);
150 if (node->flags & SA_INTERRUPT) {
151 if (node->flags & SA_SHIRQ)
154 * There should never be more than one
156 while (cur && cur->flags & SA_INTERRUPT) {
170 local_irq_restore(flags);
174 static inline void amiga_delete_irq(irq_node_t **list, void *dev_id)
179 local_irq_save(flags);
181 for (node = *list; node; list = &node->next, node = *list) {
182 if (node->dev_id == dev_id) {
184 /* Mark it as free. */
185 node->handler = NULL;
186 local_irq_restore(flags);
190 local_irq_restore(flags);
191 printk ("%s: tried to remove invalid irq\n", __FUNCTION__);
195 * amiga_request_irq : add an interrupt service routine for a particular
196 * machine specific interrupt source.
197 * If the addition was successful, it returns 0.
200 int amiga_request_irq(unsigned int irq,
201 irqreturn_t (*handler)(int, void *, struct pt_regs *),
202 unsigned long flags, const char *devname, void *dev_id)
207 if (irq >= AMI_IRQS) {
208 printk ("%s: Unknown IRQ %d from %s\n", __FUNCTION__,
214 return cpu_request_irq(irq, handler, flags, devname, dev_id);
216 if (irq >= IRQ_AMIGA_CIAB)
217 return cia_request_irq(&ciab_base, irq - IRQ_AMIGA_CIAB,
218 handler, flags, devname, dev_id);
220 if (irq >= IRQ_AMIGA_CIAA)
221 return cia_request_irq(&ciaa_base, irq - IRQ_AMIGA_CIAA,
222 handler, flags, devname, dev_id);
226 * IRQ_AMIGA_PORTS & IRQ_AMIGA_EXTER defaults to shared,
227 * we could add a check here for the SA_SHIRQ flag but all drivers
228 * should be aware of sharing anyway.
230 if (ami_servers[irq]) {
231 if (!(node = new_irq_node()))
233 node->handler = handler;
235 node->dev_id = dev_id;
236 node->devname = devname;
238 error = amiga_insert_irq(&ami_irq_list[irq], node);
240 ami_irq_list[irq]->handler = handler;
241 ami_irq_list[irq]->flags = flags;
242 ami_irq_list[irq]->dev_id = dev_id;
243 ami_irq_list[irq]->devname = devname;
246 /* enable the interrupt */
247 if (irq < IRQ_AMIGA_PORTS && !ami_ablecount[irq])
248 amiga_custom.intena = IF_SETCLR | amiga_intena_vals[irq];
253 void amiga_free_irq(unsigned int irq, void *dev_id)
255 if (irq >= AMI_IRQS) {
256 printk ("%s: Unknown IRQ %d\n", __FUNCTION__, irq);
261 cpu_free_irq(irq, dev_id);
263 if (irq >= IRQ_AMIGA_CIAB) {
264 cia_free_irq(&ciab_base, irq - IRQ_AMIGA_CIAB, dev_id);
268 if (irq >= IRQ_AMIGA_CIAA) {
269 cia_free_irq(&ciaa_base, irq - IRQ_AMIGA_CIAA, dev_id);
274 if (ami_servers[irq]) {
275 amiga_delete_irq(&ami_irq_list[irq], dev_id);
276 /* if server list empty, disable the interrupt */
277 if (!ami_irq_list[irq] && irq < IRQ_AMIGA_PORTS)
278 amiga_custom.intena = amiga_intena_vals[irq];
280 if (ami_irq_list[irq]->dev_id != dev_id)
281 printk("%s: removing probably wrong IRQ %d from %s\n",
282 __FUNCTION__, irq, ami_irq_list[irq]->devname);
283 ami_irq_list[irq]->handler = ami_badint;
284 ami_irq_list[irq]->flags = 0;
285 ami_irq_list[irq]->dev_id = NULL;
286 ami_irq_list[irq]->devname = NULL;
287 amiga_custom.intena = amiga_intena_vals[irq];
292 * Enable/disable a particular machine specific interrupt source.
293 * Note that this may affect other interrupts in case of a shared interrupt.
294 * This function should only be called for a _very_ short time to change some
295 * internal data, that may not be changed by the interrupt at the same time.
296 * ami_(enable|disable)_irq calls may also be nested.
299 void amiga_enable_irq(unsigned int irq)
301 if (irq >= AMI_IRQS) {
302 printk("%s: Unknown IRQ %d\n", __FUNCTION__, irq);
306 if (--ami_ablecount[irq])
309 /* No action for auto-vector interrupts */
310 if (irq < IRQ_USER) {
311 printk("%s: Trying to enable auto-vector IRQ %i\n",
316 if (irq >= IRQ_AMIGA_CIAB) {
317 cia_set_irq(&ciab_base, (1 << (irq - IRQ_AMIGA_CIAB)));
318 cia_able_irq(&ciab_base, CIA_ICR_SETCLR |
319 (1 << (irq - IRQ_AMIGA_CIAB)));
323 if (irq >= IRQ_AMIGA_CIAA) {
324 cia_set_irq(&ciaa_base, (1 << (irq - IRQ_AMIGA_CIAA)));
325 cia_able_irq(&ciaa_base, CIA_ICR_SETCLR |
326 (1 << (irq - IRQ_AMIGA_CIAA)));
330 /* enable the interrupt */
331 amiga_custom.intena = IF_SETCLR | amiga_intena_vals[irq-IRQ_USER];
334 void amiga_disable_irq(unsigned int irq)
336 if (irq >= AMI_IRQS) {
337 printk("%s: Unknown IRQ %d\n", __FUNCTION__, irq);
341 if (ami_ablecount[irq]++)
344 /* No action for auto-vector interrupts */
345 if (irq < IRQ_USER) {
346 printk("%s: Trying to disable auto-vector IRQ %i\n",
351 if (irq >= IRQ_AMIGA_CIAB) {
352 cia_able_irq(&ciab_base, 1 << (irq - IRQ_AMIGA_CIAB));
356 if (irq >= IRQ_AMIGA_CIAA) {
357 cia_able_irq(&ciaa_base, 1 << (irq - IRQ_AMIGA_CIAA));
361 /* disable the interrupt */
362 amiga_custom.intena = amiga_intena_vals[irq-IRQ_USER];
365 inline void amiga_do_irq(int irq, struct pt_regs *fp)
367 kstat_cpu(0).irqs[irq]++;
368 ami_irq_list[irq-IRQ_USER]->handler(irq, ami_irq_list[irq-IRQ_USER]->dev_id, fp);
371 void amiga_do_irq_list(int irq, struct pt_regs *fp)
375 kstat_cpu(0).irqs[irq]++;
377 amiga_custom.intreq = amiga_intena_vals[irq-IRQ_USER];
379 for (node = ami_irq_list[irq-IRQ_USER]; node; node = node->next)
380 node->handler(irq, node->dev_id, fp);
384 * The builtin Amiga hardware interrupt handlers.
387 static irqreturn_t ami_int1(int irq, void *dev_id, struct pt_regs *fp)
389 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
391 /* if serial transmit buffer empty, interrupt */
393 amiga_custom.intreq = IF_TBE;
394 amiga_do_irq(IRQ_AMIGA_TBE, fp);
397 /* if floppy disk transfer complete, interrupt */
398 if (ints & IF_DSKBLK) {
399 amiga_custom.intreq = IF_DSKBLK;
400 amiga_do_irq(IRQ_AMIGA_DSKBLK, fp);
403 /* if software interrupt set, interrupt */
404 if (ints & IF_SOFT) {
405 amiga_custom.intreq = IF_SOFT;
406 amiga_do_irq(IRQ_AMIGA_SOFT, fp);
411 static irqreturn_t ami_int3(int irq, void *dev_id, struct pt_regs *fp)
413 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
415 /* if a blitter interrupt */
416 if (ints & IF_BLIT) {
417 amiga_custom.intreq = IF_BLIT;
418 amiga_do_irq(IRQ_AMIGA_BLIT, fp);
421 /* if a copper interrupt */
422 if (ints & IF_COPER) {
423 amiga_custom.intreq = IF_COPER;
424 amiga_do_irq(IRQ_AMIGA_COPPER, fp);
427 /* if a vertical blank interrupt */
429 amiga_do_irq_list(IRQ_AMIGA_VERTB, fp);
433 static irqreturn_t ami_int4(int irq, void *dev_id, struct pt_regs *fp)
435 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
437 /* if audio 0 interrupt */
438 if (ints & IF_AUD0) {
439 amiga_custom.intreq = IF_AUD0;
440 amiga_do_irq(IRQ_AMIGA_AUD0, fp);
443 /* if audio 1 interrupt */
444 if (ints & IF_AUD1) {
445 amiga_custom.intreq = IF_AUD1;
446 amiga_do_irq(IRQ_AMIGA_AUD1, fp);
449 /* if audio 2 interrupt */
450 if (ints & IF_AUD2) {
451 amiga_custom.intreq = IF_AUD2;
452 amiga_do_irq(IRQ_AMIGA_AUD2, fp);
455 /* if audio 3 interrupt */
456 if (ints & IF_AUD3) {
457 amiga_custom.intreq = IF_AUD3;
458 amiga_do_irq(IRQ_AMIGA_AUD3, fp);
463 static irqreturn_t ami_int5(int irq, void *dev_id, struct pt_regs *fp)
465 unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
467 /* if serial receive buffer full interrupt */
469 /* acknowledge of IF_RBF must be done by the serial interrupt */
470 amiga_do_irq(IRQ_AMIGA_RBF, fp);
473 /* if a disk sync interrupt */
474 if (ints & IF_DSKSYN) {
475 amiga_custom.intreq = IF_DSKSYN;
476 amiga_do_irq(IRQ_AMIGA_DSKSYN, fp);
481 static irqreturn_t ami_int7(int irq, void *dev_id, struct pt_regs *fp)
483 panic ("level 7 interrupt received\n");
486 irqreturn_t (*amiga_default_handler[SYS_IRQS])(int, void *, struct pt_regs *) = {
497 int show_amiga_interrupts(struct seq_file *p, void *v)
502 for (i = IRQ_USER; i < IRQ_AMIGA_CIAA; i++) {
503 node = ami_irq_list[i - IRQ_USER];
506 seq_printf(p, "ami %2d: %10u ", i,
507 kstat_cpu(0).irqs[i]);
509 if (node->flags & SA_INTERRUPT)
513 seq_printf(p, "%s\n", node->devname);
514 if ((node = node->next))
519 cia_get_irq_list(&ciaa_base, p);
520 cia_get_irq_list(&ciab_base, p);