wereg.h revision 1.1 1 /* $NetBSD: wereg.h,v 1.1 2001/03/23 17:34:41 jdolecek Exp $ */
2
3 /*
4 * National Semiconductor DS8390 NIC register definitions.
5 *
6 * Copyright (C) 1993, David Greenman. This software may be used, modified,
7 * copied, distributed, and sold, in both source and binary form provided that
8 * the above copyright and these terms are retained. Under no circumstances is
9 * the author responsible for the proper functioning of this software, nor does
10 * the author assume any responsibility for damages incurred with its use.
11 */
12
13 /*
14 * Compile-time config flags
15 */
16 /*
17 * This sets the default for enabling/disablng the tranceiver.
18 */
19 #define WE_FLAGS_DISABLE_TRANCEIVER 0x0001
20
21 /*
22 * This forces the board to be used in 8/16-bit mode even if it autoconfigs
23 * differently.
24 */
25 #define WE_FLAGS_FORCE_8BIT_MODE 0x0002
26 #define WE_FLAGS_FORCE_16BIT_MODE 0x0004
27
28 /*
29 * This disables the use of double transmit buffers.
30 */
31 #define WE_FLAGS_NO_MULTI_BUFFERING 0x0008
32
33 /*
34 * Definitions for Western digital/SMC WD80x3 series ASIC
35 */
36
37 /*
38 * Memory Select Register (MSR)
39 */
40 #define WE_MSR 0
41
42 /* next three definitions for Toshiba */
43 #define WE_MSR_POW 0x02 /* 0 = power save, 1 = normal (R/W) */
44 #define WE_MSR_BSY 0x04 /* gate array busy (R) */
45 #define WE_MSR_LEN 0x20 /* 0 = 16-bit, 1 = 8-bit (R/W) */
46
47 #define WE_MSR_ADDR 0x3f /* Memory decode bits 18-13 */
48 #define WE_MSR_MENB 0x40 /* Memory enable */
49 #define WE_MSR_RST 0x80 /* Reset board */
50
51 /*
52 * Interface Configuration Register (ICR)
53 */
54 #define WE_ICR 1
55
56 #define WE_ICR_16BIT 0x01 /* 16-bit interface */
57 #define WE_ICR_OAR 0x02 /* select register (0=BIO 1=EAR) */
58 #define WE_ICR_IR2 0x04 /* high order bit of encoded IRQ */
59 #define WE_ICR_MSZ 0x08 /* memory size (0=8k 1=32k) */
60 #define WE_ICR_RLA 0x10 /* recall LAN address */
61 #define WE_ICR_RX7 0x20 /* recall all but i/o and LAN address */
62 #define WE_ICR_RIO 0x40 /* recall i/o address */
63 #define WE_ICR_STO 0x80 /* store to non-volatile memory */
64 #ifdef TOSH_ETHER
65 #define WE_ICR_MEM 0xe0 /* shared mem address A15-A13 (R/W) */
66 #define WE_ICR_MSZ1 0x0f /* memory size, 0x08 = 64K, 0x04 = 32K,
67 0x02 = 16K, 0x01 = 8K */
68 /* 64K can only be used if mem address
69 above 1MB */
70 /* IAR holds address A23-A16 (R/W) */
71 #endif
72
73 /*
74 * IO Address Register (IAR)
75 */
76 #define WE_IAR 2
77
78 /*
79 * EEROM Address Register
80 */
81 #define WE_EAR 3
82
83 /*
84 * Interrupt Request Register (IRR)
85 */
86 #define WE_IRR 4
87
88 #define WE_IRR_0WS 0x01 /* use 0 wait-states on 8 bit bus */
89 #define WE_IRR_OUT1 0x02 /* WD83C584 pin 1 output */
90 #define WE_IRR_OUT2 0x04 /* WD83C584 pin 2 output */
91 #define WE_IRR_OUT3 0x08 /* WD83C584 pin 3 output */
92 #define WE_IRR_FLASH 0x10 /* Flash RAM is in the ROM socket */
93
94 /*
95 * The three bits of the encoded IRQ are decoded as follows:
96 *
97 * IR2 IR1 IR0 IRQ
98 * 0 0 0 2/9
99 * 0 0 1 3
100 * 0 1 0 5
101 * 0 1 1 7
102 * 1 0 0 10
103 * 1 0 1 11
104 * 1 1 0 15
105 * 1 1 1 4
106 */
107 #define WE_IRR_IR0 0x20 /* bit 0 of encoded IRQ */
108 #define WE_IRR_IR1 0x40 /* bit 1 of encoded IRQ */
109 #define WE_IRR_IEN 0x80 /* Interrupt enable */
110
111 /*
112 * LA Address Register (LAAR)
113 */
114 #define WE_LAAR 5
115
116 #define WE_LAAR_ADDRHI 0x1f /* bits 23-19 of RAM address */
117 #define WE_LAAR_0WS16 0x20 /* enable 0 wait-states on 16 bit bus */
118 #define WE_LAAR_L16EN 0x40 /* enable 16-bit operation */
119 #define WE_LAAR_M16EN 0x80 /* enable 16-bit memory access */
120
121 /* i/o base offset to station address/card-ID PROM */
122 #define WE_PROM 8
123
124 /*
125 * 83C790 specific registers
126 */
127 /*
128 * Hardware Support Register (HWR) ('790)
129 */
130 #define WE790_HWR 4
131
132 #define WE790_HWR_RST 0x10 /* hardware reset */
133 #define WE790_HWR_LPRM 0x40 /* LAN PROM select */
134 #define WE790_HWR_SWH 0x80 /* switch register set */
135
136 /*
137 * ICR790 Interrupt Control Register for the 83C790
138 */
139 #define WE790_ICR 6
140
141 #define WE790_ICR_EIL 0x01 /* enable interrupts */
142
143 /*
144 * REV/IOPA Revision / I/O Pipe register for the 83C79X
145 */
146 #define WE790_REV 7
147
148 #define WE790_REV_790 0x20
149 #define WE790_REV_795 0x40
150
151 /*
152 * 79X RAM Address Register (RAR)
153 * Enabled with SWH bit=1 in HWR register
154 */
155
156 #define WE790_RAR 0x0b
157
158 #define WE790_RAR_SZ8 0x00 /* 8k memory buffer */
159 #define WE790_RAR_SZ16 0x10 /* 16k memory buffer */
160 #define WE790_RAR_SZ32 0x20 /* 32k memory buffer */
161 #define WE790_RAR_SZ64 0x30 /* 64k memory buffer */
162
163 /*
164 * General Control Register (GCR)
165 * Enabled with SWH bit == 1 in HWR register
166 */
167 #define WE790_GCR 0x0d
168
169 #define WE790_GCR_LIT 0x01 /* on for UTP */
170 #define WE790_GCR_GPOUT 0x02 /* if BNC is enabled */
171 #define WE790_GCR_IR0 0x04 /* bit 0 of encoded IRQ */
172 #define WE790_GCR_IR1 0x08 /* bit 1 of encoded IRQ */
173 #define WE790_GCR_ZWSEN 0x20 /* zero wait state enable */
174 #define WE790_GCR_IR2 0x40 /* bit 2 of encoded IRQ */
175 /*
176 * The three bits of the encoded IRQ are decoded as follows:
177 *
178 * IR2 IR1 IR0 IRQ
179 * 0 0 0 none
180 * 0 0 1 9
181 * 0 1 0 3
182 * 0 1 1 5
183 * 1 0 0 7
184 * 1 0 1 10
185 * 1 1 0 11
186 * 1 1 1 15
187 */
188
189 /* i/o base offset to CARD ID */
190 #define WE_CARD_ID WE_PROM+6
191
192 /* Board type codes in card ID */
193 #define WE_TYPE_WD8003S 0x02
194 #define WE_TYPE_WD8003E 0x03
195 #define WE_TYPE_WD8013EBT 0x05
196 #define WE_TYPE_TOSHIBA1 0x11 /* named PCETA1 */
197 #define WE_TYPE_TOSHIBA2 0x12 /* named PCETA2 */
198 #define WE_TYPE_TOSHIBA3 0x13 /* named PCETB */
199 #define WE_TYPE_TOSHIBA4 0x14 /* named PCETC */
200 #define WE_TYPE_WD8003W 0x24
201 #define WE_TYPE_WD8003EB 0x25
202 #define WE_TYPE_WD8013W 0x26
203 #define WE_TYPE_WD8013EP 0x27
204 #define WE_TYPE_WD8013WC 0x28
205 #define WE_TYPE_WD8013EPC 0x29
206 #define WE_TYPE_SMC8216T 0x2a
207 #define WE_TYPE_SMC8216C 0x2b
208 #define WE_TYPE_WD8013EBP 0x2c
209
210 /* Bit definitions in card ID */
211 #define WE_REV_MASK 0x1f /* Revision mask */
212 #define WE_SOFTCONFIG 0x20 /* Soft config */
213 #define WE_LARGERAM 0x40 /* Large RAM */
214 #define WE_MICROCHANEL 0x80 /* Microchannel bus (vs. isa) */
215
216 /*
217 * Checksum total. All 8 bytes in station address PROM will add up to this.
218 */
219 #ifdef TOSH_ETHER
220 #define WE_ROM_CHECKSUM_TOTAL 0xA5
221 #else
222 #define WE_ROM_CHECKSUM_TOTAL 0xFF
223 #endif
224
225 #define WE_NIC_OFFSET 0x10 /* I/O base offset to NIC */
226 #define WE_ASIC_OFFSET 0 /* I/O base offset to ASIC */
227 #define WE_NIC_NPORTS 16
228 #define WE_ASIC_NPORTS 16
229 #define WE_NPORTS (WE_NIC_NPORTS + WE_ASIC_NPORTS)
230
231 #define WE_PAGE_OFFSET 0 /* page offset for NIC access to mem */
232