2 * arch/m68k/mvme16x/16xints.c
4 * Copyright (C) 1995 Richard Hirst [richard@sleepie.demon.co.uk]
6 * based on amiints.c -- Amiga Linux interrupt handling code
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file README.legal in the main directory of this archive
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/seq_file.h>
19 #include <asm/system.h>
20 #include <asm/ptrace.h>
23 static irqreturn_t mvme16x_defhand (int irq, void *dev_id, struct pt_regs *fp);
26 * This should ideally be 4 elements only, for speed.
30 irqreturn_t (*handler)(int, void *, struct pt_regs *);
38 * void mvme16x_init_IRQ (void)
44 * This function is called during kernel startup to initialize
45 * the mvme16x IRQ handling routines. Should probably ensure
46 * that the base vectors for the VMEChip2 and PCCChip2 are valid.
49 void mvme16x_init_IRQ (void)
53 for (i = 0; i < 192; i++) {
54 irq_tab[i].handler = mvme16x_defhand;
55 irq_tab[i].flags = IRQ_FLG_STD;
56 irq_tab[i].dev_id = NULL;
57 irq_tab[i].devname = NULL;
62 int mvme16x_request_irq(unsigned int irq,
63 irqreturn_t (*handler)(int, void *, struct pt_regs *),
64 unsigned long flags, const char *devname, void *dev_id)
66 if (irq < 64 || irq > 255) {
67 printk("%s: Incorrect IRQ %d from %s\n", __FUNCTION__, irq, devname);
71 if (!(irq_tab[irq-64].flags & IRQ_FLG_STD)) {
72 if (irq_tab[irq-64].flags & IRQ_FLG_LOCK) {
73 printk("%s: IRQ %d from %s is not replaceable\n",
74 __FUNCTION__, irq, irq_tab[irq-64].devname);
77 if (flags & IRQ_FLG_REPLACE) {
78 printk("%s: %s can't replace IRQ %d from %s\n",
79 __FUNCTION__, devname, irq, irq_tab[irq-64].devname);
83 irq_tab[irq-64].handler = handler;
84 irq_tab[irq-64].flags = flags;
85 irq_tab[irq-64].dev_id = dev_id;
86 irq_tab[irq-64].devname = devname;
90 void mvme16x_free_irq(unsigned int irq, void *dev_id)
92 if (irq < 64 || irq > 255) {
93 printk("%s: Incorrect IRQ %d\n", __FUNCTION__, irq);
97 if (irq_tab[irq-64].dev_id != dev_id)
98 printk("%s: Removing probably wrong IRQ %d from %s\n",
99 __FUNCTION__, irq, irq_tab[irq-64].devname);
101 irq_tab[irq-64].handler = mvme16x_defhand;
102 irq_tab[irq-64].flags = IRQ_FLG_STD;
103 irq_tab[irq-64].dev_id = NULL;
104 irq_tab[irq-64].devname = NULL;
107 irqreturn_t mvme16x_process_int (unsigned long vec, struct pt_regs *fp)
109 if (vec < 64 || vec > 255) {
110 printk ("mvme16x_process_int: Illegal vector %ld", vec);
113 irq_tab[vec-64].count++;
114 irq_tab[vec-64].handler(vec, irq_tab[vec-64].dev_id, fp);
119 int show_mvme16x_interrupts (struct seq_file *p, void *v)
123 for (i = 0; i < 192; i++) {
124 if (irq_tab[i].count)
125 seq_printf(p, "Vec 0x%02x: %8d %s\n",
126 i+64, irq_tab[i].count,
127 irq_tab[i].devname ? irq_tab[i].devname : "free");
133 static irqreturn_t mvme16x_defhand (int irq, void *dev_id, struct pt_regs *fp)
135 printk ("Unknown interrupt 0x%02x\n", irq);
140 void mvme16x_enable_irq (unsigned int irq)
145 void mvme16x_disable_irq (unsigned int irq)