xref: /csrg-svn/sys/hp300/stand/hpibvar.h (revision 41488)
1*41488Smckusick /*
2*41488Smckusick  * Copyright (c) 1982, 1990 The Regents of the University of California.
3*41488Smckusick  * All rights reserved.
4*41488Smckusick  *
5*41488Smckusick  * %sccs.include.redist.c%
6*41488Smckusick  *
7*41488Smckusick  *	@(#)hpibvar.h	7.1 (Berkeley) 05/08/90
8*41488Smckusick  */
9*41488Smckusick 
10*41488Smckusick #define	HPIBA		32
11*41488Smckusick #define	HPIBB		1
12*41488Smckusick #define	HPIBC		8
13*41488Smckusick #define	HPIBA_BA	21
14*41488Smckusick #define	HPIBC_BA	30
15*41488Smckusick 
16*41488Smckusick #define	CSA_BA		0x1F
17*41488Smckusick 
18*41488Smckusick #define	C_DCL		20
19*41488Smckusick #define	C_LAG		32
20*41488Smckusick #define	C_UNL		63
21*41488Smckusick #define	C_TAG		64
22*41488Smckusick #define	C_UNA		94
23*41488Smckusick #define	C_UNT		95
24*41488Smckusick #define	C_SCG		96
25*41488Smckusick 
26*41488Smckusick struct	hpib_softc {
27*41488Smckusick 	char	sc_alive;
28*41488Smckusick 	char	sc_type;
29*41488Smckusick 	int	sc_ba;
30*41488Smckusick 	char	*sc_addr;
31*41488Smckusick };
32*41488Smckusick 
33*41488Smckusick extern	struct hpib_softc hpib_softc[];
34