if_lereg.h revision 1.1 1 1.1 thorpej /* $NetBSD: if_lereg.h,v 1.1 1997/02/04 03:52:29 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1982, 1990 The Regents of the University of California.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
16 1.1 thorpej * must display the following acknowledgement:
17 1.1 thorpej * This product includes software developed by the University of
18 1.1 thorpej * California, Berkeley and its contributors.
19 1.1 thorpej * 4. Neither the name of the University nor the names of its contributors
20 1.1 thorpej * may be used to endorse or promote products derived from this software
21 1.1 thorpej * without specific prior written permission.
22 1.1 thorpej *
23 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 thorpej * SUCH DAMAGE.
34 1.1 thorpej *
35 1.1 thorpej * @(#)if_lereg.h 7.1 (Berkeley) 5/8/90
36 1.1 thorpej */
37 1.1 thorpej
38 1.1 thorpej #define LEID 21
39 1.1 thorpej
40 1.1 thorpej #define NTBUF 2
41 1.1 thorpej #define TLEN 1
42 1.1 thorpej #define NRBUF 8
43 1.1 thorpej #define RLEN 3
44 1.1 thorpej #define BUFSIZE 1518
45 1.1 thorpej
46 1.1 thorpej #define vu_char volatile u_char
47 1.1 thorpej #define vu_short volatile u_short
48 1.1 thorpej
49 1.1 thorpej /*
50 1.1 thorpej * LANCE registers.
51 1.1 thorpej */
52 1.1 thorpej struct lereg0 {
53 1.1 thorpej u_char ler0_pad0;
54 1.1 thorpej vu_char ler0_id; /* ID */
55 1.1 thorpej u_char ler0_pad1;
56 1.1 thorpej vu_char ler0_status; /* interrupt enable/status */
57 1.1 thorpej };
58 1.1 thorpej
59 1.1 thorpej /*
60 1.1 thorpej * Control and status bits -- lereg0
61 1.1 thorpej */
62 1.1 thorpej #define LE_IE 0x80 /* interrupt enable */
63 1.1 thorpej #define LE_IR 0x40 /* interrupt requested */
64 1.1 thorpej #define LE_LOCK 0x08 /* lock status register */
65 1.1 thorpej #define LE_ACK 0x04 /* ack of lock */
66 1.1 thorpej #define LE_JAB 0x02 /* loss of tx clock (???) */
67 1.1 thorpej #define LE_IPL(x) ((((x) >> 4) & 0x3) + 3)
68 1.1 thorpej
69 1.1 thorpej struct lereg1 {
70 1.1 thorpej vu_short ler1_rdp; /* data port */
71 1.1 thorpej vu_short ler1_rap; /* register select port */
72 1.1 thorpej };
73 1.1 thorpej
74 1.1 thorpej /*
75 1.1 thorpej * Control and status bits -- lereg1
76 1.1 thorpej */
77 1.1 thorpej #define LE_SERR 0x8000
78 1.1 thorpej #define LE_BABL 0x4000
79 1.1 thorpej #define LE_CERR 0x2000
80 1.1 thorpej #define LE_MISS 0x1000
81 1.1 thorpej #define LE_MERR 0x0800
82 1.1 thorpej #define LE_RINT 0x0400
83 1.1 thorpej #define LE_TINT 0x0200
84 1.1 thorpej #define LE_IDON 0x0100
85 1.1 thorpej #define LE_INTR 0x0080
86 1.1 thorpej #define LE_INEA 0x0040
87 1.1 thorpej #define LE_RXON 0x0020
88 1.1 thorpej #define LE_TXON 0x0010
89 1.1 thorpej #define LE_TDMD 0x0008
90 1.1 thorpej #define LE_STOP 0x0004
91 1.1 thorpej #define LE_STRT 0x0002
92 1.1 thorpej #define LE_INIT 0x0001
93 1.1 thorpej
94 1.1 thorpej #define LE_BSWP 0x0004
95 1.1 thorpej #define LE_ACON 0x0002
96 1.1 thorpej #define LE_BCON 0x0001
97 1.1 thorpej
98 1.1 thorpej /*
99 1.1 thorpej * Overlayed on 16K dual-port RAM.
100 1.1 thorpej * Current size is 15,284 bytes with 8 x 1518 receive buffers and
101 1.1 thorpej * 2 x 1518 transmit buffers.
102 1.1 thorpej */
103 1.1 thorpej
104 1.1 thorpej /*
105 1.1 thorpej * LANCE initialization block
106 1.1 thorpej */
107 1.1 thorpej struct init_block {
108 1.1 thorpej u_short mode; /* mode register */
109 1.1 thorpej u_char padr[6]; /* ethernet address */
110 1.1 thorpej u_long ladrf[2]; /* logical address filter (multicast) */
111 1.1 thorpej u_short rdra; /* low order pointer to receive ring */
112 1.1 thorpej u_short rlen; /* high order pointer and no. rings */
113 1.1 thorpej u_short tdra; /* low order pointer to transmit ring */
114 1.1 thorpej u_short tlen; /* high order pointer and no rings */
115 1.1 thorpej };
116 1.1 thorpej
117 1.1 thorpej /*
118 1.1 thorpej * Mode bits -- init_block
119 1.1 thorpej */
120 1.1 thorpej #define LE_PROM 0x8000 /* promiscuous */
121 1.1 thorpej #define LE_INTL 0x0040 /* internal loopback */
122 1.1 thorpej #define LE_DRTY 0x0020 /* disable retry */
123 1.1 thorpej #define LE_COLL 0x0010 /* force collision */
124 1.1 thorpej #define LE_DTCR 0x0008 /* disable transmit crc */
125 1.1 thorpej #define LE_LOOP 0x0004 /* loopback */
126 1.1 thorpej #define LE_DTX 0x0002 /* disable transmitter */
127 1.1 thorpej #define LE_DRX 0x0001 /* disable receiver */
128 1.1 thorpej #define LE_NORMAL 0x0000
129 1.1 thorpej
130 1.1 thorpej /*
131 1.1 thorpej * Message descriptor
132 1.1 thorpej */
133 1.1 thorpej struct mds {
134 1.1 thorpej u_short addr;
135 1.1 thorpej u_short flags;
136 1.1 thorpej u_short bcnt;
137 1.1 thorpej u_short mcnt;
138 1.1 thorpej };
139 1.1 thorpej
140 1.1 thorpej /* Message descriptor flags */
141 1.1 thorpej #define LE_OWN 0x8000 /* owner bit, 0=host, 1=LANCE */
142 1.1 thorpej #define LE_ERR 0x4000 /* error */
143 1.1 thorpej #define LE_STP 0x0200 /* start of packet */
144 1.1 thorpej #define LE_ENP 0x0100 /* end of packet */
145 1.1 thorpej
146 1.1 thorpej /* Receive ring status flags */
147 1.1 thorpej #define LE_FRAM 0x2000 /* framing error error */
148 1.1 thorpej #define LE_OFLO 0x1000 /* silo overflow */
149 1.1 thorpej #define LE_CRC 0x0800 /* CRC error */
150 1.1 thorpej #define LE_RBUFF 0x0400 /* buffer error */
151 1.1 thorpej
152 1.1 thorpej /* Transmit ring status flags */
153 1.1 thorpej #define LE_MORE 0x1000 /* more than 1 retry */
154 1.1 thorpej #define LE_ONE 0x0800 /* one retry */
155 1.1 thorpej #define LE_DEF 0x0400 /* deferred transmit */
156 1.1 thorpej
157 1.1 thorpej /* Transmit errors */
158 1.1 thorpej #define LE_TBUFF 0x8000 /* buffer error */
159 1.1 thorpej #define LE_UFLO 0x4000 /* silo underflow */
160 1.1 thorpej #define LE_LCOL 0x1000 /* late collision */
161 1.1 thorpej #define LE_LCAR 0x0800 /* loss of carrier */
162 1.1 thorpej #define LE_RTRY 0x0400 /* tried 16 times */
163