if_bgereg.h revision 226807
1101099Srwatson/*-
2101099Srwatson * Copyright (c) 2001 Wind River Systems
3101099Srwatson * Copyright (c) 1997, 1998, 1999, 2001
4101099Srwatson *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
5101099Srwatson *
6101099Srwatson * Redistribution and use in source and binary forms, with or without
7101099Srwatson * modification, are permitted provided that the following conditions
8101099Srwatson * are met:
9101099Srwatson * 1. Redistributions of source code must retain the above copyright
10101099Srwatson *    notice, this list of conditions and the following disclaimer.
11101099Srwatson * 2. Redistributions in binary form must reproduce the above copyright
12101099Srwatson *    notice, this list of conditions and the following disclaimer in the
13101099Srwatson *    documentation and/or other materials provided with the distribution.
14101099Srwatson * 3. All advertising materials mentioning features or use of this software
15101099Srwatson *    must display the following acknowledgement:
16101099Srwatson *	This product includes software developed by Bill Paul.
17101099Srwatson * 4. Neither the name of the author nor the names of any co-contributors
18101099Srwatson *    may be used to endorse or promote products derived from this software
19101099Srwatson *    without specific prior written permission.
20101099Srwatson *
21101099Srwatson * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
22101099Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23101099Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24101099Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
25101099Srwatson * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26101099Srwatson * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27101099Srwatson * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28101099Srwatson * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29101099Srwatson * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30101099Srwatson * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31101099Srwatson * THE POSSIBILITY OF SUCH DAMAGE.
32101099Srwatson *
33101099Srwatson * $FreeBSD: head/sys/dev/bge/if_bgereg.h 226807 2011-10-26 18:37:02Z yongari $
34101099Srwatson */
35101099Srwatson
36101099Srwatson/*
37101099Srwatson * BCM570x memory map. The internal memory layout varies somewhat
38101099Srwatson * depending on whether or not we have external SSRAM attached.
39101099Srwatson * The BCM5700 can have up to 16MB of external memory. The BCM5701
40101099Srwatson * is apparently not designed to use external SSRAM. The mappings
41101099Srwatson * up to the first 4 send rings are the same for both internal and
42101099Srwatson * external memory configurations. Note that mini RX ring space is
43101099Srwatson * only available with external SSRAM configurations, which means
44101099Srwatson * the mini RX ring is not supported on the BCM5701.
45101099Srwatson *
46101099Srwatson * The NIC's memory can be accessed by the host in one of 3 ways:
47101099Srwatson *
48101099Srwatson * 1) Indirect register access. The MEMWIN_BASEADDR and MEMWIN_DATA
49101099Srwatson *    registers in PCI config space can be used to read any 32-bit
50101099Srwatson *    address within the NIC's memory.
51103183Sbde *
52101099Srwatson * 2) Memory window access. The MEMWIN_BASEADDR register in PCI config
53101099Srwatson *    space can be used in conjunction with the memory window in the
54101099Srwatson *    device register space at offset 0x8000 to read any 32K chunk
55101099Srwatson *    of NIC memory.
56101099Srwatson *
57101099Srwatson * 3) Flat mode. If the 'flat mode' bit in the PCI state register is
58101099Srwatson *    set, the device I/O mapping consumes 32MB of host address space,
59101099Srwatson *    allowing all of the registers and internal NIC memory to be
60101099Srwatson *    accessed directly. NIC memory addresses are offset by 0x01000000.
61101099Srwatson *    Flat mode consumes so much host address space that it is not
62101099Srwatson *    recommended.
63101099Srwatson */
64101099Srwatson#define	BGE_PAGE_ZERO			0x00000000
65101099Srwatson#define	BGE_PAGE_ZERO_END		0x000000FF
66101099Srwatson#define	BGE_SEND_RING_RCB		0x00000100
67101099Srwatson#define	BGE_SEND_RING_RCB_END		0x000001FF
68101099Srwatson#define	BGE_RX_RETURN_RING_RCB		0x00000200
69101099Srwatson#define	BGE_RX_RETURN_RING_RCB_END	0x000002FF
70101099Srwatson#define	BGE_STATS_BLOCK			0x00000300
71101099Srwatson#define	BGE_STATS_BLOCK_END		0x00000AFF
72101099Srwatson#define	BGE_STATUS_BLOCK		0x00000B00
73101099Srwatson#define	BGE_STATUS_BLOCK_END		0x00000B4F
74101099Srwatson#define	BGE_SOFTWARE_GENCOMM		0x00000B50
75101099Srwatson#define	BGE_SOFTWARE_GENCOMM_SIG	0x00000B54
76101099Srwatson#define	BGE_SOFTWARE_GENCOMM_NICCFG	0x00000B58
77101099Srwatson#define	BGE_SOFTWARE_GENCOMM_FW		0x00000B78
78101099Srwatson#define	BGE_SOFTWARE_GENNCOMM_FW_LEN	0x00000B7C
79101099Srwatson#define	BGE_SOFTWARE_GENNCOMM_FW_DATA	0x00000B80
80101099Srwatson#define	BGE_SOFTWARE_GENCOMM_END	0x00000FFF
81101099Srwatson#define	BGE_UNMAPPED			0x00001000
82101099Srwatson#define	BGE_UNMAPPED_END		0x00001FFF
83101099Srwatson#define	BGE_DMA_DESCRIPTORS		0x00002000
84101099Srwatson#define	BGE_DMA_DESCRIPTORS_END		0x00003FFF
85101099Srwatson#define	BGE_SEND_RING_5717		0x00004000
86101099Srwatson#define	BGE_SEND_RING_1_TO_4		0x00004000
87101099Srwatson#define	BGE_SEND_RING_1_TO_4_END	0x00005FFF
88102980Srwatson
89101099Srwatson/* Firmware interface */
90101099Srwatson#define	BGE_FW_DRV_ALIVE		0x00000001
91101099Srwatson#define	BGE_FW_PAUSE			0x00000002
92101099Srwatson
93101099Srwatson/* Mappings for internal memory configuration */
94101099Srwatson#define	BGE_STD_RX_RINGS		0x00006000
95101099Srwatson#define	BGE_STD_RX_RINGS_END		0x00006FFF
96101099Srwatson#define	BGE_JUMBO_RX_RINGS		0x00007000
97101099Srwatson#define	BGE_JUMBO_RX_RINGS_END		0x00007FFF
98101099Srwatson#define	BGE_BUFFPOOL_1			0x00008000
99101099Srwatson#define	BGE_BUFFPOOL_1_END		0x0000FFFF
100101099Srwatson#define	BGE_BUFFPOOL_2			0x00010000 /* or expansion ROM */
101101099Srwatson#define	BGE_BUFFPOOL_2_END		0x00017FFF
102101099Srwatson#define	BGE_BUFFPOOL_3			0x00018000 /* or expansion ROM */
103101099Srwatson#define	BGE_BUFFPOOL_3_END		0x0001FFFF
104101099Srwatson#define	BGE_STD_RX_RINGS_5717		0x00040000
105101099Srwatson#define	BGE_JUMBO_RX_RINGS_5717		0x00044400
106101099Srwatson
107101099Srwatson/* Mappings for external SSRAM configurations */
108101099Srwatson#define	BGE_SEND_RING_5_TO_6		0x00006000
109101099Srwatson#define	BGE_SEND_RING_5_TO_6_END	0x00006FFF
110101099Srwatson#define	BGE_SEND_RING_7_TO_8		0x00007000
111101099Srwatson#define	BGE_SEND_RING_7_TO_8_END	0x00007FFF
112101099Srwatson#define	BGE_SEND_RING_9_TO_16		0x00008000
113101099Srwatson#define	BGE_SEND_RING_9_TO_16_END	0x0000BFFF
114101099Srwatson#define	BGE_EXT_STD_RX_RINGS		0x0000C000
115101099Srwatson#define	BGE_EXT_STD_RX_RINGS_END	0x0000CFFF
116101099Srwatson#define	BGE_EXT_JUMBO_RX_RINGS		0x0000D000
117101099Srwatson#define	BGE_EXT_JUMBO_RX_RINGS_END	0x0000DFFF
118101099Srwatson#define	BGE_MINI_RX_RINGS		0x0000E000
119101099Srwatson#define	BGE_MINI_RX_RINGS_END		0x0000FFFF
120104514Srwatson#define	BGE_AVAIL_REGION1		0x00010000 /* or expansion ROM */
121101099Srwatson#define	BGE_AVAIL_REGION1_END		0x00017FFF
122101099Srwatson#define	BGE_AVAIL_REGION2		0x00018000 /* or expansion ROM */
123101099Srwatson#define	BGE_AVAIL_REGION2_END		0x0001FFFF
124104514Srwatson#define	BGE_EXT_SSRAM			0x00020000
125101099Srwatson#define	BGE_EXT_SSRAM_END		0x000FFFFF
126101099Srwatson
127101099Srwatson
128101099Srwatson/*
129101099Srwatson * BCM570x register offsets. These are memory mapped registers
130101099Srwatson * which can be accessed with the CSR_READ_4()/CSR_WRITE_4() macros.
131101099Srwatson * Each register must be accessed using 32 bit operations.
132101099Srwatson *
133101099Srwatson * All registers are accessed through a 32K shared memory block.
134101099Srwatson * The first group of registers are actually copies of the PCI
135101099Srwatson * configuration space registers.
136101099Srwatson */
137101099Srwatson
138101099Srwatson/*
139101099Srwatson * PCI registers defined in the PCI 2.2 spec.
140101099Srwatson */
141101099Srwatson#define	BGE_PCI_VID			0x00
142101099Srwatson#define	BGE_PCI_DID			0x02
143101099Srwatson#define	BGE_PCI_CMD			0x04
144101099Srwatson#define	BGE_PCI_STS			0x06
145101099Srwatson#define	BGE_PCI_REV			0x08
146101099Srwatson#define	BGE_PCI_CLASS			0x09
147101099Srwatson#define	BGE_PCI_CACHESZ			0x0C
148101099Srwatson#define	BGE_PCI_LATTIMER		0x0D
149101099Srwatson#define	BGE_PCI_HDRTYPE			0x0E
150101099Srwatson#define	BGE_PCI_BIST			0x0F
151101099Srwatson#define	BGE_PCI_BAR0			0x10
152101099Srwatson#define	BGE_PCI_BAR1			0x14
153101099Srwatson#define	BGE_PCI_SUBSYS			0x2C
154101099Srwatson#define	BGE_PCI_SUBVID			0x2E
155101099Srwatson#define	BGE_PCI_ROMBASE			0x30
156101099Srwatson#define	BGE_PCI_CAPPTR			0x34
157101099Srwatson#define	BGE_PCI_INTLINE			0x3C
158101099Srwatson#define	BGE_PCI_INTPIN			0x3D
159101099Srwatson#define	BGE_PCI_MINGNT			0x3E
160101099Srwatson#define	BGE_PCI_MAXLAT			0x3F
161101099Srwatson#define	BGE_PCI_PCIXCAP			0x40
162101099Srwatson#define	BGE_PCI_NEXTPTR_PM		0x41
163101099Srwatson#define	BGE_PCI_PCIX_CMD		0x42
164101099Srwatson#define	BGE_PCI_PCIX_STS		0x44
165101099Srwatson#define	BGE_PCI_PWRMGMT_CAPID		0x48
166101099Srwatson#define	BGE_PCI_NEXTPTR_VPD		0x49
167101099Srwatson#define	BGE_PCI_PWRMGMT_CAPS		0x4A
168101099Srwatson#define	BGE_PCI_PWRMGMT_CMD		0x4C
169101099Srwatson#define	BGE_PCI_PWRMGMT_STS		0x4D
170101099Srwatson#define	BGE_PCI_PWRMGMT_DATA		0x4F
171101099Srwatson#define	BGE_PCI_VPD_CAPID		0x50
172101099Srwatson#define	BGE_PCI_NEXTPTR_MSI		0x51
173101099Srwatson#define	BGE_PCI_VPD_ADDR		0x52
174101099Srwatson#define	BGE_PCI_VPD_DATA		0x54
175101099Srwatson#define	BGE_PCI_MSI_CAPID		0x58
176101099Srwatson#define	BGE_PCI_NEXTPTR_NONE		0x59
177101099Srwatson#define	BGE_PCI_MSI_CTL			0x5A
178101099Srwatson#define	BGE_PCI_MSI_ADDR_HI		0x5C
179101099Srwatson#define	BGE_PCI_MSI_ADDR_LO		0x60
180101099Srwatson#define	BGE_PCI_MSI_DATA		0x64
181101099Srwatson
182101099Srwatson/*
183101099Srwatson * PCI Express definitions
184101099Srwatson * According to
185101099Srwatson * PCI Express base specification, REV. 1.0a
186101099Srwatson */
187101099Srwatson
188101099Srwatson/* PCI Express device control, 16bits */
189101099Srwatson#define	BGE_PCIE_DEVCTL			0x08
190101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_MASK	0x7000
191101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_128	0x0000
192101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_256	0x1000
193101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_512	0x2000
194101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_1024	0x3000
195101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_2048	0x4000
196101099Srwatson#define	BGE_PCIE_DEVCTL_MAX_READRQ_4096	0x5000
197101099Srwatson
198101099Srwatson/* PCI MSI. ??? */
199101099Srwatson#define	BGE_PCIE_CAPID_REG		0xD0
200103750Srwatson#define	BGE_PCIE_CAPID			0x10
201101099Srwatson
202103750Srwatson/*
203101099Srwatson * PCI registers specific to the BCM570x family.
204101099Srwatson */
205101099Srwatson#define	BGE_PCI_MISC_CTL		0x68
206101099Srwatson#define	BGE_PCI_DMA_RW_CTL		0x6C
207101099Srwatson#define	BGE_PCI_PCISTATE		0x70
208101099Srwatson#define	BGE_PCI_CLKCTL			0x74
209101099Srwatson#define	BGE_PCI_REG_BASEADDR		0x78
210101099Srwatson#define	BGE_PCI_MEMWIN_BASEADDR		0x7C
211101099Srwatson#define	BGE_PCI_REG_DATA		0x80
212101099Srwatson#define	BGE_PCI_MEMWIN_DATA		0x84
213101099Srwatson#define	BGE_PCI_MODECTL			0x88
214101099Srwatson#define	BGE_PCI_MISC_CFG		0x8C
215101099Srwatson#define	BGE_PCI_MISC_LOCALCTL		0x90
216101099Srwatson#define	BGE_PCI_UNDI_RX_STD_PRODIDX_HI	0x98
217101099Srwatson#define	BGE_PCI_UNDI_RX_STD_PRODIDX_LO	0x9C
218101099Srwatson#define	BGE_PCI_UNDI_RX_RTN_CONSIDX_HI	0xA0
219101099Srwatson#define	BGE_PCI_UNDI_RX_RTN_CONSIDX_LO	0xA4
220101099Srwatson#define	BGE_PCI_UNDI_TX_BD_PRODIDX_HI	0xA8
221101099Srwatson#define	BGE_PCI_UNDI_TX_BD_PRODIDX_LO	0xAC
222101099Srwatson#define	BGE_PCI_ISR_MBX_HI		0xB0
223101099Srwatson#define	BGE_PCI_ISR_MBX_LO		0xB4
224101099Srwatson#define	BGE_PCI_PRODID_ASICREV		0xBC
225101099Srwatson#define	BGE_PCI_GEN2_PRODID_ASICREV	0xF4
226101099Srwatson#define	BGE_PCI_GEN15_PRODID_ASICREV	0xFC
227101099Srwatson
228101099Srwatson/* PCI Misc. Host control register */
229101099Srwatson#define	BGE_PCIMISCCTL_CLEAR_INTA	0x00000001
230101099Srwatson#define	BGE_PCIMISCCTL_MASK_PCI_INTR	0x00000002
231101099Srwatson#define	BGE_PCIMISCCTL_ENDIAN_BYTESWAP	0x00000004
232101099Srwatson#define	BGE_PCIMISCCTL_ENDIAN_WORDSWAP	0x00000008
233101099Srwatson#define	BGE_PCIMISCCTL_PCISTATE_RW	0x00000010
234101099Srwatson#define	BGE_PCIMISCCTL_CLOCKCTL_RW	0x00000020
235101099Srwatson#define	BGE_PCIMISCCTL_REG_WORDSWAP	0x00000040
236101099Srwatson#define	BGE_PCIMISCCTL_INDIRECT_ACCESS	0x00000080
237101099Srwatson#define	BGE_PCIMISCCTL_TAGGED_STATUS	0x00000200
238101099Srwatson#define	BGE_PCIMISCCTL_ASICREV		0xFFFF0000
239101099Srwatson#define	BGE_PCIMISCCTL_ASICREV_SHIFT	16
240101099Srwatson
241101099Srwatson#define	BGE_HIF_SWAP_OPTIONS	(BGE_PCIMISCCTL_ENDIAN_WORDSWAP)
242101099Srwatson#if BYTE_ORDER == LITTLE_ENDIAN
243101099Srwatson#define	BGE_DMA_SWAP_OPTIONS \
244101099Srwatson	BGE_MODECTL_WORDSWAP_NONFRAME| \
245101099Srwatson	BGE_MODECTL_BYTESWAP_DATA|BGE_MODECTL_WORDSWAP_DATA
246101099Srwatson#else
247101099Srwatson#define	BGE_DMA_SWAP_OPTIONS \
248101099Srwatson	BGE_MODECTL_WORDSWAP_NONFRAME|BGE_MODECTL_BYTESWAP_NONFRAME| \
249101099Srwatson	BGE_MODECTL_BYTESWAP_DATA|BGE_MODECTL_WORDSWAP_DATA
250101099Srwatson#endif
251101099Srwatson
252101099Srwatson#define	BGE_INIT \
253101099Srwatson	(BGE_HIF_SWAP_OPTIONS|BGE_PCIMISCCTL_CLEAR_INTA| \
254101099Srwatson	 BGE_PCIMISCCTL_MASK_PCI_INTR|BGE_PCIMISCCTL_INDIRECT_ACCESS)
255101099Srwatson
256101099Srwatson#define	BGE_CHIPID_TIGON_I		0x4000
257101099Srwatson#define	BGE_CHIPID_TIGON_II		0x6000
258101099Srwatson#define	BGE_CHIPID_BCM5700_A0		0x7000
259101099Srwatson#define	BGE_CHIPID_BCM5700_A1		0x7001
260101099Srwatson#define	BGE_CHIPID_BCM5700_B0		0x7100
261101099Srwatson#define	BGE_CHIPID_BCM5700_B1		0x7101
262101099Srwatson#define	BGE_CHIPID_BCM5700_B2		0x7102
263101099Srwatson#define	BGE_CHIPID_BCM5700_B3		0x7103
264101099Srwatson#define	BGE_CHIPID_BCM5700_ALTIMA	0x7104
265101099Srwatson#define	BGE_CHIPID_BCM5700_C0		0x7200
266101099Srwatson#define	BGE_CHIPID_BCM5701_A0		0x0000	/* grrrr */
267101099Srwatson#define	BGE_CHIPID_BCM5701_B0		0x0100
268101099Srwatson#define	BGE_CHIPID_BCM5701_B2		0x0102
269101099Srwatson#define	BGE_CHIPID_BCM5701_B5		0x0105
270101099Srwatson#define	BGE_CHIPID_BCM5703_A0		0x1000
271101099Srwatson#define	BGE_CHIPID_BCM5703_A1		0x1001
272101099Srwatson#define	BGE_CHIPID_BCM5703_A2		0x1002
273101099Srwatson#define	BGE_CHIPID_BCM5703_A3		0x1003
274101099Srwatson#define	BGE_CHIPID_BCM5703_B0		0x1100
275101099Srwatson#define	BGE_CHIPID_BCM5704_A0		0x2000
276101099Srwatson#define	BGE_CHIPID_BCM5704_A1		0x2001
277101099Srwatson#define	BGE_CHIPID_BCM5704_A2		0x2002
278101099Srwatson#define	BGE_CHIPID_BCM5704_A3		0x2003
279101099Srwatson#define	BGE_CHIPID_BCM5704_B0		0x2100
280101099Srwatson#define	BGE_CHIPID_BCM5705_A0		0x3000
281101099Srwatson#define	BGE_CHIPID_BCM5705_A1		0x3001
282101099Srwatson#define	BGE_CHIPID_BCM5705_A2		0x3002
283101099Srwatson#define	BGE_CHIPID_BCM5705_A3		0x3003
284101099Srwatson#define	BGE_CHIPID_BCM5750_A0		0x4000
285101099Srwatson#define	BGE_CHIPID_BCM5750_A1		0x4001
286101099Srwatson#define	BGE_CHIPID_BCM5750_A3		0x4000
287101099Srwatson#define	BGE_CHIPID_BCM5750_B0		0x4100
288101099Srwatson#define	BGE_CHIPID_BCM5750_B1		0x4101
289101099Srwatson#define	BGE_CHIPID_BCM5750_C0		0x4200
290101099Srwatson#define	BGE_CHIPID_BCM5750_C1		0x4201
291101099Srwatson#define	BGE_CHIPID_BCM5750_C2		0x4202
292101099Srwatson#define	BGE_CHIPID_BCM5714_A0		0x5000
293101099Srwatson#define	BGE_CHIPID_BCM5752_A0		0x6000
294101099Srwatson#define	BGE_CHIPID_BCM5752_A1		0x6001
295101099Srwatson#define	BGE_CHIPID_BCM5752_A2		0x6002
296101099Srwatson#define	BGE_CHIPID_BCM5714_B0		0x8000
297101099Srwatson#define	BGE_CHIPID_BCM5714_B3		0x8003
298101099Srwatson#define	BGE_CHIPID_BCM5715_A0		0x9000
299101099Srwatson#define	BGE_CHIPID_BCM5715_A1		0x9001
300101099Srwatson#define	BGE_CHIPID_BCM5715_A3		0x9003
301101099Srwatson#define	BGE_CHIPID_BCM5755_A0		0xa000
302101099Srwatson#define	BGE_CHIPID_BCM5755_A1		0xa001
303101099Srwatson#define	BGE_CHIPID_BCM5755_A2		0xa002
304101099Srwatson#define	BGE_CHIPID_BCM5722_A0		0xa200
305101099Srwatson#define	BGE_CHIPID_BCM5754_A0		0xb000
306101099Srwatson#define	BGE_CHIPID_BCM5754_A1		0xb001
307101099Srwatson#define	BGE_CHIPID_BCM5754_A2		0xb002
308101099Srwatson#define	BGE_CHIPID_BCM5761_A0		0x5761000
309101099Srwatson#define	BGE_CHIPID_BCM5761_A1		0x5761100
310101099Srwatson#define	BGE_CHIPID_BCM5784_A0		0x5784000
311101099Srwatson#define	BGE_CHIPID_BCM5784_A1		0x5784100
312101099Srwatson#define	BGE_CHIPID_BCM5787_A0		0xb000
313101099Srwatson#define	BGE_CHIPID_BCM5787_A1		0xb001
314101099Srwatson#define	BGE_CHIPID_BCM5787_A2		0xb002
315101099Srwatson#define	BGE_CHIPID_BCM5906_A0		0xc000
316101099Srwatson#define	BGE_CHIPID_BCM5906_A1		0xc001
317101099Srwatson#define	BGE_CHIPID_BCM5906_A2		0xc002
318101099Srwatson#define	BGE_CHIPID_BCM57780_A0		0x57780000
319101099Srwatson#define	BGE_CHIPID_BCM57780_A1		0x57780001
320101099Srwatson#define	BGE_CHIPID_BCM5717_A0		0x05717000
321101099Srwatson#define	BGE_CHIPID_BCM5717_B0		0x05717100
322101099Srwatson#define	BGE_CHIPID_BCM5719_A0		0x05719000
323101099Srwatson#define	BGE_CHIPID_BCM57765_A0		0x57785000
324101099Srwatson#define	BGE_CHIPID_BCM57765_B0		0x57785100
325101099Srwatson
326101099Srwatson/* shorthand one */
327101099Srwatson#define	BGE_ASICREV(x)			((x) >> 12)
328101099Srwatson#define	BGE_ASICREV_BCM5701		0x00
329101099Srwatson#define	BGE_ASICREV_BCM5703		0x01
330101099Srwatson#define	BGE_ASICREV_BCM5704		0x02
331101099Srwatson#define	BGE_ASICREV_BCM5705		0x03
332101099Srwatson#define	BGE_ASICREV_BCM5750		0x04
333101099Srwatson#define	BGE_ASICREV_BCM5714_A0		0x05
334101099Srwatson#define	BGE_ASICREV_BCM5752		0x06
335101099Srwatson#define	BGE_ASICREV_BCM5700		0x07
336101099Srwatson#define	BGE_ASICREV_BCM5780		0x08
337101099Srwatson#define	BGE_ASICREV_BCM5714		0x09
338101099Srwatson#define	BGE_ASICREV_BCM5755		0x0a
339101099Srwatson#define	BGE_ASICREV_BCM5754		0x0b
340101099Srwatson#define	BGE_ASICREV_BCM5787		0x0b
341101099Srwatson#define	BGE_ASICREV_BCM5906		0x0c
342101099Srwatson/* Should consult BGE_PCI_PRODID_ASICREV for ChipID */
343101099Srwatson#define	BGE_ASICREV_USE_PRODID_REG	0x0f
344101099Srwatson/* BGE_PCI_PRODID_ASICREV ASIC rev. identifiers. */
345101099Srwatson#define	BGE_ASICREV_BCM5717		0x5717
346101099Srwatson#define	BGE_ASICREV_BCM5719		0x5719
347101099Srwatson#define	BGE_ASICREV_BCM5761		0x5761
348101099Srwatson#define	BGE_ASICREV_BCM5784		0x5784
349101099Srwatson#define	BGE_ASICREV_BCM5785		0x5785
350101099Srwatson#define	BGE_ASICREV_BCM57765		0x57785
351101099Srwatson#define	BGE_ASICREV_BCM57780		0x57780
352101099Srwatson
353101099Srwatson/* chip revisions */
354101099Srwatson#define	BGE_CHIPREV(x)			((x) >> 8)
355101099Srwatson#define	BGE_CHIPREV_5700_AX		0x70
356101099Srwatson#define	BGE_CHIPREV_5700_BX		0x71
357101099Srwatson#define	BGE_CHIPREV_5700_CX		0x72
358101099Srwatson#define	BGE_CHIPREV_5701_AX		0x00
359101099Srwatson#define	BGE_CHIPREV_5703_AX		0x10
360101099Srwatson#define	BGE_CHIPREV_5704_AX		0x20
361101099Srwatson#define	BGE_CHIPREV_5704_BX		0x21
362101099Srwatson#define	BGE_CHIPREV_5750_AX		0x40
363101099Srwatson#define	BGE_CHIPREV_5750_BX		0x41
364101099Srwatson/* BGE_PCI_PRODID_ASICREV chip rev. identifiers. */
365101099Srwatson#define	BGE_CHIPREV_5717_AX		0x57170
366101099Srwatson#define	BGE_CHIPREV_5717_BX		0x57171
367101099Srwatson#define	BGE_CHIPREV_5761_AX		0x57611
368101099Srwatson#define	BGE_CHIPREV_5784_AX		0x57841
369101099Srwatson
370101099Srwatson/* PCI DMA Read/Write Control register */
371101099Srwatson#define	BGE_PCIDMARWCTL_MINDMA		0x000000FF
372101099Srwatson#define	BGE_PCIDMARWCTL_DIS_CACHE_ALIGNMENT	0x00000001
373101099Srwatson#define	BGE_PCIDMARWCTL_RDADRR_BNDRY	0x00000700
374101099Srwatson#define	BGE_PCIDMARWCTL_WRADDR_BNDRY	0x00003800
375101099Srwatson#define	BGE_PCIDMARWCTL_ONEDMA_ATONCE	0x0000C000
376101099Srwatson#define	BGE_PCIDMARWCTL_ONEDMA_ATONCE_GLOBAL	0x00004000
377101099Srwatson#define	BGE_PCIDMARWCTL_ONEDMA_ATONCE_LOCAL	0x00008000
378101099Srwatson#define	BGE_PCIDMARWCTL_RD_WAT		0x00070000
379101099Srwatson#define	BGE_PCIDMARWCTL_WR_WAT		0x00380000
380101099Srwatson#define	BGE_PCIDMARWCTL_USE_MRM		0x00400000
381101099Srwatson#define	BGE_PCIDMARWCTL_ASRT_ALL_BE	0x00800000
382101099Srwatson#define	BGE_PCIDMARWCTL_DFLT_PCI_RD_CMD	0x0F000000
383101099Srwatson#define	BGE_PCIDMARWCTL_DFLT_PCI_WR_CMD	0xF0000000
384101099Srwatson
385101099Srwatson#define	BGE_PCIDMARWCTL_RD_WAT_SHIFT(x)	((x) << 16)
386101099Srwatson#define	BGE_PCIDMARWCTL_WR_WAT_SHIFT(x)	((x) << 19)
387101099Srwatson#define	BGE_PCIDMARWCTL_RD_CMD_SHIFT(x)	((x) << 24)
388104514Srwatson#define	BGE_PCIDMARWCTL_WR_CMD_SHIFT(x)	((x) << 28)
389101099Srwatson
390101099Srwatson#define	BGE_PCIDMARWCTL_TAGGED_STATUS_WA	0x00000080
391101099Srwatson#define	BGE_PCIDMARWCTL_CRDRDR_RDMA_MRRS_MSK	0x00000380
392101099Srwatson
393101099Srwatson#define	BGE_PCI_READ_BNDRY_DISABLE	0x00000000
394101099Srwatson#define	BGE_PCI_READ_BNDRY_16BYTES	0x00000100
395104514Srwatson#define	BGE_PCI_READ_BNDRY_32BYTES	0x00000200
396101099Srwatson#define	BGE_PCI_READ_BNDRY_64BYTES	0x00000300
397101099Srwatson#define	BGE_PCI_READ_BNDRY_128BYTES	0x00000400
398104514Srwatson#define	BGE_PCI_READ_BNDRY_256BYTES	0x00000500
399101099Srwatson#define	BGE_PCI_READ_BNDRY_512BYTES	0x00000600
400101099Srwatson#define	BGE_PCI_READ_BNDRY_1024BYTES	0x00000700
401101099Srwatson
402101099Srwatson#define	BGE_PCI_WRITE_BNDRY_DISABLE	0x00000000
403101099Srwatson#define	BGE_PCI_WRITE_BNDRY_16BYTES	0x00000800
404101099Srwatson#define	BGE_PCI_WRITE_BNDRY_32BYTES	0x00001000
405101099Srwatson#define	BGE_PCI_WRITE_BNDRY_64BYTES	0x00001800
406104514Srwatson#define	BGE_PCI_WRITE_BNDRY_128BYTES	0x00002000
407101099Srwatson#define	BGE_PCI_WRITE_BNDRY_256BYTES	0x00002800
408101099Srwatson#define	BGE_PCI_WRITE_BNDRY_512BYTES	0x00003000
409101099Srwatson#define	BGE_PCI_WRITE_BNDRY_1024BYTES	0x00003800
410101099Srwatson
411101099Srwatson/*
412101099Srwatson * PCI state register -- note, this register is read only
413101099Srwatson * unless the PCISTATE_WR bit of the PCI Misc. Host Control
414101099Srwatson * register is set.
415101099Srwatson */
416101099Srwatson#define	BGE_PCISTATE_FORCE_RESET	0x00000001
417101099Srwatson#define	BGE_PCISTATE_INTR_STATE		0x00000002
418101099Srwatson#define	BGE_PCISTATE_PCI_BUSMODE	0x00000004 /* 1 = PCI, 0 = PCI-X */
419101099Srwatson#define	BGE_PCISTATE_PCI_BUSSPEED	0x00000008 /* 1 = 66/133, 0 = 33/66 */
420101099Srwatson#define	BGE_PCISTATE_32BIT_BUS		0x00000010 /* 1 = 32bit, 0 = 64bit */
421101099Srwatson#define	BGE_PCISTATE_WANT_EXPROM	0x00000020
422101099Srwatson#define	BGE_PCISTATE_EXPROM_RETRY	0x00000040
423101099Srwatson#define	BGE_PCISTATE_FLATVIEW_MODE	0x00000100
424101099Srwatson#define	BGE_PCISTATE_PCI_TGT_RETRY_MAX	0x00000E00
425101099Srwatson
426101099Srwatson/*
427101099Srwatson * PCI Clock Control register -- note, this register is read only
428101099Srwatson * unless the CLOCKCTL_RW bit of the PCI Misc. Host Control
429101099Srwatson * register is set.
430101099Srwatson */
431101099Srwatson#define	BGE_PCICLOCKCTL_DETECTED_SPEED	0x0000000F
432101099Srwatson#define	BGE_PCICLOCKCTL_M66EN		0x00000080
433101099Srwatson#define	BGE_PCICLOCKCTL_LOWPWR_CLKMODE	0x00000200
434101099Srwatson#define	BGE_PCICLOCKCTL_RXCPU_CLK_DIS	0x00000400
435101099Srwatson#define	BGE_PCICLOCKCTL_TXCPU_CLK_DIS	0x00000800
436101099Srwatson#define	BGE_PCICLOCKCTL_ALTCLK		0x00001000
437101099Srwatson#define	BGE_PCICLOCKCTL_ALTCLK_SRC	0x00002000
438101099Srwatson#define	BGE_PCICLOCKCTL_PCIPLL_DISABLE	0x00004000
439101099Srwatson#define	BGE_PCICLOCKCTL_SYSPLL_DISABLE	0x00008000
440101099Srwatson#define	BGE_PCICLOCKCTL_BIST_ENABLE	0x00010000
441101099Srwatson
442101099Srwatson
443101099Srwatson#ifndef PCIM_CMD_MWIEN
444101099Srwatson#define	PCIM_CMD_MWIEN			0x0010
445101099Srwatson#endif
446101099Srwatson#ifndef PCIM_CMD_INTxDIS
447101099Srwatson#define	PCIM_CMD_INTxDIS		0x0400
448101099Srwatson#endif
449101099Srwatson
450101099Srwatson/*
451101099Srwatson * High priority mailbox registers
452101099Srwatson * Each mailbox is 64-bits wide, though we only use the
453101099Srwatson * lower 32 bits. To write a 64-bit value, write the upper 32 bits
454101099Srwatson * first. The NIC will load the mailbox after the lower 32 bit word
455101099Srwatson * has been updated.
456101099Srwatson */
457101099Srwatson#define	BGE_MBX_IRQ0_HI			0x0200
458101099Srwatson#define	BGE_MBX_IRQ0_LO			0x0204
459101099Srwatson#define	BGE_MBX_IRQ1_HI			0x0208
460101099Srwatson#define	BGE_MBX_IRQ1_LO			0x020C
461101099Srwatson#define	BGE_MBX_IRQ2_HI			0x0210
462101099Srwatson#define	BGE_MBX_IRQ2_LO			0x0214
463101099Srwatson#define	BGE_MBX_IRQ3_HI			0x0218
464101099Srwatson#define	BGE_MBX_IRQ3_LO			0x021C
465101099Srwatson#define	BGE_MBX_GEN0_HI			0x0220
466101099Srwatson#define	BGE_MBX_GEN0_LO			0x0224
467101099Srwatson#define	BGE_MBX_GEN1_HI			0x0228
468101099Srwatson#define	BGE_MBX_GEN1_LO			0x022C
469101099Srwatson#define	BGE_MBX_GEN2_HI			0x0230
470101099Srwatson#define	BGE_MBX_GEN2_LO			0x0234
471101099Srwatson#define	BGE_MBX_GEN3_HI			0x0228
472101099Srwatson#define	BGE_MBX_GEN3_LO			0x022C
473101099Srwatson#define	BGE_MBX_GEN4_HI			0x0240
474101099Srwatson#define	BGE_MBX_GEN4_LO			0x0244
475101099Srwatson#define	BGE_MBX_GEN5_HI			0x0248
476101099Srwatson#define	BGE_MBX_GEN5_LO			0x024C
477101099Srwatson#define	BGE_MBX_GEN6_HI			0x0250
478101099Srwatson#define	BGE_MBX_GEN6_LO			0x0254
479101099Srwatson#define	BGE_MBX_GEN7_HI			0x0258
480101099Srwatson#define	BGE_MBX_GEN7_LO			0x025C
481101099Srwatson#define	BGE_MBX_RELOAD_STATS_HI		0x0260
482101099Srwatson#define	BGE_MBX_RELOAD_STATS_LO		0x0264
483101099Srwatson#define	BGE_MBX_RX_STD_PROD_HI		0x0268
484101099Srwatson#define	BGE_MBX_RX_STD_PROD_LO		0x026C
485101099Srwatson#define	BGE_MBX_RX_JUMBO_PROD_HI	0x0270
486101099Srwatson#define	BGE_MBX_RX_JUMBO_PROD_LO	0x0274
487101099Srwatson#define	BGE_MBX_RX_MINI_PROD_HI		0x0278
488101099Srwatson#define	BGE_MBX_RX_MINI_PROD_LO		0x027C
489101099Srwatson#define	BGE_MBX_RX_CONS0_HI		0x0280
490101099Srwatson#define	BGE_MBX_RX_CONS0_LO		0x0284
491101099Srwatson#define	BGE_MBX_RX_CONS1_HI		0x0288
492101099Srwatson#define	BGE_MBX_RX_CONS1_LO		0x028C
493101099Srwatson#define	BGE_MBX_RX_CONS2_HI		0x0290
494101099Srwatson#define	BGE_MBX_RX_CONS2_LO		0x0294
495101099Srwatson#define	BGE_MBX_RX_CONS3_HI		0x0298
496101099Srwatson#define	BGE_MBX_RX_CONS3_LO		0x029C
497101099Srwatson#define	BGE_MBX_RX_CONS4_HI		0x02A0
498101099Srwatson#define	BGE_MBX_RX_CONS4_LO		0x02A4
499101099Srwatson#define	BGE_MBX_RX_CONS5_HI		0x02A8
500101099Srwatson#define	BGE_MBX_RX_CONS5_LO		0x02AC
501101099Srwatson#define	BGE_MBX_RX_CONS6_HI		0x02B0
502101099Srwatson#define	BGE_MBX_RX_CONS6_LO		0x02B4
503101099Srwatson#define	BGE_MBX_RX_CONS7_HI		0x02B8
504101099Srwatson#define	BGE_MBX_RX_CONS7_LO		0x02BC
505101099Srwatson#define	BGE_MBX_RX_CONS8_HI		0x02C0
506101099Srwatson#define	BGE_MBX_RX_CONS8_LO		0x02C4
507101099Srwatson#define	BGE_MBX_RX_CONS9_HI		0x02C8
508101099Srwatson#define	BGE_MBX_RX_CONS9_LO		0x02CC
509101099Srwatson#define	BGE_MBX_RX_CONS10_HI		0x02D0
510101099Srwatson#define	BGE_MBX_RX_CONS10_LO		0x02D4
511101099Srwatson#define	BGE_MBX_RX_CONS11_HI		0x02D8
512101099Srwatson#define	BGE_MBX_RX_CONS11_LO		0x02DC
513101099Srwatson#define	BGE_MBX_RX_CONS12_HI		0x02E0
514101099Srwatson#define	BGE_MBX_RX_CONS12_LO		0x02E4
515101099Srwatson#define	BGE_MBX_RX_CONS13_HI		0x02E8
516101099Srwatson#define	BGE_MBX_RX_CONS13_LO		0x02EC
517101099Srwatson#define	BGE_MBX_RX_CONS14_HI		0x02F0
518101099Srwatson#define	BGE_MBX_RX_CONS14_LO		0x02F4
519101099Srwatson#define	BGE_MBX_RX_CONS15_HI		0x02F8
520101099Srwatson#define	BGE_MBX_RX_CONS15_LO		0x02FC
521101099Srwatson#define	BGE_MBX_TX_HOST_PROD0_HI	0x0300
522101099Srwatson#define	BGE_MBX_TX_HOST_PROD0_LO	0x0304
523101099Srwatson#define	BGE_MBX_TX_HOST_PROD1_HI	0x0308
524101099Srwatson#define	BGE_MBX_TX_HOST_PROD1_LO	0x030C
525101099Srwatson#define	BGE_MBX_TX_HOST_PROD2_HI	0x0310
526101099Srwatson#define	BGE_MBX_TX_HOST_PROD2_LO	0x0314
527101099Srwatson#define	BGE_MBX_TX_HOST_PROD3_HI	0x0318
528101099Srwatson#define	BGE_MBX_TX_HOST_PROD3_LO	0x031C
529101099Srwatson#define	BGE_MBX_TX_HOST_PROD4_HI	0x0320
530101099Srwatson#define	BGE_MBX_TX_HOST_PROD4_LO	0x0324
531101099Srwatson#define	BGE_MBX_TX_HOST_PROD5_HI	0x0328
532101099Srwatson#define	BGE_MBX_TX_HOST_PROD5_LO	0x032C
533101099Srwatson#define	BGE_MBX_TX_HOST_PROD6_HI	0x0330
534101099Srwatson#define	BGE_MBX_TX_HOST_PROD6_LO	0x0334
535101099Srwatson#define	BGE_MBX_TX_HOST_PROD7_HI	0x0338
536101099Srwatson#define	BGE_MBX_TX_HOST_PROD7_LO	0x033C
537101099Srwatson#define	BGE_MBX_TX_HOST_PROD8_HI	0x0340
538101099Srwatson#define	BGE_MBX_TX_HOST_PROD8_LO	0x0344
539101099Srwatson#define	BGE_MBX_TX_HOST_PROD9_HI	0x0348
540101099Srwatson#define	BGE_MBX_TX_HOST_PROD9_LO	0x034C
541101099Srwatson#define	BGE_MBX_TX_HOST_PROD10_HI	0x0350
542101099Srwatson#define	BGE_MBX_TX_HOST_PROD10_LO	0x0354
543101099Srwatson#define	BGE_MBX_TX_HOST_PROD11_HI	0x0358
544101099Srwatson#define	BGE_MBX_TX_HOST_PROD11_LO	0x035C
545101099Srwatson#define	BGE_MBX_TX_HOST_PROD12_HI	0x0360
546101099Srwatson#define	BGE_MBX_TX_HOST_PROD12_LO	0x0364
547101099Srwatson#define	BGE_MBX_TX_HOST_PROD13_HI	0x0368
548101099Srwatson#define	BGE_MBX_TX_HOST_PROD13_LO	0x036C
549101099Srwatson#define	BGE_MBX_TX_HOST_PROD14_HI	0x0370
550101099Srwatson#define	BGE_MBX_TX_HOST_PROD14_LO	0x0374
551101099Srwatson#define	BGE_MBX_TX_HOST_PROD15_HI	0x0378
552101099Srwatson#define	BGE_MBX_TX_HOST_PROD15_LO	0x037C
553101099Srwatson#define	BGE_MBX_TX_NIC_PROD0_HI		0x0380
554101099Srwatson#define	BGE_MBX_TX_NIC_PROD0_LO		0x0384
555101099Srwatson#define	BGE_MBX_TX_NIC_PROD1_HI		0x0388
556101099Srwatson#define	BGE_MBX_TX_NIC_PROD1_LO		0x038C
557101099Srwatson#define	BGE_MBX_TX_NIC_PROD2_HI		0x0390
558101099Srwatson#define	BGE_MBX_TX_NIC_PROD2_LO		0x0394
559101099Srwatson#define	BGE_MBX_TX_NIC_PROD3_HI		0x0398
560101099Srwatson#define	BGE_MBX_TX_NIC_PROD3_LO		0x039C
561101099Srwatson#define	BGE_MBX_TX_NIC_PROD4_HI		0x03A0
562101099Srwatson#define	BGE_MBX_TX_NIC_PROD4_LO		0x03A4
563101099Srwatson#define	BGE_MBX_TX_NIC_PROD5_HI		0x03A8
564101099Srwatson#define	BGE_MBX_TX_NIC_PROD5_LO		0x03AC
565101099Srwatson#define	BGE_MBX_TX_NIC_PROD6_HI		0x03B0
566101099Srwatson#define	BGE_MBX_TX_NIC_PROD6_LO		0x03B4
567101099Srwatson#define	BGE_MBX_TX_NIC_PROD7_HI		0x03B8
568101099Srwatson#define	BGE_MBX_TX_NIC_PROD7_LO		0x03BC
569101099Srwatson#define	BGE_MBX_TX_NIC_PROD8_HI		0x03C0
570101099Srwatson#define	BGE_MBX_TX_NIC_PROD8_LO		0x03C4
571101099Srwatson#define	BGE_MBX_TX_NIC_PROD9_HI		0x03C8
572101099Srwatson#define	BGE_MBX_TX_NIC_PROD9_LO		0x03CC
573101099Srwatson#define	BGE_MBX_TX_NIC_PROD10_HI	0x03D0
574101099Srwatson#define	BGE_MBX_TX_NIC_PROD10_LO	0x03D4
575101099Srwatson#define	BGE_MBX_TX_NIC_PROD11_HI	0x03D8
576101099Srwatson#define	BGE_MBX_TX_NIC_PROD11_LO	0x03DC
577101099Srwatson#define	BGE_MBX_TX_NIC_PROD12_HI	0x03E0
578101099Srwatson#define	BGE_MBX_TX_NIC_PROD12_LO	0x03E4
579101099Srwatson#define	BGE_MBX_TX_NIC_PROD13_HI	0x03E8
580101099Srwatson#define	BGE_MBX_TX_NIC_PROD13_LO	0x03EC
581101099Srwatson#define	BGE_MBX_TX_NIC_PROD14_HI	0x03F0
582101099Srwatson#define	BGE_MBX_TX_NIC_PROD14_LO	0x03F4
583101099Srwatson#define	BGE_MBX_TX_NIC_PROD15_HI	0x03F8
584101099Srwatson#define	BGE_MBX_TX_NIC_PROD15_LO	0x03FC
585101099Srwatson
586101099Srwatson#define	BGE_TX_RINGS_MAX		4
587101099Srwatson#define	BGE_TX_RINGS_EXTSSRAM_MAX	16
588101099Srwatson#define	BGE_RX_RINGS_MAX		16
589101099Srwatson#define	BGE_RX_RINGS_MAX_5717		17
590101099Srwatson
591101099Srwatson/* Ethernet MAC control registers */
592101099Srwatson#define	BGE_MAC_MODE			0x0400
593101099Srwatson#define	BGE_MAC_STS			0x0404
594101099Srwatson#define	BGE_MAC_EVT_ENB			0x0408
595101099Srwatson#define	BGE_MAC_LED_CTL			0x040C
596101099Srwatson#define	BGE_MAC_ADDR1_LO		0x0410
597101099Srwatson#define	BGE_MAC_ADDR1_HI		0x0414
598101099Srwatson#define	BGE_MAC_ADDR2_LO		0x0418
599101099Srwatson#define	BGE_MAC_ADDR2_HI		0x041C
600101099Srwatson#define	BGE_MAC_ADDR3_LO		0x0420
601101099Srwatson#define	BGE_MAC_ADDR3_HI		0x0424
602101099Srwatson#define	BGE_MAC_ADDR4_LO		0x0428
603101099Srwatson#define	BGE_MAC_ADDR4_HI		0x042C
604101099Srwatson#define	BGE_WOL_PATPTR			0x0430
605101099Srwatson#define	BGE_WOL_PATCFG			0x0434
606101099Srwatson#define	BGE_TX_RANDOM_BACKOFF		0x0438
607101099Srwatson#define	BGE_RX_MTU			0x043C
608101099Srwatson#define	BGE_GBIT_PCS_TEST		0x0440
609101099Srwatson#define	BGE_TX_TBI_AUTONEG		0x0444
610101099Srwatson#define	BGE_RX_TBI_AUTONEG		0x0448
611101099Srwatson#define	BGE_MI_COMM			0x044C
612101099Srwatson#define	BGE_MI_STS			0x0450
613101099Srwatson#define	BGE_MI_MODE			0x0454
614101099Srwatson#define	BGE_AUTOPOLL_STS		0x0458
615101099Srwatson#define	BGE_TX_MODE			0x045C
616101099Srwatson#define	BGE_TX_STS			0x0460
617101099Srwatson#define	BGE_TX_LENGTHS			0x0464
618101099Srwatson#define	BGE_RX_MODE			0x0468
619101099Srwatson#define	BGE_RX_STS			0x046C
620101099Srwatson#define	BGE_MAR0			0x0470
621101099Srwatson#define	BGE_MAR1			0x0474
622101099Srwatson#define	BGE_MAR2			0x0478
623101099Srwatson#define	BGE_MAR3			0x047C
624101099Srwatson#define	BGE_RX_BD_RULES_CTL0		0x0480
625101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL0	0x0484
626101099Srwatson#define	BGE_RX_BD_RULES_CTL1		0x0488
627101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL1	0x048C
628101099Srwatson#define	BGE_RX_BD_RULES_CTL2		0x0490
629101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL2	0x0494
630101099Srwatson#define	BGE_RX_BD_RULES_CTL3		0x0498
631101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL3	0x049C
632101099Srwatson#define	BGE_RX_BD_RULES_CTL4		0x04A0
633101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL4	0x04A4
634101099Srwatson#define	BGE_RX_BD_RULES_CTL5		0x04A8
635101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL5	0x04AC
636101099Srwatson#define	BGE_RX_BD_RULES_CTL6		0x04B0
637101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL6	0x04B4
638101099Srwatson#define	BGE_RX_BD_RULES_CTL7		0x04B8
639101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL7	0x04BC
640101099Srwatson#define	BGE_RX_BD_RULES_CTL8		0x04C0
641101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL8	0x04C4
642101099Srwatson#define	BGE_RX_BD_RULES_CTL9		0x04C8
643101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL9	0x04CC
644101099Srwatson#define	BGE_RX_BD_RULES_CTL10		0x04D0
645101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL10	0x04D4
646101099Srwatson#define	BGE_RX_BD_RULES_CTL11		0x04D8
647101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL11	0x04DC
648101099Srwatson#define	BGE_RX_BD_RULES_CTL12		0x04E0
649101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL12	0x04E4
650101099Srwatson#define	BGE_RX_BD_RULES_CTL13		0x04E8
651101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL13	0x04EC
652101099Srwatson#define	BGE_RX_BD_RULES_CTL14		0x04F0
653101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL14	0x04F4
654101099Srwatson#define	BGE_RX_BD_RULES_CTL15		0x04F8
655101099Srwatson#define	BGE_RX_BD_RULES_MASKVAL15	0x04FC
656101099Srwatson#define	BGE_RX_RULES_CFG		0x0500
657101099Srwatson#define	BGE_MAX_RX_FRAME_LOWAT		0x0504
658101099Srwatson#define	BGE_SERDES_CFG			0x0590
659101099Srwatson#define	BGE_SERDES_STS			0x0594
660101099Srwatson#define	BGE_SGDIG_CFG			0x05B0
661101099Srwatson#define	BGE_SGDIG_STS			0x05B4
662101099Srwatson#define	BGE_TX_MAC_STATS_OCTETS		0x0800
663101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_0	0x0804
664101099Srwatson#define	BGE_TX_MAC_STATS_COLLS		0x0808
665101099Srwatson#define	BGE_TX_MAC_STATS_XON_SENT	0x080C
666101099Srwatson#define	BGE_TX_MAC_STATS_XOFF_SENT	0x0810
667101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_1	0x0814
668101099Srwatson#define	BGE_TX_MAC_STATS_ERRORS		0x0818
669101099Srwatson#define	BGE_TX_MAC_STATS_SINGLE_COLL	0x081C
670101099Srwatson#define	BGE_TX_MAC_STATS_MULTI_COLL	0x0820
671101099Srwatson#define	BGE_TX_MAC_STATS_DEFERRED	0x0824
672101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_2	0x0828
673101099Srwatson#define	BGE_TX_MAC_STATS_EXCESS_COLL	0x082C
674101099Srwatson#define	BGE_TX_MAC_STATS_LATE_COLL	0x0830
675101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_3	0x0834
676101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_4	0x0838
677101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_5	0x083C
678101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_6	0x0840
679101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_7	0x0844
680101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_8	0x0848
681101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_9	0x084C
682101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_10	0x0850
683101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_11	0x0854
684101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_12	0x0858
685101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_13	0x085C
686101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_14	0x0860
687101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_15	0x0864
688101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_16	0x0868
689101099Srwatson#define	BGE_TX_MAC_STATS_UCAST		0x086C
690101099Srwatson#define	BGE_TX_MAC_STATS_MCAST		0x0870
691101099Srwatson#define	BGE_TX_MAC_STATS_BCAST		0x0874
692101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_17	0x0878
693101099Srwatson#define	BGE_TX_MAC_STATS_RESERVE_18	0x087C
694101099Srwatson#define	BGE_RX_MAC_STATS_OCTESTS	0x0880
695101099Srwatson#define	BGE_RX_MAC_STATS_RESERVE_0	0x0884
696101099Srwatson#define	BGE_RX_MAC_STATS_FRAGMENTS	0x0888
697101099Srwatson#define	BGE_RX_MAC_STATS_UCAST		0x088C
698101099Srwatson#define	BGE_RX_MAC_STATS_MCAST		0x0890
699101099Srwatson#define	BGE_RX_MAC_STATS_BCAST		0x0894
700101099Srwatson#define	BGE_RX_MAC_STATS_FCS_ERRORS	0x0898
701101099Srwatson#define	BGE_RX_MAC_STATS_ALGIN_ERRORS	0x089C
702101099Srwatson#define	BGE_RX_MAC_STATS_XON_RCVD	0x08A0
703101099Srwatson#define	BGE_RX_MAC_STATS_XOFF_RCVD	0x08A4
704101099Srwatson#define	BGE_RX_MAC_STATS_CTRL_RCVD	0x08A8
705101099Srwatson#define	BGE_RX_MAC_STATS_XOFF_ENTERED	0x08AC
706101099Srwatson#define	BGE_RX_MAC_STATS_FRAME_TOO_LONG	0x08B0
707101099Srwatson#define	BGE_RX_MAC_STATS_JABBERS	0x08B4
708101099Srwatson#define	BGE_RX_MAC_STATS_UNDERSIZE	0x08B8
709101099Srwatson
710101099Srwatson/* Ethernet MAC Mode register */
711101099Srwatson#define	BGE_MACMODE_RESET		0x00000001
712101099Srwatson#define	BGE_MACMODE_HALF_DUPLEX		0x00000002
713101099Srwatson#define	BGE_MACMODE_PORTMODE		0x0000000C
714101099Srwatson#define	BGE_MACMODE_LOOPBACK		0x00000010
715101099Srwatson#define	BGE_MACMODE_RX_TAGGEDPKT	0x00000080
716101099Srwatson#define	BGE_MACMODE_TX_BURST_ENB	0x00000100
717101099Srwatson#define	BGE_MACMODE_MAX_DEFER		0x00000200
718101099Srwatson#define	BGE_MACMODE_LINK_POLARITY	0x00000400
719101099Srwatson#define	BGE_MACMODE_RX_STATS_ENB	0x00000800
720101099Srwatson#define	BGE_MACMODE_RX_STATS_CLEAR	0x00001000
721101099Srwatson#define	BGE_MACMODE_RX_STATS_FLUSH	0x00002000
722101099Srwatson#define	BGE_MACMODE_TX_STATS_ENB	0x00004000
723101099Srwatson#define	BGE_MACMODE_TX_STATS_CLEAR	0x00008000
724101099Srwatson#define	BGE_MACMODE_TX_STATS_FLUSH	0x00010000
725101099Srwatson#define	BGE_MACMODE_TBI_SEND_CFGS	0x00020000
726101099Srwatson#define	BGE_MACMODE_MAGIC_PKT_ENB	0x00040000
727101099Srwatson#define	BGE_MACMODE_ACPI_PWRON_ENB	0x00080000
728101099Srwatson#define	BGE_MACMODE_MIP_ENB		0x00100000
729101099Srwatson#define	BGE_MACMODE_TXDMA_ENB		0x00200000
730101099Srwatson#define	BGE_MACMODE_RXDMA_ENB		0x00400000
731101099Srwatson#define	BGE_MACMODE_FRMHDR_DMA_ENB	0x00800000
732101099Srwatson
733101099Srwatson#define	BGE_PORTMODE_NONE		0x00000000
734101099Srwatson#define	BGE_PORTMODE_MII		0x00000004
735101099Srwatson#define	BGE_PORTMODE_GMII		0x00000008
736101099Srwatson#define	BGE_PORTMODE_TBI		0x0000000C
737101099Srwatson
738101099Srwatson/* MAC Status register */
739101099Srwatson#define	BGE_MACSTAT_TBI_PCS_SYNCHED	0x00000001
740101099Srwatson#define	BGE_MACSTAT_TBI_SIGNAL_DETECT	0x00000002
741101099Srwatson#define	BGE_MACSTAT_RX_CFG		0x00000004
742101099Srwatson#define	BGE_MACSTAT_CFG_CHANGED		0x00000008
743101099Srwatson#define	BGE_MACSTAT_SYNC_CHANGED	0x00000010
744101099Srwatson#define	BGE_MACSTAT_PORT_DECODE_ERROR	0x00000400
745101099Srwatson#define	BGE_MACSTAT_LINK_CHANGED	0x00001000
746101099Srwatson#define	BGE_MACSTAT_MI_COMPLETE		0x00400000
747101099Srwatson#define	BGE_MACSTAT_MI_INTERRUPT	0x00800000
748101099Srwatson#define	BGE_MACSTAT_AUTOPOLL_ERROR	0x01000000
749101099Srwatson#define	BGE_MACSTAT_ODI_ERROR		0x02000000
750101099Srwatson#define	BGE_MACSTAT_RXSTAT_OFLOW	0x04000000
751101099Srwatson#define	BGE_MACSTAT_TXSTAT_OFLOW	0x08000000
752101099Srwatson
753101099Srwatson/* MAC Event Enable Register */
754101099Srwatson#define	BGE_EVTENB_PORT_DECODE_ERROR	0x00000400
755101099Srwatson#define	BGE_EVTENB_LINK_CHANGED		0x00001000
756101099Srwatson#define	BGE_EVTENB_MI_COMPLETE		0x00400000
757101099Srwatson#define	BGE_EVTENB_MI_INTERRUPT		0x00800000
758101099Srwatson#define	BGE_EVTENB_AUTOPOLL_ERROR	0x01000000
759101099Srwatson#define	BGE_EVTENB_ODI_ERROR		0x02000000
760101099Srwatson#define	BGE_EVTENB_RXSTAT_OFLOW		0x04000000
761101099Srwatson#define	BGE_EVTENB_TXSTAT_OFLOW		0x08000000
762101099Srwatson
763101099Srwatson/* LED Control Register */
764101099Srwatson#define	BGE_LEDCTL_LINKLED_OVERRIDE	0x00000001
765101099Srwatson#define	BGE_LEDCTL_1000MBPS_LED		0x00000002
766101099Srwatson#define	BGE_LEDCTL_100MBPS_LED		0x00000004
767101099Srwatson#define	BGE_LEDCTL_10MBPS_LED		0x00000008
768101099Srwatson#define	BGE_LEDCTL_TRAFLED_OVERRIDE	0x00000010
769101099Srwatson#define	BGE_LEDCTL_TRAFLED_BLINK	0x00000020
770101099Srwatson#define	BGE_LEDCTL_TREFLED_BLINK_2	0x00000040
771101099Srwatson#define	BGE_LEDCTL_1000MBPS_STS		0x00000080
772101099Srwatson#define	BGE_LEDCTL_100MBPS_STS		0x00000100
773101099Srwatson#define	BGE_LEDCTL_10MBPS_STS		0x00000200
774101099Srwatson#define	BGE_LEDCTL_TRADLED_STS		0x00000400
775101099Srwatson#define	BGE_LEDCTL_BLINKPERIOD		0x7FF80000
776101099Srwatson#define	BGE_LEDCTL_BLINKPERIOD_OVERRIDE	0x80000000
777101099Srwatson
778101099Srwatson/* TX backoff seed register */
779101099Srwatson#define	BGE_TX_BACKOFF_SEED_MASK	0x3F
780101099Srwatson
781101099Srwatson/* Autopoll status register */
782101099Srwatson#define	BGE_AUTOPOLLSTS_ERROR		0x00000001
783101099Srwatson
784101099Srwatson/* Transmit MAC mode register */
785101099Srwatson#define	BGE_TXMODE_RESET		0x00000001
786101099Srwatson#define	BGE_TXMODE_ENABLE		0x00000002
787101099Srwatson#define	BGE_TXMODE_FLOWCTL_ENABLE	0x00000010
788101099Srwatson#define	BGE_TXMODE_BIGBACKOFF_ENABLE	0x00000020
789101099Srwatson#define	BGE_TXMODE_LONGPAUSE_ENABLE	0x00000040
790101099Srwatson#define	BGE_TXMODE_MBUF_LOCKUP_FIX	0x00000100
791101099Srwatson
792101099Srwatson/* Transmit MAC status register */
793101099Srwatson#define	BGE_TXSTAT_RX_XOFFED		0x00000001
794101099Srwatson#define	BGE_TXSTAT_SENT_XOFF		0x00000002
795101099Srwatson#define	BGE_TXSTAT_SENT_XON		0x00000004
796101099Srwatson#define	BGE_TXSTAT_LINK_UP		0x00000008
797101099Srwatson#define	BGE_TXSTAT_ODI_UFLOW		0x00000010
798101099Srwatson#define	BGE_TXSTAT_ODI_OFLOW		0x00000020
799101099Srwatson
800101099Srwatson/* Transmit MAC lengths register */
801101099Srwatson#define	BGE_TXLEN_SLOTTIME		0x000000FF
802101099Srwatson#define	BGE_TXLEN_IPG			0x00000F00
803101099Srwatson#define	BGE_TXLEN_CRS			0x00003000
804101099Srwatson
805101099Srwatson/* Receive MAC mode register */
806101099Srwatson#define	BGE_RXMODE_RESET		0x00000001
807101099Srwatson#define	BGE_RXMODE_ENABLE		0x00000002
808101099Srwatson#define	BGE_RXMODE_FLOWCTL_ENABLE	0x00000004
809101099Srwatson#define	BGE_RXMODE_RX_GIANTS		0x00000020
810101099Srwatson#define	BGE_RXMODE_RX_RUNTS		0x00000040
811101099Srwatson#define	BGE_RXMODE_8022_LENCHECK	0x00000080
812101099Srwatson#define	BGE_RXMODE_RX_PROMISC		0x00000100
813101099Srwatson#define	BGE_RXMODE_RX_NO_CRC_CHECK	0x00000200
814101099Srwatson#define	BGE_RXMODE_RX_KEEP_VLAN_DIAG	0x00000400
815101099Srwatson
816101099Srwatson/* Receive MAC status register */
817101099Srwatson#define	BGE_RXSTAT_REMOTE_XOFFED	0x00000001
818101099Srwatson#define	BGE_RXSTAT_RCVD_XOFF		0x00000002
819101099Srwatson#define	BGE_RXSTAT_RCVD_XON		0x00000004
820101099Srwatson
821101099Srwatson/* Receive Rules Control register */
822101099Srwatson#define	BGE_RXRULECTL_OFFSET		0x000000FF
823101099Srwatson#define	BGE_RXRULECTL_CLASS		0x00001F00
824101099Srwatson#define	BGE_RXRULECTL_HDRTYPE		0x0000E000
825101099Srwatson#define	BGE_RXRULECTL_COMPARE_OP	0x00030000
826101099Srwatson#define	BGE_RXRULECTL_MAP		0x01000000
827101099Srwatson#define	BGE_RXRULECTL_DISCARD		0x02000000
828101099Srwatson#define	BGE_RXRULECTL_MASK		0x04000000
829101099Srwatson#define	BGE_RXRULECTL_ACTIVATE_PROC3	0x08000000
830101099Srwatson#define	BGE_RXRULECTL_ACTIVATE_PROC2	0x10000000
831101099Srwatson#define	BGE_RXRULECTL_ACTIVATE_PROC1	0x20000000
832101099Srwatson#define	BGE_RXRULECTL_ANDWITHNEXT	0x40000000
833101099Srwatson
834101099Srwatson/* Receive Rules Mask register */
835101099Srwatson#define	BGE_RXRULEMASK_VALUE		0x0000FFFF
836101099Srwatson#define	BGE_RXRULEMASK_MASKVAL		0xFFFF0000
837101099Srwatson
838101099Srwatson/* SERDES configuration register */
839101099Srwatson#define	BGE_SERDESCFG_RXR		0x00000007 /* phase interpolator */
840101099Srwatson#define	BGE_SERDESCFG_RXG		0x00000018 /* rx gain setting */
841101099Srwatson#define	BGE_SERDESCFG_RXEDGESEL		0x00000040 /* rising/falling egde */
842101099Srwatson#define	BGE_SERDESCFG_TX_BIAS		0x00000380 /* TXDAC bias setting */
843101099Srwatson#define	BGE_SERDESCFG_IBMAX		0x00000400 /* bias current +25% */
844101099Srwatson#define	BGE_SERDESCFG_IBMIN		0x00000800 /* bias current -25% */
845101099Srwatson#define	BGE_SERDESCFG_TXMODE		0x00001000
846101099Srwatson#define	BGE_SERDESCFG_TXEDGESEL		0x00002000 /* rising/falling edge */
847101099Srwatson#define	BGE_SERDESCFG_MODE		0x00004000 /* TXCP/TXCN disabled */
848101099Srwatson#define	BGE_SERDESCFG_PLLTEST		0x00008000 /* PLL test mode */
849101099Srwatson#define	BGE_SERDESCFG_CDET		0x00010000 /* comma detect enable */
850101099Srwatson#define	BGE_SERDESCFG_TBILOOP		0x00020000 /* local loopback */
851101099Srwatson#define	BGE_SERDESCFG_REMLOOP		0x00040000 /* remote loopback */
852101099Srwatson#define	BGE_SERDESCFG_INVPHASE		0x00080000 /* Reverse 125Mhz clock */
853101099Srwatson#define	BGE_SERDESCFG_12REGCTL		0x00300000 /* 1.2v regulator ctl */
854101099Srwatson#define	BGE_SERDESCFG_REGCTL		0x00C00000 /* regulator ctl (2.5v) */
855101099Srwatson
856101099Srwatson/* SERDES status register */
857101099Srwatson#define	BGE_SERDESSTS_RXSTAT		0x0000000F /* receive status bits */
858101099Srwatson#define	BGE_SERDESSTS_CDET		0x00000010 /* comma code detected */
859101099Srwatson
860101099Srwatson/* SGDIG config (not documented) */
861101099Srwatson#define	BGE_SGDIGCFG_PAUSE_CAP		0x00000800
862101099Srwatson#define	BGE_SGDIGCFG_ASYM_PAUSE		0x00001000
863101099Srwatson#define	BGE_SGDIGCFG_SEND		0x40000000
864101099Srwatson#define	BGE_SGDIGCFG_AUTO		0x80000000
865101099Srwatson
866101099Srwatson/* SGDIG status (not documented) */
867101099Srwatson#define	BGE_SGDIGSTS_DONE		0x00000002
868101099Srwatson#define	BGE_SGDIGSTS_IS_SERDES		0x00000100
869101099Srwatson#define	BGE_SGDIGSTS_PAUSE_CAP		0x00080000
870101099Srwatson#define	BGE_SGDIGSTS_ASYM_PAUSE		0x00100000
871101099Srwatson
872101099Srwatson
873101099Srwatson/* MI communication register */
874101099Srwatson#define	BGE_MICOMM_DATA			0x0000FFFF
875101099Srwatson#define	BGE_MICOMM_REG			0x001F0000
876101099Srwatson#define	BGE_MICOMM_PHY			0x03E00000
877101099Srwatson#define	BGE_MICOMM_CMD			0x0C000000
878101099Srwatson#define	BGE_MICOMM_READFAIL		0x10000000
879101099Srwatson#define	BGE_MICOMM_BUSY			0x20000000
880101099Srwatson
881101099Srwatson#define	BGE_MIREG(x)	((x & 0x1F) << 16)
882101099Srwatson#define	BGE_MIPHY(x)	((x & 0x1F) << 21)
883101099Srwatson#define	BGE_MICMD_WRITE			0x04000000
884101099Srwatson#define	BGE_MICMD_READ			0x08000000
885101099Srwatson
886101099Srwatson/* MI status register */
887101099Srwatson#define	BGE_MISTS_LINK			0x00000001
888101099Srwatson#define	BGE_MISTS_10MBPS		0x00000002
889101099Srwatson
890101099Srwatson#define	BGE_MIMODE_CLK_10MHZ		0x00000001
891101099Srwatson#define	BGE_MIMODE_SHORTPREAMBLE	0x00000002
892101099Srwatson#define	BGE_MIMODE_AUTOPOLL		0x00000010
893101099Srwatson#define	BGE_MIMODE_CLKCNT		0x001F0000
894101099Srwatson#define	BGE_MIMODE_500KHZ_CONST		0x00008000
895101099Srwatson#define	BGE_MIMODE_BASE			0x000C0000
896101099Srwatson
897101099Srwatson
898101099Srwatson/*
899101099Srwatson * Send data initiator control registers.
900101099Srwatson */
901101099Srwatson#define	BGE_SDI_MODE			0x0C00
902101099Srwatson#define	BGE_SDI_STATUS			0x0C04
903101099Srwatson#define	BGE_SDI_STATS_CTL		0x0C08
904101099Srwatson#define	BGE_SDI_STATS_ENABLE_MASK	0x0C0C
905101099Srwatson#define	BGE_SDI_STATS_INCREMENT_MASK	0x0C10
906101099Srwatson#define	BGE_ISO_PKT_TX			0x0C20
907101099Srwatson#define	BGE_LOCSTATS_COS0		0x0C80
908101099Srwatson#define	BGE_LOCSTATS_COS1		0x0C84
909101099Srwatson#define	BGE_LOCSTATS_COS2		0x0C88
910101099Srwatson#define	BGE_LOCSTATS_COS3		0x0C8C
911101099Srwatson#define	BGE_LOCSTATS_COS4		0x0C90
912101099Srwatson#define	BGE_LOCSTATS_COS5		0x0C84
913101099Srwatson#define	BGE_LOCSTATS_COS6		0x0C98
914101099Srwatson#define	BGE_LOCSTATS_COS7		0x0C9C
915101099Srwatson#define	BGE_LOCSTATS_COS8		0x0CA0
916101099Srwatson#define	BGE_LOCSTATS_COS9		0x0CA4
917101099Srwatson#define	BGE_LOCSTATS_COS10		0x0CA8
918101099Srwatson#define	BGE_LOCSTATS_COS11		0x0CAC
919101099Srwatson#define	BGE_LOCSTATS_COS12		0x0CB0
920101099Srwatson#define	BGE_LOCSTATS_COS13		0x0CB4
921101099Srwatson#define	BGE_LOCSTATS_COS14		0x0CB8
922101099Srwatson#define	BGE_LOCSTATS_COS15		0x0CBC
923101099Srwatson#define	BGE_LOCSTATS_DMA_RQ_FULL	0x0CC0
924101099Srwatson#define	BGE_LOCSTATS_DMA_HIPRIO_RQ_FULL	0x0CC4
925101099Srwatson#define	BGE_LOCSTATS_SDC_QUEUE_FULL	0x0CC8
926101099Srwatson#define	BGE_LOCSTATS_NIC_SENDPROD_SET	0x0CCC
927101099Srwatson#define	BGE_LOCSTATS_STATS_UPDATED	0x0CD0
928101099Srwatson#define	BGE_LOCSTATS_IRQS		0x0CD4
929101099Srwatson#define	BGE_LOCSTATS_AVOIDED_IRQS	0x0CD8
930101099Srwatson#define	BGE_LOCSTATS_TX_THRESH_HIT	0x0CDC
931101099Srwatson
932101099Srwatson/* Send Data Initiator mode register */
933101099Srwatson#define	BGE_SDIMODE_RESET		0x00000001
934101099Srwatson#define	BGE_SDIMODE_ENABLE		0x00000002
935101099Srwatson#define	BGE_SDIMODE_STATS_OFLOW_ATTN	0x00000004
936101099Srwatson#define	BGE_SDIMODE_HW_LSO_PRE_DMA	0x00000008
937101099Srwatson
938101099Srwatson/* Send Data Initiator stats register */
939101099Srwatson#define	BGE_SDISTAT_STATS_OFLOW_ATTN	0x00000004
940101099Srwatson
941101099Srwatson/* Send Data Initiator stats control register */
942101099Srwatson#define	BGE_SDISTATSCTL_ENABLE		0x00000001
943101099Srwatson#define	BGE_SDISTATSCTL_FASTER		0x00000002
944101099Srwatson#define	BGE_SDISTATSCTL_CLEAR		0x00000004
945101099Srwatson#define	BGE_SDISTATSCTL_FORCEFLUSH	0x00000008
946101099Srwatson#define	BGE_SDISTATSCTL_FORCEZERO	0x00000010
947101099Srwatson
948101099Srwatson/*
949101099Srwatson * Send Data Completion Control registers
950101099Srwatson */
951101099Srwatson#define	BGE_SDC_MODE			0x1000
952101099Srwatson#define	BGE_SDC_STATUS			0x1004
953101099Srwatson
954101099Srwatson/* Send Data completion mode register */
955101099Srwatson#define	BGE_SDCMODE_RESET		0x00000001
956101099Srwatson#define	BGE_SDCMODE_ENABLE		0x00000002
957101099Srwatson#define	BGE_SDCMODE_ATTN		0x00000004
958101099Srwatson#define	BGE_SDCMODE_CDELAY		0x00000010
959101099Srwatson
960101099Srwatson/* Send Data completion status register */
961101099Srwatson#define	BGE_SDCSTAT_ATTN		0x00000004
962101099Srwatson
963101099Srwatson/*
964101099Srwatson * Send BD Ring Selector Control registers
965101099Srwatson */
966101099Srwatson#define	BGE_SRS_MODE			0x1400
967101099Srwatson#define	BGE_SRS_STATUS			0x1404
968101099Srwatson#define	BGE_SRS_HWDIAG			0x1408
969101099Srwatson#define	BGE_SRS_LOC_NIC_CONS0		0x1440
970101099Srwatson#define	BGE_SRS_LOC_NIC_CONS1		0x1444
971101099Srwatson#define	BGE_SRS_LOC_NIC_CONS2		0x1448
972101099Srwatson#define	BGE_SRS_LOC_NIC_CONS3		0x144C
973101099Srwatson#define	BGE_SRS_LOC_NIC_CONS4		0x1450
974101099Srwatson#define	BGE_SRS_LOC_NIC_CONS5		0x1454
975101099Srwatson#define	BGE_SRS_LOC_NIC_CONS6		0x1458
976101099Srwatson#define	BGE_SRS_LOC_NIC_CONS7		0x145C
977101099Srwatson#define	BGE_SRS_LOC_NIC_CONS8		0x1460
978101099Srwatson#define	BGE_SRS_LOC_NIC_CONS9		0x1464
979101099Srwatson#define	BGE_SRS_LOC_NIC_CONS10		0x1468
980101099Srwatson#define	BGE_SRS_LOC_NIC_CONS11		0x146C
981101099Srwatson#define	BGE_SRS_LOC_NIC_CONS12		0x1470
982101099Srwatson#define	BGE_SRS_LOC_NIC_CONS13		0x1474
983101099Srwatson#define	BGE_SRS_LOC_NIC_CONS14		0x1478
984101099Srwatson#define	BGE_SRS_LOC_NIC_CONS15		0x147C
985101099Srwatson
986101099Srwatson/* Send BD Ring Selector Mode register */
987101099Srwatson#define	BGE_SRSMODE_RESET		0x00000001
988101099Srwatson#define	BGE_SRSMODE_ENABLE		0x00000002
989101099Srwatson#define	BGE_SRSMODE_ATTN		0x00000004
990101099Srwatson
991101099Srwatson/* Send BD Ring Selector Status register */
992101099Srwatson#define	BGE_SRSSTAT_ERROR		0x00000004
993101099Srwatson
994101099Srwatson/* Send BD Ring Selector HW Diagnostics register */
995101099Srwatson#define	BGE_SRSHWDIAG_STATE		0x0000000F
996101099Srwatson#define	BGE_SRSHWDIAG_CURRINGNUM	0x000000F0
997101099Srwatson#define	BGE_SRSHWDIAG_STAGEDRINGNUM	0x00000F00
998101099Srwatson#define	BGE_SRSHWDIAG_RINGNUM_IN_MBX	0x0000F000
999101099Srwatson
1000101099Srwatson/*
1001101099Srwatson * Send BD Initiator Selector Control registers
1002101099Srwatson */
1003101099Srwatson#define	BGE_SBDI_MODE			0x1800
1004101099Srwatson#define	BGE_SBDI_STATUS			0x1804
1005101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD0		0x1808
1006101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD1		0x180C
1007101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD2		0x1810
1008101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD3		0x1814
1009101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD4		0x1818
1010101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD5		0x181C
1011101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD6		0x1820
1012101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD7		0x1824
1013101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD8		0x1828
1014101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD9		0x182C
1015101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD10		0x1830
1016101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD11		0x1834
1017101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD12		0x1838
1018101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD13		0x183C
1019101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD14		0x1840
1020101099Srwatson#define	BGE_SBDI_LOC_NIC_PROD15		0x1844
1021101099Srwatson
1022101099Srwatson/* Send BD Initiator Mode register */
1023101099Srwatson#define	BGE_SBDIMODE_RESET		0x00000001
1024101099Srwatson#define	BGE_SBDIMODE_ENABLE		0x00000002
1025101099Srwatson#define	BGE_SBDIMODE_ATTN		0x00000004
1026101099Srwatson
1027101099Srwatson/* Send BD Initiator Status register */
1028101099Srwatson#define	BGE_SBDISTAT_ERROR		0x00000004
1029101099Srwatson
1030101099Srwatson/*
1031101099Srwatson * Send BD Completion Control registers
1032101099Srwatson */
1033101099Srwatson#define	BGE_SBDC_MODE			0x1C00
1034101099Srwatson#define	BGE_SBDC_STATUS			0x1C04
1035101099Srwatson
1036101099Srwatson/* Send BD Completion Control Mode register */
1037101099Srwatson#define	BGE_SBDCMODE_RESET		0x00000001
1038101099Srwatson#define	BGE_SBDCMODE_ENABLE		0x00000002
1039101099Srwatson#define	BGE_SBDCMODE_ATTN		0x00000004
1040101099Srwatson
1041101099Srwatson/* Send BD Completion Control Status register */
1042101099Srwatson#define	BGE_SBDCSTAT_ATTN		0x00000004
1043101099Srwatson
1044101099Srwatson/*
1045101099Srwatson * Receive List Placement Control registers
1046101099Srwatson */
1047101099Srwatson#define	BGE_RXLP_MODE			0x2000
1048101099Srwatson#define	BGE_RXLP_STATUS			0x2004
1049101099Srwatson#define	BGE_RXLP_SEL_LIST_LOCK		0x2008
1050101099Srwatson#define	BGE_RXLP_SEL_NON_EMPTY_BITS	0x200C
1051101099Srwatson#define	BGE_RXLP_CFG			0x2010
1052101099Srwatson#define	BGE_RXLP_STATS_CTL		0x2014
1053101099Srwatson#define	BGE_RXLP_STATS_ENABLE_MASK	0x2018
1054101099Srwatson#define	BGE_RXLP_STATS_INCREMENT_MASK	0x201C
1055101099Srwatson#define	BGE_RXLP_HEAD0			0x2100
1056101099Srwatson#define	BGE_RXLP_TAIL0			0x2104
1057101099Srwatson#define	BGE_RXLP_COUNT0			0x2108
1058101099Srwatson#define	BGE_RXLP_HEAD1			0x2110
1059101099Srwatson#define	BGE_RXLP_TAIL1			0x2114
1060101099Srwatson#define	BGE_RXLP_COUNT1			0x2118
1061101099Srwatson#define	BGE_RXLP_HEAD2			0x2120
1062101099Srwatson#define	BGE_RXLP_TAIL2			0x2124
1063101099Srwatson#define	BGE_RXLP_COUNT2			0x2128
1064101099Srwatson#define	BGE_RXLP_HEAD3			0x2130
1065101099Srwatson#define	BGE_RXLP_TAIL3			0x2134
1066101099Srwatson#define	BGE_RXLP_COUNT3			0x2138
1067101099Srwatson#define	BGE_RXLP_HEAD4			0x2140
1068101099Srwatson#define	BGE_RXLP_TAIL4			0x2144
1069101099Srwatson#define	BGE_RXLP_COUNT4			0x2148
1070101099Srwatson#define	BGE_RXLP_HEAD5			0x2150
1071101099Srwatson#define	BGE_RXLP_TAIL5			0x2154
1072101099Srwatson#define	BGE_RXLP_COUNT5			0x2158
1073101099Srwatson#define	BGE_RXLP_HEAD6			0x2160
1074101099Srwatson#define	BGE_RXLP_TAIL6			0x2164
1075101099Srwatson#define	BGE_RXLP_COUNT6			0x2168
1076101099Srwatson#define	BGE_RXLP_HEAD7			0x2170
1077101099Srwatson#define	BGE_RXLP_TAIL7			0x2174
1078103759Srwatson#define	BGE_RXLP_COUNT7			0x2178
1079101099Srwatson#define	BGE_RXLP_HEAD8			0x2180
1080101099Srwatson#define	BGE_RXLP_TAIL8			0x2184
1081101099Srwatson#define	BGE_RXLP_COUNT8			0x2188
1082101099Srwatson#define	BGE_RXLP_HEAD9			0x2190
1083103761Srwatson#define	BGE_RXLP_TAIL9			0x2194
1084101099Srwatson#define	BGE_RXLP_COUNT9			0x2198
1085101099Srwatson#define	BGE_RXLP_HEAD10			0x21A0
1086101099Srwatson#define	BGE_RXLP_TAIL10			0x21A4
1087101099Srwatson#define	BGE_RXLP_COUNT10		0x21A8
1088101099Srwatson#define	BGE_RXLP_HEAD11			0x21B0
1089103759Srwatson#define	BGE_RXLP_TAIL11			0x21B4
1090101099Srwatson#define	BGE_RXLP_COUNT11		0x21B8
1091101099Srwatson#define	BGE_RXLP_HEAD12			0x21C0
1092101099Srwatson#define	BGE_RXLP_TAIL12			0x21C4
1093101099Srwatson#define	BGE_RXLP_COUNT12		0x21C8
1094101099Srwatson#define	BGE_RXLP_HEAD13			0x21D0
1095101099Srwatson#define	BGE_RXLP_TAIL13			0x21D4
1096101099Srwatson#define	BGE_RXLP_COUNT13		0x21D8
1097101099Srwatson#define	BGE_RXLP_HEAD14			0x21E0
1098101099Srwatson#define	BGE_RXLP_TAIL14			0x21E4
1099101099Srwatson#define	BGE_RXLP_COUNT14		0x21E8
1100101099Srwatson#define	BGE_RXLP_HEAD15			0x21F0
1101101099Srwatson#define	BGE_RXLP_TAIL15			0x21F4
1102101099Srwatson#define	BGE_RXLP_COUNT15		0x21F8
1103101099Srwatson#define	BGE_RXLP_LOCSTAT_COS0		0x2200
1104101099Srwatson#define	BGE_RXLP_LOCSTAT_COS1		0x2204
1105101099Srwatson#define	BGE_RXLP_LOCSTAT_COS2		0x2208
1106101099Srwatson#define	BGE_RXLP_LOCSTAT_COS3		0x220C
1107101099Srwatson#define	BGE_RXLP_LOCSTAT_COS4		0x2210
1108101099Srwatson#define	BGE_RXLP_LOCSTAT_COS5		0x2214
1109101099Srwatson#define	BGE_RXLP_LOCSTAT_COS6		0x2218
1110101099Srwatson#define	BGE_RXLP_LOCSTAT_COS7		0x221C
1111101099Srwatson#define	BGE_RXLP_LOCSTAT_COS8		0x2220
1112101099Srwatson#define	BGE_RXLP_LOCSTAT_COS9		0x2224
1113101099Srwatson#define	BGE_RXLP_LOCSTAT_COS10		0x2228
1114101099Srwatson#define	BGE_RXLP_LOCSTAT_COS11		0x222C
1115103759Srwatson#define	BGE_RXLP_LOCSTAT_COS12		0x2230
1116101099Srwatson#define	BGE_RXLP_LOCSTAT_COS13		0x2234
1117101099Srwatson#define	BGE_RXLP_LOCSTAT_COS14		0x2238
1118101099Srwatson#define	BGE_RXLP_LOCSTAT_COS15		0x223C
1119101099Srwatson#define	BGE_RXLP_LOCSTAT_FILTDROP	0x2240
1120101099Srwatson#define	BGE_RXLP_LOCSTAT_DMA_WRQ_FULL	0x2244
1121101099Srwatson#define	BGE_RXLP_LOCSTAT_DMA_HPWRQ_FULL	0x2248
1122101099Srwatson#define	BGE_RXLP_LOCSTAT_OUT_OF_BDS	0x224C
1123101099Srwatson#define	BGE_RXLP_LOCSTAT_IFIN_DROPS	0x2250
1124101099Srwatson#define	BGE_RXLP_LOCSTAT_IFIN_ERRORS	0x2254
1125102115Srwatson#define	BGE_RXLP_LOCSTAT_RXTHRESH_HIT	0x2258
1126102115Srwatson
1127101099Srwatson
1128101099Srwatson/* Receive List Placement mode register */
1129101099Srwatson#define	BGE_RXLPMODE_RESET		0x00000001
1130101099Srwatson#define	BGE_RXLPMODE_ENABLE		0x00000002
1131101099Srwatson#define	BGE_RXLPMODE_CLASS0_ATTN	0x00000004
1132101099Srwatson#define	BGE_RXLPMODE_MAPOUTRANGE_ATTN	0x00000008
1133101099Srwatson#define	BGE_RXLPMODE_STATSOFLOW_ATTN	0x00000010
1134101099Srwatson
1135101099Srwatson/* Receive List Placement Status register */
1136102115Srwatson#define	BGE_RXLPSTAT_CLASS0_ATTN	0x00000004
1137102115Srwatson#define	BGE_RXLPSTAT_MAPOUTRANGE_ATTN	0x00000008
1138101099Srwatson#define	BGE_RXLPSTAT_STATSOFLOW_ATTN	0x00000010
1139101099Srwatson
1140101099Srwatson/*
1141101099Srwatson * Receive Data and Receive BD Initiator Control Registers
1142101099Srwatson */
1143102115Srwatson#define	BGE_RDBDI_MODE			0x2400
1144102115Srwatson#define	BGE_RDBDI_STATUS		0x2404
1145102115Srwatson#define	BGE_RX_JUMBO_RCB_HADDR_HI	0x2440
1146102115Srwatson#define	BGE_RX_JUMBO_RCB_HADDR_LO	0x2444
1147102115Srwatson#define	BGE_RX_JUMBO_RCB_MAXLEN_FLAGS	0x2448
1148102115Srwatson#define	BGE_RX_JUMBO_RCB_NICADDR	0x244C
1149102115Srwatson#define	BGE_RX_STD_RCB_HADDR_HI		0x2450
1150102115Srwatson#define	BGE_RX_STD_RCB_HADDR_LO		0x2454
1151102115Srwatson#define	BGE_RX_STD_RCB_MAXLEN_FLAGS	0x2458
1152102115Srwatson#define	BGE_RX_STD_RCB_NICADDR		0x245C
1153102115Srwatson#define	BGE_RX_MINI_RCB_HADDR_HI	0x2460
1154102115Srwatson#define	BGE_RX_MINI_RCB_HADDR_LO	0x2464
1155102115Srwatson#define	BGE_RX_MINI_RCB_MAXLEN_FLAGS	0x2468
1156102115Srwatson#define	BGE_RX_MINI_RCB_NICADDR		0x246C
1157102115Srwatson#define	BGE_RDBDI_JUMBO_RX_CONS		0x2470
1158102115Srwatson#define	BGE_RDBDI_STD_RX_CONS		0x2474
1159102115Srwatson#define	BGE_RDBDI_MINI_RX_CONS		0x2478
1160102115Srwatson#define	BGE_RDBDI_RETURN_PROD0		0x2480
1161101099Srwatson#define	BGE_RDBDI_RETURN_PROD1		0x2484
1162101099Srwatson#define	BGE_RDBDI_RETURN_PROD2		0x2488
1163101099Srwatson#define	BGE_RDBDI_RETURN_PROD3		0x248C
1164101099Srwatson#define	BGE_RDBDI_RETURN_PROD4		0x2490
1165101099Srwatson#define	BGE_RDBDI_RETURN_PROD5		0x2494
1166101099Srwatson#define	BGE_RDBDI_RETURN_PROD6		0x2498
1167101099Srwatson#define	BGE_RDBDI_RETURN_PROD7		0x249C
1168101099Srwatson#define	BGE_RDBDI_RETURN_PROD8		0x24A0
1169101099Srwatson#define	BGE_RDBDI_RETURN_PROD9		0x24A4
1170101099Srwatson#define	BGE_RDBDI_RETURN_PROD10		0x24A8
1171101099Srwatson#define	BGE_RDBDI_RETURN_PROD11		0x24AC
1172101099Srwatson#define	BGE_RDBDI_RETURN_PROD12		0x24B0
1173101099Srwatson#define	BGE_RDBDI_RETURN_PROD13		0x24B4
1174101099Srwatson#define	BGE_RDBDI_RETURN_PROD14		0x24B8
1175101099Srwatson#define	BGE_RDBDI_RETURN_PROD15		0x24BC
1176101099Srwatson#define	BGE_RDBDI_HWDIAG		0x24C0
1177101099Srwatson
1178101099Srwatson
1179101099Srwatson/* Receive Data and Receive BD Initiator Mode register */
1180101099Srwatson#define	BGE_RDBDIMODE_RESET		0x00000001
1181101099Srwatson#define	BGE_RDBDIMODE_ENABLE		0x00000002
1182101099Srwatson#define	BGE_RDBDIMODE_JUMBO_ATTN	0x00000004
1183101099Srwatson#define	BGE_RDBDIMODE_GIANT_ATTN	0x00000008
1184101099Srwatson#define	BGE_RDBDIMODE_BADRINGSZ_ATTN	0x00000010
1185101099Srwatson
1186101099Srwatson/* Receive Data and Receive BD Initiator Status register */
1187101099Srwatson#define	BGE_RDBDISTAT_JUMBO_ATTN	0x00000004
1188101099Srwatson#define	BGE_RDBDISTAT_GIANT_ATTN	0x00000008
1189101099Srwatson#define	BGE_RDBDISTAT_BADRINGSZ_ATTN	0x00000010
1190101099Srwatson
1191101099Srwatson
1192101099Srwatson/*
1193101099Srwatson * Receive Data Completion Control registers
1194101099Srwatson */
1195102115Srwatson#define	BGE_RDC_MODE			0x2800
1196102115Srwatson
1197102115Srwatson/* Receive Data Completion Mode register */
1198102115Srwatson#define	BGE_RDCMODE_RESET		0x00000001
1199102115Srwatson#define	BGE_RDCMODE_ENABLE		0x00000002
1200102115Srwatson#define	BGE_RDCMODE_ATTN		0x00000004
1201102115Srwatson
1202102115Srwatson/*
1203102115Srwatson * Receive BD Initiator Control registers
1204102115Srwatson */
1205102115Srwatson#define	BGE_RBDI_MODE			0x2C00
1206102115Srwatson#define	BGE_RBDI_STATUS			0x2C04
1207102115Srwatson#define	BGE_RBDI_NIC_JUMBO_BD_PROD	0x2C08
1208102115Srwatson#define	BGE_RBDI_NIC_STD_BD_PROD	0x2C0C
1209102115Srwatson#define	BGE_RBDI_NIC_MINI_BD_PROD	0x2C10
1210102115Srwatson#define	BGE_RBDI_MINI_REPL_THRESH	0x2C14
1211102115Srwatson#define	BGE_RBDI_STD_REPL_THRESH	0x2C18
1212102115Srwatson#define	BGE_RBDI_JUMBO_REPL_THRESH	0x2C1C
1213102115Srwatson
1214102115Srwatson#define	BGE_STD_REPLENISH_LWM		0x2D00
1215102115Srwatson#define	BGE_JMB_REPLENISH_LWM		0x2D04
1216102115Srwatson
1217102115Srwatson/* Receive BD Initiator Mode register */
1218102115Srwatson#define	BGE_RBDIMODE_RESET		0x00000001
1219102115Srwatson#define	BGE_RBDIMODE_ENABLE		0x00000002
1220102115Srwatson#define	BGE_RBDIMODE_ATTN		0x00000004
1221102115Srwatson
1222102115Srwatson/* Receive BD Initiator Status register */
1223102115Srwatson#define	BGE_RBDISTAT_ATTN		0x00000004
1224102115Srwatson
1225102115Srwatson/*
1226102115Srwatson * Receive BD Completion Control registers
1227102115Srwatson */
1228102115Srwatson#define	BGE_RBDC_MODE			0x3000
1229102115Srwatson#define	BGE_RBDC_STATUS			0x3004
1230102115Srwatson#define	BGE_RBDC_JUMBO_BD_PROD		0x3008
1231101099Srwatson#define	BGE_RBDC_STD_BD_PROD		0x300C
1232101099Srwatson#define	BGE_RBDC_MINI_BD_PROD		0x3010
1233101099Srwatson
1234101099Srwatson/* Receive BD completion mode register */
1235101099Srwatson#define	BGE_RBDCMODE_RESET		0x00000001
1236101099Srwatson#define	BGE_RBDCMODE_ENABLE		0x00000002
1237101099Srwatson#define	BGE_RBDCMODE_ATTN		0x00000004
1238101099Srwatson
1239101099Srwatson/* Receive BD completion status register */
1240101099Srwatson#define	BGE_RBDCSTAT_ERROR		0x00000004
1241101099Srwatson
1242101099Srwatson/*
1243101099Srwatson * Receive List Selector Control registers
1244101099Srwatson */
1245101099Srwatson#define	BGE_RXLS_MODE			0x3400
1246101099Srwatson#define	BGE_RXLS_STATUS			0x3404
1247101099Srwatson
1248101099Srwatson/* Receive List Selector Mode register */
1249101099Srwatson#define	BGE_RXLSMODE_RESET		0x00000001
1250101099Srwatson#define	BGE_RXLSMODE_ENABLE		0x00000002
1251101099Srwatson#define	BGE_RXLSMODE_ATTN		0x00000004
1252101099Srwatson
1253101099Srwatson/* Receive List Selector Status register */
1254103759Srwatson#define	BGE_RXLSSTAT_ERROR		0x00000004
1255101099Srwatson
1256101099Srwatson#define	BGE_CPMU_CTRL			0x3600
1257101099Srwatson#define	BGE_CPMU_LSPD_10MB_CLK		0x3604
1258101099Srwatson#define	BGE_CPMU_LSPD_1000MB_CLK	0x360C
1259101099Srwatson#define	BGE_CPMU_LNK_AWARE_PWRMD	0x3610
1260103759Srwatson#define	BGE_CPMU_HST_ACC		0x361C
1261101099Srwatson#define	BGE_CPMU_CLCK_STAT		0x3630
1262101099Srwatson#define	BGE_CPMU_MUTEX_REQ		0x365C
1263101099Srwatson#define	BGE_CPMU_MUTEX_GNT		0x3660
1264101099Srwatson#define	BGE_CPMU_PHY_STRAP		0x3664
1265101099Srwatson
1266101099Srwatson/* Central Power Management Unit (CPMU) register */
1267101099Srwatson#define	BGE_CPMU_CTRL_LINK_IDLE_MODE	0x00000200
1268101099Srwatson#define	BGE_CPMU_CTRL_LINK_AWARE_MODE	0x00000400
1269101099Srwatson#define	BGE_CPMU_CTRL_LINK_SPEED_MODE	0x00004000
1270101099Srwatson#define	BGE_CPMU_CTRL_GPHY_10MB_RXONLY	0x00010000
1271101099Srwatson
1272101099Srwatson/* Link Speed 10MB/No Link Power Mode Clock Policy register */
1273101099Srwatson#define	BGE_CPMU_LSPD_10MB_MACCLK_MASK	0x001F0000
1274103759Srwatson#define	BGE_CPMU_LSPD_10MB_MACCLK_6_25	0x00130000
1275101099Srwatson
1276101099Srwatson/* Link Speed 1000MB Power Mode Clock Policy register */
1277101099Srwatson#define	BGE_CPMU_LSPD_1000MB_MACCLK_62_5	0x00000000
1278101099Srwatson#define	BGE_CPMU_LSPD_1000MB_MACCLK_12_5	0x00110000
1279101099Srwatson#define	BGE_CPMU_LSPD_1000MB_MACCLK_MASK	0x001F0000
1280103759Srwatson
1281101099Srwatson/* Link Aware Power Mode Clock Policy register */
1282101099Srwatson#define	BGE_CPMU_LNK_AWARE_MACCLK_MASK	0x001F0000
1283101099Srwatson#define	BGE_CPMU_LNK_AWARE_MACCLK_6_25	0x00130000
1284101099Srwatson
1285101099Srwatson#define	BGE_CPMU_HST_ACC_MACCLK_MASK	0x001F0000
1286101099Srwatson#define	BGE_CPMU_HST_ACC_MACCLK_6_25	0x00130000
1287101099Srwatson
1288101099Srwatson/* CPMU Clock Status register */
1289101099Srwatson#define	BGE_CPMU_CLCK_STAT_MAC_CLCK_MASK	0x001F0000
1290101099Srwatson#define	BGE_CPMU_CLCK_STAT_MAC_CLCK_62_5	0x00000000
1291101934Srwatson#define	BGE_CPMU_CLCK_STAT_MAC_CLCK_12_5	0x00110000
1292101099Srwatson#define	BGE_CPMU_CLCK_STAT_MAC_CLCK_6_25	0x00130000
1293101099Srwatson
1294101099Srwatson/* CPMU Mutex Request register */
1295101099Srwatson#define	BGE_CPMU_MUTEX_REQ_DRIVER	0x00001000
1296101099Srwatson#define	BGE_CPMU_MUTEX_GNT_DRIVER	0x00001000
1297101099Srwatson
1298101099Srwatson/* CPMU GPHY Strap register */
1299101099Srwatson#define	BGE_CPMU_PHY_STRAP_IS_SERDES	0x00000020
1300101099Srwatson
1301101099Srwatson/*
1302101099Srwatson * Mbuf Cluster Free registers (has nothing to do with BSD mbufs)
1303101099Srwatson */
1304101099Srwatson#define	BGE_MBCF_MODE			0x3800
1305101099Srwatson#define	BGE_MBCF_STATUS			0x3804
1306101099Srwatson
1307101099Srwatson/* Mbuf Cluster Free mode register */
1308101099Srwatson#define	BGE_MBCFMODE_RESET		0x00000001
1309101099Srwatson#define	BGE_MBCFMODE_ENABLE		0x00000002
1310101099Srwatson#define	BGE_MBCFMODE_ATTN		0x00000004
1311101099Srwatson
1312101099Srwatson/* Mbuf Cluster Free status register */
1313101099Srwatson#define	BGE_MBCFSTAT_ERROR		0x00000004
1314101099Srwatson
1315101099Srwatson/*
1316101099Srwatson * Host Coalescing Control registers
1317101099Srwatson */
1318101099Srwatson#define	BGE_HCC_MODE			0x3C00
1319101099Srwatson#define	BGE_HCC_STATUS			0x3C04
1320101099Srwatson#define	BGE_HCC_RX_COAL_TICKS		0x3C08
1321101099Srwatson#define	BGE_HCC_TX_COAL_TICKS		0x3C0C
1322101099Srwatson#define	BGE_HCC_RX_MAX_COAL_BDS		0x3C10
1323101099Srwatson#define	BGE_HCC_TX_MAX_COAL_BDS		0x3C14
1324101099Srwatson#define	BGE_HCC_RX_COAL_TICKS_INT	0x3C18 /* ticks during interrupt */
1325101099Srwatson#define	BGE_HCC_TX_COAL_TICKS_INT	0x3C1C /* ticks during interrupt */
1326101099Srwatson#define	BGE_HCC_RX_MAX_COAL_BDS_INT	0x3C20 /* BDs during interrupt */
1327101099Srwatson#define	BGE_HCC_TX_MAX_COAL_BDS_INT	0x3C24 /* BDs during interrupt */
1328101099Srwatson#define	BGE_HCC_STATS_TICKS		0x3C28
1329101099Srwatson#define	BGE_HCC_STATS_ADDR_HI		0x3C30
1330101099Srwatson#define	BGE_HCC_STATS_ADDR_LO		0x3C34
1331101099Srwatson#define	BGE_HCC_STATUSBLK_ADDR_HI	0x3C38
1332101099Srwatson#define	BGE_HCC_STATUSBLK_ADDR_LO	0x3C3C
1333101099Srwatson#define	BGE_HCC_STATS_BASEADDR		0x3C40 /* address in NIC memory */
1334101099Srwatson#define	BGE_HCC_STATUSBLK_BASEADDR	0x3C44 /* address in NIC memory */
1335101099Srwatson#define	BGE_FLOW_ATTN			0x3C48
1336101099Srwatson#define	BGE_HCC_JUMBO_BD_CONS		0x3C50
1337101099Srwatson#define	BGE_HCC_STD_BD_CONS		0x3C54
1338101099Srwatson#define	BGE_HCC_MINI_BD_CONS		0x3C58
1339101099Srwatson#define	BGE_HCC_RX_RETURN_PROD0		0x3C80
1340101099Srwatson#define	BGE_HCC_RX_RETURN_PROD1		0x3C84
1341101099Srwatson#define	BGE_HCC_RX_RETURN_PROD2		0x3C88
1342101099Srwatson#define	BGE_HCC_RX_RETURN_PROD3		0x3C8C
1343101099Srwatson#define	BGE_HCC_RX_RETURN_PROD4		0x3C90
1344101099Srwatson#define	BGE_HCC_RX_RETURN_PROD5		0x3C94
1345101099Srwatson#define	BGE_HCC_RX_RETURN_PROD6		0x3C98
1346101099Srwatson#define	BGE_HCC_RX_RETURN_PROD7		0x3C9C
1347101099Srwatson#define	BGE_HCC_RX_RETURN_PROD8		0x3CA0
1348101099Srwatson#define	BGE_HCC_RX_RETURN_PROD9		0x3CA4
1349101099Srwatson#define	BGE_HCC_RX_RETURN_PROD10	0x3CA8
1350101099Srwatson#define	BGE_HCC_RX_RETURN_PROD11	0x3CAC
1351101099Srwatson#define	BGE_HCC_RX_RETURN_PROD12	0x3CB0
1352101099Srwatson#define	BGE_HCC_RX_RETURN_PROD13	0x3CB4
1353101099Srwatson#define	BGE_HCC_RX_RETURN_PROD14	0x3CB8
1354101099Srwatson#define	BGE_HCC_RX_RETURN_PROD15	0x3CBC
1355101099Srwatson#define	BGE_HCC_TX_BD_CONS0		0x3CC0
1356101099Srwatson#define	BGE_HCC_TX_BD_CONS1		0x3CC4
1357101099Srwatson#define	BGE_HCC_TX_BD_CONS2		0x3CC8
1358101099Srwatson#define	BGE_HCC_TX_BD_CONS3		0x3CCC
1359101099Srwatson#define	BGE_HCC_TX_BD_CONS4		0x3CD0
1360101099Srwatson#define	BGE_HCC_TX_BD_CONS5		0x3CD4
1361101099Srwatson#define	BGE_HCC_TX_BD_CONS6		0x3CD8
1362101099Srwatson#define	BGE_HCC_TX_BD_CONS7		0x3CDC
1363101099Srwatson#define	BGE_HCC_TX_BD_CONS8		0x3CE0
1364101099Srwatson#define	BGE_HCC_TX_BD_CONS9		0x3CE4
1365101099Srwatson#define	BGE_HCC_TX_BD_CONS10		0x3CE8
1366101099Srwatson#define	BGE_HCC_TX_BD_CONS11		0x3CEC
1367101099Srwatson#define	BGE_HCC_TX_BD_CONS12		0x3CF0
1368101099Srwatson#define	BGE_HCC_TX_BD_CONS13		0x3CF4
1369101099Srwatson#define	BGE_HCC_TX_BD_CONS14		0x3CF8
1370101099Srwatson#define	BGE_HCC_TX_BD_CONS15		0x3CFC
1371101099Srwatson
1372101099Srwatson
1373101099Srwatson/* Host coalescing mode register */
1374101099Srwatson#define	BGE_HCCMODE_RESET		0x00000001
1375101099Srwatson#define	BGE_HCCMODE_ENABLE		0x00000002
1376101099Srwatson#define	BGE_HCCMODE_ATTN		0x00000004
1377101099Srwatson#define	BGE_HCCMODE_COAL_NOW		0x00000008
1378101099Srwatson#define	BGE_HCCMODE_MSI_BITS		0x00000070
1379101099Srwatson#define	BGE_HCCMODE_STATBLK_SIZE	0x00000180
1380101099Srwatson
1381101099Srwatson#define	BGE_STATBLKSZ_FULL		0x00000000
1382101099Srwatson#define	BGE_STATBLKSZ_64BYTE		0x00000080
1383101099Srwatson#define	BGE_STATBLKSZ_32BYTE		0x00000100
1384101099Srwatson
1385101099Srwatson/* Host coalescing status register */
1386101099Srwatson#define	BGE_HCCSTAT_ERROR		0x00000004
1387101099Srwatson
1388101099Srwatson/* Flow attention register */
1389101099Srwatson#define	BGE_FLOWATTN_MB_LOWAT		0x00000040
1390101099Srwatson#define	BGE_FLOWATTN_MEMARB		0x00000080
1391101099Srwatson#define	BGE_FLOWATTN_HOSTCOAL		0x00008000
1392101099Srwatson#define	BGE_FLOWATTN_DMADONE_DISCARD	0x00010000
1393101099Srwatson#define	BGE_FLOWATTN_RCB_INVAL		0x00020000
1394101099Srwatson#define	BGE_FLOWATTN_RXDATA_CORRUPT	0x00040000
1395101099Srwatson#define	BGE_FLOWATTN_RDBDI		0x00080000
1396101099Srwatson#define	BGE_FLOWATTN_RXLS		0x00100000
1397101099Srwatson#define	BGE_FLOWATTN_RXLP		0x00200000
1398101099Srwatson#define	BGE_FLOWATTN_RBDC		0x00400000
1399101099Srwatson#define	BGE_FLOWATTN_RBDI		0x00800000
1400101099Srwatson#define	BGE_FLOWATTN_SDC		0x08000000
1401101099Srwatson#define	BGE_FLOWATTN_SDI		0x10000000
1402101099Srwatson#define	BGE_FLOWATTN_SRS		0x20000000
1403101099Srwatson#define	BGE_FLOWATTN_SBDC		0x40000000
1404101099Srwatson#define	BGE_FLOWATTN_SBDI		0x80000000
1405101099Srwatson
1406101099Srwatson/*
1407101099Srwatson * Memory arbiter registers
1408101099Srwatson */
1409101099Srwatson#define	BGE_MARB_MODE			0x4000
1410101099Srwatson#define	BGE_MARB_STATUS			0x4004
1411101099Srwatson#define	BGE_MARB_TRAPADDR_HI		0x4008
1412101099Srwatson#define	BGE_MARB_TRAPADDR_LO		0x400C
1413101099Srwatson
1414101099Srwatson/* Memory arbiter mode register */
1415101099Srwatson#define	BGE_MARBMODE_RESET		0x00000001
1416101099Srwatson#define	BGE_MARBMODE_ENABLE		0x00000002
1417101099Srwatson#define	BGE_MARBMODE_TX_ADDR_TRAP	0x00000004
1418101099Srwatson#define	BGE_MARBMODE_RX_ADDR_TRAP	0x00000008
1419101099Srwatson#define	BGE_MARBMODE_DMAW1_TRAP		0x00000010
1420101099Srwatson#define	BGE_MARBMODE_DMAR1_TRAP		0x00000020
1421101099Srwatson#define	BGE_MARBMODE_RXRISC_TRAP	0x00000040
1422101099Srwatson#define	BGE_MARBMODE_TXRISC_TRAP	0x00000080
1423101099Srwatson#define	BGE_MARBMODE_PCI_TRAP		0x00000100
1424101099Srwatson#define	BGE_MARBMODE_DMAR2_TRAP		0x00000200
1425101099Srwatson#define	BGE_MARBMODE_RXQ_TRAP		0x00000400
1426101099Srwatson#define	BGE_MARBMODE_RXDI1_TRAP		0x00000800
1427101099Srwatson#define	BGE_MARBMODE_RXDI2_TRAP		0x00001000
1428101099Srwatson#define	BGE_MARBMODE_DC_GRPMEM_TRAP	0x00002000
1429101099Srwatson#define	BGE_MARBMODE_HCOAL_TRAP		0x00004000
1430101099Srwatson#define	BGE_MARBMODE_MBUF_TRAP		0x00008000
1431101099Srwatson#define	BGE_MARBMODE_TXDI_TRAP		0x00010000
1432101099Srwatson#define	BGE_MARBMODE_SDC_DMAC_TRAP	0x00020000
1433101099Srwatson#define	BGE_MARBMODE_TXBD_TRAP		0x00040000
1434101099Srwatson#define	BGE_MARBMODE_BUFFMAN_TRAP	0x00080000
1435101099Srwatson#define	BGE_MARBMODE_DMAW2_TRAP		0x00100000
1436101099Srwatson#define	BGE_MARBMODE_XTSSRAM_ROFLO_TRAP	0x00200000
1437101099Srwatson#define	BGE_MARBMODE_XTSSRAM_RUFLO_TRAP 0x00400000
1438101099Srwatson#define	BGE_MARBMODE_XTSSRAM_WOFLO_TRAP	0x00800000
1439101099Srwatson#define	BGE_MARBMODE_XTSSRAM_WUFLO_TRAP	0x01000000
1440101099Srwatson#define	BGE_MARBMODE_XTSSRAM_PERR_TRAP	0x02000000
1441101099Srwatson
1442101099Srwatson/* Memory arbiter status register */
1443101099Srwatson#define	BGE_MARBSTAT_TX_ADDR_TRAP	0x00000004
1444101099Srwatson#define	BGE_MARBSTAT_RX_ADDR_TRAP	0x00000008
1445101099Srwatson#define	BGE_MARBSTAT_DMAW1_TRAP		0x00000010
1446101099Srwatson#define	BGE_MARBSTAT_DMAR1_TRAP		0x00000020
1447101099Srwatson#define	BGE_MARBSTAT_RXRISC_TRAP	0x00000040
1448101099Srwatson#define	BGE_MARBSTAT_TXRISC_TRAP	0x00000080
1449101099Srwatson#define	BGE_MARBSTAT_PCI_TRAP		0x00000100
1450101099Srwatson#define	BGE_MARBSTAT_DMAR2_TRAP		0x00000200
1451101099Srwatson#define	BGE_MARBSTAT_RXQ_TRAP		0x00000400
1452101099Srwatson#define	BGE_MARBSTAT_RXDI1_TRAP		0x00000800
1453101099Srwatson#define	BGE_MARBSTAT_RXDI2_TRAP		0x00001000
1454101099Srwatson#define	BGE_MARBSTAT_DC_GRPMEM_TRAP	0x00002000
1455101099Srwatson#define	BGE_MARBSTAT_HCOAL_TRAP		0x00004000
1456101099Srwatson#define	BGE_MARBSTAT_MBUF_TRAP		0x00008000
1457101099Srwatson#define	BGE_MARBSTAT_TXDI_TRAP		0x00010000
1458101099Srwatson#define	BGE_MARBSTAT_SDC_DMAC_TRAP	0x00020000
1459101099Srwatson#define	BGE_MARBSTAT_TXBD_TRAP		0x00040000
1460101099Srwatson#define	BGE_MARBSTAT_BUFFMAN_TRAP	0x00080000
1461101099Srwatson#define	BGE_MARBSTAT_DMAW2_TRAP		0x00100000
1462101099Srwatson#define	BGE_MARBSTAT_XTSSRAM_ROFLO_TRAP	0x00200000
1463101099Srwatson#define	BGE_MARBSTAT_XTSSRAM_RUFLO_TRAP 0x00400000
1464101099Srwatson#define	BGE_MARBSTAT_XTSSRAM_WOFLO_TRAP	0x00800000
1465101099Srwatson#define	BGE_MARBSTAT_XTSSRAM_WUFLO_TRAP	0x01000000
1466101099Srwatson#define	BGE_MARBSTAT_XTSSRAM_PERR_TRAP	0x02000000
1467101099Srwatson
1468101099Srwatson/*
1469101099Srwatson * Buffer manager control registers
1470101099Srwatson */
1471101099Srwatson#define	BGE_BMAN_MODE			0x4400
1472101099Srwatson#define	BGE_BMAN_STATUS			0x4404
1473101099Srwatson#define	BGE_BMAN_MBUFPOOL_BASEADDR	0x4408
1474101099Srwatson#define	BGE_BMAN_MBUFPOOL_LEN		0x440C
1475101099Srwatson#define	BGE_BMAN_MBUFPOOL_READDMA_LOWAT	0x4410
1476101099Srwatson#define	BGE_BMAN_MBUFPOOL_MACRX_LOWAT	0x4414
1477101099Srwatson#define	BGE_BMAN_MBUFPOOL_HIWAT		0x4418
1478101099Srwatson#define	BGE_BMAN_RXCPU_MBALLOC_REQ	0x441C
1479101099Srwatson#define	BGE_BMAN_RXCPU_MBALLOC_RESP	0x4420
1480101099Srwatson#define	BGE_BMAN_TXCPU_MBALLOC_REQ	0x4424
1481101099Srwatson#define	BGE_BMAN_TXCPU_MBALLOC_RESP	0x4428
1482101099Srwatson#define	BGE_BMAN_DMA_DESCPOOL_BASEADDR	0x442C
1483101099Srwatson#define	BGE_BMAN_DMA_DESCPOOL_LEN	0x4430
1484101099Srwatson#define	BGE_BMAN_DMA_DESCPOOL_LOWAT	0x4434
1485101099Srwatson#define	BGE_BMAN_DMA_DESCPOOL_HIWAT	0x4438
1486101099Srwatson#define	BGE_BMAN_RXCPU_DMAALLOC_REQ	0x443C
1487101099Srwatson#define	BGE_BMAN_RXCPU_DMAALLOC_RESP	0x4440
1488101099Srwatson#define	BGE_BMAN_TXCPU_DMAALLOC_REQ	0x4444
1489101099Srwatson#define	BGE_BMAN_TXCPU_DMALLLOC_RESP	0x4448
1490101099Srwatson#define	BGE_BMAN_HWDIAG_1		0x444C
1491101099Srwatson#define	BGE_BMAN_HWDIAG_2		0x4450
1492101099Srwatson#define	BGE_BMAN_HWDIAG_3		0x4454
1493101099Srwatson
1494101099Srwatson/* Buffer manager mode register */
1495101099Srwatson#define	BGE_BMANMODE_RESET		0x00000001
1496101099Srwatson#define	BGE_BMANMODE_ENABLE		0x00000002
1497101099Srwatson#define	BGE_BMANMODE_ATTN		0x00000004
1498101099Srwatson#define	BGE_BMANMODE_TESTMODE		0x00000008
1499101099Srwatson#define	BGE_BMANMODE_LOMBUF_ATTN	0x00000010
1500101099Srwatson#define	BGE_BMANMODE_NO_TX_UNDERRUN	0x80000000
1501101099Srwatson
1502101099Srwatson/* Buffer manager status register */
1503101099Srwatson#define	BGE_BMANSTAT_ERRO		0x00000004
1504101099Srwatson#define	BGE_BMANSTAT_LOWMBUF_ERROR	0x00000010
1505101099Srwatson
1506101099Srwatson
1507101099Srwatson/*
1508101099Srwatson * Read DMA Control registers
1509101099Srwatson */
1510101099Srwatson#define	BGE_RDMA_MODE			0x4800
1511101099Srwatson#define	BGE_RDMA_STATUS			0x4804
1512101099Srwatson#define	BGE_RDMA_RSRVCTRL		0x4900
1513104530Srwatson#define	BGE_RDMA_LSO_CRPTEN_CTRL	0x4910
1514104530Srwatson
1515104530Srwatson/* Read DMA mode register */
1516104530Srwatson#define	BGE_RDMAMODE_RESET		0x00000001
1517104530Srwatson#define	BGE_RDMAMODE_ENABLE		0x00000002
1518104530Srwatson#define	BGE_RDMAMODE_PCI_TGT_ABRT_ATTN	0x00000004
1519104530Srwatson#define	BGE_RDMAMODE_PCI_MSTR_ABRT_ATTN	0x00000008
1520104530Srwatson#define	BGE_RDMAMODE_PCI_PERR_ATTN	0x00000010
1521104530Srwatson#define	BGE_RDMAMODE_PCI_ADDROFLOW_ATTN	0x00000020
1522104530Srwatson#define	BGE_RDMAMODE_PCI_FIFOOFLOW_ATTN	0x00000040
1523104530Srwatson#define	BGE_RDMAMODE_PCI_FIFOUFLOW_ATTN	0x00000080
1524104530Srwatson#define	BGE_RDMAMODE_PCI_FIFOOREAD_ATTN	0x00000100
1525104530Srwatson#define	BGE_RDMAMODE_LOCWRITE_TOOBIG	0x00000200
1526104530Srwatson#define	BGE_RDMAMODE_ALL_ATTNS		0x000003FC
1527104530Srwatson#define	BGE_RDMAMODE_BD_SBD_CRPT_ATTN	0x00000800
1528104530Srwatson#define	BGE_RDMAMODE_MBUF_RBD_CRPT_ATTN	0x00001000
1529104530Srwatson#define	BGE_RDMAMODE_MBUF_SBD_CRPT_ATTN	0x00002000
1530104530Srwatson#define	BGE_RDMAMODE_FIFO_SIZE_128	0x00020000
1531104530Srwatson#define	BGE_RDMAMODE_FIFO_LONG_BURST	0x00030000
1532104530Srwatson#define	BGE_RDMAMODE_MULT_DMA_RD_DIS	0x01000000
1533104530Srwatson#define	BGE_RDMAMODE_TSO4_ENABLE	0x08000000
1534104530Srwatson#define	BGE_RDMAMODE_TSO6_ENABLE	0x10000000
1535104530Srwatson
1536104530Srwatson/* Read DMA status register */
1537103759Srwatson#define	BGE_RDMASTAT_PCI_TGT_ABRT_ATTN	0x00000004
1538101099Srwatson#define	BGE_RDMASTAT_PCI_MSTR_ABRT_ATTN	0x00000008
1539101099Srwatson#define	BGE_RDMASTAT_PCI_PERR_ATTN	0x00000010
1540101099Srwatson#define	BGE_RDMASTAT_PCI_ADDROFLOW_ATTN	0x00000020
1541103759Srwatson#define	BGE_RDMASTAT_PCI_FIFOOFLOW_ATTN	0x00000040
1542101099Srwatson#define	BGE_RDMASTAT_PCI_FIFOUFLOW_ATTN	0x00000080
1543101099Srwatson#define	BGE_RDMASTAT_PCI_FIFOOREAD_ATTN	0x00000100
1544103759Srwatson#define	BGE_RDMASTAT_LOCWRITE_TOOBIG	0x00000200
1545101099Srwatson
1546101099Srwatson/* Read DMA Reserved Control register */
1547103759Srwatson#define	BGE_RDMA_RSRVCTRL_FIFO_OFLW_FIX	0x00000004
1548101099Srwatson#define	BGE_RDMA_RSRVCTRL_FIFO_LWM_1_5K	0x00000C00
1549101099Srwatson#define	BGE_RDMA_RSRVCTRL_FIFO_HWM_1_5K	0x000C0000
1550101099Srwatson#define	BGE_RDMA_RSRVCTRL_TXMRGN_320B	0x28000000
1551103759Srwatson#define	BGE_RDMA_RSRVCTRL_FIFO_LWM_MASK	0x00000FF0
1552101099Srwatson#define	BGE_RDMA_RSRVCTRL_FIFO_HWM_MASK	0x000FF000
1553101099Srwatson#define	BGE_RDMA_RSRVCTRL_TXMRGN_MASK	0xFFE00000
1554101099Srwatson
1555101099Srwatson#define	BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_BD_4K	0x00030000
1556101099Srwatson#define	BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_LSO_4K	0x000C0000
1557101099Srwatson
1558101099Srwatson/*
1559101099Srwatson * Write DMA control registers
1560101099Srwatson */
1561101099Srwatson#define	BGE_WDMA_MODE			0x4C00
1562101099Srwatson#define	BGE_WDMA_STATUS			0x4C04
1563101099Srwatson
1564101099Srwatson/* Write DMA mode register */
1565101099Srwatson#define	BGE_WDMAMODE_RESET		0x00000001
1566101099Srwatson#define	BGE_WDMAMODE_ENABLE		0x00000002
1567101099Srwatson#define	BGE_WDMAMODE_PCI_TGT_ABRT_ATTN	0x00000004
1568101099Srwatson#define	BGE_WDMAMODE_PCI_MSTR_ABRT_ATTN	0x00000008
1569101099Srwatson#define	BGE_WDMAMODE_PCI_PERR_ATTN	0x00000010
1570101099Srwatson#define	BGE_WDMAMODE_PCI_ADDROFLOW_ATTN	0x00000020
1571101099Srwatson#define	BGE_WDMAMODE_PCI_FIFOOFLOW_ATTN	0x00000040
1572101099Srwatson#define	BGE_WDMAMODE_PCI_FIFOUFLOW_ATTN	0x00000080
1573101099Srwatson#define	BGE_WDMAMODE_PCI_FIFOOREAD_ATTN	0x00000100
1574101099Srwatson#define	BGE_WDMAMODE_LOCREAD_TOOBIG	0x00000200
1575101099Srwatson#define	BGE_WDMAMODE_ALL_ATTNS		0x000003FC
1576101099Srwatson#define	BGE_WDMAMODE_STATUS_TAG_FIX	0x20000000
1577101099Srwatson#define	BGE_WDMAMODE_BURST_ALL_DATA	0xC0000000
1578101099Srwatson
1579101099Srwatson/* Write DMA status register */
1580102129Srwatson#define	BGE_WDMASTAT_PCI_TGT_ABRT_ATTN	0x00000004
1581102129Srwatson#define	BGE_WDMASTAT_PCI_MSTR_ABRT_ATTN	0x00000008
1582102112Srwatson#define	BGE_WDMASTAT_PCI_PERR_ATTN	0x00000010
1583102112Srwatson#define	BGE_WDMASTAT_PCI_ADDROFLOW_ATTN	0x00000020
1584102112Srwatson#define	BGE_WDMASTAT_PCI_FIFOOFLOW_ATTN	0x00000040
1585102112Srwatson#define	BGE_WDMASTAT_PCI_FIFOUFLOW_ATTN	0x00000080
1586102112Srwatson#define	BGE_WDMASTAT_PCI_FIFOOREAD_ATTN	0x00000100
1587102112Srwatson#define	BGE_WDMASTAT_LOCREAD_TOOBIG	0x00000200
1588102129Srwatson
1589102112Srwatson
1590102112Srwatson/*
1591102112Srwatson * RX CPU registers
1592102112Srwatson */
1593102112Srwatson#define	BGE_RXCPU_MODE			0x5000
1594102112Srwatson#define	BGE_RXCPU_STATUS		0x5004
1595102112Srwatson#define	BGE_RXCPU_PC			0x501C
1596102112Srwatson
1597102112Srwatson/* RX CPU mode register */
1598102129Srwatson#define	BGE_RXCPUMODE_RESET		0x00000001
1599102129Srwatson#define	BGE_RXCPUMODE_SINGLESTEP	0x00000002
1600102112Srwatson#define	BGE_RXCPUMODE_P0_DATAHLT_ENB	0x00000004
1601102112Srwatson#define	BGE_RXCPUMODE_P0_INSTRHLT_ENB	0x00000008
1602102112Srwatson#define	BGE_RXCPUMODE_WR_POSTBUF_ENB	0x00000010
1603102112Srwatson#define	BGE_RXCPUMODE_DATACACHE_ENB	0x00000020
1604102112Srwatson#define	BGE_RXCPUMODE_ROMFAIL		0x00000040
1605102112Srwatson#define	BGE_RXCPUMODE_WATCHDOG_ENB	0x00000080
1606102129Srwatson#define	BGE_RXCPUMODE_INSTRCACHE_PRF	0x00000100
1607102112Srwatson#define	BGE_RXCPUMODE_INSTRCACHE_FLUSH	0x00000200
1608102112Srwatson#define	BGE_RXCPUMODE_HALTCPU		0x00000400
1609102112Srwatson#define	BGE_RXCPUMODE_INVDATAHLT_ENB	0x00000800
1610102112Srwatson#define	BGE_RXCPUMODE_MADDRTRAPHLT_ENB	0x00001000
1611102112Srwatson#define	BGE_RXCPUMODE_RADDRTRAPHLT_ENB	0x00002000
1612102112Srwatson
1613102112Srwatson/* RX CPU status register */
1614102112Srwatson#define	BGE_RXCPUSTAT_HW_BREAKPOINT	0x00000001
1615102112Srwatson#define	BGE_RXCPUSTAT_HLTINSTR_EXECUTED	0x00000002
1616101099Srwatson#define	BGE_RXCPUSTAT_INVALID_INSTR	0x00000004
1617101099Srwatson#define	BGE_RXCPUSTAT_P0_DATAREF	0x00000008
1618101099Srwatson#define	BGE_RXCPUSTAT_P0_INSTRREF	0x00000010
1619101099Srwatson#define	BGE_RXCPUSTAT_INVALID_DATAACC	0x00000020
1620101099Srwatson#define	BGE_RXCPUSTAT_INVALID_INSTRFTCH	0x00000040
1621101099Srwatson#define	BGE_RXCPUSTAT_BAD_MEMALIGN	0x00000080
1622101099Srwatson#define	BGE_RXCPUSTAT_MADDR_TRAP	0x00000100
1623101099Srwatson#define	BGE_RXCPUSTAT_REGADDR_TRAP	0x00000200
1624101099Srwatson#define	BGE_RXCPUSTAT_DATAACC_STALL	0x00001000
1625101099Srwatson#define	BGE_RXCPUSTAT_INSTRFETCH_STALL	0x00002000
1626101099Srwatson#define	BGE_RXCPUSTAT_MA_WR_FIFOOFLOW	0x08000000
1627101099Srwatson#define	BGE_RXCPUSTAT_MA_RD_FIFOOFLOW	0x10000000
1628101099Srwatson#define	BGE_RXCPUSTAT_MA_DATAMASK_OFLOW	0x20000000
1629101099Srwatson#define	BGE_RXCPUSTAT_MA_REQ_FIFOOFLOW	0x40000000
1630101099Srwatson#define	BGE_RXCPUSTAT_BLOCKING_READ	0x80000000
1631101099Srwatson
1632101099Srwatson/*
1633101099Srwatson * V? CPU registers
1634101099Srwatson */
1635101099Srwatson#define	BGE_VCPU_STATUS			0x5100
1636101099Srwatson#define	BGE_VCPU_EXT_CTRL		0x6890
1637101099Srwatson
1638101099Srwatson#define	BGE_VCPU_STATUS_INIT_DONE	0x04000000
1639101099Srwatson#define	BGE_VCPU_STATUS_DRV_RESET 	0x08000000
1640101099Srwatson
1641101099Srwatson#define	BGE_VCPU_EXT_CTRL_HALT_CPU	0x00400000
1642101099Srwatson#define	BGE_VCPU_EXT_CTRL_DISABLE_WOL	0x20000000
1643101099Srwatson
1644101099Srwatson/*
1645101099Srwatson * TX CPU registers
1646101099Srwatson */
1647101099Srwatson#define	BGE_TXCPU_MODE			0x5400
1648101099Srwatson#define	BGE_TXCPU_STATUS		0x5404
1649101099Srwatson#define	BGE_TXCPU_PC			0x541C
1650101099Srwatson
1651101099Srwatson/* TX CPU mode register */
1652101099Srwatson#define	BGE_TXCPUMODE_RESET		0x00000001
1653101099Srwatson#define	BGE_TXCPUMODE_SINGLESTEP	0x00000002
1654101099Srwatson#define	BGE_TXCPUMODE_P0_DATAHLT_ENB	0x00000004
1655101099Srwatson#define	BGE_TXCPUMODE_P0_INSTRHLT_ENB	0x00000008
1656101099Srwatson#define	BGE_TXCPUMODE_WR_POSTBUF_ENB	0x00000010
1657101099Srwatson#define	BGE_TXCPUMODE_DATACACHE_ENB	0x00000020
1658101099Srwatson#define	BGE_TXCPUMODE_ROMFAIL		0x00000040
1659101099Srwatson#define	BGE_TXCPUMODE_WATCHDOG_ENB	0x00000080
1660101099Srwatson#define	BGE_TXCPUMODE_INSTRCACHE_PRF	0x00000100
1661101099Srwatson#define	BGE_TXCPUMODE_INSTRCACHE_FLUSH	0x00000200
1662101099Srwatson#define	BGE_TXCPUMODE_HALTCPU		0x00000400
1663101099Srwatson#define	BGE_TXCPUMODE_INVDATAHLT_ENB	0x00000800
1664101099Srwatson#define	BGE_TXCPUMODE_MADDRTRAPHLT_ENB	0x00001000
1665101099Srwatson
1666101099Srwatson/* TX CPU status register */
1667101099Srwatson#define	BGE_TXCPUSTAT_HW_BREAKPOINT	0x00000001
1668101099Srwatson#define	BGE_TXCPUSTAT_HLTINSTR_EXECUTED	0x00000002
1669101099Srwatson#define	BGE_TXCPUSTAT_INVALID_INSTR	0x00000004
1670101099Srwatson#define	BGE_TXCPUSTAT_P0_DATAREF	0x00000008
1671101099Srwatson#define	BGE_TXCPUSTAT_P0_INSTRREF	0x00000010
1672101099Srwatson#define	BGE_TXCPUSTAT_INVALID_DATAACC	0x00000020
1673101099Srwatson#define	BGE_TXCPUSTAT_INVALID_INSTRFTCH	0x00000040
1674101099Srwatson#define	BGE_TXCPUSTAT_BAD_MEMALIGN	0x00000080
1675101099Srwatson#define	BGE_TXCPUSTAT_MADDR_TRAP	0x00000100
1676101099Srwatson#define	BGE_TXCPUSTAT_REGADDR_TRAP	0x00000200
1677101099Srwatson#define	BGE_TXCPUSTAT_DATAACC_STALL	0x00001000
1678101099Srwatson#define	BGE_TXCPUSTAT_INSTRFETCH_STALL	0x00002000
1679101099Srwatson#define	BGE_TXCPUSTAT_MA_WR_FIFOOFLOW	0x08000000
1680101099Srwatson#define	BGE_TXCPUSTAT_MA_RD_FIFOOFLOW	0x10000000
1681101099Srwatson#define	BGE_TXCPUSTAT_MA_DATAMASK_OFLOW	0x20000000
1682101099Srwatson#define	BGE_TXCPUSTAT_MA_REQ_FIFOOFLOW	0x40000000
1683101099Srwatson#define	BGE_TXCPUSTAT_BLOCKING_READ	0x80000000
1684101099Srwatson
1685101099Srwatson
1686101099Srwatson/*
1687101099Srwatson * Low priority mailbox registers
1688101099Srwatson */
1689101099Srwatson#define	BGE_LPMBX_IRQ0_HI		0x5800
1690101099Srwatson#define	BGE_LPMBX_IRQ0_LO		0x5804
1691101099Srwatson#define	BGE_LPMBX_IRQ1_HI		0x5808
1692101099Srwatson#define	BGE_LPMBX_IRQ1_LO		0x580C
1693101099Srwatson#define	BGE_LPMBX_IRQ2_HI		0x5810
1694101099Srwatson#define	BGE_LPMBX_IRQ2_LO		0x5814
1695101099Srwatson#define	BGE_LPMBX_IRQ3_HI		0x5818
1696101099Srwatson#define	BGE_LPMBX_IRQ3_LO		0x581C
1697101099Srwatson#define	BGE_LPMBX_GEN0_HI		0x5820
1698101099Srwatson#define	BGE_LPMBX_GEN0_LO		0x5824
1699101099Srwatson#define	BGE_LPMBX_GEN1_HI		0x5828
1700101099Srwatson#define	BGE_LPMBX_GEN1_LO		0x582C
1701101099Srwatson#define	BGE_LPMBX_GEN2_HI		0x5830
1702101099Srwatson#define	BGE_LPMBX_GEN2_LO		0x5834
1703101099Srwatson#define	BGE_LPMBX_GEN3_HI		0x5828
1704101099Srwatson#define	BGE_LPMBX_GEN3_LO		0x582C
1705101099Srwatson#define	BGE_LPMBX_GEN4_HI		0x5840
1706101099Srwatson#define	BGE_LPMBX_GEN4_LO		0x5844
1707101099Srwatson#define	BGE_LPMBX_GEN5_HI		0x5848
1708101099Srwatson#define	BGE_LPMBX_GEN5_LO		0x584C
1709101099Srwatson#define	BGE_LPMBX_GEN6_HI		0x5850
1710101099Srwatson#define	BGE_LPMBX_GEN6_LO		0x5854
1711101099Srwatson#define	BGE_LPMBX_GEN7_HI		0x5858
1712101099Srwatson#define	BGE_LPMBX_GEN7_LO		0x585C
1713101099Srwatson#define	BGE_LPMBX_RELOAD_STATS_HI	0x5860
1714101099Srwatson#define	BGE_LPMBX_RELOAD_STATS_LO	0x5864
1715101099Srwatson#define	BGE_LPMBX_RX_STD_PROD_HI	0x5868
1716101099Srwatson#define	BGE_LPMBX_RX_STD_PROD_LO	0x586C
1717101099Srwatson#define	BGE_LPMBX_RX_JUMBO_PROD_HI	0x5870
1718101099Srwatson#define	BGE_LPMBX_RX_JUMBO_PROD_LO	0x5874
1719101099Srwatson#define	BGE_LPMBX_RX_MINI_PROD_HI	0x5878
1720101099Srwatson#define	BGE_LPMBX_RX_MINI_PROD_LO	0x587C
1721101099Srwatson#define	BGE_LPMBX_RX_CONS0_HI		0x5880
1722101099Srwatson#define	BGE_LPMBX_RX_CONS0_LO		0x5884
1723101099Srwatson#define	BGE_LPMBX_RX_CONS1_HI		0x5888
1724101099Srwatson#define	BGE_LPMBX_RX_CONS1_LO		0x588C
1725101099Srwatson#define	BGE_LPMBX_RX_CONS2_HI		0x5890
1726101099Srwatson#define	BGE_LPMBX_RX_CONS2_LO		0x5894
1727101099Srwatson#define	BGE_LPMBX_RX_CONS3_HI		0x5898
1728101099Srwatson#define	BGE_LPMBX_RX_CONS3_LO		0x589C
1729101099Srwatson#define	BGE_LPMBX_RX_CONS4_HI		0x58A0
1730101099Srwatson#define	BGE_LPMBX_RX_CONS4_LO		0x58A4
1731101099Srwatson#define	BGE_LPMBX_RX_CONS5_HI		0x58A8
1732101099Srwatson#define	BGE_LPMBX_RX_CONS5_LO		0x58AC
1733101099Srwatson#define	BGE_LPMBX_RX_CONS6_HI		0x58B0
1734101099Srwatson#define	BGE_LPMBX_RX_CONS6_LO		0x58B4
1735101099Srwatson#define	BGE_LPMBX_RX_CONS7_HI		0x58B8
1736101099Srwatson#define	BGE_LPMBX_RX_CONS7_LO		0x58BC
1737101099Srwatson#define	BGE_LPMBX_RX_CONS8_HI		0x58C0
1738101099Srwatson#define	BGE_LPMBX_RX_CONS8_LO		0x58C4
1739101099Srwatson#define	BGE_LPMBX_RX_CONS9_HI		0x58C8
1740101099Srwatson#define	BGE_LPMBX_RX_CONS9_LO		0x58CC
1741101099Srwatson#define	BGE_LPMBX_RX_CONS10_HI		0x58D0
1742101099Srwatson#define	BGE_LPMBX_RX_CONS10_LO		0x58D4
1743101099Srwatson#define	BGE_LPMBX_RX_CONS11_HI		0x58D8
1744101099Srwatson#define	BGE_LPMBX_RX_CONS11_LO		0x58DC
1745101099Srwatson#define	BGE_LPMBX_RX_CONS12_HI		0x58E0
1746101099Srwatson#define	BGE_LPMBX_RX_CONS12_LO		0x58E4
1747101099Srwatson#define	BGE_LPMBX_RX_CONS13_HI		0x58E8
1748101099Srwatson#define	BGE_LPMBX_RX_CONS13_LO		0x58EC
1749101099Srwatson#define	BGE_LPMBX_RX_CONS14_HI		0x58F0
1750101099Srwatson#define	BGE_LPMBX_RX_CONS14_LO		0x58F4
1751101099Srwatson#define	BGE_LPMBX_RX_CONS15_HI		0x58F8
1752101099Srwatson#define	BGE_LPMBX_RX_CONS15_LO		0x58FC
1753101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD0_HI	0x5900
1754101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD0_LO	0x5904
1755101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD1_HI	0x5908
1756101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD1_LO	0x590C
1757101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD2_HI	0x5910
1758101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD2_LO	0x5914
1759101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD3_HI	0x5918
1760101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD3_LO	0x591C
1761101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD4_HI	0x5920
1762101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD4_LO	0x5924
1763101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD5_HI	0x5928
1764101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD5_LO	0x592C
1765101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD6_HI	0x5930
1766101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD6_LO	0x5934
1767101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD7_HI	0x5938
1768101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD7_LO	0x593C
1769101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD8_HI	0x5940
1770101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD8_LO	0x5944
1771101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD9_HI	0x5948
1772101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD9_LO	0x594C
1773101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD10_HI	0x5950
1774101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD10_LO	0x5954
1775101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD11_HI	0x5958
1776101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD11_LO	0x595C
1777101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD12_HI	0x5960
1778101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD12_LO	0x5964
1779101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD13_HI	0x5968
1780101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD13_LO	0x596C
1781101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD14_HI	0x5970
1782101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD14_LO	0x5974
1783101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD15_HI	0x5978
1784101099Srwatson#define	BGE_LPMBX_TX_HOST_PROD15_LO	0x597C
1785101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD0_HI	0x5980
1786101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD0_LO	0x5984
1787101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD1_HI	0x5988
1788101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD1_LO	0x598C
1789101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD2_HI	0x5990
1790101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD2_LO	0x5994
1791101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD3_HI	0x5998
1792101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD3_LO	0x599C
1793101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD4_HI	0x59A0
1794101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD4_LO	0x59A4
1795101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD5_HI	0x59A8
1796101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD5_LO	0x59AC
1797101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD6_HI	0x59B0
1798101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD6_LO	0x59B4
1799101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD7_HI	0x59B8
1800101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD7_LO	0x59BC
1801101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD8_HI	0x59C0
1802101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD8_LO	0x59C4
1803101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD9_HI	0x59C8
1804101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD9_LO	0x59CC
1805101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD10_HI	0x59D0
1806101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD10_LO	0x59D4
1807101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD11_HI	0x59D8
1808101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD11_LO	0x59DC
1809101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD12_HI	0x59E0
1810101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD12_LO	0x59E4
1811101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD13_HI	0x59E8
1812101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD13_LO	0x59EC
1813101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD14_HI	0x59F0
1814101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD14_LO	0x59F4
1815101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD15_HI	0x59F8
1816101099Srwatson#define	BGE_LPMBX_TX_NIC_PROD15_LO	0x59FC
1817101099Srwatson
1818101099Srwatson/*
1819101099Srwatson * Flow throw Queue reset register
1820101099Srwatson */
1821101099Srwatson#define	BGE_FTQ_RESET			0x5C00
1822101099Srwatson
1823101099Srwatson#define	BGE_FTQRESET_DMAREAD		0x00000002
1824101099Srwatson#define	BGE_FTQRESET_DMAHIPRIO_RD	0x00000004
1825101099Srwatson#define	BGE_FTQRESET_DMADONE		0x00000010
1826101099Srwatson#define	BGE_FTQRESET_SBDC		0x00000020
1827101099Srwatson#define	BGE_FTQRESET_SDI		0x00000040
1828101099Srwatson#define	BGE_FTQRESET_WDMA		0x00000080
1829101099Srwatson#define	BGE_FTQRESET_DMAHIPRIO_WR	0x00000100
1830101099Srwatson#define	BGE_FTQRESET_TYPE1_SOFTWARE	0x00000200
1831101099Srwatson#define	BGE_FTQRESET_SDC		0x00000400
1832101099Srwatson#define	BGE_FTQRESET_HCC		0x00000800
1833101099Srwatson#define	BGE_FTQRESET_TXFIFO		0x00001000
1834101099Srwatson#define	BGE_FTQRESET_MBC		0x00002000
1835101099Srwatson#define	BGE_FTQRESET_RBDC		0x00004000
1836101099Srwatson#define	BGE_FTQRESET_RXLP		0x00008000
1837101099Srwatson#define	BGE_FTQRESET_RDBDI		0x00010000
1838101099Srwatson#define	BGE_FTQRESET_RDC		0x00020000
1839101099Srwatson#define	BGE_FTQRESET_TYPE2_SOFTWARE	0x00040000
1840101099Srwatson
1841101099Srwatson/*
1842101099Srwatson * Message Signaled Interrupt registers
1843101099Srwatson */
1844101099Srwatson#define	BGE_MSI_MODE			0x6000
1845101099Srwatson#define	BGE_MSI_STATUS			0x6004
1846101099Srwatson#define	BGE_MSI_FIFOACCESS		0x6008
1847101099Srwatson
1848101099Srwatson/* MSI mode register */
1849101099Srwatson#define	BGE_MSIMODE_RESET		0x00000001
1850101099Srwatson#define	BGE_MSIMODE_ENABLE		0x00000002
1851101099Srwatson#define	BGE_MSIMODE_ONE_SHOT_DISABLE	0x00000020
1852101099Srwatson#define	BGE_MSIMODE_MULTIVEC_ENABLE	0x00000080
1853101099Srwatson
1854101099Srwatson/* MSI status register */
1855101099Srwatson#define	BGE_MSISTAT_PCI_TGT_ABRT_ATTN	0x00000004
1856101099Srwatson#define	BGE_MSISTAT_PCI_MSTR_ABRT_ATTN	0x00000008
1857101099Srwatson#define	BGE_MSISTAT_PCI_PERR_ATTN	0x00000010
1858101099Srwatson#define	BGE_MSISTAT_MSI_FIFOUFLOW_ATTN	0x00000020
1859101099Srwatson#define	BGE_MSISTAT_MSI_FIFOOFLOW_ATTN	0x00000040
1860101099Srwatson
1861101099Srwatson
1862101099Srwatson/*
1863101099Srwatson * DMA Completion registers
1864101099Srwatson */
1865102129Srwatson#define	BGE_DMAC_MODE			0x6400
1866102129Srwatson
1867101099Srwatson/* DMA Completion mode register */
1868101099Srwatson#define	BGE_DMACMODE_RESET		0x00000001
1869101099Srwatson#define	BGE_DMACMODE_ENABLE		0x00000002
1870101099Srwatson
1871101099Srwatson
1872101099Srwatson/*
1873102129Srwatson * General control registers.
1874101099Srwatson */
1875101099Srwatson#define	BGE_MODE_CTL			0x6800
1876101099Srwatson#define	BGE_MISC_CFG			0x6804
1877101099Srwatson#define	BGE_MISC_LOCAL_CTL		0x6808
1878101099Srwatson#define	BGE_CPU_EVENT			0x6810
1879101099Srwatson#define	BGE_EE_ADDR			0x6838
1880101099Srwatson#define	BGE_EE_DATA			0x683C
1881101099Srwatson#define	BGE_EE_CTL			0x6840
1882102112Srwatson#define	BGE_MDI_CTL			0x6844
1883102129Srwatson#define	BGE_EE_DELAY			0x6848
1884102129Srwatson#define	BGE_FASTBOOT_PC			0x6894
1885102112Srwatson
1886102112Srwatson/*
1887102112Srwatson * NVRAM Control registers
1888102112Srwatson */
1889102112Srwatson#define	BGE_NVRAM_CMD			0x7000
1890102112Srwatson#define	BGE_NVRAM_STAT			0x7004
1891102129Srwatson#define	BGE_NVRAM_WRDATA		0x7008
1892102112Srwatson#define	BGE_NVRAM_ADDR			0x700c
1893102112Srwatson#define	BGE_NVRAM_RDDATA		0x7010
1894102112Srwatson#define	BGE_NVRAM_CFG1			0x7014
1895102112Srwatson#define	BGE_NVRAM_CFG2			0x7018
1896102112Srwatson#define	BGE_NVRAM_CFG3			0x701c
1897102112Srwatson#define	BGE_NVRAM_SWARB			0x7020
1898102112Srwatson#define	BGE_NVRAM_ACCESS		0x7024
1899102112Srwatson#define	BGE_NVRAM_WRITE1		0x7028
1900101099Srwatson
1901101099Srwatson#define	BGE_NVRAMCMD_RESET		0x00000001
1902101099Srwatson#define	BGE_NVRAMCMD_DONE		0x00000008
1903101099Srwatson#define	BGE_NVRAMCMD_START		0x00000010
1904101099Srwatson#define	BGE_NVRAMCMD_WR			0x00000020 /* 1 = wr, 0 = rd */
1905101099Srwatson#define	BGE_NVRAMCMD_ERASE		0x00000040
1906101099Srwatson#define	BGE_NVRAMCMD_FIRST		0x00000080
1907101099Srwatson#define	BGE_NVRAMCMD_LAST		0x00000100
1908101099Srwatson
1909101099Srwatson#define	BGE_NVRAM_READCMD \
1910101099Srwatson	(BGE_NVRAMCMD_FIRST|BGE_NVRAMCMD_LAST| \
1911101099Srwatson	BGE_NVRAMCMD_START|BGE_NVRAMCMD_DONE)
1912101099Srwatson#define	BGE_NVRAM_WRITECMD \
1913101099Srwatson	(BGE_NVRAMCMD_FIRST|BGE_NVRAMCMD_LAST| \
1914101099Srwatson	BGE_NVRAMCMD_START|BGE_NVRAMCMD_DONE|BGE_NVRAMCMD_WR)
1915101099Srwatson
1916101099Srwatson#define	BGE_NVRAMSWARB_SET0		0x00000001
1917101099Srwatson#define	BGE_NVRAMSWARB_SET1		0x00000002
1918101099Srwatson#define	BGE_NVRAMSWARB_SET2		0x00000003
1919101099Srwatson#define	BGE_NVRAMSWARB_SET3		0x00000004
1920101099Srwatson#define	BGE_NVRAMSWARB_CLR0		0x00000010
1921101099Srwatson#define	BGE_NVRAMSWARB_CLR1		0x00000020
1922101099Srwatson#define	BGE_NVRAMSWARB_CLR2		0x00000040
1923101099Srwatson#define	BGE_NVRAMSWARB_CLR3		0x00000080
1924101099Srwatson#define	BGE_NVRAMSWARB_GNT0		0x00000100
1925101099Srwatson#define	BGE_NVRAMSWARB_GNT1		0x00000200
1926104514Srwatson#define	BGE_NVRAMSWARB_GNT2		0x00000400
1927104514Srwatson#define	BGE_NVRAMSWARB_GNT3		0x00000800
1928104514Srwatson#define	BGE_NVRAMSWARB_REQ0		0x00001000
1929104514Srwatson#define	BGE_NVRAMSWARB_REQ1		0x00002000
1930104514Srwatson#define	BGE_NVRAMSWARB_REQ2		0x00004000
1931104514Srwatson#define	BGE_NVRAMSWARB_REQ3		0x00008000
1932104514Srwatson
1933104514Srwatson#define	BGE_NVRAMACC_ENABLE		0x00000001
1934104514Srwatson#define	BGE_NVRAMACC_WRENABLE		0x00000002
1935104514Srwatson
1936104514Srwatson/* Mode control register */
1937104514Srwatson#define	BGE_MODECTL_INT_SNDCOAL_ONLY	0x00000001
1938104514Srwatson#define	BGE_MODECTL_BYTESWAP_NONFRAME	0x00000002
1939104514Srwatson#define	BGE_MODECTL_WORDSWAP_NONFRAME	0x00000004
1940104514Srwatson#define	BGE_MODECTL_BYTESWAP_DATA	0x00000010
1941104514Srwatson#define	BGE_MODECTL_WORDSWAP_DATA	0x00000020
1942104514Srwatson#define	BGE_MODECTL_NO_FRAME_CRACKING	0x00000200
1943104514Srwatson#define	BGE_MODECTL_NO_RX_CRC		0x00000400
1944104514Srwatson#define	BGE_MODECTL_RX_BADFRAMES	0x00000800
1945104514Srwatson#define	BGE_MODECTL_NO_TX_INTR		0x00002000
1946104514Srwatson#define	BGE_MODECTL_NO_RX_INTR		0x00004000
1947104514Srwatson#define	BGE_MODECTL_FORCE_PCI32		0x00008000
1948104514Srwatson#define	BGE_MODECTL_STACKUP		0x00010000
1949104514Srwatson#define	BGE_MODECTL_HOST_SEND_BDS	0x00020000
1950104514Srwatson#define	BGE_MODECTL_TX_NO_PHDR_CSUM	0x00100000
1951104514Srwatson#define	BGE_MODECTL_RX_NO_PHDR_CSUM	0x00800000
1952104514Srwatson#define	BGE_MODECTL_TX_ATTN_INTR	0x01000000
1953104514Srwatson#define	BGE_MODECTL_RX_ATTN_INTR	0x02000000
1954104514Srwatson#define	BGE_MODECTL_MAC_ATTN_INTR	0x04000000
1955104514Srwatson#define	BGE_MODECTL_DMA_ATTN_INTR	0x08000000
1956104514Srwatson#define	BGE_MODECTL_FLOWCTL_ATTN_INTR	0x10000000
1957104514Srwatson#define	BGE_MODECTL_4X_SENDRING_SZ	0x20000000
1958104514Srwatson#define	BGE_MODECTL_FW_PROCESS_MCASTS	0x40000000
1959104514Srwatson
1960104514Srwatson/* Misc. config register */
1961104514Srwatson#define	BGE_MISCCFG_RESET_CORE_CLOCKS	0x00000001
1962104514Srwatson#define	BGE_MISCCFG_TIMER_PRESCALER	0x000000FE
1963104514Srwatson#define	BGE_MISCCFG_BOARD_ID		0x0001E000
1964104514Srwatson#define	BGE_MISCCFG_BOARD_ID_5788	0x00010000
1965104514Srwatson#define	BGE_MISCCFG_BOARD_ID_5788M	0x00018000
1966104514Srwatson#define	BGE_MISCCFG_EPHY_IDDQ		0x00200000
1967104514Srwatson#define	BGE_MISCCFG_GPHY_PD_OVERRIDE	0x04000000
1968104514Srwatson
1969104514Srwatson#define	BGE_32BITTIME_66MHZ		(0x41 << 1)
1970104514Srwatson
1971104514Srwatson/* Misc. Local Control */
1972104514Srwatson#define	BGE_MLC_INTR_STATE		0x00000001
1973104514Srwatson#define	BGE_MLC_INTR_CLR		0x00000002
1974104514Srwatson#define	BGE_MLC_INTR_SET		0x00000004
1975104514Srwatson#define	BGE_MLC_INTR_ONATTN		0x00000008
1976104514Srwatson#define	BGE_MLC_MISCIO_IN0		0x00000100
1977104514Srwatson#define	BGE_MLC_MISCIO_IN1		0x00000200
1978101099Srwatson#define	BGE_MLC_MISCIO_IN2		0x00000400
1979101099Srwatson#define	BGE_MLC_MISCIO_OUTEN0		0x00000800
1980101099Srwatson#define	BGE_MLC_MISCIO_OUTEN1		0x00001000
1981101099Srwatson#define	BGE_MLC_MISCIO_OUTEN2		0x00002000
1982101099Srwatson#define	BGE_MLC_MISCIO_OUT0		0x00004000
1983101099Srwatson#define	BGE_MLC_MISCIO_OUT1		0x00008000
1984101099Srwatson#define	BGE_MLC_MISCIO_OUT2		0x00010000
1985101099Srwatson#define	BGE_MLC_EXTRAM_ENB		0x00020000
1986101099Srwatson#define	BGE_MLC_SRAM_SIZE		0x001C0000
1987101099Srwatson#define	BGE_MLC_BANK_SEL		0x00200000 /* 0 = 2 banks, 1 == 1 */
1988101099Srwatson#define	BGE_MLC_SSRAM_TYPE		0x00400000 /* 1 = ZBT, 0 = standard */
1989101099Srwatson#define	BGE_MLC_SSRAM_CYC_DESEL		0x00800000
1990101099Srwatson#define	BGE_MLC_AUTO_EEPROM		0x01000000
1991101099Srwatson
1992101099Srwatson#define	BGE_SSRAMSIZE_256KB		0x00000000
1993101099Srwatson#define	BGE_SSRAMSIZE_512KB		0x00040000
1994101099Srwatson#define	BGE_SSRAMSIZE_1MB		0x00080000
1995101099Srwatson#define	BGE_SSRAMSIZE_2MB		0x000C0000
1996101099Srwatson#define	BGE_SSRAMSIZE_4MB		0x00100000
1997101099Srwatson#define	BGE_SSRAMSIZE_8MB		0x00140000
1998101099Srwatson#define	BGE_SSRAMSIZE_16M		0x00180000
1999101099Srwatson
2000101099Srwatson/* EEPROM address register */
2001101099Srwatson#define	BGE_EEADDR_ADDRESS		0x0000FFFC
2002101099Srwatson#define	BGE_EEADDR_HALFCLK		0x01FF0000
2003101099Srwatson#define	BGE_EEADDR_START		0x02000000
2004101099Srwatson#define	BGE_EEADDR_DEVID		0x1C000000
2005101099Srwatson#define	BGE_EEADDR_RESET		0x20000000
2006101099Srwatson#define	BGE_EEADDR_DONE			0x40000000
2007101099Srwatson#define	BGE_EEADDR_RW			0x80000000 /* 1 = rd, 0 = wr */
2008101099Srwatson
2009101099Srwatson#define	BGE_EEDEVID(x)			((x & 7) << 26)
2010101099Srwatson#define	BGE_EEHALFCLK(x)		((x & 0x1FF) << 16)
2011101099Srwatson#define	BGE_HALFCLK_384SCL		0x60
2012101099Srwatson#define	BGE_EE_READCMD \
2013101099Srwatson	(BGE_EEHALFCLK(BGE_HALFCLK_384SCL)|BGE_EEDEVID(0)|	\
2014101099Srwatson	BGE_EEADDR_START|BGE_EEADDR_RW|BGE_EEADDR_DONE)
2015101099Srwatson#define	BGE_EE_WRCMD \
2016101099Srwatson	(BGE_EEHALFCLK(BGE_HALFCLK_384SCL)|BGE_EEDEVID(0)|	\
2017101099Srwatson	BGE_EEADDR_START|BGE_EEADDR_DONE)
2018101099Srwatson
2019101099Srwatson/* EEPROM Control register */
2020101099Srwatson#define	BGE_EECTL_CLKOUT_TRISTATE	0x00000001
2021101099Srwatson#define	BGE_EECTL_CLKOUT		0x00000002
2022101099Srwatson#define	BGE_EECTL_CLKIN			0x00000004
2023101099Srwatson#define	BGE_EECTL_DATAOUT_TRISTATE	0x00000008
2024101099Srwatson#define	BGE_EECTL_DATAOUT		0x00000010
2025101099Srwatson#define	BGE_EECTL_DATAIN		0x00000020
2026101099Srwatson
2027101099Srwatson/* MDI (MII/GMII) access register */
2028101099Srwatson#define	BGE_MDI_DATA			0x00000001
2029101099Srwatson#define	BGE_MDI_DIR			0x00000002
2030101099Srwatson#define	BGE_MDI_SEL			0x00000004
2031101099Srwatson#define	BGE_MDI_CLK			0x00000008
2032101099Srwatson
2033101099Srwatson#define	BGE_MEMWIN_START		0x00008000
2034101099Srwatson#define	BGE_MEMWIN_END			0x0000FFFF
2035101099Srwatson
2036101099Srwatson
2037101099Srwatson#define	BGE_MEMWIN_READ(sc, x, val)					\
2038101099Srwatson	do {								\
2039101099Srwatson		pci_write_config(sc->bge_dev, BGE_PCI_MEMWIN_BASEADDR,	\
2040101099Srwatson		    (0xFFFF0000 & x), 4);				\
2041101099Srwatson		val = CSR_READ_4(sc, BGE_MEMWIN_START + (x & 0xFFFF));	\
2042101099Srwatson	} while(0)
2043101099Srwatson
2044101099Srwatson#define	BGE_MEMWIN_WRITE(sc, x, val)					\
2045101099Srwatson	do {								\
2046101099Srwatson		pci_write_config(sc->bge_dev, BGE_PCI_MEMWIN_BASEADDR,	\
2047101099Srwatson		    (0xFFFF0000 & x), 4);				\
2048101099Srwatson		CSR_WRITE_4(sc, BGE_MEMWIN_START + (x & 0xFFFF), val);	\
2049101099Srwatson	} while(0)
2050101099Srwatson
2051101099Srwatson/*
2052101099Srwatson * This magic number is written to the firmware mailbox at 0xb50
2053101099Srwatson * before a software reset is issued.  After the internal firmware
2054101099Srwatson * has completed its initialization it will write the opposite of
2055101099Srwatson * this value, ~BGE_MAGIC_NUMBER, to the same location, allowing the
2056101099Srwatson * driver to synchronize with the firmware.
2057101099Srwatson */
2058101099Srwatson#define	BGE_MAGIC_NUMBER                0x4B657654
2059101099Srwatson
2060101099Srwatsontypedef struct {
2061101099Srwatson	uint32_t		bge_addr_hi;
2062101099Srwatson	uint32_t		bge_addr_lo;
2063101099Srwatson} bge_hostaddr;
2064101099Srwatson
2065101099Srwatson#define	BGE_HOSTADDR(x, y)						\
2066101099Srwatson	do {								\
2067101099Srwatson		(x).bge_addr_lo = ((uint64_t) (y) & 0xffffffff);	\
2068101099Srwatson		(x).bge_addr_hi = ((uint64_t) (y) >> 32);		\
2069101099Srwatson	} while(0)
2070101099Srwatson
2071101099Srwatson#define	BGE_ADDR_LO(y)	\
2072101099Srwatson	((uint64_t) (y) & 0xFFFFFFFF)
2073101099Srwatson#define	BGE_ADDR_HI(y)	\
2074102115Srwatson	((uint64_t) (y) >> 32)
2075102115Srwatson
2076102115Srwatson/* Ring control block structure */
2077102115Srwatsonstruct bge_rcb {
2078101099Srwatson	bge_hostaddr		bge_hostaddr;
2079101099Srwatson	uint32_t		bge_maxlen_flags;
2080102115Srwatson	uint32_t		bge_nicaddr;
2081102115Srwatson};
2082102115Srwatson
2083102115Srwatson#define	RCB_WRITE_4(sc, rcb, offset, val) \
2084101099Srwatson	bus_write_4(sc->bge_res, rcb + offsetof(struct bge_rcb, offset), val)
2085101099Srwatson#define	BGE_RCB_MAXLEN_FLAGS(maxlen, flags)	((maxlen) << 16 | (flags))
2086101099Srwatson
2087101099Srwatson#define	BGE_RCB_FLAG_USE_EXT_RX_BD	0x0001
2088101099Srwatson#define	BGE_RCB_FLAG_RING_DISABLED	0x0002
2089101099Srwatson
2090101934Srwatsonstruct bge_tx_bd {
2091101934Srwatson	bge_hostaddr		bge_addr;
2092101099Srwatson#if BYTE_ORDER == LITTLE_ENDIAN
2093101099Srwatson	uint16_t		bge_flags;
2094101099Srwatson	uint16_t		bge_len;
2095101099Srwatson	uint16_t		bge_vlan_tag;
2096101099Srwatson	uint16_t		bge_mss;
2097101099Srwatson#else
2098101099Srwatson	uint16_t		bge_len;
2099101099Srwatson	uint16_t		bge_flags;
2100101099Srwatson	uint16_t		bge_mss;
2101101099Srwatson	uint16_t		bge_vlan_tag;
2102101099Srwatson#endif
2103101099Srwatson};
2104101099Srwatson
2105101099Srwatson#define	BGE_TXBDFLAG_TCP_UDP_CSUM	0x0001
2106101099Srwatson#define	BGE_TXBDFLAG_IP_CSUM		0x0002
2107101099Srwatson#define	BGE_TXBDFLAG_END		0x0004
2108101099Srwatson#define	BGE_TXBDFLAG_IP_FRAG		0x0008
2109101099Srwatson#define	BGE_TXBDFLAG_JUMBO_FRAME	0x0008	/* 5717 */
2110101099Srwatson#define	BGE_TXBDFLAG_IP_FRAG_END	0x0010
2111101099Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT2	0x0010	/* 5717 */
2112101099Srwatson#define	BGE_TXBDFLAG_SNAP		0x0020	/* 5717 */
2113101099Srwatson#define	BGE_TXBDFLAG_VLAN_TAG		0x0040
2114104530Srwatson#define	BGE_TXBDFLAG_COAL_NOW		0x0080
2115104530Srwatson#define	BGE_TXBDFLAG_CPU_PRE_DMA	0x0100
2116101099Srwatson#define	BGE_TXBDFLAG_CPU_POST_DMA	0x0200
2117101099Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT3	0x0400	/* 5717 */
2118101099Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT4	0x0800	/* 5717 */
2119101099Srwatson#define	BGE_TXBDFLAG_INSERT_SRC_ADDR	0x1000
2120102112Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT5	0x1000	/* 5717 */
2121102112Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT6	0x2000	/* 5717 */
2122102112Srwatson#define	BGE_TXBDFLAG_HDRLEN_BIT7	0x4000	/* 5717 */
2123102112Srwatson#define	BGE_TXBDFLAG_CHOOSE_SRC_ADDR	0x6000
2124101099Srwatson#define	BGE_TXBDFLAG_NO_CRC		0x8000
2125101099Srwatson
2126101099Srwatson#define	BGE_TXBDFLAG_MSS_SIZE_MASK	0x3FFF	/* 5717 */
2127101099Srwatson/* Bits [1:0] of the MSS header length. */
2128101099Srwatson#define	BGE_TXBDFLAG_MSS_HDRLEN_MASK	0xC000	/* 5717 */
2129101099Srwatson
2130101099Srwatson#define	BGE_NIC_TXRING_ADDR(ringno, size)	\
2131101099Srwatson	BGE_SEND_RING_1_TO_4 +			\
2132101099Srwatson	((ringno * sizeof(struct bge_tx_bd) * size) / 4)
2133101099Srwatson
2134101099Srwatsonstruct bge_rx_bd {
2135101099Srwatson	bge_hostaddr		bge_addr;
2136101099Srwatson#if BYTE_ORDER == LITTLE_ENDIAN
2137101099Srwatson	uint16_t		bge_len;
2138101099Srwatson	uint16_t		bge_idx;
2139101099Srwatson	uint16_t		bge_flags;
2140101099Srwatson	uint16_t		bge_type;
2141101099Srwatson	uint16_t		bge_tcp_udp_csum;
2142101099Srwatson	uint16_t		bge_ip_csum;
2143101099Srwatson	uint16_t		bge_vlan_tag;
2144101099Srwatson	uint16_t		bge_error_flag;
2145101099Srwatson#else
2146101099Srwatson	uint16_t		bge_idx;
2147101099Srwatson	uint16_t		bge_len;
2148101099Srwatson	uint16_t		bge_type;
2149101099Srwatson	uint16_t		bge_flags;
2150102112Srwatson	uint16_t		bge_ip_csum;
2151102112Srwatson	uint16_t		bge_tcp_udp_csum;
2152101099Srwatson	uint16_t		bge_error_flag;
2153101099Srwatson	uint16_t		bge_vlan_tag;
2154101099Srwatson#endif
2155101099Srwatson	uint32_t		bge_rsvd;
2156101099Srwatson	uint32_t		bge_opaque;
2157101099Srwatson};
2158101099Srwatson
2159struct bge_extrx_bd {
2160	bge_hostaddr		bge_addr1;
2161	bge_hostaddr		bge_addr2;
2162	bge_hostaddr		bge_addr3;
2163#if BYTE_ORDER == LITTLE_ENDIAN
2164	uint16_t		bge_len2;
2165	uint16_t		bge_len1;
2166	uint16_t		bge_rsvd1;
2167	uint16_t		bge_len3;
2168#else
2169	uint16_t		bge_len1;
2170	uint16_t		bge_len2;
2171	uint16_t		bge_len3;
2172	uint16_t		bge_rsvd1;
2173#endif
2174	bge_hostaddr		bge_addr0;
2175#if BYTE_ORDER == LITTLE_ENDIAN
2176	uint16_t		bge_len0;
2177	uint16_t		bge_idx;
2178	uint16_t		bge_flags;
2179	uint16_t		bge_type;
2180	uint16_t		bge_tcp_udp_csum;
2181	uint16_t		bge_ip_csum;
2182	uint16_t		bge_vlan_tag;
2183	uint16_t		bge_error_flag;
2184#else
2185	uint16_t		bge_idx;
2186	uint16_t		bge_len0;
2187	uint16_t		bge_type;
2188	uint16_t		bge_flags;
2189	uint16_t		bge_ip_csum;
2190	uint16_t		bge_tcp_udp_csum;
2191	uint16_t		bge_error_flag;
2192	uint16_t		bge_vlan_tag;
2193#endif
2194	uint32_t		bge_rsvd0;
2195	uint32_t		bge_opaque;
2196};
2197
2198#define	BGE_RXBDFLAG_END		0x0004
2199#define	BGE_RXBDFLAG_JUMBO_RING		0x0020
2200#define	BGE_RXBDFLAG_VLAN_TAG		0x0040
2201#define	BGE_RXBDFLAG_ERROR		0x0400
2202#define	BGE_RXBDFLAG_MINI_RING		0x0800
2203#define	BGE_RXBDFLAG_IP_CSUM		0x1000
2204#define	BGE_RXBDFLAG_TCP_UDP_CSUM	0x2000
2205#define	BGE_RXBDFLAG_TCP_UDP_IS_TCP	0x4000
2206#define	BGE_RXBDFLAG_IPV6		0x8000
2207
2208#define	BGE_RXERRFLAG_BAD_CRC		0x0001
2209#define	BGE_RXERRFLAG_COLL_DETECT	0x0002
2210#define	BGE_RXERRFLAG_LINK_LOST		0x0004
2211#define	BGE_RXERRFLAG_PHY_DECODE_ERR	0x0008
2212#define	BGE_RXERRFLAG_MAC_ABORT		0x0010
2213#define	BGE_RXERRFLAG_RUNT		0x0020
2214#define	BGE_RXERRFLAG_TRUNC_NO_RSRCS	0x0040
2215#define	BGE_RXERRFLAG_GIANT		0x0080
2216#define	BGE_RXERRFLAG_IP_CSUM_NOK	0x1000	/* 5717 */
2217
2218struct bge_sts_idx {
2219#if BYTE_ORDER == LITTLE_ENDIAN
2220	uint16_t		bge_rx_prod_idx;
2221	uint16_t		bge_tx_cons_idx;
2222#else
2223	uint16_t		bge_tx_cons_idx;
2224	uint16_t		bge_rx_prod_idx;
2225#endif
2226};
2227
2228struct bge_status_block {
2229	uint32_t		bge_status;
2230	uint32_t		bge_status_tag;
2231#if BYTE_ORDER == LITTLE_ENDIAN
2232	uint16_t		bge_rx_jumbo_cons_idx;
2233	uint16_t		bge_rx_std_cons_idx;
2234	uint16_t		bge_rx_mini_cons_idx;
2235	uint16_t		bge_rsvd1;
2236#else
2237	uint16_t		bge_rx_std_cons_idx;
2238	uint16_t		bge_rx_jumbo_cons_idx;
2239	uint16_t		bge_rsvd1;
2240	uint16_t		bge_rx_mini_cons_idx;
2241#endif
2242	struct bge_sts_idx	bge_idx[16];
2243};
2244
2245#define	BGE_STATFLAG_UPDATED		0x00000001
2246#define	BGE_STATFLAG_LINKSTATE_CHANGED	0x00000002
2247#define	BGE_STATFLAG_ERROR		0x00000004
2248
2249
2250/*
2251 * Broadcom Vendor ID
2252 * (Note: the BCM570x still defaults to the Alteon PCI vendor ID
2253 * even though they're now manufactured by Broadcom)
2254 */
2255#define	BCOM_VENDORID			0x14E4
2256#define	BCOM_DEVICEID_BCM5700		0x1644
2257#define	BCOM_DEVICEID_BCM5701		0x1645
2258#define	BCOM_DEVICEID_BCM5702		0x1646
2259#define	BCOM_DEVICEID_BCM5702X		0x16A6
2260#define	BCOM_DEVICEID_BCM5702_ALT	0x16C6
2261#define	BCOM_DEVICEID_BCM5703		0x1647
2262#define	BCOM_DEVICEID_BCM5703X		0x16A7
2263#define	BCOM_DEVICEID_BCM5703_ALT	0x16C7
2264#define	BCOM_DEVICEID_BCM5704C		0x1648
2265#define	BCOM_DEVICEID_BCM5704S		0x16A8
2266#define	BCOM_DEVICEID_BCM5704S_ALT	0x1649
2267#define	BCOM_DEVICEID_BCM5705		0x1653
2268#define	BCOM_DEVICEID_BCM5705K		0x1654
2269#define	BCOM_DEVICEID_BCM5705F		0x166E
2270#define	BCOM_DEVICEID_BCM5705M		0x165D
2271#define	BCOM_DEVICEID_BCM5705M_ALT	0x165E
2272#define	BCOM_DEVICEID_BCM5714C		0x1668
2273#define	BCOM_DEVICEID_BCM5714S		0x1669
2274#define	BCOM_DEVICEID_BCM5715		0x1678
2275#define	BCOM_DEVICEID_BCM5715S		0x1679
2276#define	BCOM_DEVICEID_BCM5717		0x1655
2277#define	BCOM_DEVICEID_BCM5718		0x1656
2278#define	BCOM_DEVICEID_BCM5719		0x1657
2279#define	BCOM_DEVICEID_BCM5720		0x1658
2280#define	BCOM_DEVICEID_BCM5721		0x1659
2281#define	BCOM_DEVICEID_BCM5722		0x165A
2282#define	BCOM_DEVICEID_BCM5723		0x165B
2283#define	BCOM_DEVICEID_BCM5750		0x1676
2284#define	BCOM_DEVICEID_BCM5750M		0x167C
2285#define	BCOM_DEVICEID_BCM5751		0x1677
2286#define	BCOM_DEVICEID_BCM5751F		0x167E
2287#define	BCOM_DEVICEID_BCM5751M		0x167D
2288#define	BCOM_DEVICEID_BCM5752		0x1600
2289#define	BCOM_DEVICEID_BCM5752M		0x1601
2290#define	BCOM_DEVICEID_BCM5753		0x16F7
2291#define	BCOM_DEVICEID_BCM5753F		0x16FE
2292#define	BCOM_DEVICEID_BCM5753M		0x16FD
2293#define	BCOM_DEVICEID_BCM5754		0x167A
2294#define	BCOM_DEVICEID_BCM5754M		0x1672
2295#define	BCOM_DEVICEID_BCM5755		0x167B
2296#define	BCOM_DEVICEID_BCM5755M		0x1673
2297#define	BCOM_DEVICEID_BCM5756		0x1674
2298#define	BCOM_DEVICEID_BCM5761		0x1681
2299#define	BCOM_DEVICEID_BCM5761E		0x1680
2300#define	BCOM_DEVICEID_BCM5761S		0x1688
2301#define	BCOM_DEVICEID_BCM5761SE		0x1689
2302#define	BCOM_DEVICEID_BCM5764		0x1684
2303#define	BCOM_DEVICEID_BCM5780		0x166A
2304#define	BCOM_DEVICEID_BCM5780S		0x166B
2305#define	BCOM_DEVICEID_BCM5781		0x16DD
2306#define	BCOM_DEVICEID_BCM5782		0x1696
2307#define	BCOM_DEVICEID_BCM5784		0x1698
2308#define	BCOM_DEVICEID_BCM5785F		0x16a0
2309#define	BCOM_DEVICEID_BCM5785G		0x1699
2310#define	BCOM_DEVICEID_BCM5786		0x169A
2311#define	BCOM_DEVICEID_BCM5787		0x169B
2312#define	BCOM_DEVICEID_BCM5787M		0x1693
2313#define	BCOM_DEVICEID_BCM5787F		0x167f
2314#define	BCOM_DEVICEID_BCM5788		0x169C
2315#define	BCOM_DEVICEID_BCM5789		0x169D
2316#define	BCOM_DEVICEID_BCM5901		0x170D
2317#define	BCOM_DEVICEID_BCM5901A2		0x170E
2318#define	BCOM_DEVICEID_BCM5903M		0x16FF
2319#define	BCOM_DEVICEID_BCM5906		0x1712
2320#define	BCOM_DEVICEID_BCM5906M		0x1713
2321#define	BCOM_DEVICEID_BCM57760		0x1690
2322#define	BCOM_DEVICEID_BCM57761		0x16B0
2323#define	BCOM_DEVICEID_BCM57765		0x16B4
2324#define	BCOM_DEVICEID_BCM57780		0x1692
2325#define	BCOM_DEVICEID_BCM57781		0x16B1
2326#define	BCOM_DEVICEID_BCM57785		0x16B5
2327#define	BCOM_DEVICEID_BCM57788		0x1691
2328#define	BCOM_DEVICEID_BCM57790		0x1694
2329#define	BCOM_DEVICEID_BCM57791		0x16B2
2330#define	BCOM_DEVICEID_BCM57795		0x16B6
2331
2332/*
2333 * Alteon AceNIC PCI vendor/device ID.
2334 */
2335#define	ALTEON_VENDORID			0x12AE
2336#define	ALTEON_DEVICEID_ACENIC		0x0001
2337#define	ALTEON_DEVICEID_ACENIC_COPPER	0x0002
2338#define	ALTEON_DEVICEID_BCM5700		0x0003
2339#define	ALTEON_DEVICEID_BCM5701		0x0004
2340
2341/*
2342 * 3Com 3c996 PCI vendor/device ID.
2343 */
2344#define	TC_VENDORID			0x10B7
2345#define	TC_DEVICEID_3C996		0x0003
2346
2347/*
2348 * SysKonnect PCI vendor ID
2349 */
2350#define	SK_VENDORID			0x1148
2351#define	SK_DEVICEID_ALTIMA		0x4400
2352#define	SK_SUBSYSID_9D21		0x4421
2353#define	SK_SUBSYSID_9D41		0x4441
2354
2355/*
2356 * Altima PCI vendor/device ID.
2357 */
2358#define	ALTIMA_VENDORID			0x173b
2359#define	ALTIMA_DEVICE_AC1000		0x03e8
2360#define	ALTIMA_DEVICE_AC1002		0x03e9
2361#define	ALTIMA_DEVICE_AC9100		0x03ea
2362
2363/*
2364 * Dell PCI vendor ID
2365 */
2366
2367#define	DELL_VENDORID			0x1028
2368
2369/*
2370 * Apple PCI vendor ID.
2371 */
2372#define	APPLE_VENDORID			0x106b
2373#define	APPLE_DEVICE_BCM5701		0x1645
2374
2375/*
2376 * Sun PCI vendor ID
2377 */
2378#define	SUN_VENDORID			0x108e
2379
2380/*
2381 * Fujitsu vendor/device IDs
2382 */
2383#define	FJTSU_VENDORID			0x10cf
2384#define	FJTSU_DEVICEID_PW008GE5		0x11a1
2385#define	FJTSU_DEVICEID_PW008GE4		0x11a2
2386#define	FJTSU_DEVICEID_PP250450		0x11cc		/* PRIMEPOWER250/450 LAN */
2387
2388/*
2389 * Offset of MAC address inside EEPROM.
2390 */
2391#define	BGE_EE_MAC_OFFSET		0x7C
2392#define	BGE_EE_MAC_OFFSET_5906		0x10
2393#define	BGE_EE_HWCFG_OFFSET		0xC8
2394
2395#define	BGE_HWCFG_VOLTAGE		0x00000003
2396#define	BGE_HWCFG_PHYLED_MODE		0x0000000C
2397#define	BGE_HWCFG_MEDIA			0x00000030
2398#define	BGE_HWCFG_ASF			0x00000080
2399
2400#define	BGE_VOLTAGE_1POINT3		0x00000000
2401#define	BGE_VOLTAGE_1POINT8		0x00000001
2402
2403#define	BGE_PHYLEDMODE_UNSPEC		0x00000000
2404#define	BGE_PHYLEDMODE_TRIPLELED	0x00000004
2405#define	BGE_PHYLEDMODE_SINGLELED	0x00000008
2406
2407#define	BGE_MEDIA_UNSPEC		0x00000000
2408#define	BGE_MEDIA_COPPER		0x00000010
2409#define	BGE_MEDIA_FIBER			0x00000020
2410
2411#define	BGE_TICKS_PER_SEC		1000000
2412
2413/*
2414 * Ring size constants.
2415 */
2416#define	BGE_EVENT_RING_CNT	256
2417#define	BGE_CMD_RING_CNT	64
2418#define	BGE_STD_RX_RING_CNT	512
2419#define	BGE_JUMBO_RX_RING_CNT	256
2420#define	BGE_MINI_RX_RING_CNT	1024
2421#define	BGE_RETURN_RING_CNT	1024
2422
2423/* 5705 has smaller return ring size */
2424
2425#define	BGE_RETURN_RING_CNT_5705	512
2426
2427/*
2428 * Possible TX ring sizes.
2429 */
2430#define	BGE_TX_RING_CNT_128	128
2431#define	BGE_TX_RING_BASE_128	0x3800
2432
2433#define	BGE_TX_RING_CNT_256	256
2434#define	BGE_TX_RING_BASE_256	0x3000
2435
2436#define	BGE_TX_RING_CNT_512	512
2437#define	BGE_TX_RING_BASE_512	0x2000
2438
2439#define	BGE_TX_RING_CNT		BGE_TX_RING_CNT_512
2440#define	BGE_TX_RING_BASE	BGE_TX_RING_BASE_512
2441
2442/*
2443 * Tigon III statistics counters.
2444 */
2445/* Statistics maintained MAC Receive block. */
2446struct bge_rx_mac_stats {
2447	bge_hostaddr		ifHCInOctets;
2448	bge_hostaddr		Reserved1;
2449	bge_hostaddr		etherStatsFragments;
2450	bge_hostaddr		ifHCInUcastPkts;
2451	bge_hostaddr		ifHCInMulticastPkts;
2452	bge_hostaddr		ifHCInBroadcastPkts;
2453	bge_hostaddr		dot3StatsFCSErrors;
2454	bge_hostaddr		dot3StatsAlignmentErrors;
2455	bge_hostaddr		xonPauseFramesReceived;
2456	bge_hostaddr		xoffPauseFramesReceived;
2457	bge_hostaddr		macControlFramesReceived;
2458	bge_hostaddr		xoffStateEntered;
2459	bge_hostaddr		dot3StatsFramesTooLong;
2460	bge_hostaddr		etherStatsJabbers;
2461	bge_hostaddr		etherStatsUndersizePkts;
2462	bge_hostaddr		inRangeLengthError;
2463	bge_hostaddr		outRangeLengthError;
2464	bge_hostaddr		etherStatsPkts64Octets;
2465	bge_hostaddr		etherStatsPkts65Octetsto127Octets;
2466	bge_hostaddr		etherStatsPkts128Octetsto255Octets;
2467	bge_hostaddr		etherStatsPkts256Octetsto511Octets;
2468	bge_hostaddr		etherStatsPkts512Octetsto1023Octets;
2469	bge_hostaddr		etherStatsPkts1024Octetsto1522Octets;
2470	bge_hostaddr		etherStatsPkts1523Octetsto2047Octets;
2471	bge_hostaddr		etherStatsPkts2048Octetsto4095Octets;
2472	bge_hostaddr		etherStatsPkts4096Octetsto8191Octets;
2473	bge_hostaddr		etherStatsPkts8192Octetsto9022Octets;
2474};
2475
2476
2477/* Statistics maintained MAC Transmit block. */
2478struct bge_tx_mac_stats {
2479	bge_hostaddr		ifHCOutOctets;
2480	bge_hostaddr		Reserved2;
2481	bge_hostaddr		etherStatsCollisions;
2482	bge_hostaddr		outXonSent;
2483	bge_hostaddr		outXoffSent;
2484	bge_hostaddr		flowControlDone;
2485	bge_hostaddr		dot3StatsInternalMacTransmitErrors;
2486	bge_hostaddr		dot3StatsSingleCollisionFrames;
2487	bge_hostaddr		dot3StatsMultipleCollisionFrames;
2488	bge_hostaddr		dot3StatsDeferredTransmissions;
2489	bge_hostaddr		Reserved3;
2490	bge_hostaddr		dot3StatsExcessiveCollisions;
2491	bge_hostaddr		dot3StatsLateCollisions;
2492	bge_hostaddr		dot3Collided2Times;
2493	bge_hostaddr		dot3Collided3Times;
2494	bge_hostaddr		dot3Collided4Times;
2495	bge_hostaddr		dot3Collided5Times;
2496	bge_hostaddr		dot3Collided6Times;
2497	bge_hostaddr		dot3Collided7Times;
2498	bge_hostaddr		dot3Collided8Times;
2499	bge_hostaddr		dot3Collided9Times;
2500	bge_hostaddr		dot3Collided10Times;
2501	bge_hostaddr		dot3Collided11Times;
2502	bge_hostaddr		dot3Collided12Times;
2503	bge_hostaddr		dot3Collided13Times;
2504	bge_hostaddr		dot3Collided14Times;
2505	bge_hostaddr		dot3Collided15Times;
2506	bge_hostaddr		ifHCOutUcastPkts;
2507	bge_hostaddr		ifHCOutMulticastPkts;
2508	bge_hostaddr		ifHCOutBroadcastPkts;
2509	bge_hostaddr		dot3StatsCarrierSenseErrors;
2510	bge_hostaddr		ifOutDiscards;
2511	bge_hostaddr		ifOutErrors;
2512};
2513
2514/* Stats counters access through registers */
2515struct bge_mac_stats {
2516	/* TX MAC statistics */
2517	uint64_t		ifHCOutOctets;
2518	uint64_t		Reserved0;
2519	uint64_t		etherStatsCollisions;
2520	uint64_t		outXonSent;
2521	uint64_t		outXoffSent;
2522	uint64_t		Reserved1;
2523	uint64_t		dot3StatsInternalMacTransmitErrors;
2524	uint64_t		dot3StatsSingleCollisionFrames;
2525	uint64_t		dot3StatsMultipleCollisionFrames;
2526	uint64_t		dot3StatsDeferredTransmissions;
2527	uint64_t		Reserved2;
2528	uint64_t		dot3StatsExcessiveCollisions;
2529	uint64_t		dot3StatsLateCollisions;
2530	uint64_t		Reserved3[14];
2531	uint64_t		ifHCOutUcastPkts;
2532	uint64_t		ifHCOutMulticastPkts;
2533	uint64_t		ifHCOutBroadcastPkts;
2534	uint64_t		Reserved4[2];
2535	/* RX MAC statistics */
2536	uint64_t		ifHCInOctets;
2537	uint64_t		Reserved5;
2538	uint64_t		etherStatsFragments;
2539	uint64_t		ifHCInUcastPkts;
2540	uint64_t		ifHCInMulticastPkts;
2541	uint64_t		ifHCInBroadcastPkts;
2542	uint64_t		dot3StatsFCSErrors;
2543	uint64_t		dot3StatsAlignmentErrors;
2544	uint64_t		xonPauseFramesReceived;
2545	uint64_t		xoffPauseFramesReceived;
2546	uint64_t		macControlFramesReceived;
2547	uint64_t		xoffStateEntered;
2548	uint64_t		dot3StatsFramesTooLong;
2549	uint64_t		etherStatsJabbers;
2550	uint64_t		etherStatsUndersizePkts;
2551	/* Receive List Placement control */
2552	uint64_t		FramesDroppedDueToFilters;
2553	uint64_t		DmaWriteQueueFull;
2554	uint64_t		DmaWriteHighPriQueueFull;
2555	uint64_t		NoMoreRxBDs;
2556	uint64_t		InputDiscards;
2557	uint64_t		InputErrors;
2558	uint64_t		RecvThresholdHit;
2559};
2560
2561struct bge_stats {
2562	uint8_t		Reserved0[256];
2563
2564	/* Statistics maintained by Receive MAC. */
2565	struct bge_rx_mac_stats rxstats;
2566
2567	bge_hostaddr		Unused1[37];
2568
2569	/* Statistics maintained by Transmit MAC. */
2570	struct bge_tx_mac_stats txstats;
2571
2572	bge_hostaddr		Unused2[31];
2573
2574	/* Statistics maintained by Receive List Placement. */
2575	bge_hostaddr		COSIfHCInPkts[16];
2576	bge_hostaddr		COSFramesDroppedDueToFilters;
2577	bge_hostaddr		nicDmaWriteQueueFull;
2578	bge_hostaddr		nicDmaWriteHighPriQueueFull;
2579	bge_hostaddr		nicNoMoreRxBDs;
2580	bge_hostaddr		ifInDiscards;
2581	bge_hostaddr		ifInErrors;
2582	bge_hostaddr		nicRecvThresholdHit;
2583
2584	bge_hostaddr		Unused3[9];
2585
2586	/* Statistics maintained by Send Data Initiator. */
2587	bge_hostaddr		COSIfHCOutPkts[16];
2588	bge_hostaddr		nicDmaReadQueueFull;
2589	bge_hostaddr		nicDmaReadHighPriQueueFull;
2590	bge_hostaddr		nicSendDataCompQueueFull;
2591
2592	/* Statistics maintained by Host Coalescing. */
2593	bge_hostaddr		nicRingSetSendProdIndex;
2594	bge_hostaddr		nicRingStatusUpdate;
2595	bge_hostaddr		nicInterrupts;
2596	bge_hostaddr		nicAvoidedInterrupts;
2597	bge_hostaddr		nicSendThresholdHit;
2598
2599	uint8_t		Reserved4[320];
2600};
2601
2602/*
2603 * Tigon general information block. This resides in host memory
2604 * and contains the status counters, ring control blocks and
2605 * producer pointers.
2606 */
2607
2608struct bge_gib {
2609	struct bge_stats	bge_stats;
2610	struct bge_rcb		bge_tx_rcb[16];
2611	struct bge_rcb		bge_std_rx_rcb;
2612	struct bge_rcb		bge_jumbo_rx_rcb;
2613	struct bge_rcb		bge_mini_rx_rcb;
2614	struct bge_rcb		bge_return_rcb;
2615};
2616
2617#define	BGE_FRAMELEN		1518
2618#define	BGE_MAX_FRAMELEN	1536
2619#define	BGE_JUMBO_FRAMELEN	9018
2620#define	BGE_JUMBO_MTU		(BGE_JUMBO_FRAMELEN-ETHER_HDR_LEN-ETHER_CRC_LEN)
2621#define	BGE_MIN_FRAMELEN		60
2622
2623/*
2624 * Other utility macros.
2625 */
2626#define	BGE_INC(x, y)	(x) = (x + 1) % y
2627
2628/*
2629 * Register access macros. The Tigon always uses memory mapped register
2630 * accesses and all registers must be accessed with 32 bit operations.
2631 */
2632
2633#define	CSR_WRITE_4(sc, reg, val)	\
2634	bus_write_4(sc->bge_res, reg, val)
2635
2636#define	CSR_READ_4(sc, reg)		\
2637	bus_read_4(sc->bge_res, reg)
2638
2639#define	BGE_SETBIT(sc, reg, x)	\
2640	CSR_WRITE_4(sc, reg, (CSR_READ_4(sc, reg) | (x)))
2641#define	BGE_CLRBIT(sc, reg, x)	\
2642	CSR_WRITE_4(sc, reg, (CSR_READ_4(sc, reg) & ~(x)))
2643
2644#define	PCI_SETBIT(dev, reg, x, s)	\
2645	pci_write_config(dev, reg, (pci_read_config(dev, reg, s) | (x)), s)
2646#define	PCI_CLRBIT(dev, reg, x, s)	\
2647	pci_write_config(dev, reg, (pci_read_config(dev, reg, s) & ~(x)), s)
2648
2649/*
2650 * Memory management stuff.
2651 */
2652
2653#define	BGE_NSEG_JUMBO	4
2654#define	BGE_NSEG_NEW	32
2655#define	BGE_TSOSEG_SZ	4096
2656
2657/* Maximum DMA address for controllers that have 40bit DMA address bug. */
2658#if (BUS_SPACE_MAXADDR < 0xFFFFFFFFFF)
2659#define	BGE_DMA_MAXADDR		BUS_SPACE_MAXADDR
2660#else
2661#define	BGE_DMA_MAXADDR		0xFFFFFFFFFF
2662#endif
2663
2664#ifdef PAE
2665#define	BGE_DMA_BNDRY		0x80000000
2666#else
2667#if (BUS_SPACE_MAXADDR > 0xFFFFFFFF)
2668#define	BGE_DMA_BNDRY		0x100000000
2669#else
2670#define	BGE_DMA_BNDRY		0
2671#endif
2672#endif
2673
2674/*
2675 * Ring structures. Most of these reside in host memory and we tell
2676 * the NIC where they are via the ring control blocks. The exceptions
2677 * are the tx and command rings, which live in NIC memory and which
2678 * we access via the shared memory window.
2679 */
2680
2681struct bge_ring_data {
2682	struct bge_rx_bd	*bge_rx_std_ring;
2683	bus_addr_t		bge_rx_std_ring_paddr;
2684	struct bge_extrx_bd	*bge_rx_jumbo_ring;
2685	bus_addr_t		bge_rx_jumbo_ring_paddr;
2686	struct bge_rx_bd	*bge_rx_return_ring;
2687	bus_addr_t		bge_rx_return_ring_paddr;
2688	struct bge_tx_bd	*bge_tx_ring;
2689	bus_addr_t		bge_tx_ring_paddr;
2690	struct bge_status_block	*bge_status_block;
2691	bus_addr_t		bge_status_block_paddr;
2692	struct bge_stats	*bge_stats;
2693	bus_addr_t		bge_stats_paddr;
2694	struct bge_gib		bge_info;
2695};
2696
2697#define	BGE_STD_RX_RING_SZ	\
2698	(sizeof(struct bge_rx_bd) * BGE_STD_RX_RING_CNT)
2699#define	BGE_JUMBO_RX_RING_SZ	\
2700	(sizeof(struct bge_extrx_bd) * BGE_JUMBO_RX_RING_CNT)
2701#define	BGE_TX_RING_SZ		\
2702	(sizeof(struct bge_tx_bd) * BGE_TX_RING_CNT)
2703#define	BGE_RX_RTN_RING_SZ(x)	\
2704	(sizeof(struct bge_rx_bd) * x->bge_return_ring_cnt)
2705
2706#define	BGE_STATUS_BLK_SZ	sizeof (struct bge_status_block)
2707
2708#define	BGE_STATS_SZ		sizeof (struct bge_stats)
2709
2710/*
2711 * Mbuf pointers. We need these to keep track of the virtual addresses
2712 * of our mbuf chains since we can only convert from physical to virtual,
2713 * not the other way around.
2714 */
2715struct bge_chain_data {
2716	bus_dma_tag_t		bge_parent_tag;
2717	bus_dma_tag_t		bge_buffer_tag;
2718	bus_dma_tag_t		bge_rx_std_ring_tag;
2719	bus_dma_tag_t		bge_rx_jumbo_ring_tag;
2720	bus_dma_tag_t		bge_rx_return_ring_tag;
2721	bus_dma_tag_t		bge_tx_ring_tag;
2722	bus_dma_tag_t		bge_status_tag;
2723	bus_dma_tag_t		bge_stats_tag;
2724	bus_dma_tag_t		bge_rx_mtag;	/* Rx mbuf mapping tag */
2725	bus_dma_tag_t		bge_tx_mtag;	/* Tx mbuf mapping tag */
2726	bus_dma_tag_t		bge_mtag_jumbo;	/* Jumbo mbuf mapping tag */
2727	bus_dmamap_t		bge_tx_dmamap[BGE_TX_RING_CNT];
2728	bus_dmamap_t		bge_rx_std_sparemap;
2729	bus_dmamap_t		bge_rx_std_dmamap[BGE_STD_RX_RING_CNT];
2730	bus_dmamap_t		bge_rx_jumbo_sparemap;
2731	bus_dmamap_t		bge_rx_jumbo_dmamap[BGE_JUMBO_RX_RING_CNT];
2732	bus_dmamap_t		bge_rx_std_ring_map;
2733	bus_dmamap_t		bge_rx_jumbo_ring_map;
2734	bus_dmamap_t		bge_tx_ring_map;
2735	bus_dmamap_t		bge_rx_return_ring_map;
2736	bus_dmamap_t		bge_status_map;
2737	bus_dmamap_t		bge_stats_map;
2738	struct mbuf		*bge_tx_chain[BGE_TX_RING_CNT];
2739	struct mbuf		*bge_rx_std_chain[BGE_STD_RX_RING_CNT];
2740	struct mbuf		*bge_rx_jumbo_chain[BGE_JUMBO_RX_RING_CNT];
2741	int			bge_rx_std_seglen[BGE_STD_RX_RING_CNT];
2742	int			bge_rx_jumbo_seglen[BGE_JUMBO_RX_RING_CNT][4];
2743};
2744
2745struct bge_dmamap_arg {
2746	bus_addr_t		bge_busaddr;
2747};
2748
2749#define	BGE_HWREV_TIGON		0x01
2750#define	BGE_HWREV_TIGON_II	0x02
2751#define	BGE_TIMEOUT		100000
2752#define	BGE_TXCONS_UNSET		0xFFFF	/* impossible value */
2753
2754struct bge_bcom_hack {
2755	int			reg;
2756	int			val;
2757};
2758
2759#define	ASF_ENABLE		1
2760#define	ASF_NEW_HANDSHAKE	2
2761#define	ASF_STACKUP		4
2762
2763struct bge_softc {
2764	struct ifnet		*bge_ifp;	/* interface info */
2765	device_t		bge_dev;
2766	struct mtx		bge_mtx;
2767	device_t		bge_miibus;
2768	void			*bge_intrhand;
2769	struct resource		*bge_irq;
2770	struct resource		*bge_res;
2771	struct ifmedia		bge_ifmedia;	/* TBI media info */
2772	int			bge_expcap;
2773	int			bge_msicap;
2774	int			bge_pcixcap;
2775	uint32_t		bge_flags;
2776#define	BGE_FLAG_TBI		0x00000001
2777#define	BGE_FLAG_JUMBO		0x00000002
2778#define	BGE_FLAG_JUMBO_STD	0x00000004
2779#define	BGE_FLAG_EADDR		0x00000008
2780#define	BGE_FLAG_MII_SERDES	0x00000010
2781#define	BGE_FLAG_CPMU_PRESENT	0x00000020
2782#define	BGE_FLAG_TAGGED_STATUS	0x00000040
2783#define	BGE_FLAG_MSI		0x00000100
2784#define	BGE_FLAG_PCIX		0x00000200
2785#define	BGE_FLAG_PCIE		0x00000400
2786#define	BGE_FLAG_TSO		0x00000800
2787#define	BGE_FLAG_TSO3		0x00001000
2788#define	BGE_FLAG_JUMBO_FRAME	0x00002000
2789#define	BGE_FLAG_5700_FAMILY	0x00010000
2790#define	BGE_FLAG_5705_PLUS	0x00020000
2791#define	BGE_FLAG_5714_FAMILY	0x00040000
2792#define	BGE_FLAG_575X_PLUS	0x00080000
2793#define	BGE_FLAG_5755_PLUS	0x00100000
2794#define	BGE_FLAG_5788		0x00200000
2795#define	BGE_FLAG_5717_PLUS	0x00400000
2796#define	BGE_FLAG_40BIT_BUG	0x01000000
2797#define	BGE_FLAG_4G_BNDRY_BUG	0x02000000
2798#define	BGE_FLAG_RX_ALIGNBUG	0x04000000
2799#define	BGE_FLAG_SHORT_DMA_BUG	0x08000000
2800#define	BGE_FLAG_4K_RDMA_BUG	0x10000000
2801	uint32_t		bge_phy_flags;
2802#define	BGE_PHY_NO_WIRESPEED	0x00000001
2803#define	BGE_PHY_ADC_BUG		0x00000002
2804#define	BGE_PHY_5704_A0_BUG	0x00000004
2805#define	BGE_PHY_JITTER_BUG	0x00000008
2806#define	BGE_PHY_BER_BUG		0x00000010
2807#define	BGE_PHY_ADJUST_TRIM	0x00000020
2808#define	BGE_PHY_CRC_BUG		0x00000040
2809#define	BGE_PHY_NO_3LED		0x00000080
2810	uint32_t		bge_chipid;
2811	uint32_t		bge_asicrev;
2812	uint32_t		bge_chiprev;
2813	uint8_t			bge_asf_mode;
2814	uint8_t			bge_asf_count;
2815	struct bge_ring_data	bge_ldata;	/* rings */
2816	struct bge_chain_data	bge_cdata;	/* mbufs */
2817	uint16_t		bge_tx_saved_considx;
2818	uint16_t		bge_rx_saved_considx;
2819	uint16_t		bge_ev_saved_considx;
2820	uint16_t		bge_return_ring_cnt;
2821	uint16_t		bge_std;	/* current std ring head */
2822	uint16_t		bge_jumbo;	/* current jumo ring head */
2823	uint32_t		bge_stat_ticks;
2824	uint32_t		bge_rx_coal_ticks;
2825	uint32_t		bge_tx_coal_ticks;
2826	uint32_t		bge_tx_prodidx;
2827	uint32_t		bge_rx_max_coal_bds;
2828	uint32_t		bge_tx_max_coal_bds;
2829	uint32_t		bge_mi_mode;
2830	int			bge_if_flags;
2831	int			bge_txcnt;
2832	int			bge_link;	/* link state */
2833	int			bge_link_evt;	/* pending link event */
2834	int			bge_timer;
2835	int			bge_forced_collapse;
2836	int			bge_forced_udpcsum;
2837	int			bge_csum_features;
2838	struct callout		bge_stat_ch;
2839	uint32_t		bge_rx_discards;
2840	uint32_t		bge_tx_discards;
2841	uint32_t		bge_tx_collisions;
2842#ifdef DEVICE_POLLING
2843	int			rxcycles;
2844#endif /* DEVICE_POLLING */
2845	struct bge_mac_stats	bge_mac_stats;
2846	struct task		bge_intr_task;
2847	struct taskqueue	*bge_tq;
2848};
2849
2850#define	BGE_LOCK_INIT(_sc, _name) \
2851	mtx_init(&(_sc)->bge_mtx, _name, MTX_NETWORK_LOCK, MTX_DEF)
2852#define	BGE_LOCK(_sc)		mtx_lock(&(_sc)->bge_mtx)
2853#define	BGE_LOCK_ASSERT(_sc)	mtx_assert(&(_sc)->bge_mtx, MA_OWNED)
2854#define	BGE_UNLOCK(_sc)		mtx_unlock(&(_sc)->bge_mtx)
2855#define	BGE_LOCK_DESTROY(_sc)	mtx_destroy(&(_sc)->bge_mtx)
2856