if_bgereg.h revision 1.47 1 1.47 sborrill /* $NetBSD: if_bgereg.h,v 1.47 2008/07/24 08:14:49 sborrill Exp $ */
2 1.1 fvdl /*
3 1.1 fvdl * Copyright (c) 2001 Wind River Systems
4 1.1 fvdl * Copyright (c) 1997, 1998, 1999, 2001
5 1.1 fvdl * Bill Paul <wpaul (at) windriver.com>. All rights reserved.
6 1.1 fvdl *
7 1.1 fvdl * Redistribution and use in source and binary forms, with or without
8 1.1 fvdl * modification, are permitted provided that the following conditions
9 1.1 fvdl * are met:
10 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
11 1.1 fvdl * notice, this list of conditions and the following disclaimer.
12 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
14 1.1 fvdl * documentation and/or other materials provided with the distribution.
15 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
16 1.1 fvdl * must display the following acknowledgement:
17 1.1 fvdl * This product includes software developed by Bill Paul.
18 1.1 fvdl * 4. Neither the name of the author nor the names of any co-contributors
19 1.1 fvdl * may be used to endorse or promote products derived from this software
20 1.1 fvdl * without specific prior written permission.
21 1.1 fvdl *
22 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
26 1.1 fvdl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 1.1 fvdl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 1.1 fvdl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 1.1 fvdl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 1.1 fvdl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 1.1 fvdl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32 1.1 fvdl * THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 fvdl *
34 1.16 jonathan * $FreeBSD: if_bgereg.h,v 1.1.2.7 2002/11/02 18:17:55 mp Exp $
35 1.1 fvdl */
36 1.1 fvdl
37 1.1 fvdl /*
38 1.1 fvdl * BCM570x memory map. The internal memory layout varies somewhat
39 1.1 fvdl * depending on whether or not we have external SSRAM attached.
40 1.1 fvdl * The BCM5700 can have up to 16MB of external memory. The BCM5701
41 1.1 fvdl * is apparently not designed to use external SSRAM. The mappings
42 1.1 fvdl * up to the first 4 send rings are the same for both internal and
43 1.1 fvdl * external memory configurations. Note that mini RX ring space is
44 1.1 fvdl * only available with external SSRAM configurations, which means
45 1.1 fvdl * the mini RX ring is not supported on the BCM5701.
46 1.1 fvdl *
47 1.1 fvdl * The NIC's memory can be accessed by the host in one of 3 ways:
48 1.1 fvdl *
49 1.1 fvdl * 1) Indirect register access. The MEMWIN_BASEADDR and MEMWIN_DATA
50 1.1 fvdl * registers in PCI config space can be used to read any 32-bit
51 1.1 fvdl * address within the NIC's memory.
52 1.1 fvdl *
53 1.1 fvdl * 2) Memory window access. The MEMWIN_BASEADDR register in PCI config
54 1.1 fvdl * space can be used in conjunction with the memory window in the
55 1.1 fvdl * device register space at offset 0x8000 to read any 32K chunk
56 1.1 fvdl * of NIC memory.
57 1.1 fvdl *
58 1.1 fvdl * 3) Flat mode. If the 'flat mode' bit in the PCI state register is
59 1.1 fvdl * set, the device I/O mapping consumes 32MB of host address space,
60 1.1 fvdl * allowing all of the registers and internal NIC memory to be
61 1.1 fvdl * accessed directly. NIC memory addresses are offset by 0x01000000.
62 1.1 fvdl * Flat mode consumes so much host address space that it is not
63 1.1 fvdl * recommended.
64 1.1 fvdl */
65 1.1 fvdl #define BGE_PAGE_ZERO 0x00000000
66 1.1 fvdl #define BGE_PAGE_ZERO_END 0x000000FF
67 1.1 fvdl #define BGE_SEND_RING_RCB 0x00000100
68 1.1 fvdl #define BGE_SEND_RING_RCB_END 0x000001FF
69 1.1 fvdl #define BGE_RX_RETURN_RING_RCB 0x00000200
70 1.1 fvdl #define BGE_RX_RETURN_RING_RCB_END 0x000002FF
71 1.1 fvdl #define BGE_STATS_BLOCK 0x00000300
72 1.1 fvdl #define BGE_STATS_BLOCK_END 0x00000AFF
73 1.1 fvdl #define BGE_STATUS_BLOCK 0x00000B00
74 1.1 fvdl #define BGE_STATUS_BLOCK_END 0x00000B4F
75 1.1 fvdl #define BGE_SOFTWARE_GENCOMM 0x00000B50
76 1.8 jonathan #define BGE_SOFTWARE_GENCOMM_SIG 0x00000B54
77 1.8 jonathan #define BGE_SOFTWARE_GENCOMM_NICCFG 0x00000B58
78 1.1 fvdl #define BGE_SOFTWARE_GENCOMM_END 0x00000FFF
79 1.1 fvdl #define BGE_UNMAPPED 0x00001000
80 1.1 fvdl #define BGE_UNMAPPED_END 0x00001FFF
81 1.1 fvdl #define BGE_DMA_DESCRIPTORS 0x00002000
82 1.1 fvdl #define BGE_DMA_DESCRIPTORS_END 0x00003FFF
83 1.1 fvdl #define BGE_SEND_RING_1_TO_4 0x00004000
84 1.1 fvdl #define BGE_SEND_RING_1_TO_4_END 0x00005FFF
85 1.1 fvdl
86 1.1 fvdl /* Mappings for internal memory configuration */
87 1.1 fvdl #define BGE_STD_RX_RINGS 0x00006000
88 1.1 fvdl #define BGE_STD_RX_RINGS_END 0x00006FFF
89 1.1 fvdl #define BGE_JUMBO_RX_RINGS 0x00007000
90 1.1 fvdl #define BGE_JUMBO_RX_RINGS_END 0x00007FFF
91 1.1 fvdl #define BGE_BUFFPOOL_1 0x00008000
92 1.1 fvdl #define BGE_BUFFPOOL_1_END 0x0000FFFF
93 1.1 fvdl #define BGE_BUFFPOOL_2 0x00010000 /* or expansion ROM */
94 1.1 fvdl #define BGE_BUFFPOOL_2_END 0x00017FFF
95 1.1 fvdl #define BGE_BUFFPOOL_3 0x00018000 /* or expansion ROM */
96 1.1 fvdl #define BGE_BUFFPOOL_3_END 0x0001FFFF
97 1.1 fvdl
98 1.1 fvdl /* Mappings for external SSRAM configurations */
99 1.1 fvdl #define BGE_SEND_RING_5_TO_6 0x00006000
100 1.1 fvdl #define BGE_SEND_RING_5_TO_6_END 0x00006FFF
101 1.1 fvdl #define BGE_SEND_RING_7_TO_8 0x00007000
102 1.1 fvdl #define BGE_SEND_RING_7_TO_8_END 0x00007FFF
103 1.1 fvdl #define BGE_SEND_RING_9_TO_16 0x00008000
104 1.1 fvdl #define BGE_SEND_RING_9_TO_16_END 0x0000BFFF
105 1.1 fvdl #define BGE_EXT_STD_RX_RINGS 0x0000C000
106 1.1 fvdl #define BGE_EXT_STD_RX_RINGS_END 0x0000CFFF
107 1.1 fvdl #define BGE_EXT_JUMBO_RX_RINGS 0x0000D000
108 1.1 fvdl #define BGE_EXT_JUMBO_RX_RINGS_END 0x0000DFFF
109 1.1 fvdl #define BGE_MINI_RX_RINGS 0x0000E000
110 1.1 fvdl #define BGE_MINI_RX_RINGS_END 0x0000FFFF
111 1.1 fvdl #define BGE_AVAIL_REGION1 0x00010000 /* or expansion ROM */
112 1.1 fvdl #define BGE_AVAIL_REGION1_END 0x00017FFF
113 1.1 fvdl #define BGE_AVAIL_REGION2 0x00018000 /* or expansion ROM */
114 1.1 fvdl #define BGE_AVAIL_REGION2_END 0x0001FFFF
115 1.1 fvdl #define BGE_EXT_SSRAM 0x00020000
116 1.1 fvdl #define BGE_EXT_SSRAM_END 0x000FFFFF
117 1.1 fvdl
118 1.1 fvdl
119 1.1 fvdl /*
120 1.1 fvdl * BCM570x register offsets. These are memory mapped registers
121 1.1 fvdl * which can be accessed with the CSR_READ_4()/CSR_WRITE_4() macros.
122 1.1 fvdl * Each register must be accessed using 32 bit operations.
123 1.1 fvdl *
124 1.1 fvdl * All registers are accessed through a 32K shared memory block.
125 1.1 fvdl * The first group of registers are actually copies of the PCI
126 1.1 fvdl * configuration space registers.
127 1.1 fvdl */
128 1.1 fvdl
129 1.1 fvdl /*
130 1.1 fvdl * PCI registers defined in the PCI 2.2 spec.
131 1.1 fvdl */
132 1.1 fvdl #define BGE_PCI_VID 0x00
133 1.1 fvdl #define BGE_PCI_DID 0x02
134 1.1 fvdl #define BGE_PCI_CMD 0x04
135 1.1 fvdl #define BGE_PCI_STS 0x06
136 1.1 fvdl #define BGE_PCI_REV 0x08
137 1.1 fvdl #define BGE_PCI_CLASS 0x09
138 1.1 fvdl #define BGE_PCI_CACHESZ 0x0C
139 1.1 fvdl #define BGE_PCI_LATTIMER 0x0D
140 1.1 fvdl #define BGE_PCI_HDRTYPE 0x0E
141 1.1 fvdl #define BGE_PCI_BIST 0x0F
142 1.1 fvdl #define BGE_PCI_BAR0 0x10
143 1.1 fvdl #define BGE_PCI_BAR1 0x14
144 1.1 fvdl #define BGE_PCI_SUBSYS 0x2C
145 1.1 fvdl #define BGE_PCI_SUBVID 0x2E
146 1.1 fvdl #define BGE_PCI_ROMBASE 0x30
147 1.1 fvdl #define BGE_PCI_CAPPTR 0x34
148 1.1 fvdl #define BGE_PCI_INTLINE 0x3C
149 1.1 fvdl #define BGE_PCI_INTPIN 0x3D
150 1.1 fvdl #define BGE_PCI_MINGNT 0x3E
151 1.1 fvdl #define BGE_PCI_MAXLAT 0x3F
152 1.1 fvdl #define BGE_PCI_PCIXCAP 0x40
153 1.1 fvdl #define BGE_PCI_NEXTPTR_PM 0x41
154 1.1 fvdl #define BGE_PCI_PCIX_CMD 0x42
155 1.1 fvdl #define BGE_PCI_PCIX_STS 0x44
156 1.1 fvdl #define BGE_PCI_PWRMGMT_CAPID 0x48
157 1.1 fvdl #define BGE_PCI_NEXTPTR_VPD 0x49
158 1.1 fvdl #define BGE_PCI_PWRMGMT_CAPS 0x4A
159 1.1 fvdl #define BGE_PCI_PWRMGMT_CMD 0x4C
160 1.1 fvdl #define BGE_PCI_PWRMGMT_STS 0x4D
161 1.1 fvdl #define BGE_PCI_PWRMGMT_DATA 0x4F
162 1.1 fvdl #define BGE_PCI_VPD_CAPID 0x50
163 1.1 fvdl #define BGE_PCI_NEXTPTR_MSI 0x51
164 1.1 fvdl #define BGE_PCI_VPD_ADDR 0x52
165 1.1 fvdl #define BGE_PCI_VPD_DATA 0x54
166 1.1 fvdl #define BGE_PCI_MSI_CAPID 0x58
167 1.1 fvdl #define BGE_PCI_NEXTPTR_NONE 0x59
168 1.1 fvdl #define BGE_PCI_MSI_CTL 0x5A
169 1.1 fvdl #define BGE_PCI_MSI_ADDR_HI 0x5C
170 1.1 fvdl #define BGE_PCI_MSI_ADDR_LO 0x60
171 1.1 fvdl #define BGE_PCI_MSI_DATA 0x64
172 1.1 fvdl
173 1.1 fvdl /*
174 1.1 fvdl * PCI registers specific to the BCM570x family.
175 1.1 fvdl */
176 1.1 fvdl #define BGE_PCI_MISC_CTL 0x68
177 1.1 fvdl #define BGE_PCI_DMA_RW_CTL 0x6C
178 1.1 fvdl #define BGE_PCI_PCISTATE 0x70
179 1.1 fvdl #define BGE_PCI_CLKCTL 0x74
180 1.1 fvdl #define BGE_PCI_REG_BASEADDR 0x78
181 1.1 fvdl #define BGE_PCI_MEMWIN_BASEADDR 0x7C
182 1.1 fvdl #define BGE_PCI_REG_DATA 0x80
183 1.1 fvdl #define BGE_PCI_MEMWIN_DATA 0x84
184 1.1 fvdl #define BGE_PCI_MODECTL 0x88
185 1.1 fvdl #define BGE_PCI_MISC_CFG 0x8C
186 1.1 fvdl #define BGE_PCI_MISC_LOCALCTL 0x90
187 1.1 fvdl #define BGE_PCI_UNDI_RX_STD_PRODIDX_HI 0x98
188 1.1 fvdl #define BGE_PCI_UNDI_RX_STD_PRODIDX_LO 0x9C
189 1.1 fvdl #define BGE_PCI_UNDI_RX_RTN_CONSIDX_HI 0xA0
190 1.1 fvdl #define BGE_PCI_UNDI_RX_RTN_CONSIDX_LO 0xA4
191 1.1 fvdl #define BGE_PCI_UNDI_TX_BD_PRODIDX_HI 0xA8
192 1.1 fvdl #define BGE_PCI_UNDI_TX_BD_PRODIDX_LO 0xAC
193 1.1 fvdl #define BGE_PCI_ISR_MBX_HI 0xB0
194 1.1 fvdl #define BGE_PCI_ISR_MBX_LO 0xB4
195 1.28 jonathan
196 1.22 cube #define BGE_PCI_UNKNOWN0 0xC4
197 1.28 jonathan /* XXX:
198 1.28 jonathan * Used in PCI-Express code for 575x chips.
199 1.37 tsutsui * Should be replaced with checking for a PCI config-space
200 1.37 tsutsui * capability for PCI-Express, and PCI-Express standard
201 1.37 tsutsui * offsets into that capability block.
202 1.28 jonathan */
203 1.28 jonathan #define BGE_PCI_CONF_DEV_CTRL 0xD8
204 1.28 jonathan #define BGE_PCI_CONF_DEV_STUS 0xDA
205 1.28 jonathan
206 1.1 fvdl
207 1.1 fvdl /* PCI Misc. Host control register */
208 1.1 fvdl #define BGE_PCIMISCCTL_CLEAR_INTA 0x00000001
209 1.1 fvdl #define BGE_PCIMISCCTL_MASK_PCI_INTR 0x00000002
210 1.1 fvdl #define BGE_PCIMISCCTL_ENDIAN_BYTESWAP 0x00000004
211 1.1 fvdl #define BGE_PCIMISCCTL_ENDIAN_WORDSWAP 0x00000008
212 1.1 fvdl #define BGE_PCIMISCCTL_PCISTATE_RW 0x00000010
213 1.1 fvdl #define BGE_PCIMISCCTL_CLOCKCTL_RW 0x00000020
214 1.1 fvdl #define BGE_PCIMISCCTL_REG_WORDSWAP 0x00000040
215 1.1 fvdl #define BGE_PCIMISCCTL_INDIRECT_ACCESS 0x00000080
216 1.1 fvdl #define BGE_PCIMISCCTL_ASICREV 0xFFFF0000
217 1.1 fvdl
218 1.1 fvdl #define BGE_HIF_SWAP_OPTIONS (BGE_PCIMISCCTL_ENDIAN_WORDSWAP)
219 1.1 fvdl #if BYTE_ORDER == LITTLE_ENDIAN
220 1.1 fvdl #define BGE_DMA_SWAP_OPTIONS \
221 1.1 fvdl BGE_MODECTL_WORDSWAP_NONFRAME| \
222 1.1 fvdl BGE_MODECTL_BYTESWAP_DATA|BGE_MODECTL_WORDSWAP_DATA
223 1.1 fvdl #else
224 1.1 fvdl #define BGE_DMA_SWAP_OPTIONS \
225 1.1 fvdl BGE_MODECTL_WORDSWAP_NONFRAME|BGE_MODECTL_BYTESWAP_NONFRAME| \
226 1.1 fvdl BGE_MODECTL_BYTESWAP_DATA|BGE_MODECTL_WORDSWAP_DATA
227 1.1 fvdl #endif
228 1.1 fvdl
229 1.1 fvdl #define BGE_INIT \
230 1.1 fvdl (BGE_HIF_SWAP_OPTIONS|BGE_PCIMISCCTL_CLEAR_INTA| \
231 1.1 fvdl BGE_PCIMISCCTL_MASK_PCI_INTR|BGE_PCIMISCCTL_INDIRECT_ACCESS)
232 1.1 fvdl
233 1.13 fvdl #define BGE_CHIPID_TIGON_I 0x40000000
234 1.13 fvdl #define BGE_CHIPID_TIGON_II 0x60000000
235 1.13 fvdl #define BGE_CHIPID_BCM5700_A0 0x70000000
236 1.13 fvdl #define BGE_CHIPID_BCM5700_A1 0x70010000
237 1.13 fvdl #define BGE_CHIPID_BCM5700_B0 0x71000000
238 1.38 tsutsui #define BGE_CHIPID_BCM5700_B1 0x71010000
239 1.38 tsutsui #define BGE_CHIPID_BCM5700_B2 0x71020000
240 1.38 tsutsui #define BGE_CHIPID_BCM5700_B3 0x71030000
241 1.13 fvdl #define BGE_CHIPID_BCM5700_ALTIMA 0x71040000
242 1.13 fvdl #define BGE_CHIPID_BCM5700_C0 0x72000000
243 1.13 fvdl #define BGE_CHIPID_BCM5701_A0 0x00000000 /* grrrr */
244 1.13 fvdl #define BGE_CHIPID_BCM5701_B0 0x01000000
245 1.13 fvdl #define BGE_CHIPID_BCM5701_B2 0x01020000
246 1.13 fvdl #define BGE_CHIPID_BCM5701_B5 0x01050000
247 1.13 fvdl #define BGE_CHIPID_BCM5703_A0 0x10000000
248 1.13 fvdl #define BGE_CHIPID_BCM5703_A1 0x10010000
249 1.13 fvdl #define BGE_CHIPID_BCM5703_A2 0x10020000
250 1.38 tsutsui #define BGE_CHIPID_BCM5703_A3 0x10030000
251 1.38 tsutsui #define BGE_CHIPID_BCM5703_B0 0x11000000
252 1.13 fvdl #define BGE_CHIPID_BCM5704_A0 0x20000000
253 1.13 fvdl #define BGE_CHIPID_BCM5704_A1 0x20010000
254 1.13 fvdl #define BGE_CHIPID_BCM5704_A2 0x20020000
255 1.13 fvdl #define BGE_CHIPID_BCM5704_A3 0x20030000
256 1.38 tsutsui #define BGE_CHIPID_BCM5704_B0 0x21000000
257 1.13 fvdl #define BGE_CHIPID_BCM5705_A0 0x30000000
258 1.13 fvdl #define BGE_CHIPID_BCM5705_A1 0x30010000
259 1.13 fvdl #define BGE_CHIPID_BCM5705_A2 0x30020000
260 1.13 fvdl #define BGE_CHIPID_BCM5705_A3 0x30030000
261 1.22 cube #define BGE_CHIPID_BCM5750_A0 0x40000000
262 1.22 cube #define BGE_CHIPID_BCM5750_A1 0x40010000
263 1.38 tsutsui #define BGE_CHIPID_BCM5750_A3 0x40030000
264 1.38 tsutsui #define BGE_CHIPID_BCM5750_B0 0x40100000
265 1.39 tsutsui #define BGE_CHIPID_BCM5751_A1 0x41010000
266 1.38 tsutsui #define BGE_CHIPID_BCM5750_C0 0x42000000
267 1.38 tsutsui #define BGE_CHIPID_BCM5750_C1 0x42010000
268 1.38 tsutsui #define BGE_CHIPID_BCM5750_C2 0x42020000
269 1.38 tsutsui #define BGE_CHIPID_BCM5714_A0 0x50000000
270 1.36 tsutsui #define BGE_CHIPID_BCM5752_A0 0x60000000
271 1.36 tsutsui #define BGE_CHIPID_BCM5752_A1 0x60010000
272 1.36 tsutsui #define BGE_CHIPID_BCM5752_A2 0x60020000
273 1.38 tsutsui #define BGE_CHIPID_BCM5714_B0 0x80000000
274 1.38 tsutsui #define BGE_CHIPID_BCM5714_B3 0x80030000
275 1.38 tsutsui #define BGE_CHIPID_BCM5715_A0 0x90000000
276 1.38 tsutsui #define BGE_CHIPID_BCM5715_A1 0x90010000
277 1.38 tsutsui #define BGE_CHIPID_BCM5715_A3 0x90030000
278 1.47 sborrill #define BGE_CHIPID_BCM5755_A0 0xa0000000
279 1.47 sborrill #define BGE_CHIPID_BCM5755_A1 0xa0010000
280 1.47 sborrill #define BGE_CHIPID_BCM5755_A2 0xa0020000
281 1.47 sborrill #define BGE_CHIPID_BCM5755_C0 0xa2000000
282 1.43 markd #define BGE_CHIPID_BCM5787_A0 0xb0000000
283 1.43 markd #define BGE_CHIPID_BCM5787_A1 0xb0010000
284 1.38 tsutsui #define BGE_CHIPID_BCM5787_A2 0xb0020000
285 1.38 tsutsui #define BGE_CHIPID_BCM5906_A1 0xc0010000
286 1.47 sborrill #define BGE_CHIPID_BCM5906_A2 0xc0020000
287 1.13 fvdl
288 1.13 fvdl /* shorthand one */
289 1.37 tsutsui #define BGE_ASICREV(x) ((x) >> 28)
290 1.37 tsutsui #define BGE_ASICREV_BCM5700 0x07
291 1.37 tsutsui #define BGE_ASICREV_BCM5701 0x00
292 1.37 tsutsui #define BGE_ASICREV_BCM5703 0x01
293 1.37 tsutsui #define BGE_ASICREV_BCM5704 0x02
294 1.37 tsutsui #define BGE_ASICREV_BCM5705 0x03
295 1.37 tsutsui #define BGE_ASICREV_BCM5750 0x04
296 1.38 tsutsui #define BGE_ASICREV_BCM5714_A0 0x05
297 1.37 tsutsui #define BGE_ASICREV_BCM5752 0x06
298 1.31 jonathan /* ASIC revision 0x07 is the original bcm5700 */
299 1.37 tsutsui #define BGE_ASICREV_BCM5780 0x08
300 1.38 tsutsui #define BGE_ASICREV_BCM5714 0x09
301 1.38 tsutsui #define BGE_ASICREV_BCM5755 0x0a
302 1.38 tsutsui #define BGE_ASICREV_BCM5787 0x0b
303 1.38 tsutsui #define BGE_ASICREV_BCM5706 0x0c
304 1.13 fvdl
305 1.13 fvdl /* chip revisions */
306 1.37 tsutsui #define BGE_CHIPREV(x) ((x) >> 24)
307 1.37 tsutsui #define BGE_CHIPREV_5700_AX 0x70
308 1.37 tsutsui #define BGE_CHIPREV_5700_BX 0x71
309 1.37 tsutsui #define BGE_CHIPREV_5700_CX 0x72
310 1.37 tsutsui #define BGE_CHIPREV_5701_AX 0x00
311 1.38 tsutsui #define BGE_CHIPREV_5703_AX 0x10
312 1.38 tsutsui #define BGE_CHIPREV_5704_AX 0x20
313 1.38 tsutsui #define BGE_CHIPREV_5704_BX 0x21
314 1.38 tsutsui #define BGE_CHIPREV_5750_AX 0x40
315 1.38 tsutsui #define BGE_CHIPREV_5750_BX 0x41
316 1.1 fvdl
317 1.1 fvdl /* PCI DMA Read/Write Control register */
318 1.1 fvdl #define BGE_PCIDMARWCTL_MINDMA 0x000000FF
319 1.1 fvdl #define BGE_PCIDMARWCTL_RDADRR_BNDRY 0x00000700
320 1.1 fvdl #define BGE_PCIDMARWCTL_WRADDR_BNDRY 0x00003800
321 1.1 fvdl #define BGE_PCIDMARWCTL_ONEDMA_ATONCE 0x00004000
322 1.1 fvdl #define BGE_PCIDMARWCTL_RD_WAT 0x00070000
323 1.5 jonathan # define BGE_PCIDMARWCTL_RD_WAT_SHIFT 16
324 1.1 fvdl #define BGE_PCIDMARWCTL_WR_WAT 0x00380000
325 1.5 jonathan # define BGE_PCIDMARWCTL_WR_WAT_SHIFT 19
326 1.1 fvdl #define BGE_PCIDMARWCTL_USE_MRM 0x00400000
327 1.1 fvdl #define BGE_PCIDMARWCTL_ASRT_ALL_BE 0x00800000
328 1.1 fvdl #define BGE_PCIDMARWCTL_DFLT_PCI_RD_CMD 0x0F000000
329 1.5 jonathan # define BGE_PCIDMA_RWCTL_PCI_RD_CMD_SHIFT 24
330 1.1 fvdl #define BGE_PCIDMARWCTL_DFLT_PCI_WR_CMD 0xF0000000
331 1.5 jonathan # define BGE_PCIDMA_RWCTL_PCI_WR_CMD_SHIFT 28
332 1.5 jonathan
333 1.28 jonathan /* PCI DMA Read/Write Control register, alternate usage for PCI-Express */
334 1.37 tsutsui #define BGE_PCIDMA_RWCTL_PCIE_WRITE_WATRMARK_128 0x00180000
335 1.28 jonathan #define BGE_PCIDMA_RWCTL_PCIE_WRITE_WATRMARK_256 0x00380000
336 1.1 fvdl
337 1.1 fvdl #define BGE_PCI_READ_BNDRY_DISABLE 0x00000000
338 1.1 fvdl #define BGE_PCI_READ_BNDRY_16BYTES 0x00000100
339 1.1 fvdl #define BGE_PCI_READ_BNDRY_32BYTES 0x00000200
340 1.1 fvdl #define BGE_PCI_READ_BNDRY_64BYTES 0x00000300
341 1.1 fvdl #define BGE_PCI_READ_BNDRY_128BYTES 0x00000400
342 1.1 fvdl #define BGE_PCI_READ_BNDRY_256BYTES 0x00000500
343 1.1 fvdl #define BGE_PCI_READ_BNDRY_512BYTES 0x00000600
344 1.1 fvdl #define BGE_PCI_READ_BNDRY_1024BYTES 0x00000700
345 1.1 fvdl
346 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_DISABLE 0x00000000
347 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_16BYTES 0x00000800
348 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_32BYTES 0x00001000
349 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_64BYTES 0x00001800
350 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_128BYTES 0x00002000
351 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_256BYTES 0x00002800
352 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_512BYTES 0x00003000
353 1.1 fvdl #define BGE_PCI_WRITE_BNDRY_1024BYTES 0x00003800
354 1.1 fvdl
355 1.1 fvdl /*
356 1.1 fvdl * PCI state register -- note, this register is read only
357 1.1 fvdl * unless the PCISTATE_WR bit of the PCI Misc. Host Control
358 1.1 fvdl * register is set.
359 1.1 fvdl */
360 1.1 fvdl #define BGE_PCISTATE_FORCE_RESET 0x00000001
361 1.1 fvdl #define BGE_PCISTATE_INTR_STATE 0x00000002
362 1.1 fvdl #define BGE_PCISTATE_PCI_BUSMODE 0x00000004 /* 1 = PCI, 0 = PCI-X */
363 1.1 fvdl #define BGE_PCISTATE_PCI_BUSSPEED 0x00000008 /* 1 = 33/66, 0 = 66/133 */
364 1.1 fvdl #define BGE_PCISTATE_32BIT_BUS 0x00000010 /* 1 = 32bit, 0 = 64bit */
365 1.1 fvdl #define BGE_PCISTATE_WANT_EXPROM 0x00000020
366 1.1 fvdl #define BGE_PCISTATE_EXPROM_RETRY 0x00000040
367 1.1 fvdl #define BGE_PCISTATE_FLATVIEW_MODE 0x00000100
368 1.1 fvdl #define BGE_PCISTATE_PCI_TGT_RETRY_MAX 0x00000E00
369 1.1 fvdl
370 1.1 fvdl /*
371 1.18 jonathan * The following bits in PCI state register are reserved.
372 1.18 jonathan * If we check that the register values reverts on reset,
373 1.18 jonathan * do not check these bits. On some 5704C (rev A3) and some
374 1.18 jonathan * Altima chips, these bits do not revert until much later
375 1.18 jonathan * in the bge driver's bge_reset() chip-reset state machine.
376 1.18 jonathan */
377 1.24 perry #define BGE_PCISTATE_RESERVED ((1 << 12) + (1 <<7))
378 1.18 jonathan
379 1.18 jonathan /*
380 1.1 fvdl * PCI Clock Control register -- note, this register is read only
381 1.1 fvdl * unless the CLOCKCTL_RW bit of the PCI Misc. Host Control
382 1.1 fvdl * register is set.
383 1.1 fvdl */
384 1.1 fvdl #define BGE_PCICLOCKCTL_DETECTED_SPEED 0x0000000F
385 1.1 fvdl #define BGE_PCICLOCKCTL_M66EN 0x00000080
386 1.1 fvdl #define BGE_PCICLOCKCTL_LOWPWR_CLKMODE 0x00000200
387 1.1 fvdl #define BGE_PCICLOCKCTL_RXCPU_CLK_DIS 0x00000400
388 1.1 fvdl #define BGE_PCICLOCKCTL_TXCPU_CLK_DIS 0x00000800
389 1.1 fvdl #define BGE_PCICLOCKCTL_ALTCLK 0x00001000
390 1.1 fvdl #define BGE_PCICLOCKCTL_ALTCLK_SRC 0x00002000
391 1.1 fvdl #define BGE_PCICLOCKCTL_PCIPLL_DISABLE 0x00004000
392 1.1 fvdl #define BGE_PCICLOCKCTL_SYSPLL_DISABLE 0x00008000
393 1.1 fvdl #define BGE_PCICLOCKCTL_BIST_ENABLE 0x00010000
394 1.1 fvdl
395 1.1 fvdl
396 1.1 fvdl #ifndef PCIM_CMD_MWIEN
397 1.1 fvdl #define PCIM_CMD_MWIEN 0x0010
398 1.1 fvdl #endif
399 1.1 fvdl
400 1.1 fvdl /*
401 1.1 fvdl * High priority mailbox registers
402 1.1 fvdl * Each mailbox is 64-bits wide, though we only use the
403 1.1 fvdl * lower 32 bits. To write a 64-bit value, write the upper 32 bits
404 1.1 fvdl * first. The NIC will load the mailbox after the lower 32 bit word
405 1.1 fvdl * has been updated.
406 1.1 fvdl */
407 1.1 fvdl #define BGE_MBX_IRQ0_HI 0x0200
408 1.1 fvdl #define BGE_MBX_IRQ0_LO 0x0204
409 1.1 fvdl #define BGE_MBX_IRQ1_HI 0x0208
410 1.1 fvdl #define BGE_MBX_IRQ1_LO 0x020C
411 1.1 fvdl #define BGE_MBX_IRQ2_HI 0x0210
412 1.1 fvdl #define BGE_MBX_IRQ2_LO 0x0214
413 1.1 fvdl #define BGE_MBX_IRQ3_HI 0x0218
414 1.1 fvdl #define BGE_MBX_IRQ3_LO 0x021C
415 1.1 fvdl #define BGE_MBX_GEN0_HI 0x0220
416 1.1 fvdl #define BGE_MBX_GEN0_LO 0x0224
417 1.1 fvdl #define BGE_MBX_GEN1_HI 0x0228
418 1.1 fvdl #define BGE_MBX_GEN1_LO 0x022C
419 1.1 fvdl #define BGE_MBX_GEN2_HI 0x0230
420 1.1 fvdl #define BGE_MBX_GEN2_LO 0x0234
421 1.1 fvdl #define BGE_MBX_GEN3_HI 0x0228
422 1.1 fvdl #define BGE_MBX_GEN3_LO 0x022C
423 1.1 fvdl #define BGE_MBX_GEN4_HI 0x0240
424 1.1 fvdl #define BGE_MBX_GEN4_LO 0x0244
425 1.1 fvdl #define BGE_MBX_GEN5_HI 0x0248
426 1.1 fvdl #define BGE_MBX_GEN5_LO 0x024C
427 1.1 fvdl #define BGE_MBX_GEN6_HI 0x0250
428 1.1 fvdl #define BGE_MBX_GEN6_LO 0x0254
429 1.1 fvdl #define BGE_MBX_GEN7_HI 0x0258
430 1.1 fvdl #define BGE_MBX_GEN7_LO 0x025C
431 1.1 fvdl #define BGE_MBX_RELOAD_STATS_HI 0x0260
432 1.1 fvdl #define BGE_MBX_RELOAD_STATS_LO 0x0264
433 1.1 fvdl #define BGE_MBX_RX_STD_PROD_HI 0x0268
434 1.1 fvdl #define BGE_MBX_RX_STD_PROD_LO 0x026C
435 1.1 fvdl #define BGE_MBX_RX_JUMBO_PROD_HI 0x0270
436 1.1 fvdl #define BGE_MBX_RX_JUMBO_PROD_LO 0x0274
437 1.1 fvdl #define BGE_MBX_RX_MINI_PROD_HI 0x0278
438 1.1 fvdl #define BGE_MBX_RX_MINI_PROD_LO 0x027C
439 1.1 fvdl #define BGE_MBX_RX_CONS0_HI 0x0280
440 1.1 fvdl #define BGE_MBX_RX_CONS0_LO 0x0284
441 1.1 fvdl #define BGE_MBX_RX_CONS1_HI 0x0288
442 1.1 fvdl #define BGE_MBX_RX_CONS1_LO 0x028C
443 1.1 fvdl #define BGE_MBX_RX_CONS2_HI 0x0290
444 1.1 fvdl #define BGE_MBX_RX_CONS2_LO 0x0294
445 1.1 fvdl #define BGE_MBX_RX_CONS3_HI 0x0298
446 1.1 fvdl #define BGE_MBX_RX_CONS3_LO 0x029C
447 1.1 fvdl #define BGE_MBX_RX_CONS4_HI 0x02A0
448 1.1 fvdl #define BGE_MBX_RX_CONS4_LO 0x02A4
449 1.1 fvdl #define BGE_MBX_RX_CONS5_HI 0x02A8
450 1.1 fvdl #define BGE_MBX_RX_CONS5_LO 0x02AC
451 1.1 fvdl #define BGE_MBX_RX_CONS6_HI 0x02B0
452 1.1 fvdl #define BGE_MBX_RX_CONS6_LO 0x02B4
453 1.1 fvdl #define BGE_MBX_RX_CONS7_HI 0x02B8
454 1.1 fvdl #define BGE_MBX_RX_CONS7_LO 0x02BC
455 1.1 fvdl #define BGE_MBX_RX_CONS8_HI 0x02C0
456 1.1 fvdl #define BGE_MBX_RX_CONS8_LO 0x02C4
457 1.1 fvdl #define BGE_MBX_RX_CONS9_HI 0x02C8
458 1.1 fvdl #define BGE_MBX_RX_CONS9_LO 0x02CC
459 1.1 fvdl #define BGE_MBX_RX_CONS10_HI 0x02D0
460 1.1 fvdl #define BGE_MBX_RX_CONS10_LO 0x02D4
461 1.1 fvdl #define BGE_MBX_RX_CONS11_HI 0x02D8
462 1.1 fvdl #define BGE_MBX_RX_CONS11_LO 0x02DC
463 1.1 fvdl #define BGE_MBX_RX_CONS12_HI 0x02E0
464 1.1 fvdl #define BGE_MBX_RX_CONS12_LO 0x02E4
465 1.1 fvdl #define BGE_MBX_RX_CONS13_HI 0x02E8
466 1.1 fvdl #define BGE_MBX_RX_CONS13_LO 0x02EC
467 1.1 fvdl #define BGE_MBX_RX_CONS14_HI 0x02F0
468 1.1 fvdl #define BGE_MBX_RX_CONS14_LO 0x02F4
469 1.1 fvdl #define BGE_MBX_RX_CONS15_HI 0x02F8
470 1.1 fvdl #define BGE_MBX_RX_CONS15_LO 0x02FC
471 1.1 fvdl #define BGE_MBX_TX_HOST_PROD0_HI 0x0300
472 1.1 fvdl #define BGE_MBX_TX_HOST_PROD0_LO 0x0304
473 1.1 fvdl #define BGE_MBX_TX_HOST_PROD1_HI 0x0308
474 1.1 fvdl #define BGE_MBX_TX_HOST_PROD1_LO 0x030C
475 1.1 fvdl #define BGE_MBX_TX_HOST_PROD2_HI 0x0310
476 1.1 fvdl #define BGE_MBX_TX_HOST_PROD2_LO 0x0314
477 1.1 fvdl #define BGE_MBX_TX_HOST_PROD3_HI 0x0318
478 1.1 fvdl #define BGE_MBX_TX_HOST_PROD3_LO 0x031C
479 1.1 fvdl #define BGE_MBX_TX_HOST_PROD4_HI 0x0320
480 1.1 fvdl #define BGE_MBX_TX_HOST_PROD4_LO 0x0324
481 1.1 fvdl #define BGE_MBX_TX_HOST_PROD5_HI 0x0328
482 1.1 fvdl #define BGE_MBX_TX_HOST_PROD5_LO 0x032C
483 1.1 fvdl #define BGE_MBX_TX_HOST_PROD6_HI 0x0330
484 1.1 fvdl #define BGE_MBX_TX_HOST_PROD6_LO 0x0334
485 1.1 fvdl #define BGE_MBX_TX_HOST_PROD7_HI 0x0338
486 1.1 fvdl #define BGE_MBX_TX_HOST_PROD7_LO 0x033C
487 1.1 fvdl #define BGE_MBX_TX_HOST_PROD8_HI 0x0340
488 1.1 fvdl #define BGE_MBX_TX_HOST_PROD8_LO 0x0344
489 1.1 fvdl #define BGE_MBX_TX_HOST_PROD9_HI 0x0348
490 1.1 fvdl #define BGE_MBX_TX_HOST_PROD9_LO 0x034C
491 1.1 fvdl #define BGE_MBX_TX_HOST_PROD10_HI 0x0350
492 1.1 fvdl #define BGE_MBX_TX_HOST_PROD10_LO 0x0354
493 1.1 fvdl #define BGE_MBX_TX_HOST_PROD11_HI 0x0358
494 1.1 fvdl #define BGE_MBX_TX_HOST_PROD11_LO 0x035C
495 1.1 fvdl #define BGE_MBX_TX_HOST_PROD12_HI 0x0360
496 1.1 fvdl #define BGE_MBX_TX_HOST_PROD12_LO 0x0364
497 1.1 fvdl #define BGE_MBX_TX_HOST_PROD13_HI 0x0368
498 1.1 fvdl #define BGE_MBX_TX_HOST_PROD13_LO 0x036C
499 1.1 fvdl #define BGE_MBX_TX_HOST_PROD14_HI 0x0370
500 1.1 fvdl #define BGE_MBX_TX_HOST_PROD14_LO 0x0374
501 1.1 fvdl #define BGE_MBX_TX_HOST_PROD15_HI 0x0378
502 1.1 fvdl #define BGE_MBX_TX_HOST_PROD15_LO 0x037C
503 1.1 fvdl #define BGE_MBX_TX_NIC_PROD0_HI 0x0380
504 1.1 fvdl #define BGE_MBX_TX_NIC_PROD0_LO 0x0384
505 1.1 fvdl #define BGE_MBX_TX_NIC_PROD1_HI 0x0388
506 1.1 fvdl #define BGE_MBX_TX_NIC_PROD1_LO 0x038C
507 1.1 fvdl #define BGE_MBX_TX_NIC_PROD2_HI 0x0390
508 1.1 fvdl #define BGE_MBX_TX_NIC_PROD2_LO 0x0394
509 1.1 fvdl #define BGE_MBX_TX_NIC_PROD3_HI 0x0398
510 1.1 fvdl #define BGE_MBX_TX_NIC_PROD3_LO 0x039C
511 1.1 fvdl #define BGE_MBX_TX_NIC_PROD4_HI 0x03A0
512 1.1 fvdl #define BGE_MBX_TX_NIC_PROD4_LO 0x03A4
513 1.1 fvdl #define BGE_MBX_TX_NIC_PROD5_HI 0x03A8
514 1.1 fvdl #define BGE_MBX_TX_NIC_PROD5_LO 0x03AC
515 1.1 fvdl #define BGE_MBX_TX_NIC_PROD6_HI 0x03B0
516 1.1 fvdl #define BGE_MBX_TX_NIC_PROD6_LO 0x03B4
517 1.1 fvdl #define BGE_MBX_TX_NIC_PROD7_HI 0x03B8
518 1.1 fvdl #define BGE_MBX_TX_NIC_PROD7_LO 0x03BC
519 1.1 fvdl #define BGE_MBX_TX_NIC_PROD8_HI 0x03C0
520 1.1 fvdl #define BGE_MBX_TX_NIC_PROD8_LO 0x03C4
521 1.1 fvdl #define BGE_MBX_TX_NIC_PROD9_HI 0x03C8
522 1.1 fvdl #define BGE_MBX_TX_NIC_PROD9_LO 0x03CC
523 1.1 fvdl #define BGE_MBX_TX_NIC_PROD10_HI 0x03D0
524 1.1 fvdl #define BGE_MBX_TX_NIC_PROD10_LO 0x03D4
525 1.1 fvdl #define BGE_MBX_TX_NIC_PROD11_HI 0x03D8
526 1.1 fvdl #define BGE_MBX_TX_NIC_PROD11_LO 0x03DC
527 1.1 fvdl #define BGE_MBX_TX_NIC_PROD12_HI 0x03E0
528 1.1 fvdl #define BGE_MBX_TX_NIC_PROD12_LO 0x03E4
529 1.1 fvdl #define BGE_MBX_TX_NIC_PROD13_HI 0x03E8
530 1.1 fvdl #define BGE_MBX_TX_NIC_PROD13_LO 0x03EC
531 1.1 fvdl #define BGE_MBX_TX_NIC_PROD14_HI 0x03F0
532 1.1 fvdl #define BGE_MBX_TX_NIC_PROD14_LO 0x03F4
533 1.1 fvdl #define BGE_MBX_TX_NIC_PROD15_HI 0x03F8
534 1.1 fvdl #define BGE_MBX_TX_NIC_PROD15_LO 0x03FC
535 1.1 fvdl
536 1.1 fvdl #define BGE_TX_RINGS_MAX 4
537 1.1 fvdl #define BGE_TX_RINGS_EXTSSRAM_MAX 16
538 1.1 fvdl #define BGE_RX_RINGS_MAX 16
539 1.1 fvdl
540 1.1 fvdl /* Ethernet MAC control registers */
541 1.1 fvdl #define BGE_MAC_MODE 0x0400
542 1.1 fvdl #define BGE_MAC_STS 0x0404
543 1.1 fvdl #define BGE_MAC_EVT_ENB 0x0408
544 1.1 fvdl #define BGE_MAC_LED_CTL 0x040C
545 1.1 fvdl #define BGE_MAC_ADDR1_LO 0x0410
546 1.1 fvdl #define BGE_MAC_ADDR1_HI 0x0414
547 1.1 fvdl #define BGE_MAC_ADDR2_LO 0x0418
548 1.1 fvdl #define BGE_MAC_ADDR2_HI 0x041C
549 1.1 fvdl #define BGE_MAC_ADDR3_LO 0x0420
550 1.1 fvdl #define BGE_MAC_ADDR3_HI 0x0424
551 1.1 fvdl #define BGE_MAC_ADDR4_LO 0x0428
552 1.1 fvdl #define BGE_MAC_ADDR4_HI 0x042C
553 1.1 fvdl #define BGE_WOL_PATPTR 0x0430
554 1.1 fvdl #define BGE_WOL_PATCFG 0x0434
555 1.1 fvdl #define BGE_TX_RANDOM_BACKOFF 0x0438
556 1.1 fvdl #define BGE_RX_MTU 0x043C
557 1.1 fvdl #define BGE_GBIT_PCS_TEST 0x0440
558 1.1 fvdl #define BGE_TX_TBI_AUTONEG 0x0444
559 1.1 fvdl #define BGE_RX_TBI_AUTONEG 0x0448
560 1.1 fvdl #define BGE_MI_COMM 0x044C
561 1.1 fvdl #define BGE_MI_STS 0x0450
562 1.1 fvdl #define BGE_MI_MODE 0x0454
563 1.1 fvdl #define BGE_AUTOPOLL_STS 0x0458
564 1.1 fvdl #define BGE_TX_MODE 0x045C
565 1.1 fvdl #define BGE_TX_STS 0x0460
566 1.1 fvdl #define BGE_TX_LENGTHS 0x0464
567 1.1 fvdl #define BGE_RX_MODE 0x0468
568 1.1 fvdl #define BGE_RX_STS 0x046C
569 1.1 fvdl #define BGE_MAR0 0x0470
570 1.1 fvdl #define BGE_MAR1 0x0474
571 1.1 fvdl #define BGE_MAR2 0x0478
572 1.1 fvdl #define BGE_MAR3 0x047C
573 1.1 fvdl #define BGE_RX_BD_RULES_CTL0 0x0480
574 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL0 0x0484
575 1.1 fvdl #define BGE_RX_BD_RULES_CTL1 0x0488
576 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL1 0x048C
577 1.1 fvdl #define BGE_RX_BD_RULES_CTL2 0x0490
578 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL2 0x0494
579 1.1 fvdl #define BGE_RX_BD_RULES_CTL3 0x0498
580 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL3 0x049C
581 1.1 fvdl #define BGE_RX_BD_RULES_CTL4 0x04A0
582 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL4 0x04A4
583 1.1 fvdl #define BGE_RX_BD_RULES_CTL5 0x04A8
584 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL5 0x04AC
585 1.1 fvdl #define BGE_RX_BD_RULES_CTL6 0x04B0
586 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL6 0x04B4
587 1.1 fvdl #define BGE_RX_BD_RULES_CTL7 0x04B8
588 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL7 0x04BC
589 1.1 fvdl #define BGE_RX_BD_RULES_CTL8 0x04C0
590 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL8 0x04C4
591 1.1 fvdl #define BGE_RX_BD_RULES_CTL9 0x04C8
592 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL9 0x04CC
593 1.1 fvdl #define BGE_RX_BD_RULES_CTL10 0x04D0
594 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL10 0x04D4
595 1.1 fvdl #define BGE_RX_BD_RULES_CTL11 0x04D8
596 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL11 0x04DC
597 1.1 fvdl #define BGE_RX_BD_RULES_CTL12 0x04E0
598 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL12 0x04E4
599 1.1 fvdl #define BGE_RX_BD_RULES_CTL13 0x04E8
600 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL13 0x04EC
601 1.1 fvdl #define BGE_RX_BD_RULES_CTL14 0x04F0
602 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL14 0x04F4
603 1.1 fvdl #define BGE_RX_BD_RULES_CTL15 0x04F8
604 1.1 fvdl #define BGE_RX_BD_RULES_MASKVAL15 0x04FC
605 1.1 fvdl #define BGE_RX_RULES_CFG 0x0500
606 1.20 thorpej #define BGE_MAX_RX_FRAME_LOWAT 0x0504
607 1.1 fvdl #define BGE_RX_STATS 0x0800
608 1.1 fvdl #define BGE_TX_STATS 0x0880
609 1.1 fvdl
610 1.1 fvdl /* Ethernet MAC Mode register */
611 1.1 fvdl #define BGE_MACMODE_RESET 0x00000001
612 1.1 fvdl #define BGE_MACMODE_HALF_DUPLEX 0x00000002
613 1.1 fvdl #define BGE_MACMODE_PORTMODE 0x0000000C
614 1.1 fvdl #define BGE_MACMODE_LOOPBACK 0x00000010
615 1.1 fvdl #define BGE_MACMODE_RX_TAGGEDPKT 0x00000080
616 1.1 fvdl #define BGE_MACMODE_TX_BURST_ENB 0x00000100
617 1.1 fvdl #define BGE_MACMODE_MAX_DEFER 0x00000200
618 1.1 fvdl #define BGE_MACMODE_LINK_POLARITY 0x00000400
619 1.1 fvdl #define BGE_MACMODE_RX_STATS_ENB 0x00000800
620 1.1 fvdl #define BGE_MACMODE_RX_STATS_CLEAR 0x00001000
621 1.1 fvdl #define BGE_MACMODE_RX_STATS_FLUSH 0x00002000
622 1.1 fvdl #define BGE_MACMODE_TX_STATS_ENB 0x00004000
623 1.1 fvdl #define BGE_MACMODE_TX_STATS_CLEAR 0x00008000
624 1.1 fvdl #define BGE_MACMODE_TX_STATS_FLUSH 0x00010000
625 1.1 fvdl #define BGE_MACMODE_TBI_SEND_CFGS 0x00020000
626 1.1 fvdl #define BGE_MACMODE_MAGIC_PKT_ENB 0x00040000
627 1.1 fvdl #define BGE_MACMODE_ACPI_PWRON_ENB 0x00080000
628 1.1 fvdl #define BGE_MACMODE_MIP_ENB 0x00100000
629 1.1 fvdl #define BGE_MACMODE_TXDMA_ENB 0x00200000
630 1.1 fvdl #define BGE_MACMODE_RXDMA_ENB 0x00400000
631 1.1 fvdl #define BGE_MACMODE_FRMHDR_DMA_ENB 0x00800000
632 1.1 fvdl
633 1.1 fvdl #define BGE_PORTMODE_NONE 0x00000000
634 1.1 fvdl #define BGE_PORTMODE_MII 0x00000004
635 1.1 fvdl #define BGE_PORTMODE_GMII 0x00000008
636 1.1 fvdl #define BGE_PORTMODE_TBI 0x0000000C
637 1.1 fvdl
638 1.1 fvdl /* MAC Status register */
639 1.1 fvdl #define BGE_MACSTAT_TBI_PCS_SYNCHED 0x00000001
640 1.1 fvdl #define BGE_MACSTAT_TBI_SIGNAL_DETECT 0x00000002
641 1.1 fvdl #define BGE_MACSTAT_RX_CFG 0x00000004
642 1.1 fvdl #define BGE_MACSTAT_CFG_CHANGED 0x00000008
643 1.1 fvdl #define BGE_MACSTAT_SYNC_CHANGED 0x00000010
644 1.1 fvdl #define BGE_MACSTAT_PORT_DECODE_ERROR 0x00000400
645 1.1 fvdl #define BGE_MACSTAT_LINK_CHANGED 0x00001000
646 1.1 fvdl #define BGE_MACSTAT_MI_COMPLETE 0x00400000
647 1.1 fvdl #define BGE_MACSTAT_MI_INTERRUPT 0x00800000
648 1.1 fvdl #define BGE_MACSTAT_AUTOPOLL_ERROR 0x01000000
649 1.1 fvdl #define BGE_MACSTAT_ODI_ERROR 0x02000000
650 1.1 fvdl #define BGE_MACSTAT_RXSTAT_OFLOW 0x04000000
651 1.1 fvdl #define BGE_MACSTAT_TXSTAT_OFLOW 0x08000000
652 1.1 fvdl
653 1.1 fvdl /* MAC Event Enable Register */
654 1.1 fvdl #define BGE_EVTENB_PORT_DECODE_ERROR 0x00000400
655 1.1 fvdl #define BGE_EVTENB_LINK_CHANGED 0x00001000
656 1.1 fvdl #define BGE_EVTENB_MI_COMPLETE 0x00400000
657 1.1 fvdl #define BGE_EVTENB_MI_INTERRUPT 0x00800000
658 1.1 fvdl #define BGE_EVTENB_AUTOPOLL_ERROR 0x01000000
659 1.1 fvdl #define BGE_EVTENB_ODI_ERROR 0x02000000
660 1.1 fvdl #define BGE_EVTENB_RXSTAT_OFLOW 0x04000000
661 1.1 fvdl #define BGE_EVTENB_TXSTAT_OFLOW 0x08000000
662 1.1 fvdl
663 1.1 fvdl /* LED Control Register */
664 1.1 fvdl #define BGE_LEDCTL_LINKLED_OVERRIDE 0x00000001
665 1.1 fvdl #define BGE_LEDCTL_1000MBPS_LED 0x00000002
666 1.1 fvdl #define BGE_LEDCTL_100MBPS_LED 0x00000004
667 1.1 fvdl #define BGE_LEDCTL_10MBPS_LED 0x00000008
668 1.1 fvdl #define BGE_LEDCTL_TRAFLED_OVERRIDE 0x00000010
669 1.1 fvdl #define BGE_LEDCTL_TRAFLED_BLINK 0x00000020
670 1.1 fvdl #define BGE_LEDCTL_TREFLED_BLINK_2 0x00000040
671 1.1 fvdl #define BGE_LEDCTL_1000MBPS_STS 0x00000080
672 1.1 fvdl #define BGE_LEDCTL_100MBPS_STS 0x00000100
673 1.1 fvdl #define BGE_LEDCTL_10MBPS_STS 0x00000200
674 1.1 fvdl #define BGE_LEDCTL_TRADLED_STS 0x00000400
675 1.1 fvdl #define BGE_LEDCTL_BLINKPERIOD 0x7FF80000
676 1.1 fvdl #define BGE_LEDCTL_BLINKPERIOD_OVERRIDE 0x80000000
677 1.1 fvdl
678 1.1 fvdl /* TX backoff seed register */
679 1.1 fvdl #define BGE_TX_BACKOFF_SEED_MASK 0x3F
680 1.1 fvdl
681 1.1 fvdl /* Autopoll status register */
682 1.1 fvdl #define BGE_AUTOPOLLSTS_ERROR 0x00000001
683 1.1 fvdl
684 1.1 fvdl /* Transmit MAC mode register */
685 1.1 fvdl #define BGE_TXMODE_RESET 0x00000001
686 1.1 fvdl #define BGE_TXMODE_ENABLE 0x00000002
687 1.1 fvdl #define BGE_TXMODE_FLOWCTL_ENABLE 0x00000010
688 1.1 fvdl #define BGE_TXMODE_BIGBACKOFF_ENABLE 0x00000020
689 1.1 fvdl #define BGE_TXMODE_LONGPAUSE_ENABLE 0x00000040
690 1.1 fvdl
691 1.1 fvdl /* Transmit MAC status register */
692 1.1 fvdl #define BGE_TXSTAT_RX_XOFFED 0x00000001
693 1.1 fvdl #define BGE_TXSTAT_SENT_XOFF 0x00000002
694 1.1 fvdl #define BGE_TXSTAT_SENT_XON 0x00000004
695 1.1 fvdl #define BGE_TXSTAT_LINK_UP 0x00000008
696 1.1 fvdl #define BGE_TXSTAT_ODI_UFLOW 0x00000010
697 1.1 fvdl #define BGE_TXSTAT_ODI_OFLOW 0x00000020
698 1.1 fvdl
699 1.1 fvdl /* Transmit MAC lengths register */
700 1.1 fvdl #define BGE_TXLEN_SLOTTIME 0x000000FF
701 1.1 fvdl #define BGE_TXLEN_IPG 0x00000F00
702 1.1 fvdl #define BGE_TXLEN_CRS 0x00003000
703 1.1 fvdl
704 1.1 fvdl /* Receive MAC mode register */
705 1.1 fvdl #define BGE_RXMODE_RESET 0x00000001
706 1.1 fvdl #define BGE_RXMODE_ENABLE 0x00000002
707 1.1 fvdl #define BGE_RXMODE_FLOWCTL_ENABLE 0x00000004
708 1.1 fvdl #define BGE_RXMODE_RX_GIANTS 0x00000020
709 1.1 fvdl #define BGE_RXMODE_RX_RUNTS 0x00000040
710 1.1 fvdl #define BGE_RXMODE_8022_LENCHECK 0x00000080
711 1.1 fvdl #define BGE_RXMODE_RX_PROMISC 0x00000100
712 1.1 fvdl #define BGE_RXMODE_RX_NO_CRC_CHECK 0x00000200
713 1.1 fvdl #define BGE_RXMODE_RX_KEEP_VLAN_DIAG 0x00000400
714 1.1 fvdl
715 1.1 fvdl /* Receive MAC status register */
716 1.1 fvdl #define BGE_RXSTAT_REMOTE_XOFFED 0x00000001
717 1.1 fvdl #define BGE_RXSTAT_RCVD_XOFF 0x00000002
718 1.1 fvdl #define BGE_RXSTAT_RCVD_XON 0x00000004
719 1.1 fvdl
720 1.1 fvdl /* Receive Rules Control register */
721 1.1 fvdl #define BGE_RXRULECTL_OFFSET 0x000000FF
722 1.1 fvdl #define BGE_RXRULECTL_CLASS 0x00001F00
723 1.1 fvdl #define BGE_RXRULECTL_HDRTYPE 0x0000E000
724 1.1 fvdl #define BGE_RXRULECTL_COMPARE_OP 0x00030000
725 1.1 fvdl #define BGE_RXRULECTL_MAP 0x01000000
726 1.1 fvdl #define BGE_RXRULECTL_DISCARD 0x02000000
727 1.1 fvdl #define BGE_RXRULECTL_MASK 0x04000000
728 1.1 fvdl #define BGE_RXRULECTL_ACTIVATE_PROC3 0x08000000
729 1.1 fvdl #define BGE_RXRULECTL_ACTIVATE_PROC2 0x10000000
730 1.1 fvdl #define BGE_RXRULECTL_ACTIVATE_PROC1 0x20000000
731 1.1 fvdl #define BGE_RXRULECTL_ANDWITHNEXT 0x40000000
732 1.1 fvdl
733 1.1 fvdl /* Receive Rules Mask register */
734 1.1 fvdl #define BGE_RXRULEMASK_VALUE 0x0000FFFF
735 1.1 fvdl #define BGE_RXRULEMASK_MASKVAL 0xFFFF0000
736 1.1 fvdl
737 1.1 fvdl /* MI communication register */
738 1.1 fvdl #define BGE_MICOMM_DATA 0x0000FFFF
739 1.1 fvdl #define BGE_MICOMM_REG 0x001F0000
740 1.1 fvdl #define BGE_MICOMM_PHY 0x03E00000
741 1.1 fvdl #define BGE_MICOMM_CMD 0x0C000000
742 1.1 fvdl #define BGE_MICOMM_READFAIL 0x10000000
743 1.1 fvdl #define BGE_MICOMM_BUSY 0x20000000
744 1.1 fvdl
745 1.1 fvdl #define BGE_MIREG(x) ((x & 0x1F) << 16)
746 1.1 fvdl #define BGE_MIPHY(x) ((x & 0x1F) << 21)
747 1.1 fvdl #define BGE_MICMD_WRITE 0x04000000
748 1.1 fvdl #define BGE_MICMD_READ 0x08000000
749 1.1 fvdl
750 1.1 fvdl /* MI status register */
751 1.1 fvdl #define BGE_MISTS_LINK 0x00000001
752 1.1 fvdl #define BGE_MISTS_10MBPS 0x00000002
753 1.1 fvdl
754 1.1 fvdl #define BGE_MIMODE_SHORTPREAMBLE 0x00000002
755 1.1 fvdl #define BGE_MIMODE_AUTOPOLL 0x00000010
756 1.1 fvdl #define BGE_MIMODE_CLKCNT 0x001F0000
757 1.1 fvdl
758 1.1 fvdl
759 1.1 fvdl /*
760 1.1 fvdl * Send data initiator control registers.
761 1.1 fvdl */
762 1.1 fvdl #define BGE_SDI_MODE 0x0C00
763 1.1 fvdl #define BGE_SDI_STATUS 0x0C04
764 1.1 fvdl #define BGE_SDI_STATS_CTL 0x0C08
765 1.1 fvdl #define BGE_SDI_STATS_ENABLE_MASK 0x0C0C
766 1.1 fvdl #define BGE_SDI_STATS_INCREMENT_MASK 0x0C10
767 1.1 fvdl #define BGE_LOCSTATS_COS0 0x0C80
768 1.1 fvdl #define BGE_LOCSTATS_COS1 0x0C84
769 1.1 fvdl #define BGE_LOCSTATS_COS2 0x0C88
770 1.1 fvdl #define BGE_LOCSTATS_COS3 0x0C8C
771 1.1 fvdl #define BGE_LOCSTATS_COS4 0x0C90
772 1.1 fvdl #define BGE_LOCSTATS_COS5 0x0C84
773 1.1 fvdl #define BGE_LOCSTATS_COS6 0x0C98
774 1.1 fvdl #define BGE_LOCSTATS_COS7 0x0C9C
775 1.1 fvdl #define BGE_LOCSTATS_COS8 0x0CA0
776 1.1 fvdl #define BGE_LOCSTATS_COS9 0x0CA4
777 1.1 fvdl #define BGE_LOCSTATS_COS10 0x0CA8
778 1.1 fvdl #define BGE_LOCSTATS_COS11 0x0CAC
779 1.1 fvdl #define BGE_LOCSTATS_COS12 0x0CB0
780 1.1 fvdl #define BGE_LOCSTATS_COS13 0x0CB4
781 1.1 fvdl #define BGE_LOCSTATS_COS14 0x0CB8
782 1.1 fvdl #define BGE_LOCSTATS_COS15 0x0CBC
783 1.1 fvdl #define BGE_LOCSTATS_DMA_RQ_FULL 0x0CC0
784 1.1 fvdl #define BGE_LOCSTATS_DMA_HIPRIO_RQ_FULL 0x0CC4
785 1.1 fvdl #define BGE_LOCSTATS_SDC_QUEUE_FULL 0x0CC8
786 1.1 fvdl #define BGE_LOCSTATS_NIC_SENDPROD_SET 0x0CCC
787 1.1 fvdl #define BGE_LOCSTATS_STATS_UPDATED 0x0CD0
788 1.1 fvdl #define BGE_LOCSTATS_IRQS 0x0CD4
789 1.1 fvdl #define BGE_LOCSTATS_AVOIDED_IRQS 0x0CD8
790 1.1 fvdl #define BGE_LOCSTATS_TX_THRESH_HIT 0x0CDC
791 1.1 fvdl
792 1.1 fvdl /* Send Data Initiator mode register */
793 1.1 fvdl #define BGE_SDIMODE_RESET 0x00000001
794 1.1 fvdl #define BGE_SDIMODE_ENABLE 0x00000002
795 1.1 fvdl #define BGE_SDIMODE_STATS_OFLOW_ATTN 0x00000004
796 1.1 fvdl
797 1.1 fvdl /* Send Data Initiator stats register */
798 1.1 fvdl #define BGE_SDISTAT_STATS_OFLOW_ATTN 0x00000004
799 1.1 fvdl
800 1.1 fvdl /* Send Data Initiator stats control register */
801 1.1 fvdl #define BGE_SDISTATSCTL_ENABLE 0x00000001
802 1.1 fvdl #define BGE_SDISTATSCTL_FASTER 0x00000002
803 1.1 fvdl #define BGE_SDISTATSCTL_CLEAR 0x00000004
804 1.1 fvdl #define BGE_SDISTATSCTL_FORCEFLUSH 0x00000008
805 1.1 fvdl #define BGE_SDISTATSCTL_FORCEZERO 0x00000010
806 1.1 fvdl
807 1.1 fvdl /*
808 1.1 fvdl * Send Data Completion Control registers
809 1.1 fvdl */
810 1.1 fvdl #define BGE_SDC_MODE 0x1000
811 1.1 fvdl #define BGE_SDC_STATUS 0x1004
812 1.1 fvdl
813 1.1 fvdl /* Send Data completion mode register */
814 1.1 fvdl #define BGE_SDCMODE_RESET 0x00000001
815 1.1 fvdl #define BGE_SDCMODE_ENABLE 0x00000002
816 1.1 fvdl #define BGE_SDCMODE_ATTN 0x00000004
817 1.1 fvdl
818 1.1 fvdl /* Send Data completion status register */
819 1.1 fvdl #define BGE_SDCSTAT_ATTN 0x00000004
820 1.1 fvdl
821 1.1 fvdl /*
822 1.1 fvdl * Send BD Ring Selector Control registers
823 1.1 fvdl */
824 1.1 fvdl #define BGE_SRS_MODE 0x1400
825 1.1 fvdl #define BGE_SRS_STATUS 0x1404
826 1.1 fvdl #define BGE_SRS_HWDIAG 0x1408
827 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS0 0x1440
828 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS1 0x1444
829 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS2 0x1448
830 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS3 0x144C
831 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS4 0x1450
832 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS5 0x1454
833 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS6 0x1458
834 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS7 0x145C
835 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS8 0x1460
836 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS9 0x1464
837 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS10 0x1468
838 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS11 0x146C
839 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS12 0x1470
840 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS13 0x1474
841 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS14 0x1478
842 1.1 fvdl #define BGE_SRS_LOC_NIC_CONS15 0x147C
843 1.1 fvdl
844 1.1 fvdl /* Send BD Ring Selector Mode register */
845 1.1 fvdl #define BGE_SRSMODE_RESET 0x00000001
846 1.1 fvdl #define BGE_SRSMODE_ENABLE 0x00000002
847 1.1 fvdl #define BGE_SRSMODE_ATTN 0x00000004
848 1.1 fvdl
849 1.1 fvdl /* Send BD Ring Selector Status register */
850 1.1 fvdl #define BGE_SRSSTAT_ERROR 0x00000004
851 1.1 fvdl
852 1.1 fvdl /* Send BD Ring Selector HW Diagnostics register */
853 1.1 fvdl #define BGE_SRSHWDIAG_STATE 0x0000000F
854 1.1 fvdl #define BGE_SRSHWDIAG_CURRINGNUM 0x000000F0
855 1.1 fvdl #define BGE_SRSHWDIAG_STAGEDRINGNUM 0x00000F00
856 1.1 fvdl #define BGE_SRSHWDIAG_RINGNUM_IN_MBX 0x0000F000
857 1.1 fvdl
858 1.1 fvdl /*
859 1.1 fvdl * Send BD Initiator Selector Control registers
860 1.1 fvdl */
861 1.1 fvdl #define BGE_SBDI_MODE 0x1800
862 1.1 fvdl #define BGE_SBDI_STATUS 0x1804
863 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD0 0x1808
864 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD1 0x180C
865 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD2 0x1810
866 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD3 0x1814
867 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD4 0x1818
868 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD5 0x181C
869 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD6 0x1820
870 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD7 0x1824
871 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD8 0x1828
872 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD9 0x182C
873 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD10 0x1830
874 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD11 0x1834
875 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD12 0x1838
876 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD13 0x183C
877 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD14 0x1840
878 1.1 fvdl #define BGE_SBDI_LOC_NIC_PROD15 0x1844
879 1.1 fvdl
880 1.1 fvdl /* Send BD Initiator Mode register */
881 1.1 fvdl #define BGE_SBDIMODE_RESET 0x00000001
882 1.1 fvdl #define BGE_SBDIMODE_ENABLE 0x00000002
883 1.1 fvdl #define BGE_SBDIMODE_ATTN 0x00000004
884 1.1 fvdl
885 1.1 fvdl /* Send BD Initiator Status register */
886 1.1 fvdl #define BGE_SBDISTAT_ERROR 0x00000004
887 1.1 fvdl
888 1.1 fvdl /*
889 1.1 fvdl * Send BD Completion Control registers
890 1.1 fvdl */
891 1.1 fvdl #define BGE_SBDC_MODE 0x1C00
892 1.1 fvdl #define BGE_SBDC_STATUS 0x1C04
893 1.1 fvdl
894 1.1 fvdl /* Send BD Completion Control Mode register */
895 1.1 fvdl #define BGE_SBDCMODE_RESET 0x00000001
896 1.1 fvdl #define BGE_SBDCMODE_ENABLE 0x00000002
897 1.1 fvdl #define BGE_SBDCMODE_ATTN 0x00000004
898 1.1 fvdl
899 1.1 fvdl /* Send BD Completion Control Status register */
900 1.1 fvdl #define BGE_SBDCSTAT_ATTN 0x00000004
901 1.1 fvdl
902 1.1 fvdl /*
903 1.1 fvdl * Receive List Placement Control registers
904 1.1 fvdl */
905 1.1 fvdl #define BGE_RXLP_MODE 0x2000
906 1.1 fvdl #define BGE_RXLP_STATUS 0x2004
907 1.1 fvdl #define BGE_RXLP_SEL_LIST_LOCK 0x2008
908 1.1 fvdl #define BGE_RXLP_SEL_NON_EMPTY_BITS 0x200C
909 1.1 fvdl #define BGE_RXLP_CFG 0x2010
910 1.1 fvdl #define BGE_RXLP_STATS_CTL 0x2014
911 1.1 fvdl #define BGE_RXLP_STATS_ENABLE_MASK 0x2018
912 1.1 fvdl #define BGE_RXLP_STATS_INCREMENT_MASK 0x201C
913 1.1 fvdl #define BGE_RXLP_HEAD0 0x2100
914 1.1 fvdl #define BGE_RXLP_TAIL0 0x2104
915 1.1 fvdl #define BGE_RXLP_COUNT0 0x2108
916 1.1 fvdl #define BGE_RXLP_HEAD1 0x2110
917 1.1 fvdl #define BGE_RXLP_TAIL1 0x2114
918 1.1 fvdl #define BGE_RXLP_COUNT1 0x2118
919 1.1 fvdl #define BGE_RXLP_HEAD2 0x2120
920 1.1 fvdl #define BGE_RXLP_TAIL2 0x2124
921 1.1 fvdl #define BGE_RXLP_COUNT2 0x2128
922 1.1 fvdl #define BGE_RXLP_HEAD3 0x2130
923 1.1 fvdl #define BGE_RXLP_TAIL3 0x2134
924 1.1 fvdl #define BGE_RXLP_COUNT3 0x2138
925 1.1 fvdl #define BGE_RXLP_HEAD4 0x2140
926 1.1 fvdl #define BGE_RXLP_TAIL4 0x2144
927 1.1 fvdl #define BGE_RXLP_COUNT4 0x2148
928 1.1 fvdl #define BGE_RXLP_HEAD5 0x2150
929 1.1 fvdl #define BGE_RXLP_TAIL5 0x2154
930 1.1 fvdl #define BGE_RXLP_COUNT5 0x2158
931 1.1 fvdl #define BGE_RXLP_HEAD6 0x2160
932 1.1 fvdl #define BGE_RXLP_TAIL6 0x2164
933 1.1 fvdl #define BGE_RXLP_COUNT6 0x2168
934 1.1 fvdl #define BGE_RXLP_HEAD7 0x2170
935 1.1 fvdl #define BGE_RXLP_TAIL7 0x2174
936 1.1 fvdl #define BGE_RXLP_COUNT7 0x2178
937 1.1 fvdl #define BGE_RXLP_HEAD8 0x2180
938 1.1 fvdl #define BGE_RXLP_TAIL8 0x2184
939 1.1 fvdl #define BGE_RXLP_COUNT8 0x2188
940 1.1 fvdl #define BGE_RXLP_HEAD9 0x2190
941 1.1 fvdl #define BGE_RXLP_TAIL9 0x2194
942 1.1 fvdl #define BGE_RXLP_COUNT9 0x2198
943 1.1 fvdl #define BGE_RXLP_HEAD10 0x21A0
944 1.1 fvdl #define BGE_RXLP_TAIL10 0x21A4
945 1.1 fvdl #define BGE_RXLP_COUNT10 0x21A8
946 1.1 fvdl #define BGE_RXLP_HEAD11 0x21B0
947 1.1 fvdl #define BGE_RXLP_TAIL11 0x21B4
948 1.1 fvdl #define BGE_RXLP_COUNT11 0x21B8
949 1.1 fvdl #define BGE_RXLP_HEAD12 0x21C0
950 1.1 fvdl #define BGE_RXLP_TAIL12 0x21C4
951 1.1 fvdl #define BGE_RXLP_COUNT12 0x21C8
952 1.1 fvdl #define BGE_RXLP_HEAD13 0x21D0
953 1.1 fvdl #define BGE_RXLP_TAIL13 0x21D4
954 1.1 fvdl #define BGE_RXLP_COUNT13 0x21D8
955 1.1 fvdl #define BGE_RXLP_HEAD14 0x21E0
956 1.1 fvdl #define BGE_RXLP_TAIL14 0x21E4
957 1.1 fvdl #define BGE_RXLP_COUNT14 0x21E8
958 1.1 fvdl #define BGE_RXLP_HEAD15 0x21F0
959 1.1 fvdl #define BGE_RXLP_TAIL15 0x21F4
960 1.1 fvdl #define BGE_RXLP_COUNT15 0x21F8
961 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS0 0x2200
962 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS1 0x2204
963 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS2 0x2208
964 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS3 0x220C
965 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS4 0x2210
966 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS5 0x2214
967 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS6 0x2218
968 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS7 0x221C
969 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS8 0x2220
970 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS9 0x2224
971 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS10 0x2228
972 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS11 0x222C
973 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS12 0x2230
974 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS13 0x2234
975 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS14 0x2238
976 1.1 fvdl #define BGE_RXLP_LOCSTAT_COS15 0x223C
977 1.1 fvdl #define BGE_RXLP_LOCSTAT_FILTDROP 0x2240
978 1.1 fvdl #define BGE_RXLP_LOCSTAT_DMA_WRQ_FULL 0x2244
979 1.1 fvdl #define BGE_RXLP_LOCSTAT_DMA_HPWRQ_FULL 0x2248
980 1.1 fvdl #define BGE_RXLP_LOCSTAT_OUT_OF_BDS 0x224C
981 1.1 fvdl #define BGE_RXLP_LOCSTAT_IFIN_DROPS 0x2250
982 1.1 fvdl #define BGE_RXLP_LOCSTAT_IFIN_ERRORS 0x2254
983 1.1 fvdl #define BGE_RXLP_LOCSTAT_RXTHRESH_HIT 0x2258
984 1.1 fvdl
985 1.1 fvdl
986 1.1 fvdl /* Receive List Placement mode register */
987 1.1 fvdl #define BGE_RXLPMODE_RESET 0x00000001
988 1.1 fvdl #define BGE_RXLPMODE_ENABLE 0x00000002
989 1.1 fvdl #define BGE_RXLPMODE_CLASS0_ATTN 0x00000004
990 1.1 fvdl #define BGE_RXLPMODE_MAPOUTRANGE_ATTN 0x00000008
991 1.1 fvdl #define BGE_RXLPMODE_STATSOFLOW_ATTN 0x00000010
992 1.1 fvdl
993 1.1 fvdl /* Receive List Placement Status register */
994 1.1 fvdl #define BGE_RXLPSTAT_CLASS0_ATTN 0x00000004
995 1.1 fvdl #define BGE_RXLPSTAT_MAPOUTRANGE_ATTN 0x00000008
996 1.1 fvdl #define BGE_RXLPSTAT_STATSOFLOW_ATTN 0x00000010
997 1.1 fvdl
998 1.1 fvdl /*
999 1.1 fvdl * Receive Data and Receive BD Initiator Control Registers
1000 1.1 fvdl */
1001 1.1 fvdl #define BGE_RDBDI_MODE 0x2400
1002 1.1 fvdl #define BGE_RDBDI_STATUS 0x2404
1003 1.1 fvdl #define BGE_RX_JUMBO_RCB_HADDR_HI 0x2440
1004 1.1 fvdl #define BGE_RX_JUMBO_RCB_HADDR_LO 0x2444
1005 1.1 fvdl #define BGE_RX_JUMBO_RCB_MAXLEN_FLAGS 0x2448
1006 1.1 fvdl #define BGE_RX_JUMBO_RCB_NICADDR 0x244C
1007 1.1 fvdl #define BGE_RX_STD_RCB_HADDR_HI 0x2450
1008 1.1 fvdl #define BGE_RX_STD_RCB_HADDR_LO 0x2454
1009 1.1 fvdl #define BGE_RX_STD_RCB_MAXLEN_FLAGS 0x2458
1010 1.1 fvdl #define BGE_RX_STD_RCB_NICADDR 0x245C
1011 1.1 fvdl #define BGE_RX_MINI_RCB_HADDR_HI 0x2460
1012 1.1 fvdl #define BGE_RX_MINI_RCB_HADDR_LO 0x2464
1013 1.1 fvdl #define BGE_RX_MINI_RCB_MAXLEN_FLAGS 0x2468
1014 1.1 fvdl #define BGE_RX_MINI_RCB_NICADDR 0x246C
1015 1.1 fvdl #define BGE_RDBDI_JUMBO_RX_CONS 0x2470
1016 1.1 fvdl #define BGE_RDBDI_STD_RX_CONS 0x2474
1017 1.1 fvdl #define BGE_RDBDI_MINI_RX_CONS 0x2478
1018 1.1 fvdl #define BGE_RDBDI_RETURN_PROD0 0x2480
1019 1.1 fvdl #define BGE_RDBDI_RETURN_PROD1 0x2484
1020 1.1 fvdl #define BGE_RDBDI_RETURN_PROD2 0x2488
1021 1.1 fvdl #define BGE_RDBDI_RETURN_PROD3 0x248C
1022 1.1 fvdl #define BGE_RDBDI_RETURN_PROD4 0x2490
1023 1.1 fvdl #define BGE_RDBDI_RETURN_PROD5 0x2494
1024 1.1 fvdl #define BGE_RDBDI_RETURN_PROD6 0x2498
1025 1.1 fvdl #define BGE_RDBDI_RETURN_PROD7 0x249C
1026 1.1 fvdl #define BGE_RDBDI_RETURN_PROD8 0x24A0
1027 1.1 fvdl #define BGE_RDBDI_RETURN_PROD9 0x24A4
1028 1.1 fvdl #define BGE_RDBDI_RETURN_PROD10 0x24A8
1029 1.1 fvdl #define BGE_RDBDI_RETURN_PROD11 0x24AC
1030 1.1 fvdl #define BGE_RDBDI_RETURN_PROD12 0x24B0
1031 1.1 fvdl #define BGE_RDBDI_RETURN_PROD13 0x24B4
1032 1.1 fvdl #define BGE_RDBDI_RETURN_PROD14 0x24B8
1033 1.1 fvdl #define BGE_RDBDI_RETURN_PROD15 0x24BC
1034 1.1 fvdl #define BGE_RDBDI_HWDIAG 0x24C0
1035 1.1 fvdl
1036 1.1 fvdl
1037 1.1 fvdl /* Receive Data and Receive BD Initiator Mode register */
1038 1.1 fvdl #define BGE_RDBDIMODE_RESET 0x00000001
1039 1.1 fvdl #define BGE_RDBDIMODE_ENABLE 0x00000002
1040 1.1 fvdl #define BGE_RDBDIMODE_JUMBO_ATTN 0x00000004
1041 1.1 fvdl #define BGE_RDBDIMODE_GIANT_ATTN 0x00000008
1042 1.1 fvdl #define BGE_RDBDIMODE_BADRINGSZ_ATTN 0x00000010
1043 1.1 fvdl
1044 1.1 fvdl /* Receive Data and Receive BD Initiator Status register */
1045 1.1 fvdl #define BGE_RDBDISTAT_JUMBO_ATTN 0x00000004
1046 1.1 fvdl #define BGE_RDBDISTAT_GIANT_ATTN 0x00000008
1047 1.1 fvdl #define BGE_RDBDISTAT_BADRINGSZ_ATTN 0x00000010
1048 1.1 fvdl
1049 1.1 fvdl
1050 1.1 fvdl /*
1051 1.1 fvdl * Receive Data Completion Control registers
1052 1.1 fvdl */
1053 1.1 fvdl #define BGE_RDC_MODE 0x2800
1054 1.1 fvdl
1055 1.1 fvdl /* Receive Data Completion Mode register */
1056 1.1 fvdl #define BGE_RDCMODE_RESET 0x00000001
1057 1.1 fvdl #define BGE_RDCMODE_ENABLE 0x00000002
1058 1.1 fvdl #define BGE_RDCMODE_ATTN 0x00000004
1059 1.1 fvdl
1060 1.1 fvdl /*
1061 1.1 fvdl * Receive BD Initiator Control registers
1062 1.1 fvdl */
1063 1.1 fvdl #define BGE_RBDI_MODE 0x2C00
1064 1.1 fvdl #define BGE_RBDI_STATUS 0x2C04
1065 1.1 fvdl #define BGE_RBDI_NIC_JUMBO_BD_PROD 0x2C08
1066 1.1 fvdl #define BGE_RBDI_NIC_STD_BD_PROD 0x2C0C
1067 1.1 fvdl #define BGE_RBDI_NIC_MINI_BD_PROD 0x2C10
1068 1.1 fvdl #define BGE_RBDI_MINI_REPL_THRESH 0x2C14
1069 1.1 fvdl #define BGE_RBDI_STD_REPL_THRESH 0x2C18
1070 1.1 fvdl #define BGE_RBDI_JUMBO_REPL_THRESH 0x2C1C
1071 1.1 fvdl
1072 1.1 fvdl /* Receive BD Initiator Mode register */
1073 1.1 fvdl #define BGE_RBDIMODE_RESET 0x00000001
1074 1.1 fvdl #define BGE_RBDIMODE_ENABLE 0x00000002
1075 1.1 fvdl #define BGE_RBDIMODE_ATTN 0x00000004
1076 1.1 fvdl
1077 1.1 fvdl /* Receive BD Initiator Status register */
1078 1.1 fvdl #define BGE_RBDISTAT_ATTN 0x00000004
1079 1.1 fvdl
1080 1.1 fvdl /*
1081 1.1 fvdl * Receive BD Completion Control registers
1082 1.1 fvdl */
1083 1.1 fvdl #define BGE_RBDC_MODE 0x3000
1084 1.1 fvdl #define BGE_RBDC_STATUS 0x3004
1085 1.1 fvdl #define BGE_RBDC_JUMBO_BD_PROD 0x3008
1086 1.1 fvdl #define BGE_RBDC_STD_BD_PROD 0x300C
1087 1.1 fvdl #define BGE_RBDC_MINI_BD_PROD 0x3010
1088 1.1 fvdl
1089 1.1 fvdl /* Receive BD completion mode register */
1090 1.1 fvdl #define BGE_RBDCMODE_RESET 0x00000001
1091 1.1 fvdl #define BGE_RBDCMODE_ENABLE 0x00000002
1092 1.1 fvdl #define BGE_RBDCMODE_ATTN 0x00000004
1093 1.1 fvdl
1094 1.1 fvdl /* Receive BD completion status register */
1095 1.1 fvdl #define BGE_RBDCSTAT_ERROR 0x00000004
1096 1.1 fvdl
1097 1.1 fvdl /*
1098 1.1 fvdl * Receive List Selector Control registers
1099 1.1 fvdl */
1100 1.1 fvdl #define BGE_RXLS_MODE 0x3400
1101 1.1 fvdl #define BGE_RXLS_STATUS 0x3404
1102 1.1 fvdl
1103 1.1 fvdl /* Receive List Selector Mode register */
1104 1.1 fvdl #define BGE_RXLSMODE_RESET 0x00000001
1105 1.1 fvdl #define BGE_RXLSMODE_ENABLE 0x00000002
1106 1.1 fvdl #define BGE_RXLSMODE_ATTN 0x00000004
1107 1.1 fvdl
1108 1.1 fvdl /* Receive List Selector Status register */
1109 1.1 fvdl #define BGE_RXLSSTAT_ERROR 0x00000004
1110 1.1 fvdl
1111 1.1 fvdl /*
1112 1.1 fvdl * Mbuf Cluster Free registers (has nothing to do with BSD mbufs)
1113 1.1 fvdl */
1114 1.1 fvdl #define BGE_MBCF_MODE 0x3800
1115 1.1 fvdl #define BGE_MBCF_STATUS 0x3804
1116 1.1 fvdl
1117 1.1 fvdl /* Mbuf Cluster Free mode register */
1118 1.1 fvdl #define BGE_MBCFMODE_RESET 0x00000001
1119 1.1 fvdl #define BGE_MBCFMODE_ENABLE 0x00000002
1120 1.1 fvdl #define BGE_MBCFMODE_ATTN 0x00000004
1121 1.1 fvdl
1122 1.1 fvdl /* Mbuf Cluster Free status register */
1123 1.1 fvdl #define BGE_MBCFSTAT_ERROR 0x00000004
1124 1.1 fvdl
1125 1.1 fvdl /*
1126 1.1 fvdl * Host Coalescing Control registers
1127 1.1 fvdl */
1128 1.1 fvdl #define BGE_HCC_MODE 0x3C00
1129 1.1 fvdl #define BGE_HCC_STATUS 0x3C04
1130 1.1 fvdl #define BGE_HCC_RX_COAL_TICKS 0x3C08
1131 1.1 fvdl #define BGE_HCC_TX_COAL_TICKS 0x3C0C
1132 1.1 fvdl #define BGE_HCC_RX_MAX_COAL_BDS 0x3C10
1133 1.1 fvdl #define BGE_HCC_TX_MAX_COAL_BDS 0x3C14
1134 1.1 fvdl #define BGE_HCC_RX_COAL_TICKS_INT 0x3C18 /* ticks during interrupt */
1135 1.1 fvdl #define BGE_HCC_TX_COAL_TICKS_INT 0x3C1C /* ticks during interrupt */
1136 1.1 fvdl #define BGE_HCC_RX_MAX_COAL_BDS_INT 0x3C20 /* BDs during interrupt */
1137 1.42 pavel #define BGE_HCC_TX_MAX_COAL_BDS_INT 0x3C24 /* BDs during interrupt */
1138 1.1 fvdl #define BGE_HCC_STATS_TICKS 0x3C28
1139 1.1 fvdl #define BGE_HCC_STATS_ADDR_HI 0x3C30
1140 1.1 fvdl #define BGE_HCC_STATS_ADDR_LO 0x3C34
1141 1.1 fvdl #define BGE_HCC_STATUSBLK_ADDR_HI 0x3C38
1142 1.1 fvdl #define BGE_HCC_STATUSBLK_ADDR_LO 0x3C3C
1143 1.1 fvdl #define BGE_HCC_STATS_BASEADDR 0x3C40 /* address in NIC memory */
1144 1.1 fvdl #define BGE_HCC_STATUSBLK_BASEADDR 0x3C44 /* address in NIC memory */
1145 1.1 fvdl #define BGE_FLOW_ATTN 0x3C48
1146 1.1 fvdl #define BGE_HCC_JUMBO_BD_CONS 0x3C50
1147 1.1 fvdl #define BGE_HCC_STD_BD_CONS 0x3C54
1148 1.1 fvdl #define BGE_HCC_MINI_BD_CONS 0x3C58
1149 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD0 0x3C80
1150 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD1 0x3C84
1151 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD2 0x3C88
1152 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD3 0x3C8C
1153 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD4 0x3C90
1154 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD5 0x3C94
1155 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD6 0x3C98
1156 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD7 0x3C9C
1157 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD8 0x3CA0
1158 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD9 0x3CA4
1159 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD10 0x3CA8
1160 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD11 0x3CAC
1161 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD12 0x3CB0
1162 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD13 0x3CB4
1163 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD14 0x3CB8
1164 1.1 fvdl #define BGE_HCC_RX_RETURN_PROD15 0x3CBC
1165 1.1 fvdl #define BGE_HCC_TX_BD_CONS0 0x3CC0
1166 1.1 fvdl #define BGE_HCC_TX_BD_CONS1 0x3CC4
1167 1.1 fvdl #define BGE_HCC_TX_BD_CONS2 0x3CC8
1168 1.1 fvdl #define BGE_HCC_TX_BD_CONS3 0x3CCC
1169 1.1 fvdl #define BGE_HCC_TX_BD_CONS4 0x3CD0
1170 1.1 fvdl #define BGE_HCC_TX_BD_CONS5 0x3CD4
1171 1.1 fvdl #define BGE_HCC_TX_BD_CONS6 0x3CD8
1172 1.1 fvdl #define BGE_HCC_TX_BD_CONS7 0x3CDC
1173 1.1 fvdl #define BGE_HCC_TX_BD_CONS8 0x3CE0
1174 1.1 fvdl #define BGE_HCC_TX_BD_CONS9 0x3CE4
1175 1.1 fvdl #define BGE_HCC_TX_BD_CONS10 0x3CE8
1176 1.1 fvdl #define BGE_HCC_TX_BD_CONS11 0x3CEC
1177 1.1 fvdl #define BGE_HCC_TX_BD_CONS12 0x3CF0
1178 1.1 fvdl #define BGE_HCC_TX_BD_CONS13 0x3CF4
1179 1.1 fvdl #define BGE_HCC_TX_BD_CONS14 0x3CF8
1180 1.1 fvdl #define BGE_HCC_TX_BD_CONS15 0x3CFC
1181 1.1 fvdl
1182 1.1 fvdl
1183 1.1 fvdl /* Host coalescing mode register */
1184 1.1 fvdl #define BGE_HCCMODE_RESET 0x00000001
1185 1.1 fvdl #define BGE_HCCMODE_ENABLE 0x00000002
1186 1.1 fvdl #define BGE_HCCMODE_ATTN 0x00000004
1187 1.1 fvdl #define BGE_HCCMODE_COAL_NOW 0x00000008
1188 1.1 fvdl #define BGE_HCCMODE_MSI_BITS 0x0x000070
1189 1.16 jonathan #define BGE_HCCMODE_64BYTE 0x00000080
1190 1.16 jonathan #define BGE_HCCMODE_32BYTE 0x00000100
1191 1.16 jonathan #define BGE_HCCMODE_CLRTICK_RXBD 0x00000200
1192 1.16 jonathan #define BGE_HCCMODE_CLRTICK_TXBD 0x00000400
1193 1.16 jonathan #define BGE_HCCMODE_NOINT_ON_NOW 0x00000800
1194 1.16 jonathan #define BGE_HCCMODE_NOINT_ON_FORCE 0x00001000
1195 1.16 jonathan
1196 1.1 fvdl #define BGE_HCCMODE_STATBLK_SIZE 0x00000180
1197 1.1 fvdl
1198 1.1 fvdl #define BGE_STATBLKSZ_FULL 0x00000000
1199 1.1 fvdl #define BGE_STATBLKSZ_64BYTE 0x00000080
1200 1.1 fvdl #define BGE_STATBLKSZ_32BYTE 0x00000100
1201 1.1 fvdl
1202 1.1 fvdl /* Host coalescing status register */
1203 1.1 fvdl #define BGE_HCCSTAT_ERROR 0x00000004
1204 1.1 fvdl
1205 1.1 fvdl /* Flow attention register */
1206 1.1 fvdl #define BGE_FLOWATTN_MB_LOWAT 0x00000040
1207 1.1 fvdl #define BGE_FLOWATTN_MEMARB 0x00000080
1208 1.1 fvdl #define BGE_FLOWATTN_HOSTCOAL 0x00008000
1209 1.1 fvdl #define BGE_FLOWATTN_DMADONE_DISCARD 0x00010000
1210 1.1 fvdl #define BGE_FLOWATTN_RCB_INVAL 0x00020000
1211 1.1 fvdl #define BGE_FLOWATTN_RXDATA_CORRUPT 0x00040000
1212 1.1 fvdl #define BGE_FLOWATTN_RDBDI 0x00080000
1213 1.1 fvdl #define BGE_FLOWATTN_RXLS 0x00100000
1214 1.1 fvdl #define BGE_FLOWATTN_RXLP 0x00200000
1215 1.1 fvdl #define BGE_FLOWATTN_RBDC 0x00400000
1216 1.1 fvdl #define BGE_FLOWATTN_RBDI 0x00800000
1217 1.1 fvdl #define BGE_FLOWATTN_SDC 0x08000000
1218 1.1 fvdl #define BGE_FLOWATTN_SDI 0x10000000
1219 1.1 fvdl #define BGE_FLOWATTN_SRS 0x20000000
1220 1.1 fvdl #define BGE_FLOWATTN_SBDC 0x40000000
1221 1.1 fvdl #define BGE_FLOWATTN_SBDI 0x80000000
1222 1.1 fvdl
1223 1.1 fvdl /*
1224 1.1 fvdl * Memory arbiter registers
1225 1.1 fvdl */
1226 1.1 fvdl #define BGE_MARB_MODE 0x4000
1227 1.1 fvdl #define BGE_MARB_STATUS 0x4004
1228 1.1 fvdl #define BGE_MARB_TRAPADDR_HI 0x4008
1229 1.1 fvdl #define BGE_MARB_TRAPADDR_LO 0x400C
1230 1.1 fvdl
1231 1.1 fvdl /* Memory arbiter mode register */
1232 1.1 fvdl #define BGE_MARBMODE_RESET 0x00000001
1233 1.1 fvdl #define BGE_MARBMODE_ENABLE 0x00000002
1234 1.1 fvdl #define BGE_MARBMODE_TX_ADDR_TRAP 0x00000004
1235 1.1 fvdl #define BGE_MARBMODE_RX_ADDR_TRAP 0x00000008
1236 1.1 fvdl #define BGE_MARBMODE_DMAW1_TRAP 0x00000010
1237 1.1 fvdl #define BGE_MARBMODE_DMAR1_TRAP 0x00000020
1238 1.1 fvdl #define BGE_MARBMODE_RXRISC_TRAP 0x00000040
1239 1.1 fvdl #define BGE_MARBMODE_TXRISC_TRAP 0x00000080
1240 1.1 fvdl #define BGE_MARBMODE_PCI_TRAP 0x00000100
1241 1.1 fvdl #define BGE_MARBMODE_DMAR2_TRAP 0x00000200
1242 1.1 fvdl #define BGE_MARBMODE_RXQ_TRAP 0x00000400
1243 1.1 fvdl #define BGE_MARBMODE_RXDI1_TRAP 0x00000800
1244 1.1 fvdl #define BGE_MARBMODE_RXDI2_TRAP 0x00001000
1245 1.1 fvdl #define BGE_MARBMODE_DC_GRPMEM_TRAP 0x00002000
1246 1.1 fvdl #define BGE_MARBMODE_HCOAL_TRAP 0x00004000
1247 1.1 fvdl #define BGE_MARBMODE_MBUF_TRAP 0x00008000
1248 1.1 fvdl #define BGE_MARBMODE_TXDI_TRAP 0x00010000
1249 1.1 fvdl #define BGE_MARBMODE_SDC_DMAC_TRAP 0x00020000
1250 1.1 fvdl #define BGE_MARBMODE_TXBD_TRAP 0x00040000
1251 1.1 fvdl #define BGE_MARBMODE_BUFFMAN_TRAP 0x00080000
1252 1.1 fvdl #define BGE_MARBMODE_DMAW2_TRAP 0x00100000
1253 1.1 fvdl #define BGE_MARBMODE_XTSSRAM_ROFLO_TRAP 0x00200000
1254 1.1 fvdl #define BGE_MARBMODE_XTSSRAM_RUFLO_TRAP 0x00400000
1255 1.1 fvdl #define BGE_MARBMODE_XTSSRAM_WOFLO_TRAP 0x00800000
1256 1.1 fvdl #define BGE_MARBMODE_XTSSRAM_WUFLO_TRAP 0x01000000
1257 1.1 fvdl #define BGE_MARBMODE_XTSSRAM_PERR_TRAP 0x02000000
1258 1.1 fvdl
1259 1.1 fvdl /* Memory arbiter status register */
1260 1.1 fvdl #define BGE_MARBSTAT_TX_ADDR_TRAP 0x00000004
1261 1.1 fvdl #define BGE_MARBSTAT_RX_ADDR_TRAP 0x00000008
1262 1.1 fvdl #define BGE_MARBSTAT_DMAW1_TRAP 0x00000010
1263 1.1 fvdl #define BGE_MARBSTAT_DMAR1_TRAP 0x00000020
1264 1.1 fvdl #define BGE_MARBSTAT_RXRISC_TRAP 0x00000040
1265 1.1 fvdl #define BGE_MARBSTAT_TXRISC_TRAP 0x00000080
1266 1.1 fvdl #define BGE_MARBSTAT_PCI_TRAP 0x00000100
1267 1.1 fvdl #define BGE_MARBSTAT_DMAR2_TRAP 0x00000200
1268 1.1 fvdl #define BGE_MARBSTAT_RXQ_TRAP 0x00000400
1269 1.1 fvdl #define BGE_MARBSTAT_RXDI1_TRAP 0x00000800
1270 1.1 fvdl #define BGE_MARBSTAT_RXDI2_TRAP 0x00001000
1271 1.1 fvdl #define BGE_MARBSTAT_DC_GRPMEM_TRAP 0x00002000
1272 1.1 fvdl #define BGE_MARBSTAT_HCOAL_TRAP 0x00004000
1273 1.1 fvdl #define BGE_MARBSTAT_MBUF_TRAP 0x00008000
1274 1.1 fvdl #define BGE_MARBSTAT_TXDI_TRAP 0x00010000
1275 1.1 fvdl #define BGE_MARBSTAT_SDC_DMAC_TRAP 0x00020000
1276 1.1 fvdl #define BGE_MARBSTAT_TXBD_TRAP 0x00040000
1277 1.1 fvdl #define BGE_MARBSTAT_BUFFMAN_TRAP 0x00080000
1278 1.1 fvdl #define BGE_MARBSTAT_DMAW2_TRAP 0x00100000
1279 1.1 fvdl #define BGE_MARBSTAT_XTSSRAM_ROFLO_TRAP 0x00200000
1280 1.1 fvdl #define BGE_MARBSTAT_XTSSRAM_RUFLO_TRAP 0x00400000
1281 1.1 fvdl #define BGE_MARBSTAT_XTSSRAM_WOFLO_TRAP 0x00800000
1282 1.1 fvdl #define BGE_MARBSTAT_XTSSRAM_WUFLO_TRAP 0x01000000
1283 1.1 fvdl #define BGE_MARBSTAT_XTSSRAM_PERR_TRAP 0x02000000
1284 1.1 fvdl
1285 1.1 fvdl /*
1286 1.1 fvdl * Buffer manager control registers
1287 1.1 fvdl */
1288 1.1 fvdl #define BGE_BMAN_MODE 0x4400
1289 1.1 fvdl #define BGE_BMAN_STATUS 0x4404
1290 1.1 fvdl #define BGE_BMAN_MBUFPOOL_BASEADDR 0x4408
1291 1.1 fvdl #define BGE_BMAN_MBUFPOOL_LEN 0x440C
1292 1.1 fvdl #define BGE_BMAN_MBUFPOOL_READDMA_LOWAT 0x4410
1293 1.1 fvdl #define BGE_BMAN_MBUFPOOL_MACRX_LOWAT 0x4414
1294 1.1 fvdl #define BGE_BMAN_MBUFPOOL_HIWAT 0x4418
1295 1.1 fvdl #define BGE_BMAN_RXCPU_MBALLOC_REQ 0x441C
1296 1.1 fvdl #define BGE_BMAN_RXCPU_MBALLOC_RESP 0x4420
1297 1.1 fvdl #define BGE_BMAN_TXCPU_MBALLOC_REQ 0x4424
1298 1.1 fvdl #define BGE_BMAN_TXCPU_MBALLOC_RESP 0x4428
1299 1.1 fvdl #define BGE_BMAN_DMA_DESCPOOL_BASEADDR 0x442C
1300 1.1 fvdl #define BGE_BMAN_DMA_DESCPOOL_LEN 0x4430
1301 1.1 fvdl #define BGE_BMAN_DMA_DESCPOOL_LOWAT 0x4434
1302 1.1 fvdl #define BGE_BMAN_DMA_DESCPOOL_HIWAT 0x4438
1303 1.1 fvdl #define BGE_BMAN_RXCPU_DMAALLOC_REQ 0x443C
1304 1.1 fvdl #define BGE_BMAN_RXCPU_DMAALLOC_RESP 0x4440
1305 1.1 fvdl #define BGE_BMAN_TXCPU_DMAALLOC_REQ 0x4444
1306 1.1 fvdl #define BGE_BMAN_TXCPU_DMALLLOC_RESP 0x4448
1307 1.1 fvdl #define BGE_BMAN_HWDIAG_1 0x444C
1308 1.1 fvdl #define BGE_BMAN_HWDIAG_2 0x4450
1309 1.1 fvdl #define BGE_BMAN_HWDIAG_3 0x4454
1310 1.1 fvdl
1311 1.1 fvdl /* Buffer manager mode register */
1312 1.1 fvdl #define BGE_BMANMODE_RESET 0x00000001
1313 1.1 fvdl #define BGE_BMANMODE_ENABLE 0x00000002
1314 1.1 fvdl #define BGE_BMANMODE_ATTN 0x00000004
1315 1.1 fvdl #define BGE_BMANMODE_TESTMODE 0x00000008
1316 1.1 fvdl #define BGE_BMANMODE_LOMBUF_ATTN 0x00000010
1317 1.1 fvdl
1318 1.1 fvdl /* Buffer manager status register */
1319 1.1 fvdl #define BGE_BMANSTAT_ERRO 0x00000004
1320 1.1 fvdl #define BGE_BMANSTAT_LOWMBUF_ERROR 0x00000010
1321 1.1 fvdl
1322 1.1 fvdl
1323 1.1 fvdl /*
1324 1.1 fvdl * Read DMA Control registers
1325 1.1 fvdl */
1326 1.1 fvdl #define BGE_RDMA_MODE 0x4800
1327 1.1 fvdl #define BGE_RDMA_STATUS 0x4804
1328 1.1 fvdl
1329 1.1 fvdl /* Read DMA mode register */
1330 1.1 fvdl #define BGE_RDMAMODE_RESET 0x00000001
1331 1.1 fvdl #define BGE_RDMAMODE_ENABLE 0x00000002
1332 1.1 fvdl #define BGE_RDMAMODE_PCI_TGT_ABRT_ATTN 0x00000004
1333 1.1 fvdl #define BGE_RDMAMODE_PCI_MSTR_ABRT_ATTN 0x00000008
1334 1.1 fvdl #define BGE_RDMAMODE_PCI_PERR_ATTN 0x00000010
1335 1.1 fvdl #define BGE_RDMAMODE_PCI_ADDROFLOW_ATTN 0x00000020
1336 1.1 fvdl #define BGE_RDMAMODE_PCI_FIFOOFLOW_ATTN 0x00000040
1337 1.1 fvdl #define BGE_RDMAMODE_PCI_FIFOUFLOW_ATTN 0x00000080
1338 1.1 fvdl #define BGE_RDMAMODE_PCI_FIFOOREAD_ATTN 0x00000100
1339 1.1 fvdl #define BGE_RDMAMODE_LOCWRITE_TOOBIG 0x00000200
1340 1.1 fvdl #define BGE_RDMAMODE_ALL_ATTNS 0x000003FC
1341 1.1 fvdl
1342 1.28 jonathan /* Alternate encodings for PCI-Express, from Broadcom-supplied Linux driver */
1343 1.28 jonathan #define BGE_RDMA_MODE_FIFO_LONG_BURST ((1<<17) || (1 << 16))
1344 1.37 tsutsui #define BGE_RDMA_MODE_FIFO_SIZE_128 (1 << 17)
1345 1.28 jonathan
1346 1.1 fvdl /* Read DMA status register */
1347 1.1 fvdl #define BGE_RDMASTAT_PCI_TGT_ABRT_ATTN 0x00000004
1348 1.1 fvdl #define BGE_RDMASTAT_PCI_MSTR_ABRT_ATTN 0x00000008
1349 1.1 fvdl #define BGE_RDMASTAT_PCI_PERR_ATTN 0x00000010
1350 1.1 fvdl #define BGE_RDMASTAT_PCI_ADDROFLOW_ATTN 0x00000020
1351 1.1 fvdl #define BGE_RDMASTAT_PCI_FIFOOFLOW_ATTN 0x00000040
1352 1.1 fvdl #define BGE_RDMASTAT_PCI_FIFOUFLOW_ATTN 0x00000080
1353 1.1 fvdl #define BGE_RDMASTAT_PCI_FIFOOREAD_ATTN 0x00000100
1354 1.1 fvdl #define BGE_RDMASTAT_LOCWRITE_TOOBIG 0x00000200
1355 1.1 fvdl
1356 1.1 fvdl /*
1357 1.1 fvdl * Write DMA control registers
1358 1.1 fvdl */
1359 1.1 fvdl #define BGE_WDMA_MODE 0x4C00
1360 1.1 fvdl #define BGE_WDMA_STATUS 0x4C04
1361 1.1 fvdl
1362 1.1 fvdl /* Write DMA mode register */
1363 1.1 fvdl #define BGE_WDMAMODE_RESET 0x00000001
1364 1.1 fvdl #define BGE_WDMAMODE_ENABLE 0x00000002
1365 1.1 fvdl #define BGE_WDMAMODE_PCI_TGT_ABRT_ATTN 0x00000004
1366 1.1 fvdl #define BGE_WDMAMODE_PCI_MSTR_ABRT_ATTN 0x00000008
1367 1.1 fvdl #define BGE_WDMAMODE_PCI_PERR_ATTN 0x00000010
1368 1.1 fvdl #define BGE_WDMAMODE_PCI_ADDROFLOW_ATTN 0x00000020
1369 1.1 fvdl #define BGE_WDMAMODE_PCI_FIFOOFLOW_ATTN 0x00000040
1370 1.1 fvdl #define BGE_WDMAMODE_PCI_FIFOUFLOW_ATTN 0x00000080
1371 1.1 fvdl #define BGE_WDMAMODE_PCI_FIFOOREAD_ATTN 0x00000100
1372 1.1 fvdl #define BGE_WDMAMODE_LOCREAD_TOOBIG 0x00000200
1373 1.1 fvdl #define BGE_WDMAMODE_ALL_ATTNS 0x000003FC
1374 1.1 fvdl
1375 1.1 fvdl /* Write DMA status register */
1376 1.1 fvdl #define BGE_WDMASTAT_PCI_TGT_ABRT_ATTN 0x00000004
1377 1.1 fvdl #define BGE_WDMASTAT_PCI_MSTR_ABRT_ATTN 0x00000008
1378 1.1 fvdl #define BGE_WDMASTAT_PCI_PERR_ATTN 0x00000010
1379 1.1 fvdl #define BGE_WDMASTAT_PCI_ADDROFLOW_ATTN 0x00000020
1380 1.1 fvdl #define BGE_WDMASTAT_PCI_FIFOOFLOW_ATTN 0x00000040
1381 1.1 fvdl #define BGE_WDMASTAT_PCI_FIFOUFLOW_ATTN 0x00000080
1382 1.1 fvdl #define BGE_WDMASTAT_PCI_FIFOOREAD_ATTN 0x00000100
1383 1.1 fvdl #define BGE_WDMASTAT_LOCREAD_TOOBIG 0x00000200
1384 1.1 fvdl
1385 1.1 fvdl
1386 1.1 fvdl /*
1387 1.1 fvdl * RX CPU registers
1388 1.1 fvdl */
1389 1.1 fvdl #define BGE_RXCPU_MODE 0x5000
1390 1.1 fvdl #define BGE_RXCPU_STATUS 0x5004
1391 1.1 fvdl #define BGE_RXCPU_PC 0x501C
1392 1.1 fvdl
1393 1.1 fvdl /* RX CPU mode register */
1394 1.1 fvdl #define BGE_RXCPUMODE_RESET 0x00000001
1395 1.1 fvdl #define BGE_RXCPUMODE_SINGLESTEP 0x00000002
1396 1.1 fvdl #define BGE_RXCPUMODE_P0_DATAHLT_ENB 0x00000004
1397 1.1 fvdl #define BGE_RXCPUMODE_P0_INSTRHLT_ENB 0x00000008
1398 1.1 fvdl #define BGE_RXCPUMODE_WR_POSTBUF_ENB 0x00000010
1399 1.1 fvdl #define BGE_RXCPUMODE_DATACACHE_ENB 0x00000020
1400 1.1 fvdl #define BGE_RXCPUMODE_ROMFAIL 0x00000040
1401 1.1 fvdl #define BGE_RXCPUMODE_WATCHDOG_ENB 0x00000080
1402 1.1 fvdl #define BGE_RXCPUMODE_INSTRCACHE_PRF 0x00000100
1403 1.1 fvdl #define BGE_RXCPUMODE_INSTRCACHE_FLUSH 0x00000200
1404 1.1 fvdl #define BGE_RXCPUMODE_HALTCPU 0x00000400
1405 1.1 fvdl #define BGE_RXCPUMODE_INVDATAHLT_ENB 0x00000800
1406 1.1 fvdl #define BGE_RXCPUMODE_MADDRTRAPHLT_ENB 0x00001000
1407 1.1 fvdl #define BGE_RXCPUMODE_RADDRTRAPHLT_ENB 0x00002000
1408 1.1 fvdl
1409 1.1 fvdl /* RX CPU status register */
1410 1.1 fvdl #define BGE_RXCPUSTAT_HW_BREAKPOINT 0x00000001
1411 1.1 fvdl #define BGE_RXCPUSTAT_HLTINSTR_EXECUTED 0x00000002
1412 1.1 fvdl #define BGE_RXCPUSTAT_INVALID_INSTR 0x00000004
1413 1.1 fvdl #define BGE_RXCPUSTAT_P0_DATAREF 0x00000008
1414 1.1 fvdl #define BGE_RXCPUSTAT_P0_INSTRREF 0x00000010
1415 1.1 fvdl #define BGE_RXCPUSTAT_INVALID_DATAACC 0x00000020
1416 1.1 fvdl #define BGE_RXCPUSTAT_INVALID_INSTRFTCH 0x00000040
1417 1.1 fvdl #define BGE_RXCPUSTAT_BAD_MEMALIGN 0x00000080
1418 1.1 fvdl #define BGE_RXCPUSTAT_MADDR_TRAP 0x00000100
1419 1.1 fvdl #define BGE_RXCPUSTAT_REGADDR_TRAP 0x00000200
1420 1.1 fvdl #define BGE_RXCPUSTAT_DATAACC_STALL 0x00001000
1421 1.1 fvdl #define BGE_RXCPUSTAT_INSTRFETCH_STALL 0x00002000
1422 1.1 fvdl #define BGE_RXCPUSTAT_MA_WR_FIFOOFLOW 0x08000000
1423 1.1 fvdl #define BGE_RXCPUSTAT_MA_RD_FIFOOFLOW 0x10000000
1424 1.1 fvdl #define BGE_RXCPUSTAT_MA_DATAMASK_OFLOW 0x20000000
1425 1.1 fvdl #define BGE_RXCPUSTAT_MA_REQ_FIFOOFLOW 0x40000000
1426 1.1 fvdl #define BGE_RXCPUSTAT_BLOCKING_READ 0x80000000
1427 1.1 fvdl
1428 1.1 fvdl
1429 1.1 fvdl /*
1430 1.1 fvdl * TX CPU registers
1431 1.1 fvdl */
1432 1.1 fvdl #define BGE_TXCPU_MODE 0x5400
1433 1.1 fvdl #define BGE_TXCPU_STATUS 0x5404
1434 1.1 fvdl #define BGE_TXCPU_PC 0x541C
1435 1.1 fvdl
1436 1.1 fvdl /* TX CPU mode register */
1437 1.1 fvdl #define BGE_TXCPUMODE_RESET 0x00000001
1438 1.1 fvdl #define BGE_TXCPUMODE_SINGLESTEP 0x00000002
1439 1.1 fvdl #define BGE_TXCPUMODE_P0_DATAHLT_ENB 0x00000004
1440 1.1 fvdl #define BGE_TXCPUMODE_P0_INSTRHLT_ENB 0x00000008
1441 1.1 fvdl #define BGE_TXCPUMODE_WR_POSTBUF_ENB 0x00000010
1442 1.1 fvdl #define BGE_TXCPUMODE_DATACACHE_ENB 0x00000020
1443 1.1 fvdl #define BGE_TXCPUMODE_ROMFAIL 0x00000040
1444 1.1 fvdl #define BGE_TXCPUMODE_WATCHDOG_ENB 0x00000080
1445 1.1 fvdl #define BGE_TXCPUMODE_INSTRCACHE_PRF 0x00000100
1446 1.1 fvdl #define BGE_TXCPUMODE_INSTRCACHE_FLUSH 0x00000200
1447 1.1 fvdl #define BGE_TXCPUMODE_HALTCPU 0x00000400
1448 1.1 fvdl #define BGE_TXCPUMODE_INVDATAHLT_ENB 0x00000800
1449 1.1 fvdl #define BGE_TXCPUMODE_MADDRTRAPHLT_ENB 0x00001000
1450 1.1 fvdl
1451 1.1 fvdl /* TX CPU status register */
1452 1.1 fvdl #define BGE_TXCPUSTAT_HW_BREAKPOINT 0x00000001
1453 1.1 fvdl #define BGE_TXCPUSTAT_HLTINSTR_EXECUTED 0x00000002
1454 1.1 fvdl #define BGE_TXCPUSTAT_INVALID_INSTR 0x00000004
1455 1.1 fvdl #define BGE_TXCPUSTAT_P0_DATAREF 0x00000008
1456 1.1 fvdl #define BGE_TXCPUSTAT_P0_INSTRREF 0x00000010
1457 1.1 fvdl #define BGE_TXCPUSTAT_INVALID_DATAACC 0x00000020
1458 1.1 fvdl #define BGE_TXCPUSTAT_INVALID_INSTRFTCH 0x00000040
1459 1.1 fvdl #define BGE_TXCPUSTAT_BAD_MEMALIGN 0x00000080
1460 1.1 fvdl #define BGE_TXCPUSTAT_MADDR_TRAP 0x00000100
1461 1.1 fvdl #define BGE_TXCPUSTAT_REGADDR_TRAP 0x00000200
1462 1.1 fvdl #define BGE_TXCPUSTAT_DATAACC_STALL 0x00001000
1463 1.1 fvdl #define BGE_TXCPUSTAT_INSTRFETCH_STALL 0x00002000
1464 1.1 fvdl #define BGE_TXCPUSTAT_MA_WR_FIFOOFLOW 0x08000000
1465 1.1 fvdl #define BGE_TXCPUSTAT_MA_RD_FIFOOFLOW 0x10000000
1466 1.1 fvdl #define BGE_TXCPUSTAT_MA_DATAMASK_OFLOW 0x20000000
1467 1.1 fvdl #define BGE_TXCPUSTAT_MA_REQ_FIFOOFLOW 0x40000000
1468 1.1 fvdl #define BGE_TXCPUSTAT_BLOCKING_READ 0x80000000
1469 1.1 fvdl
1470 1.1 fvdl
1471 1.1 fvdl /*
1472 1.1 fvdl * Low priority mailbox registers
1473 1.1 fvdl */
1474 1.1 fvdl #define BGE_LPMBX_IRQ0_HI 0x5800
1475 1.1 fvdl #define BGE_LPMBX_IRQ0_LO 0x5804
1476 1.1 fvdl #define BGE_LPMBX_IRQ1_HI 0x5808
1477 1.1 fvdl #define BGE_LPMBX_IRQ1_LO 0x580C
1478 1.1 fvdl #define BGE_LPMBX_IRQ2_HI 0x5810
1479 1.1 fvdl #define BGE_LPMBX_IRQ2_LO 0x5814
1480 1.1 fvdl #define BGE_LPMBX_IRQ3_HI 0x5818
1481 1.1 fvdl #define BGE_LPMBX_IRQ3_LO 0x581C
1482 1.1 fvdl #define BGE_LPMBX_GEN0_HI 0x5820
1483 1.1 fvdl #define BGE_LPMBX_GEN0_LO 0x5824
1484 1.1 fvdl #define BGE_LPMBX_GEN1_HI 0x5828
1485 1.1 fvdl #define BGE_LPMBX_GEN1_LO 0x582C
1486 1.1 fvdl #define BGE_LPMBX_GEN2_HI 0x5830
1487 1.1 fvdl #define BGE_LPMBX_GEN2_LO 0x5834
1488 1.1 fvdl #define BGE_LPMBX_GEN3_HI 0x5828
1489 1.1 fvdl #define BGE_LPMBX_GEN3_LO 0x582C
1490 1.1 fvdl #define BGE_LPMBX_GEN4_HI 0x5840
1491 1.1 fvdl #define BGE_LPMBX_GEN4_LO 0x5844
1492 1.1 fvdl #define BGE_LPMBX_GEN5_HI 0x5848
1493 1.1 fvdl #define BGE_LPMBX_GEN5_LO 0x584C
1494 1.1 fvdl #define BGE_LPMBX_GEN6_HI 0x5850
1495 1.1 fvdl #define BGE_LPMBX_GEN6_LO 0x5854
1496 1.1 fvdl #define BGE_LPMBX_GEN7_HI 0x5858
1497 1.1 fvdl #define BGE_LPMBX_GEN7_LO 0x585C
1498 1.1 fvdl #define BGE_LPMBX_RELOAD_STATS_HI 0x5860
1499 1.1 fvdl #define BGE_LPMBX_RELOAD_STATS_LO 0x5864
1500 1.1 fvdl #define BGE_LPMBX_RX_STD_PROD_HI 0x5868
1501 1.1 fvdl #define BGE_LPMBX_RX_STD_PROD_LO 0x586C
1502 1.1 fvdl #define BGE_LPMBX_RX_JUMBO_PROD_HI 0x5870
1503 1.1 fvdl #define BGE_LPMBX_RX_JUMBO_PROD_LO 0x5874
1504 1.1 fvdl #define BGE_LPMBX_RX_MINI_PROD_HI 0x5878
1505 1.1 fvdl #define BGE_LPMBX_RX_MINI_PROD_LO 0x587C
1506 1.1 fvdl #define BGE_LPMBX_RX_CONS0_HI 0x5880
1507 1.1 fvdl #define BGE_LPMBX_RX_CONS0_LO 0x5884
1508 1.1 fvdl #define BGE_LPMBX_RX_CONS1_HI 0x5888
1509 1.1 fvdl #define BGE_LPMBX_RX_CONS1_LO 0x588C
1510 1.1 fvdl #define BGE_LPMBX_RX_CONS2_HI 0x5890
1511 1.1 fvdl #define BGE_LPMBX_RX_CONS2_LO 0x5894
1512 1.1 fvdl #define BGE_LPMBX_RX_CONS3_HI 0x5898
1513 1.1 fvdl #define BGE_LPMBX_RX_CONS3_LO 0x589C
1514 1.1 fvdl #define BGE_LPMBX_RX_CONS4_HI 0x58A0
1515 1.1 fvdl #define BGE_LPMBX_RX_CONS4_LO 0x58A4
1516 1.1 fvdl #define BGE_LPMBX_RX_CONS5_HI 0x58A8
1517 1.1 fvdl #define BGE_LPMBX_RX_CONS5_LO 0x58AC
1518 1.1 fvdl #define BGE_LPMBX_RX_CONS6_HI 0x58B0
1519 1.1 fvdl #define BGE_LPMBX_RX_CONS6_LO 0x58B4
1520 1.1 fvdl #define BGE_LPMBX_RX_CONS7_HI 0x58B8
1521 1.1 fvdl #define BGE_LPMBX_RX_CONS7_LO 0x58BC
1522 1.1 fvdl #define BGE_LPMBX_RX_CONS8_HI 0x58C0
1523 1.1 fvdl #define BGE_LPMBX_RX_CONS8_LO 0x58C4
1524 1.1 fvdl #define BGE_LPMBX_RX_CONS9_HI 0x58C8
1525 1.1 fvdl #define BGE_LPMBX_RX_CONS9_LO 0x58CC
1526 1.1 fvdl #define BGE_LPMBX_RX_CONS10_HI 0x58D0
1527 1.1 fvdl #define BGE_LPMBX_RX_CONS10_LO 0x58D4
1528 1.1 fvdl #define BGE_LPMBX_RX_CONS11_HI 0x58D8
1529 1.1 fvdl #define BGE_LPMBX_RX_CONS11_LO 0x58DC
1530 1.1 fvdl #define BGE_LPMBX_RX_CONS12_HI 0x58E0
1531 1.1 fvdl #define BGE_LPMBX_RX_CONS12_LO 0x58E4
1532 1.1 fvdl #define BGE_LPMBX_RX_CONS13_HI 0x58E8
1533 1.1 fvdl #define BGE_LPMBX_RX_CONS13_LO 0x58EC
1534 1.1 fvdl #define BGE_LPMBX_RX_CONS14_HI 0x58F0
1535 1.1 fvdl #define BGE_LPMBX_RX_CONS14_LO 0x58F4
1536 1.1 fvdl #define BGE_LPMBX_RX_CONS15_HI 0x58F8
1537 1.1 fvdl #define BGE_LPMBX_RX_CONS15_LO 0x58FC
1538 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD0_HI 0x5900
1539 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD0_LO 0x5904
1540 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD1_HI 0x5908
1541 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD1_LO 0x590C
1542 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD2_HI 0x5910
1543 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD2_LO 0x5914
1544 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD3_HI 0x5918
1545 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD3_LO 0x591C
1546 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD4_HI 0x5920
1547 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD4_LO 0x5924
1548 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD5_HI 0x5928
1549 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD5_LO 0x592C
1550 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD6_HI 0x5930
1551 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD6_LO 0x5934
1552 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD7_HI 0x5938
1553 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD7_LO 0x593C
1554 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD8_HI 0x5940
1555 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD8_LO 0x5944
1556 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD9_HI 0x5948
1557 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD9_LO 0x594C
1558 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD10_HI 0x5950
1559 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD10_LO 0x5954
1560 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD11_HI 0x5958
1561 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD11_LO 0x595C
1562 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD12_HI 0x5960
1563 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD12_LO 0x5964
1564 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD13_HI 0x5968
1565 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD13_LO 0x596C
1566 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD14_HI 0x5970
1567 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD14_LO 0x5974
1568 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD15_HI 0x5978
1569 1.1 fvdl #define BGE_LPMBX_TX_HOST_PROD15_LO 0x597C
1570 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD0_HI 0x5980
1571 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD0_LO 0x5984
1572 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD1_HI 0x5988
1573 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD1_LO 0x598C
1574 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD2_HI 0x5990
1575 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD2_LO 0x5994
1576 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD3_HI 0x5998
1577 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD3_LO 0x599C
1578 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD4_HI 0x59A0
1579 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD4_LO 0x59A4
1580 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD5_HI 0x59A8
1581 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD5_LO 0x59AC
1582 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD6_HI 0x59B0
1583 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD6_LO 0x59B4
1584 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD7_HI 0x59B8
1585 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD7_LO 0x59BC
1586 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD8_HI 0x59C0
1587 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD8_LO 0x59C4
1588 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD9_HI 0x59C8
1589 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD9_LO 0x59CC
1590 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD10_HI 0x59D0
1591 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD10_LO 0x59D4
1592 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD11_HI 0x59D8
1593 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD11_LO 0x59DC
1594 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD12_HI 0x59E0
1595 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD12_LO 0x59E4
1596 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD13_HI 0x59E8
1597 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD13_LO 0x59EC
1598 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD14_HI 0x59F0
1599 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD14_LO 0x59F4
1600 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD15_HI 0x59F8
1601 1.1 fvdl #define BGE_LPMBX_TX_NIC_PROD15_LO 0x59FC
1602 1.1 fvdl
1603 1.1 fvdl /*
1604 1.1 fvdl * Flow throw Queue reset register
1605 1.1 fvdl */
1606 1.1 fvdl #define BGE_FTQ_RESET 0x5C00
1607 1.1 fvdl
1608 1.1 fvdl #define BGE_FTQRESET_DMAREAD 0x00000002
1609 1.1 fvdl #define BGE_FTQRESET_DMAHIPRIO_RD 0x00000004
1610 1.1 fvdl #define BGE_FTQRESET_DMADONE 0x00000010
1611 1.1 fvdl #define BGE_FTQRESET_SBDC 0x00000020
1612 1.1 fvdl #define BGE_FTQRESET_SDI 0x00000040
1613 1.1 fvdl #define BGE_FTQRESET_WDMA 0x00000080
1614 1.1 fvdl #define BGE_FTQRESET_DMAHIPRIO_WR 0x00000100
1615 1.1 fvdl #define BGE_FTQRESET_TYPE1_SOFTWARE 0x00000200
1616 1.1 fvdl #define BGE_FTQRESET_SDC 0x00000400
1617 1.1 fvdl #define BGE_FTQRESET_HCC 0x00000800
1618 1.1 fvdl #define BGE_FTQRESET_TXFIFO 0x00001000
1619 1.1 fvdl #define BGE_FTQRESET_MBC 0x00002000
1620 1.1 fvdl #define BGE_FTQRESET_RBDC 0x00004000
1621 1.1 fvdl #define BGE_FTQRESET_RXLP 0x00008000
1622 1.1 fvdl #define BGE_FTQRESET_RDBDI 0x00010000
1623 1.1 fvdl #define BGE_FTQRESET_RDC 0x00020000
1624 1.1 fvdl #define BGE_FTQRESET_TYPE2_SOFTWARE 0x00040000
1625 1.1 fvdl
1626 1.1 fvdl /*
1627 1.1 fvdl * Message Signaled Interrupt registers
1628 1.1 fvdl */
1629 1.1 fvdl #define BGE_MSI_MODE 0x6000
1630 1.1 fvdl #define BGE_MSI_STATUS 0x6004
1631 1.1 fvdl #define BGE_MSI_FIFOACCESS 0x6008
1632 1.1 fvdl
1633 1.1 fvdl /* MSI mode register */
1634 1.1 fvdl #define BGE_MSIMODE_RESET 0x00000001
1635 1.1 fvdl #define BGE_MSIMODE_ENABLE 0x00000002
1636 1.1 fvdl #define BGE_MSIMODE_PCI_TGT_ABRT_ATTN 0x00000004
1637 1.1 fvdl #define BGE_MSIMODE_PCI_MSTR_ABRT_ATTN 0x00000008
1638 1.1 fvdl #define BGE_MSIMODE_PCI_PERR_ATTN 0x00000010
1639 1.1 fvdl #define BGE_MSIMODE_MSI_FIFOUFLOW_ATTN 0x00000020
1640 1.1 fvdl #define BGE_MSIMODE_MSI_FIFOOFLOW_ATTN 0x00000040
1641 1.1 fvdl
1642 1.1 fvdl /* MSI status register */
1643 1.1 fvdl #define BGE_MSISTAT_PCI_TGT_ABRT_ATTN 0x00000004
1644 1.1 fvdl #define BGE_MSISTAT_PCI_MSTR_ABRT_ATTN 0x00000008
1645 1.1 fvdl #define BGE_MSISTAT_PCI_PERR_ATTN 0x00000010
1646 1.1 fvdl #define BGE_MSISTAT_MSI_FIFOUFLOW_ATTN 0x00000020
1647 1.1 fvdl #define BGE_MSISTAT_MSI_FIFOOFLOW_ATTN 0x00000040
1648 1.1 fvdl
1649 1.1 fvdl
1650 1.1 fvdl /*
1651 1.1 fvdl * DMA Completion registers
1652 1.1 fvdl */
1653 1.1 fvdl #define BGE_DMAC_MODE 0x6400
1654 1.1 fvdl
1655 1.1 fvdl /* DMA Completion mode register */
1656 1.1 fvdl #define BGE_DMACMODE_RESET 0x00000001
1657 1.1 fvdl #define BGE_DMACMODE_ENABLE 0x00000002
1658 1.1 fvdl
1659 1.1 fvdl
1660 1.1 fvdl /*
1661 1.1 fvdl * General control registers.
1662 1.1 fvdl */
1663 1.1 fvdl #define BGE_MODE_CTL 0x6800
1664 1.1 fvdl #define BGE_MISC_CFG 0x6804
1665 1.1 fvdl #define BGE_MISC_LOCAL_CTL 0x6808
1666 1.16 jonathan #define BGE_MISC_TIMER 0x680c
1667 1.1 fvdl #define BGE_EE_ADDR 0x6838
1668 1.1 fvdl #define BGE_EE_DATA 0x683C
1669 1.1 fvdl #define BGE_EE_CTL 0x6840
1670 1.1 fvdl #define BGE_MDI_CTL 0x6844
1671 1.1 fvdl #define BGE_EE_DELAY 0x6848
1672 1.36 tsutsui #define BGE_FASTBOOT_PC 0x6894
1673 1.22 cube /*
1674 1.22 cube * XXX: Those names are made up as I have no documentation about it;
1675 1.22 cube * I only know it is only used in the PCI-Express case.
1676 1.22 cube */
1677 1.22 cube #define BGE_PCIE_CTL0 0x7c00
1678 1.22 cube #define BGE_PCIE_CTL1 0x7e2c
1679 1.28 jonathan /*
1680 1.28 jonathan * TLP Control Register
1681 1.28 jonathan * Applicable to BCM5721 and BCM5751 only
1682 1.28 jonathan */
1683 1.28 jonathan #define BGE_TLP_CONTROL_REG 0x7c00
1684 1.28 jonathan #define BGE_TLP_DATA_FIFO_PROTECT 0x02000000
1685 1.28 jonathan
1686 1.28 jonathan /*
1687 1.28 jonathan * PHY Test Control Register
1688 1.28 jonathan * Applicable to BCM5721 and BCM5751 only
1689 1.28 jonathan */
1690 1.28 jonathan #define BGE_PHY_TEST_CTRL_REG 0x7e2c
1691 1.28 jonathan #define BGE_PHY_PCIE_SCRAM_MODE 0x0020
1692 1.28 jonathan #define BGE_PHY_PCIE_LTASS_MODE 0x0040
1693 1.28 jonathan
1694 1.28 jonathan
1695 1.1 fvdl
1696 1.1 fvdl /* Mode control register */
1697 1.1 fvdl #define BGE_MODECTL_INT_SNDCOAL_ONLY 0x00000001
1698 1.1 fvdl #define BGE_MODECTL_BYTESWAP_NONFRAME 0x00000002
1699 1.1 fvdl #define BGE_MODECTL_WORDSWAP_NONFRAME 0x00000004
1700 1.1 fvdl #define BGE_MODECTL_BYTESWAP_DATA 0x00000010
1701 1.1 fvdl #define BGE_MODECTL_WORDSWAP_DATA 0x00000020
1702 1.1 fvdl #define BGE_MODECTL_NO_FRAME_CRACKING 0x00000200
1703 1.1 fvdl #define BGE_MODECTL_NO_RX_CRC 0x00000400
1704 1.1 fvdl #define BGE_MODECTL_RX_BADFRAMES 0x00000800
1705 1.1 fvdl #define BGE_MODECTL_NO_TX_INTR 0x00002000
1706 1.1 fvdl #define BGE_MODECTL_NO_RX_INTR 0x00004000
1707 1.1 fvdl #define BGE_MODECTL_FORCE_PCI32 0x00008000
1708 1.1 fvdl #define BGE_MODECTL_STACKUP 0x00010000
1709 1.1 fvdl #define BGE_MODECTL_HOST_SEND_BDS 0x00020000
1710 1.1 fvdl #define BGE_MODECTL_TX_NO_PHDR_CSUM 0x00100000
1711 1.1 fvdl #define BGE_MODECTL_RX_NO_PHDR_CSUM 0x00800000
1712 1.1 fvdl #define BGE_MODECTL_TX_ATTN_INTR 0x01000000
1713 1.1 fvdl #define BGE_MODECTL_RX_ATTN_INTR 0x02000000
1714 1.1 fvdl #define BGE_MODECTL_MAC_ATTN_INTR 0x04000000
1715 1.1 fvdl #define BGE_MODECTL_DMA_ATTN_INTR 0x08000000
1716 1.1 fvdl #define BGE_MODECTL_FLOWCTL_ATTN_INTR 0x10000000
1717 1.1 fvdl #define BGE_MODECTL_4X_SENDRING_SZ 0x20000000
1718 1.1 fvdl #define BGE_MODECTL_FW_PROCESS_MCASTS 0x40000000
1719 1.1 fvdl
1720 1.1 fvdl /* Misc. config register */
1721 1.1 fvdl #define BGE_MISCCFG_RESET_CORE_CLOCKS 0x00000001
1722 1.1 fvdl #define BGE_MISCCFG_TIMER_PRESCALER 0x000000FE
1723 1.1 fvdl
1724 1.1 fvdl #define BGE_32BITTIME_66MHZ (0x41 << 1)
1725 1.1 fvdl
1726 1.1 fvdl /* Misc. Local Control */
1727 1.1 fvdl #define BGE_MLC_INTR_STATE 0x00000001
1728 1.1 fvdl #define BGE_MLC_INTR_CLR 0x00000002
1729 1.1 fvdl #define BGE_MLC_INTR_SET 0x00000004
1730 1.1 fvdl #define BGE_MLC_INTR_ONATTN 0x00000008
1731 1.1 fvdl #define BGE_MLC_MISCIO_IN0 0x00000100
1732 1.1 fvdl #define BGE_MLC_MISCIO_IN1 0x00000200
1733 1.1 fvdl #define BGE_MLC_MISCIO_IN2 0x00000400
1734 1.1 fvdl #define BGE_MLC_MISCIO_OUTEN0 0x00000800
1735 1.1 fvdl #define BGE_MLC_MISCIO_OUTEN1 0x00001000
1736 1.1 fvdl #define BGE_MLC_MISCIO_OUTEN2 0x00002000
1737 1.1 fvdl #define BGE_MLC_MISCIO_OUT0 0x00004000
1738 1.1 fvdl #define BGE_MLC_MISCIO_OUT1 0x00008000
1739 1.1 fvdl #define BGE_MLC_MISCIO_OUT2 0x00010000
1740 1.1 fvdl #define BGE_MLC_EXTRAM_ENB 0x00020000
1741 1.1 fvdl #define BGE_MLC_SRAM_SIZE 0x001C0000
1742 1.1 fvdl #define BGE_MLC_BANK_SEL 0x00200000 /* 0 = 2 banks, 1 == 1 */
1743 1.1 fvdl #define BGE_MLC_SSRAM_TYPE 0x00400000 /* 1 = ZBT, 0 = standard */
1744 1.1 fvdl #define BGE_MLC_SSRAM_CYC_DESEL 0x00800000
1745 1.1 fvdl #define BGE_MLC_AUTO_EEPROM 0x01000000
1746 1.1 fvdl
1747 1.1 fvdl #define BGE_SSRAMSIZE_256KB 0x00000000
1748 1.1 fvdl #define BGE_SSRAMSIZE_512KB 0x00040000
1749 1.1 fvdl #define BGE_SSRAMSIZE_1MB 0x00080000
1750 1.1 fvdl #define BGE_SSRAMSIZE_2MB 0x000C0000
1751 1.1 fvdl #define BGE_SSRAMSIZE_4MB 0x00100000
1752 1.1 fvdl #define BGE_SSRAMSIZE_8MB 0x00140000
1753 1.1 fvdl #define BGE_SSRAMSIZE_16M 0x00180000
1754 1.1 fvdl
1755 1.1 fvdl /* EEPROM address register */
1756 1.1 fvdl #define BGE_EEADDR_ADDRESS 0x0000FFFC
1757 1.1 fvdl #define BGE_EEADDR_HALFCLK 0x01FF0000
1758 1.1 fvdl #define BGE_EEADDR_START 0x02000000
1759 1.1 fvdl #define BGE_EEADDR_DEVID 0x1C000000
1760 1.1 fvdl #define BGE_EEADDR_RESET 0x20000000
1761 1.1 fvdl #define BGE_EEADDR_DONE 0x40000000
1762 1.1 fvdl #define BGE_EEADDR_RW 0x80000000 /* 1 = rd, 0 = wr */
1763 1.1 fvdl
1764 1.1 fvdl #define BGE_EEDEVID(x) ((x & 7) << 26)
1765 1.1 fvdl #define BGE_EEHALFCLK(x) ((x & 0x1FF) << 16)
1766 1.1 fvdl #define BGE_HALFCLK_384SCL 0x60
1767 1.1 fvdl #define BGE_EE_READCMD \
1768 1.1 fvdl (BGE_EEHALFCLK(BGE_HALFCLK_384SCL)|BGE_EEDEVID(0)| \
1769 1.1 fvdl BGE_EEADDR_START|BGE_EEADDR_RW|BGE_EEADDR_DONE)
1770 1.1 fvdl #define BGE_EE_WRCMD \
1771 1.1 fvdl (BGE_EEHALFCLK(BGE_HALFCLK_384SCL)|BGE_EEDEVID(0)| \
1772 1.1 fvdl BGE_EEADDR_START|BGE_EEADDR_DONE)
1773 1.1 fvdl
1774 1.1 fvdl /* EEPROM Control register */
1775 1.1 fvdl #define BGE_EECTL_CLKOUT_TRISTATE 0x00000001
1776 1.1 fvdl #define BGE_EECTL_CLKOUT 0x00000002
1777 1.1 fvdl #define BGE_EECTL_CLKIN 0x00000004
1778 1.1 fvdl #define BGE_EECTL_DATAOUT_TRISTATE 0x00000008
1779 1.1 fvdl #define BGE_EECTL_DATAOUT 0x00000010
1780 1.1 fvdl #define BGE_EECTL_DATAIN 0x00000020
1781 1.1 fvdl
1782 1.1 fvdl /* MDI (MII/GMII) access register */
1783 1.1 fvdl #define BGE_MDI_DATA 0x00000001
1784 1.1 fvdl #define BGE_MDI_DIR 0x00000002
1785 1.1 fvdl #define BGE_MDI_SEL 0x00000004
1786 1.1 fvdl #define BGE_MDI_CLK 0x00000008
1787 1.1 fvdl
1788 1.1 fvdl #define BGE_MEMWIN_START 0x00008000
1789 1.1 fvdl #define BGE_MEMWIN_END 0x0000FFFF
1790 1.1 fvdl
1791 1.1 fvdl
1792 1.1 fvdl #define BGE_MEMWIN_READ(pc, tag, x, val) \
1793 1.1 fvdl do { \
1794 1.1 fvdl pci_conf_write(pc, tag, BGE_PCI_MEMWIN_BASEADDR, \
1795 1.1 fvdl (0xFFFF0000 & x)); \
1796 1.1 fvdl val = CSR_READ_4(sc, BGE_MEMWIN_START + (x & 0xFFFF)); \
1797 1.1 fvdl } while(0)
1798 1.1 fvdl
1799 1.1 fvdl #define BGE_MEMWIN_WRITE(pc, tag, x, val) \
1800 1.1 fvdl do { \
1801 1.1 fvdl pci_conf_write(pc, tag, BGE_PCI_MEMWIN_BASEADDR, \
1802 1.1 fvdl (0xFFFF0000 & x)); \
1803 1.1 fvdl CSR_WRITE_4(sc, BGE_MEMWIN_START + (x & 0xFFFF), val); \
1804 1.1 fvdl } while(0)
1805 1.1 fvdl
1806 1.1 fvdl /*
1807 1.1 fvdl * This magic number is used to prevent PXE restart when we
1808 1.1 fvdl * issue a software reset. We write this magic number to the
1809 1.1 fvdl * firmware mailbox at 0xB50 in order to prevent the PXE boot
1810 1.1 fvdl * code from running.
1811 1.1 fvdl */
1812 1.37 tsutsui #define BGE_MAGIC_NUMBER 0x4B657654
1813 1.1 fvdl
1814 1.1 fvdl typedef struct {
1815 1.35 tsutsui volatile u_int32_t bge_addr_hi;
1816 1.35 tsutsui volatile u_int32_t bge_addr_lo;
1817 1.1 fvdl } bge_hostaddr;
1818 1.1 fvdl
1819 1.33 perry static __inline void
1820 1.7 jonathan bge_set_hostaddr(volatile bge_hostaddr *x, bus_addr_t y)
1821 1.1 fvdl {
1822 1.1 fvdl x->bge_addr_lo = y & 0xffffffff;
1823 1.1 fvdl if (sizeof (bus_addr_t) == 8)
1824 1.1 fvdl x->bge_addr_hi = (u_int64_t)y >> 32;
1825 1.1 fvdl else
1826 1.1 fvdl x->bge_addr_hi = 0;
1827 1.1 fvdl }
1828 1.1 fvdl
1829 1.1 fvdl /* Ring control block structure */
1830 1.1 fvdl struct bge_rcb {
1831 1.1 fvdl bge_hostaddr bge_hostaddr;
1832 1.35 tsutsui volatile u_int32_t bge_maxlen_flags; /* two 16-bit fields */
1833 1.35 tsutsui volatile u_int32_t bge_nicaddr;
1834 1.7 jonathan };
1835 1.7 jonathan
1836 1.7 jonathan #define BGE_RCB_MAXLEN_FLAGS(maxlen, flags) ((maxlen) << 16 | (flags))
1837 1.1 fvdl
1838 1.1 fvdl #define RCB_WRITE_4(sc, rcb, offset, val) \
1839 1.1 fvdl bus_space_write_4(sc->bge_btag, sc->bge_bhandle, \
1840 1.1 fvdl rcb + offsetof(struct bge_rcb, offset), val)
1841 1.1 fvdl
1842 1.1 fvdl
1843 1.1 fvdl #define BGE_RCB_FLAG_USE_EXT_RX_BD 0x0001
1844 1.1 fvdl #define BGE_RCB_FLAG_RING_DISABLED 0x0002
1845 1.1 fvdl
1846 1.1 fvdl struct bge_tx_bd {
1847 1.1 fvdl bge_hostaddr bge_addr;
1848 1.1 fvdl #if BYTE_ORDER == BIG_ENDIAN
1849 1.35 tsutsui volatile u_int16_t bge_len;
1850 1.35 tsutsui volatile u_int16_t bge_flags;
1851 1.35 tsutsui volatile u_int16_t bge_rsvd;
1852 1.35 tsutsui volatile u_int16_t bge_vlan_tag;
1853 1.1 fvdl #else
1854 1.35 tsutsui volatile u_int16_t bge_flags;
1855 1.35 tsutsui volatile u_int16_t bge_len;
1856 1.35 tsutsui volatile u_int16_t bge_vlan_tag;
1857 1.35 tsutsui volatile u_int16_t bge_rsvd;
1858 1.1 fvdl #endif
1859 1.1 fvdl };
1860 1.1 fvdl
1861 1.1 fvdl #define BGE_TXBDFLAG_TCP_UDP_CSUM 0x0001
1862 1.1 fvdl #define BGE_TXBDFLAG_IP_CSUM 0x0002
1863 1.1 fvdl #define BGE_TXBDFLAG_END 0x0004
1864 1.1 fvdl #define BGE_TXBDFLAG_IP_FRAG 0x0008
1865 1.1 fvdl #define BGE_TXBDFLAG_IP_FRAG_END 0x0010
1866 1.1 fvdl #define BGE_TXBDFLAG_VLAN_TAG 0x0040
1867 1.1 fvdl #define BGE_TXBDFLAG_COAL_NOW 0x0080
1868 1.1 fvdl #define BGE_TXBDFLAG_CPU_PRE_DMA 0x0100
1869 1.1 fvdl #define BGE_TXBDFLAG_CPU_POST_DMA 0x0200
1870 1.1 fvdl #define BGE_TXBDFLAG_INSERT_SRC_ADDR 0x1000
1871 1.1 fvdl #define BGE_TXBDFLAG_CHOOSE_SRC_ADDR 0x6000
1872 1.1 fvdl #define BGE_TXBDFLAG_NO_CRC 0x8000
1873 1.1 fvdl
1874 1.1 fvdl #define BGE_NIC_TXRING_ADDR(ringno, size) \
1875 1.1 fvdl BGE_SEND_RING_1_TO_4 + \
1876 1.1 fvdl ((ringno * sizeof(struct bge_tx_bd) * size) / 4)
1877 1.1 fvdl
1878 1.1 fvdl struct bge_rx_bd {
1879 1.1 fvdl bge_hostaddr bge_addr;
1880 1.1 fvdl #if BYTE_ORDER == BIG_ENDIAN
1881 1.35 tsutsui volatile u_int16_t bge_idx;
1882 1.35 tsutsui volatile u_int16_t bge_len;
1883 1.35 tsutsui volatile u_int16_t bge_type;
1884 1.35 tsutsui volatile u_int16_t bge_flags;
1885 1.35 tsutsui volatile u_int16_t bge_ip_csum;
1886 1.35 tsutsui volatile u_int16_t bge_tcp_udp_csum;
1887 1.35 tsutsui volatile u_int16_t bge_error_flag;
1888 1.35 tsutsui volatile u_int16_t bge_vlan_tag;
1889 1.1 fvdl #else
1890 1.35 tsutsui volatile u_int16_t bge_len;
1891 1.35 tsutsui volatile u_int16_t bge_idx;
1892 1.35 tsutsui volatile u_int16_t bge_flags;
1893 1.35 tsutsui volatile u_int16_t bge_type;
1894 1.35 tsutsui volatile u_int16_t bge_tcp_udp_csum;
1895 1.35 tsutsui volatile u_int16_t bge_ip_csum;
1896 1.35 tsutsui volatile u_int16_t bge_vlan_tag;
1897 1.35 tsutsui volatile u_int16_t bge_error_flag;
1898 1.1 fvdl #endif
1899 1.35 tsutsui volatile u_int32_t bge_rsvd;
1900 1.35 tsutsui volatile u_int32_t bge_opaque;
1901 1.1 fvdl };
1902 1.1 fvdl
1903 1.1 fvdl #define BGE_RXBDFLAG_END 0x0004
1904 1.1 fvdl #define BGE_RXBDFLAG_JUMBO_RING 0x0020
1905 1.1 fvdl #define BGE_RXBDFLAG_VLAN_TAG 0x0040
1906 1.1 fvdl #define BGE_RXBDFLAG_ERROR 0x0400
1907 1.1 fvdl #define BGE_RXBDFLAG_MINI_RING 0x0800
1908 1.1 fvdl #define BGE_RXBDFLAG_IP_CSUM 0x1000
1909 1.1 fvdl #define BGE_RXBDFLAG_TCP_UDP_CSUM 0x2000
1910 1.1 fvdl #define BGE_RXBDFLAG_TCP_UDP_IS_TCP 0x4000
1911 1.1 fvdl
1912 1.1 fvdl #define BGE_RXERRFLAG_BAD_CRC 0x0001
1913 1.1 fvdl #define BGE_RXERRFLAG_COLL_DETECT 0x0002
1914 1.1 fvdl #define BGE_RXERRFLAG_LINK_LOST 0x0004
1915 1.1 fvdl #define BGE_RXERRFLAG_PHY_DECODE_ERR 0x0008
1916 1.1 fvdl #define BGE_RXERRFLAG_MAC_ABORT 0x0010
1917 1.1 fvdl #define BGE_RXERRFLAG_RUNT 0x0020
1918 1.1 fvdl #define BGE_RXERRFLAG_TRUNC_NO_RSRCS 0x0040
1919 1.1 fvdl #define BGE_RXERRFLAG_GIANT 0x0080
1920 1.1 fvdl
1921 1.1 fvdl struct bge_sts_idx {
1922 1.1 fvdl #if BYTE_ORDER == BIG_ENDIAN
1923 1.35 tsutsui volatile u_int16_t bge_tx_cons_idx;
1924 1.35 tsutsui volatile u_int16_t bge_rx_prod_idx;
1925 1.1 fvdl #else
1926 1.35 tsutsui volatile u_int16_t bge_rx_prod_idx;
1927 1.35 tsutsui volatile u_int16_t bge_tx_cons_idx;
1928 1.1 fvdl #endif
1929 1.1 fvdl };
1930 1.1 fvdl
1931 1.1 fvdl struct bge_status_block {
1932 1.35 tsutsui volatile u_int32_t bge_status;
1933 1.35 tsutsui volatile u_int32_t bge_rsvd0;
1934 1.1 fvdl #if BYTE_ORDER == BIG_ENDIAN
1935 1.35 tsutsui volatile u_int16_t bge_rx_std_cons_idx;
1936 1.35 tsutsui volatile u_int16_t bge_rx_jumbo_cons_idx;
1937 1.35 tsutsui volatile u_int16_t bge_rsvd1;
1938 1.35 tsutsui volatile u_int16_t bge_rx_mini_cons_idx;
1939 1.1 fvdl #else
1940 1.35 tsutsui volatile u_int16_t bge_rx_jumbo_cons_idx;
1941 1.35 tsutsui volatile u_int16_t bge_rx_std_cons_idx;
1942 1.35 tsutsui volatile u_int16_t bge_rx_mini_cons_idx;
1943 1.35 tsutsui volatile u_int16_t bge_rsvd1;
1944 1.1 fvdl #endif
1945 1.1 fvdl struct bge_sts_idx bge_idx[16];
1946 1.1 fvdl };
1947 1.1 fvdl
1948 1.1 fvdl #define BGE_TX_CONSIDX(x, i) x->bge_idx[i].bge_tx_considx
1949 1.1 fvdl #define BGE_RX_PRODIDX(x, i) x->bge_idx[i].bge_rx_prodidx
1950 1.1 fvdl
1951 1.1 fvdl #define BGE_STATFLAG_UPDATED 0x00000001
1952 1.1 fvdl #define BGE_STATFLAG_LINKSTATE_CHANGED 0x00000002
1953 1.1 fvdl #define BGE_STATFLAG_ERROR 0x00000004
1954 1.1 fvdl
1955 1.1 fvdl
1956 1.1 fvdl /*
1957 1.1 fvdl * Broadcom Vendor ID
1958 1.1 fvdl * (Note: the BCM570x still defaults to the Alteon PCI vendor ID
1959 1.1 fvdl * even though they're now manufactured by Broadcom)
1960 1.1 fvdl */
1961 1.1 fvdl #define BCOM_VENDORID 0x14E4
1962 1.1 fvdl #define BCOM_DEVICEID_BCM5700 0x1644
1963 1.1 fvdl #define BCOM_DEVICEID_BCM5701 0x1645
1964 1.34 christos #define BCOM_DEVICEID_BCM5789 0x169d
1965 1.1 fvdl
1966 1.1 fvdl /*
1967 1.1 fvdl * Alteon AceNIC PCI vendor/device ID.
1968 1.1 fvdl */
1969 1.1 fvdl #define ALT_VENDORID 0x12AE
1970 1.1 fvdl #define ALT_DEVICEID_ACENIC 0x0001
1971 1.1 fvdl #define ALT_DEVICEID_ACENIC_COPPER 0x0002
1972 1.1 fvdl #define ALT_DEVICEID_BCM5700 0x0003
1973 1.1 fvdl #define ALT_DEVICEID_BCM5701 0x0004
1974 1.1 fvdl
1975 1.1 fvdl /*
1976 1.1 fvdl * 3Com 3c985 PCI vendor/device ID.
1977 1.1 fvdl */
1978 1.1 fvdl #define TC_VENDORID 0x10B7
1979 1.1 fvdl #define TC_DEVICEID_3C985 0x0001
1980 1.1 fvdl #define TC_DEVICEID_3C996 0x0003
1981 1.1 fvdl
1982 1.1 fvdl /*
1983 1.1 fvdl * SysKonnect PCI vendor ID
1984 1.1 fvdl */
1985 1.1 fvdl #define SK_VENDORID 0x1148
1986 1.1 fvdl #define SK_DEVICEID_ALTIMA 0x4400
1987 1.1 fvdl #define SK_SUBSYSID_9D21 0x4421
1988 1.1 fvdl #define SK_SUBSYSID_9D41 0x4441
1989 1.1 fvdl
1990 1.1 fvdl /*
1991 1.1 fvdl * Altima PCI vendor/device ID.
1992 1.1 fvdl */
1993 1.1 fvdl #define ALTIMA_VENDORID 0x173b
1994 1.1 fvdl #define ALTIMA_DEVICE_AC1000 0x03e8
1995 1.1 fvdl
1996 1.1 fvdl /*
1997 1.1 fvdl * Offset of MAC address inside EEPROM.
1998 1.1 fvdl */
1999 1.1 fvdl #define BGE_EE_MAC_OFFSET 0x7C
2000 1.1 fvdl #define BGE_EE_HWCFG_OFFSET 0xC8
2001 1.1 fvdl
2002 1.1 fvdl #define BGE_HWCFG_VOLTAGE 0x00000003
2003 1.1 fvdl #define BGE_HWCFG_PHYLED_MODE 0x0000000C
2004 1.1 fvdl #define BGE_HWCFG_MEDIA 0x00000030
2005 1.1 fvdl
2006 1.1 fvdl #define BGE_VOLTAGE_1POINT3 0x00000000
2007 1.1 fvdl #define BGE_VOLTAGE_1POINT8 0x00000001
2008 1.1 fvdl
2009 1.1 fvdl #define BGE_PHYLEDMODE_UNSPEC 0x00000000
2010 1.1 fvdl #define BGE_PHYLEDMODE_TRIPLELED 0x00000004
2011 1.1 fvdl #define BGE_PHYLEDMODE_SINGLELED 0x00000008
2012 1.1 fvdl
2013 1.1 fvdl #define BGE_MEDIA_UNSPEC 0x00000000
2014 1.1 fvdl #define BGE_MEDIA_COPPER 0x00000010
2015 1.1 fvdl #define BGE_MEDIA_FIBER 0x00000020
2016 1.1 fvdl
2017 1.1 fvdl #define BGE_PCI_READ_CMD 0x06000000
2018 1.1 fvdl #define BGE_PCI_WRITE_CMD 0x70000000
2019 1.1 fvdl
2020 1.1 fvdl #define BGE_TICKS_PER_SEC 1000000
2021 1.1 fvdl
2022 1.1 fvdl /*
2023 1.1 fvdl * Ring size constants.
2024 1.1 fvdl */
2025 1.1 fvdl #define BGE_EVENT_RING_CNT 256
2026 1.1 fvdl #define BGE_CMD_RING_CNT 64
2027 1.1 fvdl #define BGE_STD_RX_RING_CNT 512
2028 1.1 fvdl #define BGE_JUMBO_RX_RING_CNT 256
2029 1.1 fvdl #define BGE_MINI_RX_RING_CNT 1024
2030 1.1 fvdl #define BGE_RETURN_RING_CNT 1024
2031 1.11 hannken #define BGE_RETURN_RING_CNT_5705 512
2032 1.1 fvdl
2033 1.1 fvdl /*
2034 1.1 fvdl * Possible TX ring sizes.
2035 1.1 fvdl */
2036 1.1 fvdl #define BGE_TX_RING_CNT_128 128
2037 1.1 fvdl #define BGE_TX_RING_BASE_128 0x3800
2038 1.1 fvdl
2039 1.1 fvdl #define BGE_TX_RING_CNT_256 256
2040 1.1 fvdl #define BGE_TX_RING_BASE_256 0x3000
2041 1.1 fvdl
2042 1.1 fvdl #define BGE_TX_RING_CNT_512 512
2043 1.1 fvdl #define BGE_TX_RING_BASE_512 0x2000
2044 1.1 fvdl
2045 1.1 fvdl #define BGE_TX_RING_CNT BGE_TX_RING_CNT_512
2046 1.1 fvdl #define BGE_TX_RING_BASE BGE_TX_RING_BASE_512
2047 1.1 fvdl
2048 1.1 fvdl /*
2049 1.1 fvdl * Tigon III statistics counters.
2050 1.1 fvdl */
2051 1.11 hannken
2052 1.11 hannken /* Stats counters access through registers */
2053 1.11 hannken struct bge_mac_stats_regs {
2054 1.11 hannken u_int32_t ifHCOutOctets;
2055 1.11 hannken u_int32_t Reserved0;
2056 1.11 hannken u_int32_t etherStatsCollisions;
2057 1.11 hannken u_int32_t outXonSent;
2058 1.11 hannken u_int32_t outXoffSent;
2059 1.11 hannken u_int32_t Reserved1;
2060 1.11 hannken u_int32_t dot3StatsInternalMacTransmitErrors;
2061 1.11 hannken u_int32_t dot3StatsSingleCollisionFrames;
2062 1.11 hannken u_int32_t dot3StatsMultipleCollisionFrames;
2063 1.11 hannken u_int32_t dot3StatsDeferredTransmissions;
2064 1.11 hannken u_int32_t Reserved2;
2065 1.11 hannken u_int32_t dot3StatsExcessiveCollisions;
2066 1.11 hannken u_int32_t dot3StatsLateCollisions;
2067 1.11 hannken u_int32_t Reserved3[14];
2068 1.11 hannken u_int32_t ifHCOutUcastPkts;
2069 1.11 hannken u_int32_t ifHCOutMulticastPkts;
2070 1.11 hannken u_int32_t ifHCOutBroadcastPkts;
2071 1.11 hannken u_int32_t Reserved4[2];
2072 1.11 hannken u_int32_t ifHCInOctets;
2073 1.11 hannken u_int32_t Reserved5;
2074 1.11 hannken u_int32_t etherStatsFragments;
2075 1.11 hannken u_int32_t ifHCInUcastPkts;
2076 1.11 hannken u_int32_t ifHCInMulticastPkts;
2077 1.11 hannken u_int32_t ifHCInBroadcastPkts;
2078 1.11 hannken u_int32_t dot3StatsFCSErrors;
2079 1.11 hannken u_int32_t dot3StatsAlignmentErrors;
2080 1.11 hannken u_int32_t xonPauseFramesReceived;
2081 1.11 hannken u_int32_t xoffPauseFramesReceived;
2082 1.11 hannken u_int32_t macControlFramesReceived;
2083 1.11 hannken u_int32_t xoffStateEntered;
2084 1.11 hannken u_int32_t dot3StatsFramesTooLong;
2085 1.11 hannken u_int32_t etherStatsJabbers;
2086 1.11 hannken u_int32_t etherStatsUndersizePkts;
2087 1.11 hannken };
2088 1.11 hannken
2089 1.1 fvdl struct bge_stats {
2090 1.1 fvdl u_int8_t Reserved0[256];
2091 1.1 fvdl
2092 1.1 fvdl /* Statistics maintained by Receive MAC. */
2093 1.1 fvdl bge_hostaddr ifHCInOctets;
2094 1.1 fvdl bge_hostaddr Reserved1;
2095 1.1 fvdl bge_hostaddr etherStatsFragments;
2096 1.1 fvdl bge_hostaddr ifHCInUcastPkts;
2097 1.1 fvdl bge_hostaddr ifHCInMulticastPkts;
2098 1.1 fvdl bge_hostaddr ifHCInBroadcastPkts;
2099 1.1 fvdl bge_hostaddr dot3StatsFCSErrors;
2100 1.1 fvdl bge_hostaddr dot3StatsAlignmentErrors;
2101 1.1 fvdl bge_hostaddr xonPauseFramesReceived;
2102 1.1 fvdl bge_hostaddr xoffPauseFramesReceived;
2103 1.1 fvdl bge_hostaddr macControlFramesReceived;
2104 1.1 fvdl bge_hostaddr xoffStateEntered;
2105 1.1 fvdl bge_hostaddr dot3StatsFramesTooLong;
2106 1.1 fvdl bge_hostaddr etherStatsJabbers;
2107 1.1 fvdl bge_hostaddr etherStatsUndersizePkts;
2108 1.1 fvdl bge_hostaddr inRangeLengthError;
2109 1.1 fvdl bge_hostaddr outRangeLengthError;
2110 1.1 fvdl bge_hostaddr etherStatsPkts64Octets;
2111 1.1 fvdl bge_hostaddr etherStatsPkts65Octetsto127Octets;
2112 1.1 fvdl bge_hostaddr etherStatsPkts128Octetsto255Octets;
2113 1.1 fvdl bge_hostaddr etherStatsPkts256Octetsto511Octets;
2114 1.1 fvdl bge_hostaddr etherStatsPkts512Octetsto1023Octets;
2115 1.1 fvdl bge_hostaddr etherStatsPkts1024Octetsto1522Octets;
2116 1.1 fvdl bge_hostaddr etherStatsPkts1523Octetsto2047Octets;
2117 1.1 fvdl bge_hostaddr etherStatsPkts2048Octetsto4095Octets;
2118 1.1 fvdl bge_hostaddr etherStatsPkts4096Octetsto8191Octets;
2119 1.1 fvdl bge_hostaddr etherStatsPkts8192Octetsto9022Octets;
2120 1.1 fvdl
2121 1.1 fvdl bge_hostaddr Unused1[37];
2122 1.1 fvdl
2123 1.1 fvdl /* Statistics maintained by Transmit MAC. */
2124 1.1 fvdl bge_hostaddr ifHCOutOctets;
2125 1.1 fvdl bge_hostaddr Reserved2;
2126 1.1 fvdl bge_hostaddr etherStatsCollisions;
2127 1.1 fvdl bge_hostaddr outXonSent;
2128 1.1 fvdl bge_hostaddr outXoffSent;
2129 1.1 fvdl bge_hostaddr flowControlDone;
2130 1.1 fvdl bge_hostaddr dot3StatsInternalMacTransmitErrors;
2131 1.1 fvdl bge_hostaddr dot3StatsSingleCollisionFrames;
2132 1.1 fvdl bge_hostaddr dot3StatsMultipleCollisionFrames;
2133 1.1 fvdl bge_hostaddr dot3StatsDeferredTransmissions;
2134 1.1 fvdl bge_hostaddr Reserved3;
2135 1.1 fvdl bge_hostaddr dot3StatsExcessiveCollisions;
2136 1.1 fvdl bge_hostaddr dot3StatsLateCollisions;
2137 1.1 fvdl bge_hostaddr dot3Collided2Times;
2138 1.1 fvdl bge_hostaddr dot3Collided3Times;
2139 1.1 fvdl bge_hostaddr dot3Collided4Times;
2140 1.1 fvdl bge_hostaddr dot3Collided5Times;
2141 1.1 fvdl bge_hostaddr dot3Collided6Times;
2142 1.1 fvdl bge_hostaddr dot3Collided7Times;
2143 1.1 fvdl bge_hostaddr dot3Collided8Times;
2144 1.1 fvdl bge_hostaddr dot3Collided9Times;
2145 1.1 fvdl bge_hostaddr dot3Collided10Times;
2146 1.1 fvdl bge_hostaddr dot3Collided11Times;
2147 1.1 fvdl bge_hostaddr dot3Collided12Times;
2148 1.1 fvdl bge_hostaddr dot3Collided13Times;
2149 1.1 fvdl bge_hostaddr dot3Collided14Times;
2150 1.1 fvdl bge_hostaddr dot3Collided15Times;
2151 1.1 fvdl bge_hostaddr ifHCOutUcastPkts;
2152 1.1 fvdl bge_hostaddr ifHCOutMulticastPkts;
2153 1.1 fvdl bge_hostaddr ifHCOutBroadcastPkts;
2154 1.1 fvdl bge_hostaddr dot3StatsCarrierSenseErrors;
2155 1.1 fvdl bge_hostaddr ifOutDiscards;
2156 1.1 fvdl bge_hostaddr ifOutErrors;
2157 1.1 fvdl
2158 1.1 fvdl bge_hostaddr Unused2[31];
2159 1.1 fvdl
2160 1.1 fvdl /* Statistics maintained by Receive List Placement. */
2161 1.1 fvdl bge_hostaddr COSIfHCInPkts[16];
2162 1.1 fvdl bge_hostaddr COSFramesDroppedDueToFilters;
2163 1.1 fvdl bge_hostaddr nicDmaWriteQueueFull;
2164 1.1 fvdl bge_hostaddr nicDmaWriteHighPriQueueFull;
2165 1.1 fvdl bge_hostaddr nicNoMoreRxBDs;
2166 1.1 fvdl bge_hostaddr ifInDiscards;
2167 1.1 fvdl bge_hostaddr ifInErrors;
2168 1.1 fvdl bge_hostaddr nicRecvThresholdHit;
2169 1.1 fvdl
2170 1.1 fvdl bge_hostaddr Unused3[9];
2171 1.1 fvdl
2172 1.1 fvdl /* Statistics maintained by Send Data Initiator. */
2173 1.1 fvdl bge_hostaddr COSIfHCOutPkts[16];
2174 1.1 fvdl bge_hostaddr nicDmaReadQueueFull;
2175 1.1 fvdl bge_hostaddr nicDmaReadHighPriQueueFull;
2176 1.1 fvdl bge_hostaddr nicSendDataCompQueueFull;
2177 1.1 fvdl
2178 1.1 fvdl /* Statistics maintained by Host Coalescing. */
2179 1.1 fvdl bge_hostaddr nicRingSetSendProdIndex;
2180 1.1 fvdl bge_hostaddr nicRingStatusUpdate;
2181 1.1 fvdl bge_hostaddr nicInterrupts;
2182 1.1 fvdl bge_hostaddr nicAvoidedInterrupts;
2183 1.1 fvdl bge_hostaddr nicSendThresholdHit;
2184 1.1 fvdl
2185 1.1 fvdl u_int8_t Reserved4[320];
2186 1.1 fvdl };
2187 1.1 fvdl
2188 1.1 fvdl /*
2189 1.1 fvdl * Tigon general information block. This resides in host memory
2190 1.1 fvdl * and contains the status counters, ring control blocks and
2191 1.1 fvdl * producer pointers.
2192 1.1 fvdl */
2193 1.1 fvdl
2194 1.1 fvdl struct bge_gib {
2195 1.1 fvdl struct bge_stats bge_stats;
2196 1.1 fvdl struct bge_rcb bge_tx_rcb[16];
2197 1.1 fvdl struct bge_rcb bge_std_rx_rcb;
2198 1.1 fvdl struct bge_rcb bge_jumbo_rx_rcb;
2199 1.1 fvdl struct bge_rcb bge_mini_rx_rcb;
2200 1.1 fvdl struct bge_rcb bge_return_rcb;
2201 1.1 fvdl };
2202 1.1 fvdl
2203 1.1 fvdl /*
2204 1.1 fvdl * NOTE! On the Alpha, we have an alignment constraint.
2205 1.1 fvdl * The first thing in the packet is a 14-byte Ethernet header.
2206 1.1 fvdl * This means that the packet is misaligned. To compensate,
2207 1.1 fvdl * we actually offset the data 2 bytes into the cluster. This
2208 1.1 fvdl * alignes the packet after the Ethernet header at a 32-bit
2209 1.1 fvdl * boundary.
2210 1.1 fvdl */
2211 1.1 fvdl
2212 1.1 fvdl #define ETHER_ALIGN 2
2213 1.1 fvdl
2214 1.1 fvdl #define BGE_FRAMELEN ETHER_MAX_LEN
2215 1.1 fvdl #define BGE_MAX_FRAMELEN (ETHER_MAX_LEN + ETHER_HDR_LEN + ETHER_CRC_LEN)
2216 1.1 fvdl #define BGE_JUMBO_FRAMELEN ETHER_MAX_LEN_JUMBO
2217 1.1 fvdl #define BGE_JUMBO_MTU (BGE_JUMBO_FRAMELEN-ETHER_HDR_LEN-ETHER_CRC_LEN)
2218 1.1 fvdl #define BGE_PAGE_SIZE PAGE_SIZE
2219 1.1 fvdl #define BGE_MIN_FRAMELEN 60
2220 1.1 fvdl
2221 1.1 fvdl /*
2222 1.1 fvdl * Other utility macros.
2223 1.1 fvdl */
2224 1.1 fvdl #define BGE_INC(x, y) (x) = (x + 1) % y
2225 1.1 fvdl
2226 1.1 fvdl /*
2227 1.1 fvdl * Vital product data and structures.
2228 1.1 fvdl */
2229 1.1 fvdl #define BGE_VPD_FLAG 0x8000
2230 1.24 perry
2231 1.1 fvdl /* VPD structures */
2232 1.1 fvdl struct vpd_res {
2233 1.1 fvdl u_int8_t vr_id;
2234 1.1 fvdl u_int8_t vr_len;
2235 1.1 fvdl u_int8_t vr_pad;
2236 1.1 fvdl };
2237 1.24 perry
2238 1.1 fvdl struct vpd_key {
2239 1.1 fvdl char vk_key[2];
2240 1.1 fvdl u_int8_t vk_len;
2241 1.1 fvdl };
2242 1.24 perry
2243 1.1 fvdl #define VPD_RES_ID 0x82 /* ID string */
2244 1.1 fvdl #define VPD_RES_READ 0x90 /* start of read only area */
2245 1.1 fvdl #define VPD_RES_WRITE 0x81 /* start of read/write area */
2246 1.1 fvdl #define VPD_RES_END 0x78 /* end tag */
2247 1.1 fvdl
2248 1.1 fvdl
2249 1.1 fvdl /*
2250 1.1 fvdl * Register access macros. The Tigon always uses memory mapped register
2251 1.1 fvdl * accesses and all registers must be accessed with 32 bit operations.
2252 1.1 fvdl */
2253 1.1 fvdl
2254 1.1 fvdl #define CSR_WRITE_4(sc, reg, val) \
2255 1.1 fvdl bus_space_write_4(sc->bge_btag, sc->bge_bhandle, reg, val)
2256 1.1 fvdl
2257 1.1 fvdl #define CSR_READ_4(sc, reg) \
2258 1.1 fvdl bus_space_read_4(sc->bge_btag, sc->bge_bhandle, reg)
2259 1.1 fvdl
2260 1.1 fvdl #define BGE_SETBIT(sc, reg, x) \
2261 1.1 fvdl CSR_WRITE_4(sc, reg, (CSR_READ_4(sc, reg) | x))
2262 1.1 fvdl #define BGE_CLRBIT(sc, reg, x) \
2263 1.1 fvdl CSR_WRITE_4(sc, reg, (CSR_READ_4(sc, reg) & ~x))
2264 1.1 fvdl
2265 1.1 fvdl #define PCI_SETBIT(pc, tag, reg, x) \
2266 1.1 fvdl pci_conf_write(pc, tag, reg, (pci_conf_read(pc, tag, reg) | x))
2267 1.1 fvdl #define PCI_CLRBIT(pc, tag, reg, x) \
2268 1.1 fvdl pci_conf_write(pc, tag, reg, (pci_conf_read(pc, tag, reg) & ~x))
2269 1.1 fvdl
2270 1.1 fvdl /*
2271 1.1 fvdl * Memory management stuff. Note: the SSLOTS, MSLOTS and JSLOTS
2272 1.1 fvdl * values are tuneable. They control the actual amount of buffers
2273 1.1 fvdl * allocated for the standard, mini and jumbo receive rings.
2274 1.1 fvdl */
2275 1.1 fvdl
2276 1.1 fvdl #define BGE_SSLOTS 256
2277 1.1 fvdl #define BGE_MSLOTS 256
2278 1.1 fvdl #define BGE_JSLOTS 384
2279 1.1 fvdl #define BGE_RSLOTS 256
2280 1.1 fvdl
2281 1.1 fvdl #define BGE_JRAWLEN (BGE_JUMBO_FRAMELEN + ETHER_ALIGN)
2282 1.1 fvdl #define BGE_JLEN (BGE_JRAWLEN + (sizeof(u_int64_t) - \
2283 1.1 fvdl (BGE_JRAWLEN % sizeof(u_int64_t))))
2284 1.1 fvdl #define BGE_JPAGESZ PAGE_SIZE
2285 1.1 fvdl #define BGE_RESID (BGE_JPAGESZ - (BGE_JLEN * BGE_JSLOTS) % BGE_JPAGESZ)
2286 1.1 fvdl #define BGE_JMEM ((BGE_JLEN * BGE_JSLOTS) + BGE_RESID)
2287 1.1 fvdl
2288 1.1 fvdl /*
2289 1.1 fvdl * Ring structures. Most of these reside in host memory and we tell
2290 1.1 fvdl * the NIC where they are via the ring control blocks. The exceptions
2291 1.1 fvdl * are the tx and command rings, which live in NIC memory and which
2292 1.1 fvdl * we access via the shared memory window.
2293 1.1 fvdl */
2294 1.1 fvdl struct bge_ring_data {
2295 1.1 fvdl struct bge_rx_bd bge_rx_std_ring[BGE_STD_RX_RING_CNT];
2296 1.1 fvdl struct bge_rx_bd bge_rx_jumbo_ring[BGE_JUMBO_RX_RING_CNT];
2297 1.1 fvdl struct bge_rx_bd bge_rx_return_ring[BGE_RETURN_RING_CNT];
2298 1.1 fvdl struct bge_tx_bd bge_tx_ring[BGE_TX_RING_CNT];
2299 1.1 fvdl struct bge_status_block bge_status_block;
2300 1.1 fvdl struct bge_tx_desc *bge_tx_ring_nic;/* pointer to shared mem */
2301 1.1 fvdl struct bge_cmd_desc *bge_cmd_ring; /* pointer to shared mem */
2302 1.1 fvdl struct bge_gib bge_info;
2303 1.1 fvdl };
2304 1.1 fvdl
2305 1.1 fvdl #define BGE_RING_DMA_ADDR(sc, offset) \
2306 1.1 fvdl ((sc)->bge_ring_map->dm_segs[0].ds_addr + \
2307 1.1 fvdl offsetof(struct bge_ring_data, offset))
2308 1.1 fvdl
2309 1.1 fvdl /*
2310 1.1 fvdl * Number of DMA segments in a TxCB. Note that this is carefully
2311 1.1 fvdl * chosen to make the total struct size an even power of two. It's
2312 1.14 wiz * critical that no TxCB be split across a page boundary since
2313 1.1 fvdl * no attempt is made to allocate physically contiguous memory.
2314 1.24 perry *
2315 1.1 fvdl */
2316 1.28 jonathan #if 0 /* pre-TSO values */
2317 1.28 jonathan #define BGE_TXDMA_MAX ETHER_MAX_LEN_JUMBO
2318 1.1 fvdl #ifdef _LP64
2319 1.37 tsutsui #define BGE_NTXSEG 30
2320 1.1 fvdl #else
2321 1.37 tsutsui #define BGE_NTXSEG 31
2322 1.1 fvdl #endif
2323 1.28 jonathan #else /* TSO values */
2324 1.28 jonathan #define BGE_TXDMA_MAX (round_page(IP_MAXPACKET)) /* for TSO */
2325 1.28 jonathan #ifdef _LP64
2326 1.37 tsutsui #define BGE_NTXSEG 120 /* XXX just a guess */
2327 1.28 jonathan #else
2328 1.37 tsutsui #define BGE_NTXSEG 124 /* XXX just a guess */
2329 1.28 jonathan #endif
2330 1.28 jonathan #endif /* TSO values */
2331 1.28 jonathan
2332 1.1 fvdl
2333 1.1 fvdl /*
2334 1.1 fvdl * Mbuf pointers. We need these to keep track of the virtual addresses
2335 1.1 fvdl * of our mbuf chains since we can only convert from physical to virtual,
2336 1.1 fvdl * not the other way around.
2337 1.1 fvdl */
2338 1.1 fvdl struct bge_chain_data {
2339 1.1 fvdl struct mbuf *bge_tx_chain[BGE_TX_RING_CNT];
2340 1.1 fvdl struct mbuf *bge_rx_std_chain[BGE_STD_RX_RING_CNT];
2341 1.1 fvdl struct mbuf *bge_rx_jumbo_chain[BGE_JUMBO_RX_RING_CNT];
2342 1.1 fvdl struct mbuf *bge_rx_mini_chain[BGE_MINI_RX_RING_CNT];
2343 1.1 fvdl bus_dmamap_t bge_rx_std_map[BGE_STD_RX_RING_CNT];
2344 1.1 fvdl bus_dmamap_t bge_rx_jumbo_map;
2345 1.1 fvdl /* Stick the jumbo mem management stuff here too. */
2346 1.41 christos void * bge_jslots[BGE_JSLOTS];
2347 1.41 christos void * bge_jumbo_buf;
2348 1.1 fvdl };
2349 1.1 fvdl
2350 1.1 fvdl #define BGE_JUMBO_DMA_ADDR(sc, m) \
2351 1.1 fvdl ((sc)->bge_cdata.bge_rx_jumbo_map->dm_segs[0].ds_addr + \
2352 1.1 fvdl (mtod((m), char *) - (char *)(sc)->bge_cdata.bge_jumbo_buf))
2353 1.1 fvdl
2354 1.1 fvdl struct bge_type {
2355 1.1 fvdl u_int16_t bge_vid;
2356 1.1 fvdl u_int16_t bge_did;
2357 1.1 fvdl char *bge_name;
2358 1.1 fvdl };
2359 1.1 fvdl
2360 1.1 fvdl #define BGE_HWREV_TIGON 0x01
2361 1.1 fvdl #define BGE_HWREV_TIGON_II 0x02
2362 1.1 fvdl #define BGE_TIMEOUT 1000
2363 1.1 fvdl #define BGE_TXCONS_UNSET 0xFFFF /* impossible value */
2364 1.1 fvdl
2365 1.1 fvdl struct bge_jpool_entry {
2366 1.37 tsutsui int slot;
2367 1.1 fvdl SLIST_ENTRY(bge_jpool_entry) jpool_entries;
2368 1.1 fvdl };
2369 1.1 fvdl
2370 1.1 fvdl struct bge_bcom_hack {
2371 1.1 fvdl int reg;
2372 1.1 fvdl int val;
2373 1.1 fvdl };
2374 1.1 fvdl
2375 1.1 fvdl struct txdmamap_pool_entry {
2376 1.1 fvdl bus_dmamap_t dmamap;
2377 1.1 fvdl SLIST_ENTRY(txdmamap_pool_entry) link;
2378 1.1 fvdl };
2379 1.1 fvdl
2380 1.1 fvdl /*
2381 1.1 fvdl * Flags for bge_flags.
2382 1.1 fvdl */
2383 1.1 fvdl #define BGE_TXRING_VALID 0x0001
2384 1.1 fvdl #define BGE_RXRING_VALID 0x0002
2385 1.1 fvdl #define BGE_JUMBO_RXRING_VALID 0x0004
2386 1.1 fvdl
2387 1.1 fvdl struct bge_softc {
2388 1.44 joerg device_t bge_dev;
2389 1.1 fvdl struct ethercom ethercom; /* interface info */
2390 1.1 fvdl bus_space_handle_t bge_bhandle;
2391 1.1 fvdl bus_space_tag_t bge_btag;
2392 1.1 fvdl void *bge_intrhand;
2393 1.45 jmcneill pci_chipset_tag_t sc_pc;
2394 1.45 jmcneill pcitag_t sc_pcitag;
2395 1.45 jmcneill
2396 1.1 fvdl struct mii_data bge_mii;
2397 1.1 fvdl struct ifmedia bge_ifmedia; /* media info */
2398 1.1 fvdl u_int8_t bge_extram; /* has external SSRAM */
2399 1.1 fvdl u_int8_t bge_tbi;
2400 1.37 tsutsui u_int8_t bge_rx_alignment_bug;
2401 1.22 cube u_int8_t bge_pcie; /* on a PCI Express port */
2402 1.11 hannken u_int32_t bge_return_ring_cnt;
2403 1.27 jonathan u_int32_t bge_tx_prodidx;
2404 1.1 fvdl bus_dma_tag_t bge_dmatag;
2405 1.13 fvdl u_int32_t bge_chipid;
2406 1.3 thorpej u_int32_t bge_quirks;
2407 1.6 fvdl u_int32_t bge_local_ctrl_reg;
2408 1.1 fvdl struct bge_ring_data *bge_rdata; /* rings */
2409 1.1 fvdl struct bge_chain_data bge_cdata; /* mbufs */
2410 1.1 fvdl bus_dmamap_t bge_ring_map;
2411 1.1 fvdl u_int16_t bge_tx_saved_considx;
2412 1.1 fvdl u_int16_t bge_rx_saved_considx;
2413 1.1 fvdl u_int16_t bge_ev_saved_considx;
2414 1.1 fvdl u_int16_t bge_std; /* current std ring head */
2415 1.1 fvdl u_int16_t bge_jumbo; /* current jumo ring head */
2416 1.1 fvdl SLIST_HEAD(__bge_jfreehead, bge_jpool_entry) bge_jfree_listhead;
2417 1.1 fvdl SLIST_HEAD(__bge_jinusehead, bge_jpool_entry) bge_jinuse_listhead;
2418 1.1 fvdl u_int32_t bge_stat_ticks;
2419 1.1 fvdl u_int32_t bge_rx_coal_ticks;
2420 1.1 fvdl u_int32_t bge_tx_coal_ticks;
2421 1.1 fvdl u_int32_t bge_rx_max_coal_bds;
2422 1.1 fvdl u_int32_t bge_tx_max_coal_bds;
2423 1.1 fvdl u_int32_t bge_tx_buf_ratio;
2424 1.1 fvdl int bge_if_flags;
2425 1.1 fvdl int bge_flags;
2426 1.19 thorpej int bge_flowflags;
2427 1.21 thorpej #ifdef BGE_EVENT_COUNTERS
2428 1.21 thorpej /*
2429 1.21 thorpej * Event counters.
2430 1.21 thorpej */
2431 1.21 thorpej struct evcnt bge_ev_intr; /* interrupts */
2432 1.21 thorpej struct evcnt bge_ev_tx_xoff; /* send PAUSE(len>0) packets */
2433 1.21 thorpej struct evcnt bge_ev_tx_xon; /* send PAUSE(len=0) packets */
2434 1.21 thorpej struct evcnt bge_ev_rx_xoff; /* receive PAUSE(len>0) packets */
2435 1.21 thorpej struct evcnt bge_ev_rx_xon; /* receive PAUSE(len=0) packets */
2436 1.21 thorpej struct evcnt bge_ev_rx_macctl; /* receive MAC control packets */
2437 1.21 thorpej struct evcnt bge_ev_xoffentered;/* XOFF state entered */
2438 1.21 thorpej #endif /* BGE_EVENT_COUNTERS */
2439 1.1 fvdl int bge_txcnt;
2440 1.1 fvdl int bge_link;
2441 1.1 fvdl struct callout bge_timeout;
2442 1.1 fvdl char *bge_vpd_prodname;
2443 1.1 fvdl char *bge_vpd_readonly;
2444 1.37 tsutsui int bge_pending_rxintr_change;
2445 1.1 fvdl SLIST_HEAD(, txdmamap_pool_entry) txdma_list;
2446 1.1 fvdl struct txdmamap_pool_entry *txdma[BGE_TX_RING_CNT];
2447 1.46 mlelstv
2448 1.46 mlelstv #if NRND > 0
2449 1.46 mlelstv rndsource_element_t rnd_source; /* random source */
2450 1.46 mlelstv #endif
2451 1.1 fvdl };
2452