blob: 00907f58019ee59c5cf8ac9e95b72dbebe593a1e [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
Stephen Hemminger14d02632006-09-26 11:57:43 -07007#define ETH_JUMBO_MTU 9000 /* Maximum MTU supported */
8
Stephen Hemminger7bd656d2006-10-09 14:40:38 -07009/* PCI config registers */
Stephen Hemminger977bdf02006-02-22 11:44:58 -080010enum {
11 PCI_DEV_REG1 = 0x40,
12 PCI_DEV_REG2 = 0x44,
Stephen Hemminger7bd656d2006-10-09 14:40:38 -070013 PCI_DEV_STATUS = 0x7c,
Stephen Hemminger977bdf02006-02-22 11:44:58 -080014 PCI_DEV_REG3 = 0x80,
15 PCI_DEV_REG4 = 0x84,
16 PCI_DEV_REG5 = 0x88,
Stephen Hemmingerfc99fe02007-06-04 17:23:22 -070017 PCI_CFG_REG_0 = 0x90,
18 PCI_CFG_REG_1 = 0x94,
Stephen Hemminger977bdf02006-02-22 11:44:58 -080019};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -070020
Stephen Hemminger7bd656d2006-10-09 14:40:38 -070021enum {
22 PEX_DEV_CAP = 0xe4,
23 PEX_DEV_CTRL = 0xe8,
24 PEX_DEV_STA = 0xea,
25 PEX_LNK_STAT = 0xf2,
26 PEX_UNC_ERR_STAT= 0x104,
27};
28
Stephen Hemmingercd28ab62005-08-16 16:36:49 -070029/* Yukon-2 */
30enum pci_dev_reg_1 {
31 PCI_Y2_PIG_ENA = 1<<31, /* Enable Plug-in-Go (YUKON-2) */
32 PCI_Y2_DLL_DIS = 1<<30, /* Disable PCI DLL (YUKON-2) */
Stephen Hemmingerfc99fe02007-06-04 17:23:22 -070033 PCI_SW_PWR_ON_RST= 1<<30, /* SW Power on Reset (Yukon-EX) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -070034 PCI_Y2_PHY2_COMA = 1<<29, /* Set PHY 2 to Coma Mode (YUKON-2) */
35 PCI_Y2_PHY1_COMA = 1<<28, /* Set PHY 1 to Coma Mode (YUKON-2) */
36 PCI_Y2_PHY2_POWD = 1<<27, /* Set PHY 2 to Power Down (YUKON-2) */
37 PCI_Y2_PHY1_POWD = 1<<26, /* Set PHY 1 to Power Down (YUKON-2) */
Stephen Hemmingere3173832007-02-06 10:45:39 -080038 PCI_Y2_PME_LEGACY= 1<<15, /* PCI Express legacy power management mode */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -070039};
40
41enum pci_dev_reg_2 {
42 PCI_VPD_WR_THR = 0xffL<<24, /* Bit 31..24: VPD Write Threshold */
43 PCI_DEV_SEL = 0x7fL<<17, /* Bit 23..17: EEPROM Device Select */
44 PCI_VPD_ROM_SZ = 7L<<14, /* Bit 16..14: VPD ROM Size */
45
46 PCI_PATCH_DIR = 0xfL<<8, /* Bit 11.. 8: Ext Patches dir 3..0 */
47 PCI_EXT_PATCHS = 0xfL<<4, /* Bit 7.. 4: Extended Patches 3..0 */
48 PCI_EN_DUMMY_RD = 1<<3, /* Enable Dummy Read */
49 PCI_REV_DESC = 1<<2, /* Reverse Desc. Bytes */
50
51 PCI_USEDATA64 = 1<<0, /* Use 64Bit Data bus ext */
52};
53
Stephen Hemminger977bdf02006-02-22 11:44:58 -080054/* PCI_OUR_REG_4 32 bit Our Register 4 (Yukon-ECU only) */
55enum pci_dev_reg_4 {
56 /* (Link Training & Status State Machine) */
57 P_TIMER_VALUE_MSK = 0xffL<<16, /* Bit 23..16: Timer Value Mask */
58 /* (Active State Power Management) */
59 P_FORCE_ASPM_REQUEST = 1<<15, /* Force ASPM Request (A1 only) */
60 P_ASPM_GPHY_LINK_DOWN = 1<<14, /* GPHY Link Down (A1 only) */
61 P_ASPM_INT_FIFO_EMPTY = 1<<13, /* Internal FIFO Empty (A1 only) */
62 P_ASPM_CLKRUN_REQUEST = 1<<12, /* CLKRUN Request (A1 only) */
63
64 P_ASPM_FORCE_CLKREQ_ENA = 1<<4, /* Force CLKREQ Enable (A1b only) */
65 P_ASPM_CLKREQ_PAD_CTL = 1<<3, /* CLKREQ PAD Control (A1 only) */
66 P_ASPM_A1_MODE_SELECT = 1<<2, /* A1 Mode Select (A1 only) */
67 P_CLK_GATE_PEX_UNIT_ENA = 1<<1, /* Enable Gate PEX Unit Clock */
68 P_CLK_GATE_ROOT_COR_ENA = 1<<0, /* Enable Gate Root Core Clock */
69 P_ASPM_CONTROL_MSK = P_FORCE_ASPM_REQUEST | P_ASPM_GPHY_LINK_DOWN
70 | P_ASPM_CLKRUN_REQUEST | P_ASPM_INT_FIFO_EMPTY,
71};
72
Stephen Hemmingerfc99fe02007-06-04 17:23:22 -070073/* PCI_OUR_REG_5 32 bit Our Register 5 (Yukon-ECU only) */
74enum pci_dev_reg_5 {
75 /* Bit 31..27: for A3 & later */
76 P_CTL_DIV_CORE_CLK_ENA = 1<<31, /* Divide Core Clock Enable */
77 P_CTL_SRESET_VMAIN_AV = 1<<30, /* Soft Reset for Vmain_av De-Glitch */
78 P_CTL_BYPASS_VMAIN_AV = 1<<29, /* Bypass En. for Vmain_av De-Glitch */
79 P_CTL_TIM_VMAIN_AV_MSK = 3<<27, /* Bit 28..27: Timer Vmain_av Mask */
80 /* Bit 26..16: Release Clock on Event */
81 P_REL_PCIE_RST_DE_ASS = 1<<26, /* PCIe Reset De-Asserted */
82 P_REL_GPHY_REC_PACKET = 1<<25, /* GPHY Received Packet */
83 P_REL_INT_FIFO_N_EMPTY = 1<<24, /* Internal FIFO Not Empty */
84 P_REL_MAIN_PWR_AVAIL = 1<<23, /* Main Power Available */
85 P_REL_CLKRUN_REQ_REL = 1<<22, /* CLKRUN Request Release */
86 P_REL_PCIE_RESET_ASS = 1<<21, /* PCIe Reset Asserted */
87 P_REL_PME_ASSERTED = 1<<20, /* PME Asserted */
88 P_REL_PCIE_EXIT_L1_ST = 1<<19, /* PCIe Exit L1 State */
89 P_REL_LOADER_NOT_FIN = 1<<18, /* EPROM Loader Not Finished */
90 P_REL_PCIE_RX_EX_IDLE = 1<<17, /* PCIe Rx Exit Electrical Idle State */
91 P_REL_GPHY_LINK_UP = 1<<16, /* GPHY Link Up */
92
93 /* Bit 10.. 0: Mask for Gate Clock */
94 P_GAT_PCIE_RST_ASSERTED = 1<<10,/* PCIe Reset Asserted */
95 P_GAT_GPHY_N_REC_PACKET = 1<<9, /* GPHY Not Received Packet */
96 P_GAT_INT_FIFO_EMPTY = 1<<8, /* Internal FIFO Empty */
97 P_GAT_MAIN_PWR_N_AVAIL = 1<<7, /* Main Power Not Available */
98 P_GAT_CLKRUN_REQ_REL = 1<<6, /* CLKRUN Not Requested */
99 P_GAT_PCIE_RESET_ASS = 1<<5, /* PCIe Reset Asserted */
100 P_GAT_PME_DE_ASSERTED = 1<<4, /* PME De-Asserted */
101 P_GAT_PCIE_ENTER_L1_ST = 1<<3, /* PCIe Enter L1 State */
102 P_GAT_LOADER_FINISHED = 1<<2, /* EPROM Loader Finished */
103 P_GAT_PCIE_RX_EL_IDLE = 1<<1, /* PCIe Rx Electrical Idle State */
104 P_GAT_GPHY_LINK_DOWN = 1<<0, /* GPHY Link Down */
105
106 PCIE_OUR5_EVENT_CLK_D3_SET = P_REL_GPHY_REC_PACKET |
107 P_REL_INT_FIFO_N_EMPTY |
108 P_REL_PCIE_EXIT_L1_ST |
109 P_REL_PCIE_RX_EX_IDLE |
110 P_GAT_GPHY_N_REC_PACKET |
111 P_GAT_INT_FIFO_EMPTY |
112 P_GAT_PCIE_ENTER_L1_ST |
113 P_GAT_PCIE_RX_EL_IDLE,
114};
115
116#/* PCI_CFG_REG_1 32 bit Config Register 1 (Yukon-Ext only) */
117enum pci_cfg_reg1 {
118 P_CF1_DIS_REL_EVT_RST = 1<<24, /* Dis. Rel. Event during PCIE reset */
119 /* Bit 23..21: Release Clock on Event */
120 P_CF1_REL_LDR_NOT_FIN = 1<<23, /* EEPROM Loader Not Finished */
121 P_CF1_REL_VMAIN_AVLBL = 1<<22, /* Vmain available */
122 P_CF1_REL_PCIE_RESET = 1<<21, /* PCI-E reset */
123 /* Bit 20..18: Gate Clock on Event */
124 P_CF1_GAT_LDR_NOT_FIN = 1<<20, /* EEPROM Loader Finished */
125 P_CF1_GAT_PCIE_RX_IDLE = 1<<19, /* PCI-E Rx Electrical idle */
126 P_CF1_GAT_PCIE_RESET = 1<<18, /* PCI-E Reset */
127 P_CF1_PRST_PHY_CLKREQ = 1<<17, /* Enable PCI-E rst & PM2PHY gen. CLKREQ */
128 P_CF1_PCIE_RST_CLKREQ = 1<<16, /* Enable PCI-E rst generate CLKREQ */
129
130 P_CF1_ENA_CFG_LDR_DONE = 1<<8, /* Enable core level Config loader done */
131
132 P_CF1_ENA_TXBMU_RD_IDLE = 1<<1, /* Enable TX BMU Read IDLE for ASPM */
133 P_CF1_ENA_TXBMU_WR_IDLE = 1<<0, /* Enable TX BMU Write IDLE for ASPM */
134
135 PCIE_CFG1_EVENT_CLK_D3_SET = P_CF1_DIS_REL_EVT_RST |
136 P_CF1_REL_LDR_NOT_FIN |
137 P_CF1_REL_VMAIN_AVLBL |
138 P_CF1_REL_PCIE_RESET |
139 P_CF1_GAT_LDR_NOT_FIN |
140 P_CF1_GAT_PCIE_RESET |
141 P_CF1_PRST_PHY_CLKREQ |
142 P_CF1_ENA_CFG_LDR_DONE |
143 P_CF1_ENA_TXBMU_RD_IDLE |
144 P_CF1_ENA_TXBMU_WR_IDLE,
145};
146
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700147
148#define PCI_STATUS_ERROR_BITS (PCI_STATUS_DETECTED_PARITY | \
149 PCI_STATUS_SIG_SYSTEM_ERROR | \
150 PCI_STATUS_REC_MASTER_ABORT | \
151 PCI_STATUS_REC_TARGET_ABORT | \
152 PCI_STATUS_PARITY)
Stephen Hemminger7bd656d2006-10-09 14:40:38 -0700153
154enum pex_dev_ctrl {
155 PEX_DC_MAX_RRS_MSK = 7<<12, /* Bit 14..12: Max. Read Request Size */
156 PEX_DC_EN_NO_SNOOP = 1<<11,/* Enable No Snoop */
157 PEX_DC_EN_AUX_POW = 1<<10,/* Enable AUX Power */
158 PEX_DC_EN_PHANTOM = 1<<9, /* Enable Phantom Functions */
159 PEX_DC_EN_EXT_TAG = 1<<8, /* Enable Extended Tag Field */
160 PEX_DC_MAX_PLS_MSK = 7<<5, /* Bit 7.. 5: Max. Payload Size Mask */
161 PEX_DC_EN_REL_ORD = 1<<4, /* Enable Relaxed Ordering */
162 PEX_DC_EN_UNS_RQ_RP = 1<<3, /* Enable Unsupported Request Reporting */
163 PEX_DC_EN_FAT_ER_RP = 1<<2, /* Enable Fatal Error Reporting */
164 PEX_DC_EN_NFA_ER_RP = 1<<1, /* Enable Non-Fatal Error Reporting */
165 PEX_DC_EN_COR_ER_RP = 1<<0, /* Enable Correctable Error Reporting */
166};
167#define PEX_DC_MAX_RD_RQ_SIZE(x) (((x)<<12) & PEX_DC_MAX_RRS_MSK)
168
169/* PEX_UNC_ERR_STAT PEX Uncorrectable Errors Status Register (Yukon-2) */
170enum pex_err {
171 PEX_UNSUP_REQ = 1<<20, /* Unsupported Request Error */
172
173 PEX_MALFOR_TLP = 1<<18, /* Malformed TLP */
174
175 PEX_UNEXP_COMP = 1<<16, /* Unexpected Completion */
176
177 PEX_COMP_TO = 1<<14, /* Completion Timeout */
178 PEX_FLOW_CTRL_P = 1<<13, /* Flow Control Protocol Error */
179 PEX_POIS_TLP = 1<<12, /* Poisoned TLP */
180
181 PEX_DATA_LINK_P = 1<<4, /* Data Link Protocol Error */
182 PEX_FATAL_ERRORS= (PEX_MALFOR_TLP | PEX_FLOW_CTRL_P | PEX_DATA_LINK_P),
183};
184
185
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700186enum csr_regs {
187 B0_RAP = 0x0000,
188 B0_CTST = 0x0004,
189 B0_Y2LED = 0x0005,
190 B0_POWER_CTRL = 0x0007,
191 B0_ISRC = 0x0008,
192 B0_IMSK = 0x000c,
193 B0_HWE_ISRC = 0x0010,
194 B0_HWE_IMSK = 0x0014,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700195
196 /* Special ISR registers (Yukon-2 only) */
197 B0_Y2_SP_ISRC2 = 0x001c,
198 B0_Y2_SP_ISRC3 = 0x0020,
199 B0_Y2_SP_EISR = 0x0024,
200 B0_Y2_SP_LISR = 0x0028,
201 B0_Y2_SP_ICR = 0x002c,
202
203 B2_MAC_1 = 0x0100,
204 B2_MAC_2 = 0x0108,
205 B2_MAC_3 = 0x0110,
206 B2_CONN_TYP = 0x0118,
207 B2_PMD_TYP = 0x0119,
208 B2_MAC_CFG = 0x011a,
209 B2_CHIP_ID = 0x011b,
210 B2_E_0 = 0x011c,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700211
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700212 B2_Y2_CLK_GATE = 0x011d,
213 B2_Y2_HW_RES = 0x011e,
214 B2_E_3 = 0x011f,
215 B2_Y2_CLK_CTRL = 0x0120,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700216
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700217 B2_TI_INI = 0x0130,
218 B2_TI_VAL = 0x0134,
219 B2_TI_CTRL = 0x0138,
220 B2_TI_TEST = 0x0139,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700221
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700222 B2_TST_CTRL1 = 0x0158,
223 B2_TST_CTRL2 = 0x0159,
224 B2_GP_IO = 0x015c,
shemminger@osdl.org488f84f2005-10-26 12:16:07 -0700225
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700226 B2_I2C_CTRL = 0x0160,
227 B2_I2C_DATA = 0x0164,
228 B2_I2C_IRQ = 0x0168,
229 B2_I2C_SW = 0x016c,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700230
231 B3_RAM_ADDR = 0x0180,
232 B3_RAM_DATA_LO = 0x0184,
233 B3_RAM_DATA_HI = 0x0188,
234
235/* RAM Interface Registers */
236/* Yukon-2: use RAM_BUFFER() to access the RAM buffer */
237/*
238 * The HW-Spec. calls this registers Timeout Value 0..11. But this names are
239 * not usable in SW. Please notice these are NOT real timeouts, these are
240 * the number of qWords transferred continuously.
241 */
242#define RAM_BUFFER(port, reg) (reg | (port <<6))
243
244 B3_RI_WTO_R1 = 0x0190,
245 B3_RI_WTO_XA1 = 0x0191,
246 B3_RI_WTO_XS1 = 0x0192,
247 B3_RI_RTO_R1 = 0x0193,
248 B3_RI_RTO_XA1 = 0x0194,
249 B3_RI_RTO_XS1 = 0x0195,
250 B3_RI_WTO_R2 = 0x0196,
251 B3_RI_WTO_XA2 = 0x0197,
252 B3_RI_WTO_XS2 = 0x0198,
253 B3_RI_RTO_R2 = 0x0199,
254 B3_RI_RTO_XA2 = 0x019a,
255 B3_RI_RTO_XS2 = 0x019b,
256 B3_RI_TO_VAL = 0x019c,
257 B3_RI_CTRL = 0x01a0,
258 B3_RI_TEST = 0x01a2,
259 B3_MA_TOINI_RX1 = 0x01b0,
260 B3_MA_TOINI_RX2 = 0x01b1,
261 B3_MA_TOINI_TX1 = 0x01b2,
262 B3_MA_TOINI_TX2 = 0x01b3,
263 B3_MA_TOVAL_RX1 = 0x01b4,
264 B3_MA_TOVAL_RX2 = 0x01b5,
265 B3_MA_TOVAL_TX1 = 0x01b6,
266 B3_MA_TOVAL_TX2 = 0x01b7,
267 B3_MA_TO_CTRL = 0x01b8,
268 B3_MA_TO_TEST = 0x01ba,
269 B3_MA_RCINI_RX1 = 0x01c0,
270 B3_MA_RCINI_RX2 = 0x01c1,
271 B3_MA_RCINI_TX1 = 0x01c2,
272 B3_MA_RCINI_TX2 = 0x01c3,
273 B3_MA_RCVAL_RX1 = 0x01c4,
274 B3_MA_RCVAL_RX2 = 0x01c5,
275 B3_MA_RCVAL_TX1 = 0x01c6,
276 B3_MA_RCVAL_TX2 = 0x01c7,
277 B3_MA_RC_CTRL = 0x01c8,
278 B3_MA_RC_TEST = 0x01ca,
279 B3_PA_TOINI_RX1 = 0x01d0,
280 B3_PA_TOINI_RX2 = 0x01d4,
281 B3_PA_TOINI_TX1 = 0x01d8,
282 B3_PA_TOINI_TX2 = 0x01dc,
283 B3_PA_TOVAL_RX1 = 0x01e0,
284 B3_PA_TOVAL_RX2 = 0x01e4,
285 B3_PA_TOVAL_TX1 = 0x01e8,
286 B3_PA_TOVAL_TX2 = 0x01ec,
287 B3_PA_CTRL = 0x01f0,
288 B3_PA_TEST = 0x01f2,
289
290 Y2_CFG_SPC = 0x1c00,
291};
292
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700293/* B0_CTST 16 bit Control/Status register */
294enum {
Stephen Hemminger793b8832005-09-14 16:06:14 -0700295 Y2_VMAIN_AVAIL = 1<<17,/* VMAIN available (YUKON-2 only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700296 Y2_VAUX_AVAIL = 1<<16,/* VAUX available (YUKON-2 only) */
Stephen Hemminger86a31a72006-05-17 14:37:05 -0700297 Y2_HW_WOL_ON = 1<<15,/* HW WOL On (Yukon-EC Ultra A1 only) */
298 Y2_HW_WOL_OFF = 1<<14,/* HW WOL On (Yukon-EC Ultra A1 only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700299 Y2_ASF_ENABLE = 1<<13,/* ASF Unit Enable (YUKON-2 only) */
300 Y2_ASF_DISABLE = 1<<12,/* ASF Unit Disable (YUKON-2 only) */
301 Y2_CLK_RUN_ENA = 1<<11,/* CLK_RUN Enable (YUKON-2 only) */
302 Y2_CLK_RUN_DIS = 1<<10,/* CLK_RUN Disable (YUKON-2 only) */
303 Y2_LED_STAT_ON = 1<<9, /* Status LED On (YUKON-2 only) */
304 Y2_LED_STAT_OFF = 1<<8, /* Status LED Off (YUKON-2 only) */
305
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700306 CS_ST_SW_IRQ = 1<<7, /* Set IRQ SW Request */
307 CS_CL_SW_IRQ = 1<<6, /* Clear IRQ SW Request */
308 CS_STOP_DONE = 1<<5, /* Stop Master is finished */
309 CS_STOP_MAST = 1<<4, /* Command Bit to stop the master */
310 CS_MRST_CLR = 1<<3, /* Clear Master reset */
311 CS_MRST_SET = 1<<2, /* Set Master reset */
312 CS_RST_CLR = 1<<1, /* Clear Software reset */
313 CS_RST_SET = 1, /* Set Software reset */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700314};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700315
316/* B0_LED 8 Bit LED register */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700317enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700318/* Bit 7.. 2: reserved */
319 LED_STAT_ON = 1<<1, /* Status LED on */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700320 LED_STAT_OFF = 1, /* Status LED off */
321};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700322
323/* B0_POWER_CTRL 8 Bit Power Control reg (YUKON only) */
Stephen Hemminger793b8832005-09-14 16:06:14 -0700324enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700325 PC_VAUX_ENA = 1<<7, /* Switch VAUX Enable */
326 PC_VAUX_DIS = 1<<6, /* Switch VAUX Disable */
327 PC_VCC_ENA = 1<<5, /* Switch VCC Enable */
328 PC_VCC_DIS = 1<<4, /* Switch VCC Disable */
329 PC_VAUX_ON = 1<<3, /* Switch VAUX On */
330 PC_VAUX_OFF = 1<<2, /* Switch VAUX Off */
331 PC_VCC_ON = 1<<1, /* Switch VCC On */
332 PC_VCC_OFF = 1<<0, /* Switch VCC Off */
333};
334
335/* B2_IRQM_MSK 32 bit IRQ Moderation Mask */
336
337/* B0_Y2_SP_ISRC2 32 bit Special Interrupt Source Reg 2 */
338/* B0_Y2_SP_ISRC3 32 bit Special Interrupt Source Reg 3 */
339/* B0_Y2_SP_EISR 32 bit Enter ISR Reg */
340/* B0_Y2_SP_LISR 32 bit Leave ISR Reg */
341enum {
342 Y2_IS_HW_ERR = 1<<31, /* Interrupt HW Error */
343 Y2_IS_STAT_BMU = 1<<30, /* Status BMU Interrupt */
344 Y2_IS_ASF = 1<<29, /* ASF subsystem Interrupt */
345
346 Y2_IS_POLL_CHK = 1<<27, /* Check IRQ from polling unit */
347 Y2_IS_TWSI_RDY = 1<<26, /* IRQ on end of TWSI Tx */
348 Y2_IS_IRQ_SW = 1<<25, /* SW forced IRQ */
349 Y2_IS_TIMINT = 1<<24, /* IRQ from Timer */
350
351 Y2_IS_IRQ_PHY2 = 1<<12, /* Interrupt from PHY 2 */
352 Y2_IS_IRQ_MAC2 = 1<<11, /* Interrupt from MAC 2 */
353 Y2_IS_CHK_RX2 = 1<<10, /* Descriptor error Rx 2 */
354 Y2_IS_CHK_TXS2 = 1<<9, /* Descriptor error TXS 2 */
355 Y2_IS_CHK_TXA2 = 1<<8, /* Descriptor error TXA 2 */
356
357 Y2_IS_IRQ_PHY1 = 1<<4, /* Interrupt from PHY 1 */
358 Y2_IS_IRQ_MAC1 = 1<<3, /* Interrupt from MAC 1 */
359 Y2_IS_CHK_RX1 = 1<<2, /* Descriptor error Rx 1 */
360 Y2_IS_CHK_TXS1 = 1<<1, /* Descriptor error TXS 1 */
361 Y2_IS_CHK_TXA1 = 1<<0, /* Descriptor error TXA 1 */
362
Stephen Hemmingere07b1aa2006-03-20 15:48:17 -0800363 Y2_IS_BASE = Y2_IS_HW_ERR | Y2_IS_STAT_BMU,
Stephen Hemmingerd2579242006-03-20 15:48:22 -0800364 Y2_IS_PORT_1 = Y2_IS_IRQ_PHY1 | Y2_IS_IRQ_MAC1
365 | Y2_IS_CHK_TXA1 | Y2_IS_CHK_RX1,
366 Y2_IS_PORT_2 = Y2_IS_IRQ_PHY2 | Y2_IS_IRQ_MAC2
367 | Y2_IS_CHK_TXA2 | Y2_IS_CHK_RX2,
Stephen Hemminger40b01722007-04-11 14:47:59 -0700368 Y2_IS_ERROR = Y2_IS_HW_ERR |
369 Y2_IS_IRQ_MAC1 | Y2_IS_CHK_TXA1 | Y2_IS_CHK_RX1 |
370 Y2_IS_IRQ_MAC2 | Y2_IS_CHK_TXA2 | Y2_IS_CHK_RX2,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700371};
372
373/* B2_IRQM_HWE_MSK 32 bit IRQ Moderation HW Error Mask */
374enum {
375 IS_ERR_MSK = 0x00003fff,/* All Error bits */
376
377 IS_IRQ_TIST_OV = 1<<13, /* Time Stamp Timer Overflow (YUKON only) */
378 IS_IRQ_SENSOR = 1<<12, /* IRQ from Sensor (YUKON only) */
379 IS_IRQ_MST_ERR = 1<<11, /* IRQ master error detected */
380 IS_IRQ_STAT = 1<<10, /* IRQ status exception */
381 IS_NO_STAT_M1 = 1<<9, /* No Rx Status from MAC 1 */
382 IS_NO_STAT_M2 = 1<<8, /* No Rx Status from MAC 2 */
383 IS_NO_TIST_M1 = 1<<7, /* No Time Stamp from MAC 1 */
384 IS_NO_TIST_M2 = 1<<6, /* No Time Stamp from MAC 2 */
385 IS_RAM_RD_PAR = 1<<5, /* RAM Read Parity Error */
386 IS_RAM_WR_PAR = 1<<4, /* RAM Write Parity Error */
387 IS_M1_PAR_ERR = 1<<3, /* MAC 1 Parity Error */
388 IS_M2_PAR_ERR = 1<<2, /* MAC 2 Parity Error */
389 IS_R1_PAR_ERR = 1<<1, /* Queue R1 Parity Error */
390 IS_R2_PAR_ERR = 1<<0, /* Queue R2 Parity Error */
391};
392
393/* Hardware error interrupt mask for Yukon 2 */
394enum {
395 Y2_IS_TIST_OV = 1<<29,/* Time Stamp Timer overflow interrupt */
396 Y2_IS_SENSOR = 1<<28, /* Sensor interrupt */
397 Y2_IS_MST_ERR = 1<<27, /* Master error interrupt */
398 Y2_IS_IRQ_STAT = 1<<26, /* Status exception interrupt */
399 Y2_IS_PCI_EXP = 1<<25, /* PCI-Express interrupt */
400 Y2_IS_PCI_NEXP = 1<<24, /* PCI-Express error similar to PCI error */
401 /* Link 2 */
402 Y2_IS_PAR_RD2 = 1<<13, /* Read RAM parity error interrupt */
403 Y2_IS_PAR_WR2 = 1<<12, /* Write RAM parity error interrupt */
404 Y2_IS_PAR_MAC2 = 1<<11, /* MAC hardware fault interrupt */
405 Y2_IS_PAR_RX2 = 1<<10, /* Parity Error Rx Queue 2 */
406 Y2_IS_TCP_TXS2 = 1<<9, /* TCP length mismatch sync Tx queue IRQ */
407 Y2_IS_TCP_TXA2 = 1<<8, /* TCP length mismatch async Tx queue IRQ */
408 /* Link 1 */
409 Y2_IS_PAR_RD1 = 1<<5, /* Read RAM parity error interrupt */
410 Y2_IS_PAR_WR1 = 1<<4, /* Write RAM parity error interrupt */
411 Y2_IS_PAR_MAC1 = 1<<3, /* MAC hardware fault interrupt */
412 Y2_IS_PAR_RX1 = 1<<2, /* Parity Error Rx Queue 1 */
413 Y2_IS_TCP_TXS1 = 1<<1, /* TCP length mismatch sync Tx queue IRQ */
414 Y2_IS_TCP_TXA1 = 1<<0, /* TCP length mismatch async Tx queue IRQ */
415
416 Y2_HWE_L1_MASK = Y2_IS_PAR_RD1 | Y2_IS_PAR_WR1 | Y2_IS_PAR_MAC1 |
417 Y2_IS_PAR_RX1 | Y2_IS_TCP_TXS1| Y2_IS_TCP_TXA1,
418 Y2_HWE_L2_MASK = Y2_IS_PAR_RD2 | Y2_IS_PAR_WR2 | Y2_IS_PAR_MAC2 |
419 Y2_IS_PAR_RX2 | Y2_IS_TCP_TXS2| Y2_IS_TCP_TXA2,
420
Stephen Hemminger793b8832005-09-14 16:06:14 -0700421 Y2_HWE_ALL_MASK = Y2_IS_TIST_OV | Y2_IS_MST_ERR | Y2_IS_IRQ_STAT |
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800422 Y2_IS_PCI_EXP |
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700423 Y2_HWE_L1_MASK | Y2_HWE_L2_MASK,
424};
425
426/* B28_DPT_CTRL 8 bit Descriptor Poll Timer Ctrl Reg */
427enum {
428 DPT_START = 1<<1,
429 DPT_STOP = 1<<0,
430};
431
432/* B2_TST_CTRL1 8 bit Test Control Register 1 */
433enum {
434 TST_FRC_DPERR_MR = 1<<7, /* force DATAPERR on MST RD */
435 TST_FRC_DPERR_MW = 1<<6, /* force DATAPERR on MST WR */
436 TST_FRC_DPERR_TR = 1<<5, /* force DATAPERR on TRG RD */
437 TST_FRC_DPERR_TW = 1<<4, /* force DATAPERR on TRG WR */
438 TST_FRC_APERR_M = 1<<3, /* force ADDRPERR on MST */
439 TST_FRC_APERR_T = 1<<2, /* force ADDRPERR on TRG */
440 TST_CFG_WRITE_ON = 1<<1, /* Enable Config Reg WR */
441 TST_CFG_WRITE_OFF= 1<<0, /* Disable Config Reg WR */
442};
443
444/* B2_MAC_CFG 8 bit MAC Configuration / Chip Revision */
445enum {
446 CFG_CHIP_R_MSK = 0xf<<4, /* Bit 7.. 4: Chip Revision */
447 /* Bit 3.. 2: reserved */
448 CFG_DIS_M2_CLK = 1<<1, /* Disable Clock for 2nd MAC */
449 CFG_SNG_MAC = 1<<0, /* MAC Config: 0=2 MACs / 1=1 MAC*/
450};
451
452/* B2_CHIP_ID 8 bit Chip Identification Number */
453enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700454 CHIP_ID_YUKON_XL = 0xb3, /* Chip ID for YUKON-2 XL */
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800455 CHIP_ID_YUKON_EC_U = 0xb4, /* Chip ID for YUKON-2 EC Ultra */
Stephen Hemminger93745492007-02-06 10:45:43 -0800456 CHIP_ID_YUKON_EX = 0xb5, /* Chip ID for YUKON-2 Extreme */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700457 CHIP_ID_YUKON_EC = 0xb6, /* Chip ID for YUKON-2 EC */
458 CHIP_ID_YUKON_FE = 0xb7, /* Chip ID for YUKON-2 FE */
459
460 CHIP_REV_YU_EC_A1 = 0, /* Chip Rev. for Yukon-EC A1/A0 */
461 CHIP_REV_YU_EC_A2 = 1, /* Chip Rev. for Yukon-EC A2 */
462 CHIP_REV_YU_EC_A3 = 2, /* Chip Rev. for Yukon-EC A3 */
Stephen Hemmingered6d32c2006-05-08 15:11:33 -0700463
Stephen Hemminger8df9a872006-12-01 14:29:35 -0800464 CHIP_REV_YU_EC_U_A0 = 1,
465 CHIP_REV_YU_EC_U_A1 = 2,
466 CHIP_REV_YU_EC_U_B0 = 3,
467
468 CHIP_REV_YU_FE_A1 = 1,
469 CHIP_REV_YU_FE_A2 = 2,
470
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700471};
472
473/* B2_Y2_CLK_GATE 8 bit Clock Gating (Yukon-2 only) */
474enum {
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700475 Y2_STATUS_LNK2_INAC = 1<<7, /* Status Link 2 inactive (0 = active) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700476 Y2_CLK_GAT_LNK2_DIS = 1<<6, /* Disable clock gating Link 2 */
477 Y2_COR_CLK_LNK2_DIS = 1<<5, /* Disable Core clock Link 2 */
478 Y2_PCI_CLK_LNK2_DIS = 1<<4, /* Disable PCI clock Link 2 */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700479 Y2_STATUS_LNK1_INAC = 1<<3, /* Status Link 1 inactive (0 = active) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700480 Y2_CLK_GAT_LNK1_DIS = 1<<2, /* Disable clock gating Link 1 */
481 Y2_COR_CLK_LNK1_DIS = 1<<1, /* Disable Core clock Link 1 */
482 Y2_PCI_CLK_LNK1_DIS = 1<<0, /* Disable PCI clock Link 1 */
483};
484
485/* B2_Y2_HW_RES 8 bit HW Resources (Yukon-2 only) */
486enum {
487 CFG_LED_MODE_MSK = 7<<2, /* Bit 4.. 2: LED Mode Mask */
488 CFG_LINK_2_AVAIL = 1<<1, /* Link 2 available */
489 CFG_LINK_1_AVAIL = 1<<0, /* Link 1 available */
490};
491#define CFG_LED_MODE(x) (((x) & CFG_LED_MODE_MSK) >> 2)
492#define CFG_DUAL_MAC_MSK (CFG_LINK_2_AVAIL | CFG_LINK_1_AVAIL)
493
494
495/* B2_Y2_CLK_CTRL 32 bit Clock Frequency Control Register (Yukon-2/EC) */
496enum {
497 Y2_CLK_DIV_VAL_MSK = 0xff<<16,/* Bit 23..16: Clock Divisor Value */
498#define Y2_CLK_DIV_VAL(x) (((x)<<16) & Y2_CLK_DIV_VAL_MSK)
499 Y2_CLK_DIV_VAL2_MSK = 7<<21, /* Bit 23..21: Clock Divisor Value */
500 Y2_CLK_SELECT2_MSK = 0x1f<<16,/* Bit 20..16: Clock Select */
501#define Y2_CLK_DIV_VAL_2(x) (((x)<<21) & Y2_CLK_DIV_VAL2_MSK)
502#define Y2_CLK_SEL_VAL_2(x) (((x)<<16) & Y2_CLK_SELECT2_MSK)
503 Y2_CLK_DIV_ENA = 1<<1, /* Enable Core Clock Division */
504 Y2_CLK_DIV_DIS = 1<<0, /* Disable Core Clock Division */
505};
506
507/* B2_TI_CTRL 8 bit Timer control */
508/* B2_IRQM_CTRL 8 bit IRQ Moderation Timer Control */
509enum {
510 TIM_START = 1<<2, /* Start Timer */
511 TIM_STOP = 1<<1, /* Stop Timer */
512 TIM_CLR_IRQ = 1<<0, /* Clear Timer IRQ (!IRQM) */
513};
514
515/* B2_TI_TEST 8 Bit Timer Test */
516/* B2_IRQM_TEST 8 bit IRQ Moderation Timer Test */
517/* B28_DPT_TST 8 bit Descriptor Poll Timer Test Reg */
518enum {
519 TIM_T_ON = 1<<2, /* Test mode on */
520 TIM_T_OFF = 1<<1, /* Test mode off */
521 TIM_T_STEP = 1<<0, /* Test step */
522};
523
524/* B3_RAM_ADDR 32 bit RAM Address, to read or write */
525 /* Bit 31..19: reserved */
526#define RAM_ADR_RAN 0x0007ffffL /* Bit 18.. 0: RAM Address Range */
527/* RAM Interface Registers */
528
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700529/* B3_RI_CTRL 16 bit RAM Interface Control Register */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700530enum {
531 RI_CLR_RD_PERR = 1<<9, /* Clear IRQ RAM Read Parity Err */
532 RI_CLR_WR_PERR = 1<<8, /* Clear IRQ RAM Write Parity Err*/
533
534 RI_RST_CLR = 1<<1, /* Clear RAM Interface Reset */
535 RI_RST_SET = 1<<0, /* Set RAM Interface Reset */
536};
537
538#define SK_RI_TO_53 36 /* RAM interface timeout */
539
540
541/* Port related registers FIFO, and Arbiter */
542#define SK_REG(port,reg) (((port)<<7)+(reg))
543
544/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
545/* TXA_ITI_INI 32 bit Tx Arb Interval Timer Init Val */
546/* TXA_ITI_VAL 32 bit Tx Arb Interval Timer Value */
547/* TXA_LIM_INI 32 bit Tx Arb Limit Counter Init Val */
548/* TXA_LIM_VAL 32 bit Tx Arb Limit Counter Value */
549
550#define TXA_MAX_VAL 0x00ffffffUL /* Bit 23.. 0: Max TXA Timer/Cnt Val */
551
552/* TXA_CTRL 8 bit Tx Arbiter Control Register */
553enum {
554 TXA_ENA_FSYNC = 1<<7, /* Enable force of sync Tx queue */
555 TXA_DIS_FSYNC = 1<<6, /* Disable force of sync Tx queue */
556 TXA_ENA_ALLOC = 1<<5, /* Enable alloc of free bandwidth */
557 TXA_DIS_ALLOC = 1<<4, /* Disable alloc of free bandwidth */
558 TXA_START_RC = 1<<3, /* Start sync Rate Control */
559 TXA_STOP_RC = 1<<2, /* Stop sync Rate Control */
560 TXA_ENA_ARB = 1<<1, /* Enable Tx Arbiter */
561 TXA_DIS_ARB = 1<<0, /* Disable Tx Arbiter */
562};
563
564/*
565 * Bank 4 - 5
566 */
567/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
568enum {
569 TXA_ITI_INI = 0x0200,/* 32 bit Tx Arb Interval Timer Init Val*/
570 TXA_ITI_VAL = 0x0204,/* 32 bit Tx Arb Interval Timer Value */
571 TXA_LIM_INI = 0x0208,/* 32 bit Tx Arb Limit Counter Init Val */
572 TXA_LIM_VAL = 0x020c,/* 32 bit Tx Arb Limit Counter Value */
573 TXA_CTRL = 0x0210,/* 8 bit Tx Arbiter Control Register */
574 TXA_TEST = 0x0211,/* 8 bit Tx Arbiter Test Register */
575 TXA_STAT = 0x0212,/* 8 bit Tx Arbiter Status Register */
576};
577
578
579enum {
580 B6_EXT_REG = 0x0300,/* External registers (GENESIS only) */
581 B7_CFG_SPC = 0x0380,/* copy of the Configuration register */
582 B8_RQ1_REGS = 0x0400,/* Receive Queue 1 */
583 B8_RQ2_REGS = 0x0480,/* Receive Queue 2 */
584 B8_TS1_REGS = 0x0600,/* Transmit sync queue 1 */
585 B8_TA1_REGS = 0x0680,/* Transmit async queue 1 */
586 B8_TS2_REGS = 0x0700,/* Transmit sync queue 2 */
587 B8_TA2_REGS = 0x0780,/* Transmit sync queue 2 */
588 B16_RAM_REGS = 0x0800,/* RAM Buffer Registers */
589};
590
591/* Queue Register Offsets, use Q_ADDR() to access */
592enum {
593 B8_Q_REGS = 0x0400, /* base of Queue registers */
594 Q_D = 0x00, /* 8*32 bit Current Descriptor */
Stephen Hemmingerf449c7c2007-06-04 17:23:23 -0700595 Q_VLAN = 0x20, /* 16 bit Current VLAN Tag */
596 Q_DONE = 0x24, /* 16 bit Done Index */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700597 Q_AC_L = 0x28, /* 32 bit Current Address Counter Low dWord */
598 Q_AC_H = 0x2c, /* 32 bit Current Address Counter High dWord */
599 Q_BC = 0x30, /* 32 bit Current Byte Counter */
600 Q_CSR = 0x34, /* 32 bit BMU Control/Status Register */
Stephen Hemmingerf449c7c2007-06-04 17:23:23 -0700601 Q_TEST = 0x38, /* 32 bit Test/Control Register */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700602
603/* Yukon-2 */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700604 Q_WM = 0x40, /* 16 bit FIFO Watermark */
605 Q_AL = 0x42, /* 8 bit FIFO Alignment */
606 Q_RSP = 0x44, /* 16 bit FIFO Read Shadow Pointer */
607 Q_RSL = 0x46, /* 8 bit FIFO Read Shadow Level */
608 Q_RP = 0x48, /* 8 bit FIFO Read Pointer */
609 Q_RL = 0x4a, /* 8 bit FIFO Read Level */
610 Q_WP = 0x4c, /* 8 bit FIFO Write Pointer */
611 Q_WSP = 0x4d, /* 8 bit FIFO Write Shadow Pointer */
612 Q_WL = 0x4e, /* 8 bit FIFO Write Level */
613 Q_WSL = 0x4f, /* 8 bit FIFO Write Shadow Level */
614};
615#define Q_ADDR(reg, offs) (B8_Q_REGS + (reg) + (offs))
616
Stephen Hemmingerf449c7c2007-06-04 17:23:23 -0700617/* Q_TEST 32 bit Test Register */
Stephen Hemminger977bdf02006-02-22 11:44:58 -0800618enum {
Stephen Hemmingerf449c7c2007-06-04 17:23:23 -0700619 /* Transmit */
620 F_TX_CHK_AUTO_OFF = 1<<31, /* Tx checksum auto calc off (Yukon EX) */
621 F_TX_CHK_AUTO_ON = 1<<30, /* Tx checksum auto calc off (Yukon EX) */
622
623 /* Receive */
Stephen Hemminger977bdf02006-02-22 11:44:58 -0800624 F_M_RX_RAM_DIS = 1<<24, /* MAC Rx RAM Read Port disable */
Stephen Hemmingerf449c7c2007-06-04 17:23:23 -0700625
626 /* Hardware testbits not used */
Stephen Hemminger977bdf02006-02-22 11:44:58 -0800627};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700628
629/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
630enum {
631 Y2_B8_PREF_REGS = 0x0450,
632
633 PREF_UNIT_CTRL = 0x00, /* 32 bit Control register */
634 PREF_UNIT_LAST_IDX = 0x04, /* 16 bit Last Index */
635 PREF_UNIT_ADDR_LO = 0x08, /* 32 bit List start addr, low part */
636 PREF_UNIT_ADDR_HI = 0x0c, /* 32 bit List start addr, high part*/
637 PREF_UNIT_GET_IDX = 0x10, /* 16 bit Get Index */
638 PREF_UNIT_PUT_IDX = 0x14, /* 16 bit Put Index */
639 PREF_UNIT_FIFO_WP = 0x20, /* 8 bit FIFO write pointer */
640 PREF_UNIT_FIFO_RP = 0x24, /* 8 bit FIFO read pointer */
641 PREF_UNIT_FIFO_WM = 0x28, /* 8 bit FIFO watermark */
642 PREF_UNIT_FIFO_LEV = 0x2c, /* 8 bit FIFO level */
643
644 PREF_UNIT_MASK_IDX = 0x0fff,
645};
646#define Y2_QADDR(q,reg) (Y2_B8_PREF_REGS + (q) + (reg))
647
648/* RAM Buffer Register Offsets */
649enum {
650
651 RB_START = 0x00,/* 32 bit RAM Buffer Start Address */
652 RB_END = 0x04,/* 32 bit RAM Buffer End Address */
653 RB_WP = 0x08,/* 32 bit RAM Buffer Write Pointer */
654 RB_RP = 0x0c,/* 32 bit RAM Buffer Read Pointer */
655 RB_RX_UTPP = 0x10,/* 32 bit Rx Upper Threshold, Pause Packet */
656 RB_RX_LTPP = 0x14,/* 32 bit Rx Lower Threshold, Pause Packet */
657 RB_RX_UTHP = 0x18,/* 32 bit Rx Upper Threshold, High Prio */
658 RB_RX_LTHP = 0x1c,/* 32 bit Rx Lower Threshold, High Prio */
659 /* 0x10 - 0x1f: reserved at Tx RAM Buffer Registers */
660 RB_PC = 0x20,/* 32 bit RAM Buffer Packet Counter */
661 RB_LEV = 0x24,/* 32 bit RAM Buffer Level Register */
662 RB_CTRL = 0x28,/* 32 bit RAM Buffer Control Register */
663 RB_TST1 = 0x29,/* 8 bit RAM Buffer Test Register 1 */
664 RB_TST2 = 0x2a,/* 8 bit RAM Buffer Test Register 2 */
665};
666
667/* Receive and Transmit Queues */
668enum {
669 Q_R1 = 0x0000, /* Receive Queue 1 */
670 Q_R2 = 0x0080, /* Receive Queue 2 */
671 Q_XS1 = 0x0200, /* Synchronous Transmit Queue 1 */
672 Q_XA1 = 0x0280, /* Asynchronous Transmit Queue 1 */
673 Q_XS2 = 0x0300, /* Synchronous Transmit Queue 2 */
674 Q_XA2 = 0x0380, /* Asynchronous Transmit Queue 2 */
675};
676
677/* Different PHY Types */
678enum {
679 PHY_ADDR_MARV = 0,
680};
681
Stephen Hemminger0efdf262006-12-05 12:03:41 -0800682#define RB_ADDR(offs, queue) ((u16) B16_RAM_REGS + (queue) + (offs))
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700683
684
685enum {
686 LNK_SYNC_INI = 0x0c30,/* 32 bit Link Sync Cnt Init Value */
687 LNK_SYNC_VAL = 0x0c34,/* 32 bit Link Sync Cnt Current Value */
688 LNK_SYNC_CTRL = 0x0c38,/* 8 bit Link Sync Cnt Control Register */
689 LNK_SYNC_TST = 0x0c39,/* 8 bit Link Sync Cnt Test Register */
690
691 LNK_LED_REG = 0x0c3c,/* 8 bit Link LED Register */
692
693/* Receive GMAC FIFO (YUKON and Yukon-2) */
694
695 RX_GMF_EA = 0x0c40,/* 32 bit Rx GMAC FIFO End Address */
696 RX_GMF_AF_THR = 0x0c44,/* 32 bit Rx GMAC FIFO Almost Full Thresh. */
697 RX_GMF_CTRL_T = 0x0c48,/* 32 bit Rx GMAC FIFO Control/Test */
698 RX_GMF_FL_MSK = 0x0c4c,/* 32 bit Rx GMAC FIFO Flush Mask */
699 RX_GMF_FL_THR = 0x0c50,/* 32 bit Rx GMAC FIFO Flush Threshold */
700 RX_GMF_TR_THR = 0x0c54,/* 32 bit Rx Truncation Threshold (Yukon-2) */
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -0800701 RX_GMF_UP_THR = 0x0c58,/* 8 bit Rx Upper Pause Thr (Yukon-EC_U) */
702 RX_GMF_LP_THR = 0x0c5a,/* 8 bit Rx Lower Pause Thr (Yukon-EC_U) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700703 RX_GMF_VLAN = 0x0c5c,/* 32 bit Rx VLAN Type Register (Yukon-2) */
704 RX_GMF_WP = 0x0c60,/* 32 bit Rx GMAC FIFO Write Pointer */
705
706 RX_GMF_WLEV = 0x0c68,/* 32 bit Rx GMAC FIFO Write Level */
707
708 RX_GMF_RP = 0x0c70,/* 32 bit Rx GMAC FIFO Read Pointer */
709
710 RX_GMF_RLEV = 0x0c78,/* 32 bit Rx GMAC FIFO Read Level */
711};
712
713
714/* Q_BC 32 bit Current Byte Counter */
715
716/* BMU Control Status Registers */
717/* B0_R1_CSR 32 bit BMU Ctrl/Stat Rx Queue 1 */
718/* B0_R2_CSR 32 bit BMU Ctrl/Stat Rx Queue 2 */
719/* B0_XA1_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 1 */
720/* B0_XS1_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 1 */
721/* B0_XA2_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 2 */
722/* B0_XS2_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 2 */
723/* Q_CSR 32 bit BMU Control/Status Register */
724
725/* Rx BMU Control / Status Registers (Yukon-2) */
726enum {
727 BMU_IDLE = 1<<31, /* BMU Idle State */
728 BMU_RX_TCP_PKT = 1<<30, /* Rx TCP Packet (when RSS Hash enabled) */
729 BMU_RX_IP_PKT = 1<<29, /* Rx IP Packet (when RSS Hash enabled) */
730
731 BMU_ENA_RX_RSS_HASH = 1<<15, /* Enable Rx RSS Hash */
732 BMU_DIS_RX_RSS_HASH = 1<<14, /* Disable Rx RSS Hash */
733 BMU_ENA_RX_CHKSUM = 1<<13, /* Enable Rx TCP/IP Checksum Check */
734 BMU_DIS_RX_CHKSUM = 1<<12, /* Disable Rx TCP/IP Checksum Check */
735 BMU_CLR_IRQ_PAR = 1<<11, /* Clear IRQ on Parity errors (Rx) */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700736 BMU_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment. error (Tx) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700737 BMU_CLR_IRQ_CHK = 1<<10, /* Clear IRQ Check */
738 BMU_STOP = 1<<9, /* Stop Rx/Tx Queue */
739 BMU_START = 1<<8, /* Start Rx/Tx Queue */
740 BMU_FIFO_OP_ON = 1<<7, /* FIFO Operational On */
741 BMU_FIFO_OP_OFF = 1<<6, /* FIFO Operational Off */
742 BMU_FIFO_ENA = 1<<5, /* Enable FIFO */
743 BMU_FIFO_RST = 1<<4, /* Reset FIFO */
744 BMU_OP_ON = 1<<3, /* BMU Operational On */
745 BMU_OP_OFF = 1<<2, /* BMU Operational Off */
746 BMU_RST_CLR = 1<<1, /* Clear BMU Reset (Enable) */
747 BMU_RST_SET = 1<<0, /* Set BMU Reset */
748
749 BMU_CLR_RESET = BMU_FIFO_RST | BMU_OP_OFF | BMU_RST_CLR,
750 BMU_OPER_INIT = BMU_CLR_IRQ_PAR | BMU_CLR_IRQ_CHK | BMU_START |
751 BMU_FIFO_ENA | BMU_OP_ON,
shemminger@osdl.orgaf4ed7e2005-11-30 11:45:21 -0800752
753 BMU_WM_DEFAULT = 0x600,
Stephen Hemmingerc3905bc2006-12-04 17:08:19 -0800754 BMU_WM_PEX = 0x80,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700755};
756
757/* Tx BMU Control / Status Registers (Yukon-2) */
758 /* Bit 31: same as for Rx */
759enum {
760 BMU_TX_IPIDINCR_ON = 1<<13, /* Enable IP ID Increment */
761 BMU_TX_IPIDINCR_OFF = 1<<12, /* Disable IP ID Increment */
shemminger@osdl.orgd571b692005-10-26 12:16:09 -0700762 BMU_TX_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment length mismatch */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700763};
764
765/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
766/* PREF_UNIT_CTRL 32 bit Prefetch Control register */
767enum {
768 PREF_UNIT_OP_ON = 1<<3, /* prefetch unit operational */
769 PREF_UNIT_OP_OFF = 1<<2, /* prefetch unit not operational */
770 PREF_UNIT_RST_CLR = 1<<1, /* Clear Prefetch Unit Reset */
771 PREF_UNIT_RST_SET = 1<<0, /* Set Prefetch Unit Reset */
772};
773
774/* RAM Buffer Register Offsets, use RB_ADDR(Queue, Offs) to access */
775/* RB_START 32 bit RAM Buffer Start Address */
776/* RB_END 32 bit RAM Buffer End Address */
777/* RB_WP 32 bit RAM Buffer Write Pointer */
778/* RB_RP 32 bit RAM Buffer Read Pointer */
779/* RB_RX_UTPP 32 bit Rx Upper Threshold, Pause Pack */
780/* RB_RX_LTPP 32 bit Rx Lower Threshold, Pause Pack */
781/* RB_RX_UTHP 32 bit Rx Upper Threshold, High Prio */
782/* RB_RX_LTHP 32 bit Rx Lower Threshold, High Prio */
783/* RB_PC 32 bit RAM Buffer Packet Counter */
784/* RB_LEV 32 bit RAM Buffer Level Register */
785
786#define RB_MSK 0x0007ffff /* Bit 18.. 0: RAM Buffer Pointer Bits */
787/* RB_TST2 8 bit RAM Buffer Test Register 2 */
788/* RB_TST1 8 bit RAM Buffer Test Register 1 */
789
790/* RB_CTRL 8 bit RAM Buffer Control Register */
791enum {
792 RB_ENA_STFWD = 1<<5, /* Enable Store & Forward */
793 RB_DIS_STFWD = 1<<4, /* Disable Store & Forward */
794 RB_ENA_OP_MD = 1<<3, /* Enable Operation Mode */
795 RB_DIS_OP_MD = 1<<2, /* Disable Operation Mode */
796 RB_RST_CLR = 1<<1, /* Clear RAM Buf STM Reset */
797 RB_RST_SET = 1<<0, /* Set RAM Buf STM Reset */
798};
799
800
801/* Transmit GMAC FIFO (YUKON only) */
802enum {
803 TX_GMF_EA = 0x0d40,/* 32 bit Tx GMAC FIFO End Address */
804 TX_GMF_AE_THR = 0x0d44,/* 32 bit Tx GMAC FIFO Almost Empty Thresh.*/
805 TX_GMF_CTRL_T = 0x0d48,/* 32 bit Tx GMAC FIFO Control/Test */
806
807 TX_GMF_WP = 0x0d60,/* 32 bit Tx GMAC FIFO Write Pointer */
808 TX_GMF_WSP = 0x0d64,/* 32 bit Tx GMAC FIFO Write Shadow Ptr. */
809 TX_GMF_WLEV = 0x0d68,/* 32 bit Tx GMAC FIFO Write Level */
810
811 TX_GMF_RP = 0x0d70,/* 32 bit Tx GMAC FIFO Read Pointer */
812 TX_GMF_RSTP = 0x0d74,/* 32 bit Tx GMAC FIFO Restart Pointer */
813 TX_GMF_RLEV = 0x0d78,/* 32 bit Tx GMAC FIFO Read Level */
Stephen Hemmingerb628ed92007-04-11 14:48:01 -0700814
815 /* Threshold values for Yukon-EC Ultra and Extreme */
816 ECU_AE_THR = 0x0070, /* Almost Empty Threshold */
817 ECU_TXFF_LEV = 0x01a0, /* Tx BMU FIFO Level */
818 ECU_JUMBO_WM = 0x0080, /* Jumbo Mode Watermark */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700819};
820
821/* Descriptor Poll Timer Registers */
822enum {
823 B28_DPT_INI = 0x0e00,/* 24 bit Descriptor Poll Timer Init Val */
824 B28_DPT_VAL = 0x0e04,/* 24 bit Descriptor Poll Timer Curr Val */
825 B28_DPT_CTRL = 0x0e08,/* 8 bit Descriptor Poll Timer Ctrl Reg */
826
827 B28_DPT_TST = 0x0e0a,/* 8 bit Descriptor Poll Timer Test Reg */
828};
829
830/* Time Stamp Timer Registers (YUKON only) */
831enum {
832 GMAC_TI_ST_VAL = 0x0e14,/* 32 bit Time Stamp Timer Curr Val */
833 GMAC_TI_ST_CTRL = 0x0e18,/* 8 bit Time Stamp Timer Ctrl Reg */
834 GMAC_TI_ST_TST = 0x0e1a,/* 8 bit Time Stamp Timer Test Reg */
835};
836
837/* Polling Unit Registers (Yukon-2 only) */
838enum {
839 POLL_CTRL = 0x0e20, /* 32 bit Polling Unit Control Reg */
840 POLL_LAST_IDX = 0x0e24,/* 16 bit Polling Unit List Last Index */
841
842 POLL_LIST_ADDR_LO= 0x0e28,/* 32 bit Poll. List Start Addr (low) */
843 POLL_LIST_ADDR_HI= 0x0e2c,/* 32 bit Poll. List Start Addr (high) */
844};
845
Stephen Hemminger93745492007-02-06 10:45:43 -0800846enum {
847 SMB_CFG = 0x0e40, /* 32 bit SMBus Config Register */
848 SMB_CSR = 0x0e44, /* 32 bit SMBus Control/Status Register */
849};
850
851enum {
852 CPU_WDOG = 0x0e48, /* 32 bit Watchdog Register */
853 CPU_CNTR = 0x0e4C, /* 32 bit Counter Register */
854 CPU_TIM = 0x0e50,/* 32 bit Timer Compare Register */
855 CPU_AHB_ADDR = 0x0e54, /* 32 bit CPU AHB Debug Register */
856 CPU_AHB_WDATA = 0x0e58, /* 32 bit CPU AHB Debug Register */
857 CPU_AHB_RDATA = 0x0e5C, /* 32 bit CPU AHB Debug Register */
858 HCU_MAP_BASE = 0x0e60, /* 32 bit Reset Mapping Base */
859 CPU_AHB_CTRL = 0x0e64, /* 32 bit CPU AHB Debug Register */
860 HCU_CCSR = 0x0e68, /* 32 bit CPU Control and Status Register */
861 HCU_HCSR = 0x0e6C, /* 32 bit Host Control and Status Register */
862};
863
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700864/* ASF Subsystem Registers (Yukon-2 only) */
865enum {
866 B28_Y2_SMB_CONFIG = 0x0e40,/* 32 bit ASF SMBus Config Register */
867 B28_Y2_SMB_CSD_REG = 0x0e44,/* 32 bit ASF SMB Control/Status/Data */
868 B28_Y2_ASF_IRQ_V_BASE=0x0e60,/* 32 bit ASF IRQ Vector Base */
869
870 B28_Y2_ASF_STAT_CMD= 0x0e68,/* 32 bit ASF Status and Command Reg */
871 B28_Y2_ASF_HOST_COM= 0x0e6c,/* 32 bit ASF Host Communication Reg */
872 B28_Y2_DATA_REG_1 = 0x0e70,/* 32 bit ASF/Host Data Register 1 */
873 B28_Y2_DATA_REG_2 = 0x0e74,/* 32 bit ASF/Host Data Register 2 */
874 B28_Y2_DATA_REG_3 = 0x0e78,/* 32 bit ASF/Host Data Register 3 */
875 B28_Y2_DATA_REG_4 = 0x0e7c,/* 32 bit ASF/Host Data Register 4 */
876};
877
878/* Status BMU Registers (Yukon-2 only)*/
879enum {
880 STAT_CTRL = 0x0e80,/* 32 bit Status BMU Control Reg */
881 STAT_LAST_IDX = 0x0e84,/* 16 bit Status BMU Last Index */
882
883 STAT_LIST_ADDR_LO= 0x0e88,/* 32 bit Status List Start Addr (low) */
884 STAT_LIST_ADDR_HI= 0x0e8c,/* 32 bit Status List Start Addr (high) */
885 STAT_TXA1_RIDX = 0x0e90,/* 16 bit Status TxA1 Report Index Reg */
886 STAT_TXS1_RIDX = 0x0e92,/* 16 bit Status TxS1 Report Index Reg */
887 STAT_TXA2_RIDX = 0x0e94,/* 16 bit Status TxA2 Report Index Reg */
888 STAT_TXS2_RIDX = 0x0e96,/* 16 bit Status TxS2 Report Index Reg */
889 STAT_TX_IDX_TH = 0x0e98,/* 16 bit Status Tx Index Threshold Reg */
890 STAT_PUT_IDX = 0x0e9c,/* 16 bit Status Put Index Reg */
891
892/* FIFO Control/Status Registers (Yukon-2 only)*/
893 STAT_FIFO_WP = 0x0ea0,/* 8 bit Status FIFO Write Pointer Reg */
894 STAT_FIFO_RP = 0x0ea4,/* 8 bit Status FIFO Read Pointer Reg */
895 STAT_FIFO_RSP = 0x0ea6,/* 8 bit Status FIFO Read Shadow Ptr */
896 STAT_FIFO_LEVEL = 0x0ea8,/* 8 bit Status FIFO Level Reg */
897 STAT_FIFO_SHLVL = 0x0eaa,/* 8 bit Status FIFO Shadow Level Reg */
898 STAT_FIFO_WM = 0x0eac,/* 8 bit Status FIFO Watermark Reg */
899 STAT_FIFO_ISR_WM= 0x0ead,/* 8 bit Status FIFO ISR Watermark Reg */
900
901/* Level and ISR Timer Registers (Yukon-2 only)*/
902 STAT_LEV_TIMER_INI= 0x0eb0,/* 32 bit Level Timer Init. Value Reg */
903 STAT_LEV_TIMER_CNT= 0x0eb4,/* 32 bit Level Timer Counter Reg */
904 STAT_LEV_TIMER_CTRL= 0x0eb8,/* 8 bit Level Timer Control Reg */
905 STAT_LEV_TIMER_TEST= 0x0eb9,/* 8 bit Level Timer Test Reg */
906 STAT_TX_TIMER_INI = 0x0ec0,/* 32 bit Tx Timer Init. Value Reg */
907 STAT_TX_TIMER_CNT = 0x0ec4,/* 32 bit Tx Timer Counter Reg */
908 STAT_TX_TIMER_CTRL = 0x0ec8,/* 8 bit Tx Timer Control Reg */
909 STAT_TX_TIMER_TEST = 0x0ec9,/* 8 bit Tx Timer Test Reg */
910 STAT_ISR_TIMER_INI = 0x0ed0,/* 32 bit ISR Timer Init. Value Reg */
911 STAT_ISR_TIMER_CNT = 0x0ed4,/* 32 bit ISR Timer Counter Reg */
912 STAT_ISR_TIMER_CTRL= 0x0ed8,/* 8 bit ISR Timer Control Reg */
913 STAT_ISR_TIMER_TEST= 0x0ed9,/* 8 bit ISR Timer Test Reg */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700914};
915
916enum {
917 LINKLED_OFF = 0x01,
918 LINKLED_ON = 0x02,
919 LINKLED_LINKSYNC_OFF = 0x04,
920 LINKLED_LINKSYNC_ON = 0x08,
921 LINKLED_BLINK_OFF = 0x10,
922 LINKLED_BLINK_ON = 0x20,
923};
924
925/* GMAC and GPHY Control Registers (YUKON only) */
926enum {
927 GMAC_CTRL = 0x0f00,/* 32 bit GMAC Control Reg */
928 GPHY_CTRL = 0x0f04,/* 32 bit GPHY Control Reg */
929 GMAC_IRQ_SRC = 0x0f08,/* 8 bit GMAC Interrupt Source Reg */
930 GMAC_IRQ_MSK = 0x0f0c,/* 8 bit GMAC Interrupt Mask Reg */
931 GMAC_LINK_CTRL = 0x0f10,/* 16 bit Link Control Reg */
932
933/* Wake-up Frame Pattern Match Control Registers (YUKON only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700934 WOL_CTRL_STAT = 0x0f20,/* 16 bit WOL Control/Status Reg */
935 WOL_MATCH_CTL = 0x0f22,/* 8 bit WOL Match Control Reg */
936 WOL_MATCH_RES = 0x0f23,/* 8 bit WOL Match Result Reg */
937 WOL_MAC_ADDR = 0x0f24,/* 32 bit WOL MAC Address */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700938 WOL_PATT_RPTR = 0x0f2c,/* 8 bit WOL Pattern Read Pointer */
939
940/* WOL Pattern Length Registers (YUKON only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700941 WOL_PATT_LEN_LO = 0x0f30,/* 32 bit WOL Pattern Length 3..0 */
942 WOL_PATT_LEN_HI = 0x0f34,/* 24 bit WOL Pattern Length 6..4 */
943
944/* WOL Pattern Counter Registers (YUKON only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700945 WOL_PATT_CNT_0 = 0x0f38,/* 32 bit WOL Pattern Counter 3..0 */
946 WOL_PATT_CNT_4 = 0x0f3c,/* 24 bit WOL Pattern Counter 6..4 */
947};
Stephen Hemmingere3173832007-02-06 10:45:39 -0800948#define WOL_REGS(port, x) (x + (port)*0x80)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700949
950enum {
951 WOL_PATT_RAM_1 = 0x1000,/* WOL Pattern RAM Link 1 */
952 WOL_PATT_RAM_2 = 0x1400,/* WOL Pattern RAM Link 2 */
953};
Stephen Hemmingere3173832007-02-06 10:45:39 -0800954#define WOL_PATT_RAM_BASE(port) (WOL_PATT_RAM_1 + (port)*0x400)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -0700955
956enum {
957 BASE_GMAC_1 = 0x2800,/* GMAC 1 registers */
958 BASE_GMAC_2 = 0x3800,/* GMAC 2 registers */
959};
960
961/*
962 * Marvel-PHY Registers, indirect addressed over GMAC
963 */
964enum {
965 PHY_MARV_CTRL = 0x00,/* 16 bit r/w PHY Control Register */
966 PHY_MARV_STAT = 0x01,/* 16 bit r/o PHY Status Register */
967 PHY_MARV_ID0 = 0x02,/* 16 bit r/o PHY ID0 Register */
968 PHY_MARV_ID1 = 0x03,/* 16 bit r/o PHY ID1 Register */
969 PHY_MARV_AUNE_ADV = 0x04,/* 16 bit r/w Auto-Neg. Advertisement */
970 PHY_MARV_AUNE_LP = 0x05,/* 16 bit r/o Link Part Ability Reg */
971 PHY_MARV_AUNE_EXP = 0x06,/* 16 bit r/o Auto-Neg. Expansion Reg */
972 PHY_MARV_NEPG = 0x07,/* 16 bit r/w Next Page Register */
973 PHY_MARV_NEPG_LP = 0x08,/* 16 bit r/o Next Page Link Partner */
974 /* Marvel-specific registers */
975 PHY_MARV_1000T_CTRL = 0x09,/* 16 bit r/w 1000Base-T Control Reg */
976 PHY_MARV_1000T_STAT = 0x0a,/* 16 bit r/o 1000Base-T Status Reg */
977 PHY_MARV_EXT_STAT = 0x0f,/* 16 bit r/o Extended Status Reg */
978 PHY_MARV_PHY_CTRL = 0x10,/* 16 bit r/w PHY Specific Ctrl Reg */
979 PHY_MARV_PHY_STAT = 0x11,/* 16 bit r/o PHY Specific Stat Reg */
980 PHY_MARV_INT_MASK = 0x12,/* 16 bit r/w Interrupt Mask Reg */
981 PHY_MARV_INT_STAT = 0x13,/* 16 bit r/o Interrupt Status Reg */
982 PHY_MARV_EXT_CTRL = 0x14,/* 16 bit r/w Ext. PHY Specific Ctrl */
983 PHY_MARV_RXE_CNT = 0x15,/* 16 bit r/w Receive Error Counter */
984 PHY_MARV_EXT_ADR = 0x16,/* 16 bit r/w Ext. Ad. for Cable Diag. */
985 PHY_MARV_PORT_IRQ = 0x17,/* 16 bit r/o Port 0 IRQ (88E1111 only) */
986 PHY_MARV_LED_CTRL = 0x18,/* 16 bit r/w LED Control Reg */
987 PHY_MARV_LED_OVER = 0x19,/* 16 bit r/w Manual LED Override Reg */
988 PHY_MARV_EXT_CTRL_2 = 0x1a,/* 16 bit r/w Ext. PHY Specific Ctrl 2 */
989 PHY_MARV_EXT_P_STAT = 0x1b,/* 16 bit r/w Ext. PHY Spec. Stat Reg */
990 PHY_MARV_CABLE_DIAG = 0x1c,/* 16 bit r/o Cable Diagnostic Reg */
991 PHY_MARV_PAGE_ADDR = 0x1d,/* 16 bit r/w Extended Page Address Reg */
992 PHY_MARV_PAGE_DATA = 0x1e,/* 16 bit r/w Extended Page Data Reg */
993
994/* for 10/100 Fast Ethernet PHY (88E3082 only) */
995 PHY_MARV_FE_LED_PAR = 0x16,/* 16 bit r/w LED Parallel Select Reg. */
996 PHY_MARV_FE_LED_SER = 0x17,/* 16 bit r/w LED Stream Select S. LED */
997 PHY_MARV_FE_VCT_TX = 0x1a,/* 16 bit r/w VCT Reg. for TXP/N Pins */
998 PHY_MARV_FE_VCT_RX = 0x1b,/* 16 bit r/o VCT Reg. for RXP/N Pins */
999 PHY_MARV_FE_SPEC_2 = 0x1c,/* 16 bit r/w Specific Control Reg. 2 */
1000};
1001
1002enum {
1003 PHY_CT_RESET = 1<<15, /* Bit 15: (sc) clear all PHY related regs */
1004 PHY_CT_LOOP = 1<<14, /* Bit 14: enable Loopback over PHY */
1005 PHY_CT_SPS_LSB = 1<<13, /* Bit 13: Speed select, lower bit */
1006 PHY_CT_ANE = 1<<12, /* Bit 12: Auto-Negotiation Enabled */
1007 PHY_CT_PDOWN = 1<<11, /* Bit 11: Power Down Mode */
1008 PHY_CT_ISOL = 1<<10, /* Bit 10: Isolate Mode */
1009 PHY_CT_RE_CFG = 1<<9, /* Bit 9: (sc) Restart Auto-Negotiation */
1010 PHY_CT_DUP_MD = 1<<8, /* Bit 8: Duplex Mode */
1011 PHY_CT_COL_TST = 1<<7, /* Bit 7: Collision Test enabled */
1012 PHY_CT_SPS_MSB = 1<<6, /* Bit 6: Speed select, upper bit */
1013};
1014
1015enum {
1016 PHY_CT_SP1000 = PHY_CT_SPS_MSB, /* enable speed of 1000 Mbps */
1017 PHY_CT_SP100 = PHY_CT_SPS_LSB, /* enable speed of 100 Mbps */
1018 PHY_CT_SP10 = 0, /* enable speed of 10 Mbps */
1019};
1020
1021enum {
1022 PHY_ST_EXT_ST = 1<<8, /* Bit 8: Extended Status Present */
1023
1024 PHY_ST_PRE_SUP = 1<<6, /* Bit 6: Preamble Suppression */
1025 PHY_ST_AN_OVER = 1<<5, /* Bit 5: Auto-Negotiation Over */
1026 PHY_ST_REM_FLT = 1<<4, /* Bit 4: Remote Fault Condition Occured */
1027 PHY_ST_AN_CAP = 1<<3, /* Bit 3: Auto-Negotiation Capability */
1028 PHY_ST_LSYNC = 1<<2, /* Bit 2: Link Synchronized */
1029 PHY_ST_JAB_DET = 1<<1, /* Bit 1: Jabber Detected */
1030 PHY_ST_EXT_REG = 1<<0, /* Bit 0: Extended Register available */
1031};
1032
1033enum {
1034 PHY_I1_OUI_MSK = 0x3f<<10, /* Bit 15..10: Organization Unique ID */
1035 PHY_I1_MOD_NUM = 0x3f<<4, /* Bit 9.. 4: Model Number */
1036 PHY_I1_REV_MSK = 0xf, /* Bit 3.. 0: Revision Number */
1037};
1038
1039/* different Marvell PHY Ids */
1040enum {
1041 PHY_MARV_ID0_VAL= 0x0141, /* Marvell Unique Identifier */
1042
1043 PHY_BCOM_ID1_A1 = 0x6041,
1044 PHY_BCOM_ID1_B2 = 0x6043,
1045 PHY_BCOM_ID1_C0 = 0x6044,
1046 PHY_BCOM_ID1_C5 = 0x6047,
1047
Stephen Hemminger977bdf02006-02-22 11:44:58 -08001048 PHY_MARV_ID1_B0 = 0x0C23, /* Yukon (PHY 88E1011) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001049 PHY_MARV_ID1_B2 = 0x0C25, /* Yukon-Plus (PHY 88E1011) */
Stephen Hemminger977bdf02006-02-22 11:44:58 -08001050 PHY_MARV_ID1_C2 = 0x0CC2, /* Yukon-EC (PHY 88E1111) */
1051 PHY_MARV_ID1_Y2 = 0x0C91, /* Yukon-2 (PHY 88E1112) */
1052 PHY_MARV_ID1_FE = 0x0C83, /* Yukon-FE (PHY 88E3082 Rev.A1) */
1053 PHY_MARV_ID1_ECU= 0x0CB0, /* Yukon-ECU (PHY 88E1149 Rev.B2?) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001054};
1055
1056/* Advertisement register bits */
1057enum {
1058 PHY_AN_NXT_PG = 1<<15, /* Bit 15: Request Next Page */
1059 PHY_AN_ACK = 1<<14, /* Bit 14: (ro) Acknowledge Received */
1060 PHY_AN_RF = 1<<13, /* Bit 13: Remote Fault Bits */
1061
1062 PHY_AN_PAUSE_ASYM = 1<<11,/* Bit 11: Try for asymmetric */
1063 PHY_AN_PAUSE_CAP = 1<<10, /* Bit 10: Try for pause */
1064 PHY_AN_100BASE4 = 1<<9, /* Bit 9: Try for 100mbps 4k packets */
1065 PHY_AN_100FULL = 1<<8, /* Bit 8: Try for 100mbps full-duplex */
1066 PHY_AN_100HALF = 1<<7, /* Bit 7: Try for 100mbps half-duplex */
1067 PHY_AN_10FULL = 1<<6, /* Bit 6: Try for 10mbps full-duplex */
1068 PHY_AN_10HALF = 1<<5, /* Bit 5: Try for 10mbps half-duplex */
1069 PHY_AN_CSMA = 1<<0, /* Bit 0: Only selector supported */
1070 PHY_AN_SEL = 0x1f, /* Bit 4..0: Selector Field, 00001=Ethernet*/
1071 PHY_AN_FULL = PHY_AN_100FULL | PHY_AN_10FULL | PHY_AN_CSMA,
1072 PHY_AN_ALL = PHY_AN_10HALF | PHY_AN_10FULL |
1073 PHY_AN_100HALF | PHY_AN_100FULL,
1074};
1075
1076/***** PHY_BCOM_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
1077/***** PHY_MARV_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
1078enum {
1079 PHY_B_1000S_MSF = 1<<15, /* Bit 15: Master/Slave Fault */
1080 PHY_B_1000S_MSR = 1<<14, /* Bit 14: Master/Slave Result */
1081 PHY_B_1000S_LRS = 1<<13, /* Bit 13: Local Receiver Status */
1082 PHY_B_1000S_RRS = 1<<12, /* Bit 12: Remote Receiver Status */
1083 PHY_B_1000S_LP_FD = 1<<11, /* Bit 11: Link Partner can FD */
1084 PHY_B_1000S_LP_HD = 1<<10, /* Bit 10: Link Partner can HD */
1085 /* Bit 9..8: reserved */
1086 PHY_B_1000S_IEC = 0xff, /* Bit 7..0: Idle Error Count */
1087};
1088
1089/** Marvell-Specific */
1090enum {
1091 PHY_M_AN_NXT_PG = 1<<15, /* Request Next Page */
1092 PHY_M_AN_ACK = 1<<14, /* (ro) Acknowledge Received */
1093 PHY_M_AN_RF = 1<<13, /* Remote Fault */
1094
1095 PHY_M_AN_ASP = 1<<11, /* Asymmetric Pause */
1096 PHY_M_AN_PC = 1<<10, /* MAC Pause implemented */
1097 PHY_M_AN_100_T4 = 1<<9, /* Not cap. 100Base-T4 (always 0) */
1098 PHY_M_AN_100_FD = 1<<8, /* Advertise 100Base-TX Full Duplex */
1099 PHY_M_AN_100_HD = 1<<7, /* Advertise 100Base-TX Half Duplex */
1100 PHY_M_AN_10_FD = 1<<6, /* Advertise 10Base-TX Full Duplex */
1101 PHY_M_AN_10_HD = 1<<5, /* Advertise 10Base-TX Half Duplex */
1102 PHY_M_AN_SEL_MSK =0x1f<<4, /* Bit 4.. 0: Selector Field Mask */
1103};
1104
1105/* special defines for FIBER (88E1011S only) */
1106enum {
1107 PHY_M_AN_ASP_X = 1<<8, /* Asymmetric Pause */
1108 PHY_M_AN_PC_X = 1<<7, /* MAC Pause implemented */
1109 PHY_M_AN_1000X_AHD = 1<<6, /* Advertise 10000Base-X Half Duplex */
1110 PHY_M_AN_1000X_AFD = 1<<5, /* Advertise 10000Base-X Full Duplex */
1111};
1112
1113/* Pause Bits (PHY_M_AN_ASP_X and PHY_M_AN_PC_X) encoding */
1114enum {
1115 PHY_M_P_NO_PAUSE_X = 0<<7,/* Bit 8.. 7: no Pause Mode */
1116 PHY_M_P_SYM_MD_X = 1<<7, /* Bit 8.. 7: symmetric Pause Mode */
1117 PHY_M_P_ASYM_MD_X = 2<<7,/* Bit 8.. 7: asymmetric Pause Mode */
1118 PHY_M_P_BOTH_MD_X = 3<<7,/* Bit 8.. 7: both Pause Mode */
1119};
1120
1121/***** PHY_MARV_1000T_CTRL 16 bit r/w 1000Base-T Control Reg *****/
1122enum {
1123 PHY_M_1000C_TEST = 7<<13,/* Bit 15..13: Test Modes */
1124 PHY_M_1000C_MSE = 1<<12, /* Manual Master/Slave Enable */
1125 PHY_M_1000C_MSC = 1<<11, /* M/S Configuration (1=Master) */
1126 PHY_M_1000C_MPD = 1<<10, /* Multi-Port Device */
1127 PHY_M_1000C_AFD = 1<<9, /* Advertise Full Duplex */
1128 PHY_M_1000C_AHD = 1<<8, /* Advertise Half Duplex */
1129};
1130
1131/***** PHY_MARV_PHY_CTRL 16 bit r/w PHY Specific Ctrl Reg *****/
1132enum {
1133 PHY_M_PC_TX_FFD_MSK = 3<<14,/* Bit 15..14: Tx FIFO Depth Mask */
1134 PHY_M_PC_RX_FFD_MSK = 3<<12,/* Bit 13..12: Rx FIFO Depth Mask */
1135 PHY_M_PC_ASS_CRS_TX = 1<<11, /* Assert CRS on Transmit */
1136 PHY_M_PC_FL_GOOD = 1<<10, /* Force Link Good */
1137 PHY_M_PC_EN_DET_MSK = 3<<8,/* Bit 9.. 8: Energy Detect Mask */
1138 PHY_M_PC_ENA_EXT_D = 1<<7, /* Enable Ext. Distance (10BT) */
1139 PHY_M_PC_MDIX_MSK = 3<<5,/* Bit 6.. 5: MDI/MDIX Config. Mask */
1140 PHY_M_PC_DIS_125CLK = 1<<4, /* Disable 125 CLK */
1141 PHY_M_PC_MAC_POW_UP = 1<<3, /* MAC Power up */
1142 PHY_M_PC_SQE_T_ENA = 1<<2, /* SQE Test Enabled */
1143 PHY_M_PC_POL_R_DIS = 1<<1, /* Polarity Reversal Disabled */
1144 PHY_M_PC_DIS_JABBER = 1<<0, /* Disable Jabber */
1145};
1146
1147enum {
1148 PHY_M_PC_EN_DET = 2<<8, /* Energy Detect (Mode 1) */
1149 PHY_M_PC_EN_DET_PLUS = 3<<8, /* Energy Detect Plus (Mode 2) */
1150};
1151
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001152#define PHY_M_PC_MDI_XMODE(x) (((u16)(x)<<5) & PHY_M_PC_MDIX_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001153
1154enum {
1155 PHY_M_PC_MAN_MDI = 0, /* 00 = Manual MDI configuration */
1156 PHY_M_PC_MAN_MDIX = 1, /* 01 = Manual MDIX configuration */
1157 PHY_M_PC_ENA_AUTO = 3, /* 11 = Enable Automatic Crossover */
1158};
1159
1160/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1161enum {
1162 PHY_M_PC_ENA_DTE_DT = 1<<15, /* Enable Data Terminal Equ. (DTE) Detect */
1163 PHY_M_PC_ENA_ENE_DT = 1<<14, /* Enable Energy Detect (sense & pulse) */
1164 PHY_M_PC_DIS_NLP_CK = 1<<13, /* Disable Normal Link Puls (NLP) Check */
1165 PHY_M_PC_ENA_LIP_NP = 1<<12, /* Enable Link Partner Next Page Reg. */
1166 PHY_M_PC_DIS_NLP_GN = 1<<11, /* Disable Normal Link Puls Generation */
1167
1168 PHY_M_PC_DIS_SCRAMB = 1<<9, /* Disable Scrambler */
1169 PHY_M_PC_DIS_FEFI = 1<<8, /* Disable Far End Fault Indic. (FEFI) */
1170
1171 PHY_M_PC_SH_TP_SEL = 1<<6, /* Shielded Twisted Pair Select */
1172 PHY_M_PC_RX_FD_MSK = 3<<2,/* Bit 3.. 2: Rx FIFO Depth Mask */
1173};
1174
1175/***** PHY_MARV_PHY_STAT 16 bit r/o PHY Specific Status Reg *****/
1176enum {
1177 PHY_M_PS_SPEED_MSK = 3<<14, /* Bit 15..14: Speed Mask */
1178 PHY_M_PS_SPEED_1000 = 1<<15, /* 10 = 1000 Mbps */
1179 PHY_M_PS_SPEED_100 = 1<<14, /* 01 = 100 Mbps */
1180 PHY_M_PS_SPEED_10 = 0, /* 00 = 10 Mbps */
1181 PHY_M_PS_FULL_DUP = 1<<13, /* Full Duplex */
1182 PHY_M_PS_PAGE_REC = 1<<12, /* Page Received */
1183 PHY_M_PS_SPDUP_RES = 1<<11, /* Speed & Duplex Resolved */
1184 PHY_M_PS_LINK_UP = 1<<10, /* Link Up */
1185 PHY_M_PS_CABLE_MSK = 7<<7, /* Bit 9.. 7: Cable Length Mask */
1186 PHY_M_PS_MDI_X_STAT = 1<<6, /* MDI Crossover Stat (1=MDIX) */
1187 PHY_M_PS_DOWNS_STAT = 1<<5, /* Downshift Status (1=downsh.) */
1188 PHY_M_PS_ENDET_STAT = 1<<4, /* Energy Detect Status (1=act) */
1189 PHY_M_PS_TX_P_EN = 1<<3, /* Tx Pause Enabled */
1190 PHY_M_PS_RX_P_EN = 1<<2, /* Rx Pause Enabled */
1191 PHY_M_PS_POL_REV = 1<<1, /* Polarity Reversed */
1192 PHY_M_PS_JABBER = 1<<0, /* Jabber */
1193};
1194
1195#define PHY_M_PS_PAUSE_MSK (PHY_M_PS_TX_P_EN | PHY_M_PS_RX_P_EN)
1196
1197/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1198enum {
1199 PHY_M_PS_DTE_DETECT = 1<<15, /* Data Terminal Equipment (DTE) Detected */
1200 PHY_M_PS_RES_SPEED = 1<<14, /* Resolved Speed (1=100 Mbps, 0=10 Mbps */
1201};
1202
1203enum {
1204 PHY_M_IS_AN_ERROR = 1<<15, /* Auto-Negotiation Error */
1205 PHY_M_IS_LSP_CHANGE = 1<<14, /* Link Speed Changed */
1206 PHY_M_IS_DUP_CHANGE = 1<<13, /* Duplex Mode Changed */
1207 PHY_M_IS_AN_PR = 1<<12, /* Page Received */
1208 PHY_M_IS_AN_COMPL = 1<<11, /* Auto-Negotiation Completed */
1209 PHY_M_IS_LST_CHANGE = 1<<10, /* Link Status Changed */
1210 PHY_M_IS_SYMB_ERROR = 1<<9, /* Symbol Error */
1211 PHY_M_IS_FALSE_CARR = 1<<8, /* False Carrier */
1212 PHY_M_IS_FIFO_ERROR = 1<<7, /* FIFO Overflow/Underrun Error */
1213 PHY_M_IS_MDI_CHANGE = 1<<6, /* MDI Crossover Changed */
1214 PHY_M_IS_DOWNSH_DET = 1<<5, /* Downshift Detected */
1215 PHY_M_IS_END_CHANGE = 1<<4, /* Energy Detect Changed */
1216
1217 PHY_M_IS_DTE_CHANGE = 1<<2, /* DTE Power Det. Status Changed */
1218 PHY_M_IS_POL_CHANGE = 1<<1, /* Polarity Changed */
1219 PHY_M_IS_JABBER = 1<<0, /* Jabber */
1220
1221 PHY_M_DEF_MSK = PHY_M_IS_LSP_CHANGE | PHY_M_IS_LST_CHANGE
Stephen Hemmingerd8511f82007-05-24 15:22:47 -07001222 | PHY_M_IS_DUP_CHANGE,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001223 PHY_M_AN_MSK = PHY_M_IS_AN_ERROR | PHY_M_IS_AN_COMPL,
1224};
1225
1226
1227/***** PHY_MARV_EXT_CTRL 16 bit r/w Ext. PHY Specific Ctrl *****/
1228enum {
1229 PHY_M_EC_ENA_BC_EXT = 1<<15, /* Enable Block Carr. Ext. (88E1111 only) */
1230 PHY_M_EC_ENA_LIN_LB = 1<<14, /* Enable Line Loopback (88E1111 only) */
1231
1232 PHY_M_EC_DIS_LINK_P = 1<<12, /* Disable Link Pulses (88E1111 only) */
1233 PHY_M_EC_M_DSC_MSK = 3<<10, /* Bit 11..10: Master Downshift Counter */
1234 /* (88E1011 only) */
1235 PHY_M_EC_S_DSC_MSK = 3<<8,/* Bit 9.. 8: Slave Downshift Counter */
1236 /* (88E1011 only) */
1237 PHY_M_EC_M_DSC_MSK2 = 7<<9,/* Bit 11.. 9: Master Downshift Counter */
1238 /* (88E1111 only) */
1239 PHY_M_EC_DOWN_S_ENA = 1<<8, /* Downshift Enable (88E1111 only) */
1240 /* !!! Errata in spec. (1 = disable) */
1241 PHY_M_EC_RX_TIM_CT = 1<<7, /* RGMII Rx Timing Control*/
1242 PHY_M_EC_MAC_S_MSK = 7<<4,/* Bit 6.. 4: Def. MAC interface speed */
1243 PHY_M_EC_FIB_AN_ENA = 1<<3, /* Fiber Auto-Neg. Enable (88E1011S only) */
1244 PHY_M_EC_DTE_D_ENA = 1<<2, /* DTE Detect Enable (88E1111 only) */
1245 PHY_M_EC_TX_TIM_CT = 1<<1, /* RGMII Tx Timing Control */
1246 PHY_M_EC_TRANS_DIS = 1<<0, /* Transmitter Disable (88E1111 only) */};
1247
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001248#define PHY_M_EC_M_DSC(x) ((u16)(x)<<10 & PHY_M_EC_M_DSC_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001249 /* 00=1x; 01=2x; 10=3x; 11=4x */
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001250#define PHY_M_EC_S_DSC(x) ((u16)(x)<<8 & PHY_M_EC_S_DSC_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001251 /* 00=dis; 01=1x; 10=2x; 11=3x */
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001252#define PHY_M_EC_DSC_2(x) ((u16)(x)<<9 & PHY_M_EC_M_DSC_MSK2)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001253 /* 000=1x; 001=2x; 010=3x; 011=4x */
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001254#define PHY_M_EC_MAC_S(x) ((u16)(x)<<4 & PHY_M_EC_MAC_S_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001255 /* 01X=0; 110=2.5; 111=25 (MHz) */
1256
1257/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
1258enum {
1259 PHY_M_PC_DIS_LINK_Pa = 1<<15,/* Disable Link Pulses */
1260 PHY_M_PC_DSC_MSK = 7<<12,/* Bit 14..12: Downshift Counter */
1261 PHY_M_PC_DOWN_S_ENA = 1<<11,/* Downshift Enable */
1262};
1263/* !!! Errata in spec. (1 = disable) */
1264
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001265#define PHY_M_PC_DSC(x) (((u16)(x)<<12) & PHY_M_PC_DSC_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001266 /* 100=5x; 101=6x; 110=7x; 111=8x */
1267enum {
1268 MAC_TX_CLK_0_MHZ = 2,
1269 MAC_TX_CLK_2_5_MHZ = 6,
1270 MAC_TX_CLK_25_MHZ = 7,
1271};
1272
1273/***** PHY_MARV_LED_CTRL 16 bit r/w LED Control Reg *****/
1274enum {
1275 PHY_M_LEDC_DIS_LED = 1<<15, /* Disable LED */
1276 PHY_M_LEDC_PULS_MSK = 7<<12,/* Bit 14..12: Pulse Stretch Mask */
1277 PHY_M_LEDC_F_INT = 1<<11, /* Force Interrupt */
1278 PHY_M_LEDC_BL_R_MSK = 7<<8,/* Bit 10.. 8: Blink Rate Mask */
1279 PHY_M_LEDC_DP_C_LSB = 1<<7, /* Duplex Control (LSB, 88E1111 only) */
1280 PHY_M_LEDC_TX_C_LSB = 1<<6, /* Tx Control (LSB, 88E1111 only) */
1281 PHY_M_LEDC_LK_C_MSK = 7<<3,/* Bit 5.. 3: Link Control Mask */
1282 /* (88E1111 only) */
1283};
1284
1285enum {
1286 PHY_M_LEDC_LINK_MSK = 3<<3,/* Bit 4.. 3: Link Control Mask */
1287 /* (88E1011 only) */
1288 PHY_M_LEDC_DP_CTRL = 1<<2, /* Duplex Control */
1289 PHY_M_LEDC_DP_C_MSB = 1<<2, /* Duplex Control (MSB, 88E1111 only) */
1290 PHY_M_LEDC_RX_CTRL = 1<<1, /* Rx Activity / Link */
1291 PHY_M_LEDC_TX_CTRL = 1<<0, /* Tx Activity / Link */
1292 PHY_M_LEDC_TX_C_MSB = 1<<0, /* Tx Control (MSB, 88E1111 only) */
1293};
1294
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001295#define PHY_M_LED_PULS_DUR(x) (((u16)(x)<<12) & PHY_M_LEDC_PULS_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001296
1297/***** PHY_MARV_PHY_STAT (page 3)16 bit r/w Polarity Control Reg. *****/
1298enum {
1299 PHY_M_POLC_LS1M_MSK = 0xf<<12, /* Bit 15..12: LOS,STAT1 Mix % Mask */
1300 PHY_M_POLC_IS0M_MSK = 0xf<<8, /* Bit 11.. 8: INIT,STAT0 Mix % Mask */
1301 PHY_M_POLC_LOS_MSK = 0x3<<6, /* Bit 7.. 6: LOS Pol. Ctrl. Mask */
1302 PHY_M_POLC_INIT_MSK = 0x3<<4, /* Bit 5.. 4: INIT Pol. Ctrl. Mask */
1303 PHY_M_POLC_STA1_MSK = 0x3<<2, /* Bit 3.. 2: STAT1 Pol. Ctrl. Mask */
1304 PHY_M_POLC_STA0_MSK = 0x3, /* Bit 1.. 0: STAT0 Pol. Ctrl. Mask */
1305};
1306
1307#define PHY_M_POLC_LS1_P_MIX(x) (((x)<<12) & PHY_M_POLC_LS1M_MSK)
1308#define PHY_M_POLC_IS0_P_MIX(x) (((x)<<8) & PHY_M_POLC_IS0M_MSK)
1309#define PHY_M_POLC_LOS_CTRL(x) (((x)<<6) & PHY_M_POLC_LOS_MSK)
1310#define PHY_M_POLC_INIT_CTRL(x) (((x)<<4) & PHY_M_POLC_INIT_MSK)
1311#define PHY_M_POLC_STA1_CTRL(x) (((x)<<2) & PHY_M_POLC_STA1_MSK)
1312#define PHY_M_POLC_STA0_CTRL(x) (((x)<<0) & PHY_M_POLC_STA0_MSK)
1313
1314enum {
1315 PULS_NO_STR = 0,/* no pulse stretching */
1316 PULS_21MS = 1,/* 21 ms to 42 ms */
1317 PULS_42MS = 2,/* 42 ms to 84 ms */
1318 PULS_84MS = 3,/* 84 ms to 170 ms */
1319 PULS_170MS = 4,/* 170 ms to 340 ms */
1320 PULS_340MS = 5,/* 340 ms to 670 ms */
1321 PULS_670MS = 6,/* 670 ms to 1.3 s */
1322 PULS_1300MS = 7,/* 1.3 s to 2.7 s */
1323};
1324
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001325#define PHY_M_LED_BLINK_RT(x) (((u16)(x)<<8) & PHY_M_LEDC_BL_R_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001326
1327enum {
1328 BLINK_42MS = 0,/* 42 ms */
1329 BLINK_84MS = 1,/* 84 ms */
1330 BLINK_170MS = 2,/* 170 ms */
1331 BLINK_340MS = 3,/* 340 ms */
1332 BLINK_670MS = 4,/* 670 ms */
1333};
1334
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001335/**** PHY_MARV_LED_OVER 16 bit r/w LED control */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001336enum {
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001337 PHY_M_LED_MO_DUP = 3<<10,/* Bit 11..10: Duplex */
1338 PHY_M_LED_MO_10 = 3<<8, /* Bit 9.. 8: Link 10 */
1339 PHY_M_LED_MO_100 = 3<<6, /* Bit 7.. 6: Link 100 */
1340 PHY_M_LED_MO_1000 = 3<<4, /* Bit 5.. 4: Link 1000 */
1341 PHY_M_LED_MO_RX = 3<<2, /* Bit 3.. 2: Rx */
1342 PHY_M_LED_MO_TX = 3<<0, /* Bit 1.. 0: Tx */
1343
1344 PHY_M_LED_ALL = PHY_M_LED_MO_DUP | PHY_M_LED_MO_10
1345 | PHY_M_LED_MO_100 | PHY_M_LED_MO_1000
1346 | PHY_M_LED_MO_RX,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001347};
1348
1349/***** PHY_MARV_EXT_CTRL_2 16 bit r/w Ext. PHY Specific Ctrl 2 *****/
1350enum {
1351 PHY_M_EC2_FI_IMPED = 1<<6, /* Fiber Input Impedance */
1352 PHY_M_EC2_FO_IMPED = 1<<5, /* Fiber Output Impedance */
1353 PHY_M_EC2_FO_M_CLK = 1<<4, /* Fiber Mode Clock Enable */
1354 PHY_M_EC2_FO_BOOST = 1<<3, /* Fiber Output Boost */
1355 PHY_M_EC2_FO_AM_MSK = 7,/* Bit 2.. 0: Fiber Output Amplitude */
1356};
1357
1358/***** PHY_MARV_EXT_P_STAT 16 bit r/w Ext. PHY Specific Status *****/
1359enum {
1360 PHY_M_FC_AUTO_SEL = 1<<15, /* Fiber/Copper Auto Sel. Dis. */
1361 PHY_M_FC_AN_REG_ACC = 1<<14, /* Fiber/Copper AN Reg. Access */
1362 PHY_M_FC_RESOLUTION = 1<<13, /* Fiber/Copper Resolution */
1363 PHY_M_SER_IF_AN_BP = 1<<12, /* Ser. IF AN Bypass Enable */
1364 PHY_M_SER_IF_BP_ST = 1<<11, /* Ser. IF AN Bypass Status */
1365 PHY_M_IRQ_POLARITY = 1<<10, /* IRQ polarity */
1366 PHY_M_DIS_AUT_MED = 1<<9, /* Disable Aut. Medium Reg. Selection */
1367 /* (88E1111 only) */
1368
1369 PHY_M_UNDOC1 = 1<<7, /* undocumented bit !! */
1370 PHY_M_DTE_POW_STAT = 1<<4, /* DTE Power Status (88E1111 only) */
1371 PHY_M_MODE_MASK = 0xf, /* Bit 3.. 0: copy of HWCFG MODE[3:0] */
1372};
1373
1374/* for 10/100 Fast Ethernet PHY (88E3082 only) */
1375/***** PHY_MARV_FE_LED_PAR 16 bit r/w LED Parallel Select Reg. *****/
1376 /* Bit 15..12: reserved (used internally) */
1377enum {
1378 PHY_M_FELP_LED2_MSK = 0xf<<8, /* Bit 11.. 8: LED2 Mask (LINK) */
1379 PHY_M_FELP_LED1_MSK = 0xf<<4, /* Bit 7.. 4: LED1 Mask (ACT) */
1380 PHY_M_FELP_LED0_MSK = 0xf, /* Bit 3.. 0: LED0 Mask (SPEED) */
1381};
1382
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001383#define PHY_M_FELP_LED2_CTRL(x) (((u16)(x)<<8) & PHY_M_FELP_LED2_MSK)
1384#define PHY_M_FELP_LED1_CTRL(x) (((u16)(x)<<4) & PHY_M_FELP_LED1_MSK)
1385#define PHY_M_FELP_LED0_CTRL(x) (((u16)(x)<<0) & PHY_M_FELP_LED0_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001386
1387enum {
1388 LED_PAR_CTRL_COLX = 0x00,
1389 LED_PAR_CTRL_ERROR = 0x01,
1390 LED_PAR_CTRL_DUPLEX = 0x02,
1391 LED_PAR_CTRL_DP_COL = 0x03,
1392 LED_PAR_CTRL_SPEED = 0x04,
1393 LED_PAR_CTRL_LINK = 0x05,
1394 LED_PAR_CTRL_TX = 0x06,
1395 LED_PAR_CTRL_RX = 0x07,
1396 LED_PAR_CTRL_ACT = 0x08,
1397 LED_PAR_CTRL_LNK_RX = 0x09,
1398 LED_PAR_CTRL_LNK_AC = 0x0a,
1399 LED_PAR_CTRL_ACT_BL = 0x0b,
1400 LED_PAR_CTRL_TX_BL = 0x0c,
1401 LED_PAR_CTRL_RX_BL = 0x0d,
1402 LED_PAR_CTRL_COL_BL = 0x0e,
1403 LED_PAR_CTRL_INACT = 0x0f
1404};
1405
1406/*****,PHY_MARV_FE_SPEC_2 16 bit r/w Specific Control Reg. 2 *****/
1407enum {
1408 PHY_M_FESC_DIS_WAIT = 1<<2, /* Disable TDR Waiting Period */
1409 PHY_M_FESC_ENA_MCLK = 1<<1, /* Enable MAC Rx Clock in sleep mode */
1410 PHY_M_FESC_SEL_CL_A = 1<<0, /* Select Class A driver (100B-TX) */
1411};
1412
1413/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
Stephen Hemmingerb89165f2006-09-06 12:44:53 -07001414/***** PHY_MARV_PHY_CTRL (page 1) 16 bit r/w Fiber Specific Ctrl *****/
1415enum {
1416 PHY_M_FIB_FORCE_LNK = 1<<10,/* Force Link Good */
1417 PHY_M_FIB_SIGD_POL = 1<<9, /* SIGDET Polarity */
1418 PHY_M_FIB_TX_DIS = 1<<3, /* Transmitter Disable */
1419};
1420
1421/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001422/***** PHY_MARV_PHY_CTRL (page 2) 16 bit r/w MAC Specific Ctrl *****/
1423enum {
1424 PHY_M_MAC_MD_MSK = 7<<7, /* Bit 9.. 7: Mode Select Mask */
1425 PHY_M_MAC_MD_AUTO = 3,/* Auto Copper/1000Base-X */
1426 PHY_M_MAC_MD_COPPER = 5,/* Copper only */
1427 PHY_M_MAC_MD_1000BX = 7,/* 1000Base-X only */
1428};
1429#define PHY_M_MAC_MODE_SEL(x) (((x)<<7) & PHY_M_MAC_MD_MSK)
1430
1431/***** PHY_MARV_PHY_CTRL (page 3) 16 bit r/w LED Control Reg. *****/
1432enum {
1433 PHY_M_LEDC_LOS_MSK = 0xf<<12,/* Bit 15..12: LOS LED Ctrl. Mask */
1434 PHY_M_LEDC_INIT_MSK = 0xf<<8, /* Bit 11.. 8: INIT LED Ctrl. Mask */
1435 PHY_M_LEDC_STA1_MSK = 0xf<<4,/* Bit 7.. 4: STAT1 LED Ctrl. Mask */
1436 PHY_M_LEDC_STA0_MSK = 0xf, /* Bit 3.. 0: STAT0 LED Ctrl. Mask */
1437};
1438
1439#define PHY_M_LEDC_LOS_CTRL(x) (((x)<<12) & PHY_M_LEDC_LOS_MSK)
1440#define PHY_M_LEDC_INIT_CTRL(x) (((x)<<8) & PHY_M_LEDC_INIT_MSK)
1441#define PHY_M_LEDC_STA1_CTRL(x) (((x)<<4) & PHY_M_LEDC_STA1_MSK)
1442#define PHY_M_LEDC_STA0_CTRL(x) (((x)<<0) & PHY_M_LEDC_STA0_MSK)
1443
1444/* GMAC registers */
1445/* Port Registers */
1446enum {
1447 GM_GP_STAT = 0x0000, /* 16 bit r/o General Purpose Status */
1448 GM_GP_CTRL = 0x0004, /* 16 bit r/w General Purpose Control */
1449 GM_TX_CTRL = 0x0008, /* 16 bit r/w Transmit Control Reg. */
1450 GM_RX_CTRL = 0x000c, /* 16 bit r/w Receive Control Reg. */
1451 GM_TX_FLOW_CTRL = 0x0010, /* 16 bit r/w Transmit Flow-Control */
1452 GM_TX_PARAM = 0x0014, /* 16 bit r/w Transmit Parameter Reg. */
1453 GM_SERIAL_MODE = 0x0018, /* 16 bit r/w Serial Mode Register */
1454/* Source Address Registers */
1455 GM_SRC_ADDR_1L = 0x001c, /* 16 bit r/w Source Address 1 (low) */
1456 GM_SRC_ADDR_1M = 0x0020, /* 16 bit r/w Source Address 1 (middle) */
1457 GM_SRC_ADDR_1H = 0x0024, /* 16 bit r/w Source Address 1 (high) */
1458 GM_SRC_ADDR_2L = 0x0028, /* 16 bit r/w Source Address 2 (low) */
1459 GM_SRC_ADDR_2M = 0x002c, /* 16 bit r/w Source Address 2 (middle) */
1460 GM_SRC_ADDR_2H = 0x0030, /* 16 bit r/w Source Address 2 (high) */
1461
1462/* Multicast Address Hash Registers */
1463 GM_MC_ADDR_H1 = 0x0034, /* 16 bit r/w Multicast Address Hash 1 */
1464 GM_MC_ADDR_H2 = 0x0038, /* 16 bit r/w Multicast Address Hash 2 */
1465 GM_MC_ADDR_H3 = 0x003c, /* 16 bit r/w Multicast Address Hash 3 */
1466 GM_MC_ADDR_H4 = 0x0040, /* 16 bit r/w Multicast Address Hash 4 */
1467
1468/* Interrupt Source Registers */
1469 GM_TX_IRQ_SRC = 0x0044, /* 16 bit r/o Tx Overflow IRQ Source */
1470 GM_RX_IRQ_SRC = 0x0048, /* 16 bit r/o Rx Overflow IRQ Source */
1471 GM_TR_IRQ_SRC = 0x004c, /* 16 bit r/o Tx/Rx Over. IRQ Source */
1472
1473/* Interrupt Mask Registers */
1474 GM_TX_IRQ_MSK = 0x0050, /* 16 bit r/w Tx Overflow IRQ Mask */
1475 GM_RX_IRQ_MSK = 0x0054, /* 16 bit r/w Rx Overflow IRQ Mask */
1476 GM_TR_IRQ_MSK = 0x0058, /* 16 bit r/w Tx/Rx Over. IRQ Mask */
1477
1478/* Serial Management Interface (SMI) Registers */
1479 GM_SMI_CTRL = 0x0080, /* 16 bit r/w SMI Control Register */
1480 GM_SMI_DATA = 0x0084, /* 16 bit r/w SMI Data Register */
1481 GM_PHY_ADDR = 0x0088, /* 16 bit r/w GPHY Address Register */
Stephen Hemmingereadfa7d2006-03-22 10:38:45 -08001482/* MIB Counters */
1483 GM_MIB_CNT_BASE = 0x0100, /* Base Address of MIB Counters */
Stephen Hemminger43f2f102006-04-05 17:47:15 -07001484 GM_MIB_CNT_END = 0x025C, /* Last MIB counter */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001485};
1486
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001487
1488/*
1489 * MIB Counters base address definitions (low word) -
1490 * use offset 4 for access to high word (32 bit r/o)
1491 */
1492enum {
Stephen Hemmingereadfa7d2006-03-22 10:38:45 -08001493 GM_RXF_UC_OK = GM_MIB_CNT_BASE + 0, /* Unicast Frames Received OK */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001494 GM_RXF_BC_OK = GM_MIB_CNT_BASE + 8, /* Broadcast Frames Received OK */
1495 GM_RXF_MPAUSE = GM_MIB_CNT_BASE + 16, /* Pause MAC Ctrl Frames Received */
1496 GM_RXF_MC_OK = GM_MIB_CNT_BASE + 24, /* Multicast Frames Received OK */
1497 GM_RXF_FCS_ERR = GM_MIB_CNT_BASE + 32, /* Rx Frame Check Seq. Error */
Stephen Hemmingereadfa7d2006-03-22 10:38:45 -08001498
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001499 GM_RXO_OK_LO = GM_MIB_CNT_BASE + 48, /* Octets Received OK Low */
1500 GM_RXO_OK_HI = GM_MIB_CNT_BASE + 56, /* Octets Received OK High */
1501 GM_RXO_ERR_LO = GM_MIB_CNT_BASE + 64, /* Octets Received Invalid Low */
1502 GM_RXO_ERR_HI = GM_MIB_CNT_BASE + 72, /* Octets Received Invalid High */
1503 GM_RXF_SHT = GM_MIB_CNT_BASE + 80, /* Frames <64 Byte Received OK */
1504 GM_RXE_FRAG = GM_MIB_CNT_BASE + 88, /* Frames <64 Byte Received with FCS Err */
1505 GM_RXF_64B = GM_MIB_CNT_BASE + 96, /* 64 Byte Rx Frame */
Stephen Hemmingereadfa7d2006-03-22 10:38:45 -08001506 GM_RXF_127B = GM_MIB_CNT_BASE + 104,/* 65-127 Byte Rx Frame */
1507 GM_RXF_255B = GM_MIB_CNT_BASE + 112,/* 128-255 Byte Rx Frame */
1508 GM_RXF_511B = GM_MIB_CNT_BASE + 120,/* 256-511 Byte Rx Frame */
1509 GM_RXF_1023B = GM_MIB_CNT_BASE + 128,/* 512-1023 Byte Rx Frame */
1510 GM_RXF_1518B = GM_MIB_CNT_BASE + 136,/* 1024-1518 Byte Rx Frame */
1511 GM_RXF_MAX_SZ = GM_MIB_CNT_BASE + 144,/* 1519-MaxSize Byte Rx Frame */
1512 GM_RXF_LNG_ERR = GM_MIB_CNT_BASE + 152,/* Rx Frame too Long Error */
1513 GM_RXF_JAB_PKT = GM_MIB_CNT_BASE + 160,/* Rx Jabber Packet Frame */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001514
Stephen Hemmingereadfa7d2006-03-22 10:38:45 -08001515 GM_RXE_FIFO_OV = GM_MIB_CNT_BASE + 176,/* Rx FIFO overflow Event */
1516 GM_TXF_UC_OK = GM_MIB_CNT_BASE + 192,/* Unicast Frames Xmitted OK */
1517 GM_TXF_BC_OK = GM_MIB_CNT_BASE + 200,/* Broadcast Frames Xmitted OK */
1518 GM_TXF_MPAUSE = GM_MIB_CNT_BASE + 208,/* Pause MAC Ctrl Frames Xmitted */
1519 GM_TXF_MC_OK = GM_MIB_CNT_BASE + 216,/* Multicast Frames Xmitted OK */
1520 GM_TXO_OK_LO = GM_MIB_CNT_BASE + 224,/* Octets Transmitted OK Low */
1521 GM_TXO_OK_HI = GM_MIB_CNT_BASE + 232,/* Octets Transmitted OK High */
1522 GM_TXF_64B = GM_MIB_CNT_BASE + 240,/* 64 Byte Tx Frame */
1523 GM_TXF_127B = GM_MIB_CNT_BASE + 248,/* 65-127 Byte Tx Frame */
1524 GM_TXF_255B = GM_MIB_CNT_BASE + 256,/* 128-255 Byte Tx Frame */
1525 GM_TXF_511B = GM_MIB_CNT_BASE + 264,/* 256-511 Byte Tx Frame */
1526 GM_TXF_1023B = GM_MIB_CNT_BASE + 272,/* 512-1023 Byte Tx Frame */
1527 GM_TXF_1518B = GM_MIB_CNT_BASE + 280,/* 1024-1518 Byte Tx Frame */
1528 GM_TXF_MAX_SZ = GM_MIB_CNT_BASE + 288,/* 1519-MaxSize Byte Tx Frame */
1529
1530 GM_TXF_COL = GM_MIB_CNT_BASE + 304,/* Tx Collision */
1531 GM_TXF_LAT_COL = GM_MIB_CNT_BASE + 312,/* Tx Late Collision */
1532 GM_TXF_ABO_COL = GM_MIB_CNT_BASE + 320,/* Tx aborted due to Exces. Col. */
1533 GM_TXF_MUL_COL = GM_MIB_CNT_BASE + 328,/* Tx Multiple Collision */
1534 GM_TXF_SNG_COL = GM_MIB_CNT_BASE + 336,/* Tx Single Collision */
1535 GM_TXE_FIFO_UR = GM_MIB_CNT_BASE + 344,/* Tx FIFO Underrun Event */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001536};
1537
1538/* GMAC Bit Definitions */
1539/* GM_GP_STAT 16 bit r/o General Purpose Status Register */
1540enum {
1541 GM_GPSR_SPEED = 1<<15, /* Bit 15: Port Speed (1 = 100 Mbps) */
1542 GM_GPSR_DUPLEX = 1<<14, /* Bit 14: Duplex Mode (1 = Full) */
1543 GM_GPSR_FC_TX_DIS = 1<<13, /* Bit 13: Tx Flow-Control Mode Disabled */
1544 GM_GPSR_LINK_UP = 1<<12, /* Bit 12: Link Up Status */
1545 GM_GPSR_PAUSE = 1<<11, /* Bit 11: Pause State */
1546 GM_GPSR_TX_ACTIVE = 1<<10, /* Bit 10: Tx in Progress */
1547 GM_GPSR_EXC_COL = 1<<9, /* Bit 9: Excessive Collisions Occured */
1548 GM_GPSR_LAT_COL = 1<<8, /* Bit 8: Late Collisions Occured */
1549
1550 GM_GPSR_PHY_ST_CH = 1<<5, /* Bit 5: PHY Status Change */
1551 GM_GPSR_GIG_SPEED = 1<<4, /* Bit 4: Gigabit Speed (1 = 1000 Mbps) */
1552 GM_GPSR_PART_MODE = 1<<3, /* Bit 3: Partition mode */
1553 GM_GPSR_FC_RX_DIS = 1<<2, /* Bit 2: Rx Flow-Control Mode Disabled */
1554 GM_GPSR_PROM_EN = 1<<1, /* Bit 1: Promiscuous Mode Enabled */
1555};
1556
1557/* GM_GP_CTRL 16 bit r/w General Purpose Control Register */
1558enum {
1559 GM_GPCR_PROM_ENA = 1<<14, /* Bit 14: Enable Promiscuous Mode */
1560 GM_GPCR_FC_TX_DIS = 1<<13, /* Bit 13: Disable Tx Flow-Control Mode */
1561 GM_GPCR_TX_ENA = 1<<12, /* Bit 12: Enable Transmit */
1562 GM_GPCR_RX_ENA = 1<<11, /* Bit 11: Enable Receive */
1563 GM_GPCR_BURST_ENA = 1<<10, /* Bit 10: Enable Burst Mode */
1564 GM_GPCR_LOOP_ENA = 1<<9, /* Bit 9: Enable MAC Loopback Mode */
1565 GM_GPCR_PART_ENA = 1<<8, /* Bit 8: Enable Partition Mode */
1566 GM_GPCR_GIGS_ENA = 1<<7, /* Bit 7: Gigabit Speed (1000 Mbps) */
1567 GM_GPCR_FL_PASS = 1<<6, /* Bit 6: Force Link Pass */
1568 GM_GPCR_DUP_FULL = 1<<5, /* Bit 5: Full Duplex Mode */
1569 GM_GPCR_FC_RX_DIS = 1<<4, /* Bit 4: Disable Rx Flow-Control Mode */
1570 GM_GPCR_SPEED_100 = 1<<3, /* Bit 3: Port Speed 100 Mbps */
1571 GM_GPCR_AU_DUP_DIS = 1<<2, /* Bit 2: Disable Auto-Update Duplex */
1572 GM_GPCR_AU_FCT_DIS = 1<<1, /* Bit 1: Disable Auto-Update Flow-C. */
1573 GM_GPCR_AU_SPD_DIS = 1<<0, /* Bit 0: Disable Auto-Update Speed */
1574};
1575
1576#define GM_GPCR_SPEED_1000 (GM_GPCR_GIGS_ENA | GM_GPCR_SPEED_100)
1577#define GM_GPCR_AU_ALL_DIS (GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_FCT_DIS|GM_GPCR_AU_SPD_DIS)
1578
1579/* GM_TX_CTRL 16 bit r/w Transmit Control Register */
1580enum {
1581 GM_TXCR_FORCE_JAM = 1<<15, /* Bit 15: Force Jam / Flow-Control */
1582 GM_TXCR_CRC_DIS = 1<<14, /* Bit 14: Disable insertion of CRC */
1583 GM_TXCR_PAD_DIS = 1<<13, /* Bit 13: Disable padding of packets */
Stephen Hemmingerfbb88b32006-07-12 15:23:42 -07001584 GM_TXCR_COL_THR_MSK = 7<<10, /* Bit 12..10: Collision Threshold */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001585};
1586
1587#define TX_COL_THR(x) (((x)<<10) & GM_TXCR_COL_THR_MSK)
1588#define TX_COL_DEF 0x04
1589
1590/* GM_RX_CTRL 16 bit r/w Receive Control Register */
1591enum {
1592 GM_RXCR_UCF_ENA = 1<<15, /* Bit 15: Enable Unicast filtering */
1593 GM_RXCR_MCF_ENA = 1<<14, /* Bit 14: Enable Multicast filtering */
1594 GM_RXCR_CRC_DIS = 1<<13, /* Bit 13: Remove 4-byte CRC */
1595 GM_RXCR_PASS_FC = 1<<12, /* Bit 12: Pass FC packets to FIFO */
1596};
1597
1598/* GM_TX_PARAM 16 bit r/w Transmit Parameter Register */
1599enum {
1600 GM_TXPA_JAMLEN_MSK = 0x03<<14, /* Bit 15..14: Jam Length */
1601 GM_TXPA_JAMIPG_MSK = 0x1f<<9, /* Bit 13..9: Jam IPG */
1602 GM_TXPA_JAMDAT_MSK = 0x1f<<4, /* Bit 8..4: IPG Jam to Data */
1603 GM_TXPA_BO_LIM_MSK = 0x0f, /* Bit 3.. 0: Backoff Limit Mask */
1604
1605 TX_JAM_LEN_DEF = 0x03,
1606 TX_JAM_IPG_DEF = 0x0b,
1607 TX_IPG_JAM_DEF = 0x1c,
1608 TX_BOF_LIM_DEF = 0x04,
1609};
1610
1611#define TX_JAM_LEN_VAL(x) (((x)<<14) & GM_TXPA_JAMLEN_MSK)
1612#define TX_JAM_IPG_VAL(x) (((x)<<9) & GM_TXPA_JAMIPG_MSK)
1613#define TX_IPG_JAM_DATA(x) (((x)<<4) & GM_TXPA_JAMDAT_MSK)
1614#define TX_BACK_OFF_LIM(x) ((x) & GM_TXPA_BO_LIM_MSK)
1615
1616
1617/* GM_SERIAL_MODE 16 bit r/w Serial Mode Register */
1618enum {
1619 GM_SMOD_DATABL_MSK = 0x1f<<11, /* Bit 15..11: Data Blinder (r/o) */
1620 GM_SMOD_LIMIT_4 = 1<<10, /* Bit 10: 4 consecutive Tx trials */
1621 GM_SMOD_VLAN_ENA = 1<<9, /* Bit 9: Enable VLAN (Max. Frame Len) */
1622 GM_SMOD_JUMBO_ENA = 1<<8, /* Bit 8: Enable Jumbo (Max. Frame Len) */
1623 GM_SMOD_IPG_MSK = 0x1f /* Bit 4..0: Inter-Packet Gap (IPG) */
1624};
1625
1626#define DATA_BLIND_VAL(x) (((x)<<11) & GM_SMOD_DATABL_MSK)
1627#define DATA_BLIND_DEF 0x04
1628
1629#define IPG_DATA_VAL(x) (x & GM_SMOD_IPG_MSK)
1630#define IPG_DATA_DEF 0x1e
1631
1632/* GM_SMI_CTRL 16 bit r/w SMI Control Register */
1633enum {
1634 GM_SMI_CT_PHY_A_MSK = 0x1f<<11,/* Bit 15..11: PHY Device Address */
1635 GM_SMI_CT_REG_A_MSK = 0x1f<<6,/* Bit 10.. 6: PHY Register Address */
1636 GM_SMI_CT_OP_RD = 1<<5, /* Bit 5: OpCode Read (0=Write)*/
1637 GM_SMI_CT_RD_VAL = 1<<4, /* Bit 4: Read Valid (Read completed) */
1638 GM_SMI_CT_BUSY = 1<<3, /* Bit 3: Busy (Operation in progress) */
1639};
1640
Stephen Hemminger0efdf262006-12-05 12:03:41 -08001641#define GM_SMI_CT_PHY_AD(x) (((u16)(x)<<11) & GM_SMI_CT_PHY_A_MSK)
1642#define GM_SMI_CT_REG_AD(x) (((u16)(x)<<6) & GM_SMI_CT_REG_A_MSK)
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001643
1644/* GM_PHY_ADDR 16 bit r/w GPHY Address Register */
1645enum {
1646 GM_PAR_MIB_CLR = 1<<5, /* Bit 5: Set MIB Clear Counter Mode */
1647 GM_PAR_MIB_TST = 1<<4, /* Bit 4: MIB Load Counter (Test Mode) */
1648};
1649
1650/* Receive Frame Status Encoding */
1651enum {
1652 GMR_FS_LEN = 0xffff<<16, /* Bit 31..16: Rx Frame Length */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001653 GMR_FS_VLAN = 1<<13, /* VLAN Packet */
1654 GMR_FS_JABBER = 1<<12, /* Jabber Packet */
1655 GMR_FS_UN_SIZE = 1<<11, /* Undersize Packet */
1656 GMR_FS_MC = 1<<10, /* Multicast Packet */
1657 GMR_FS_BC = 1<<9, /* Broadcast Packet */
1658 GMR_FS_RX_OK = 1<<8, /* Receive OK (Good Packet) */
1659 GMR_FS_GOOD_FC = 1<<7, /* Good Flow-Control Packet */
1660 GMR_FS_BAD_FC = 1<<6, /* Bad Flow-Control Packet */
1661 GMR_FS_MII_ERR = 1<<5, /* MII Error */
1662 GMR_FS_LONG_ERR = 1<<4, /* Too Long Packet */
1663 GMR_FS_FRAGMENT = 1<<3, /* Fragment */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001664
Stephen Hemminger793b8832005-09-14 16:06:14 -07001665 GMR_FS_CRC_ERR = 1<<1, /* CRC Error */
1666 GMR_FS_RX_FF_OV = 1<<0, /* Rx FIFO Overflow */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001667
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001668 GMR_FS_ANY_ERR = GMR_FS_RX_FF_OV | GMR_FS_CRC_ERR |
1669 GMR_FS_FRAGMENT | GMR_FS_LONG_ERR |
Stephen Hemminger7e7c0982007-02-15 16:40:30 -08001670 GMR_FS_MII_ERR | GMR_FS_BAD_FC |
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001671 GMR_FS_UN_SIZE | GMR_FS_JABBER,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001672};
1673
1674/* RX_GMF_CTRL_T 32 bit Rx GMAC FIFO Control/Test */
1675enum {
Stephen Hemminger793b8832005-09-14 16:06:14 -07001676 RX_TRUNC_ON = 1<<27, /* enable packet truncation */
1677 RX_TRUNC_OFF = 1<<26, /* disable packet truncation */
1678 RX_VLAN_STRIP_ON = 1<<25, /* enable VLAN stripping */
1679 RX_VLAN_STRIP_OFF = 1<<24, /* disable VLAN stripping */
1680
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001681 GMF_WP_TST_ON = 1<<14, /* Write Pointer Test On */
1682 GMF_WP_TST_OFF = 1<<13, /* Write Pointer Test Off */
1683 GMF_WP_STEP = 1<<12, /* Write Pointer Step/Increment */
1684
1685 GMF_RP_TST_ON = 1<<10, /* Read Pointer Test On */
1686 GMF_RP_TST_OFF = 1<<9, /* Read Pointer Test Off */
1687 GMF_RP_STEP = 1<<8, /* Read Pointer Step/Increment */
1688 GMF_RX_F_FL_ON = 1<<7, /* Rx FIFO Flush Mode On */
1689 GMF_RX_F_FL_OFF = 1<<6, /* Rx FIFO Flush Mode Off */
1690 GMF_CLI_RX_FO = 1<<5, /* Clear IRQ Rx FIFO Overrun */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001691 GMF_CLI_RX_C = 1<<4, /* Clear IRQ Rx Frame Complete */
1692
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001693 GMF_OPER_ON = 1<<3, /* Operational Mode On */
1694 GMF_OPER_OFF = 1<<2, /* Operational Mode Off */
1695 GMF_RST_CLR = 1<<1, /* Clear GMAC FIFO Reset */
1696 GMF_RST_SET = 1<<0, /* Set GMAC FIFO Reset */
1697
1698 RX_GMF_FL_THR_DEF = 0xa, /* flush threshold (default) */
shemminger@osdl.orgd1f13702005-09-27 15:02:57 -07001699
1700 GMF_RX_CTRL_DEF = GMF_OPER_ON | GMF_RX_F_FL_ON,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001701};
1702
1703
1704/* TX_GMF_CTRL_T 32 bit Tx GMAC FIFO Control/Test */
1705enum {
shemminger@osdl.org5a5b1ea2005-11-30 11:45:15 -08001706 TX_STFW_DIS = 1<<31,/* Disable Store & Forward (Yukon-EC Ultra) */
1707 TX_STFW_ENA = 1<<30,/* Enable Store & Forward (Yukon-EC Ultra) */
1708
Stephen Hemminger793b8832005-09-14 16:06:14 -07001709 TX_VLAN_TAG_ON = 1<<25,/* enable VLAN tagging */
1710 TX_VLAN_TAG_OFF = 1<<24,/* disable VLAN tagging */
1711
Stephen Hemmingerb628ed92007-04-11 14:48:01 -07001712 TX_JUMBO_ENA = 1<<23,/* PCI Jumbo Mode enable (Yukon-EC Ultra) */
1713 TX_JUMBO_DIS = 1<<22,/* PCI Jumbo Mode enable (Yukon-EC Ultra) */
1714
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001715 GMF_WSP_TST_ON = 1<<18,/* Write Shadow Pointer Test On */
1716 GMF_WSP_TST_OFF = 1<<17,/* Write Shadow Pointer Test Off */
1717 GMF_WSP_STEP = 1<<16,/* Write Shadow Pointer Step/Increment */
1718
1719 GMF_CLI_TX_FU = 1<<6, /* Clear IRQ Tx FIFO Underrun */
1720 GMF_CLI_TX_FC = 1<<5, /* Clear IRQ Tx Frame Complete */
1721 GMF_CLI_TX_PE = 1<<4, /* Clear IRQ Tx Parity Error */
1722};
1723
1724/* GMAC_TI_ST_CTRL 8 bit Time Stamp Timer Ctrl Reg (YUKON only) */
1725enum {
1726 GMT_ST_START = 1<<2, /* Start Time Stamp Timer */
1727 GMT_ST_STOP = 1<<1, /* Stop Time Stamp Timer */
1728 GMT_ST_CLR_IRQ = 1<<0, /* Clear Time Stamp Timer IRQ */
1729};
1730
1731/* B28_Y2_ASF_STAT_CMD 32 bit ASF Status and Command Reg */
1732enum {
1733 Y2_ASF_OS_PRES = 1<<4, /* ASF operation system present */
1734 Y2_ASF_RESET = 1<<3, /* ASF system in reset state */
1735 Y2_ASF_RUNNING = 1<<2, /* ASF system operational */
1736 Y2_ASF_CLR_HSTI = 1<<1, /* Clear ASF IRQ */
1737 Y2_ASF_IRQ = 1<<0, /* Issue an IRQ to ASF system */
1738
1739 Y2_ASF_UC_STATE = 3<<2, /* ASF uC State */
1740 Y2_ASF_CLK_HALT = 0, /* ASF system clock stopped */
1741};
1742
1743/* B28_Y2_ASF_HOST_COM 32 bit ASF Host Communication Reg */
1744enum {
1745 Y2_ASF_CLR_ASFI = 1<<1, /* Clear host IRQ */
1746 Y2_ASF_HOST_IRQ = 1<<0, /* Issue an IRQ to HOST system */
1747};
Stephen Hemminger93745492007-02-06 10:45:43 -08001748/* HCU_CCSR CPU Control and Status Register */
1749enum {
1750 HCU_CCSR_SMBALERT_MONITOR= 1<<27, /* SMBALERT pin monitor */
1751 HCU_CCSR_CPU_SLEEP = 1<<26, /* CPU sleep status */
1752 /* Clock Stretching Timeout */
1753 HCU_CCSR_CS_TO = 1<<25,
1754 HCU_CCSR_WDOG = 1<<24, /* Watchdog Reset */
1755
1756 HCU_CCSR_CLR_IRQ_HOST = 1<<17, /* Clear IRQ_HOST */
1757 HCU_CCSR_SET_IRQ_HCU = 1<<16, /* Set IRQ_HCU */
1758
1759 HCU_CCSR_AHB_RST = 1<<9, /* Reset AHB bridge */
1760 HCU_CCSR_CPU_RST_MODE = 1<<8, /* CPU Reset Mode */
1761
1762 HCU_CCSR_SET_SYNC_CPU = 1<<5,
1763 HCU_CCSR_CPU_CLK_DIVIDE_MSK = 3<<3,/* CPU Clock Divide */
1764 HCU_CCSR_CPU_CLK_DIVIDE_BASE= 1<<3,
1765 HCU_CCSR_OS_PRSNT = 1<<2, /* ASF OS Present */
1766/* Microcontroller State */
1767 HCU_CCSR_UC_STATE_MSK = 3,
1768 HCU_CCSR_UC_STATE_BASE = 1<<0,
1769 HCU_CCSR_ASF_RESET = 0,
1770 HCU_CCSR_ASF_HALTED = 1<<1,
1771 HCU_CCSR_ASF_RUNNING = 1<<0,
1772};
1773
1774/* HCU_HCSR Host Control and Status Register */
1775enum {
1776 HCU_HCSR_SET_IRQ_CPU = 1<<16, /* Set IRQ_CPU */
1777
1778 HCU_HCSR_CLR_IRQ_HCU = 1<<1, /* Clear IRQ_HCU */
1779 HCU_HCSR_SET_IRQ_HOST = 1<<0, /* Set IRQ_HOST */
1780};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001781
1782/* STAT_CTRL 32 bit Status BMU control register (Yukon-2 only) */
1783enum {
1784 SC_STAT_CLR_IRQ = 1<<4, /* Status Burst IRQ clear */
1785 SC_STAT_OP_ON = 1<<3, /* Operational Mode On */
1786 SC_STAT_OP_OFF = 1<<2, /* Operational Mode Off */
1787 SC_STAT_RST_CLR = 1<<1, /* Clear Status Unit Reset (Enable) */
1788 SC_STAT_RST_SET = 1<<0, /* Set Status Unit Reset */
1789};
1790
1791/* GMAC_CTRL 32 bit GMAC Control Reg (YUKON only) */
1792enum {
1793 GMC_H_BURST_ON = 1<<7, /* Half Duplex Burst Mode On */
1794 GMC_H_BURST_OFF = 1<<6, /* Half Duplex Burst Mode Off */
1795 GMC_F_LOOPB_ON = 1<<5, /* FIFO Loopback On */
1796 GMC_F_LOOPB_OFF = 1<<4, /* FIFO Loopback Off */
1797 GMC_PAUSE_ON = 1<<3, /* Pause On */
1798 GMC_PAUSE_OFF = 1<<2, /* Pause Off */
1799 GMC_RST_CLR = 1<<1, /* Clear GMAC Reset */
1800 GMC_RST_SET = 1<<0, /* Set GMAC Reset */
1801};
1802
1803/* GPHY_CTRL 32 bit GPHY Control Reg (YUKON only) */
1804enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001805 GPC_RST_CLR = 1<<1, /* Clear GPHY Reset */
1806 GPC_RST_SET = 1<<0, /* Set GPHY Reset */
1807};
1808
1809/* GMAC_IRQ_SRC 8 bit GMAC Interrupt Source Reg (YUKON only) */
1810/* GMAC_IRQ_MSK 8 bit GMAC Interrupt Mask Reg (YUKON only) */
1811enum {
1812 GM_IS_TX_CO_OV = 1<<5, /* Transmit Counter Overflow IRQ */
1813 GM_IS_RX_CO_OV = 1<<4, /* Receive Counter Overflow IRQ */
1814 GM_IS_TX_FF_UR = 1<<3, /* Transmit FIFO Underrun */
1815 GM_IS_TX_COMPL = 1<<2, /* Frame Transmission Complete */
1816 GM_IS_RX_FF_OR = 1<<1, /* Receive FIFO Overrun */
1817 GM_IS_RX_COMPL = 1<<0, /* Frame Reception Complete */
1818
Stephen Hemminger79e57d32005-09-19 15:42:33 -07001819#define GMAC_DEF_MSK GM_IS_TX_FF_UR
Stephen Hemmingere3173832007-02-06 10:45:39 -08001820};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001821
1822/* GMAC_LINK_CTRL 16 bit GMAC Link Control Reg (YUKON only) */
Stephen Hemmingere3173832007-02-06 10:45:39 -08001823enum { /* Bits 15.. 2: reserved */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001824 GMLC_RST_CLR = 1<<1, /* Clear GMAC Link Reset */
1825 GMLC_RST_SET = 1<<0, /* Set GMAC Link Reset */
Stephen Hemmingere3173832007-02-06 10:45:39 -08001826};
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001827
1828
1829/* WOL_CTRL_STAT 16 bit WOL Control/Status Reg */
Stephen Hemmingere3173832007-02-06 10:45:39 -08001830enum {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001831 WOL_CTL_LINK_CHG_OCC = 1<<15,
1832 WOL_CTL_MAGIC_PKT_OCC = 1<<14,
1833 WOL_CTL_PATTERN_OCC = 1<<13,
1834 WOL_CTL_CLEAR_RESULT = 1<<12,
1835 WOL_CTL_ENA_PME_ON_LINK_CHG = 1<<11,
1836 WOL_CTL_DIS_PME_ON_LINK_CHG = 1<<10,
1837 WOL_CTL_ENA_PME_ON_MAGIC_PKT = 1<<9,
1838 WOL_CTL_DIS_PME_ON_MAGIC_PKT = 1<<8,
1839 WOL_CTL_ENA_PME_ON_PATTERN = 1<<7,
1840 WOL_CTL_DIS_PME_ON_PATTERN = 1<<6,
1841 WOL_CTL_ENA_LINK_CHG_UNIT = 1<<5,
1842 WOL_CTL_DIS_LINK_CHG_UNIT = 1<<4,
1843 WOL_CTL_ENA_MAGIC_PKT_UNIT = 1<<3,
1844 WOL_CTL_DIS_MAGIC_PKT_UNIT = 1<<2,
1845 WOL_CTL_ENA_PATTERN_UNIT = 1<<1,
1846 WOL_CTL_DIS_PATTERN_UNIT = 1<<0,
1847};
1848
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001849
1850/* Control flags */
1851enum {
1852 UDPTCP = 1<<0,
1853 CALSUM = 1<<1,
1854 WR_SUM = 1<<2,
1855 INIT_SUM= 1<<3,
1856 LOCK_SUM= 1<<4,
1857 INS_VLAN= 1<<5,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001858 EOP = 1<<7,
1859};
1860
1861enum {
1862 HW_OWNER = 1<<7,
1863 OP_TCPWRITE = 0x11,
1864 OP_TCPSTART = 0x12,
1865 OP_TCPINIT = 0x14,
1866 OP_TCPLCK = 0x18,
1867 OP_TCPCHKSUM = OP_TCPSTART,
1868 OP_TCPIS = OP_TCPINIT | OP_TCPSTART,
1869 OP_TCPLW = OP_TCPLCK | OP_TCPWRITE,
1870 OP_TCPLSW = OP_TCPLCK | OP_TCPSTART | OP_TCPWRITE,
1871 OP_TCPLISW = OP_TCPLCK | OP_TCPINIT | OP_TCPSTART | OP_TCPWRITE,
1872
1873 OP_ADDR64 = 0x21,
1874 OP_VLAN = 0x22,
1875 OP_ADDR64VLAN = OP_ADDR64 | OP_VLAN,
1876 OP_LRGLEN = 0x24,
1877 OP_LRGLENVLAN = OP_LRGLEN | OP_VLAN,
1878 OP_BUFFER = 0x40,
1879 OP_PACKET = 0x41,
1880 OP_LARGESEND = 0x43,
1881
1882/* YUKON-2 STATUS opcodes defines */
1883 OP_RXSTAT = 0x60,
1884 OP_RXTIMESTAMP = 0x61,
1885 OP_RXVLAN = 0x62,
1886 OP_RXCHKS = 0x64,
1887 OP_RXCHKSVLAN = OP_RXCHKS | OP_RXVLAN,
1888 OP_RXTIMEVLAN = OP_RXTIMESTAMP | OP_RXVLAN,
1889 OP_RSS_HASH = 0x65,
1890 OP_TXINDEXLE = 0x68,
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001891};
1892
Stephen Hemmingerf65b1382006-09-06 12:45:02 -07001893/* Yukon 2 hardware interface */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001894struct sky2_tx_le {
Stephen Hemmingerf65b1382006-09-06 12:45:02 -07001895 __le32 addr;
shemminger@osdl.org65497da2005-11-30 11:45:20 -08001896 __le16 length; /* also vlan tag or checksum start */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001897 u8 ctrl;
1898 u8 opcode;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001899} __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001900
1901struct sky2_rx_le {
shemminger@osdl.org65497da2005-11-30 11:45:20 -08001902 __le32 addr;
1903 __le16 length;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001904 u8 ctrl;
1905 u8 opcode;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08001906} __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001907
1908struct sky2_status_le {
shemminger@osdl.org65497da2005-11-30 11:45:20 -08001909 __le32 status; /* also checksum */
1910 __le16 length; /* also vlan tag */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001911 u8 link;
1912 u8 opcode;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001913} __attribute((packed));
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001914
Stephen Hemminger6cdbbdf2005-12-09 11:35:01 -08001915struct tx_ring_info {
1916 struct sk_buff *skb;
1917 DECLARE_PCI_UNMAP_ADDR(mapaddr);
Stephen Hemminger291ea612006-09-26 11:57:41 -07001918 DECLARE_PCI_UNMAP_ADDR(maplen);
Stephen Hemminger6cdbbdf2005-12-09 11:35:01 -08001919};
1920
Stephen Hemminger291ea612006-09-26 11:57:41 -07001921struct rx_ring_info {
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001922 struct sk_buff *skb;
Stephen Hemminger14d02632006-09-26 11:57:43 -07001923 dma_addr_t data_addr;
1924 DECLARE_PCI_UNMAP_ADDR(data_size);
1925 dma_addr_t frag_addr[ETH_JUMBO_MTU >> PAGE_SHIFT];
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001926};
1927
Stephen Hemminger16ad91e2006-10-17 10:24:13 -07001928enum flow_control {
1929 FC_NONE = 0,
1930 FC_TX = 1,
1931 FC_RX = 2,
1932 FC_BOTH = 3,
1933};
1934
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001935struct sky2_port {
Stephen Hemminger793b8832005-09-14 16:06:14 -07001936 struct sky2_hw *hw;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001937 struct net_device *netdev;
1938 unsigned port;
1939 u32 msg_enable;
Stephen Hemmingere07b1aa2006-03-20 15:48:17 -08001940 spinlock_t phy_lock;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001941
Stephen Hemminger6cdbbdf2005-12-09 11:35:01 -08001942 struct tx_ring_info *tx_ring;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001943 struct sky2_tx_le *tx_le;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001944 u16 tx_cons; /* next le to check */
1945 u16 tx_prod; /* next le to use */
Stephen Hemminger6e232312005-12-09 11:34:54 -08001946 u32 tx_addr64;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001947 u16 tx_pending;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001948 u16 tx_last_mss;
Stephen Hemmingerf65b1382006-09-06 12:45:02 -07001949 u32 tx_tcpsum;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001950
Stephen Hemminger291ea612006-09-26 11:57:41 -07001951 struct rx_ring_info *rx_ring ____cacheline_aligned_in_smp;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001952 struct sky2_rx_le *rx_le;
Stephen Hemminger793b8832005-09-14 16:06:14 -07001953 u32 rx_addr64;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001954 u16 rx_next; /* next re to check */
1955 u16 rx_put; /* next le index to use */
Stephen Hemminger793b8832005-09-14 16:06:14 -07001956 u16 rx_pending;
Stephen Hemminger14d02632006-09-26 11:57:43 -07001957 u16 rx_data_size;
1958 u16 rx_nfrags;
1959
shemminger@osdl.orgd1f13702005-09-27 15:02:57 -07001960#ifdef SKY2_VLAN_TAG_USED
1961 u16 rx_tag;
1962 struct vlan_group *vlgrp;
1963#endif
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001964
1965 dma_addr_t rx_le_map;
1966 dma_addr_t tx_le_map;
Stephen Hemminger0edea0f2006-10-17 10:24:07 -07001967 u16 advertising; /* ADVERTISED_ bits */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001968 u16 speed; /* SPEED_1000, SPEED_100, ... */
1969 u8 autoneg; /* AUTONEG_ENABLE, AUTONEG_DISABLE */
1970 u8 duplex; /* DUPLEX_HALF, DUPLEX_FULL */
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001971 u8 rx_csum;
Stephen Hemmingere3173832007-02-06 10:45:39 -08001972 u8 wol;
Stephen Hemminger16ad91e2006-10-17 10:24:13 -07001973 enum flow_control flow_mode;
1974 enum flow_control flow_status;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001975
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001976 struct net_device_stats net_stats;
Stephen Hemminger91c86df2005-12-09 11:34:57 -08001977
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001978};
1979
1980struct sky2_hw {
1981 void __iomem *regs;
1982 struct pci_dev *pdev;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001983 struct net_device *dev[2];
1984
1985 u8 chip_id;
1986 u8 chip_rev;
Stephen Hemmingerb89165f2006-09-06 12:44:53 -07001987 u8 pmd_type;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001988 u8 ports;
1989
1990 struct sky2_status_le *st_le;
1991 u32 st_idx;
1992 dma_addr_t st_dma;
Stephen Hemmingerd27ed382006-04-25 10:58:51 -07001993
1994 struct timer_list idle_timer;
Stephen Hemminger81906792007-02-15 16:40:33 -08001995 struct work_struct restart_work;
Stephen Hemmingerb0a20de2006-12-01 14:29:37 -08001996 int msi;
Stephen Hemmingerfb2690a2006-03-20 15:48:19 -08001997 wait_queue_head_t msi_wait;
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07001998};
1999
Stephen Hemmingerb89165f2006-09-06 12:44:53 -07002000static inline int sky2_is_copper(const struct sky2_hw *hw)
2001{
2002 return !(hw->pmd_type == 'L' || hw->pmd_type == 'S' || hw->pmd_type == 'P');
2003}
2004
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002005/* Register accessor for memory mapped device */
2006static inline u32 sky2_read32(const struct sky2_hw *hw, unsigned reg)
2007{
2008 return readl(hw->regs + reg);
2009}
2010
2011static inline u16 sky2_read16(const struct sky2_hw *hw, unsigned reg)
2012{
2013 return readw(hw->regs + reg);
2014}
2015
2016static inline u8 sky2_read8(const struct sky2_hw *hw, unsigned reg)
2017{
2018 return readb(hw->regs + reg);
2019}
2020
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002021static inline void sky2_write32(const struct sky2_hw *hw, unsigned reg, u32 val)
2022{
2023 writel(val, hw->regs + reg);
2024}
2025
2026static inline void sky2_write16(const struct sky2_hw *hw, unsigned reg, u16 val)
2027{
2028 writew(val, hw->regs + reg);
2029}
2030
2031static inline void sky2_write8(const struct sky2_hw *hw, unsigned reg, u8 val)
2032{
2033 writeb(val, hw->regs + reg);
2034}
2035
2036/* Yukon PHY related registers */
2037#define SK_GMAC_REG(port,reg) \
2038 (BASE_GMAC_1 + (port) * (BASE_GMAC_2-BASE_GMAC_1) + (reg))
2039#define GM_PHY_RETRIES 100
2040
2041static inline u16 gma_read16(const struct sky2_hw *hw, unsigned port, unsigned reg)
2042{
2043 return sky2_read16(hw, SK_GMAC_REG(port,reg));
2044}
2045
2046static inline u32 gma_read32(struct sky2_hw *hw, unsigned port, unsigned reg)
2047{
2048 unsigned base = SK_GMAC_REG(port, reg);
2049 return (u32) sky2_read16(hw, base)
2050 | (u32) sky2_read16(hw, base+4) << 16;
2051}
2052
2053static inline void gma_write16(const struct sky2_hw *hw, unsigned port, int r, u16 v)
2054{
2055 sky2_write16(hw, SK_GMAC_REG(port,r), v);
2056}
2057
2058static inline void gma_set_addr(struct sky2_hw *hw, unsigned port, unsigned reg,
2059 const u8 *addr)
2060{
2061 gma_write16(hw, port, reg, (u16) addr[0] | ((u16) addr[1] << 8));
2062 gma_write16(hw, port, reg+4,(u16) addr[2] | ((u16) addr[3] << 8));
2063 gma_write16(hw, port, reg+8,(u16) addr[4] | ((u16) addr[5] << 8));
2064}
Stephen Hemminger56a645c2006-02-22 11:45:02 -08002065
2066/* PCI config space access */
2067static inline u32 sky2_pci_read32(const struct sky2_hw *hw, unsigned reg)
2068{
2069 return sky2_read32(hw, Y2_CFG_SPC + reg);
2070}
2071
2072static inline u16 sky2_pci_read16(const struct sky2_hw *hw, unsigned reg)
2073{
2074 return sky2_read16(hw, Y2_CFG_SPC + reg);
2075}
2076
2077static inline void sky2_pci_write32(struct sky2_hw *hw, unsigned reg, u32 val)
2078{
2079 sky2_write32(hw, Y2_CFG_SPC + reg, val);
2080}
2081
2082static inline void sky2_pci_write16(struct sky2_hw *hw, unsigned reg, u16 val)
2083{
2084 sky2_write16(hw, Y2_CFG_SPC + reg, val);
2085}
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002086#endif