diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-04-11 03:26:29 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-04-11 03:26:29 +0000 |
commit | 04af8df9079e2b38fd9e3e41e2d7fe6b592e9034 (patch) | |
tree | 61ec6a4e26dae125c98d06bb1839ed450b895fdf /sys/arch/mvme88k/include/bugio.h | |
parent | 7711e18860b6eafe8c9d1f16ce36bbcab0d52614 (diff) |
Fix for 25 Mhz.
Diffstat (limited to 'sys/arch/mvme88k/include/bugio.h')
-rw-r--r-- | sys/arch/mvme88k/include/bugio.h | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/include/bugio.h b/sys/arch/mvme88k/include/bugio.h index cb8acc2b609..da2d1a7dbef 100644 --- a/sys/arch/mvme88k/include/bugio.h +++ b/sys/arch/mvme88k/include/bugio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bugio.h,v 1.5 1999/02/09 06:36:25 smurph Exp $ */ +/* $OpenBSD: bugio.h,v 1.6 1999/04/11 03:26:28 smurph Exp $ */ #include "sys/cdefs.h" struct bugdisk_io { @@ -49,6 +49,21 @@ struct bugbrdid { short type; short dev; int option; + char version[4]; + char serial[12]; /* SBC serial number */ + char id[16]; /* SBC id */ + char pwa[16]; /* printed wiring assembly number */ + char speed[4]; /* cpu speed */ + char etheraddr[6]; /* mac address, all zero if no ether */ + char fill[2]; + char scsiid[2]; /* local SCSI id */ + char sysid[8]; /* system id - nothing on mvme187 */ + char brd1_pwb[8]; /* memory board 1 pwb */ + char brd1_serial[8]; /* memory board 1 serial */ + char brd2_pwb[8]; /* memory board 2 pwb */ + char brd2_serial[8]; /* memory board 2 serial */ + char reserved[153]; + char cksum[1]; }; struct bugniocall { @@ -57,11 +72,11 @@ struct bugniocall { unsigned char ci; unsigned char cd; #define NETCTRL_INITDEVICE 0 -#define NETCTRL_GETHDW 1 -#define NETCTRL_TX 2 -#define NETCTRL_RX 3 -#define NETCTRL_FLUSH 4 -#define NETCTRL_RESET 5 +#define NETCTRL_GETHDW 1 +#define NETCTRL_TX 2 +#define NETCTRL_RX 3 +#define NETCTRL_FLUSH 4 +#define NETCTRL_RESET 5 unsigned long cid; unsigned long memaddr; unsigned long nbytes; |