xref: /original-bsd/sys/hp300/stand/samachdep.h (revision 6e73d10f)
1 /*
2  * Copyright (c) 1982, 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)samachdep.h	7.2 (Berkeley) 05/07/91
8  */
9 
10 #define	NHPIB		4
11 #define NITE		4
12 #define	NSCSI		2
13 #define NRD		(NHPIB * 8)
14 #define NCT		(NHPIB * 8)
15 #define NSD		(NSCSI * 8)
16 
17 /* from cpu.h */
18 #define IIOV(x)		(x)
19 #define DIOBASE		(0x600000)
20 #define	DIOCSIZE	(0x10000)
21 #define DIOIIBASE	(0x01000000)
22 #define DIOIICSIZE	(0x00400000)
23 
24 #define HP_320		0	/* 16Mhz 68020+HP MMU+16K external cache */
25 #define HP_330		1	/* 16Mhz 68020+68851 MMU */
26 #define HP_350		2	/* 25Mhz 68020+HP MMU+32K external cache */
27 #define HP_360		3	/* 25Mhz 68030 */
28 #define HP_370		4	/* 33Mhz 68030+64K external cache */
29 #define HP_340		5	/* 16Mhz 68030 */
30 #define HP_375		6	/* 50Mhz 68030+32K external cache */
31 
32 extern	int howto, devtype;
33 
34 /* bogon grfinfo structure to keep grf_softc happy */
35 struct grfinfo {
36 	int	grf_foo;
37 };
38