blob: f836b0322b1977b9fa853b4e7690b59fcc25d907 [file] [log] [blame]
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001/*
2 * Definitions for the new Marvell Yukon 2 driver.
3 */
4#ifndef _SKY2_H
5#define _SKY2_H
6
7/* PCI config registers */
8#define PCI_DEV_REG1 0x40
9#define PCI_DEV_REG2 0x44
10#define PCI_DEV_STATUS 0x7c
11#define PCI_OS_PCI_X (1<<26)
12
13#define PEX_LNK_STAT 0xf2
14#define PEX_UNC_ERR_STAT 0x104
15#define PEX_DEV_CTRL 0xe8
16
17/* Yukon-2 */
18enum pci_dev_reg_1 {
19 PCI_Y2_PIG_ENA = 1<<31, /* Enable Plug-in-Go (YUKON-2) */
20 PCI_Y2_DLL_DIS = 1<<30, /* Disable PCI DLL (YUKON-2) */
21 PCI_Y2_PHY2_COMA = 1<<29, /* Set PHY 2 to Coma Mode (YUKON-2) */
22 PCI_Y2_PHY1_COMA = 1<<28, /* Set PHY 1 to Coma Mode (YUKON-2) */
23 PCI_Y2_PHY2_POWD = 1<<27, /* Set PHY 2 to Power Down (YUKON-2) */
24 PCI_Y2_PHY1_POWD = 1<<26, /* Set PHY 1 to Power Down (YUKON-2) */
25};
26
27enum pci_dev_reg_2 {
28 PCI_VPD_WR_THR = 0xffL<<24, /* Bit 31..24: VPD Write Threshold */
29 PCI_DEV_SEL = 0x7fL<<17, /* Bit 23..17: EEPROM Device Select */
30 PCI_VPD_ROM_SZ = 7L<<14, /* Bit 16..14: VPD ROM Size */
31
32 PCI_PATCH_DIR = 0xfL<<8, /* Bit 11.. 8: Ext Patches dir 3..0 */
33 PCI_EXT_PATCHS = 0xfL<<4, /* Bit 7.. 4: Extended Patches 3..0 */
34 PCI_EN_DUMMY_RD = 1<<3, /* Enable Dummy Read */
35 PCI_REV_DESC = 1<<2, /* Reverse Desc. Bytes */
36
37 PCI_USEDATA64 = 1<<0, /* Use 64Bit Data bus ext */
38};
39
40
41#define PCI_STATUS_ERROR_BITS (PCI_STATUS_DETECTED_PARITY | \
42 PCI_STATUS_SIG_SYSTEM_ERROR | \
43 PCI_STATUS_REC_MASTER_ABORT | \
44 PCI_STATUS_REC_TARGET_ABORT | \
45 PCI_STATUS_PARITY)
46
47enum pex_dev_ctrl {
48 PEX_DC_MAX_RRS_MSK = 7<<12, /* Bit 14..12: Max. Read Request Size */
49 PEX_DC_EN_NO_SNOOP = 1<<11,/* Enable No Snoop */
50 PEX_DC_EN_AUX_POW = 1<<10,/* Enable AUX Power */
51 PEX_DC_EN_PHANTOM = 1<<9, /* Enable Phantom Functions */
52 PEX_DC_EN_EXT_TAG = 1<<8, /* Enable Extended Tag Field */
53 PEX_DC_MAX_PLS_MSK = 7<<5, /* Bit 7.. 5: Max. Payload Size Mask */
54 PEX_DC_EN_REL_ORD = 1<<4, /* Enable Relaxed Ordering */
55 PEX_DC_EN_UNS_RQ_RP = 1<<3, /* Enable Unsupported Request Reporting */
56 PEX_DC_EN_FAT_ER_RP = 1<<2, /* Enable Fatal Error Reporting */
57 PEX_DC_EN_NFA_ER_RP = 1<<1, /* Enable Non-Fatal Error Reporting */
58 PEX_DC_EN_COR_ER_RP = 1<<0, /* Enable Correctable Error Reporting */
59};
60#define PEX_DC_MAX_RD_RQ_SIZE(x) (((x)<<12) & PEX_DC_MAX_RRS_MSK)
61
62/* PEX_UNC_ERR_STAT PEX Uncorrectable Errors Status Register (Yukon-2) */
63enum pex_err {
64 PEX_UNSUP_REQ = 1<<20, /* Unsupported Request Error */
65
66 PEX_MALFOR_TLP = 1<<18, /* Malformed TLP */
67
68 PEX_UNEXP_COMP = 1<<16, /* Unexpected Completion */
69
70 PEX_COMP_TO = 1<<14, /* Completion Timeout */
71 PEX_FLOW_CTRL_P = 1<<13, /* Flow Control Protocol Error */
72 PEX_POIS_TLP = 1<<12, /* Poisoned TLP */
73
74 PEX_DATA_LINK_P = 1<<4, /* Data Link Protocol Error */
75 PEX_FATAL_ERRORS= (PEX_MALFOR_TLP | PEX_FLOW_CTRL_P | PEX_DATA_LINK_P),
76};
77
78
79enum csr_regs {
80 B0_RAP = 0x0000,
81 B0_CTST = 0x0004,
82 B0_Y2LED = 0x0005,
83 B0_POWER_CTRL = 0x0007,
84 B0_ISRC = 0x0008,
85 B0_IMSK = 0x000c,
86 B0_HWE_ISRC = 0x0010,
87 B0_HWE_IMSK = 0x0014,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -070088
89 /* Special ISR registers (Yukon-2 only) */
90 B0_Y2_SP_ISRC2 = 0x001c,
91 B0_Y2_SP_ISRC3 = 0x0020,
92 B0_Y2_SP_EISR = 0x0024,
93 B0_Y2_SP_LISR = 0x0028,
94 B0_Y2_SP_ICR = 0x002c,
95
96 B2_MAC_1 = 0x0100,
97 B2_MAC_2 = 0x0108,
98 B2_MAC_3 = 0x0110,
99 B2_CONN_TYP = 0x0118,
100 B2_PMD_TYP = 0x0119,
101 B2_MAC_CFG = 0x011a,
102 B2_CHIP_ID = 0x011b,
103 B2_E_0 = 0x011c,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700104
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700105 B2_Y2_CLK_GATE = 0x011d,
106 B2_Y2_HW_RES = 0x011e,
107 B2_E_3 = 0x011f,
108 B2_Y2_CLK_CTRL = 0x0120,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700109
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700110 B2_TI_INI = 0x0130,
111 B2_TI_VAL = 0x0134,
112 B2_TI_CTRL = 0x0138,
113 B2_TI_TEST = 0x0139,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700114
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700115 B2_TST_CTRL1 = 0x0158,
116 B2_TST_CTRL2 = 0x0159,
117 B2_GP_IO = 0x015c,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700118
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700119 B2_I2C_CTRL = 0x0160,
120 B2_I2C_DATA = 0x0164,
121 B2_I2C_IRQ = 0x0168,
122 B2_I2C_SW = 0x016c,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700123
124 B3_RAM_ADDR = 0x0180,
125 B3_RAM_DATA_LO = 0x0184,
126 B3_RAM_DATA_HI = 0x0188,
127
128/* RAM Interface Registers */
129/* Yukon-2: use RAM_BUFFER() to access the RAM buffer */
130/*
131 * The HW-Spec. calls this registers Timeout Value 0..11. But this names are
132 * not usable in SW. Please notice these are NOT real timeouts, these are
133 * the number of qWords transferred continuously.
134 */
135#define RAM_BUFFER(port, reg) (reg | (port <<6))
136
137 B3_RI_WTO_R1 = 0x0190,
138 B3_RI_WTO_XA1 = 0x0191,
139 B3_RI_WTO_XS1 = 0x0192,
140 B3_RI_RTO_R1 = 0x0193,
141 B3_RI_RTO_XA1 = 0x0194,
142 B3_RI_RTO_XS1 = 0x0195,
143 B3_RI_WTO_R2 = 0x0196,
144 B3_RI_WTO_XA2 = 0x0197,
145 B3_RI_WTO_XS2 = 0x0198,
146 B3_RI_RTO_R2 = 0x0199,
147 B3_RI_RTO_XA2 = 0x019a,
148 B3_RI_RTO_XS2 = 0x019b,
149 B3_RI_TO_VAL = 0x019c,
150 B3_RI_CTRL = 0x01a0,
151 B3_RI_TEST = 0x01a2,
152 B3_MA_TOINI_RX1 = 0x01b0,
153 B3_MA_TOINI_RX2 = 0x01b1,
154 B3_MA_TOINI_TX1 = 0x01b2,
155 B3_MA_TOINI_TX2 = 0x01b3,
156 B3_MA_TOVAL_RX1 = 0x01b4,
157 B3_MA_TOVAL_RX2 = 0x01b5,
158 B3_MA_TOVAL_TX1 = 0x01b6,
159 B3_MA_TOVAL_TX2 = 0x01b7,
160 B3_MA_TO_CTRL = 0x01b8,
161 B3_MA_TO_TEST = 0x01ba,
162 B3_MA_RCINI_RX1 = 0x01c0,
163 B3_MA_RCINI_RX2 = 0x01c1,
164 B3_MA_RCINI_TX1 = 0x01c2,
165 B3_MA_RCINI_TX2 = 0x01c3,
166 B3_MA_RCVAL_RX1 = 0x01c4,
167 B3_MA_RCVAL_RX2 = 0x01c5,
168 B3_MA_RCVAL_TX1 = 0x01c6,
169 B3_MA_RCVAL_TX2 = 0x01c7,
170 B3_MA_RC_CTRL = 0x01c8,
171 B3_MA_RC_TEST = 0x01ca,
172 B3_PA_TOINI_RX1 = 0x01d0,
173 B3_PA_TOINI_RX2 = 0x01d4,
174 B3_PA_TOINI_TX1 = 0x01d8,
175 B3_PA_TOINI_TX2 = 0x01dc,
176 B3_PA_TOVAL_RX1 = 0x01e0,
177 B3_PA_TOVAL_RX2 = 0x01e4,
178 B3_PA_TOVAL_TX1 = 0x01e8,
179 B3_PA_TOVAL_TX2 = 0x01ec,
180 B3_PA_CTRL = 0x01f0,
181 B3_PA_TEST = 0x01f2,
182
183 Y2_CFG_SPC = 0x1c00,
184};
185
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700186/* B0_CTST 16 bit Control/Status register */
187enum {
Stephen Hemminger793b8832005-09-14 16:06:14 -0700188 Y2_VMAIN_AVAIL = 1<<17,/* VMAIN available (YUKON-2 only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700189 Y2_VAUX_AVAIL = 1<<16,/* VAUX available (YUKON-2 only) */
190 Y2_ASF_ENABLE = 1<<13,/* ASF Unit Enable (YUKON-2 only) */
191 Y2_ASF_DISABLE = 1<<12,/* ASF Unit Disable (YUKON-2 only) */
192 Y2_CLK_RUN_ENA = 1<<11,/* CLK_RUN Enable (YUKON-2 only) */
193 Y2_CLK_RUN_DIS = 1<<10,/* CLK_RUN Disable (YUKON-2 only) */
194 Y2_LED_STAT_ON = 1<<9, /* Status LED On (YUKON-2 only) */
195 Y2_LED_STAT_OFF = 1<<8, /* Status LED Off (YUKON-2 only) */
196
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700197 CS_ST_SW_IRQ = 1<<7, /* Set IRQ SW Request */
198 CS_CL_SW_IRQ = 1<<6, /* Clear IRQ SW Request */
199 CS_STOP_DONE = 1<<5, /* Stop Master is finished */
200 CS_STOP_MAST = 1<<4, /* Command Bit to stop the master */
201 CS_MRST_CLR = 1<<3, /* Clear Master reset */
202 CS_MRST_SET = 1<<2, /* Set Master reset */
203 CS_RST_CLR = 1<<1, /* Clear Software reset */
204 CS_RST_SET = 1, /* Set Software reset */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700205};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700206
207/* B0_LED 8 Bit LED register */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700208enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700209/* Bit 7.. 2: reserved */
210 LED_STAT_ON = 1<<1, /* Status LED on */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700211 LED_STAT_OFF = 1, /* Status LED off */
212};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700213
214/* B0_POWER_CTRL 8 Bit Power Control reg (YUKON only) */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700215enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700216 PC_VAUX_ENA = 1<<7, /* Switch VAUX Enable */
217 PC_VAUX_DIS = 1<<6, /* Switch VAUX Disable */
218 PC_VCC_ENA = 1<<5, /* Switch VCC Enable */
219 PC_VCC_DIS = 1<<4, /* Switch VCC Disable */
220 PC_VAUX_ON = 1<<3, /* Switch VAUX On */
221 PC_VAUX_OFF = 1<<2, /* Switch VAUX Off */
222 PC_VCC_ON = 1<<1, /* Switch VCC On */
223 PC_VCC_OFF = 1<<0, /* Switch VCC Off */
224};
225
226/* B2_IRQM_MSK 32 bit IRQ Moderation Mask */
227
228/* B0_Y2_SP_ISRC2 32 bit Special Interrupt Source Reg 2 */
229/* B0_Y2_SP_ISRC3 32 bit Special Interrupt Source Reg 3 */
230/* B0_Y2_SP_EISR 32 bit Enter ISR Reg */
231/* B0_Y2_SP_LISR 32 bit Leave ISR Reg */
232enum {
233 Y2_IS_HW_ERR = 1<<31, /* Interrupt HW Error */
234 Y2_IS_STAT_BMU = 1<<30, /* Status BMU Interrupt */
235 Y2_IS_ASF = 1<<29, /* ASF subsystem Interrupt */
236
237 Y2_IS_POLL_CHK = 1<<27, /* Check IRQ from polling unit */
238 Y2_IS_TWSI_RDY = 1<<26, /* IRQ on end of TWSI Tx */
239 Y2_IS_IRQ_SW = 1<<25, /* SW forced IRQ */
240 Y2_IS_TIMINT = 1<<24, /* IRQ from Timer */
241
242 Y2_IS_IRQ_PHY2 = 1<<12, /* Interrupt from PHY 2 */
243 Y2_IS_IRQ_MAC2 = 1<<11, /* Interrupt from MAC 2 */
244 Y2_IS_CHK_RX2 = 1<<10, /* Descriptor error Rx 2 */
245 Y2_IS_CHK_TXS2 = 1<<9, /* Descriptor error TXS 2 */
246 Y2_IS_CHK_TXA2 = 1<<8, /* Descriptor error TXA 2 */
247
248 Y2_IS_IRQ_PHY1 = 1<<4, /* Interrupt from PHY 1 */
249 Y2_IS_IRQ_MAC1 = 1<<3, /* Interrupt from MAC 1 */
250 Y2_IS_CHK_RX1 = 1<<2, /* Descriptor error Rx 1 */
251 Y2_IS_CHK_TXS1 = 1<<1, /* Descriptor error TXS 1 */
252 Y2_IS_CHK_TXA1 = 1<<0, /* Descriptor error TXA 1 */
253
254 Y2_IS_BASE = Y2_IS_HW_ERR | Y2_IS_STAT_BMU |
255 Y2_IS_POLL_CHK | Y2_IS_TWSI_RDY |
256 Y2_IS_IRQ_SW | Y2_IS_TIMINT,
257 Y2_IS_PORT_1 = Y2_IS_IRQ_PHY1 | Y2_IS_IRQ_MAC1 |
258 Y2_IS_CHK_RX1 | Y2_IS_CHK_TXA1 | Y2_IS_CHK_TXS1,
259 Y2_IS_PORT_2 = Y2_IS_IRQ_PHY2 | Y2_IS_IRQ_MAC2 |
260 Y2_IS_CHK_RX2 | Y2_IS_CHK_TXA2 | Y2_IS_CHK_TXS2,
261};
262
263/* B2_IRQM_HWE_MSK 32 bit IRQ Moderation HW Error Mask */
264enum {
265 IS_ERR_MSK = 0x00003fff,/* All Error bits */
266
267 IS_IRQ_TIST_OV = 1<<13, /* Time Stamp Timer Overflow (YUKON only) */
268 IS_IRQ_SENSOR = 1<<12, /* IRQ from Sensor (YUKON only) */
269 IS_IRQ_MST_ERR = 1<<11, /* IRQ master error detected */
270 IS_IRQ_STAT = 1<<10, /* IRQ status exception */
271 IS_NO_STAT_M1 = 1<<9, /* No Rx Status from MAC 1 */
272 IS_NO_STAT_M2 = 1<<8, /* No Rx Status from MAC 2 */
273 IS_NO_TIST_M1 = 1<<7, /* No Time Stamp from MAC 1 */
274 IS_NO_TIST_M2 = 1<<6, /* No Time Stamp from MAC 2 */
275 IS_RAM_RD_PAR = 1<<5, /* RAM Read Parity Error */
276 IS_RAM_WR_PAR = 1<<4, /* RAM Write Parity Error */
277 IS_M1_PAR_ERR = 1<<3, /* MAC 1 Parity Error */
278 IS_M2_PAR_ERR = 1<<2, /* MAC 2 Parity Error */
279 IS_R1_PAR_ERR = 1<<1, /* Queue R1 Parity Error */
280 IS_R2_PAR_ERR = 1<<0, /* Queue R2 Parity Error */
281};
282
283/* Hardware error interrupt mask for Yukon 2 */
284enum {
285 Y2_IS_TIST_OV = 1<<29,/* Time Stamp Timer overflow interrupt */
286 Y2_IS_SENSOR = 1<<28, /* Sensor interrupt */
287 Y2_IS_MST_ERR = 1<<27, /* Master error interrupt */
288 Y2_IS_IRQ_STAT = 1<<26, /* Status exception interrupt */
289 Y2_IS_PCI_EXP = 1<<25, /* PCI-Express interrupt */
290 Y2_IS_PCI_NEXP = 1<<24, /* PCI-Express error similar to PCI error */
291 /* Link 2 */
292 Y2_IS_PAR_RD2 = 1<<13, /* Read RAM parity error interrupt */
293 Y2_IS_PAR_WR2 = 1<<12, /* Write RAM parity error interrupt */
294 Y2_IS_PAR_MAC2 = 1<<11, /* MAC hardware fault interrupt */
295 Y2_IS_PAR_RX2 = 1<<10, /* Parity Error Rx Queue 2 */
296 Y2_IS_TCP_TXS2 = 1<<9, /* TCP length mismatch sync Tx queue IRQ */
297 Y2_IS_TCP_TXA2 = 1<<8, /* TCP length mismatch async Tx queue IRQ */
298 /* Link 1 */
299 Y2_IS_PAR_RD1 = 1<<5, /* Read RAM parity error interrupt */
300 Y2_IS_PAR_WR1 = 1<<4, /* Write RAM parity error interrupt */
301 Y2_IS_PAR_MAC1 = 1<<3, /* MAC hardware fault interrupt */
302 Y2_IS_PAR_RX1 = 1<<2, /* Parity Error Rx Queue 1 */
303 Y2_IS_TCP_TXS1 = 1<<1, /* TCP length mismatch sync Tx queue IRQ */
304 Y2_IS_TCP_TXA1 = 1<<0, /* TCP length mismatch async Tx queue IRQ */
305
306 Y2_HWE_L1_MASK = Y2_IS_PAR_RD1 | Y2_IS_PAR_WR1 | Y2_IS_PAR_MAC1 |
307 Y2_IS_PAR_RX1 | Y2_IS_TCP_TXS1| Y2_IS_TCP_TXA1,
308 Y2_HWE_L2_MASK = Y2_IS_PAR_RD2 | Y2_IS_PAR_WR2 | Y2_IS_PAR_MAC2 |
309 Y2_IS_PAR_RX2 | Y2_IS_TCP_TXS2| Y2_IS_TCP_TXA2,
310
Stephen Hemminger793b8832005-09-14 16:06:14 -0700311 Y2_HWE_ALL_MASK = Y2_IS_TIST_OV | Y2_IS_MST_ERR | Y2_IS_IRQ_STAT |
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800312 Y2_IS_PCI_EXP |
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700313 Y2_HWE_L1_MASK | Y2_HWE_L2_MASK,
314};
315
316/* B28_DPT_CTRL 8 bit Descriptor Poll Timer Ctrl Reg */
317enum {
318 DPT_START = 1<<1,
319 DPT_STOP = 1<<0,
320};
321
322/* B2_TST_CTRL1 8 bit Test Control Register 1 */
323enum {
324 TST_FRC_DPERR_MR = 1<<7, /* force DATAPERR on MST RD */
325 TST_FRC_DPERR_MW = 1<<6, /* force DATAPERR on MST WR */
326 TST_FRC_DPERR_TR = 1<<5, /* force DATAPERR on TRG RD */
327 TST_FRC_DPERR_TW = 1<<4, /* force DATAPERR on TRG WR */
328 TST_FRC_APERR_M = 1<<3, /* force ADDRPERR on MST */
329 TST_FRC_APERR_T = 1<<2, /* force ADDRPERR on TRG */
330 TST_CFG_WRITE_ON = 1<<1, /* Enable Config Reg WR */
331 TST_CFG_WRITE_OFF= 1<<0, /* Disable Config Reg WR */
332};
333
334/* B2_MAC_CFG 8 bit MAC Configuration / Chip Revision */
335enum {
336 CFG_CHIP_R_MSK = 0xf<<4, /* Bit 7.. 4: Chip Revision */
337 /* Bit 3.. 2: reserved */
338 CFG_DIS_M2_CLK = 1<<1, /* Disable Clock for 2nd MAC */
339 CFG_SNG_MAC = 1<<0, /* MAC Config: 0=2 MACs / 1=1 MAC*/
340};
341
342/* B2_CHIP_ID 8 bit Chip Identification Number */
343enum {
344 CHIP_ID_GENESIS = 0x0a, /* Chip ID for GENESIS */
345 CHIP_ID_YUKON = 0xb0, /* Chip ID for YUKON */
346 CHIP_ID_YUKON_LITE = 0xb1, /* Chip ID for YUKON-Lite (Rev. A1-A3) */
347 CHIP_ID_YUKON_LP = 0xb2, /* Chip ID for YUKON-LP */
348 CHIP_ID_YUKON_XL = 0xb3, /* Chip ID for YUKON-2 XL */
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800349 CHIP_ID_YUKON_EC_U = 0xb4, /* Chip ID for YUKON-2 EC Ultra */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700350 CHIP_ID_YUKON_EC = 0xb6, /* Chip ID for YUKON-2 EC */
351 CHIP_ID_YUKON_FE = 0xb7, /* Chip ID for YUKON-2 FE */
352
353 CHIP_REV_YU_EC_A1 = 0, /* Chip Rev. for Yukon-EC A1/A0 */
354 CHIP_REV_YU_EC_A2 = 1, /* Chip Rev. for Yukon-EC A2 */
355 CHIP_REV_YU_EC_A3 = 2, /* Chip Rev. for Yukon-EC A3 */
356};
357
358/* B2_Y2_CLK_GATE 8 bit Clock Gating (Yukon-2 only) */
359enum {
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700360 Y2_STATUS_LNK2_INAC = 1<<7, /* Status Link 2 inactive (0 = active) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700361 Y2_CLK_GAT_LNK2_DIS = 1<<6, /* Disable clock gating Link 2 */
362 Y2_COR_CLK_LNK2_DIS = 1<<5, /* Disable Core clock Link 2 */
363 Y2_PCI_CLK_LNK2_DIS = 1<<4, /* Disable PCI clock Link 2 */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700364 Y2_STATUS_LNK1_INAC = 1<<3, /* Status Link 1 inactive (0 = active) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700365 Y2_CLK_GAT_LNK1_DIS = 1<<2, /* Disable clock gating Link 1 */
366 Y2_COR_CLK_LNK1_DIS = 1<<1, /* Disable Core clock Link 1 */
367 Y2_PCI_CLK_LNK1_DIS = 1<<0, /* Disable PCI clock Link 1 */
368};
369
370/* B2_Y2_HW_RES 8 bit HW Resources (Yukon-2 only) */
371enum {
372 CFG_LED_MODE_MSK = 7<<2, /* Bit 4.. 2: LED Mode Mask */
373 CFG_LINK_2_AVAIL = 1<<1, /* Link 2 available */
374 CFG_LINK_1_AVAIL = 1<<0, /* Link 1 available */
375};
376#define CFG_LED_MODE(x) (((x) & CFG_LED_MODE_MSK) >> 2)
377#define CFG_DUAL_MAC_MSK (CFG_LINK_2_AVAIL | CFG_LINK_1_AVAIL)
378
379
380/* B2_Y2_CLK_CTRL 32 bit Clock Frequency Control Register (Yukon-2/EC) */
381enum {
382 Y2_CLK_DIV_VAL_MSK = 0xff<<16,/* Bit 23..16: Clock Divisor Value */
383#define Y2_CLK_DIV_VAL(x) (((x)<<16) & Y2_CLK_DIV_VAL_MSK)
384 Y2_CLK_DIV_VAL2_MSK = 7<<21, /* Bit 23..21: Clock Divisor Value */
385 Y2_CLK_SELECT2_MSK = 0x1f<<16,/* Bit 20..16: Clock Select */
386#define Y2_CLK_DIV_VAL_2(x) (((x)<<21) & Y2_CLK_DIV_VAL2_MSK)
387#define Y2_CLK_SEL_VAL_2(x) (((x)<<16) & Y2_CLK_SELECT2_MSK)
388 Y2_CLK_DIV_ENA = 1<<1, /* Enable Core Clock Division */
389 Y2_CLK_DIV_DIS = 1<<0, /* Disable Core Clock Division */
390};
391
392/* B2_TI_CTRL 8 bit Timer control */
393/* B2_IRQM_CTRL 8 bit IRQ Moderation Timer Control */
394enum {
395 TIM_START = 1<<2, /* Start Timer */
396 TIM_STOP = 1<<1, /* Stop Timer */
397 TIM_CLR_IRQ = 1<<0, /* Clear Timer IRQ (!IRQM) */
398};
399
400/* B2_TI_TEST 8 Bit Timer Test */
401/* B2_IRQM_TEST 8 bit IRQ Moderation Timer Test */
402/* B28_DPT_TST 8 bit Descriptor Poll Timer Test Reg */
403enum {
404 TIM_T_ON = 1<<2, /* Test mode on */
405 TIM_T_OFF = 1<<1, /* Test mode off */
406 TIM_T_STEP = 1<<0, /* Test step */
407};
408
409/* B3_RAM_ADDR 32 bit RAM Address, to read or write */
410 /* Bit 31..19: reserved */
411#define RAM_ADR_RAN 0x0007ffffL /* Bit 18.. 0: RAM Address Range */
412/* RAM Interface Registers */
413
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700414/* B3_RI_CTRL 16 bit RAM Interface Control Register */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700415enum {
416 RI_CLR_RD_PERR = 1<<9, /* Clear IRQ RAM Read Parity Err */
417 RI_CLR_WR_PERR = 1<<8, /* Clear IRQ RAM Write Parity Err*/
418
419 RI_RST_CLR = 1<<1, /* Clear RAM Interface Reset */
420 RI_RST_SET = 1<<0, /* Set RAM Interface Reset */
421};
422
423#define SK_RI_TO_53 36 /* RAM interface timeout */
424
425
426/* Port related registers FIFO, and Arbiter */
427#define SK_REG(port,reg) (((port)<<7)+(reg))
428
429/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
430/* TXA_ITI_INI 32 bit Tx Arb Interval Timer Init Val */
431/* TXA_ITI_VAL 32 bit Tx Arb Interval Timer Value */
432/* TXA_LIM_INI 32 bit Tx Arb Limit Counter Init Val */
433/* TXA_LIM_VAL 32 bit Tx Arb Limit Counter Value */
434
435#define TXA_MAX_VAL 0x00ffffffUL /* Bit 23.. 0: Max TXA Timer/Cnt Val */
436
437/* TXA_CTRL 8 bit Tx Arbiter Control Register */
438enum {
439 TXA_ENA_FSYNC = 1<<7, /* Enable force of sync Tx queue */
440 TXA_DIS_FSYNC = 1<<6, /* Disable force of sync Tx queue */
441 TXA_ENA_ALLOC = 1<<5, /* Enable alloc of free bandwidth */
442 TXA_DIS_ALLOC = 1<<4, /* Disable alloc of free bandwidth */
443 TXA_START_RC = 1<<3, /* Start sync Rate Control */
444 TXA_STOP_RC = 1<<2, /* Stop sync Rate Control */
445 TXA_ENA_ARB = 1<<1, /* Enable Tx Arbiter */
446 TXA_DIS_ARB = 1<<0, /* Disable Tx Arbiter */
447};
448
449/*
450 * Bank 4 - 5
451 */
452/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
453enum {
454 TXA_ITI_INI = 0x0200,/* 32 bit Tx Arb Interval Timer Init Val*/
455 TXA_ITI_VAL = 0x0204,/* 32 bit Tx Arb Interval Timer Value */
456 TXA_LIM_INI = 0x0208,/* 32 bit Tx Arb Limit Counter Init Val */
457 TXA_LIM_VAL = 0x020c,/* 32 bit Tx Arb Limit Counter Value */
458 TXA_CTRL = 0x0210,/* 8 bit Tx Arbiter Control Register */
459 TXA_TEST = 0x0211,/* 8 bit Tx Arbiter Test Register */
460 TXA_STAT = 0x0212,/* 8 bit Tx Arbiter Status Register */
461};
462
463
464enum {
465 B6_EXT_REG = 0x0300,/* External registers (GENESIS only) */
466 B7_CFG_SPC = 0x0380,/* copy of the Configuration register */
467 B8_RQ1_REGS = 0x0400,/* Receive Queue 1 */
468 B8_RQ2_REGS = 0x0480,/* Receive Queue 2 */
469 B8_TS1_REGS = 0x0600,/* Transmit sync queue 1 */
470 B8_TA1_REGS = 0x0680,/* Transmit async queue 1 */
471 B8_TS2_REGS = 0x0700,/* Transmit sync queue 2 */
472 B8_TA2_REGS = 0x0780,/* Transmit sync queue 2 */
473 B16_RAM_REGS = 0x0800,/* RAM Buffer Registers */
474};
475
476/* Queue Register Offsets, use Q_ADDR() to access */
477enum {
478 B8_Q_REGS = 0x0400, /* base of Queue registers */
479 Q_D = 0x00, /* 8*32 bit Current Descriptor */
480 Q_DA_L = 0x20, /* 32 bit Current Descriptor Address Low dWord */
481 Q_DA_H = 0x24, /* 32 bit Current Descriptor Address High dWord */
482 Q_AC_L = 0x28, /* 32 bit Current Address Counter Low dWord */
483 Q_AC_H = 0x2c, /* 32 bit Current Address Counter High dWord */
484 Q_BC = 0x30, /* 32 bit Current Byte Counter */
485 Q_CSR = 0x34, /* 32 bit BMU Control/Status Register */
486 Q_F = 0x38, /* 32 bit Flag Register */
487 Q_T1 = 0x3c, /* 32 bit Test Register 1 */
488 Q_T1_TR = 0x3c, /* 8 bit Test Register 1 Transfer SM */
489 Q_T1_WR = 0x3d, /* 8 bit Test Register 1 Write Descriptor SM */
490 Q_T1_RD = 0x3e, /* 8 bit Test Register 1 Read Descriptor SM */
491 Q_T1_SV = 0x3f, /* 8 bit Test Register 1 Supervisor SM */
492 Q_T2 = 0x40, /* 32 bit Test Register 2 */
493 Q_T3 = 0x44, /* 32 bit Test Register 3 */
494
495/* Yukon-2 */
496 Q_DONE = 0x24, /* 16 bit Done Index (Yukon-2 only) */
497 Q_WM = 0x40, /* 16 bit FIFO Watermark */
498 Q_AL = 0x42, /* 8 bit FIFO Alignment */
499 Q_RSP = 0x44, /* 16 bit FIFO Read Shadow Pointer */
500 Q_RSL = 0x46, /* 8 bit FIFO Read Shadow Level */
501 Q_RP = 0x48, /* 8 bit FIFO Read Pointer */
502 Q_RL = 0x4a, /* 8 bit FIFO Read Level */
503 Q_WP = 0x4c, /* 8 bit FIFO Write Pointer */
504 Q_WSP = 0x4d, /* 8 bit FIFO Write Shadow Pointer */
505 Q_WL = 0x4e, /* 8 bit FIFO Write Level */
506 Q_WSL = 0x4f, /* 8 bit FIFO Write Shadow Level */
507};
508#define Q_ADDR(reg, offs) (B8_Q_REGS + (reg) + (offs))
509
510
511/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
512enum {
513 Y2_B8_PREF_REGS = 0x0450,
514
515 PREF_UNIT_CTRL = 0x00, /* 32 bit Control register */
516 PREF_UNIT_LAST_IDX = 0x04, /* 16 bit Last Index */
517 PREF_UNIT_ADDR_LO = 0x08, /* 32 bit List start addr, low part */
518 PREF_UNIT_ADDR_HI = 0x0c, /* 32 bit List start addr, high part*/
519 PREF_UNIT_GET_IDX = 0x10, /* 16 bit Get Index */
520 PREF_UNIT_PUT_IDX = 0x14, /* 16 bit Put Index */
521 PREF_UNIT_FIFO_WP = 0x20, /* 8 bit FIFO write pointer */
522 PREF_UNIT_FIFO_RP = 0x24, /* 8 bit FIFO read pointer */
523 PREF_UNIT_FIFO_WM = 0x28, /* 8 bit FIFO watermark */
524 PREF_UNIT_FIFO_LEV = 0x2c, /* 8 bit FIFO level */
525
526 PREF_UNIT_MASK_IDX = 0x0fff,
527};
528#define Y2_QADDR(q,reg) (Y2_B8_PREF_REGS + (q) + (reg))
529
530/* RAM Buffer Register Offsets */
531enum {
532
533 RB_START = 0x00,/* 32 bit RAM Buffer Start Address */
534 RB_END = 0x04,/* 32 bit RAM Buffer End Address */
535 RB_WP = 0x08,/* 32 bit RAM Buffer Write Pointer */
536 RB_RP = 0x0c,/* 32 bit RAM Buffer Read Pointer */
537 RB_RX_UTPP = 0x10,/* 32 bit Rx Upper Threshold, Pause Packet */
538 RB_RX_LTPP = 0x14,/* 32 bit Rx Lower Threshold, Pause Packet */
539 RB_RX_UTHP = 0x18,/* 32 bit Rx Upper Threshold, High Prio */
540 RB_RX_LTHP = 0x1c,/* 32 bit Rx Lower Threshold, High Prio */
541 /* 0x10 - 0x1f: reserved at Tx RAM Buffer Registers */
542 RB_PC = 0x20,/* 32 bit RAM Buffer Packet Counter */
543 RB_LEV = 0x24,/* 32 bit RAM Buffer Level Register */
544 RB_CTRL = 0x28,/* 32 bit RAM Buffer Control Register */
545 RB_TST1 = 0x29,/* 8 bit RAM Buffer Test Register 1 */
546 RB_TST2 = 0x2a,/* 8 bit RAM Buffer Test Register 2 */
547};
548
549/* Receive and Transmit Queues */
550enum {
551 Q_R1 = 0x0000, /* Receive Queue 1 */
552 Q_R2 = 0x0080, /* Receive Queue 2 */
553 Q_XS1 = 0x0200, /* Synchronous Transmit Queue 1 */
554 Q_XA1 = 0x0280, /* Asynchronous Transmit Queue 1 */
555 Q_XS2 = 0x0300, /* Synchronous Transmit Queue 2 */
556 Q_XA2 = 0x0380, /* Asynchronous Transmit Queue 2 */
557};
558
559/* Different PHY Types */
560enum {
561 PHY_ADDR_MARV = 0,
562};
563
564#define RB_ADDR(offs, queue) (B16_RAM_REGS + (queue) + (offs))
565
566
567enum {
568 LNK_SYNC_INI = 0x0c30,/* 32 bit Link Sync Cnt Init Value */
569 LNK_SYNC_VAL = 0x0c34,/* 32 bit Link Sync Cnt Current Value */
570 LNK_SYNC_CTRL = 0x0c38,/* 8 bit Link Sync Cnt Control Register */
571 LNK_SYNC_TST = 0x0c39,/* 8 bit Link Sync Cnt Test Register */
572
573 LNK_LED_REG = 0x0c3c,/* 8 bit Link LED Register */
574
575/* Receive GMAC FIFO (YUKON and Yukon-2) */
576
577 RX_GMF_EA = 0x0c40,/* 32 bit Rx GMAC FIFO End Address */
578 RX_GMF_AF_THR = 0x0c44,/* 32 bit Rx GMAC FIFO Almost Full Thresh. */
579 RX_GMF_CTRL_T = 0x0c48,/* 32 bit Rx GMAC FIFO Control/Test */
580 RX_GMF_FL_MSK = 0x0c4c,/* 32 bit Rx GMAC FIFO Flush Mask */
581 RX_GMF_FL_THR = 0x0c50,/* 32 bit Rx GMAC FIFO Flush Threshold */
582 RX_GMF_TR_THR = 0x0c54,/* 32 bit Rx Truncation Threshold (Yukon-2) */
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800583 RX_GMF_UP_THR = 0x0c58,/* 8 bit Rx Upper Pause Thr (Yukon-EC_U) */
584 RX_GMF_LP_THR = 0x0c5a,/* 8 bit Rx Lower Pause Thr (Yukon-EC_U) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700585 RX_GMF_VLAN = 0x0c5c,/* 32 bit Rx VLAN Type Register (Yukon-2) */
586 RX_GMF_WP = 0x0c60,/* 32 bit Rx GMAC FIFO Write Pointer */
587
588 RX_GMF_WLEV = 0x0c68,/* 32 bit Rx GMAC FIFO Write Level */
589
590 RX_GMF_RP = 0x0c70,/* 32 bit Rx GMAC FIFO Read Pointer */
591
592 RX_GMF_RLEV = 0x0c78,/* 32 bit Rx GMAC FIFO Read Level */
593};
594
595
596/* Q_BC 32 bit Current Byte Counter */
597
598/* BMU Control Status Registers */
599/* B0_R1_CSR 32 bit BMU Ctrl/Stat Rx Queue 1 */
600/* B0_R2_CSR 32 bit BMU Ctrl/Stat Rx Queue 2 */
601/* B0_XA1_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 1 */
602/* B0_XS1_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 1 */
603/* B0_XA2_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 2 */
604/* B0_XS2_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 2 */
605/* Q_CSR 32 bit BMU Control/Status Register */
606
607/* Rx BMU Control / Status Registers (Yukon-2) */
608enum {
609 BMU_IDLE = 1<<31, /* BMU Idle State */
610 BMU_RX_TCP_PKT = 1<<30, /* Rx TCP Packet (when RSS Hash enabled) */
611 BMU_RX_IP_PKT = 1<<29, /* Rx IP Packet (when RSS Hash enabled) */
612
613 BMU_ENA_RX_RSS_HASH = 1<<15, /* Enable Rx RSS Hash */
614 BMU_DIS_RX_RSS_HASH = 1<<14, /* Disable Rx RSS Hash */
615 BMU_ENA_RX_CHKSUM = 1<<13, /* Enable Rx TCP/IP Checksum Check */
616 BMU_DIS_RX_CHKSUM = 1<<12, /* Disable Rx TCP/IP Checksum Check */
617 BMU_CLR_IRQ_PAR = 1<<11, /* Clear IRQ on Parity errors (Rx) */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700618 BMU_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment. error (Tx) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700619 BMU_CLR_IRQ_CHK = 1<<10, /* Clear IRQ Check */
620 BMU_STOP = 1<<9, /* Stop Rx/Tx Queue */
621 BMU_START = 1<<8, /* Start Rx/Tx Queue */
622 BMU_FIFO_OP_ON = 1<<7, /* FIFO Operational On */
623 BMU_FIFO_OP_OFF = 1<<6, /* FIFO Operational Off */
624 BMU_FIFO_ENA = 1<<5, /* Enable FIFO */
625 BMU_FIFO_RST = 1<<4, /* Reset FIFO */
626 BMU_OP_ON = 1<<3, /* BMU Operational On */
627 BMU_OP_OFF = 1<<2, /* BMU Operational Off */
628 BMU_RST_CLR = 1<<1, /* Clear BMU Reset (Enable) */
629 BMU_RST_SET = 1<<0, /* Set BMU Reset */
630
631 BMU_CLR_RESET = BMU_FIFO_RST | BMU_OP_OFF | BMU_RST_CLR,
632 BMU_OPER_INIT = BMU_CLR_IRQ_PAR | BMU_CLR_IRQ_CHK | BMU_START |
633 BMU_FIFO_ENA | BMU_OP_ON,
634};
635
636/* Tx BMU Control / Status Registers (Yukon-2) */
637 /* Bit 31: same as for Rx */
638enum {
639 BMU_TX_IPIDINCR_ON = 1<<13, /* Enable IP ID Increment */
640 BMU_TX_IPIDINCR_OFF = 1<<12, /* Disable IP ID Increment */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700641 BMU_TX_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment length mismatch */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700642};
643
644/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
645/* PREF_UNIT_CTRL 32 bit Prefetch Control register */
646enum {
647 PREF_UNIT_OP_ON = 1<<3, /* prefetch unit operational */
648 PREF_UNIT_OP_OFF = 1<<2, /* prefetch unit not operational */
649 PREF_UNIT_RST_CLR = 1<<1, /* Clear Prefetch Unit Reset */
650 PREF_UNIT_RST_SET = 1<<0, /* Set Prefetch Unit Reset */
651};
652
653/* RAM Buffer Register Offsets, use RB_ADDR(Queue, Offs) to access */
654/* RB_START 32 bit RAM Buffer Start Address */
655/* RB_END 32 bit RAM Buffer End Address */
656/* RB_WP 32 bit RAM Buffer Write Pointer */
657/* RB_RP 32 bit RAM Buffer Read Pointer */
658/* RB_RX_UTPP 32 bit Rx Upper Threshold, Pause Pack */
659/* RB_RX_LTPP 32 bit Rx Lower Threshold, Pause Pack */
660/* RB_RX_UTHP 32 bit Rx Upper Threshold, High Prio */
661/* RB_RX_LTHP 32 bit Rx Lower Threshold, High Prio */
662/* RB_PC 32 bit RAM Buffer Packet Counter */
663/* RB_LEV 32 bit RAM Buffer Level Register */
664
665#define RB_MSK 0x0007ffff /* Bit 18.. 0: RAM Buffer Pointer Bits */
666/* RB_TST2 8 bit RAM Buffer Test Register 2 */
667/* RB_TST1 8 bit RAM Buffer Test Register 1 */
668
669/* RB_CTRL 8 bit RAM Buffer Control Register */
670enum {
671 RB_ENA_STFWD = 1<<5, /* Enable Store & Forward */
672 RB_DIS_STFWD = 1<<4, /* Disable Store & Forward */
673 RB_ENA_OP_MD = 1<<3, /* Enable Operation Mode */
674 RB_DIS_OP_MD = 1<<2, /* Disable Operation Mode */
675 RB_RST_CLR = 1<<1, /* Clear RAM Buf STM Reset */
676 RB_RST_SET = 1<<0, /* Set RAM Buf STM Reset */
677};
678
679
680/* Transmit GMAC FIFO (YUKON only) */
681enum {
682 TX_GMF_EA = 0x0d40,/* 32 bit Tx GMAC FIFO End Address */
683 TX_GMF_AE_THR = 0x0d44,/* 32 bit Tx GMAC FIFO Almost Empty Thresh.*/
684 TX_GMF_CTRL_T = 0x0d48,/* 32 bit Tx GMAC FIFO Control/Test */
685
686 TX_GMF_WP = 0x0d60,/* 32 bit Tx GMAC FIFO Write Pointer */
687 TX_GMF_WSP = 0x0d64,/* 32 bit Tx GMAC FIFO Write Shadow Ptr. */
688 TX_GMF_WLEV = 0x0d68,/* 32 bit Tx GMAC FIFO Write Level */
689
690 TX_GMF_RP = 0x0d70,/* 32 bit Tx GMAC FIFO Read Pointer */
691 TX_GMF_RSTP = 0x0d74,/* 32 bit Tx GMAC FIFO Restart Pointer */
692 TX_GMF_RLEV = 0x0d78,/* 32 bit Tx GMAC FIFO Read Level */
693};
694
695/* Descriptor Poll Timer Registers */
696enum {
697 B28_DPT_INI = 0x0e00,/* 24 bit Descriptor Poll Timer Init Val */
698 B28_DPT_VAL = 0x0e04,/* 24 bit Descriptor Poll Timer Curr Val */
699 B28_DPT_CTRL = 0x0e08,/* 8 bit Descriptor Poll Timer Ctrl Reg */
700
701 B28_DPT_TST = 0x0e0a,/* 8 bit Descriptor Poll Timer Test Reg */
702};
703
704/* Time Stamp Timer Registers (YUKON only) */
705enum {
706 GMAC_TI_ST_VAL = 0x0e14,/* 32 bit Time Stamp Timer Curr Val */
707 GMAC_TI_ST_CTRL = 0x0e18,/* 8 bit Time Stamp Timer Ctrl Reg */
708 GMAC_TI_ST_TST = 0x0e1a,/* 8 bit Time Stamp Timer Test Reg */
709};
710
711/* Polling Unit Registers (Yukon-2 only) */
712enum {
713 POLL_CTRL = 0x0e20, /* 32 bit Polling Unit Control Reg */
714 POLL_LAST_IDX = 0x0e24,/* 16 bit Polling Unit List Last Index */
715
716 POLL_LIST_ADDR_LO= 0x0e28,/* 32 bit Poll. List Start Addr (low) */
717 POLL_LIST_ADDR_HI= 0x0e2c,/* 32 bit Poll. List Start Addr (high) */
718};
719
720/* ASF Subsystem Registers (Yukon-2 only) */
721enum {
722 B28_Y2_SMB_CONFIG = 0x0e40,/* 32 bit ASF SMBus Config Register */
723 B28_Y2_SMB_CSD_REG = 0x0e44,/* 32 bit ASF SMB Control/Status/Data */
724 B28_Y2_ASF_IRQ_V_BASE=0x0e60,/* 32 bit ASF IRQ Vector Base */
725
726 B28_Y2_ASF_STAT_CMD= 0x0e68,/* 32 bit ASF Status and Command Reg */
727 B28_Y2_ASF_HOST_COM= 0x0e6c,/* 32 bit ASF Host Communication Reg */
728 B28_Y2_DATA_REG_1 = 0x0e70,/* 32 bit ASF/Host Data Register 1 */
729 B28_Y2_DATA_REG_2 = 0x0e74,/* 32 bit ASF/Host Data Register 2 */
730 B28_Y2_DATA_REG_3 = 0x0e78,/* 32 bit ASF/Host Data Register 3 */
731 B28_Y2_DATA_REG_4 = 0x0e7c,/* 32 bit ASF/Host Data Register 4 */
732};
733
734/* Status BMU Registers (Yukon-2 only)*/
735enum {
736 STAT_CTRL = 0x0e80,/* 32 bit Status BMU Control Reg */
737 STAT_LAST_IDX = 0x0e84,/* 16 bit Status BMU Last Index */
738
739 STAT_LIST_ADDR_LO= 0x0e88,/* 32 bit Status List Start Addr (low) */
740 STAT_LIST_ADDR_HI= 0x0e8c,/* 32 bit Status List Start Addr (high) */
741 STAT_TXA1_RIDX = 0x0e90,/* 16 bit Status TxA1 Report Index Reg */
742 STAT_TXS1_RIDX = 0x0e92,/* 16 bit Status TxS1 Report Index Reg */
743 STAT_TXA2_RIDX = 0x0e94,/* 16 bit Status TxA2 Report Index Reg */
744 STAT_TXS2_RIDX = 0x0e96,/* 16 bit Status TxS2 Report Index Reg */
745 STAT_TX_IDX_TH = 0x0e98,/* 16 bit Status Tx Index Threshold Reg */
746 STAT_PUT_IDX = 0x0e9c,/* 16 bit Status Put Index Reg */
747
748/* FIFO Control/Status Registers (Yukon-2 only)*/
749 STAT_FIFO_WP = 0x0ea0,/* 8 bit Status FIFO Write Pointer Reg */
750 STAT_FIFO_RP = 0x0ea4,/* 8 bit Status FIFO Read Pointer Reg */
751 STAT_FIFO_RSP = 0x0ea6,/* 8 bit Status FIFO Read Shadow Ptr */
752 STAT_FIFO_LEVEL = 0x0ea8,/* 8 bit Status FIFO Level Reg */
753 STAT_FIFO_SHLVL = 0x0eaa,/* 8 bit Status FIFO Shadow Level Reg */
754 STAT_FIFO_WM = 0x0eac,/* 8 bit Status FIFO Watermark Reg */
755 STAT_FIFO_ISR_WM= 0x0ead,/* 8 bit Status FIFO ISR Watermark Reg */
756
757/* Level and ISR Timer Registers (Yukon-2 only)*/
758 STAT_LEV_TIMER_INI= 0x0eb0,/* 32 bit Level Timer Init. Value Reg */
759 STAT_LEV_TIMER_CNT= 0x0eb4,/* 32 bit Level Timer Counter Reg */
760 STAT_LEV_TIMER_CTRL= 0x0eb8,/* 8 bit Level Timer Control Reg */
761 STAT_LEV_TIMER_TEST= 0x0eb9,/* 8 bit Level Timer Test Reg */
762 STAT_TX_TIMER_INI = 0x0ec0,/* 32 bit Tx Timer Init. Value Reg */
763 STAT_TX_TIMER_CNT = 0x0ec4,/* 32 bit Tx Timer Counter Reg */
764 STAT_TX_TIMER_CTRL = 0x0ec8,/* 8 bit Tx Timer Control Reg */
765 STAT_TX_TIMER_TEST = 0x0ec9,/* 8 bit Tx Timer Test Reg */
766 STAT_ISR_TIMER_INI = 0x0ed0,/* 32 bit ISR Timer Init. Value Reg */
767 STAT_ISR_TIMER_CNT = 0x0ed4,/* 32 bit ISR Timer Counter Reg */
768 STAT_ISR_TIMER_CTRL= 0x0ed8,/* 8 bit ISR Timer Control Reg */
769 STAT_ISR_TIMER_TEST= 0x0ed9,/* 8 bit ISR Timer Test Reg */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700770};
771
772enum {
773 LINKLED_OFF = 0x01,
774 LINKLED_ON = 0x02,
775 LINKLED_LINKSYNC_OFF = 0x04,
776 LINKLED_LINKSYNC_ON = 0x08,
777 LINKLED_BLINK_OFF = 0x10,
778 LINKLED_BLINK_ON = 0x20,
779};
780
781/* GMAC and GPHY Control Registers (YUKON only) */
782enum {
783 GMAC_CTRL = 0x0f00,/* 32 bit GMAC Control Reg */
784 GPHY_CTRL = 0x0f04,/* 32 bit GPHY Control Reg */
785 GMAC_IRQ_SRC = 0x0f08,/* 8 bit GMAC Interrupt Source Reg */
786 GMAC_IRQ_MSK = 0x0f0c,/* 8 bit GMAC Interrupt Mask Reg */
787 GMAC_LINK_CTRL = 0x0f10,/* 16 bit Link Control Reg */
788
789/* Wake-up Frame Pattern Match Control Registers (YUKON only) */
790
791 WOL_REG_OFFS = 0x20,/* HW-Bug: Address is + 0x20 against spec. */
792
793 WOL_CTRL_STAT = 0x0f20,/* 16 bit WOL Control/Status Reg */
794 WOL_MATCH_CTL = 0x0f22,/* 8 bit WOL Match Control Reg */
795 WOL_MATCH_RES = 0x0f23,/* 8 bit WOL Match Result Reg */
796 WOL_MAC_ADDR = 0x0f24,/* 32 bit WOL MAC Address */
797 WOL_PATT_PME = 0x0f2a,/* 8 bit WOL PME Match Enable (Yukon-2) */
798 WOL_PATT_ASFM = 0x0f2b,/* 8 bit WOL ASF Match Enable (Yukon-2) */
799 WOL_PATT_RPTR = 0x0f2c,/* 8 bit WOL Pattern Read Pointer */
800
801/* WOL Pattern Length Registers (YUKON only) */
802
803 WOL_PATT_LEN_LO = 0x0f30,/* 32 bit WOL Pattern Length 3..0 */
804 WOL_PATT_LEN_HI = 0x0f34,/* 24 bit WOL Pattern Length 6..4 */
805
806/* WOL Pattern Counter Registers (YUKON only) */
807
Stephen Hemminger793b8832005-09-14 16:06:14 -0700808
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700809 WOL_PATT_CNT_0 = 0x0f38,/* 32 bit WOL Pattern Counter 3..0 */
810 WOL_PATT_CNT_4 = 0x0f3c,/* 24 bit WOL Pattern Counter 6..4 */
811};
812
813enum {
814 WOL_PATT_RAM_1 = 0x1000,/* WOL Pattern RAM Link 1 */
815 WOL_PATT_RAM_2 = 0x1400,/* WOL Pattern RAM Link 2 */
816};
817
818enum {
819 BASE_GMAC_1 = 0x2800,/* GMAC 1 registers */
820 BASE_GMAC_2 = 0x3800,/* GMAC 2 registers */
821};
822
823/*
824 * Marvel-PHY Registers, indirect addressed over GMAC
825 */
826enum {
827 PHY_MARV_CTRL = 0x00,/* 16 bit r/w PHY Control Register */
828 PHY_MARV_STAT = 0x01,/* 16 bit r/o PHY Status Register */
829 PHY_MARV_ID0 = 0x02,/* 16 bit r/o PHY ID0 Register */
830 PHY_MARV_ID1 = 0x03,/* 16 bit r/o PHY ID1 Register */
831 PHY_MARV_AUNE_ADV = 0x04,/* 16 bit r/w Auto-Neg. Advertisement */
832 PHY_MARV_AUNE_LP = 0x05,/* 16 bit r/o Link Part Ability Reg */
833 PHY_MARV_AUNE_EXP = 0x06,/* 16 bit r/o Auto-Neg. Expansion Reg */
834 PHY_MARV_NEPG = 0x07,/* 16 bit r/w Next Page Register */
835 PHY_MARV_NEPG_LP = 0x08,/* 16 bit r/o Next Page Link Partner */
836 /* Marvel-specific registers */
837 PHY_MARV_1000T_CTRL = 0x09,/* 16 bit r/w 1000Base-T Control Reg */
838 PHY_MARV_1000T_STAT = 0x0a,/* 16 bit r/o 1000Base-T Status Reg */
839 PHY_MARV_EXT_STAT = 0x0f,/* 16 bit r/o Extended Status Reg */
840 PHY_MARV_PHY_CTRL = 0x10,/* 16 bit r/w PHY Specific Ctrl Reg */
841 PHY_MARV_PHY_STAT = 0x11,/* 16 bit r/o PHY Specific Stat Reg */
842 PHY_MARV_INT_MASK = 0x12,/* 16 bit r/w Interrupt Mask Reg */
843 PHY_MARV_INT_STAT = 0x13,/* 16 bit r/o Interrupt Status Reg */
844 PHY_MARV_EXT_CTRL = 0x14,/* 16 bit r/w Ext. PHY Specific Ctrl */
845 PHY_MARV_RXE_CNT = 0x15,/* 16 bit r/w Receive Error Counter */
846 PHY_MARV_EXT_ADR = 0x16,/* 16 bit r/w Ext. Ad. for Cable Diag. */
847 PHY_MARV_PORT_IRQ = 0x17,/* 16 bit r/o Port 0 IRQ (88E1111 only) */
848 PHY_MARV_LED_CTRL = 0x18,/* 16 bit r/w LED Control Reg */
849 PHY_MARV_LED_OVER = 0x19,/* 16 bit r/w Manual LED Override Reg */
850 PHY_MARV_EXT_CTRL_2 = 0x1a,/* 16 bit r/w Ext. PHY Specific Ctrl 2 */
851 PHY_MARV_EXT_P_STAT = 0x1b,/* 16 bit r/w Ext. PHY Spec. Stat Reg */
852 PHY_MARV_CABLE_DIAG = 0x1c,/* 16 bit r/o Cable Diagnostic Reg */
853 PHY_MARV_PAGE_ADDR = 0x1d,/* 16 bit r/w Extended Page Address Reg */
854 PHY_MARV_PAGE_DATA = 0x1e,/* 16 bit r/w Extended Page Data Reg */
855
856/* for 10/100 Fast Ethernet PHY (88E3082 only) */
857 PHY_MARV_FE_LED_PAR = 0x16,/* 16 bit r/w LED Parallel Select Reg. */
858 PHY_MARV_FE_LED_SER = 0x17,/* 16 bit r/w LED Stream Select S. LED */
859 PHY_MARV_FE_VCT_TX = 0x1a,/* 16 bit r/w VCT Reg. for TXP/N Pins */
860 PHY_MARV_FE_VCT_RX = 0x1b,/* 16 bit r/o VCT Reg. for RXP/N Pins */
861 PHY_MARV_FE_SPEC_2 = 0x1c,/* 16 bit r/w Specific Control Reg. 2 */
862};
863
864enum {
865 PHY_CT_RESET = 1<<15, /* Bit 15: (sc) clear all PHY related regs */
866 PHY_CT_LOOP = 1<<14, /* Bit 14: enable Loopback over PHY */
867 PHY_CT_SPS_LSB = 1<<13, /* Bit 13: Speed select, lower bit */
868 PHY_CT_ANE = 1<<12, /* Bit 12: Auto-Negotiation Enabled */
869 PHY_CT_PDOWN = 1<<11, /* Bit 11: Power Down Mode */
870 PHY_CT_ISOL = 1<<10, /* Bit 10: Isolate Mode */
871 PHY_CT_RE_CFG = 1<<9, /* Bit 9: (sc) Restart Auto-Negotiation */
872 PHY_CT_DUP_MD = 1<<8, /* Bit 8: Duplex Mode */
873 PHY_CT_COL_TST = 1<<7, /* Bit 7: Collision Test enabled */
874 PHY_CT_SPS_MSB = 1<<6, /* Bit 6: Speed select, upper bit */
875};
876
877enum {
878 PHY_CT_SP1000 = PHY_CT_SPS_MSB, /* enable speed of 1000 Mbps */
879 PHY_CT_SP100 = PHY_CT_SPS_LSB, /* enable speed of 100 Mbps */
880 PHY_CT_SP10 = 0, /* enable speed of 10 Mbps */
881};
882
883enum {
884 PHY_ST_EXT_ST = 1<<8, /* Bit 8: Extended Status Present */
885
886 PHY_ST_PRE_SUP = 1<<6, /* Bit 6: Preamble Suppression */
887 PHY_ST_AN_OVER = 1<<5, /* Bit 5: Auto-Negotiation Over */
888 PHY_ST_REM_FLT = 1<<4, /* Bit 4: Remote Fault Condition Occured */
889 PHY_ST_AN_CAP = 1<<3, /* Bit 3: Auto-Negotiation Capability */
890 PHY_ST_LSYNC = 1<<2, /* Bit 2: Link Synchronized */
891 PHY_ST_JAB_DET = 1<<1, /* Bit 1: Jabber Detected */
892 PHY_ST_EXT_REG = 1<<0, /* Bit 0: Extended Register available */
893};
894
895enum {
896 PHY_I1_OUI_MSK = 0x3f<<10, /* Bit 15..10: Organization Unique ID */
897 PHY_I1_MOD_NUM = 0x3f<<4, /* Bit 9.. 4: Model Number */
898 PHY_I1_REV_MSK = 0xf, /* Bit 3.. 0: Revision Number */
899};
900
901/* different Marvell PHY Ids */
902enum {
903 PHY_MARV_ID0_VAL= 0x0141, /* Marvell Unique Identifier */
904
905 PHY_BCOM_ID1_A1 = 0x6041,
906 PHY_BCOM_ID1_B2 = 0x6043,
907 PHY_BCOM_ID1_C0 = 0x6044,
908 PHY_BCOM_ID1_C5 = 0x6047,
909
910 PHY_MARV_ID1_B0 = 0x0C23, /* Yukon (PHY 88E1011) */
911 PHY_MARV_ID1_B2 = 0x0C25, /* Yukon-Plus (PHY 88E1011) */
912 PHY_MARV_ID1_C2 = 0x0CC2, /* Yukon-EC (PHY 88E1111) */
913 PHY_MARV_ID1_Y2 = 0x0C91, /* Yukon-2 (PHY 88E1112) */
914};
915
916/* Advertisement register bits */
917enum {
918 PHY_AN_NXT_PG = 1<<15, /* Bit 15: Request Next Page */
919 PHY_AN_ACK = 1<<14, /* Bit 14: (ro) Acknowledge Received */
920 PHY_AN_RF = 1<<13, /* Bit 13: Remote Fault Bits */
921
922 PHY_AN_PAUSE_ASYM = 1<<11,/* Bit 11: Try for asymmetric */
923 PHY_AN_PAUSE_CAP = 1<<10, /* Bit 10: Try for pause */
924 PHY_AN_100BASE4 = 1<<9, /* Bit 9: Try for 100mbps 4k packets */
925 PHY_AN_100FULL = 1<<8, /* Bit 8: Try for 100mbps full-duplex */
926 PHY_AN_100HALF = 1<<7, /* Bit 7: Try for 100mbps half-duplex */
927 PHY_AN_10FULL = 1<<6, /* Bit 6: Try for 10mbps full-duplex */
928 PHY_AN_10HALF = 1<<5, /* Bit 5: Try for 10mbps half-duplex */
929 PHY_AN_CSMA = 1<<0, /* Bit 0: Only selector supported */
930 PHY_AN_SEL = 0x1f, /* Bit 4..0: Selector Field, 00001=Ethernet*/
931 PHY_AN_FULL = PHY_AN_100FULL | PHY_AN_10FULL | PHY_AN_CSMA,
932 PHY_AN_ALL = PHY_AN_10HALF | PHY_AN_10FULL |
933 PHY_AN_100HALF | PHY_AN_100FULL,
934};
935
936/***** PHY_BCOM_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
937/***** PHY_MARV_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
938enum {
939 PHY_B_1000S_MSF = 1<<15, /* Bit 15: Master/Slave Fault */
940 PHY_B_1000S_MSR = 1<<14, /* Bit 14: Master/Slave Result */
941 PHY_B_1000S_LRS = 1<<13, /* Bit 13: Local Receiver Status */
942 PHY_B_1000S_RRS = 1<<12, /* Bit 12: Remote Receiver Status */
943 PHY_B_1000S_LP_FD = 1<<11, /* Bit 11: Link Partner can FD */
944 PHY_B_1000S_LP_HD = 1<<10, /* Bit 10: Link Partner can HD */
945 /* Bit 9..8: reserved */
946 PHY_B_1000S_IEC = 0xff, /* Bit 7..0: Idle Error Count */
947};
948
949/** Marvell-Specific */
950enum {
951 PHY_M_AN_NXT_PG = 1<<15, /* Request Next Page */
952 PHY_M_AN_ACK = 1<<14, /* (ro) Acknowledge Received */
953 PHY_M_AN_RF = 1<<13, /* Remote Fault */
954
955 PHY_M_AN_ASP = 1<<11, /* Asymmetric Pause */
956 PHY_M_AN_PC = 1<<10, /* MAC Pause implemented */
957 PHY_M_AN_100_T4 = 1<<9, /* Not cap. 100Base-T4 (always 0) */
958 PHY_M_AN_100_FD = 1<<8, /* Advertise 100Base-TX Full Duplex */
959 PHY_M_AN_100_HD = 1<<7, /* Advertise 100Base-TX Half Duplex */
960 PHY_M_AN_10_FD = 1<<6, /* Advertise 10Base-TX Full Duplex */
961 PHY_M_AN_10_HD = 1<<5, /* Advertise 10Base-TX Half Duplex */
962 PHY_M_AN_SEL_MSK =0x1f<<4, /* Bit 4.. 0: Selector Field Mask */
963};
964
965/* special defines for FIBER (88E1011S only) */
966enum {
967 PHY_M_AN_ASP_X = 1<<8, /* Asymmetric Pause */
968 PHY_M_AN_PC_X = 1<<7, /* MAC Pause implemented */
969 PHY_M_AN_1000X_AHD = 1<<6, /* Advertise 10000Base-X Half Duplex */
970 PHY_M_AN_1000X_AFD = 1<<5, /* Advertise 10000Base-X Full Duplex */
971};
972
973/* Pause Bits (PHY_M_AN_ASP_X and PHY_M_AN_PC_X) encoding */
974enum {
975 PHY_M_P_NO_PAUSE_X = 0<<7,/* Bit 8.. 7: no Pause Mode */
976 PHY_M_P_SYM_MD_X = 1<<7, /* Bit 8.. 7: symmetric Pause Mode */
977 PHY_M_P_ASYM_MD_X = 2<<7,/* Bit 8.. 7: asymmetric Pause Mode */
978 PHY_M_P_BOTH_MD_X = 3<<7,/* Bit 8.. 7: both Pause Mode */
979};
980
981/***** PHY_MARV_1000T_CTRL 16 bit r/w 1000Base-T Control Reg *****/
982enum {
983 PHY_M_1000C_TEST = 7<<13,/* Bit 15..13: Test Modes */
984 PHY_M_1000C_MSE = 1<<12, /* Manual Master/Slave Enable */
985 PHY_M_1000C_MSC = 1<<11, /* M/S Configuration (1=Master) */
986 PHY_M_1000C_MPD = 1<<10, /* Multi-Port Device */
987 PHY_M_1000C_AFD = 1<<9, /* Advertise Full Duplex */
988 PHY_M_1000C_AHD = 1<<8, /* Advertise Half Duplex */
989};
990
991/***** PHY_MARV_PHY_CTRL 16 bit r/w PHY Specific Ctrl Reg *****/
992enum {
993 PHY_M_PC_TX_FFD_MSK = 3<<14,/* Bit 15..14: Tx FIFO Depth Mask */
994 PHY_M_PC_RX_FFD_MSK = 3<<12,/* Bit 13..12: Rx FIFO Depth Mask */
995 PHY_M_PC_ASS_CRS_TX = 1<<11, /* Assert CRS on Transmit */
996 PHY_M_PC_FL_GOOD = 1<<10, /* Force Link Good */
997 PHY_M_PC_EN_DET_MSK = 3<<8,/* Bit 9.. 8: Energy Detect Mask */
998 PHY_M_PC_ENA_EXT_D = 1<<7, /* Enable Ext. Distance (10BT) */
999 PHY_M_PC_MDIX_MSK = 3<<5,/* Bit 6.. 5: MDI/MDIX Config. Mask */
1000 PHY_M_PC_DIS_125CLK = 1<<4, /* Disable 125 CLK */
1001 PHY_M_PC_MAC_POW_UP = 1<<3, /* MAC Power up */
1002 PHY_M_PC_SQE_T_ENA = 1<<2, /* SQE Test Enabled */
1003 PHY_M_PC_POL_R_DIS = 1<<1, /* Polarity Reversal Disabled */
1004 PHY_M_PC_DIS_JABBER = 1<<0, /* Disable Jabber */
1005};
1006
1007enum {
1008 PHY_M_PC_EN_DET = 2<<8, /* Energy Detect (Mode 1) */
1009 PHY_M_PC_EN_DET_PLUS = 3<<8, /* Energy Detect Plus (Mode 2) */
1010};
1011
1012#define PHY_M_PC_MDI_XMODE(x) (((x)<<5) & PHY_M_PC_MDIX_MSK)
1013
1014enum {
1015 PHY_M_PC_MAN_MDI = 0, /* 00 = Manual MDI configuration */
1016 PHY_M_PC_MAN_MDIX = 1, /* 01 = Manual MDIX configuration */
1017 PHY_M_PC_ENA_AUTO = 3, /* 11 = Enable Automatic Crossover */
1018};
1019
1020/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1021enum {
1022 PHY_M_PC_ENA_DTE_DT = 1<<15, /* Enable Data Terminal Equ. (DTE) Detect */
1023 PHY_M_PC_ENA_ENE_DT = 1<<14, /* Enable Energy Detect (sense & pulse) */
1024 PHY_M_PC_DIS_NLP_CK = 1<<13, /* Disable Normal Link Puls (NLP) Check */
1025 PHY_M_PC_ENA_LIP_NP = 1<<12, /* Enable Link Partner Next Page Reg. */
1026 PHY_M_PC_DIS_NLP_GN = 1<<11, /* Disable Normal Link Puls Generation */
1027
1028 PHY_M_PC_DIS_SCRAMB = 1<<9, /* Disable Scrambler */
1029 PHY_M_PC_DIS_FEFI = 1<<8, /* Disable Far End Fault Indic. (FEFI) */
1030
1031 PHY_M_PC_SH_TP_SEL = 1<<6, /* Shielded Twisted Pair Select */
1032 PHY_M_PC_RX_FD_MSK = 3<<2,/* Bit 3.. 2: Rx FIFO Depth Mask */
1033};
1034
1035/***** PHY_MARV_PHY_STAT 16 bit r/o PHY Specific Status Reg *****/
1036enum {
1037 PHY_M_PS_SPEED_MSK = 3<<14, /* Bit 15..14: Speed Mask */
1038 PHY_M_PS_SPEED_1000 = 1<<15, /* 10 = 1000 Mbps */
1039 PHY_M_PS_SPEED_100 = 1<<14, /* 01 = 100 Mbps */
1040 PHY_M_PS_SPEED_10 = 0, /* 00 = 10 Mbps */
1041 PHY_M_PS_FULL_DUP = 1<<13, /* Full Duplex */
1042 PHY_M_PS_PAGE_REC = 1<<12, /* Page Received */
1043 PHY_M_PS_SPDUP_RES = 1<<11, /* Speed & Duplex Resolved */
1044 PHY_M_PS_LINK_UP = 1<<10, /* Link Up */
1045 PHY_M_PS_CABLE_MSK = 7<<7, /* Bit 9.. 7: Cable Length Mask */
1046 PHY_M_PS_MDI_X_STAT = 1<<6, /* MDI Crossover Stat (1=MDIX) */
1047 PHY_M_PS_DOWNS_STAT = 1<<5, /* Downshift Status (1=downsh.) */
1048 PHY_M_PS_ENDET_STAT = 1<<4, /* Energy Detect Status (1=act) */
1049 PHY_M_PS_TX_P_EN = 1<<3, /* Tx Pause Enabled */
1050 PHY_M_PS_RX_P_EN = 1<<2, /* Rx Pause Enabled */
1051 PHY_M_PS_POL_REV = 1<<1, /* Polarity Reversed */
1052 PHY_M_PS_JABBER = 1<<0, /* Jabber */
1053};
1054
1055#define PHY_M_PS_PAUSE_MSK (PHY_M_PS_TX_P_EN | PHY_M_PS_RX_P_EN)
1056
1057/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1058enum {
1059 PHY_M_PS_DTE_DETECT = 1<<15, /* Data Terminal Equipment (DTE) Detected */
1060 PHY_M_PS_RES_SPEED = 1<<14, /* Resolved Speed (1=100 Mbps, 0=10 Mbps */
1061};
1062
1063enum {
1064 PHY_M_IS_AN_ERROR = 1<<15, /* Auto-Negotiation Error */
1065 PHY_M_IS_LSP_CHANGE = 1<<14, /* Link Speed Changed */
1066 PHY_M_IS_DUP_CHANGE = 1<<13, /* Duplex Mode Changed */
1067 PHY_M_IS_AN_PR = 1<<12, /* Page Received */
1068 PHY_M_IS_AN_COMPL = 1<<11, /* Auto-Negotiation Completed */
1069 PHY_M_IS_LST_CHANGE = 1<<10, /* Link Status Changed */
1070 PHY_M_IS_SYMB_ERROR = 1<<9, /* Symbol Error */
1071 PHY_M_IS_FALSE_CARR = 1<<8, /* False Carrier */
1072 PHY_M_IS_FIFO_ERROR = 1<<7, /* FIFO Overflow/Underrun Error */
1073 PHY_M_IS_MDI_CHANGE = 1<<6, /* MDI Crossover Changed */
1074 PHY_M_IS_DOWNSH_DET = 1<<5, /* Downshift Detected */
1075 PHY_M_IS_END_CHANGE = 1<<4, /* Energy Detect Changed */
1076
1077 PHY_M_IS_DTE_CHANGE = 1<<2, /* DTE Power Det. Status Changed */
1078 PHY_M_IS_POL_CHANGE = 1<<1, /* Polarity Changed */
1079 PHY_M_IS_JABBER = 1<<0, /* Jabber */
1080
1081 PHY_M_DEF_MSK = PHY_M_IS_LSP_CHANGE | PHY_M_IS_LST_CHANGE
1082 | PHY_M_IS_FIFO_ERROR,
1083 PHY_M_AN_MSK = PHY_M_IS_AN_ERROR | PHY_M_IS_AN_COMPL,
1084};
1085
1086
1087/***** PHY_MARV_EXT_CTRL 16 bit r/w Ext. PHY Specific Ctrl *****/
1088enum {
1089 PHY_M_EC_ENA_BC_EXT = 1<<15, /* Enable Block Carr. Ext. (88E1111 only) */
1090 PHY_M_EC_ENA_LIN_LB = 1<<14, /* Enable Line Loopback (88E1111 only) */
1091
1092 PHY_M_EC_DIS_LINK_P = 1<<12, /* Disable Link Pulses (88E1111 only) */
1093 PHY_M_EC_M_DSC_MSK = 3<<10, /* Bit 11..10: Master Downshift Counter */
1094 /* (88E1011 only) */
1095 PHY_M_EC_S_DSC_MSK = 3<<8,/* Bit 9.. 8: Slave Downshift Counter */
1096 /* (88E1011 only) */
1097 PHY_M_EC_M_DSC_MSK2 = 7<<9,/* Bit 11.. 9: Master Downshift Counter */
1098 /* (88E1111 only) */
1099 PHY_M_EC_DOWN_S_ENA = 1<<8, /* Downshift Enable (88E1111 only) */
1100 /* !!! Errata in spec. (1 = disable) */
1101 PHY_M_EC_RX_TIM_CT = 1<<7, /* RGMII Rx Timing Control*/
1102 PHY_M_EC_MAC_S_MSK = 7<<4,/* Bit 6.. 4: Def. MAC interface speed */
1103 PHY_M_EC_FIB_AN_ENA = 1<<3, /* Fiber Auto-Neg. Enable (88E1011S only) */
1104 PHY_M_EC_DTE_D_ENA = 1<<2, /* DTE Detect Enable (88E1111 only) */
1105 PHY_M_EC_TX_TIM_CT = 1<<1, /* RGMII Tx Timing Control */
1106 PHY_M_EC_TRANS_DIS = 1<<0, /* Transmitter Disable (88E1111 only) */};
1107
1108#define PHY_M_EC_M_DSC(x) ((x)<<10 & PHY_M_EC_M_DSC_MSK)
1109 /* 00=1x; 01=2x; 10=3x; 11=4x */
1110#define PHY_M_EC_S_DSC(x) ((x)<<8 & PHY_M_EC_S_DSC_MSK)
1111 /* 00=dis; 01=1x; 10=2x; 11=3x */
1112#define PHY_M_EC_DSC_2(x) ((x)<<9 & PHY_M_EC_M_DSC_MSK2)
1113 /* 000=1x; 001=2x; 010=3x; 011=4x */
1114#define PHY_M_EC_MAC_S(x) ((x)<<4 & PHY_M_EC_MAC_S_MSK)
1115 /* 01X=0; 110=2.5; 111=25 (MHz) */
1116
1117/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
1118enum {
1119 PHY_M_PC_DIS_LINK_Pa = 1<<15,/* Disable Link Pulses */
1120 PHY_M_PC_DSC_MSK = 7<<12,/* Bit 14..12: Downshift Counter */
1121 PHY_M_PC_DOWN_S_ENA = 1<<11,/* Downshift Enable */
1122};
1123/* !!! Errata in spec. (1 = disable) */
1124
1125#define PHY_M_PC_DSC(x) (((x)<<12) & PHY_M_PC_DSC_MSK)
1126 /* 100=5x; 101=6x; 110=7x; 111=8x */
1127enum {
1128 MAC_TX_CLK_0_MHZ = 2,
1129 MAC_TX_CLK_2_5_MHZ = 6,
1130 MAC_TX_CLK_25_MHZ = 7,
1131};
1132
1133/***** PHY_MARV_LED_CTRL 16 bit r/w LED Control Reg *****/
1134enum {
1135 PHY_M_LEDC_DIS_LED = 1<<15, /* Disable LED */
1136 PHY_M_LEDC_PULS_MSK = 7<<12,/* Bit 14..12: Pulse Stretch Mask */
1137 PHY_M_LEDC_F_INT = 1<<11, /* Force Interrupt */
1138 PHY_M_LEDC_BL_R_MSK = 7<<8,/* Bit 10.. 8: Blink Rate Mask */
1139 PHY_M_LEDC_DP_C_LSB = 1<<7, /* Duplex Control (LSB, 88E1111 only) */
1140 PHY_M_LEDC_TX_C_LSB = 1<<6, /* Tx Control (LSB, 88E1111 only) */
1141 PHY_M_LEDC_LK_C_MSK = 7<<3,/* Bit 5.. 3: Link Control Mask */
1142 /* (88E1111 only) */
1143};
1144
1145enum {
1146 PHY_M_LEDC_LINK_MSK = 3<<3,/* Bit 4.. 3: Link Control Mask */
1147 /* (88E1011 only) */
1148 PHY_M_LEDC_DP_CTRL = 1<<2, /* Duplex Control */
1149 PHY_M_LEDC_DP_C_MSB = 1<<2, /* Duplex Control (MSB, 88E1111 only) */
1150 PHY_M_LEDC_RX_CTRL = 1<<1, /* Rx Activity / Link */
1151 PHY_M_LEDC_TX_CTRL = 1<<0, /* Tx Activity / Link */
1152 PHY_M_LEDC_TX_C_MSB = 1<<0, /* Tx Control (MSB, 88E1111 only) */
1153};
1154
1155#define PHY_M_LED_PULS_DUR(x) (((x)<<12) & PHY_M_LEDC_PULS_MSK)
1156
1157/***** PHY_MARV_PHY_STAT (page 3)16 bit r/w Polarity Control Reg. *****/
1158enum {
1159 PHY_M_POLC_LS1M_MSK = 0xf<<12, /* Bit 15..12: LOS,STAT1 Mix % Mask */
1160 PHY_M_POLC_IS0M_MSK = 0xf<<8, /* Bit 11.. 8: INIT,STAT0 Mix % Mask */
1161 PHY_M_POLC_LOS_MSK = 0x3<<6, /* Bit 7.. 6: LOS Pol. Ctrl. Mask */
1162 PHY_M_POLC_INIT_MSK = 0x3<<4, /* Bit 5.. 4: INIT Pol. Ctrl. Mask */
1163 PHY_M_POLC_STA1_MSK = 0x3<<2, /* Bit 3.. 2: STAT1 Pol. Ctrl. Mask */
1164 PHY_M_POLC_STA0_MSK = 0x3, /* Bit 1.. 0: STAT0 Pol. Ctrl. Mask */
1165};
1166
1167#define PHY_M_POLC_LS1_P_MIX(x) (((x)<<12) & PHY_M_POLC_LS1M_MSK)
1168#define PHY_M_POLC_IS0_P_MIX(x) (((x)<<8) & PHY_M_POLC_IS0M_MSK)
1169#define PHY_M_POLC_LOS_CTRL(x) (((x)<<6) & PHY_M_POLC_LOS_MSK)
1170#define PHY_M_POLC_INIT_CTRL(x) (((x)<<4) & PHY_M_POLC_INIT_MSK)
1171#define PHY_M_POLC_STA1_CTRL(x) (((x)<<2) & PHY_M_POLC_STA1_MSK)
1172#define PHY_M_POLC_STA0_CTRL(x) (((x)<<0) & PHY_M_POLC_STA0_MSK)
1173
1174enum {
1175 PULS_NO_STR = 0,/* no pulse stretching */
1176 PULS_21MS = 1,/* 21 ms to 42 ms */
1177 PULS_42MS = 2,/* 42 ms to 84 ms */
1178 PULS_84MS = 3,/* 84 ms to 170 ms */
1179 PULS_170MS = 4,/* 170 ms to 340 ms */
1180 PULS_340MS = 5,/* 340 ms to 670 ms */
1181 PULS_670MS = 6,/* 670 ms to 1.3 s */
1182 PULS_1300MS = 7,/* 1.3 s to 2.7 s */
1183};
1184
1185#define PHY_M_LED_BLINK_RT(x) (((x)<<8) & PHY_M_LEDC_BL_R_MSK)
1186
1187enum {
1188 BLINK_42MS = 0,/* 42 ms */
1189 BLINK_84MS = 1,/* 84 ms */
1190 BLINK_170MS = 2,/* 170 ms */
1191 BLINK_340MS = 3,/* 340 ms */
1192 BLINK_670MS = 4,/* 670 ms */
1193};
1194
1195/***** PHY_MARV_LED_OVER 16 bit r/w Manual LED Override Reg *****/
1196#define PHY_M_LED_MO_SGMII(x) ((x)<<14) /* Bit 15..14: SGMII AN Timer */
1197 /* Bit 13..12: reserved */
1198#define PHY_M_LED_MO_DUP(x) ((x)<<10) /* Bit 11..10: Duplex */
1199#define PHY_M_LED_MO_10(x) ((x)<<8) /* Bit 9.. 8: Link 10 */
1200#define PHY_M_LED_MO_100(x) ((x)<<6) /* Bit 7.. 6: Link 100 */
1201#define PHY_M_LED_MO_1000(x) ((x)<<4) /* Bit 5.. 4: Link 1000 */
1202#define PHY_M_LED_MO_RX(x) ((x)<<2) /* Bit 3.. 2: Rx */
1203#define PHY_M_LED_MO_TX(x) ((x)<<0) /* Bit 1.. 0: Tx */
1204
1205enum {
1206 MO_LED_NORM = 0,
1207 MO_LED_BLINK = 1,
1208 MO_LED_OFF = 2,
1209 MO_LED_ON = 3,
1210};
1211
1212/***** PHY_MARV_EXT_CTRL_2 16 bit r/w Ext. PHY Specific Ctrl 2 *****/
1213enum {
1214 PHY_M_EC2_FI_IMPED = 1<<6, /* Fiber Input Impedance */
1215 PHY_M_EC2_FO_IMPED = 1<<5, /* Fiber Output Impedance */
1216 PHY_M_EC2_FO_M_CLK = 1<<4, /* Fiber Mode Clock Enable */
1217 PHY_M_EC2_FO_BOOST = 1<<3, /* Fiber Output Boost */
1218 PHY_M_EC2_FO_AM_MSK = 7,/* Bit 2.. 0: Fiber Output Amplitude */
1219};
1220
1221/***** PHY_MARV_EXT_P_STAT 16 bit r/w Ext. PHY Specific Status *****/
1222enum {
1223 PHY_M_FC_AUTO_SEL = 1<<15, /* Fiber/Copper Auto Sel. Dis. */
1224 PHY_M_FC_AN_REG_ACC = 1<<14, /* Fiber/Copper AN Reg. Access */
1225 PHY_M_FC_RESOLUTION = 1<<13, /* Fiber/Copper Resolution */
1226 PHY_M_SER_IF_AN_BP = 1<<12, /* Ser. IF AN Bypass Enable */
1227 PHY_M_SER_IF_BP_ST = 1<<11, /* Ser. IF AN Bypass Status */
1228 PHY_M_IRQ_POLARITY = 1<<10, /* IRQ polarity */
1229 PHY_M_DIS_AUT_MED = 1<<9, /* Disable Aut. Medium Reg. Selection */
1230 /* (88E1111 only) */
1231
1232 PHY_M_UNDOC1 = 1<<7, /* undocumented bit !! */
1233 PHY_M_DTE_POW_STAT = 1<<4, /* DTE Power Status (88E1111 only) */
1234 PHY_M_MODE_MASK = 0xf, /* Bit 3.. 0: copy of HWCFG MODE[3:0] */
1235};
1236
1237/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1238/***** PHY_MARV_FE_LED_PAR 16 bit r/w LED Parallel Select Reg. *****/
1239 /* Bit 15..12: reserved (used internally) */
1240enum {
1241 PHY_M_FELP_LED2_MSK = 0xf<<8, /* Bit 11.. 8: LED2 Mask (LINK) */
1242 PHY_M_FELP_LED1_MSK = 0xf<<4, /* Bit 7.. 4: LED1 Mask (ACT) */
1243 PHY_M_FELP_LED0_MSK = 0xf, /* Bit 3.. 0: LED0 Mask (SPEED) */
1244};
1245
1246#define PHY_M_FELP_LED2_CTRL(x) (((x)<<8) & PHY_M_FELP_LED2_MSK)
1247#define PHY_M_FELP_LED1_CTRL(x) (((x)<<4) & PHY_M_FELP_LED1_MSK)
1248#define PHY_M_FELP_LED0_CTRL(x) (((x)<<0) & PHY_M_FELP_LED0_MSK)
1249
1250enum {
1251 LED_PAR_CTRL_COLX = 0x00,
1252 LED_PAR_CTRL_ERROR = 0x01,
1253 LED_PAR_CTRL_DUPLEX = 0x02,
1254 LED_PAR_CTRL_DP_COL = 0x03,
1255 LED_PAR_CTRL_SPEED = 0x04,
1256 LED_PAR_CTRL_LINK = 0x05,
1257 LED_PAR_CTRL_TX = 0x06,
1258 LED_PAR_CTRL_RX = 0x07,
1259 LED_PAR_CTRL_ACT = 0x08,
1260 LED_PAR_CTRL_LNK_RX = 0x09,
1261 LED_PAR_CTRL_LNK_AC = 0x0a,
1262 LED_PAR_CTRL_ACT_BL = 0x0b,
1263 LED_PAR_CTRL_TX_BL = 0x0c,
1264 LED_PAR_CTRL_RX_BL = 0x0d,
1265 LED_PAR_CTRL_COL_BL = 0x0e,
1266 LED_PAR_CTRL_INACT = 0x0f
1267};
1268
1269/*****,PHY_MARV_FE_SPEC_2 16 bit r/w Specific Control Reg. 2 *****/
1270enum {
1271 PHY_M_FESC_DIS_WAIT = 1<<2, /* Disable TDR Waiting Period */
1272 PHY_M_FESC_ENA_MCLK = 1<<1, /* Enable MAC Rx Clock in sleep mode */
1273 PHY_M_FESC_SEL_CL_A = 1<<0, /* Select Class A driver (100B-TX) */
1274};
1275
1276/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
1277/***** PHY_MARV_PHY_CTRL (page 2) 16 bit r/w MAC Specific Ctrl *****/
1278enum {
1279 PHY_M_MAC_MD_MSK = 7<<7, /* Bit 9.. 7: Mode Select Mask */
1280 PHY_M_MAC_MD_AUTO = 3,/* Auto Copper/1000Base-X */
1281 PHY_M_MAC_MD_COPPER = 5,/* Copper only */
1282 PHY_M_MAC_MD_1000BX = 7,/* 1000Base-X only */
1283};
1284#define PHY_M_MAC_MODE_SEL(x) (((x)<<7) & PHY_M_MAC_MD_MSK)
1285
1286/***** PHY_MARV_PHY_CTRL (page 3) 16 bit r/w LED Control Reg. *****/
1287enum {
1288 PHY_M_LEDC_LOS_MSK = 0xf<<12,/* Bit 15..12: LOS LED Ctrl. Mask */
1289 PHY_M_LEDC_INIT_MSK = 0xf<<8, /* Bit 11.. 8: INIT LED Ctrl. Mask */
1290 PHY_M_LEDC_STA1_MSK = 0xf<<4,/* Bit 7.. 4: STAT1 LED Ctrl. Mask */
1291 PHY_M_LEDC_STA0_MSK = 0xf, /* Bit 3.. 0: STAT0 LED Ctrl. Mask */
1292};
1293
1294#define PHY_M_LEDC_LOS_CTRL(x) (((x)<<12) & PHY_M_LEDC_LOS_MSK)
1295#define PHY_M_LEDC_INIT_CTRL(x) (((x)<<8) & PHY_M_LEDC_INIT_MSK)
1296#define PHY_M_LEDC_STA1_CTRL(x) (((x)<<4) & PHY_M_LEDC_STA1_MSK)
1297#define PHY_M_LEDC_STA0_CTRL(x) (((x)<<0) & PHY_M_LEDC_STA0_MSK)
1298
1299/* GMAC registers */
1300/* Port Registers */
1301enum {
1302 GM_GP_STAT = 0x0000, /* 16 bit r/o General Purpose Status */
1303 GM_GP_CTRL = 0x0004, /* 16 bit r/w General Purpose Control */
1304 GM_TX_CTRL = 0x0008, /* 16 bit r/w Transmit Control Reg. */
1305 GM_RX_CTRL = 0x000c, /* 16 bit r/w Receive Control Reg. */
1306 GM_TX_FLOW_CTRL = 0x0010, /* 16 bit r/w Transmit Flow-Control */
1307 GM_TX_PARAM = 0x0014, /* 16 bit r/w Transmit Parameter Reg. */
1308 GM_SERIAL_MODE = 0x0018, /* 16 bit r/w Serial Mode Register */
1309/* Source Address Registers */
1310 GM_SRC_ADDR_1L = 0x001c, /* 16 bit r/w Source Address 1 (low) */
1311 GM_SRC_ADDR_1M = 0x0020, /* 16 bit r/w Source Address 1 (middle) */
1312 GM_SRC_ADDR_1H = 0x0024, /* 16 bit r/w Source Address 1 (high) */
1313 GM_SRC_ADDR_2L = 0x0028, /* 16 bit r/w Source Address 2 (low) */
1314 GM_SRC_ADDR_2M = 0x002c, /* 16 bit r/w Source Address 2 (middle) */
1315 GM_SRC_ADDR_2H = 0x0030, /* 16 bit r/w Source Address 2 (high) */
1316
1317/* Multicast Address Hash Registers */
1318 GM_MC_ADDR_H1 = 0x0034, /* 16 bit r/w Multicast Address Hash 1 */
1319 GM_MC_ADDR_H2 = 0x0038, /* 16 bit r/w Multicast Address Hash 2 */
1320 GM_MC_ADDR_H3 = 0x003c, /* 16 bit r/w Multicast Address Hash 3 */
1321 GM_MC_ADDR_H4 = 0x0040, /* 16 bit r/w Multicast Address Hash 4 */
1322
1323/* Interrupt Source Registers */
1324 GM_TX_IRQ_SRC = 0x0044, /* 16 bit r/o Tx Overflow IRQ Source */
1325 GM_RX_IRQ_SRC = 0x0048, /* 16 bit r/o Rx Overflow IRQ Source */
1326 GM_TR_IRQ_SRC = 0x004c, /* 16 bit r/o Tx/Rx Over. IRQ Source */
1327
1328/* Interrupt Mask Registers */
1329 GM_TX_IRQ_MSK = 0x0050, /* 16 bit r/w Tx Overflow IRQ Mask */
1330 GM_RX_IRQ_MSK = 0x0054, /* 16 bit r/w Rx Overflow IRQ Mask */
1331 GM_TR_IRQ_MSK = 0x0058, /* 16 bit r/w Tx/Rx Over. IRQ Mask */
1332
1333/* Serial Management Interface (SMI) Registers */
1334 GM_SMI_CTRL = 0x0080, /* 16 bit r/w SMI Control Register */
1335 GM_SMI_DATA = 0x0084, /* 16 bit r/w SMI Data Register */
1336 GM_PHY_ADDR = 0x0088, /* 16 bit r/w GPHY Address Register */
1337};
1338
1339/* MIB Counters */
1340#define GM_MIB_CNT_BASE 0x0100 /* Base Address of MIB Counters */
1341#define GM_MIB_CNT_SIZE 44 /* Number of MIB Counters */
1342
1343/*
1344 * MIB Counters base address definitions (low word) -
1345 * use offset 4 for access to high word (32 bit r/o)
1346 */
1347enum {
1348 GM_RXF_UC_OK = GM_MIB_CNT_BASE + 0, /* Unicast Frames Received OK */
1349 GM_RXF_BC_OK = GM_MIB_CNT_BASE + 8, /* Broadcast Frames Received OK */
1350 GM_RXF_MPAUSE = GM_MIB_CNT_BASE + 16, /* Pause MAC Ctrl Frames Received */
1351 GM_RXF_MC_OK = GM_MIB_CNT_BASE + 24, /* Multicast Frames Received OK */
1352 GM_RXF_FCS_ERR = GM_MIB_CNT_BASE + 32, /* Rx Frame Check Seq. Error */
1353 /* GM_MIB_CNT_BASE + 40: reserved */
1354 GM_RXO_OK_LO = GM_MIB_CNT_BASE + 48, /* Octets Received OK Low */
1355 GM_RXO_OK_HI = GM_MIB_CNT_BASE + 56, /* Octets Received OK High */
1356 GM_RXO_ERR_LO = GM_MIB_CNT_BASE + 64, /* Octets Received Invalid Low */
1357 GM_RXO_ERR_HI = GM_MIB_CNT_BASE + 72, /* Octets Received Invalid High */
1358 GM_RXF_SHT = GM_MIB_CNT_BASE + 80, /* Frames <64 Byte Received OK */
1359 GM_RXE_FRAG = GM_MIB_CNT_BASE + 88, /* Frames <64 Byte Received with FCS Err */
1360 GM_RXF_64B = GM_MIB_CNT_BASE + 96, /* 64 Byte Rx Frame */
1361 GM_RXF_127B = GM_MIB_CNT_BASE + 104, /* 65-127 Byte Rx Frame */
1362 GM_RXF_255B = GM_MIB_CNT_BASE + 112, /* 128-255 Byte Rx Frame */
1363 GM_RXF_511B = GM_MIB_CNT_BASE + 120, /* 256-511 Byte Rx Frame */
1364 GM_RXF_1023B = GM_MIB_CNT_BASE + 128, /* 512-1023 Byte Rx Frame */
1365 GM_RXF_1518B = GM_MIB_CNT_BASE + 136, /* 1024-1518 Byte Rx Frame */
1366 GM_RXF_MAX_SZ = GM_MIB_CNT_BASE + 144, /* 1519-MaxSize Byte Rx Frame */
1367 GM_RXF_LNG_ERR = GM_MIB_CNT_BASE + 152, /* Rx Frame too Long Error */
1368 GM_RXF_JAB_PKT = GM_MIB_CNT_BASE + 160, /* Rx Jabber Packet Frame */
1369 /* GM_MIB_CNT_BASE + 168: reserved */
1370 GM_RXE_FIFO_OV = GM_MIB_CNT_BASE + 176, /* Rx FIFO overflow Event */
1371 /* GM_MIB_CNT_BASE + 184: reserved */
1372 GM_TXF_UC_OK = GM_MIB_CNT_BASE + 192, /* Unicast Frames Xmitted OK */
1373 GM_TXF_BC_OK = GM_MIB_CNT_BASE + 200, /* Broadcast Frames Xmitted OK */
1374 GM_TXF_MPAUSE = GM_MIB_CNT_BASE + 208, /* Pause MAC Ctrl Frames Xmitted */
1375 GM_TXF_MC_OK = GM_MIB_CNT_BASE + 216, /* Multicast Frames Xmitted OK */
1376 GM_TXO_OK_LO = GM_MIB_CNT_BASE + 224, /* Octets Transmitted OK Low */
1377 GM_TXO_OK_HI = GM_MIB_CNT_BASE + 232, /* Octets Transmitted OK High */
1378 GM_TXF_64B = GM_MIB_CNT_BASE + 240, /* 64 Byte Tx Frame */
1379 GM_TXF_127B = GM_MIB_CNT_BASE + 248, /* 65-127 Byte Tx Frame */
1380 GM_TXF_255B = GM_MIB_CNT_BASE + 256, /* 128-255 Byte Tx Frame */
1381 GM_TXF_511B = GM_MIB_CNT_BASE + 264, /* 256-511 Byte Tx Frame */
1382 GM_TXF_1023B = GM_MIB_CNT_BASE + 272, /* 512-1023 Byte Tx Frame */
1383 GM_TXF_1518B = GM_MIB_CNT_BASE + 280, /* 1024-1518 Byte Tx Frame */
1384 GM_TXF_MAX_SZ = GM_MIB_CNT_BASE + 288, /* 1519-MaxSize Byte Tx Frame */
1385
1386 GM_TXF_COL = GM_MIB_CNT_BASE + 304, /* Tx Collision */
1387 GM_TXF_LAT_COL = GM_MIB_CNT_BASE + 312, /* Tx Late Collision */
1388 GM_TXF_ABO_COL = GM_MIB_CNT_BASE + 320, /* Tx aborted due to Exces. Col. */
1389 GM_TXF_MUL_COL = GM_MIB_CNT_BASE + 328, /* Tx Multiple Collision */
1390 GM_TXF_SNG_COL = GM_MIB_CNT_BASE + 336, /* Tx Single Collision */
1391 GM_TXE_FIFO_UR = GM_MIB_CNT_BASE + 344, /* Tx FIFO Underrun Event */
1392};
1393
1394/* GMAC Bit Definitions */
1395/* GM_GP_STAT 16 bit r/o General Purpose Status Register */
1396enum {
1397 GM_GPSR_SPEED = 1<<15, /* Bit 15: Port Speed (1 = 100 Mbps) */
1398 GM_GPSR_DUPLEX = 1<<14, /* Bit 14: Duplex Mode (1 = Full) */
1399 GM_GPSR_FC_TX_DIS = 1<<13, /* Bit 13: Tx Flow-Control Mode Disabled */
1400 GM_GPSR_LINK_UP = 1<<12, /* Bit 12: Link Up Status */
1401 GM_GPSR_PAUSE = 1<<11, /* Bit 11: Pause State */
1402 GM_GPSR_TX_ACTIVE = 1<<10, /* Bit 10: Tx in Progress */
1403 GM_GPSR_EXC_COL = 1<<9, /* Bit 9: Excessive Collisions Occured */
1404 GM_GPSR_LAT_COL = 1<<8, /* Bit 8: Late Collisions Occured */
1405
1406 GM_GPSR_PHY_ST_CH = 1<<5, /* Bit 5: PHY Status Change */
1407 GM_GPSR_GIG_SPEED = 1<<4, /* Bit 4: Gigabit Speed (1 = 1000 Mbps) */
1408 GM_GPSR_PART_MODE = 1<<3, /* Bit 3: Partition mode */
1409 GM_GPSR_FC_RX_DIS = 1<<2, /* Bit 2: Rx Flow-Control Mode Disabled */
1410 GM_GPSR_PROM_EN = 1<<1, /* Bit 1: Promiscuous Mode Enabled */
1411};
1412
1413/* GM_GP_CTRL 16 bit r/w General Purpose Control Register */
1414enum {
1415 GM_GPCR_PROM_ENA = 1<<14, /* Bit 14: Enable Promiscuous Mode */
1416 GM_GPCR_FC_TX_DIS = 1<<13, /* Bit 13: Disable Tx Flow-Control Mode */
1417 GM_GPCR_TX_ENA = 1<<12, /* Bit 12: Enable Transmit */
1418 GM_GPCR_RX_ENA = 1<<11, /* Bit 11: Enable Receive */
1419 GM_GPCR_BURST_ENA = 1<<10, /* Bit 10: Enable Burst Mode */
1420 GM_GPCR_LOOP_ENA = 1<<9, /* Bit 9: Enable MAC Loopback Mode */
1421 GM_GPCR_PART_ENA = 1<<8, /* Bit 8: Enable Partition Mode */
1422 GM_GPCR_GIGS_ENA = 1<<7, /* Bit 7: Gigabit Speed (1000 Mbps) */
1423 GM_GPCR_FL_PASS = 1<<6, /* Bit 6: Force Link Pass */
1424 GM_GPCR_DUP_FULL = 1<<5, /* Bit 5: Full Duplex Mode */
1425 GM_GPCR_FC_RX_DIS = 1<<4, /* Bit 4: Disable Rx Flow-Control Mode */
1426 GM_GPCR_SPEED_100 = 1<<3, /* Bit 3: Port Speed 100 Mbps */
1427 GM_GPCR_AU_DUP_DIS = 1<<2, /* Bit 2: Disable Auto-Update Duplex */
1428 GM_GPCR_AU_FCT_DIS = 1<<1, /* Bit 1: Disable Auto-Update Flow-C. */
1429 GM_GPCR_AU_SPD_DIS = 1<<0, /* Bit 0: Disable Auto-Update Speed */
1430};
1431
1432#define GM_GPCR_SPEED_1000 (GM_GPCR_GIGS_ENA | GM_GPCR_SPEED_100)
1433#define GM_GPCR_AU_ALL_DIS (GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_FCT_DIS|GM_GPCR_AU_SPD_DIS)
1434
1435/* GM_TX_CTRL 16 bit r/w Transmit Control Register */
1436enum {
1437 GM_TXCR_FORCE_JAM = 1<<15, /* Bit 15: Force Jam / Flow-Control */
1438 GM_TXCR_CRC_DIS = 1<<14, /* Bit 14: Disable insertion of CRC */
1439 GM_TXCR_PAD_DIS = 1<<13, /* Bit 13: Disable padding of packets */
1440 GM_TXCR_COL_THR_MSK = 1<<10, /* Bit 12..10: Collision Threshold */
1441};
1442
1443#define TX_COL_THR(x) (((x)<<10) & GM_TXCR_COL_THR_MSK)
1444#define TX_COL_DEF 0x04
1445
1446/* GM_RX_CTRL 16 bit r/w Receive Control Register */
1447enum {
1448 GM_RXCR_UCF_ENA = 1<<15, /* Bit 15: Enable Unicast filtering */
1449 GM_RXCR_MCF_ENA = 1<<14, /* Bit 14: Enable Multicast filtering */
1450 GM_RXCR_CRC_DIS = 1<<13, /* Bit 13: Remove 4-byte CRC */
1451 GM_RXCR_PASS_FC = 1<<12, /* Bit 12: Pass FC packets to FIFO */
1452};
1453
1454/* GM_TX_PARAM 16 bit r/w Transmit Parameter Register */
1455enum {
1456 GM_TXPA_JAMLEN_MSK = 0x03<<14, /* Bit 15..14: Jam Length */
1457 GM_TXPA_JAMIPG_MSK = 0x1f<<9, /* Bit 13..9: Jam IPG */
1458 GM_TXPA_JAMDAT_MSK = 0x1f<<4, /* Bit 8..4: IPG Jam to Data */
1459 GM_TXPA_BO_LIM_MSK = 0x0f, /* Bit 3.. 0: Backoff Limit Mask */
1460
1461 TX_JAM_LEN_DEF = 0x03,
1462 TX_JAM_IPG_DEF = 0x0b,
1463 TX_IPG_JAM_DEF = 0x1c,
1464 TX_BOF_LIM_DEF = 0x04,
1465};
1466
1467#define TX_JAM_LEN_VAL(x) (((x)<<14) & GM_TXPA_JAMLEN_MSK)
1468#define TX_JAM_IPG_VAL(x) (((x)<<9) & GM_TXPA_JAMIPG_MSK)
1469#define TX_IPG_JAM_DATA(x) (((x)<<4) & GM_TXPA_JAMDAT_MSK)
1470#define TX_BACK_OFF_LIM(x) ((x) & GM_TXPA_BO_LIM_MSK)
1471
1472
1473/* GM_SERIAL_MODE 16 bit r/w Serial Mode Register */
1474enum {
1475 GM_SMOD_DATABL_MSK = 0x1f<<11, /* Bit 15..11: Data Blinder (r/o) */
1476 GM_SMOD_LIMIT_4 = 1<<10, /* Bit 10: 4 consecutive Tx trials */
1477 GM_SMOD_VLAN_ENA = 1<<9, /* Bit 9: Enable VLAN (Max. Frame Len) */
1478 GM_SMOD_JUMBO_ENA = 1<<8, /* Bit 8: Enable Jumbo (Max. Frame Len) */
1479 GM_SMOD_IPG_MSK = 0x1f /* Bit 4..0: Inter-Packet Gap (IPG) */
1480};
1481
1482#define DATA_BLIND_VAL(x) (((x)<<11) & GM_SMOD_DATABL_MSK)
1483#define DATA_BLIND_DEF 0x04
1484
1485#define IPG_DATA_VAL(x) (x & GM_SMOD_IPG_MSK)
1486#define IPG_DATA_DEF 0x1e
1487
1488/* GM_SMI_CTRL 16 bit r/w SMI Control Register */
1489enum {
1490 GM_SMI_CT_PHY_A_MSK = 0x1f<<11,/* Bit 15..11: PHY Device Address */
1491 GM_SMI_CT_REG_A_MSK = 0x1f<<6,/* Bit 10.. 6: PHY Register Address */
1492 GM_SMI_CT_OP_RD = 1<<5, /* Bit 5: OpCode Read (0=Write)*/
1493 GM_SMI_CT_RD_VAL = 1<<4, /* Bit 4: Read Valid (Read completed) */
1494 GM_SMI_CT_BUSY = 1<<3, /* Bit 3: Busy (Operation in progress) */
1495};
1496
1497#define GM_SMI_CT_PHY_AD(x) (((x)<<11) & GM_SMI_CT_PHY_A_MSK)
1498#define GM_SMI_CT_REG_AD(x) (((x)<<6) & GM_SMI_CT_REG_A_MSK)
1499
1500/* GM_PHY_ADDR 16 bit r/w GPHY Address Register */
1501enum {
1502 GM_PAR_MIB_CLR = 1<<5, /* Bit 5: Set MIB Clear Counter Mode */
1503 GM_PAR_MIB_TST = 1<<4, /* Bit 4: MIB Load Counter (Test Mode) */
1504};
1505
1506/* Receive Frame Status Encoding */
1507enum {
1508 GMR_FS_LEN = 0xffff<<16, /* Bit 31..16: Rx Frame Length */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001509 GMR_FS_VLAN = 1<<13, /* VLAN Packet */
1510 GMR_FS_JABBER = 1<<12, /* Jabber Packet */
1511 GMR_FS_UN_SIZE = 1<<11, /* Undersize Packet */
1512 GMR_FS_MC = 1<<10, /* Multicast Packet */
1513 GMR_FS_BC = 1<<9, /* Broadcast Packet */
1514 GMR_FS_RX_OK = 1<<8, /* Receive OK (Good Packet) */
1515 GMR_FS_GOOD_FC = 1<<7, /* Good Flow-Control Packet */
1516 GMR_FS_BAD_FC = 1<<6, /* Bad Flow-Control Packet */
1517 GMR_FS_MII_ERR = 1<<5, /* MII Error */
1518 GMR_FS_LONG_ERR = 1<<4, /* Too Long Packet */
1519 GMR_FS_FRAGMENT = 1<<3, /* Fragment */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001520
Stephen Hemminger793b8832005-09-14 16:06:14 -07001521 GMR_FS_CRC_ERR = 1<<1, /* CRC Error */
1522 GMR_FS_RX_FF_OV = 1<<0, /* Rx FIFO Overflow */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001523
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001524 GMR_FS_ANY_ERR = GMR_FS_RX_FF_OV | GMR_FS_CRC_ERR |
1525 GMR_FS_FRAGMENT | GMR_FS_LONG_ERR |
1526 GMR_FS_MII_ERR | GMR_FS_BAD_FC | GMR_FS_GOOD_FC |
1527 GMR_FS_UN_SIZE | GMR_FS_JABBER,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001528};
1529
1530/* RX_GMF_CTRL_T 32 bit Rx GMAC FIFO Control/Test */
1531enum {
Stephen Hemminger793b8832005-09-14 16:06:14 -07001532 RX_TRUNC_ON = 1<<27, /* enable packet truncation */
1533 RX_TRUNC_OFF = 1<<26, /* disable packet truncation */
1534 RX_VLAN_STRIP_ON = 1<<25, /* enable VLAN stripping */
1535 RX_VLAN_STRIP_OFF = 1<<24, /* disable VLAN stripping */
1536
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001537 GMF_WP_TST_ON = 1<<14, /* Write Pointer Test On */
1538 GMF_WP_TST_OFF = 1<<13, /* Write Pointer Test Off */
1539 GMF_WP_STEP = 1<<12, /* Write Pointer Step/Increment */
1540
1541 GMF_RP_TST_ON = 1<<10, /* Read Pointer Test On */
1542 GMF_RP_TST_OFF = 1<<9, /* Read Pointer Test Off */
1543 GMF_RP_STEP = 1<<8, /* Read Pointer Step/Increment */
1544 GMF_RX_F_FL_ON = 1<<7, /* Rx FIFO Flush Mode On */
1545 GMF_RX_F_FL_OFF = 1<<6, /* Rx FIFO Flush Mode Off */
1546 GMF_CLI_RX_FO = 1<<5, /* Clear IRQ Rx FIFO Overrun */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001547 GMF_CLI_RX_C = 1<<4, /* Clear IRQ Rx Frame Complete */
1548
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001549 GMF_OPER_ON = 1<<3, /* Operational Mode On */
1550 GMF_OPER_OFF = 1<<2, /* Operational Mode Off */
1551 GMF_RST_CLR = 1<<1, /* Clear GMAC FIFO Reset */
1552 GMF_RST_SET = 1<<0, /* Set GMAC FIFO Reset */
1553
1554 RX_GMF_FL_THR_DEF = 0xa, /* flush threshold (default) */
shemminger@osdl.orgd1f13702005-09-27 15:02:57 -07001555
1556 GMF_RX_CTRL_DEF = GMF_OPER_ON | GMF_RX_F_FL_ON,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001557};
1558
1559
1560/* TX_GMF_CTRL_T 32 bit Tx GMAC FIFO Control/Test */
1561enum {
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -08001562 TX_STFW_DIS = 1<<31,/* Disable Store & Forward (Yukon-EC Ultra) */
1563 TX_STFW_ENA = 1<<30,/* Enable Store & Forward (Yukon-EC Ultra) */
1564
Stephen Hemminger793b8832005-09-14 16:06:14 -07001565 TX_VLAN_TAG_ON = 1<<25,/* enable VLAN tagging */
1566 TX_VLAN_TAG_OFF = 1<<24,/* disable VLAN tagging */
1567
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001568 GMF_WSP_TST_ON = 1<<18,/* Write Shadow Pointer Test On */
1569 GMF_WSP_TST_OFF = 1<<17,/* Write Shadow Pointer Test Off */
1570 GMF_WSP_STEP = 1<<16,/* Write Shadow Pointer Step/Increment */
1571
1572 GMF_CLI_TX_FU = 1<<6, /* Clear IRQ Tx FIFO Underrun */
1573 GMF_CLI_TX_FC = 1<<5, /* Clear IRQ Tx Frame Complete */
1574 GMF_CLI_TX_PE = 1<<4, /* Clear IRQ Tx Parity Error */
1575};
1576
1577/* GMAC_TI_ST_CTRL 8 bit Time Stamp Timer Ctrl Reg (YUKON only) */
1578enum {
1579 GMT_ST_START = 1<<2, /* Start Time Stamp Timer */
1580 GMT_ST_STOP = 1<<1, /* Stop Time Stamp Timer */
1581 GMT_ST_CLR_IRQ = 1<<0, /* Clear Time Stamp Timer IRQ */
1582};
1583
1584/* B28_Y2_ASF_STAT_CMD 32 bit ASF Status and Command Reg */
1585enum {
1586 Y2_ASF_OS_PRES = 1<<4, /* ASF operation system present */
1587 Y2_ASF_RESET = 1<<3, /* ASF system in reset state */
1588 Y2_ASF_RUNNING = 1<<2, /* ASF system operational */
1589 Y2_ASF_CLR_HSTI = 1<<1, /* Clear ASF IRQ */
1590 Y2_ASF_IRQ = 1<<0, /* Issue an IRQ to ASF system */
1591
1592 Y2_ASF_UC_STATE = 3<<2, /* ASF uC State */
1593 Y2_ASF_CLK_HALT = 0, /* ASF system clock stopped */
1594};
1595
1596/* B28_Y2_ASF_HOST_COM 32 bit ASF Host Communication Reg */
1597enum {
1598 Y2_ASF_CLR_ASFI = 1<<1, /* Clear host IRQ */
1599 Y2_ASF_HOST_IRQ = 1<<0, /* Issue an IRQ to HOST system */
1600};
1601
1602/* STAT_CTRL 32 bit Status BMU control register (Yukon-2 only) */
1603enum {
1604 SC_STAT_CLR_IRQ = 1<<4, /* Status Burst IRQ clear */
1605 SC_STAT_OP_ON = 1<<3, /* Operational Mode On */
1606 SC_STAT_OP_OFF = 1<<2, /* Operational Mode Off */
1607 SC_STAT_RST_CLR = 1<<1, /* Clear Status Unit Reset (Enable) */
1608 SC_STAT_RST_SET = 1<<0, /* Set Status Unit Reset */
1609};
1610
1611/* GMAC_CTRL 32 bit GMAC Control Reg (YUKON only) */
1612enum {
1613 GMC_H_BURST_ON = 1<<7, /* Half Duplex Burst Mode On */
1614 GMC_H_BURST_OFF = 1<<6, /* Half Duplex Burst Mode Off */
1615 GMC_F_LOOPB_ON = 1<<5, /* FIFO Loopback On */
1616 GMC_F_LOOPB_OFF = 1<<4, /* FIFO Loopback Off */
1617 GMC_PAUSE_ON = 1<<3, /* Pause On */
1618 GMC_PAUSE_OFF = 1<<2, /* Pause Off */
1619 GMC_RST_CLR = 1<<1, /* Clear GMAC Reset */
1620 GMC_RST_SET = 1<<0, /* Set GMAC Reset */
1621};
1622
1623/* GPHY_CTRL 32 bit GPHY Control Reg (YUKON only) */
1624enum {
1625 GPC_SEL_BDT = 1<<28, /* Select Bi-Dir. Transfer for MDC/MDIO */
1626 GPC_INT_POL_HI = 1<<27, /* IRQ Polarity is Active HIGH */
1627 GPC_75_OHM = 1<<26, /* Use 75 Ohm Termination instead of 50 */
1628 GPC_DIS_FC = 1<<25, /* Disable Automatic Fiber/Copper Detection */
1629 GPC_DIS_SLEEP = 1<<24, /* Disable Energy Detect */
1630 GPC_HWCFG_M_3 = 1<<23, /* HWCFG_MODE[3] */
1631 GPC_HWCFG_M_2 = 1<<22, /* HWCFG_MODE[2] */
1632 GPC_HWCFG_M_1 = 1<<21, /* HWCFG_MODE[1] */
1633 GPC_HWCFG_M_0 = 1<<20, /* HWCFG_MODE[0] */
1634 GPC_ANEG_0 = 1<<19, /* ANEG[0] */
1635 GPC_ENA_XC = 1<<18, /* Enable MDI crossover */
1636 GPC_DIS_125 = 1<<17, /* Disable 125 MHz clock */
1637 GPC_ANEG_3 = 1<<16, /* ANEG[3] */
1638 GPC_ANEG_2 = 1<<15, /* ANEG[2] */
1639 GPC_ANEG_1 = 1<<14, /* ANEG[1] */
1640 GPC_ENA_PAUSE = 1<<13, /* Enable Pause (SYM_OR_REM) */
1641 GPC_PHYADDR_4 = 1<<12, /* Bit 4 of Phy Addr */
1642 GPC_PHYADDR_3 = 1<<11, /* Bit 3 of Phy Addr */
1643 GPC_PHYADDR_2 = 1<<10, /* Bit 2 of Phy Addr */
1644 GPC_PHYADDR_1 = 1<<9, /* Bit 1 of Phy Addr */
1645 GPC_PHYADDR_0 = 1<<8, /* Bit 0 of Phy Addr */
1646 /* Bits 7..2: reserved */
1647 GPC_RST_CLR = 1<<1, /* Clear GPHY Reset */
1648 GPC_RST_SET = 1<<0, /* Set GPHY Reset */
1649};
1650
1651/* GMAC_IRQ_SRC 8 bit GMAC Interrupt Source Reg (YUKON only) */
1652/* GMAC_IRQ_MSK 8 bit GMAC Interrupt Mask Reg (YUKON only) */
1653enum {
1654 GM_IS_TX_CO_OV = 1<<5, /* Transmit Counter Overflow IRQ */
1655 GM_IS_RX_CO_OV = 1<<4, /* Receive Counter Overflow IRQ */
1656 GM_IS_TX_FF_UR = 1<<3, /* Transmit FIFO Underrun */
1657 GM_IS_TX_COMPL = 1<<2, /* Frame Transmission Complete */
1658 GM_IS_RX_FF_OR = 1<<1, /* Receive FIFO Overrun */
1659 GM_IS_RX_COMPL = 1<<0, /* Frame Reception Complete */
1660
Stephen Hemminger79e57d32005-09-19 15:42:33 -07001661#define GMAC_DEF_MSK GM_IS_TX_FF_UR
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001662
1663/* GMAC_LINK_CTRL 16 bit GMAC Link Control Reg (YUKON only) */
1664 /* Bits 15.. 2: reserved */
1665 GMLC_RST_CLR = 1<<1, /* Clear GMAC Link Reset */
1666 GMLC_RST_SET = 1<<0, /* Set GMAC Link Reset */
1667
1668
1669/* WOL_CTRL_STAT 16 bit WOL Control/Status Reg */
1670 WOL_CTL_LINK_CHG_OCC = 1<<15,
1671 WOL_CTL_MAGIC_PKT_OCC = 1<<14,
1672 WOL_CTL_PATTERN_OCC = 1<<13,
1673 WOL_CTL_CLEAR_RESULT = 1<<12,
1674 WOL_CTL_ENA_PME_ON_LINK_CHG = 1<<11,
1675 WOL_CTL_DIS_PME_ON_LINK_CHG = 1<<10,
1676 WOL_CTL_ENA_PME_ON_MAGIC_PKT = 1<<9,
1677 WOL_CTL_DIS_PME_ON_MAGIC_PKT = 1<<8,
1678 WOL_CTL_ENA_PME_ON_PATTERN = 1<<7,
1679 WOL_CTL_DIS_PME_ON_PATTERN = 1<<6,
1680 WOL_CTL_ENA_LINK_CHG_UNIT = 1<<5,
1681 WOL_CTL_DIS_LINK_CHG_UNIT = 1<<4,
1682 WOL_CTL_ENA_MAGIC_PKT_UNIT = 1<<3,
1683 WOL_CTL_DIS_MAGIC_PKT_UNIT = 1<<2,
1684 WOL_CTL_ENA_PATTERN_UNIT = 1<<1,
1685 WOL_CTL_DIS_PATTERN_UNIT = 1<<0,
1686};
1687
1688#define WOL_CTL_DEFAULT \
1689 (WOL_CTL_DIS_PME_ON_LINK_CHG | \
1690 WOL_CTL_DIS_PME_ON_PATTERN | \
1691 WOL_CTL_DIS_PME_ON_MAGIC_PKT | \
1692 WOL_CTL_DIS_LINK_CHG_UNIT | \
1693 WOL_CTL_DIS_PATTERN_UNIT | \
1694 WOL_CTL_DIS_MAGIC_PKT_UNIT)
1695
1696/* WOL_MATCH_CTL 8 bit WOL Match Control Reg */
1697#define WOL_CTL_PATT_ENA(x) (1 << (x))
1698
1699
1700/* Control flags */
1701enum {
1702 UDPTCP = 1<<0,
1703 CALSUM = 1<<1,
1704 WR_SUM = 1<<2,
1705 INIT_SUM= 1<<3,
1706 LOCK_SUM= 1<<4,
1707 INS_VLAN= 1<<5,
1708 FRC_STAT= 1<<6,
1709 EOP = 1<<7,
1710};
1711
1712enum {
1713 HW_OWNER = 1<<7,
1714 OP_TCPWRITE = 0x11,
1715 OP_TCPSTART = 0x12,
1716 OP_TCPINIT = 0x14,
1717 OP_TCPLCK = 0x18,
1718 OP_TCPCHKSUM = OP_TCPSTART,
1719 OP_TCPIS = OP_TCPINIT | OP_TCPSTART,
1720 OP_TCPLW = OP_TCPLCK | OP_TCPWRITE,
1721 OP_TCPLSW = OP_TCPLCK | OP_TCPSTART | OP_TCPWRITE,
1722 OP_TCPLISW = OP_TCPLCK | OP_TCPINIT | OP_TCPSTART | OP_TCPWRITE,
1723
1724 OP_ADDR64 = 0x21,
1725 OP_VLAN = 0x22,
1726 OP_ADDR64VLAN = OP_ADDR64 | OP_VLAN,
1727 OP_LRGLEN = 0x24,
1728 OP_LRGLENVLAN = OP_LRGLEN | OP_VLAN,
1729 OP_BUFFER = 0x40,
1730 OP_PACKET = 0x41,
1731 OP_LARGESEND = 0x43,
1732
1733/* YUKON-2 STATUS opcodes defines */
1734 OP_RXSTAT = 0x60,
1735 OP_RXTIMESTAMP = 0x61,
1736 OP_RXVLAN = 0x62,
1737 OP_RXCHKS = 0x64,
1738 OP_RXCHKSVLAN = OP_RXCHKS | OP_RXVLAN,
1739 OP_RXTIMEVLAN = OP_RXTIMESTAMP | OP_RXVLAN,
1740 OP_RSS_HASH = 0x65,
1741 OP_TXINDEXLE = 0x68,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001742};
1743
1744/* Yukon 2 hardware interface
1745 * Not tested on big endian
1746 */
1747struct sky2_tx_le {
1748 union {
1749 u32 addr;
1750 struct {
1751 u16 offset;
1752 u16 start;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001753 } csum __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001754 struct {
1755 u16 size;
1756 u16 rsvd;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001757 } tso __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001758 } tx;
1759 u16 length; /* also vlan tag or checksum start */
1760 u8 ctrl;
1761 u8 opcode;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001762} __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001763
1764struct sky2_rx_le {
Stephen Hemminger793b8832005-09-14 16:06:14 -07001765 u32 addr;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001766 u16 length;
1767 u8 ctrl;
1768 u8 opcode;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001769} __attribute((packed));;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001770
1771struct sky2_status_le {
1772 u32 status; /* also checksum */
1773 u16 length; /* also vlan tag */
1774 u8 link;
1775 u8 opcode;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001776} __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001777
1778struct ring_info {
1779 struct sk_buff *skb;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001780 dma_addr_t mapaddr;
1781 u16 maplen;
1782 u16 idx;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001783};
1784
1785struct sky2_port {
Stephen Hemminger793b8832005-09-14 16:06:14 -07001786 struct sky2_hw *hw;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001787 struct net_device *netdev;
1788 unsigned port;
1789 u32 msg_enable;
1790
Stephen Hemminger793b8832005-09-14 16:06:14 -07001791 struct ring_info *tx_ring;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001792 struct sky2_tx_le *tx_le;
1793 spinlock_t tx_lock;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001794 u32 tx_addr64;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001795 u16 tx_cons; /* next le to check */
1796 u16 tx_prod; /* next le to use */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001797 u16 tx_pending;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001798 u16 tx_last_put;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001799 u16 tx_last_mss;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001800
Stephen Hemminger793b8832005-09-14 16:06:14 -07001801 struct ring_info *rx_ring;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001802 struct sky2_rx_le *rx_le;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001803 u32 rx_addr64;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001804 u16 rx_next; /* next re to check */
1805 u16 rx_put; /* next le index to use */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001806 u16 rx_pending;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001807 u16 rx_last_put;
shemminger@osdl.orgd1f13702005-09-27 15:02:57 -07001808#ifdef SKY2_VLAN_TAG_USED
1809 u16 rx_tag;
1810 struct vlan_group *vlgrp;
1811#endif
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001812
1813 dma_addr_t rx_le_map;
1814 dma_addr_t tx_le_map;
1815 u32 advertising; /* ADVERTISED_ bits */
1816 u16 speed; /* SPEED_1000, SPEED_100, ... */
1817 u8 autoneg; /* AUTONEG_ENABLE, AUTONEG_DISABLE */
1818 u8 duplex; /* DUPLEX_HALF, DUPLEX_FULL */
1819 u8 rx_pause;
1820 u8 tx_pause;
1821 u8 rx_csum;
1822 u8 wol;
1823
1824 struct tasklet_struct phy_task;
1825 struct net_device_stats net_stats;
1826};
1827
1828struct sky2_hw {
1829 void __iomem *regs;
1830 struct pci_dev *pdev;
1831 u32 intr_mask;
1832 struct net_device *dev[2];
1833
shemminger@osdl.org5afa0a92005-09-27 15:03:00 -07001834 int pm_cap;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001835 u8 chip_id;
1836 u8 chip_rev;
1837 u8 copper;
1838 u8 ports;
1839
1840 struct sky2_status_le *st_le;
1841 u32 st_idx;
1842 dma_addr_t st_dma;
1843
1844 spinlock_t phy_lock;
1845};
1846
1847/* Register accessor for memory mapped device */
1848static inline u32 sky2_read32(const struct sky2_hw *hw, unsigned reg)
1849{
1850 return readl(hw->regs + reg);
1851}
1852
1853static inline u16 sky2_read16(const struct sky2_hw *hw, unsigned reg)
1854{
1855 return readw(hw->regs + reg);
1856}
1857
1858static inline u8 sky2_read8(const struct sky2_hw *hw, unsigned reg)
1859{
1860 return readb(hw->regs + reg);
1861}
1862
Stephen Hemminger793b8832005-09-14 16:06:14 -07001863/* This should probably go away, bus based tweeks suck */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001864static inline int is_pciex(const struct sky2_hw *hw)
1865{
Stephen Hemminger793b8832005-09-14 16:06:14 -07001866 u32 status;
1867 pci_read_config_dword(hw->pdev, PCI_DEV_STATUS, &status);
1868 return (status & PCI_OS_PCI_X) == 0;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001869}
1870
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001871static inline void sky2_write32(const struct sky2_hw *hw, unsigned reg, u32 val)
1872{
1873 writel(val, hw->regs + reg);
1874}
1875
1876static inline void sky2_write16(const struct sky2_hw *hw, unsigned reg, u16 val)
1877{
1878 writew(val, hw->regs + reg);
1879}
1880
1881static inline void sky2_write8(const struct sky2_hw *hw, unsigned reg, u8 val)
1882{
1883 writeb(val, hw->regs + reg);
1884}
1885
1886/* Yukon PHY related registers */
1887#define SK_GMAC_REG(port,reg) \
1888 (BASE_GMAC_1 + (port) * (BASE_GMAC_2-BASE_GMAC_1) + (reg))
1889#define GM_PHY_RETRIES 100
1890
1891static inline u16 gma_read16(const struct sky2_hw *hw, unsigned port, unsigned reg)
1892{
1893 return sky2_read16(hw, SK_GMAC_REG(port,reg));
1894}
1895
1896static inline u32 gma_read32(struct sky2_hw *hw, unsigned port, unsigned reg)
1897{
1898 unsigned base = SK_GMAC_REG(port, reg);
1899 return (u32) sky2_read16(hw, base)
1900 | (u32) sky2_read16(hw, base+4) << 16;
1901}
1902
1903static inline void gma_write16(const struct sky2_hw *hw, unsigned port, int r, u16 v)
1904{
1905 sky2_write16(hw, SK_GMAC_REG(port,r), v);
1906}
1907
1908static inline void gma_set_addr(struct sky2_hw *hw, unsigned port, unsigned reg,
1909 const u8 *addr)
1910{
1911 gma_write16(hw, port, reg, (u16) addr[0] | ((u16) addr[1] << 8));
1912 gma_write16(hw, port, reg+4,(u16) addr[2] | ((u16) addr[3] << 8));
1913 gma_write16(hw, port, reg+8,(u16) addr[4] | ((u16) addr[5] << 8));
1914}
1915#endif