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
] = IF_VERTB
,
65 [IRQ_AMIGA_COPPER
] = IF_COPER
,
66 [IRQ_AMIGA_AUD0
] = IF_AUD0
,
67 [IRQ_AMIGA_AUD1
] = IF_AUD1
,
68 [IRQ_AMIGA_AUD2
] = IF_AUD2
,
69 [IRQ_AMIGA_AUD3
] = IF_AUD3
,
70 [IRQ_AMIGA_BLIT
] = IF_BLIT
,
71 [IRQ_AMIGA_DSKSYN
] = IF_DSKSYN
,
72 [IRQ_AMIGA_DSKBLK
] = IF_DSKBLK
,
73 [IRQ_AMIGA_RBF
] = IF_RBF
,
74 [IRQ_AMIGA_TBE
] = IF_TBE
,
75 [IRQ_AMIGA_SOFT
] = IF_SOFT
,
76 [IRQ_AMIGA_PORTS
] = IF_PORTS
,
77 [IRQ_AMIGA_EXTER
] = IF_EXTER
79 static const unsigned char ami_servers
[AMI_STD_IRQS
] = {
80 [IRQ_AMIGA_VERTB
] = 1,
81 [IRQ_AMIGA_PORTS
] = 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 custom
.intena
= 0x7fff;
130 custom
.intreq
= 0x7fff;
131 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__
,
213 if (irq
>= IRQ_AMIGA_AUTO
)
214 return cpu_request_irq(irq
- IRQ_AMIGA_AUTO
, handler
,
215 flags
, devname
, dev_id
);
217 if (irq
>= IRQ_AMIGA_CIAB
)
218 return cia_request_irq(&ciab_base
, irq
- IRQ_AMIGA_CIAB
,
219 handler
, flags
, devname
, dev_id
);
221 if (irq
>= IRQ_AMIGA_CIAA
)
222 return cia_request_irq(&ciaa_base
, irq
- IRQ_AMIGA_CIAA
,
223 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 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
);
260 if (irq
>= IRQ_AMIGA_AUTO
)
261 cpu_free_irq(irq
- IRQ_AMIGA_AUTO
, 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
);
273 if (ami_servers
[irq
]) {
274 amiga_delete_irq(&ami_irq_list
[irq
], dev_id
);
275 /* if server list empty, disable the interrupt */
276 if (!ami_irq_list
[irq
] && irq
< IRQ_AMIGA_PORTS
)
277 custom
.intena
= amiga_intena_vals
[irq
];
279 if (ami_irq_list
[irq
]->dev_id
!= dev_id
)
280 printk("%s: removing probably wrong IRQ %d from %s\n",
281 __FUNCTION__
, irq
, ami_irq_list
[irq
]->devname
);
282 ami_irq_list
[irq
]->handler
= ami_badint
;
283 ami_irq_list
[irq
]->flags
= 0;
284 ami_irq_list
[irq
]->dev_id
= NULL
;
285 ami_irq_list
[irq
]->devname
= NULL
;
286 custom
.intena
= amiga_intena_vals
[irq
];
291 * Enable/disable a particular machine specific interrupt source.
292 * Note that this may affect other interrupts in case of a shared interrupt.
293 * This function should only be called for a _very_ short time to change some
294 * internal data, that may not be changed by the interrupt at the same time.
295 * ami_(enable|disable)_irq calls may also be nested.
298 void amiga_enable_irq(unsigned int irq
)
300 if (irq
>= AMI_IRQS
) {
301 printk("%s: Unknown IRQ %d\n", __FUNCTION__
, irq
);
305 if (--ami_ablecount
[irq
])
308 /* No action for auto-vector interrupts */
309 if (irq
>= IRQ_AMIGA_AUTO
){
310 printk("%s: Trying to enable auto-vector IRQ %i\n",
311 __FUNCTION__
, irq
- IRQ_AMIGA_AUTO
);
315 if (irq
>= IRQ_AMIGA_CIAB
) {
316 cia_set_irq(&ciab_base
, (1 << (irq
- IRQ_AMIGA_CIAB
)));
317 cia_able_irq(&ciab_base
, CIA_ICR_SETCLR
|
318 (1 << (irq
- IRQ_AMIGA_CIAB
)));
322 if (irq
>= IRQ_AMIGA_CIAA
) {
323 cia_set_irq(&ciaa_base
, (1 << (irq
- IRQ_AMIGA_CIAA
)));
324 cia_able_irq(&ciaa_base
, CIA_ICR_SETCLR
|
325 (1 << (irq
- IRQ_AMIGA_CIAA
)));
329 /* enable the interrupt */
330 custom
.intena
= IF_SETCLR
| amiga_intena_vals
[irq
];
333 void amiga_disable_irq(unsigned int irq
)
335 if (irq
>= AMI_IRQS
) {
336 printk("%s: Unknown IRQ %d\n", __FUNCTION__
, irq
);
340 if (ami_ablecount
[irq
]++)
343 /* No action for auto-vector interrupts */
344 if (irq
>= IRQ_AMIGA_AUTO
) {
345 printk("%s: Trying to disable auto-vector IRQ %i\n",
346 __FUNCTION__
, irq
- IRQ_AMIGA_AUTO
);
350 if (irq
>= IRQ_AMIGA_CIAB
) {
351 cia_able_irq(&ciab_base
, 1 << (irq
- IRQ_AMIGA_CIAB
));
355 if (irq
>= IRQ_AMIGA_CIAA
) {
356 cia_able_irq(&ciaa_base
, 1 << (irq
- IRQ_AMIGA_CIAA
));
360 /* disable the interrupt */
361 custom
.intena
= amiga_intena_vals
[irq
];
364 inline void amiga_do_irq(int irq
, struct pt_regs
*fp
)
366 kstat_cpu(0).irqs
[SYS_IRQS
+ irq
]++;
367 ami_irq_list
[irq
]->handler(irq
, ami_irq_list
[irq
]->dev_id
, fp
);
370 void amiga_do_irq_list(int irq
, struct pt_regs
*fp
)
374 kstat_cpu(0).irqs
[SYS_IRQS
+ irq
]++;
376 custom
.intreq
= amiga_intena_vals
[irq
];
378 for (node
= ami_irq_list
[irq
]; node
; node
= node
->next
)
379 node
->handler(irq
, node
->dev_id
, fp
);
383 * The builtin Amiga hardware interrupt handlers.
386 static irqreturn_t
ami_int1(int irq
, void *dev_id
, struct pt_regs
*fp
)
388 unsigned short ints
= custom
.intreqr
& custom
.intenar
;
390 /* if serial transmit buffer empty, interrupt */
392 custom
.intreq
= IF_TBE
;
393 amiga_do_irq(IRQ_AMIGA_TBE
, fp
);
396 /* if floppy disk transfer complete, interrupt */
397 if (ints
& IF_DSKBLK
) {
398 custom
.intreq
= IF_DSKBLK
;
399 amiga_do_irq(IRQ_AMIGA_DSKBLK
, fp
);
402 /* if software interrupt set, interrupt */
403 if (ints
& IF_SOFT
) {
404 custom
.intreq
= IF_SOFT
;
405 amiga_do_irq(IRQ_AMIGA_SOFT
, fp
);
410 static irqreturn_t
ami_int3(int irq
, void *dev_id
, struct pt_regs
*fp
)
412 unsigned short ints
= custom
.intreqr
& custom
.intenar
;
414 /* if a blitter interrupt */
415 if (ints
& IF_BLIT
) {
416 custom
.intreq
= IF_BLIT
;
417 amiga_do_irq(IRQ_AMIGA_BLIT
, fp
);
420 /* if a copper interrupt */
421 if (ints
& IF_COPER
) {
422 custom
.intreq
= IF_COPER
;
423 amiga_do_irq(IRQ_AMIGA_COPPER
, fp
);
426 /* if a vertical blank interrupt */
428 amiga_do_irq_list(IRQ_AMIGA_VERTB
, fp
);
432 static irqreturn_t
ami_int4(int irq
, void *dev_id
, struct pt_regs
*fp
)
434 unsigned short ints
= custom
.intreqr
& custom
.intenar
;
436 /* if audio 0 interrupt */
437 if (ints
& IF_AUD0
) {
438 custom
.intreq
= IF_AUD0
;
439 amiga_do_irq(IRQ_AMIGA_AUD0
, fp
);
442 /* if audio 1 interrupt */
443 if (ints
& IF_AUD1
) {
444 custom
.intreq
= IF_AUD1
;
445 amiga_do_irq(IRQ_AMIGA_AUD1
, fp
);
448 /* if audio 2 interrupt */
449 if (ints
& IF_AUD2
) {
450 custom
.intreq
= IF_AUD2
;
451 amiga_do_irq(IRQ_AMIGA_AUD2
, fp
);
454 /* if audio 3 interrupt */
455 if (ints
& IF_AUD3
) {
456 custom
.intreq
= IF_AUD3
;
457 amiga_do_irq(IRQ_AMIGA_AUD3
, fp
);
462 static irqreturn_t
ami_int5(int irq
, void *dev_id
, struct pt_regs
*fp
)
464 unsigned short ints
= custom
.intreqr
& custom
.intenar
;
466 /* if serial receive buffer full interrupt */
468 /* acknowledge of IF_RBF must be done by the serial interrupt */
469 amiga_do_irq(IRQ_AMIGA_RBF
, fp
);
472 /* if a disk sync interrupt */
473 if (ints
& IF_DSKSYN
) {
474 custom
.intreq
= IF_DSKSYN
;
475 amiga_do_irq(IRQ_AMIGA_DSKSYN
, fp
);
480 static irqreturn_t
ami_int7(int irq
, void *dev_id
, struct pt_regs
*fp
)
482 panic ("level 7 interrupt received\n");
485 irqreturn_t (*amiga_default_handler
[SYS_IRQS
])(int, void *, struct pt_regs
*) = {
496 int show_amiga_interrupts(struct seq_file
*p
, void *v
)
501 for (i
= 0; i
< AMI_STD_IRQS
; i
++) {
502 if (!(node
= ami_irq_list
[i
]))
504 seq_printf(p
, "ami %2d: %10u ", i
,
505 kstat_cpu(0).irqs
[SYS_IRQS
+ i
]);
507 if (node
->flags
& SA_INTERRUPT
)
511 seq_printf(p
, "%s\n", node
->devname
);
512 if ((node
= node
->next
))
517 cia_get_irq_list(&ciaa_base
, p
);
518 cia_get_irq_list(&ciab_base
, p
);