blob: 309d6e6a1374736e203f8c7cf166d8d6ff6693ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sun3ints.h -- Linux/Sun3 interrupt handling code definitions
3 *
4 * Erik Verbruggen (erik@bigmama.xtdnet.nl)
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
8 * more details.
9 */
10
11#ifndef SUN3INTS_H
12#define SUN3INTS_H
13
14#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/intersil.h>
17#include <asm/oplib.h>
Roman Zippelebba61d2006-06-25 05:47:05 -070018#include <asm/traps.h>
Sam Creaseya3a79bd2006-12-09 10:34:38 +010019#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#define SUN3_INT_VECS 192
22
23void sun3_enable_irq(unsigned int irq);
24void sun3_disable_irq(unsigned int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025extern void sun3_init_IRQ (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026extern void sun3_enable_interrupts (void);
27extern void sun3_disable_interrupts (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028extern volatile unsigned char* sun3_intreg;
29
30/* master list of VME vectors -- don't fuck with this */
Roman Zippelebba61d2006-06-25 05:47:05 -070031#define SUN3_VEC_FLOPPY (IRQ_USER+0)
32#define SUN3_VEC_VMESCSI0 (IRQ_USER+0)
33#define SUN3_VEC_VMESCSI1 (IRQ_USER+1)
34#define SUN3_VEC_CG (IRQ_USER+104)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36
37#endif /* SUN3INTS_H */