1: /*
2: * Copyright (c) 1986 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: *
6: * @(#)if_vv.h 2.0 (2.10.1BSD Berkeley) 8/25/89
7: */
8:
9: /*
10: * ECO 176-748 changed the braodcast address from 0 to 0xff, at
11: * CTL (p1002) serial number around 150.
12: * It was implemented in August, 1982. This is a field-installable ECO,
13: * which improves net reliability. If the broadcast address has not been
14: * changed, comment out the following line.
15: */
16: #define NEW_BROADCAST /* new chip for broadcast problem */
17:
18: /*
19: * Local network header for proNET Ring
20: * This is arbitrated by "jas@proteon"
21: * (aka John Shriver, 617-655-3340)
22: */
23:
24: struct {
25: /* the first two fields are required by the hardware */
26: u_char vh_dhost; /* destination address */
27: u_char vh_shost; /* source address */
28: /* the next three fields are the local network header */
29: u_char vh_version; /* header version */
30: u_char vh_type; /* packet type => protocol number */
31: short vh_info; /* protocol-specific information */
32: };
33:
34: #define RING_VERSION 2 /* current version of v2lni header */
35:
36: /*
37: * Packet types (protocol numbers) in proNET protocol header
38: * Other types are defined, but are proprietary.
39: */
40: #define RING_IP 1
41: #define RING_TRAILER 2 /* offset now in vh_info only */
42: #define RING_ARP 3
43: #define RING_HDLC 4
44: #define RING_VAXDB 5
45: #define RING_RINGWAY 6
46: #define RING_RINGWAYM 8
47: #define RING_NOVELL 10
48: #define RING_PUP 12
49: #define RING_XNS 14
50: #define RING_DIAGNOSTICS 15 /* protocol type for testing */
51: #define RING_ECHO 16
52: #define RING_WHOAMI 0xa5 /* insure some bit transitions */
53:
54: #ifdef NEW_BROADCAST
55: #define VV_BROADCAST 0xff /* hardware-defined broadcast address */
56: #else
57: #define VV_BROADCAST 0x00 /* hardware-defined broadcast address */
58: #endif
59:
60: /*
61: * Proteon proNET Hardware definitions
62: * register bit definitions
63: */
64: #define VV_ENB 01 /* Enable Operation */
65: #define VV_DEN 02 /* Enable DMA */
66: #define VV_HEN 04 /* Host Relay Enable (Rcv) */
67: #define VV_CPB 04 /* Clear Packet Buffer (Xmit) */
68: #define VV_STE 010 /* Self Test Enable (Rcv) */
69: #define VV_UT1 010 /* Unused (Xmit) */
70: #define VV_LPB 020 /* Modem Disable (Rcv) */
71: #define VV_INR 020 /* Initialize Ring (Xmit) */
72: #define VV_RST 040 /* Reset */
73: #define VV_IEN 0100 /* Interrupt Enable */
74: #define VV_RDY 0200 /* Done */
75: #define VV_DPR 0400 /* Data Present (Rcv) */
76: #define VV_RFS 0400 /* Refused (Xmit) */
77: #define VV_NXM 01000 /* Non Existent Memory */
78: #define VV_OVR 02000 /* Overrun */
79: #define VV_ODB 04000 /* Odd Byte (Rcv) */
80: #define VV_UT2 04000 /* Unused (Xmit) */
81: #define VV_LDE 010000 /* Parity on 10 megabit (Rcv), */
82: /* Link Data Error on 80 megabit (Rcv) */
83: #define VV_OPT 010000 /* Output Timeout (Xmit) */
84: #define VV_NOK 020000 /* Ring Not OK */
85: #define VV_BDF 040000 /* Bad Format in Operation */
86: #define VV_NIR 0100000 /* Not in Ring */
87:
88: #define VVXERR (VV_NXM|VV_OVR|VV_OPT|VV_BDF) /* Xmit errs */
89: #define VVRERR (VV_NXM|VV_OVR|VV_ODB|VV_BDF|VV_DPR) /* Rcv errs */
90: #define VVFE (VV_NXM|VV_OVR) /* Fatal errors */
91:
92: #define VV_IBITS \
93: "\10\20NIR\17BDF\16NOK\15LDE\14ODB\13OVR\12NXM\11DPR\10RDY\7IEN\6RST\5LPB\4STE\3HEN\2DEN\1ENB"
94:
95: #define VV_OBITS \
96: "\10\20NIR\17BDF\16NOK\15OPT\13OVR\12NXM\11RFS\10RDY\7IEN\6RST\5INR\3HEN\2DEN\1ENB"
97:
98: /* device registers */
99: struct vvreg {
100: short vvicsr; /* input csr */
101: u_short vviwc; /* input word count */
102: u_short vviba; /* input addr lo */
103: u_short vviea; /* input addr hi */
104: short vvocsr; /* output csr */
105: u_short vvowc; /* output word count */
106: u_short vvoba; /* output addr lo */
107: u_short vvoea; /* output addr hi */
108: };
109:
110: #define VVRETRY 7 /* output retry limit */
111: #define VVIDENTSUCC 5 /* number of successes required in self-test */
112: #define VVIDENTRETRY 10 /* identify loop attempt limit */
113: #define VVTIMEOUT 60 /* seconds before a transmit timeout */
Defined struct's
defined in line
24; used 36 times
- in /usr/src/sys/pdpif/if_vv.c line
249(2),
310(2),
331-332(4),
349(2),
386(2),
394(2),
439(2),
557(2),
608(2),
614(2),
738(2),
833(2),
841-846(8),
926(2)
vvreg
defined in line
99; used 28 times
- in /usr/src/sys/pdpif/if_vv.c line
154-159(4),
237(2),
247(2),
308(2),
322(2),
416(2),
458(2),
478(2),
484(2),
556(2),
569(2),
741(2),
751(2)
Defined macros
VVFE
defined in line
90;
never used
Usage of this include