]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/sky2.c
sky2: version 1.14
[net-next-2.6.git] / drivers / net / sky2.c
CommitLineData
cd28ab6a
SH
1/*
2 * New driver for Marvell Yukon 2 chipset.
3 * Based on earlier sk98lin, and skge driver.
4 *
5 * This driver intentionally does not support all the features
6 * of the original driver such as link fail-over and link management because
7 * those should be done at higher levels.
8 *
9 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
798b6b19 13 * the Free Software Foundation; either version 2 of the License.
cd28ab6a
SH
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
793b883e 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cd28ab6a
SH
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
793b883e 25#include <linux/crc32.h>
cd28ab6a
SH
26#include <linux/kernel.h>
27#include <linux/version.h>
28#include <linux/module.h>
29#include <linux/netdevice.h>
d0bbccfa 30#include <linux/dma-mapping.h>
cd28ab6a
SH
31#include <linux/etherdevice.h>
32#include <linux/ethtool.h>
33#include <linux/pci.h>
34#include <linux/ip.h>
35#include <linux/tcp.h>
36#include <linux/in.h>
37#include <linux/delay.h>
91c86df5 38#include <linux/workqueue.h>
d1f13708 39#include <linux/if_vlan.h>
d70cd51a 40#include <linux/prefetch.h>
ef743d33 41#include <linux/mii.h>
cd28ab6a
SH
42
43#include <asm/irq.h>
44
d1f13708
SH
45#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
46#define SKY2_VLAN_TAG_USED 1
47#endif
48
cd28ab6a
SH
49#include "sky2.h"
50
51#define DRV_NAME "sky2"
93cd791e 52#define DRV_VERSION "1.14"
cd28ab6a
SH
53#define PFX DRV_NAME " "
54
55/*
56 * The Yukon II chipset takes 64 bit command blocks (called list elements)
57 * that are organized into three (receive, transmit, status) different rings
14d0263f 58 * similar to Tigon3.
cd28ab6a
SH
59 */
60
14d0263f 61#define RX_LE_SIZE 1024
cd28ab6a 62#define RX_LE_BYTES (RX_LE_SIZE*sizeof(struct sky2_rx_le))
14d0263f 63#define RX_MAX_PENDING (RX_LE_SIZE/6 - 2)
13210ce5 64#define RX_DEF_PENDING RX_MAX_PENDING
82788c7a 65#define RX_SKB_ALIGN 8
22e11703 66#define RX_BUF_WRITE 16
793b883e
SH
67
68#define TX_RING_SIZE 512
69#define TX_DEF_PENDING (TX_RING_SIZE - 1)
70#define TX_MIN_PENDING 64
b19666d9 71#define MAX_SKB_TX_LE (4 + (sizeof(dma_addr_t)/sizeof(u32))*MAX_SKB_FRAGS)
cd28ab6a 72
793b883e 73#define STATUS_RING_SIZE 2048 /* 2 ports * (TX + 2*RX) */
cd28ab6a 74#define STATUS_LE_BYTES (STATUS_RING_SIZE*sizeof(struct sky2_status_le))
cd28ab6a
SH
75#define TX_WATCHDOG (5 * HZ)
76#define NAPI_WEIGHT 64
77#define PHY_RETRIES 1000
78
cb5d9547
SH
79#define RING_NEXT(x,s) (((x)+1) & ((s)-1))
80
cd28ab6a 81static const u32 default_msg =
793b883e
SH
82 NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK
83 | NETIF_MSG_TIMER | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR
3be92a70 84 | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN;
cd28ab6a 85
793b883e 86static int debug = -1; /* defaults above */
cd28ab6a
SH
87module_param(debug, int, 0);
88MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
89
14d0263f 90static int copybreak __read_mostly = 128;
bdb5c58e
SH
91module_param(copybreak, int, 0);
92MODULE_PARM_DESC(copybreak, "Receive copy threshold");
93
fb2690a9
SH
94static int disable_msi = 0;
95module_param(disable_msi, int, 0);
96MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)");
97
e561a83b 98static int idle_timeout = 0;
01bd7564 99module_param(idle_timeout, int, 0);
e561a83b 100MODULE_PARM_DESC(idle_timeout, "Watchdog timer for lost interrupts (ms)");
01bd7564 101
cd28ab6a 102static const struct pci_device_id sky2_id_table[] = {
e5b74c7d
SH
103 { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) }, /* SK-9Sxx */
104 { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E00) }, /* SK-9Exx */
2d2a3871 105 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b00) }, /* DGE-560T */
2f4a66ad 106 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4001) }, /* DGE-550SX */
508f89e7 107 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B02) }, /* DGE-560SX */
f1a0b6f5 108 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B03) }, /* DGE-550T */
e5b74c7d
SH
109 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4340) }, /* 88E8021 */
110 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4341) }, /* 88E8022 */
111 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4342) }, /* 88E8061 */
112 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4343) }, /* 88E8062 */
113 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4344) }, /* 88E8021 */
114 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4345) }, /* 88E8022 */
115 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4346) }, /* 88E8061 */
116 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) }, /* 88E8062 */
117 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) }, /* 88E8035 */
118 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) }, /* 88E8036 */
119 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4352) }, /* 88E8038 */
120 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4353) }, /* 88E8039 */
121 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4356) }, /* 88EC033 */
122 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) }, /* 88E8052 */
123 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) }, /* 88E8050 */
124 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) }, /* 88E8053 */
125 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4363) }, /* 88E8055 */
0a17e4c2
SH
126#ifdef broken
127 /* This device causes data corruption problems that are not resolved */
e5b74c7d 128 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4364) }, /* 88E8056 */
0a17e4c2 129#endif
e5b74c7d
SH
130 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4366) }, /* 88EC036 */
131 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4367) }, /* 88EC032 */
132 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4368) }, /* 88EC034 */
f1a0b6f5
SH
133 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4369) }, /* 88EC042 */
134 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436A) }, /* 88E8058 */
135 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436B) }, /* 88E8071 */
cd28ab6a
SH
136 { 0 }
137};
793b883e 138
cd28ab6a
SH
139MODULE_DEVICE_TABLE(pci, sky2_id_table);
140
141/* Avoid conditionals by using array */
142static const unsigned txqaddr[] = { Q_XA1, Q_XA2 };
143static const unsigned rxqaddr[] = { Q_R1, Q_R2 };
f4ea431b 144static const u32 portirq_msk[] = { Y2_IS_PORT_1, Y2_IS_PORT_2 };
cd28ab6a 145
92f965e8
SH
146/* This driver supports yukon2 chipset only */
147static const char *yukon2_name[] = {
148 "XL", /* 0xb3 */
149 "EC Ultra", /* 0xb4 */
93745494 150 "Extreme", /* 0xb5 */
92f965e8
SH
151 "EC", /* 0xb6 */
152 "FE", /* 0xb7 */
793b883e
SH
153};
154
793b883e 155/* Access to external PHY */
ef743d33 156static int gm_phy_write(struct sky2_hw *hw, unsigned port, u16 reg, u16 val)
cd28ab6a
SH
157{
158 int i;
159
160 gma_write16(hw, port, GM_SMI_DATA, val);
161 gma_write16(hw, port, GM_SMI_CTRL,
162 GM_SMI_CT_PHY_AD(PHY_ADDR_MARV) | GM_SMI_CT_REG_AD(reg));
163
164 for (i = 0; i < PHY_RETRIES; i++) {
cd28ab6a 165 if (!(gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_BUSY))
ef743d33 166 return 0;
793b883e 167 udelay(1);
cd28ab6a 168 }
ef743d33 169
793b883e 170 printk(KERN_WARNING PFX "%s: phy write timeout\n", hw->dev[port]->name);
ef743d33 171 return -ETIMEDOUT;
cd28ab6a
SH
172}
173
ef743d33 174static int __gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg, u16 *val)
cd28ab6a
SH
175{
176 int i;
177
793b883e 178 gma_write16(hw, port, GM_SMI_CTRL, GM_SMI_CT_PHY_AD(PHY_ADDR_MARV)
cd28ab6a
SH
179 | GM_SMI_CT_REG_AD(reg) | GM_SMI_CT_OP_RD);
180
181 for (i = 0; i < PHY_RETRIES; i++) {
ef743d33
SH
182 if (gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_RD_VAL) {
183 *val = gma_read16(hw, port, GM_SMI_DATA);
184 return 0;
185 }
186
793b883e 187 udelay(1);
cd28ab6a
SH
188 }
189
ef743d33
SH
190 return -ETIMEDOUT;
191}
192
193static u16 gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg)
194{
195 u16 v;
196
197 if (__gm_phy_read(hw, port, reg, &v) != 0)
198 printk(KERN_WARNING PFX "%s: phy read timeout\n", hw->dev[port]->name);
199 return v;
cd28ab6a
SH
200}
201
5afa0a9c 202
ae306cca
SH
203static void sky2_power_on(struct sky2_hw *hw)
204{
205 /* switch power to VCC (WA for VAUX problem) */
206 sky2_write8(hw, B0_POWER_CTRL,
207 PC_VAUX_ENA | PC_VCC_ENA | PC_VAUX_OFF | PC_VCC_ON);
5afa0a9c 208
ae306cca
SH
209 /* disable Core Clock Division, */
210 sky2_write32(hw, B2_Y2_CLK_CTRL, Y2_CLK_DIV_DIS);
d3bcfbeb 211
ae306cca
SH
212 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
213 /* enable bits are inverted */
214 sky2_write8(hw, B2_Y2_CLK_GATE,
215 Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
216 Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
217 Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);
218 else
219 sky2_write8(hw, B2_Y2_CLK_GATE, 0);
977bdf06 220
93745494 221 if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX) {
ae306cca 222 u32 reg1;
5afa0a9c 223
ae306cca
SH
224 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
225 reg1 = sky2_pci_read32(hw, PCI_DEV_REG4);
226 reg1 &= P_ASPM_CONTROL_MSK;
227 sky2_pci_write32(hw, PCI_DEV_REG4, reg1);
228 sky2_pci_write32(hw, PCI_DEV_REG5, 0);
5afa0a9c 229 }
ae306cca 230}
5afa0a9c 231
ae306cca
SH
232static void sky2_power_aux(struct sky2_hw *hw)
233{
234 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
235 sky2_write8(hw, B2_Y2_CLK_GATE, 0);
236 else
237 /* enable bits are inverted */
238 sky2_write8(hw, B2_Y2_CLK_GATE,
239 Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
240 Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
241 Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);
242
243 /* switch power to VAUX */
244 if (sky2_read16(hw, B0_CTST) & Y2_VAUX_AVAIL)
245 sky2_write8(hw, B0_POWER_CTRL,
246 (PC_VAUX_ENA | PC_VCC_ENA |
247 PC_VAUX_ON | PC_VCC_OFF));
5afa0a9c
SH
248}
249
d3bcfbeb 250static void sky2_gmac_reset(struct sky2_hw *hw, unsigned port)
cd28ab6a
SH
251{
252 u16 reg;
253
254 /* disable all GMAC IRQ's */
255 sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), 0);
256 /* disable PHY IRQs */
257 gm_phy_write(hw, port, PHY_MARV_INT_MASK, 0);
793b883e 258
cd28ab6a
SH
259 gma_write16(hw, port, GM_MC_ADDR_H1, 0); /* clear MC hash */
260 gma_write16(hw, port, GM_MC_ADDR_H2, 0);
261 gma_write16(hw, port, GM_MC_ADDR_H3, 0);
262 gma_write16(hw, port, GM_MC_ADDR_H4, 0);
263
264 reg = gma_read16(hw, port, GM_RX_CTRL);
265 reg |= GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA;
266 gma_write16(hw, port, GM_RX_CTRL, reg);
267}
268
16ad91e1
SH
269/* flow control to advertise bits */
270static const u16 copper_fc_adv[] = {
271 [FC_NONE] = 0,
272 [FC_TX] = PHY_M_AN_ASP,
273 [FC_RX] = PHY_M_AN_PC,
274 [FC_BOTH] = PHY_M_AN_PC | PHY_M_AN_ASP,
275};
276
277/* flow control to advertise bits when using 1000BaseX */
278static const u16 fiber_fc_adv[] = {
279 [FC_BOTH] = PHY_M_P_BOTH_MD_X,
280 [FC_TX] = PHY_M_P_ASYM_MD_X,
281 [FC_RX] = PHY_M_P_SYM_MD_X,
282 [FC_NONE] = PHY_M_P_NO_PAUSE_X,
283};
284
285/* flow control to GMA disable bits */
286static const u16 gm_fc_disable[] = {
287 [FC_NONE] = GM_GPCR_FC_RX_DIS | GM_GPCR_FC_TX_DIS,
288 [FC_TX] = GM_GPCR_FC_RX_DIS,
289 [FC_RX] = GM_GPCR_FC_TX_DIS,
290 [FC_BOTH] = 0,
291};
292
293
cd28ab6a
SH
294static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
295{
296 struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
2eaba1a2 297 u16 ctrl, ct1000, adv, pg, ledctrl, ledover, reg;
cd28ab6a 298
93745494
SH
299 if (sky2->autoneg == AUTONEG_ENABLE
300 && !(hw->chip_id == CHIP_ID_YUKON_XL
301 || hw->chip_id == CHIP_ID_YUKON_EC_U
302 || hw->chip_id == CHIP_ID_YUKON_EX)) {
cd28ab6a
SH
303 u16 ectrl = gm_phy_read(hw, port, PHY_MARV_EXT_CTRL);
304
305 ectrl &= ~(PHY_M_EC_M_DSC_MSK | PHY_M_EC_S_DSC_MSK |
793b883e 306 PHY_M_EC_MAC_S_MSK);
cd28ab6a
SH
307 ectrl |= PHY_M_EC_MAC_S(MAC_TX_CLK_25_MHZ);
308
309 if (hw->chip_id == CHIP_ID_YUKON_EC)
310 ectrl |= PHY_M_EC_DSC_2(2) | PHY_M_EC_DOWN_S_ENA;
311 else
312 ectrl |= PHY_M_EC_M_DSC(2) | PHY_M_EC_S_DSC(3);
313
314 gm_phy_write(hw, port, PHY_MARV_EXT_CTRL, ectrl);
315 }
316
317 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
b89165f2 318 if (sky2_is_copper(hw)) {
cd28ab6a
SH
319 if (hw->chip_id == CHIP_ID_YUKON_FE) {
320 /* enable automatic crossover */
321 ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO) >> 1;
322 } else {
323 /* disable energy detect */
324 ctrl &= ~PHY_M_PC_EN_DET_MSK;
325
326 /* enable automatic crossover */
327 ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO);
328
93745494
SH
329 if (sky2->autoneg == AUTONEG_ENABLE
330 && (hw->chip_id == CHIP_ID_YUKON_XL
331 || hw->chip_id == CHIP_ID_YUKON_EC_U
332 || hw->chip_id == CHIP_ID_YUKON_EX)) {
cd28ab6a
SH
333 ctrl &= ~PHY_M_PC_DSC_MSK;
334 ctrl |= PHY_M_PC_DSC(2) | PHY_M_PC_DOWN_S_ENA;
335 }
336 }
cd28ab6a
SH
337 } else {
338 /* workaround for deviation #4.88 (CRC errors) */
339 /* disable Automatic Crossover */
340
341 ctrl &= ~PHY_M_PC_MDIX_MSK;
b89165f2 342 }
cd28ab6a 343
b89165f2
SH
344 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
345
346 /* special setup for PHY 88E1112 Fiber */
347 if (hw->chip_id == CHIP_ID_YUKON_XL && !sky2_is_copper(hw)) {
348 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
cd28ab6a 349
b89165f2
SH
350 /* Fiber: select 1000BASE-X only mode MAC Specific Ctrl Reg. */
351 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
352 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
353 ctrl &= ~PHY_M_MAC_MD_MSK;
354 ctrl |= PHY_M_MAC_MODE_SEL(PHY_M_MAC_MD_1000BX);
355 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
356
357 if (hw->pmd_type == 'P') {
cd28ab6a
SH
358 /* select page 1 to access Fiber registers */
359 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 1);
b89165f2
SH
360
361 /* for SFP-module set SIGDET polarity to low */
362 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
363 ctrl |= PHY_M_FIB_SIGD_POL;
364 gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
cd28ab6a 365 }
b89165f2
SH
366
367 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
cd28ab6a
SH
368 }
369
7800fddc 370 ctrl = PHY_CT_RESET;
cd28ab6a
SH
371 ct1000 = 0;
372 adv = PHY_AN_CSMA;
2eaba1a2 373 reg = 0;
cd28ab6a
SH
374
375 if (sky2->autoneg == AUTONEG_ENABLE) {
b89165f2 376 if (sky2_is_copper(hw)) {
cd28ab6a
SH
377 if (sky2->advertising & ADVERTISED_1000baseT_Full)
378 ct1000 |= PHY_M_1000C_AFD;
379 if (sky2->advertising & ADVERTISED_1000baseT_Half)
380 ct1000 |= PHY_M_1000C_AHD;
381 if (sky2->advertising & ADVERTISED_100baseT_Full)
382 adv |= PHY_M_AN_100_FD;
383 if (sky2->advertising & ADVERTISED_100baseT_Half)
384 adv |= PHY_M_AN_100_HD;
385 if (sky2->advertising & ADVERTISED_10baseT_Full)
386 adv |= PHY_M_AN_10_FD;
387 if (sky2->advertising & ADVERTISED_10baseT_Half)
388 adv |= PHY_M_AN_10_HD;
709c6e7b 389
16ad91e1 390 adv |= copper_fc_adv[sky2->flow_mode];
b89165f2
SH
391 } else { /* special defines for FIBER (88E1040S only) */
392 if (sky2->advertising & ADVERTISED_1000baseT_Full)
393 adv |= PHY_M_AN_1000X_AFD;
394 if (sky2->advertising & ADVERTISED_1000baseT_Half)
395 adv |= PHY_M_AN_1000X_AHD;
cd28ab6a 396
16ad91e1 397 adv |= fiber_fc_adv[sky2->flow_mode];
709c6e7b 398 }
cd28ab6a
SH
399
400 /* Restart Auto-negotiation */
401 ctrl |= PHY_CT_ANE | PHY_CT_RE_CFG;
402 } else {
403 /* forced speed/duplex settings */
404 ct1000 = PHY_M_1000C_MSE;
405
2eaba1a2
SH
406 /* Disable auto update for duplex flow control and speed */
407 reg |= GM_GPCR_AU_ALL_DIS;
cd28ab6a
SH
408
409 switch (sky2->speed) {
410 case SPEED_1000:
411 ctrl |= PHY_CT_SP1000;
2eaba1a2 412 reg |= GM_GPCR_SPEED_1000;
cd28ab6a
SH
413 break;
414 case SPEED_100:
415 ctrl |= PHY_CT_SP100;
2eaba1a2 416 reg |= GM_GPCR_SPEED_100;
cd28ab6a
SH
417 break;
418 }
419
2eaba1a2
SH
420 if (sky2->duplex == DUPLEX_FULL) {
421 reg |= GM_GPCR_DUP_FULL;
422 ctrl |= PHY_CT_DUP_MD;
16ad91e1
SH
423 } else if (sky2->speed < SPEED_1000)
424 sky2->flow_mode = FC_NONE;
2eaba1a2 425
2eaba1a2 426
16ad91e1 427 reg |= gm_fc_disable[sky2->flow_mode];
2eaba1a2
SH
428
429 /* Forward pause packets to GMAC? */
16ad91e1 430 if (sky2->flow_mode & FC_RX)
2eaba1a2
SH
431 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
432 else
433 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
cd28ab6a
SH
434 }
435
2eaba1a2
SH
436 gma_write16(hw, port, GM_GP_CTRL, reg);
437
cd28ab6a
SH
438 if (hw->chip_id != CHIP_ID_YUKON_FE)
439 gm_phy_write(hw, port, PHY_MARV_1000T_CTRL, ct1000);
440
441 gm_phy_write(hw, port, PHY_MARV_AUNE_ADV, adv);
442 gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
443
444 /* Setup Phy LED's */
445 ledctrl = PHY_M_LED_PULS_DUR(PULS_170MS);
446 ledover = 0;
447
448 switch (hw->chip_id) {
449 case CHIP_ID_YUKON_FE:
450 /* on 88E3082 these bits are at 11..9 (shifted left) */
451 ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) << 1;
452
453 ctrl = gm_phy_read(hw, port, PHY_MARV_FE_LED_PAR);
454
455 /* delete ACT LED control bits */
456 ctrl &= ~PHY_M_FELP_LED1_MSK;
457 /* change ACT LED control to blink mode */
458 ctrl |= PHY_M_FELP_LED1_CTRL(LED_PAR_CTRL_ACT_BL);
459 gm_phy_write(hw, port, PHY_MARV_FE_LED_PAR, ctrl);
460 break;
461
462 case CHIP_ID_YUKON_XL:
793b883e 463 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
cd28ab6a
SH
464
465 /* select page 3 to access LED control register */
466 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
467
468 /* set LED Function Control register */
ed6d32c7
SH
469 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
470 (PHY_M_LEDC_LOS_CTRL(1) | /* LINK/ACT */
471 PHY_M_LEDC_INIT_CTRL(7) | /* 10 Mbps */
472 PHY_M_LEDC_STA1_CTRL(7) | /* 100 Mbps */
473 PHY_M_LEDC_STA0_CTRL(7))); /* 1000 Mbps */
cd28ab6a
SH
474
475 /* set Polarity Control register */
476 gm_phy_write(hw, port, PHY_MARV_PHY_STAT,
793b883e
SH
477 (PHY_M_POLC_LS1_P_MIX(4) |
478 PHY_M_POLC_IS0_P_MIX(4) |
479 PHY_M_POLC_LOS_CTRL(2) |
480 PHY_M_POLC_INIT_CTRL(2) |
481 PHY_M_POLC_STA1_CTRL(2) |
482 PHY_M_POLC_STA0_CTRL(2)));
cd28ab6a
SH
483
484 /* restore page register */
793b883e 485 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
cd28ab6a 486 break;
93745494 487
ed6d32c7 488 case CHIP_ID_YUKON_EC_U:
93745494 489 case CHIP_ID_YUKON_EX:
ed6d32c7
SH
490 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
491
492 /* select page 3 to access LED control register */
493 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
494
495 /* set LED Function Control register */
496 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
497 (PHY_M_LEDC_LOS_CTRL(1) | /* LINK/ACT */
498 PHY_M_LEDC_INIT_CTRL(8) | /* 10 Mbps */
499 PHY_M_LEDC_STA1_CTRL(7) | /* 100 Mbps */
500 PHY_M_LEDC_STA0_CTRL(7)));/* 1000 Mbps */
501
502 /* set Blink Rate in LED Timer Control Register */
503 gm_phy_write(hw, port, PHY_MARV_INT_MASK,
504 ledctrl | PHY_M_LED_BLINK_RT(BLINK_84MS));
505 /* restore page register */
506 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
507 break;
cd28ab6a
SH
508
509 default:
510 /* set Tx LED (LED_TX) to blink mode on Rx OR Tx activity */
511 ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) | PHY_M_LEDC_TX_CTRL;
512 /* turn off the Rx LED (LED_RX) */
0efdf262 513 ledover &= ~PHY_M_LED_MO_RX;
cd28ab6a
SH
514 }
515
9467a8fc
SH
516 if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
517 hw->chip_rev == CHIP_REV_YU_EC_U_A1) {
977bdf06 518 /* apply fixes in PHY AFE */
ed6d32c7
SH
519 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255);
520
977bdf06 521 /* increase differential signal amplitude in 10BASE-T */
ed6d32c7
SH
522 gm_phy_write(hw, port, 0x18, 0xaa99);
523 gm_phy_write(hw, port, 0x17, 0x2011);
cd28ab6a 524
977bdf06 525 /* fix for IEEE A/B Symmetry failure in 1000BASE-T */
ed6d32c7
SH
526 gm_phy_write(hw, port, 0x18, 0xa204);
527 gm_phy_write(hw, port, 0x17, 0x2002);
977bdf06
SH
528
529 /* set page register to 0 */
9467a8fc 530 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
93745494 531 } else if (hw->chip_id != CHIP_ID_YUKON_EX) {
977bdf06 532 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
cd28ab6a 533
977bdf06
SH
534 if (sky2->autoneg == AUTONEG_DISABLE || sky2->speed == SPEED_100) {
535 /* turn on 100 Mbps LED (LED_LINK100) */
0efdf262 536 ledover |= PHY_M_LED_MO_100;
977bdf06 537 }
cd28ab6a 538
977bdf06
SH
539 if (ledover)
540 gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);
541
542 }
2eaba1a2 543
d571b694 544 /* Enable phy interrupt on auto-negotiation complete (or link up) */
cd28ab6a
SH
545 if (sky2->autoneg == AUTONEG_ENABLE)
546 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_COMPL);
547 else
548 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);
549}
550
d3bcfbeb
SH
551static void sky2_phy_power(struct sky2_hw *hw, unsigned port, int onoff)
552{
553 u32 reg1;
554 static const u32 phy_power[]
555 = { PCI_Y2_PHY1_POWD, PCI_Y2_PHY2_POWD };
556
557 /* looks like this XL is back asswards .. */
558 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
559 onoff = !onoff;
560
aed2cec4 561 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
d3bcfbeb 562 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
d3bcfbeb
SH
563 if (onoff)
564 /* Turn off phy power saving */
565 reg1 &= ~phy_power[port];
566 else
567 reg1 |= phy_power[port];
568
569 sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
98232f85 570 sky2_pci_read32(hw, PCI_DEV_REG1);
aed2cec4 571 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
d3bcfbeb
SH
572 udelay(100);
573}
574
1b537565
SH
575/* Force a renegotiation */
576static void sky2_phy_reinit(struct sky2_port *sky2)
577{
e07b1aa8 578 spin_lock_bh(&sky2->phy_lock);
1b537565 579 sky2_phy_init(sky2->hw, sky2->port);
e07b1aa8 580 spin_unlock_bh(&sky2->phy_lock);
1b537565
SH
581}
582
e3173832
SH
583/* Put device in state to listen for Wake On Lan */
584static void sky2_wol_init(struct sky2_port *sky2)
585{
586 struct sky2_hw *hw = sky2->hw;
587 unsigned port = sky2->port;
588 enum flow_control save_mode;
589 u16 ctrl;
590 u32 reg1;
591
592 /* Bring hardware out of reset */
593 sky2_write16(hw, B0_CTST, CS_RST_CLR);
594 sky2_write16(hw, SK_REG(port, GMAC_LINK_CTRL), GMLC_RST_CLR);
595
596 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
597 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);
598
599 /* Force to 10/100
600 * sky2_reset will re-enable on resume
601 */
602 save_mode = sky2->flow_mode;
603 ctrl = sky2->advertising;
604
605 sky2->advertising &= ~(ADVERTISED_1000baseT_Half|ADVERTISED_1000baseT_Full);
606 sky2->flow_mode = FC_NONE;
607 sky2_phy_power(hw, port, 1);
608 sky2_phy_reinit(sky2);
609
610 sky2->flow_mode = save_mode;
611 sky2->advertising = ctrl;
612
613 /* Set GMAC to no flow control and auto update for speed/duplex */
614 gma_write16(hw, port, GM_GP_CTRL,
615 GM_GPCR_FC_TX_DIS|GM_GPCR_TX_ENA|GM_GPCR_RX_ENA|
616 GM_GPCR_DUP_FULL|GM_GPCR_FC_RX_DIS|GM_GPCR_AU_FCT_DIS);
617
618 /* Set WOL address */
619 memcpy_toio(hw->regs + WOL_REGS(port, WOL_MAC_ADDR),
620 sky2->netdev->dev_addr, ETH_ALEN);
621
622 /* Turn on appropriate WOL control bits */
623 sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), WOL_CTL_CLEAR_RESULT);
624 ctrl = 0;
625 if (sky2->wol & WAKE_PHY)
626 ctrl |= WOL_CTL_ENA_PME_ON_LINK_CHG|WOL_CTL_ENA_LINK_CHG_UNIT;
627 else
628 ctrl |= WOL_CTL_DIS_PME_ON_LINK_CHG|WOL_CTL_DIS_LINK_CHG_UNIT;
629
630 if (sky2->wol & WAKE_MAGIC)
631 ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
632 else
633 ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;;
634
635 ctrl |= WOL_CTL_DIS_PME_ON_PATTERN|WOL_CTL_DIS_PATTERN_UNIT;
636 sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), ctrl);
637
638 /* Turn on legacy PCI-Express PME mode */
639 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
640 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
641 reg1 |= PCI_Y2_PME_LEGACY;
642 sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
643 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
644
645 /* block receiver */
646 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
647
648}
649
cd28ab6a
SH
650static void sky2_mac_init(struct sky2_hw *hw, unsigned port)
651{
652 struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
653 u16 reg;
654 int i;
655 const u8 *addr = hw->dev[port]->dev_addr;
656
42eeea01
SH
657 sky2_write32(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
658 sky2_write32(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR|GPC_ENA_PAUSE);
cd28ab6a
SH
659
660 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);
661
793b883e 662 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0 && port == 1) {
cd28ab6a
SH
663 /* WA DEV_472 -- looks like crossed wires on port 2 */
664 /* clear GMAC 1 Control reset */
665 sky2_write8(hw, SK_REG(0, GMAC_CTRL), GMC_RST_CLR);
666 do {
667 sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_SET);
668 sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_CLR);
669 } while (gm_phy_read(hw, 1, PHY_MARV_ID0) != PHY_MARV_ID0_VAL ||
670 gm_phy_read(hw, 1, PHY_MARV_ID1) != PHY_MARV_ID1_Y2 ||
671 gm_phy_read(hw, 1, PHY_MARV_INT_MASK) != 0);
672 }
673
793b883e 674 sky2_read16(hw, SK_REG(port, GMAC_IRQ_SRC));
cd28ab6a 675
2eaba1a2
SH
676 /* Enable Transmit FIFO Underrun */
677 sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), GMAC_DEF_MSK);
678
e07b1aa8 679 spin_lock_bh(&sky2->phy_lock);
cd28ab6a 680 sky2_phy_init(hw, port);
e07b1aa8 681 spin_unlock_bh(&sky2->phy_lock);
cd28ab6a
SH
682
683 /* MIB clear */
684 reg = gma_read16(hw, port, GM_PHY_ADDR);
685 gma_write16(hw, port, GM_PHY_ADDR, reg | GM_PAR_MIB_CLR);
686
43f2f104
SH
687 for (i = GM_MIB_CNT_BASE; i <= GM_MIB_CNT_END; i += 4)
688 gma_read16(hw, port, i);
cd28ab6a
SH
689 gma_write16(hw, port, GM_PHY_ADDR, reg);
690
691 /* transmit control */
692 gma_write16(hw, port, GM_TX_CTRL, TX_COL_THR(TX_COL_DEF));
693
694 /* receive control reg: unicast + multicast + no FCS */
695 gma_write16(hw, port, GM_RX_CTRL,
793b883e 696 GM_RXCR_UCF_ENA | GM_RXCR_CRC_DIS | GM_RXCR_MCF_ENA);
cd28ab6a
SH
697
698 /* transmit flow control */
699 gma_write16(hw, port, GM_TX_FLOW_CTRL, 0xffff);
700
701 /* transmit parameter */
702 gma_write16(hw, port, GM_TX_PARAM,
703 TX_JAM_LEN_VAL(TX_JAM_LEN_DEF) |
704 TX_JAM_IPG_VAL(TX_JAM_IPG_DEF) |
705 TX_IPG_JAM_DATA(TX_IPG_JAM_DEF) |
706 TX_BACK_OFF_LIM(TX_BOF_LIM_DEF));
707
708 /* serial mode register */
709 reg = DATA_BLIND_VAL(DATA_BLIND_DEF) |
6b1a3aef 710 GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
cd28ab6a 711
6b1a3aef 712 if (hw->dev[port]->mtu > ETH_DATA_LEN)
cd28ab6a
SH
713 reg |= GM_SMOD_JUMBO_ENA;
714
715 gma_write16(hw, port, GM_SERIAL_MODE, reg);
716
cd28ab6a
SH
717 /* virtual address for data */
718 gma_set_addr(hw, port, GM_SRC_ADDR_2L, addr);
719
793b883e
SH
720 /* physical address: used for pause frames */
721 gma_set_addr(hw, port, GM_SRC_ADDR_1L, addr);
722
723 /* ignore counter overflows */
cd28ab6a
SH
724 gma_write16(hw, port, GM_TX_IRQ_MSK, 0);
725 gma_write16(hw, port, GM_RX_IRQ_MSK, 0);
726 gma_write16(hw, port, GM_TR_IRQ_MSK, 0);
727
728 /* Configure Rx MAC FIFO */
729 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_CLR);
70f1be48
SH
730 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
731 GMF_OPER_ON | GMF_RX_F_FL_ON);
cd28ab6a 732
d571b694 733 /* Flush Rx MAC FIFO on any flow control or error */
42eeea01 734 sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), GMR_FS_ANY_ERR);
cd28ab6a 735
8df9a876
SH
736 /* Set threshold to 0xa (64 bytes) + 1 to workaround pause bug */
737 sky2_write16(hw, SK_REG(port, RX_GMF_FL_THR), RX_GMF_FL_THR_DEF+1);
cd28ab6a
SH
738
739 /* Configure Tx MAC FIFO */
740 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR);
741 sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON);
5a5b1ea0 742
93745494 743 if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX) {
8df9a876 744 sky2_write8(hw, SK_REG(port, RX_GMF_LP_THR), 768/8);
5a5b1ea0 745 sky2_write8(hw, SK_REG(port, RX_GMF_UP_THR), 1024/8);
b628ed98
SH
746
747 /* set Tx GMAC FIFO Almost Empty Threshold */
748 sky2_write32(hw, SK_REG(port, TX_GMF_AE_THR),
749 (ECU_JUMBO_WM << 16) | ECU_AE_THR);
750
751 if (hw->dev[port]->mtu > ETH_DATA_LEN)
752 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
753 TX_JUMBO_ENA | TX_STFW_DIS);
754 else
755 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
756 TX_JUMBO_DIS | TX_STFW_ENA);
5a5b1ea0
SH
757 }
758
cd28ab6a
SH
759}
760
67712901
SH
761/* Assign Ram Buffer allocation to queue */
762static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, u32 space)
cd28ab6a 763{
67712901
SH
764 u32 end;
765
766 /* convert from K bytes to qwords used for hw register */
767 start *= 1024/8;
768 space *= 1024/8;
769 end = start + space - 1;
793b883e 770
cd28ab6a
SH
771 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR);
772 sky2_write32(hw, RB_ADDR(q, RB_START), start);
773 sky2_write32(hw, RB_ADDR(q, RB_END), end);
774 sky2_write32(hw, RB_ADDR(q, RB_WP), start);
775 sky2_write32(hw, RB_ADDR(q, RB_RP), start);
776
777 if (q == Q_R1 || q == Q_R2) {
1c28f6ba 778 u32 tp = space - space/4;
793b883e 779
1c28f6ba
SH
780 /* On receive queue's set the thresholds
781 * give receiver priority when > 3/4 full
782 * send pause when down to 2K
783 */
784 sky2_write32(hw, RB_ADDR(q, RB_RX_UTHP), tp);
785 sky2_write32(hw, RB_ADDR(q, RB_RX_LTHP), space/2);
793b883e 786
1c28f6ba
SH
787 tp = space - 2048/8;
788 sky2_write32(hw, RB_ADDR(q, RB_RX_UTPP), tp);
789 sky2_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4);
cd28ab6a
SH
790 } else {
791 /* Enable store & forward on Tx queue's because
792 * Tx FIFO is only 1K on Yukon
793 */
794 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD);
795 }
796
797 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD);
793b883e 798 sky2_read8(hw, RB_ADDR(q, RB_CTRL));
cd28ab6a
SH
799}
800
cd28ab6a 801/* Setup Bus Memory Interface */
af4ed7e6 802static void sky2_qset(struct sky2_hw *hw, u16 q)
cd28ab6a
SH
803{
804 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_RESET);
805 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_OPER_INIT);
806 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_FIFO_OP_ON);
af4ed7e6 807 sky2_write32(hw, Q_ADDR(q, Q_WM), BMU_WM_DEFAULT);
cd28ab6a
SH
808}
809
cd28ab6a
SH
810/* Setup prefetch unit registers. This is the interface between
811 * hardware and driver list elements
812 */
8cc048e3 813static void sky2_prefetch_init(struct sky2_hw *hw, u32 qaddr,
cd28ab6a
SH
814 u64 addr, u32 last)
815{
cd28ab6a
SH
816 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
817 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_CLR);
818 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_HI), addr >> 32);
819 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_LO), (u32) addr);
820 sky2_write16(hw, Y2_QADDR(qaddr, PREF_UNIT_LAST_IDX), last);
821 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_OP_ON);
793b883e
SH
822
823 sky2_read32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL));
cd28ab6a
SH
824}
825
793b883e
SH
826static inline struct sky2_tx_le *get_tx_le(struct sky2_port *sky2)
827{
828 struct sky2_tx_le *le = sky2->tx_le + sky2->tx_prod;
829
cb5d9547 830 sky2->tx_prod = RING_NEXT(sky2->tx_prod, TX_RING_SIZE);
291ea614 831 le->ctrl = 0;
793b883e
SH
832 return le;
833}
cd28ab6a 834
291ea614
SH
835static inline struct tx_ring_info *tx_le_re(struct sky2_port *sky2,
836 struct sky2_tx_le *le)
837{
838 return sky2->tx_ring + (le - sky2->tx_le);
839}
840
290d4de5
SH
841/* Update chip's next pointer */
842static inline void sky2_put_idx(struct sky2_hw *hw, unsigned q, u16 idx)
cd28ab6a 843{
98232f85 844 q = Y2_QADDR(q, PREF_UNIT_PUT_IDX);
762c2de2 845 wmb();
98232f85
SH
846 sky2_write16(hw, q, idx);
847 sky2_read16(hw, q);
cd28ab6a
SH
848}
849
793b883e 850
cd28ab6a
SH
851static inline struct sky2_rx_le *sky2_next_rx(struct sky2_port *sky2)
852{
853 struct sky2_rx_le *le = sky2->rx_le + sky2->rx_put;
cb5d9547 854 sky2->rx_put = RING_NEXT(sky2->rx_put, RX_LE_SIZE);
291ea614 855 le->ctrl = 0;
cd28ab6a
SH
856 return le;
857}
858
a018e330
SH
859/* Return high part of DMA address (could be 32 or 64 bit) */
860static inline u32 high32(dma_addr_t a)
861{
a036119f 862 return sizeof(a) > sizeof(u32) ? (a >> 16) >> 16 : 0;
a018e330
SH
863}
864
14d0263f
SH
865/* Build description to hardware for one receive segment */
866static void sky2_rx_add(struct sky2_port *sky2, u8 op,
867 dma_addr_t map, unsigned len)
cd28ab6a
SH
868{
869 struct sky2_rx_le *le;
734d1868 870 u32 hi = high32(map);
cd28ab6a 871
793b883e 872 if (sky2->rx_addr64 != hi) {
cd28ab6a 873 le = sky2_next_rx(sky2);
793b883e 874 le->addr = cpu_to_le32(hi);
cd28ab6a 875 le->opcode = OP_ADDR64 | HW_OWNER;
734d1868 876 sky2->rx_addr64 = high32(map + len);
cd28ab6a 877 }
793b883e 878
cd28ab6a 879 le = sky2_next_rx(sky2);
734d1868
SH
880 le->addr = cpu_to_le32((u32) map);
881 le->length = cpu_to_le16(len);
14d0263f 882 le->opcode = op | HW_OWNER;
cd28ab6a
SH
883}
884
14d0263f
SH
885/* Build description to hardware for one possibly fragmented skb */
886static void sky2_rx_submit(struct sky2_port *sky2,
887 const struct rx_ring_info *re)
888{
889 int i;
890
891 sky2_rx_add(sky2, OP_PACKET, re->data_addr, sky2->rx_data_size);
892
893 for (i = 0; i < skb_shinfo(re->skb)->nr_frags; i++)
894 sky2_rx_add(sky2, OP_BUFFER, re->frag_addr[i], PAGE_SIZE);
895}
896
897
898static void sky2_rx_map_skb(struct pci_dev *pdev, struct rx_ring_info *re,
899 unsigned size)
900{
901 struct sk_buff *skb = re->skb;
902 int i;
903
904 re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE);
905 pci_unmap_len_set(re, data_size, size);
906
907 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
908 re->frag_addr[i] = pci_map_page(pdev,
909 skb_shinfo(skb)->frags[i].page,
910 skb_shinfo(skb)->frags[i].page_offset,
911 skb_shinfo(skb)->frags[i].size,
912 PCI_DMA_FROMDEVICE);
913}
914
915static void sky2_rx_unmap_skb(struct pci_dev *pdev, struct rx_ring_info *re)
916{
917 struct sk_buff *skb = re->skb;
918 int i;
919
920 pci_unmap_single(pdev, re->data_addr, pci_unmap_len(re, data_size),
921 PCI_DMA_FROMDEVICE);
922
923 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
924 pci_unmap_page(pdev, re->frag_addr[i],
925 skb_shinfo(skb)->frags[i].size,
926 PCI_DMA_FROMDEVICE);
927}
793b883e 928
cd28ab6a
SH
929/* Tell chip where to start receive checksum.
930 * Actually has two checksums, but set both same to avoid possible byte
931 * order problems.
932 */
793b883e 933static void rx_set_checksum(struct sky2_port *sky2)
cd28ab6a
SH
934{
935 struct sky2_rx_le *le;
936
cd28ab6a 937 le = sky2_next_rx(sky2);
f65b138c 938 le->addr = cpu_to_le32((ETH_HLEN << 16) | ETH_HLEN);
cd28ab6a
SH
939 le->ctrl = 0;
940 le->opcode = OP_TCPSTART | HW_OWNER;
793b883e 941
793b883e
SH
942 sky2_write32(sky2->hw,
943 Q_ADDR(rxqaddr[sky2->port], Q_CSR),
944 sky2->rx_csum ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
cd28ab6a
SH
945
946}
947
6b1a3aef
SH
948/*
949 * The RX Stop command will not work for Yukon-2 if the BMU does not
950 * reach the end of packet and since we can't make sure that we have
951 * incoming data, we must reset the BMU while it is not doing a DMA
952 * transfer. Since it is possible that the RX path is still active,
953 * the RX RAM buffer will be stopped first, so any possible incoming
954 * data will not trigger a DMA. After the RAM buffer is stopped, the
955 * BMU is polled until any DMA in progress is ended and only then it
956 * will be reset.
957 */
958static void sky2_rx_stop(struct sky2_port *sky2)
959{
960 struct sky2_hw *hw = sky2->hw;
961 unsigned rxq = rxqaddr[sky2->port];
962 int i;
963
964 /* disable the RAM Buffer receive queue */
965 sky2_write8(hw, RB_ADDR(rxq, RB_CTRL), RB_DIS_OP_MD);
966
967 for (i = 0; i < 0xffff; i++)
968 if (sky2_read8(hw, RB_ADDR(rxq, Q_RSL))
969 == sky2_read8(hw, RB_ADDR(rxq, Q_RL)))
970 goto stopped;
971
972 printk(KERN_WARNING PFX "%s: receiver stop failed\n",
973 sky2->netdev->name);
974stopped:
975 sky2_write32(hw, Q_ADDR(rxq, Q_CSR), BMU_RST_SET | BMU_FIFO_RST);
976
977 /* reset the Rx prefetch unit */
978 sky2_write32(hw, Y2_QADDR(rxq, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
979}
793b883e 980
d571b694 981/* Clean out receive buffer area, assumes receiver hardware stopped */
cd28ab6a
SH
982static void sky2_rx_clean(struct sky2_port *sky2)
983{
984 unsigned i;
985
986 memset(sky2->rx_le, 0, RX_LE_BYTES);
793b883e 987 for (i = 0; i < sky2->rx_pending; i++) {
291ea614 988 struct rx_ring_info *re = sky2->rx_ring + i;
cd28ab6a
SH
989
990 if (re->skb) {
14d0263f 991 sky2_rx_unmap_skb(sky2->hw->pdev, re);
cd28ab6a
SH
992 kfree_skb(re->skb);
993 re->skb = NULL;
994 }
995 }
996}
997
ef743d33
SH
998/* Basic MII support */
999static int sky2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1000{
1001 struct mii_ioctl_data *data = if_mii(ifr);
1002 struct sky2_port *sky2 = netdev_priv(dev);
1003 struct sky2_hw *hw = sky2->hw;
1004 int err = -EOPNOTSUPP;
1005
1006 if (!netif_running(dev))
1007 return -ENODEV; /* Phy still in reset */
1008
d89e1343 1009 switch (cmd) {
ef743d33
SH
1010 case SIOCGMIIPHY:
1011 data->phy_id = PHY_ADDR_MARV;
1012
1013 /* fallthru */
1014 case SIOCGMIIREG: {
1015 u16 val = 0;
91c86df5 1016
e07b1aa8 1017 spin_lock_bh(&sky2->phy_lock);
ef743d33 1018 err = __gm_phy_read(hw, sky2->port, data->reg_num & 0x1f, &val);
e07b1aa8 1019 spin_unlock_bh(&sky2->phy_lock);
91c86df5 1020
ef743d33
SH
1021 data->val_out = val;
1022 break;
1023 }
1024
1025 case SIOCSMIIREG:
1026 if (!capable(CAP_NET_ADMIN))
1027 return -EPERM;
1028
e07b1aa8 1029 spin_lock_bh(&sky2->phy_lock);
ef743d33
SH
1030 err = gm_phy_write(hw, sky2->port, data->reg_num & 0x1f,
1031 data->val_in);
e07b1aa8 1032 spin_unlock_bh(&sky2->phy_lock);
ef743d33
SH
1033 break;
1034 }
1035 return err;
1036}
1037
d1f13708
SH
1038#ifdef SKY2_VLAN_TAG_USED
1039static void sky2_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
1040{
1041 struct sky2_port *sky2 = netdev_priv(dev);
1042 struct sky2_hw *hw = sky2->hw;
1043 u16 port = sky2->port;
d1f13708 1044
2bb8c262 1045 netif_tx_lock_bh(dev);
d1f13708
SH
1046
1047 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), RX_VLAN_STRIP_ON);
1048 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_VLAN_TAG_ON);
1049 sky2->vlgrp = grp;
1050
2bb8c262 1051 netif_tx_unlock_bh(dev);
d1f13708
SH
1052}
1053
1054static void sky2_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
1055{
1056 struct sky2_port *sky2 = netdev_priv(dev);
1057 struct sky2_hw *hw = sky2->hw;
1058 u16 port = sky2->port;
d1f13708 1059
2bb8c262 1060 netif_tx_lock_bh(dev);
d1f13708
SH
1061
1062 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), RX_VLAN_STRIP_OFF);
1063 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_VLAN_TAG_OFF);
5c15bdec 1064 vlan_group_set_device(sky2->vlgrp, vid, NULL);
d1f13708 1065
2bb8c262 1066 netif_tx_unlock_bh(dev);
d1f13708
SH
1067}
1068#endif
1069
82788c7a 1070/*
14d0263f
SH
1071 * Allocate an skb for receiving. If the MTU is large enough
1072 * make the skb non-linear with a fragment list of pages.
1073 *
82788c7a
SH
1074 * It appears the hardware has a bug in the FIFO logic that
1075 * cause it to hang if the FIFO gets overrun and the receive buffer
497d7c86
SH
1076 * is not 64 byte aligned. The buffer returned from netdev_alloc_skb is
1077 * aligned except if slab debugging is enabled.
82788c7a 1078 */
14d0263f 1079static struct sk_buff *sky2_rx_alloc(struct sky2_port *sky2)
82788c7a
SH
1080{
1081 struct sk_buff *skb;
14d0263f
SH
1082 unsigned long p;
1083 int i;
82788c7a 1084
14d0263f
SH
1085 skb = netdev_alloc_skb(sky2->netdev, sky2->rx_data_size + RX_SKB_ALIGN);
1086 if (!skb)
1087 goto nomem;
1088
1089 p = (unsigned long) skb->data;
1090 skb_reserve(skb, ALIGN(p, RX_SKB_ALIGN) - p);
1091
1092 for (i = 0; i < sky2->rx_nfrags; i++) {
1093 struct page *page = alloc_page(GFP_ATOMIC);
1094
1095 if (!page)
1096 goto free_partial;
1097 skb_fill_page_desc(skb, i, page, 0, PAGE_SIZE);
82788c7a
SH
1098 }
1099
1100 return skb;
14d0263f
SH
1101free_partial:
1102 kfree_skb(skb);
1103nomem:
1104 return NULL;
82788c7a
SH
1105}
1106
cd28ab6a
SH
1107/*
1108 * Allocate and setup receiver buffer pool.
14d0263f
SH
1109 * Normal case this ends up creating one list element for skb
1110 * in the receive ring. Worst case if using large MTU and each
1111 * allocation falls on a different 64 bit region, that results
1112 * in 6 list elements per ring entry.
1113 * One element is used for checksum enable/disable, and one
1114 * extra to avoid wrap.
cd28ab6a 1115 */
6b1a3aef 1116static int sky2_rx_start(struct sky2_port *sky2)
cd28ab6a 1117{
6b1a3aef 1118 struct sky2_hw *hw = sky2->hw;
14d0263f 1119 struct rx_ring_info *re;
6b1a3aef 1120 unsigned rxq = rxqaddr[sky2->port];
14d0263f 1121 unsigned i, size, space, thresh;
cd28ab6a 1122
6b1a3aef 1123 sky2->rx_put = sky2->rx_next = 0;
af4ed7e6 1124 sky2_qset(hw, rxq);
977bdf06 1125
c3905bc4
SH
1126 /* On PCI express lowering the watermark gives better performance */
1127 if (pci_find_capability(hw->pdev, PCI_CAP_ID_EXP))
1128 sky2_write32(hw, Q_ADDR(rxq, Q_WM), BMU_WM_PEX);
1129
1130 /* These chips have no ram buffer?
1131 * MAC Rx RAM Read is controlled by hardware */
8df9a876 1132 if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
c3905bc4
SH
1133 (hw->chip_rev == CHIP_REV_YU_EC_U_A1
1134 || hw->chip_rev == CHIP_REV_YU_EC_U_B0))
977bdf06 1135 sky2_write32(hw, Q_ADDR(rxq, Q_F), F_M_RX_RAM_DIS);
977bdf06 1136
6b1a3aef
SH
1137 sky2_prefetch_init(hw, rxq, sky2->rx_le_map, RX_LE_SIZE - 1);
1138
1139 rx_set_checksum(sky2);
14d0263f
SH
1140
1141 /* Space needed for frame data + headers rounded up */
1142 size = ALIGN(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8)
1143 + 8;
1144
1145 /* Stopping point for hardware truncation */
1146 thresh = (size - 8) / sizeof(u32);
1147
1148 /* Account for overhead of skb - to avoid order > 0 allocation */
1149 space = SKB_DATA_ALIGN(size) + NET_SKB_PAD
1150 + sizeof(struct skb_shared_info);
1151
1152 sky2->rx_nfrags = space >> PAGE_SHIFT;
1153 BUG_ON(sky2->rx_nfrags > ARRAY_SIZE(re->frag_addr));
1154
1155 if (sky2->rx_nfrags != 0) {
1156 /* Compute residue after pages */
1157 space = sky2->rx_nfrags << PAGE_SHIFT;
1158
1159 if (space < size)
1160 size -= space;
1161 else
1162 size = 0;
1163
1164 /* Optimize to handle small packets and headers */
1165 if (size < copybreak)
1166 size = copybreak;
1167 if (size < ETH_HLEN)
1168 size = ETH_HLEN;
1169 }
1170 sky2->rx_data_size = size;
1171
1172 /* Fill Rx ring */
793b883e 1173 for (i = 0; i < sky2->rx_pending; i++) {
14d0263f 1174 re = sky2->rx_ring + i;
cd28ab6a 1175
14d0263f 1176 re->skb = sky2_rx_alloc(sky2);
cd28ab6a
SH
1177 if (!re->skb)
1178 goto nomem;
1179
14d0263f
SH
1180 sky2_rx_map_skb(hw->pdev, re, sky2->rx_data_size);
1181 sky2_rx_submit(sky2, re);
cd28ab6a
SH
1182 }
1183
a1433ac4
SH
1184 /*
1185 * The receiver hangs if it receives frames larger than the
1186 * packet buffer. As a workaround, truncate oversize frames, but
1187 * the register is limited to 9 bits, so if you do frames > 2052
1188 * you better get the MTU right!
1189 */
a1433ac4
SH
1190 if (thresh > 0x1ff)
1191 sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_OFF);
1192 else {
1193 sky2_write16(hw, SK_REG(sky2->port, RX_GMF_TR_THR), thresh);
1194 sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_ON);
1195 }
1196
6b1a3aef
SH
1197 /* Tell chip about available buffers */
1198 sky2_write16(hw, Y2_QADDR(rxq, PREF_UNIT_PUT_IDX), sky2->rx_put);
cd28ab6a
SH
1199 return 0;
1200nomem:
1201 sky2_rx_clean(sky2);
1202 return -ENOMEM;
1203}
1204
1205/* Bring up network interface. */
1206static int sky2_up(struct net_device *dev)
1207{
1208 struct sky2_port *sky2 = netdev_priv(dev);
1209 struct sky2_hw *hw = sky2->hw;
1210 unsigned port = sky2->port;
67712901 1211 u32 ramsize, imask;
ee7abb04 1212 int cap, err = -ENOMEM;
843a46f4 1213 struct net_device *otherdev = hw->dev[sky2->port^1];
cd28ab6a 1214
ee7abb04
SH
1215 /*
1216 * On dual port PCI-X card, there is an problem where status
1217 * can be received out of order due to split transactions
843a46f4 1218 */
ee7abb04
SH
1219 if (otherdev && netif_running(otherdev) &&
1220 (cap = pci_find_capability(hw->pdev, PCI_CAP_ID_PCIX))) {
1221 struct sky2_port *osky2 = netdev_priv(otherdev);
1222 u16 cmd;
1223
1224 cmd = sky2_pci_read16(hw, cap + PCI_X_CMD);
1225 cmd &= ~PCI_X_CMD_MAX_SPLIT;
1226 sky2_pci_write16(hw, cap + PCI_X_CMD, cmd);
1227
1228 sky2->rx_csum = 0;
1229 osky2->rx_csum = 0;
1230 }
843a46f4 1231
cd28ab6a
SH
1232 if (netif_msg_ifup(sky2))
1233 printk(KERN_INFO PFX "%s: enabling interface\n", dev->name);
1234
1235 /* must be power of 2 */
1236 sky2->tx_le = pci_alloc_consistent(hw->pdev,
793b883e
SH
1237 TX_RING_SIZE *
1238 sizeof(struct sky2_tx_le),
cd28ab6a
SH
1239 &sky2->tx_le_map);
1240 if (!sky2->tx_le)
1241 goto err_out;
1242
6cdbbdf3 1243 sky2->tx_ring = kcalloc(TX_RING_SIZE, sizeof(struct tx_ring_info),
cd28ab6a
SH
1244 GFP_KERNEL);
1245 if (!sky2->tx_ring)
1246 goto err_out;
1247 sky2->tx_prod = sky2->tx_cons = 0;
cd28ab6a
SH
1248
1249 sky2->rx_le = pci_alloc_consistent(hw->pdev, RX_LE_BYTES,
1250 &sky2->rx_le_map);
1251 if (!sky2->rx_le)
1252 goto err_out;
1253 memset(sky2->rx_le, 0, RX_LE_BYTES);
1254
291ea614 1255 sky2->rx_ring = kcalloc(sky2->rx_pending, sizeof(struct rx_ring_info),
cd28ab6a
SH
1256 GFP_KERNEL);
1257 if (!sky2->rx_ring)
1258 goto err_out;
1259
d3bcfbeb
SH
1260 sky2_phy_power(hw, port, 1);
1261
cd28ab6a
SH
1262 sky2_mac_init(hw, port);
1263
67712901
SH
1264 /* Register is number of 4K blocks on internal RAM buffer. */
1265 ramsize = sky2_read8(hw, B2_E_0) * 4;
1266 printk(KERN_INFO PFX "%s: ram buffer %dK\n", dev->name, ramsize);
1c28f6ba 1267
67712901
SH
1268 if (ramsize > 0) {
1269 u32 rxspace;
cd28ab6a 1270
67712901
SH
1271 if (ramsize < 16)
1272 rxspace = ramsize / 2;
1273 else
1274 rxspace = 8 + (2*(ramsize - 16))/3;
cd28ab6a 1275
67712901
SH
1276 sky2_ramset(hw, rxqaddr[port], 0, rxspace);
1277 sky2_ramset(hw, txqaddr[port], rxspace, ramsize - rxspace);
1278
1279 /* Make sure SyncQ is disabled */
1280 sky2_write8(hw, RB_ADDR(port == 0 ? Q_XS1 : Q_XS2, RB_CTRL),
1281 RB_RST_SET);
1282 }
793b883e 1283
af4ed7e6 1284 sky2_qset(hw, txqaddr[port]);
5a5b1ea0 1285
977bdf06 1286 /* Set almost empty threshold */
c2716fb4
SH
1287 if (hw->chip_id == CHIP_ID_YUKON_EC_U
1288 && hw->chip_rev == CHIP_REV_YU_EC_U_A0)
b628ed98 1289 sky2_write16(hw, Q_ADDR(txqaddr[port], Q_AL), ECU_TXFF_LEV);
5a5b1ea0 1290
6b1a3aef
SH
1291 sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map,
1292 TX_RING_SIZE - 1);
cd28ab6a 1293
6b1a3aef 1294 err = sky2_rx_start(sky2);
cd28ab6a
SH
1295 if (err)
1296 goto err_out;
1297
cd28ab6a 1298 /* Enable interrupts from phy/mac for port */
e07b1aa8 1299 imask = sky2_read32(hw, B0_IMSK);
f4ea431b 1300 imask |= portirq_msk[port];
e07b1aa8
SH
1301 sky2_write32(hw, B0_IMSK, imask);
1302
cd28ab6a
SH
1303 return 0;
1304
1305err_out:
1b537565 1306 if (sky2->rx_le) {
cd28ab6a
SH
1307 pci_free_consistent(hw->pdev, RX_LE_BYTES,
1308 sky2->rx_le, sky2->rx_le_map);
1b537565
SH
1309 sky2->rx_le = NULL;
1310 }
1311 if (sky2->tx_le) {
cd28ab6a
SH
1312 pci_free_consistent(hw->pdev,
1313 TX_RING_SIZE * sizeof(struct sky2_tx_le),
1314 sky2->tx_le, sky2->tx_le_map);
1b537565
SH
1315 sky2->tx_le = NULL;
1316 }
1317 kfree(sky2->tx_ring);
1318 kfree(sky2->rx_ring);
cd28ab6a 1319
1b537565
SH
1320 sky2->tx_ring = NULL;
1321 sky2->rx_ring = NULL;
cd28ab6a
SH
1322 return err;
1323}
1324
793b883e
SH
1325/* Modular subtraction in ring */
1326static inline int tx_dist(unsigned tail, unsigned head)
1327{
cb5d9547 1328 return (head - tail) & (TX_RING_SIZE - 1);
793b883e 1329}
cd28ab6a 1330
793b883e
SH
1331/* Number of list elements available for next tx */
1332static inline int tx_avail(const struct sky2_port *sky2)
cd28ab6a 1333{
793b883e 1334 return sky2->tx_pending - tx_dist(sky2->tx_cons, sky2->tx_prod);
cd28ab6a
SH
1335}
1336
793b883e 1337/* Estimate of number of transmit list elements required */
28bd181a 1338static unsigned tx_le_req(const struct sk_buff *skb)
cd28ab6a 1339{
793b883e
SH
1340 unsigned count;
1341
1342 count = sizeof(dma_addr_t) / sizeof(u32);
1343 count += skb_shinfo(skb)->nr_frags * count;
1344
89114afd 1345 if (skb_is_gso(skb))
793b883e
SH
1346 ++count;
1347
84fa7933 1348 if (skb->ip_summed == CHECKSUM_PARTIAL)
793b883e
SH
1349 ++count;
1350
1351 return count;
cd28ab6a
SH
1352}
1353
793b883e
SH
1354/*
1355 * Put one packet in ring for transmit.
1356 * A single packet can generate multiple list elements, and
1357 * the number of ring elements will probably be less than the number
1358 * of list elements used.
1359 */
cd28ab6a
SH
1360static int sky2_xmit_frame(struct sk_buff *skb, struct net_device *dev)
1361{
1362 struct sky2_port *sky2 = netdev_priv(dev);
1363 struct sky2_hw *hw = sky2->hw;
d1f13708 1364 struct sky2_tx_le *le = NULL;
6cdbbdf3 1365 struct tx_ring_info *re;
cd28ab6a
SH
1366 unsigned i, len;
1367 dma_addr_t mapping;
1368 u32 addr64;
1369 u16 mss;
1370 u8 ctrl;
1371
2bb8c262
SH
1372 if (unlikely(tx_avail(sky2) < tx_le_req(skb)))
1373 return NETDEV_TX_BUSY;
cd28ab6a 1374
793b883e 1375 if (unlikely(netif_msg_tx_queued(sky2)))
cd28ab6a
SH
1376 printk(KERN_DEBUG "%s: tx queued, slot %u, len %d\n",
1377 dev->name, sky2->tx_prod, skb->len);
1378
cd28ab6a
SH
1379 len = skb_headlen(skb);
1380 mapping = pci_map_single(hw->pdev, skb->data, len, PCI_DMA_TODEVICE);
a018e330 1381 addr64 = high32(mapping);
793b883e 1382
a018e330
SH
1383 /* Send high bits if changed or crosses boundary */
1384 if (addr64 != sky2->tx_addr64 || high32(mapping + len) != sky2->tx_addr64) {
793b883e 1385 le = get_tx_le(sky2);
f65b138c 1386 le->addr = cpu_to_le32(addr64);
793b883e 1387 le->opcode = OP_ADDR64 | HW_OWNER;
a018e330 1388 sky2->tx_addr64 = high32(mapping + len);
793b883e 1389 }
cd28ab6a
SH
1390
1391 /* Check for TCP Segmentation Offload */
7967168c 1392 mss = skb_shinfo(skb)->gso_size;
793b883e 1393 if (mss != 0) {
cd28ab6a
SH
1394 mss += ((skb->h.th->doff - 5) * 4); /* TCP options */
1395 mss += (skb->nh.iph->ihl * 4) + sizeof(struct tcphdr);
1396 mss += ETH_HLEN;
1397
e07560cd
SH
1398 if (mss != sky2->tx_last_mss) {
1399 le = get_tx_le(sky2);
f65b138c 1400 le->addr = cpu_to_le32(mss);
e07560cd 1401 le->opcode = OP_LRGLEN | HW_OWNER;
e07560cd
SH
1402 sky2->tx_last_mss = mss;
1403 }
cd28ab6a
SH
1404 }
1405
cd28ab6a 1406 ctrl = 0;
d1f13708
SH
1407#ifdef SKY2_VLAN_TAG_USED
1408 /* Add VLAN tag, can piggyback on LRGLEN or ADDR64 */
1409 if (sky2->vlgrp && vlan_tx_tag_present(skb)) {
1410 if (!le) {
1411 le = get_tx_le(sky2);
f65b138c 1412 le->addr = 0;
d1f13708 1413 le->opcode = OP_VLAN|HW_OWNER;
d1f13708
SH
1414 } else
1415 le->opcode |= OP_VLAN;
1416 le->length = cpu_to_be16(vlan_tx_tag_get(skb));
1417 ctrl |= INS_VLAN;
1418 }
1419#endif
1420
1421 /* Handle TCP checksum offload */
84fa7933 1422 if (skb->ip_summed == CHECKSUM_PARTIAL) {
f65b138c
SH
1423 unsigned offset = skb->h.raw - skb->data;
1424 u32 tcpsum;
1425
1426 tcpsum = offset << 16; /* sum start */
ff1dcadb 1427 tcpsum |= offset + skb->csum_offset; /* sum write */
cd28ab6a
SH
1428
1429 ctrl = CALSUM | WR_SUM | INIT_SUM | LOCK_SUM;
1430 if (skb->nh.iph->protocol == IPPROTO_UDP)
1431 ctrl |= UDPTCP;
1432
f65b138c
SH
1433 if (tcpsum != sky2->tx_tcpsum) {
1434 sky2->tx_tcpsum = tcpsum;
1d179332
SH
1435
1436 le = get_tx_le(sky2);
f65b138c 1437 le->addr = cpu_to_le32(tcpsum);
1d179332
SH
1438 le->length = 0; /* initial checksum value */
1439 le->ctrl = 1; /* one packet */
1440 le->opcode = OP_TCPLISW | HW_OWNER;
1441 }
cd28ab6a
SH
1442 }
1443
1444 le = get_tx_le(sky2);
f65b138c 1445 le->addr = cpu_to_le32((u32) mapping);
cd28ab6a
SH
1446 le->length = cpu_to_le16(len);
1447 le->ctrl = ctrl;
793b883e 1448 le->opcode = mss ? (OP_LARGESEND | HW_OWNER) : (OP_PACKET | HW_OWNER);
cd28ab6a 1449
291ea614 1450 re = tx_le_re(sky2, le);
cd28ab6a 1451 re->skb = skb;
6cdbbdf3 1452 pci_unmap_addr_set(re, mapaddr, mapping);
291ea614 1453 pci_unmap_len_set(re, maplen, len);
cd28ab6a
SH
1454
1455 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
291ea614 1456 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
cd28ab6a
SH
1457
1458 mapping = pci_map_page(hw->pdev, frag->page, frag->page_offset,
1459 frag->size, PCI_DMA_TODEVICE);
a036119f 1460 addr64 = high32(mapping);
793b883e
SH
1461 if (addr64 != sky2->tx_addr64) {
1462 le = get_tx_le(sky2);
f65b138c 1463 le->addr = cpu_to_le32(addr64);
793b883e
SH
1464 le->ctrl = 0;
1465 le->opcode = OP_ADDR64 | HW_OWNER;
1466 sky2->tx_addr64 = addr64;
cd28ab6a
SH
1467 }
1468
1469 le = get_tx_le(sky2);
f65b138c 1470 le->addr = cpu_to_le32((u32) mapping);
cd28ab6a
SH
1471 le->length = cpu_to_le16(frag->size);
1472 le->ctrl = ctrl;
793b883e 1473 le->opcode = OP_BUFFER | HW_OWNER;
cd28ab6a 1474
291ea614
SH
1475 re = tx_le_re(sky2, le);
1476 re->skb = skb;
1477 pci_unmap_addr_set(re, mapaddr, mapping);
1478 pci_unmap_len_set(re, maplen, frag->size);
cd28ab6a 1479 }
6cdbbdf3 1480
cd28ab6a
SH
1481 le->ctrl |= EOP;
1482
97bda706
SH
1483 if (tx_avail(sky2) <= MAX_SKB_TX_LE)
1484 netif_stop_queue(dev);
b19666d9 1485
290d4de5 1486 sky2_put_idx(hw, txqaddr[sky2->port], sky2->tx_prod);
cd28ab6a 1487
cd28ab6a
SH
1488 dev->trans_start = jiffies;
1489 return NETDEV_TX_OK;
1490}
1491
cd28ab6a 1492/*
793b883e
SH
1493 * Free ring elements from starting at tx_cons until "done"
1494 *
1495 * NB: the hardware will tell us about partial completion of multi-part
291ea614 1496 * buffers so make sure not to free skb to early.
cd28ab6a 1497 */
d11c13e7 1498static void sky2_tx_complete(struct sky2_port *sky2, u16 done)
cd28ab6a 1499{
d11c13e7 1500 struct net_device *dev = sky2->netdev;
af2a58ac 1501 struct pci_dev *pdev = sky2->hw->pdev;
291ea614 1502 unsigned idx;
cd28ab6a 1503
0e3ff6aa 1504 BUG_ON(done >= TX_RING_SIZE);
2224795d 1505
291ea614
SH
1506 for (idx = sky2->tx_cons; idx != done;
1507 idx = RING_NEXT(idx, TX_RING_SIZE)) {
1508 struct sky2_tx_le *le = sky2->tx_le + idx;
1509 struct tx_ring_info *re = sky2->tx_ring + idx;
1510
1511 switch(le->opcode & ~HW_OWNER) {
1512 case OP_LARGESEND:
1513 case OP_PACKET:
1514 pci_unmap_single(pdev,
1515 pci_unmap_addr(re, mapaddr),
1516 pci_unmap_len(re, maplen),
1517 PCI_DMA_TODEVICE);
af2a58ac 1518 break;
291ea614
SH
1519 case OP_BUFFER:
1520 pci_unmap_page(pdev, pci_unmap_addr(re, mapaddr),
1521 pci_unmap_len(re, maplen),
734d1868 1522 PCI_DMA_TODEVICE);
291ea614
SH
1523 break;
1524 }
1525
1526 if (le->ctrl & EOP) {
1527 if (unlikely(netif_msg_tx_done(sky2)))
1528 printk(KERN_DEBUG "%s: tx done %u\n",
1529 dev->name, idx);
2bf56fe2 1530 sky2->net_stats.tx_packets++;
1531 sky2->net_stats.tx_bytes += re->skb->len;
1532
794b2bd2 1533 dev_kfree_skb_any(re->skb);
cd28ab6a
SH
1534 }
1535
291ea614 1536 le->opcode = 0; /* paranoia */
793b883e 1537 }
793b883e 1538
291ea614 1539 sky2->tx_cons = idx;
22e11703 1540 if (tx_avail(sky2) > MAX_SKB_TX_LE + 4)
cd28ab6a 1541 netif_wake_queue(dev);
cd28ab6a
SH
1542}
1543
1544/* Cleanup all untransmitted buffers, assume transmitter not running */
2bb8c262 1545static void sky2_tx_clean(struct net_device *dev)
cd28ab6a 1546{
2bb8c262
SH
1547 struct sky2_port *sky2 = netdev_priv(dev);
1548
1549 netif_tx_lock_bh(dev);
d11c13e7 1550 sky2_tx_complete(sky2, sky2->tx_prod);
2bb8c262 1551 netif_tx_unlock_bh(dev);
cd28ab6a
SH
1552}
1553
1554/* Network shutdown */
1555static int sky2_down(struct net_device *dev)
1556{
1557 struct sky2_port *sky2 = netdev_priv(dev);
1558 struct sky2_hw *hw = sky2->hw;
1559 unsigned port = sky2->port;
1560 u16 ctrl;
e07b1aa8 1561 u32 imask;
cd28ab6a 1562
1b537565
SH
1563 /* Never really got started! */
1564 if (!sky2->tx_le)
1565 return 0;
1566
cd28ab6a
SH
1567 if (netif_msg_ifdown(sky2))
1568 printk(KERN_INFO PFX "%s: disabling interface\n", dev->name);
1569
018d1c66 1570 /* Stop more packets from being queued */
cd28ab6a 1571 netif_stop_queue(dev);
9a87240c 1572 netif_carrier_off(dev);
cd28ab6a 1573
ebc646f6
SH
1574 /* Disable port IRQ */
1575 imask = sky2_read32(hw, B0_IMSK);
1576 imask &= ~portirq_msk[port];
1577 sky2_write32(hw, B0_IMSK, imask);
1578
25d82d7a
SH
1579 /*
1580 * Both ports share the NAPI poll on port 0, so if necessary undo the
1581 * the disable that is done in dev_close.
1582 */
1583 if (sky2->port == 0 && hw->ports > 1)
1584 netif_poll_enable(dev);
1585
d3bcfbeb 1586 sky2_gmac_reset(hw, port);
793b883e 1587
cd28ab6a
SH
1588 /* Stop transmitter */
1589 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_STOP);
1590 sky2_read32(hw, Q_ADDR(txqaddr[port], Q_CSR));
1591
1592 sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL),
793b883e 1593 RB_RST_SET | RB_DIS_OP_MD);
cd28ab6a
SH
1594
1595 ctrl = gma_read16(hw, port, GM_GP_CTRL);
793b883e 1596 ctrl &= ~(GM_GPCR_TX_ENA | GM_GPCR_RX_ENA);
cd28ab6a
SH
1597 gma_write16(hw, port, GM_GP_CTRL, ctrl);
1598
1599 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
1600
1601 /* Workaround shared GMAC reset */
793b883e
SH
1602 if (!(hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0
1603 && port == 0 && hw->dev[1] && netif_running(hw->dev[1])))
cd28ab6a
SH
1604 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);
1605
1606 /* Disable Force Sync bit and Enable Alloc bit */
1607 sky2_write8(hw, SK_REG(port, TXA_CTRL),
1608 TXA_DIS_FSYNC | TXA_DIS_ALLOC | TXA_STOP_RC);
1609
1610 /* Stop Interval Timer and Limit Counter of Tx Arbiter */
1611 sky2_write32(hw, SK_REG(port, TXA_ITI_INI), 0L);
1612 sky2_write32(hw, SK_REG(port, TXA_LIM_INI), 0L);
1613
1614 /* Reset the PCI FIFO of the async Tx queue */
793b883e
SH
1615 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR),
1616 BMU_RST_SET | BMU_FIFO_RST);
cd28ab6a
SH
1617
1618 /* Reset the Tx prefetch units */
1619 sky2_write32(hw, Y2_QADDR(txqaddr[port], PREF_UNIT_CTRL),
1620 PREF_UNIT_RST_SET);
1621
1622 sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL), RB_RST_SET);
1623
6b1a3aef 1624 sky2_rx_stop(sky2);
cd28ab6a
SH
1625
1626 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
1627 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_SET);
1628
d3bcfbeb
SH
1629 sky2_phy_power(hw, port, 0);
1630
d571b694 1631 /* turn off LED's */
cd28ab6a
SH
1632 sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);
1633
018d1c66
SH
1634 synchronize_irq(hw->pdev->irq);
1635
2bb8c262 1636 sky2_tx_clean(dev);
cd28ab6a
SH
1637 sky2_rx_clean(sky2);
1638
1639 pci_free_consistent(hw->pdev, RX_LE_BYTES,
1640 sky2->rx_le, sky2->rx_le_map);
1641 kfree(sky2->rx_ring);
1642
1643 pci_free_consistent(hw->pdev,
1644 TX_RING_SIZE * sizeof(struct sky2_tx_le),
1645 sky2->tx_le, sky2->tx_le_map);
1646 kfree(sky2->tx_ring);
1647
1b537565
SH
1648 sky2->tx_le = NULL;
1649 sky2->rx_le = NULL;
1650
1651 sky2->rx_ring = NULL;
1652 sky2->tx_ring = NULL;
1653
cd28ab6a
SH
1654 return 0;
1655}
1656
1657static u16 sky2_phy_speed(const struct sky2_hw *hw, u16 aux)
1658{
b89165f2 1659 if (!sky2_is_copper(hw))
793b883e
SH
1660 return SPEED_1000;
1661
cd28ab6a
SH
1662 if (hw->chip_id == CHIP_ID_YUKON_FE)
1663 return (aux & PHY_M_PS_SPEED_100) ? SPEED_100 : SPEED_10;
1664
1665 switch (aux & PHY_M_PS_SPEED_MSK) {
1666 case PHY_M_PS_SPEED_1000:
1667 return SPEED_1000;
1668 case PHY_M_PS_SPEED_100:
1669 return SPEED_100;
1670 default:
1671 return SPEED_10;
1672 }
1673}
1674
1675static void sky2_link_up(struct sky2_port *sky2)
1676{
1677 struct sky2_hw *hw = sky2->hw;
1678 unsigned port = sky2->port;
1679 u16 reg;
16ad91e1
SH
1680 static const char *fc_name[] = {
1681 [FC_NONE] = "none",
1682 [FC_TX] = "tx",
1683 [FC_RX] = "rx",
1684 [FC_BOTH] = "both",
1685 };
cd28ab6a 1686
cd28ab6a 1687 /* enable Rx/Tx */
2eaba1a2 1688 reg = gma_read16(hw, port, GM_GP_CTRL);
cd28ab6a
SH
1689 reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA;
1690 gma_write16(hw, port, GM_GP_CTRL, reg);
cd28ab6a
SH
1691
1692 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);
1693
1694 netif_carrier_on(sky2->netdev);
1695 netif_wake_queue(sky2->netdev);
1696
1697 /* Turn on link LED */
793b883e 1698 sky2_write8(hw, SK_REG(port, LNK_LED_REG),
cd28ab6a
SH
1699 LINKLED_ON | LINKLED_BLINK_OFF | LINKLED_LINKSYNC_OFF);
1700
93745494
SH
1701 if (hw->chip_id == CHIP_ID_YUKON_XL
1702 || hw->chip_id == CHIP_ID_YUKON_EC_U
1703 || hw->chip_id == CHIP_ID_YUKON_EX) {
793b883e 1704 u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
ed6d32c7
SH
1705 u16 led = PHY_M_LEDC_LOS_CTRL(1); /* link active */
1706
1707 switch(sky2->speed) {
1708 case SPEED_10:
1709 led |= PHY_M_LEDC_INIT_CTRL(7);
1710 break;
1711
1712 case SPEED_100:
1713 led |= PHY_M_LEDC_STA1_CTRL(7);
1714 break;
1715
1716 case SPEED_1000:
1717 led |= PHY_M_LEDC_STA0_CTRL(7);
1718 break;
1719 }
793b883e
SH
1720
1721 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
ed6d32c7 1722 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, led);
793b883e
SH
1723 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
1724 }
1725
cd28ab6a
SH
1726 if (netif_msg_link(sky2))
1727 printk(KERN_INFO PFX
d571b694 1728 "%s: Link is up at %d Mbps, %s duplex, flow control %s\n",
cd28ab6a
SH
1729 sky2->netdev->name, sky2->speed,
1730 sky2->duplex == DUPLEX_FULL ? "full" : "half",
16ad91e1 1731 fc_name[sky2->flow_status]);
cd28ab6a
SH
1732}
1733
1734static void sky2_link_down(struct sky2_port *sky2)
1735{
1736 struct sky2_hw *hw = sky2->hw;
1737 unsigned port = sky2->port;
1738 u16 reg;
1739
1740 gm_phy_write(hw, port, PHY_MARV_INT_MASK, 0);
1741
1742 reg = gma_read16(hw, port, GM_GP_CTRL);
1743 reg &= ~(GM_GPCR_RX_ENA | GM_GPCR_TX_ENA);
1744 gma_write16(hw, port, GM_GP_CTRL, reg);
cd28ab6a 1745
cd28ab6a
SH
1746 netif_carrier_off(sky2->netdev);
1747 netif_stop_queue(sky2->netdev);
1748
1749 /* Turn on link LED */
1750 sky2_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);
1751
1752 if (netif_msg_link(sky2))
1753 printk(KERN_INFO PFX "%s: Link is down.\n", sky2->netdev->name);
2eaba1a2 1754
cd28ab6a
SH
1755 sky2_phy_init(hw, port);
1756}
1757
16ad91e1
SH
1758static enum flow_control sky2_flow(int rx, int tx)
1759{
1760 if (rx)
1761 return tx ? FC_BOTH : FC_RX;
1762 else
1763 return tx ? FC_TX : FC_NONE;
1764}
1765
793b883e
SH
1766static int sky2_autoneg_done(struct sky2_port *sky2, u16 aux)
1767{
1768 struct sky2_hw *hw = sky2->hw;
1769 unsigned port = sky2->port;
da4c1ff4 1770 u16 advert, lpa;
793b883e 1771
da4c1ff4 1772 advert = gm_phy_read(hw, port, PHY_MARV_AUNE_ADV);
793b883e 1773 lpa = gm_phy_read(hw, port, PHY_MARV_AUNE_LP);
793b883e
SH
1774 if (lpa & PHY_M_AN_RF) {
1775 printk(KERN_ERR PFX "%s: remote fault", sky2->netdev->name);
1776 return -1;
1777 }
1778
793b883e
SH
1779 if (!(aux & PHY_M_PS_SPDUP_RES)) {
1780 printk(KERN_ERR PFX "%s: speed/duplex mismatch",
1781 sky2->netdev->name);
1782 return -1;
1783 }
1784
793b883e 1785 sky2->speed = sky2_phy_speed(hw, aux);
7c74ac1c 1786 sky2->duplex = (aux & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
793b883e 1787
da4c1ff4
SH
1788 /* Since the pause result bits seem to in different positions on
1789 * different chips. look at registers.
1790 */
1791 if (!sky2_is_copper(hw)) {
1792 /* Shift for bits in fiber PHY */
1793 advert &= ~(ADVERTISE_PAUSE_CAP|ADVERTISE_PAUSE_ASYM);
1794 lpa &= ~(LPA_PAUSE_CAP|LPA_PAUSE_ASYM);
1795
1796 if (advert & ADVERTISE_1000XPAUSE)
1797 advert |= ADVERTISE_PAUSE_CAP;
1798 if (advert & ADVERTISE_1000XPSE_ASYM)
1799 advert |= ADVERTISE_PAUSE_ASYM;
1800 if (lpa & LPA_1000XPAUSE)
1801 lpa |= LPA_PAUSE_CAP;
1802 if (lpa & LPA_1000XPAUSE_ASYM)
1803 lpa |= LPA_PAUSE_ASYM;
1804 }
793b883e 1805
da4c1ff4
SH
1806 sky2->flow_status = FC_NONE;
1807 if (advert & ADVERTISE_PAUSE_CAP) {
1808 if (lpa & LPA_PAUSE_CAP)
1809 sky2->flow_status = FC_BOTH;
1810 else if (advert & ADVERTISE_PAUSE_ASYM)
1811 sky2->flow_status = FC_RX;
1812 } else if (advert & ADVERTISE_PAUSE_ASYM) {
1813 if ((lpa & LPA_PAUSE_CAP) && (lpa & LPA_PAUSE_ASYM))
1814 sky2->flow_status = FC_TX;
1815 }
793b883e 1816
16ad91e1 1817 if (sky2->duplex == DUPLEX_HALF && sky2->speed < SPEED_1000
93745494 1818 && !(hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX))
16ad91e1 1819 sky2->flow_status = FC_NONE;
2eaba1a2 1820
da4c1ff4 1821 if (sky2->flow_status & FC_TX)
793b883e
SH
1822 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
1823 else
1824 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
1825
1826 return 0;
1827}
cd28ab6a 1828
e07b1aa8
SH
1829/* Interrupt from PHY */
1830static void sky2_phy_intr(struct sky2_hw *hw, unsigned port)
cd28ab6a 1831{
e07b1aa8
SH
1832 struct net_device *dev = hw->dev[port];
1833 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
1834 u16 istatus, phystat;
1835
ebc646f6
SH
1836 if (!netif_running(dev))
1837 return;
1838
e07b1aa8
SH
1839 spin_lock(&sky2->phy_lock);
1840 istatus = gm_phy_read(hw, port, PHY_MARV_INT_STAT);
1841 phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT);
1842
cd28ab6a
SH
1843 if (netif_msg_intr(sky2))
1844 printk(KERN_INFO PFX "%s: phy interrupt status 0x%x 0x%x\n",
1845 sky2->netdev->name, istatus, phystat);
1846
2eaba1a2 1847 if (sky2->autoneg == AUTONEG_ENABLE && (istatus & PHY_M_IS_AN_COMPL)) {
793b883e
SH
1848 if (sky2_autoneg_done(sky2, phystat) == 0)
1849 sky2_link_up(sky2);
1850 goto out;
1851 }
cd28ab6a 1852
793b883e
SH
1853 if (istatus & PHY_M_IS_LSP_CHANGE)
1854 sky2->speed = sky2_phy_speed(hw, phystat);
cd28ab6a 1855
793b883e
SH
1856 if (istatus & PHY_M_IS_DUP_CHANGE)
1857 sky2->duplex =
1858 (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
cd28ab6a 1859
793b883e
SH
1860 if (istatus & PHY_M_IS_LST_CHANGE) {
1861 if (phystat & PHY_M_PS_LINK_UP)
cd28ab6a 1862 sky2_link_up(sky2);
793b883e
SH
1863 else
1864 sky2_link_down(sky2);
cd28ab6a 1865 }
793b883e 1866out:
e07b1aa8 1867 spin_unlock(&sky2->phy_lock);
cd28ab6a
SH
1868}
1869
62335ab0 1870/* Transmit timeout is only called if we are running, carrier is up
302d1252
SH
1871 * and tx queue is full (stopped).
1872 */
cd28ab6a
SH
1873static void sky2_tx_timeout(struct net_device *dev)
1874{
1875 struct sky2_port *sky2 = netdev_priv(dev);
8cc048e3 1876 struct sky2_hw *hw = sky2->hw;
cd28ab6a
SH
1877
1878 if (netif_msg_timer(sky2))
1879 printk(KERN_ERR PFX "%s: tx timeout\n", dev->name);
1880
8f24664d 1881 printk(KERN_DEBUG PFX "%s: transmit ring %u .. %u report=%u done=%u\n",
62335ab0
SH
1882 dev->name, sky2->tx_cons, sky2->tx_prod,
1883 sky2_read16(hw, sky2->port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX),
1884 sky2_read16(hw, Q_ADDR(txqaddr[sky2->port], Q_DONE)));
8f24664d 1885
81906791
SH
1886 /* can't restart safely under softirq */
1887 schedule_work(&hw->restart_work);
cd28ab6a
SH
1888}
1889
1890static int sky2_change_mtu(struct net_device *dev, int new_mtu)
1891{
6b1a3aef
SH
1892 struct sky2_port *sky2 = netdev_priv(dev);
1893 struct sky2_hw *hw = sky2->hw;
b628ed98 1894 unsigned port = sky2->port;
6b1a3aef
SH
1895 int err;
1896 u16 ctl, mode;
e07b1aa8 1897 u32 imask;
cd28ab6a
SH
1898
1899 if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU)
1900 return -EINVAL;
1901
d2adf4f6
SH
1902 if (new_mtu > ETH_DATA_LEN && hw->chip_id == CHIP_ID_YUKON_FE)
1903 return -EINVAL;
1904
6b1a3aef
SH
1905 if (!netif_running(dev)) {
1906 dev->mtu = new_mtu;
1907 return 0;
1908 }
1909
e07b1aa8 1910 imask = sky2_read32(hw, B0_IMSK);
6b1a3aef
SH
1911 sky2_write32(hw, B0_IMSK, 0);
1912
018d1c66
SH
1913 dev->trans_start = jiffies; /* prevent tx timeout */
1914 netif_stop_queue(dev);
1915 netif_poll_disable(hw->dev[0]);
1916
e07b1aa8
SH
1917 synchronize_irq(hw->pdev->irq);
1918
b628ed98
SH
1919 if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX) {
1920 if (new_mtu > ETH_DATA_LEN) {
1921 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1922 TX_JUMBO_ENA | TX_STFW_DIS);
1923 dev->features &= NETIF_F_TSO | NETIF_F_SG | NETIF_F_IP_CSUM;
1924 } else
1925 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1926 TX_JUMBO_DIS | TX_STFW_ENA);
1927 }
1928
1929 ctl = gma_read16(hw, port, GM_GP_CTRL);
1930 gma_write16(hw, port, GM_GP_CTRL, ctl & ~GM_GPCR_RX_ENA);
6b1a3aef
SH
1931 sky2_rx_stop(sky2);
1932 sky2_rx_clean(sky2);
cd28ab6a
SH
1933
1934 dev->mtu = new_mtu;
14d0263f 1935
6b1a3aef
SH
1936 mode = DATA_BLIND_VAL(DATA_BLIND_DEF) |
1937 GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
1938
1939 if (dev->mtu > ETH_DATA_LEN)
1940 mode |= GM_SMOD_JUMBO_ENA;
1941
b628ed98 1942 gma_write16(hw, port, GM_SERIAL_MODE, mode);
cd28ab6a 1943
b628ed98 1944 sky2_write8(hw, RB_ADDR(rxqaddr[port], RB_CTRL), RB_ENA_OP_MD);
cd28ab6a 1945
6b1a3aef 1946 err = sky2_rx_start(sky2);
e07b1aa8 1947 sky2_write32(hw, B0_IMSK, imask);
018d1c66 1948
1b537565
SH
1949 if (err)
1950 dev_close(dev);
1951 else {
b628ed98 1952 gma_write16(hw, port, GM_GP_CTRL, ctl);
1b537565
SH
1953
1954 netif_poll_enable(hw->dev[0]);
1955 netif_wake_queue(dev);
1956 }
1957
cd28ab6a
SH
1958 return err;
1959}
1960
14d0263f
SH
1961/* For small just reuse existing skb for next receive */
1962static struct sk_buff *receive_copy(struct sky2_port *sky2,
1963 const struct rx_ring_info *re,
1964 unsigned length)
1965{
1966 struct sk_buff *skb;
1967
1968 skb = netdev_alloc_skb(sky2->netdev, length + 2);
1969 if (likely(skb)) {
1970 skb_reserve(skb, 2);
1971 pci_dma_sync_single_for_cpu(sky2->hw->pdev, re->data_addr,
1972 length, PCI_DMA_FROMDEVICE);
1973 memcpy(skb->data, re->skb->data, length);
1974 skb->ip_summed = re->skb->ip_summed;
1975 skb->csum = re->skb->csum;
1976 pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr,
1977 length, PCI_DMA_FROMDEVICE);
1978 re->skb->ip_summed = CHECKSUM_NONE;
489b10c1 1979 skb_put(skb, length);
14d0263f
SH
1980 }
1981 return skb;
1982}
1983
1984/* Adjust length of skb with fragments to match received data */
1985static void skb_put_frags(struct sk_buff *skb, unsigned int hdr_space,
1986 unsigned int length)
1987{
1988 int i, num_frags;
1989 unsigned int size;
1990
1991 /* put header into skb */
1992 size = min(length, hdr_space);
1993 skb->tail += size;
1994 skb->len += size;
1995 length -= size;
1996
1997 num_frags = skb_shinfo(skb)->nr_frags;
1998 for (i = 0; i < num_frags; i++) {
1999 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2000
2001 if (length == 0) {
2002 /* don't need this page */
2003 __free_page(frag->page);
2004 --skb_shinfo(skb)->nr_frags;
2005 } else {
2006 size = min(length, (unsigned) PAGE_SIZE);
2007
2008 frag->size = size;
2009 skb->data_len += size;
2010 skb->truesize += size;
2011 skb->len += size;
2012 length -= size;
2013 }
2014 }
2015}
2016
2017/* Normal packet - take skb from ring element and put in a new one */
2018static struct sk_buff *receive_new(struct sky2_port *sky2,
2019 struct rx_ring_info *re,
2020 unsigned int length)
2021{
2022 struct sk_buff *skb, *nskb;
2023 unsigned hdr_space = sky2->rx_data_size;
2024
2025 pr_debug(PFX "receive new length=%d\n", length);
2026
2027 /* Don't be tricky about reusing pages (yet) */
2028 nskb = sky2_rx_alloc(sky2);
2029 if (unlikely(!nskb))
2030 return NULL;
2031
2032 skb = re->skb;
2033 sky2_rx_unmap_skb(sky2->hw->pdev, re);
2034
2035 prefetch(skb->data);
2036 re->skb = nskb;
2037 sky2_rx_map_skb(sky2->hw->pdev, re, hdr_space);
2038
2039 if (skb_shinfo(skb)->nr_frags)
2040 skb_put_frags(skb, hdr_space, length);
2041 else
489b10c1 2042 skb_put(skb, length);
14d0263f
SH
2043 return skb;
2044}
2045
cd28ab6a
SH
2046/*
2047 * Receive one packet.
d571b694 2048 * For larger packets, get new buffer.
cd28ab6a 2049 */
497d7c86 2050static struct sk_buff *sky2_receive(struct net_device *dev,
cd28ab6a
SH
2051 u16 length, u32 status)
2052{
497d7c86 2053 struct sky2_port *sky2 = netdev_priv(dev);
291ea614 2054 struct rx_ring_info *re = sky2->rx_ring + sky2->rx_next;
79e57d32 2055 struct sk_buff *skb = NULL;
cd28ab6a
SH
2056
2057 if (unlikely(netif_msg_rx_status(sky2)))
2058 printk(KERN_DEBUG PFX "%s: rx slot %u status 0x%x len %d\n",
497d7c86 2059 dev->name, sky2->rx_next, status, length);
cd28ab6a 2060
793b883e 2061 sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending;
d70cd51a 2062 prefetch(sky2->rx_ring + sky2->rx_next);
cd28ab6a 2063
42eeea01 2064 if (status & GMR_FS_ANY_ERR)
cd28ab6a
SH
2065 goto error;
2066
42eeea01
SH
2067 if (!(status & GMR_FS_RX_OK))
2068 goto resubmit;
2069
14d0263f
SH
2070 if (length < copybreak)
2071 skb = receive_copy(sky2, re, length);
2072 else
2073 skb = receive_new(sky2, re, length);
793b883e 2074resubmit:
14d0263f 2075 sky2_rx_submit(sky2, re);
79e57d32 2076
cd28ab6a
SH
2077 return skb;
2078
2079error:
6e15b712 2080 ++sky2->net_stats.rx_errors;
b6d77734 2081 if (status & GMR_FS_RX_FF_OV) {
a79abdc6 2082 sky2->net_stats.rx_over_errors++;
b6d77734
SH
2083 goto resubmit;
2084 }
6e15b712 2085
3be92a70 2086 if (netif_msg_rx_err(sky2) && net_ratelimit())
cd28ab6a 2087 printk(KERN_INFO PFX "%s: rx error, status 0x%x length %d\n",
497d7c86 2088 dev->name, status, length);
793b883e
SH
2089
2090 if (status & (GMR_FS_LONG_ERR | GMR_FS_UN_SIZE))
cd28ab6a
SH
2091 sky2->net_stats.rx_length_errors++;
2092 if (status & GMR_FS_FRAGMENT)
2093 sky2->net_stats.rx_frame_errors++;
2094 if (status & GMR_FS_CRC_ERR)
2095 sky2->net_stats.rx_crc_errors++;
79e57d32 2096
793b883e 2097 goto resubmit;
cd28ab6a
SH
2098}
2099
e07b1aa8
SH
2100/* Transmit complete */
2101static inline void sky2_tx_done(struct net_device *dev, u16 last)
13b97b74 2102{
e07b1aa8 2103 struct sky2_port *sky2 = netdev_priv(dev);
302d1252 2104
e07b1aa8 2105 if (netif_running(dev)) {
2bb8c262 2106 netif_tx_lock(dev);
e07b1aa8 2107 sky2_tx_complete(sky2, last);
2bb8c262 2108 netif_tx_unlock(dev);
2224795d 2109 }
cd28ab6a
SH
2110}
2111
e07b1aa8
SH
2112/* Process status response ring */
2113static int sky2_status_intr(struct sky2_hw *hw, int to_do)
cd28ab6a 2114{
22e11703 2115 struct sky2_port *sky2;
e07b1aa8 2116 int work_done = 0;
22e11703 2117 unsigned buf_write[2] = { 0, 0 };
e71ebd73 2118 u16 hwidx = sky2_read16(hw, STAT_PUT_IDX);
a8fd6266 2119
af2a58ac 2120 rmb();
bea86103 2121
e71ebd73 2122 while (hw->st_idx != hwidx) {
13210ce5
SH
2123 struct sky2_status_le *le = hw->st_le + hw->st_idx;
2124 struct net_device *dev;
cd28ab6a 2125 struct sk_buff *skb;
cd28ab6a
SH
2126 u32 status;
2127 u16 length;
2128
cb5d9547 2129 hw->st_idx = RING_NEXT(hw->st_idx, STATUS_RING_SIZE);
bea86103 2130
e71ebd73
SH
2131 BUG_ON(le->link >= 2);
2132 dev = hw->dev[le->link];
13210ce5
SH
2133
2134 sky2 = netdev_priv(dev);
f65b138c
SH
2135 length = le16_to_cpu(le->length);
2136 status = le32_to_cpu(le->status);
cd28ab6a 2137
e71ebd73 2138 switch (le->opcode & ~HW_OWNER) {
cd28ab6a 2139 case OP_RXSTAT:
497d7c86 2140 skb = sky2_receive(dev, length, status);
d1f13708 2141 if (!skb)
5df79111 2142 goto force_update;
13210ce5 2143
13210ce5 2144 skb->protocol = eth_type_trans(skb, dev);
2bf56fe2 2145 sky2->net_stats.rx_packets++;
2146 sky2->net_stats.rx_bytes += skb->len;
13210ce5
SH
2147 dev->last_rx = jiffies;
2148
d1f13708
SH
2149#ifdef SKY2_VLAN_TAG_USED
2150 if (sky2->vlgrp && (status & GMR_FS_VLAN)) {
2151 vlan_hwaccel_receive_skb(skb,
2152 sky2->vlgrp,
2153 be16_to_cpu(sky2->rx_tag));
2154 } else
2155#endif
cd28ab6a 2156 netif_receive_skb(skb);
13210ce5 2157
22e11703
SH
2158 /* Update receiver after 16 frames */
2159 if (++buf_write[le->link] == RX_BUF_WRITE) {
5df79111
SH
2160force_update:
2161 sky2_put_idx(hw, rxqaddr[le->link], sky2->rx_put);
22e11703
SH
2162 buf_write[le->link] = 0;
2163 }
2164
2165 /* Stop after net poll weight */
13210ce5
SH
2166 if (++work_done >= to_do)
2167 goto exit_loop;
cd28ab6a
SH
2168 break;
2169
d1f13708
SH
2170#ifdef SKY2_VLAN_TAG_USED
2171 case OP_RXVLAN:
2172 sky2->rx_tag = length;
2173 break;
2174
2175 case OP_RXCHKSVLAN:
2176 sky2->rx_tag = length;
2177 /* fall through */
2178#endif
cd28ab6a 2179 case OP_RXCHKS:
87418307
SH
2180 if (!sky2->rx_csum)
2181 break;
2182
2183 /* Both checksum counters are programmed to start at
2184 * the same offset, so unless there is a problem they
2185 * should match. This failure is an early indication that
2186 * hardware receive checksumming won't work.
2187 */
2188 if (likely(status >> 16 == (status & 0xffff))) {
2189 skb = sky2->rx_ring[sky2->rx_next].skb;
2190 skb->ip_summed = CHECKSUM_COMPLETE;
2191 skb->csum = status & 0xffff;
2192 } else {
2193 printk(KERN_NOTICE PFX "%s: hardware receive "
2194 "checksum problem (status = %#x)\n",
2195 dev->name, status);
2196 sky2->rx_csum = 0;
2197 sky2_write32(sky2->hw,
2198 Q_ADDR(rxqaddr[le->link], Q_CSR),
2199 BMU_DIS_RX_CHKSUM);
2200 }
cd28ab6a
SH
2201 break;
2202
2203 case OP_TXINDEXLE:
13b97b74 2204 /* TX index reports status for both ports */
f55925d7
SH
2205 BUILD_BUG_ON(TX_RING_SIZE > 0x1000);
2206 sky2_tx_done(hw->dev[0], status & 0xfff);
e07b1aa8
SH
2207 if (hw->dev[1])
2208 sky2_tx_done(hw->dev[1],
2209 ((status >> 24) & 0xff)
2210 | (u16)(length & 0xf) << 8);
cd28ab6a
SH
2211 break;
2212
cd28ab6a
SH
2213 default:
2214 if (net_ratelimit())
793b883e 2215 printk(KERN_WARNING PFX
e71ebd73
SH
2216 "unknown status opcode 0x%x\n", le->opcode);
2217 goto exit_loop;
cd28ab6a 2218 }
13210ce5 2219 }
cd28ab6a 2220
fe2a24df
SH
2221 /* Fully processed status ring so clear irq */
2222 sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);
2223
13210ce5 2224exit_loop:
22e11703
SH
2225 if (buf_write[0]) {
2226 sky2 = netdev_priv(hw->dev[0]);
2227 sky2_put_idx(hw, Q_R1, sky2->rx_put);
2228 }
2229
2230 if (buf_write[1]) {
2231 sky2 = netdev_priv(hw->dev[1]);
2232 sky2_put_idx(hw, Q_R2, sky2->rx_put);
2233 }
2234
e07b1aa8 2235 return work_done;
cd28ab6a
SH
2236}
2237
2238static void sky2_hw_error(struct sky2_hw *hw, unsigned port, u32 status)
2239{
2240 struct net_device *dev = hw->dev[port];
2241
3be92a70
SH
2242 if (net_ratelimit())
2243 printk(KERN_INFO PFX "%s: hw error interrupt status 0x%x\n",
2244 dev->name, status);
cd28ab6a
SH
2245
2246 if (status & Y2_IS_PAR_RD1) {
3be92a70
SH
2247 if (net_ratelimit())
2248 printk(KERN_ERR PFX "%s: ram data read parity error\n",
2249 dev->name);
cd28ab6a
SH
2250 /* Clear IRQ */
2251 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_RD_PERR);
2252 }
2253
2254 if (status & Y2_IS_PAR_WR1) {
3be92a70
SH
2255 if (net_ratelimit())
2256 printk(KERN_ERR PFX "%s: ram data write parity error\n",
2257 dev->name);
cd28ab6a
SH
2258
2259 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_WR_PERR);
2260 }
2261
2262 if (status & Y2_IS_PAR_MAC1) {
3be92a70
SH
2263 if (net_ratelimit())
2264 printk(KERN_ERR PFX "%s: MAC parity error\n", dev->name);
cd28ab6a
SH
2265 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_PE);
2266 }
2267
2268 if (status & Y2_IS_PAR_RX1) {
3be92a70
SH
2269 if (net_ratelimit())
2270 printk(KERN_ERR PFX "%s: RX parity error\n", dev->name);
cd28ab6a
SH
2271 sky2_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), BMU_CLR_IRQ_PAR);
2272 }
2273
2274 if (status & Y2_IS_TCP_TXA1) {
3be92a70
SH
2275 if (net_ratelimit())
2276 printk(KERN_ERR PFX "%s: TCP segmentation error\n",
2277 dev->name);
cd28ab6a
SH
2278 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_CLR_IRQ_TCP);
2279 }
2280}
2281
2282static void sky2_hw_intr(struct sky2_hw *hw)
2283{
2284 u32 status = sky2_read32(hw, B0_HWE_ISRC);
2285
793b883e 2286 if (status & Y2_IS_TIST_OV)
cd28ab6a 2287 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
2288
2289 if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) {
793b883e
SH
2290 u16 pci_err;
2291
56a645cc 2292 pci_err = sky2_pci_read16(hw, PCI_STATUS);
3be92a70 2293 if (net_ratelimit())
b02a9258
SH
2294 dev_err(&hw->pdev->dev, "PCI hardware error (0x%x)\n",
2295 pci_err);
cd28ab6a
SH
2296
2297 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
56a645cc 2298 sky2_pci_write16(hw, PCI_STATUS,
91aeb3ed 2299 pci_err | PCI_STATUS_ERROR_BITS);
cd28ab6a
SH
2300 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2301 }
2302
2303 if (status & Y2_IS_PCI_EXP) {
d571b694 2304 /* PCI-Express uncorrectable Error occurred */
793b883e
SH
2305 u32 pex_err;
2306
7bd656d1 2307 pex_err = sky2_pci_read32(hw, PEX_UNC_ERR_STAT);
cd28ab6a 2308
3be92a70 2309 if (net_ratelimit())
b02a9258
SH
2310 dev_err(&hw->pdev->dev, "PCI Express error (0x%x)\n",
2311 pex_err);
cd28ab6a
SH
2312
2313 /* clear the interrupt */
2314 sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
7bd656d1
SH
2315 sky2_pci_write32(hw, PEX_UNC_ERR_STAT,
2316 0xffffffffUL);
cd28ab6a
SH
2317 sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2318
7bd656d1 2319 if (pex_err & PEX_FATAL_ERRORS) {
cd28ab6a
SH
2320 u32 hwmsk = sky2_read32(hw, B0_HWE_IMSK);
2321 hwmsk &= ~Y2_IS_PCI_EXP;
2322 sky2_write32(hw, B0_HWE_IMSK, hwmsk);
2323 }
2324 }
2325
2326 if (status & Y2_HWE_L1_MASK)
2327 sky2_hw_error(hw, 0, status);
2328 status >>= 8;
2329 if (status & Y2_HWE_L1_MASK)
2330 sky2_hw_error(hw, 1, status);
2331}
2332
2333static void sky2_mac_intr(struct sky2_hw *hw, unsigned port)
2334{
2335 struct net_device *dev = hw->dev[port];
2336 struct sky2_port *sky2 = netdev_priv(dev);
2337 u8 status = sky2_read8(hw, SK_REG(port, GMAC_IRQ_SRC));
2338
2339 if (netif_msg_intr(sky2))
2340 printk(KERN_INFO PFX "%s: mac interrupt status 0x%x\n",
2341 dev->name, status);
2342
2343 if (status & GM_IS_RX_FF_OR) {
2344 ++sky2->net_stats.rx_fifo_errors;
2345 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
2346 }
2347
2348 if (status & GM_IS_TX_FF_UR) {
2349 ++sky2->net_stats.tx_fifo_errors;
2350 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
2351 }
cd28ab6a
SH
2352}
2353
40b01727
SH
2354/* This should never happen it is a bug. */
2355static void sky2_le_error(struct sky2_hw *hw, unsigned port,
2356 u16 q, unsigned ring_size)
d257924e
SH
2357{
2358 struct net_device *dev = hw->dev[port];
2359 struct sky2_port *sky2 = netdev_priv(dev);
40b01727
SH
2360 unsigned idx;
2361 const u64 *le = (q == Q_R1 || q == Q_R2)
2362 ? (u64 *) sky2->rx_le : (u64 *) sky2->tx_le;
d257924e 2363
40b01727
SH
2364 idx = sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_GET_IDX));
2365 printk(KERN_ERR PFX "%s: descriptor error q=%#x get=%u [%llx] put=%u\n",
2366 dev->name, (unsigned) q, idx, (unsigned long long) le[idx],
2367 (unsigned) sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX)));
d257924e 2368
40b01727 2369 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_IRQ_CHK);
d257924e 2370}
cd28ab6a 2371
d27ed387
SH
2372/* If idle then force a fake soft NAPI poll once a second
2373 * to work around cases where sharing an edge triggered interrupt.
2374 */
eb35cf60
SH
2375static inline void sky2_idle_start(struct sky2_hw *hw)
2376{
2377 if (idle_timeout > 0)
2378 mod_timer(&hw->idle_timer,
2379 jiffies + msecs_to_jiffies(idle_timeout));
2380}
2381
d27ed387
SH
2382static void sky2_idle(unsigned long arg)
2383{
01bd7564
SH
2384 struct sky2_hw *hw = (struct sky2_hw *) arg;
2385 struct net_device *dev = hw->dev[0];
d27ed387 2386
d27ed387
SH
2387 if (__netif_rx_schedule_prep(dev))
2388 __netif_rx_schedule(dev);
01bd7564
SH
2389
2390 mod_timer(&hw->idle_timer, jiffies + msecs_to_jiffies(idle_timeout));
d27ed387
SH
2391}
2392
40b01727
SH
2393/* Hardware/software error handling */
2394static void sky2_err_intr(struct sky2_hw *hw, u32 status)
cd28ab6a 2395{
40b01727
SH
2396 if (net_ratelimit())
2397 dev_warn(&hw->pdev->dev, "error interrupt status=%#x\n", status);
cd28ab6a 2398
1e5f1283
SH
2399 if (status & Y2_IS_HW_ERR)
2400 sky2_hw_intr(hw);
d257924e 2401
1e5f1283
SH
2402 if (status & Y2_IS_IRQ_MAC1)
2403 sky2_mac_intr(hw, 0);
cd28ab6a 2404
1e5f1283
SH
2405 if (status & Y2_IS_IRQ_MAC2)
2406 sky2_mac_intr(hw, 1);
cd28ab6a 2407
1e5f1283 2408 if (status & Y2_IS_CHK_RX1)
40b01727 2409 sky2_le_error(hw, 0, Q_R1, RX_LE_SIZE);
d257924e 2410
1e5f1283 2411 if (status & Y2_IS_CHK_RX2)
40b01727 2412 sky2_le_error(hw, 1, Q_R2, RX_LE_SIZE);
d257924e 2413
1e5f1283 2414 if (status & Y2_IS_CHK_TXA1)
40b01727 2415 sky2_le_error(hw, 0, Q_XA1, TX_RING_SIZE);
d257924e 2416
1e5f1283 2417 if (status & Y2_IS_CHK_TXA2)
40b01727
SH
2418 sky2_le_error(hw, 1, Q_XA2, TX_RING_SIZE);
2419}
2420
2421static int sky2_poll(struct net_device *dev0, int *budget)
2422{
2423 struct sky2_hw *hw = ((struct sky2_port *) netdev_priv(dev0))->hw;
2424 int work_limit = min(dev0->quota, *budget);
2425 int work_done = 0;
2426 u32 status = sky2_read32(hw, B0_Y2_SP_EISR);
2427
2428 if (unlikely(status & Y2_IS_ERROR))
2429 sky2_err_intr(hw, status);
2430
2431 if (status & Y2_IS_IRQ_PHY1)
2432 sky2_phy_intr(hw, 0);
2433
2434 if (status & Y2_IS_IRQ_PHY2)
2435 sky2_phy_intr(hw, 1);
cd28ab6a 2436
1e5f1283 2437 work_done = sky2_status_intr(hw, work_limit);
fe2a24df
SH
2438 if (work_done < work_limit) {
2439 netif_rx_complete(dev0);
86fba634 2440
fe2a24df
SH
2441 sky2_read32(hw, B0_Y2_SP_LISR);
2442 return 0;
2443 } else {
2444 *budget -= work_done;
2445 dev0->quota -= work_done;
1e5f1283 2446 return 1;
fe2a24df 2447 }
e07b1aa8
SH
2448}
2449
7d12e780 2450static irqreturn_t sky2_intr(int irq, void *dev_id)
e07b1aa8
SH
2451{
2452 struct sky2_hw *hw = dev_id;
2453 struct net_device *dev0 = hw->dev[0];
2454 u32 status;
2455
2456 /* Reading this mask interrupts as side effect */
2457 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
2458 if (status == 0 || status == ~0)
2459 return IRQ_NONE;
793b883e 2460
e07b1aa8
SH
2461 prefetch(&hw->st_le[hw->st_idx]);
2462 if (likely(__netif_rx_schedule_prep(dev0)))
2463 __netif_rx_schedule(dev0);
793b883e 2464
cd28ab6a
SH
2465 return IRQ_HANDLED;
2466}
2467
2468#ifdef CONFIG_NET_POLL_CONTROLLER
2469static void sky2_netpoll(struct net_device *dev)
2470{
2471 struct sky2_port *sky2 = netdev_priv(dev);
88d11360 2472 struct net_device *dev0 = sky2->hw->dev[0];
cd28ab6a 2473
88d11360
SH
2474 if (netif_running(dev) && __netif_rx_schedule_prep(dev0))
2475 __netif_rx_schedule(dev0);
cd28ab6a
SH
2476}
2477#endif
2478
2479/* Chip internal frequency for clock calculations */
fb17358f 2480static inline u32 sky2_mhz(const struct sky2_hw *hw)
cd28ab6a 2481{
793b883e 2482 switch (hw->chip_id) {
cd28ab6a 2483 case CHIP_ID_YUKON_EC:
5a5b1ea0 2484 case CHIP_ID_YUKON_EC_U:
93745494 2485 case CHIP_ID_YUKON_EX:
fb17358f 2486 return 125; /* 125 Mhz */
cd28ab6a 2487 case CHIP_ID_YUKON_FE:
fb17358f 2488 return 100; /* 100 Mhz */
793b883e 2489 default: /* YUKON_XL */
fb17358f 2490 return 156; /* 156 Mhz */
cd28ab6a
SH
2491 }
2492}
2493
fb17358f 2494static inline u32 sky2_us2clk(const struct sky2_hw *hw, u32 us)
cd28ab6a 2495{
fb17358f 2496 return sky2_mhz(hw) * us;
cd28ab6a
SH
2497}
2498
fb17358f 2499static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
cd28ab6a 2500{
fb17358f 2501 return clk / sky2_mhz(hw);
cd28ab6a
SH
2502}
2503
fb17358f 2504
e3173832 2505static int __devinit sky2_init(struct sky2_hw *hw)
cd28ab6a 2506{
b89165f2 2507 u8 t8;
cd28ab6a 2508
cd28ab6a 2509 sky2_write8(hw, B0_CTST, CS_RST_CLR);
08c06d8a 2510
cd28ab6a
SH
2511 hw->chip_id = sky2_read8(hw, B2_CHIP_ID);
2512 if (hw->chip_id < CHIP_ID_YUKON_XL || hw->chip_id > CHIP_ID_YUKON_FE) {
b02a9258
SH
2513 dev_err(&hw->pdev->dev, "unsupported chip type 0x%x\n",
2514 hw->chip_id);
cd28ab6a
SH
2515 return -EOPNOTSUPP;
2516 }
2517
93745494
SH
2518 if (hw->chip_id == CHIP_ID_YUKON_EX)
2519 dev_warn(&hw->pdev->dev, "this driver not yet tested on this chip type\n"
2520 "Please report success or failure to <netdev@vger.kernel.org>\n");
2521
2522 /* Make sure and enable all clocks */
2523 if (hw->chip_id == CHIP_ID_YUKON_EX || hw->chip_id == CHIP_ID_YUKON_EC_U)
2524 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
2525
290d4de5
SH
2526 hw->chip_rev = (sky2_read8(hw, B2_MAC_CFG) & CFG_CHIP_R_MSK) >> 4;
2527
2528 /* This rev is really old, and requires untested workarounds */
2529 if (hw->chip_id == CHIP_ID_YUKON_EC && hw->chip_rev == CHIP_REV_YU_EC_A1) {
b02a9258
SH
2530 dev_err(&hw->pdev->dev, "unsupported revision Yukon-%s (0x%x) rev %d\n",
2531 yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
2532 hw->chip_id, hw->chip_rev);
290d4de5
SH
2533 return -EOPNOTSUPP;
2534 }
2535
e3173832
SH
2536 hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
2537 hw->ports = 1;
2538 t8 = sky2_read8(hw, B2_Y2_HW_RES);
2539 if ((t8 & CFG_DUAL_MAC_MSK) == CFG_DUAL_MAC_MSK) {
2540 if (!(sky2_read8(hw, B2_Y2_CLK_GATE) & Y2_STATUS_LNK2_INAC))
2541 ++hw->ports;
2542 }
2543
2544 return 0;
2545}
2546
2547static void sky2_reset(struct sky2_hw *hw)
2548{
2549 u16 status;
2550 int i;
2551
cd28ab6a 2552 /* disable ASF */
4f44d8ba
SH
2553 if (hw->chip_id == CHIP_ID_YUKON_EX) {
2554 status = sky2_read16(hw, HCU_CCSR);
2555 status &= ~(HCU_CCSR_AHB_RST | HCU_CCSR_CPU_RST_MODE |
2556 HCU_CCSR_UC_STATE_MSK);
2557 sky2_write16(hw, HCU_CCSR, status);
2558 } else
2559 sky2_write8(hw, B28_Y2_ASF_STAT_CMD, Y2_ASF_RESET);
2560 sky2_write16(hw, B0_CTST, Y2_ASF_DISABLE);
cd28ab6a
SH
2561
2562 /* do a SW reset */
2563 sky2_write8(hw, B0_CTST, CS_RST_SET);
2564 sky2_write8(hw, B0_CTST, CS_RST_CLR);
2565
2566 /* clear PCI errors, if any */
56a645cc 2567 status = sky2_pci_read16(hw, PCI_STATUS);
2d42d21f 2568
cd28ab6a 2569 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
56a645cc
SH
2570 sky2_pci_write16(hw, PCI_STATUS, status | PCI_STATUS_ERROR_BITS);
2571
cd28ab6a
SH
2572
2573 sky2_write8(hw, B0_CTST, CS_MRST_CLR);
2574
2575 /* clear any PEX errors */
7bd656d1
SH
2576 if (pci_find_capability(hw->pdev, PCI_CAP_ID_EXP))
2577 sky2_pci_write32(hw, PEX_UNC_ERR_STAT, 0xffffffffUL);
2578
cd28ab6a 2579
ae306cca 2580 sky2_power_on(hw);
cd28ab6a
SH
2581
2582 for (i = 0; i < hw->ports; i++) {
2583 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
2584 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_CLR);
2585 }
2586
2587 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2588
793b883e
SH
2589 /* Clear I2C IRQ noise */
2590 sky2_write32(hw, B2_I2C_IRQ, 1);
cd28ab6a
SH
2591
2592 /* turn off hardware timer (unused) */
2593 sky2_write8(hw, B2_TI_CTRL, TIM_STOP);
2594 sky2_write8(hw, B2_TI_CTRL, TIM_CLR_IRQ);
793b883e 2595
cd28ab6a
SH
2596 sky2_write8(hw, B0_Y2LED, LED_STAT_ON);
2597
69634ee7
SH
2598 /* Turn off descriptor polling */
2599 sky2_write32(hw, B28_DPT_CTRL, DPT_STOP);
cd28ab6a
SH
2600
2601 /* Turn off receive timestamp */
2602 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_STOP);
793b883e 2603 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
2604
2605 /* enable the Tx Arbiters */
2606 for (i = 0; i < hw->ports; i++)
2607 sky2_write8(hw, SK_REG(i, TXA_CTRL), TXA_ENA_ARB);
2608
2609 /* Initialize ram interface */
2610 for (i = 0; i < hw->ports; i++) {
793b883e 2611 sky2_write8(hw, RAM_BUFFER(i, B3_RI_CTRL), RI_RST_CLR);
cd28ab6a
SH
2612
2613 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R1), SK_RI_TO_53);
2614 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA1), SK_RI_TO_53);
2615 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS1), SK_RI_TO_53);
2616 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R1), SK_RI_TO_53);
2617 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA1), SK_RI_TO_53);
2618 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS1), SK_RI_TO_53);
2619 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R2), SK_RI_TO_53);
2620 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA2), SK_RI_TO_53);
2621 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS2), SK_RI_TO_53);
2622 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R2), SK_RI_TO_53);
2623 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA2), SK_RI_TO_53);
2624 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS2), SK_RI_TO_53);
2625 }
2626
7bd656d1 2627 sky2_write32(hw, B0_HWE_IMSK, Y2_HWE_ALL_MASK);
cd28ab6a 2628
cd28ab6a 2629 for (i = 0; i < hw->ports; i++)
d3bcfbeb 2630 sky2_gmac_reset(hw, i);
cd28ab6a 2631
cd28ab6a
SH
2632 memset(hw->st_le, 0, STATUS_LE_BYTES);
2633 hw->st_idx = 0;
2634
2635 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_SET);
2636 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_CLR);
2637
2638 sky2_write32(hw, STAT_LIST_ADDR_LO, hw->st_dma);
793b883e 2639 sky2_write32(hw, STAT_LIST_ADDR_HI, (u64) hw->st_dma >> 32);
cd28ab6a
SH
2640
2641 /* Set the list last index */
793b883e 2642 sky2_write16(hw, STAT_LAST_IDX, STATUS_RING_SIZE - 1);
cd28ab6a 2643
290d4de5
SH
2644 sky2_write16(hw, STAT_TX_IDX_TH, 10);
2645 sky2_write8(hw, STAT_FIFO_WM, 16);
cd28ab6a 2646
290d4de5
SH
2647 /* set Status-FIFO ISR watermark */
2648 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0)
2649 sky2_write8(hw, STAT_FIFO_ISR_WM, 4);
2650 else
2651 sky2_write8(hw, STAT_FIFO_ISR_WM, 16);
cd28ab6a 2652
290d4de5 2653 sky2_write32(hw, STAT_TX_TIMER_INI, sky2_us2clk(hw, 1000));
77b3d6a2
SH
2654 sky2_write32(hw, STAT_ISR_TIMER_INI, sky2_us2clk(hw, 20));
2655 sky2_write32(hw, STAT_LEV_TIMER_INI, sky2_us2clk(hw, 100));
cd28ab6a 2656
793b883e 2657 /* enable status unit */
cd28ab6a
SH
2658 sky2_write32(hw, STAT_CTRL, SC_STAT_OP_ON);
2659
2660 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
2661 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
2662 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
e3173832
SH
2663}
2664
81906791
SH
2665static void sky2_restart(struct work_struct *work)
2666{
2667 struct sky2_hw *hw = container_of(work, struct sky2_hw, restart_work);
2668 struct net_device *dev;
2669 int i, err;
2670
2671 dev_dbg(&hw->pdev->dev, "restarting\n");
2672
2673 del_timer_sync(&hw->idle_timer);
2674
2675 rtnl_lock();
2676 sky2_write32(hw, B0_IMSK, 0);
2677 sky2_read32(hw, B0_IMSK);
2678
2679 netif_poll_disable(hw->dev[0]);
2680
2681 for (i = 0; i < hw->ports; i++) {
2682 dev = hw->dev[i];
2683 if (netif_running(dev))
2684 sky2_down(dev);
2685 }
2686
2687 sky2_reset(hw);
2688 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
2689 netif_poll_enable(hw->dev[0]);
2690
2691 for (i = 0; i < hw->ports; i++) {
2692 dev = hw->dev[i];
2693 if (netif_running(dev)) {
2694 err = sky2_up(dev);
2695 if (err) {
2696 printk(KERN_INFO PFX "%s: could not restart %d\n",
2697 dev->name, err);
2698 dev_close(dev);
2699 }
2700 }
2701 }
2702
2703 sky2_idle_start(hw);
2704
2705 rtnl_unlock();
2706}
2707
e3173832
SH
2708static inline u8 sky2_wol_supported(const struct sky2_hw *hw)
2709{
2710 return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0;
2711}
2712
2713static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2714{
2715 const struct sky2_port *sky2 = netdev_priv(dev);
2716
2717 wol->supported = sky2_wol_supported(sky2->hw);
2718 wol->wolopts = sky2->wol;
2719}
2720
2721static int sky2_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2722{
2723 struct sky2_port *sky2 = netdev_priv(dev);
2724 struct sky2_hw *hw = sky2->hw;
cd28ab6a 2725
e3173832
SH
2726 if (wol->wolopts & ~sky2_wol_supported(sky2->hw))
2727 return -EOPNOTSUPP;
2728
2729 sky2->wol = wol->wolopts;
2730
2731 if (hw->chip_id == CHIP_ID_YUKON_EC_U)
2732 sky2_write32(hw, B0_CTST, sky2->wol
2733 ? Y2_HW_WOL_ON : Y2_HW_WOL_OFF);
2734
2735 if (!netif_running(dev))
2736 sky2_wol_init(sky2);
cd28ab6a
SH
2737 return 0;
2738}
2739
28bd181a 2740static u32 sky2_supported_modes(const struct sky2_hw *hw)
cd28ab6a 2741{
b89165f2
SH
2742 if (sky2_is_copper(hw)) {
2743 u32 modes = SUPPORTED_10baseT_Half
2744 | SUPPORTED_10baseT_Full
2745 | SUPPORTED_100baseT_Half
2746 | SUPPORTED_100baseT_Full
2747 | SUPPORTED_Autoneg | SUPPORTED_TP;
cd28ab6a
SH
2748
2749 if (hw->chip_id != CHIP_ID_YUKON_FE)
2750 modes |= SUPPORTED_1000baseT_Half
b89165f2
SH
2751 | SUPPORTED_1000baseT_Full;
2752 return modes;
cd28ab6a 2753 } else
b89165f2
SH
2754 return SUPPORTED_1000baseT_Half
2755 | SUPPORTED_1000baseT_Full
2756 | SUPPORTED_Autoneg
2757 | SUPPORTED_FIBRE;
cd28ab6a
SH
2758}
2759
793b883e 2760static int sky2_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
cd28ab6a
SH
2761{
2762 struct sky2_port *sky2 = netdev_priv(dev);
2763 struct sky2_hw *hw = sky2->hw;
2764
2765 ecmd->transceiver = XCVR_INTERNAL;
2766 ecmd->supported = sky2_supported_modes(hw);
2767 ecmd->phy_address = PHY_ADDR_MARV;
b89165f2 2768 if (sky2_is_copper(hw)) {
cd28ab6a 2769 ecmd->supported = SUPPORTED_10baseT_Half
793b883e
SH
2770 | SUPPORTED_10baseT_Full
2771 | SUPPORTED_100baseT_Half
2772 | SUPPORTED_100baseT_Full
2773 | SUPPORTED_1000baseT_Half
2774 | SUPPORTED_1000baseT_Full
2775 | SUPPORTED_Autoneg | SUPPORTED_TP;
cd28ab6a 2776 ecmd->port = PORT_TP;
b89165f2
SH
2777 ecmd->speed = sky2->speed;
2778 } else {
2779 ecmd->speed = SPEED_1000;
cd28ab6a 2780 ecmd->port = PORT_FIBRE;
b89165f2 2781 }
cd28ab6a
SH
2782
2783 ecmd->advertising = sky2->advertising;
2784 ecmd->autoneg = sky2->autoneg;
cd28ab6a
SH
2785 ecmd->duplex = sky2->duplex;
2786 return 0;
2787}
2788
2789static int sky2_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
2790{
2791 struct sky2_port *sky2 = netdev_priv(dev);
2792 const struct sky2_hw *hw = sky2->hw;
2793 u32 supported = sky2_supported_modes(hw);
2794
2795 if (ecmd->autoneg == AUTONEG_ENABLE) {
2796 ecmd->advertising = supported;
2797 sky2->duplex = -1;
2798 sky2->speed = -1;
2799 } else {
2800 u32 setting;
2801
793b883e 2802 switch (ecmd->speed) {
cd28ab6a
SH
2803 case SPEED_1000:
2804 if (ecmd->duplex == DUPLEX_FULL)
2805 setting = SUPPORTED_1000baseT_Full;
2806 else if (ecmd->duplex == DUPLEX_HALF)
2807 setting = SUPPORTED_1000baseT_Half;
2808 else
2809 return -EINVAL;
2810 break;
2811 case SPEED_100:
2812 if (ecmd->duplex == DUPLEX_FULL)
2813 setting = SUPPORTED_100baseT_Full;
2814 else if (ecmd->duplex == DUPLEX_HALF)
2815 setting = SUPPORTED_100baseT_Half;
2816 else
2817 return -EINVAL;
2818 break;
2819
2820 case SPEED_10:
2821 if (ecmd->duplex == DUPLEX_FULL)
2822 setting = SUPPORTED_10baseT_Full;
2823 else if (ecmd->duplex == DUPLEX_HALF)
2824 setting = SUPPORTED_10baseT_Half;
2825 else
2826 return -EINVAL;
2827 break;
2828 default:
2829 return -EINVAL;
2830 }
2831
2832 if ((setting & supported) == 0)
2833 return -EINVAL;
2834
2835 sky2->speed = ecmd->speed;
2836 sky2->duplex = ecmd->duplex;
2837 }
2838
2839 sky2->autoneg = ecmd->autoneg;
2840 sky2->advertising = ecmd->advertising;
2841
1b537565
SH
2842 if (netif_running(dev))
2843 sky2_phy_reinit(sky2);
cd28ab6a
SH
2844
2845 return 0;
2846}
2847
2848static void sky2_get_drvinfo(struct net_device *dev,
2849 struct ethtool_drvinfo *info)
2850{
2851 struct sky2_port *sky2 = netdev_priv(dev);
2852
2853 strcpy(info->driver, DRV_NAME);
2854 strcpy(info->version, DRV_VERSION);
2855 strcpy(info->fw_version, "N/A");
2856 strcpy(info->bus_info, pci_name(sky2->hw->pdev));
2857}
2858
2859static const struct sky2_stat {
793b883e
SH
2860 char name[ETH_GSTRING_LEN];
2861 u16 offset;
cd28ab6a
SH
2862} sky2_stats[] = {
2863 { "tx_bytes", GM_TXO_OK_HI },
2864 { "rx_bytes", GM_RXO_OK_HI },
2865 { "tx_broadcast", GM_TXF_BC_OK },
2866 { "rx_broadcast", GM_RXF_BC_OK },
2867 { "tx_multicast", GM_TXF_MC_OK },
2868 { "rx_multicast", GM_RXF_MC_OK },
2869 { "tx_unicast", GM_TXF_UC_OK },
2870 { "rx_unicast", GM_RXF_UC_OK },
2871 { "tx_mac_pause", GM_TXF_MPAUSE },
2872 { "rx_mac_pause", GM_RXF_MPAUSE },
eadfa7dd 2873 { "collisions", GM_TXF_COL },
cd28ab6a
SH
2874 { "late_collision",GM_TXF_LAT_COL },
2875 { "aborted", GM_TXF_ABO_COL },
eadfa7dd 2876 { "single_collisions", GM_TXF_SNG_COL },
cd28ab6a 2877 { "multi_collisions", GM_TXF_MUL_COL },
eadfa7dd 2878
d2604540 2879 { "rx_short", GM_RXF_SHT },
cd28ab6a 2880 { "rx_runt", GM_RXE_FRAG },
eadfa7dd
SH
2881 { "rx_64_byte_packets", GM_RXF_64B },
2882 { "rx_65_to_127_byte_packets", GM_RXF_127B },
2883 { "rx_128_to_255_byte_packets", GM_RXF_255B },
2884 { "rx_256_to_511_byte_packets", GM_RXF_511B },
2885 { "rx_512_to_1023_byte_packets", GM_RXF_1023B },
2886 { "rx_1024_to_1518_byte_packets", GM_RXF_1518B },
2887 { "rx_1518_to_max_byte_packets", GM_RXF_MAX_SZ },
cd28ab6a 2888 { "rx_too_long", GM_RXF_LNG_ERR },
eadfa7dd
SH
2889 { "rx_fifo_overflow", GM_RXE_FIFO_OV },
2890 { "rx_jabber", GM_RXF_JAB_PKT },
cd28ab6a 2891 { "rx_fcs_error", GM_RXF_FCS_ERR },
eadfa7dd
SH
2892
2893 { "tx_64_byte_packets", GM_TXF_64B },
2894 { "tx_65_to_127_byte_packets", GM_TXF_127B },
2895 { "tx_128_to_255_byte_packets", GM_TXF_255B },
2896 { "tx_256_to_511_byte_packets", GM_TXF_511B },
2897 { "tx_512_to_1023_byte_packets", GM_TXF_1023B },
2898 { "tx_1024_to_1518_byte_packets", GM_TXF_1518B },
2899 { "tx_1519_to_max_byte_packets", GM_TXF_MAX_SZ },
2900 { "tx_fifo_underrun", GM_TXE_FIFO_UR },
cd28ab6a
SH
2901};
2902
cd28ab6a
SH
2903static u32 sky2_get_rx_csum(struct net_device *dev)
2904{
2905 struct sky2_port *sky2 = netdev_priv(dev);
2906
2907 return sky2->rx_csum;
2908}
2909
2910static int sky2_set_rx_csum(struct net_device *dev, u32 data)
2911{
2912 struct sky2_port *sky2 = netdev_priv(dev);
2913
2914 sky2->rx_csum = data;
793b883e 2915
cd28ab6a
SH
2916 sky2_write32(sky2->hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
2917 data ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
2918
2919 return 0;
2920}
2921
2922static u32 sky2_get_msglevel(struct net_device *netdev)
2923{
2924 struct sky2_port *sky2 = netdev_priv(netdev);
2925 return sky2->msg_enable;
2926}
2927
9a7ae0a9
SH
2928static int sky2_nway_reset(struct net_device *dev)
2929{
2930 struct sky2_port *sky2 = netdev_priv(dev);
9a7ae0a9 2931
16ad91e1 2932 if (!netif_running(dev) || sky2->autoneg != AUTONEG_ENABLE)
9a7ae0a9
SH
2933 return -EINVAL;
2934
1b537565 2935 sky2_phy_reinit(sky2);
9a7ae0a9
SH
2936
2937 return 0;
2938}
2939
793b883e 2940static void sky2_phy_stats(struct sky2_port *sky2, u64 * data, unsigned count)
cd28ab6a
SH
2941{
2942 struct sky2_hw *hw = sky2->hw;
2943 unsigned port = sky2->port;
2944 int i;
2945
2946 data[0] = (u64) gma_read32(hw, port, GM_TXO_OK_HI) << 32
793b883e 2947 | (u64) gma_read32(hw, port, GM_TXO_OK_LO);
cd28ab6a 2948 data[1] = (u64) gma_read32(hw, port, GM_RXO_OK_HI) << 32
793b883e 2949 | (u64) gma_read32(hw, port, GM_RXO_OK_LO);
cd28ab6a 2950
793b883e 2951 for (i = 2; i < count; i++)
cd28ab6a
SH
2952 data[i] = (u64) gma_read32(hw, port, sky2_stats[i].offset);
2953}
2954
cd28ab6a
SH
2955static void sky2_set_msglevel(struct net_device *netdev, u32 value)
2956{
2957 struct sky2_port *sky2 = netdev_priv(netdev);
2958 sky2->msg_enable = value;
2959}
2960
2961static int sky2_get_stats_count(struct net_device *dev)
2962{
2963 return ARRAY_SIZE(sky2_stats);
2964}
2965
2966static void sky2_get_ethtool_stats(struct net_device *dev,
793b883e 2967 struct ethtool_stats *stats, u64 * data)
cd28ab6a
SH
2968{
2969 struct sky2_port *sky2 = netdev_priv(dev);
2970
793b883e 2971 sky2_phy_stats(sky2, data, ARRAY_SIZE(sky2_stats));
cd28ab6a
SH
2972}
2973
793b883e 2974static void sky2_get_strings(struct net_device *dev, u32 stringset, u8 * data)
cd28ab6a
SH
2975{
2976 int i;
2977
2978 switch (stringset) {
2979 case ETH_SS_STATS:
2980 for (i = 0; i < ARRAY_SIZE(sky2_stats); i++)
2981 memcpy(data + i * ETH_GSTRING_LEN,
2982 sky2_stats[i].name, ETH_GSTRING_LEN);
2983 break;
2984 }
2985}
2986
cd28ab6a
SH
2987static struct net_device_stats *sky2_get_stats(struct net_device *dev)
2988{
2989 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
2990 return &sky2->net_stats;
2991}
2992
2993static int sky2_set_mac_address(struct net_device *dev, void *p)
2994{
2995 struct sky2_port *sky2 = netdev_priv(dev);
a8ab1ec0
SH
2996 struct sky2_hw *hw = sky2->hw;
2997 unsigned port = sky2->port;
2998 const struct sockaddr *addr = p;
cd28ab6a
SH
2999
3000 if (!is_valid_ether_addr(addr->sa_data))
3001 return -EADDRNOTAVAIL;
3002
cd28ab6a 3003 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
a8ab1ec0 3004 memcpy_toio(hw->regs + B2_MAC_1 + port * 8,
cd28ab6a 3005 dev->dev_addr, ETH_ALEN);
a8ab1ec0 3006 memcpy_toio(hw->regs + B2_MAC_2 + port * 8,
cd28ab6a 3007 dev->dev_addr, ETH_ALEN);
1b537565 3008
a8ab1ec0
SH
3009 /* virtual address for data */
3010 gma_set_addr(hw, port, GM_SRC_ADDR_2L, dev->dev_addr);
3011
3012 /* physical address: used for pause frames */
3013 gma_set_addr(hw, port, GM_SRC_ADDR_1L, dev->dev_addr);
1b537565
SH
3014
3015 return 0;
cd28ab6a
SH
3016}
3017
a052b52f
SH
3018static void inline sky2_add_filter(u8 filter[8], const u8 *addr)
3019{
3020 u32 bit;
3021
3022 bit = ether_crc(ETH_ALEN, addr) & 63;
3023 filter[bit >> 3] |= 1 << (bit & 7);
3024}
3025
cd28ab6a
SH
3026static void sky2_set_multicast(struct net_device *dev)
3027{
3028 struct sky2_port *sky2 = netdev_priv(dev);
3029 struct sky2_hw *hw = sky2->hw;
3030 unsigned port = sky2->port;
3031 struct dev_mc_list *list = dev->mc_list;
3032 u16 reg;
3033 u8 filter[8];
a052b52f
SH
3034 int rx_pause;
3035 static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };
cd28ab6a 3036
a052b52f 3037 rx_pause = (sky2->flow_status == FC_RX || sky2->flow_status == FC_BOTH);
cd28ab6a
SH
3038 memset(filter, 0, sizeof(filter));
3039
3040 reg = gma_read16(hw, port, GM_RX_CTRL);
3041 reg |= GM_RXCR_UCF_ENA;
3042
d571b694 3043 if (dev->flags & IFF_PROMISC) /* promiscuous */
cd28ab6a 3044 reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
a052b52f 3045 else if (dev->flags & IFF_ALLMULTI)
cd28ab6a 3046 memset(filter, 0xff, sizeof(filter));
a052b52f 3047 else if (dev->mc_count == 0 && !rx_pause)
cd28ab6a
SH
3048 reg &= ~GM_RXCR_MCF_ENA;
3049 else {
3050 int i;
3051 reg |= GM_RXCR_MCF_ENA;
3052
a052b52f
SH
3053 if (rx_pause)
3054 sky2_add_filter(filter, pause_mc_addr);
3055
3056 for (i = 0; list && i < dev->mc_count; i++, list = list->next)
3057 sky2_add_filter(filter, list->dmi_addr);
cd28ab6a
SH
3058 }
3059
cd28ab6a 3060 gma_write16(hw, port, GM_MC_ADDR_H1,
793b883e 3061 (u16) filter[0] | ((u16) filter[1] << 8));
cd28ab6a 3062 gma_write16(hw, port, GM_MC_ADDR_H2,
793b883e 3063 (u16) filter[2] | ((u16) filter[3] << 8));
cd28ab6a 3064 gma_write16(hw, port, GM_MC_ADDR_H3,
793b883e 3065 (u16) filter[4] | ((u16) filter[5] << 8));
cd28ab6a 3066 gma_write16(hw, port, GM_MC_ADDR_H4,
793b883e 3067 (u16) filter[6] | ((u16) filter[7] << 8));
cd28ab6a
SH
3068
3069 gma_write16(hw, port, GM_RX_CTRL, reg);
3070}
3071
3072/* Can have one global because blinking is controlled by
3073 * ethtool and that is always under RTNL mutex
3074 */
91c86df5 3075static void sky2_led(struct sky2_hw *hw, unsigned port, int on)
cd28ab6a 3076{
793b883e
SH
3077 u16 pg;
3078
793b883e
SH
3079 switch (hw->chip_id) {
3080 case CHIP_ID_YUKON_XL:
3081 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3082 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3083 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3084 on ? (PHY_M_LEDC_LOS_CTRL(1) |
3085 PHY_M_LEDC_INIT_CTRL(7) |
3086 PHY_M_LEDC_STA1_CTRL(7) |
3087 PHY_M_LEDC_STA0_CTRL(7))
3088 : 0);
3089
3090 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3091 break;
3092
3093 default:
3094 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, 0);
0efdf262
SH
3095 gm_phy_write(hw, port, PHY_MARV_LED_OVER,
3096 on ? PHY_M_LED_ALL : 0);
793b883e 3097 }
cd28ab6a
SH
3098}
3099
3100/* blink LED's for finding board */
3101static int sky2_phys_id(struct net_device *dev, u32 data)
3102{
3103 struct sky2_port *sky2 = netdev_priv(dev);
3104 struct sky2_hw *hw = sky2->hw;
3105 unsigned port = sky2->port;
793b883e 3106 u16 ledctrl, ledover = 0;
cd28ab6a 3107 long ms;
91c86df5 3108 int interrupted;
cd28ab6a
SH
3109 int onoff = 1;
3110
793b883e 3111 if (!data || data > (u32) (MAX_SCHEDULE_TIMEOUT / HZ))
cd28ab6a
SH
3112 ms = jiffies_to_msecs(MAX_SCHEDULE_TIMEOUT);
3113 else
3114 ms = data * 1000;
3115
3116 /* save initial values */
e07b1aa8 3117 spin_lock_bh(&sky2->phy_lock);
793b883e
SH
3118 if (hw->chip_id == CHIP_ID_YUKON_XL) {
3119 u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3120 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3121 ledctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
3122 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3123 } else {
3124 ledctrl = gm_phy_read(hw, port, PHY_MARV_LED_CTRL);
3125 ledover = gm_phy_read(hw, port, PHY_MARV_LED_OVER);
3126 }
cd28ab6a 3127
91c86df5
SH
3128 interrupted = 0;
3129 while (!interrupted && ms > 0) {
cd28ab6a
SH
3130 sky2_led(hw, port, onoff);
3131 onoff = !onoff;
3132
e07b1aa8 3133 spin_unlock_bh(&sky2->phy_lock);
91c86df5 3134 interrupted = msleep_interruptible(250);
e07b1aa8 3135 spin_lock_bh(&sky2->phy_lock);
91c86df5 3136
cd28ab6a
SH
3137 ms -= 250;
3138 }
3139
3140 /* resume regularly scheduled programming */
793b883e
SH
3141 if (hw->chip_id == CHIP_ID_YUKON_XL) {
3142 u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3143 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3144 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ledctrl);
3145 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3146 } else {
3147 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
3148 gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);
3149 }
e07b1aa8 3150 spin_unlock_bh(&sky2->phy_lock);
cd28ab6a
SH
3151
3152 return 0;
3153}
3154
3155static void sky2_get_pauseparam(struct net_device *dev,
3156 struct ethtool_pauseparam *ecmd)
3157{
3158 struct sky2_port *sky2 = netdev_priv(dev);
3159
16ad91e1
SH
3160 switch (sky2->flow_mode) {
3161 case FC_NONE:
3162 ecmd->tx_pause = ecmd->rx_pause = 0;
3163 break;
3164 case FC_TX:
3165 ecmd->tx_pause = 1, ecmd->rx_pause = 0;
3166 break;
3167 case FC_RX:
3168 ecmd->tx_pause = 0, ecmd->rx_pause = 1;
3169 break;
3170 case FC_BOTH:
3171 ecmd->tx_pause = ecmd->rx_pause = 1;
3172 }
3173
cd28ab6a
SH
3174 ecmd->autoneg = sky2->autoneg;
3175}
3176
3177static int sky2_set_pauseparam(struct net_device *dev,
3178 struct ethtool_pauseparam *ecmd)
3179{
3180 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
3181
3182 sky2->autoneg = ecmd->autoneg;
16ad91e1 3183 sky2->flow_mode = sky2_flow(ecmd->rx_pause, ecmd->tx_pause);
cd28ab6a 3184
16ad91e1
SH
3185 if (netif_running(dev))
3186 sky2_phy_reinit(sky2);
cd28ab6a 3187
2eaba1a2 3188 return 0;
cd28ab6a
SH
3189}
3190
fb17358f
SH
3191static int sky2_get_coalesce(struct net_device *dev,
3192 struct ethtool_coalesce *ecmd)
3193{
3194 struct sky2_port *sky2 = netdev_priv(dev);
3195 struct sky2_hw *hw = sky2->hw;
3196
3197 if (sky2_read8(hw, STAT_TX_TIMER_CTRL) == TIM_STOP)
3198 ecmd->tx_coalesce_usecs = 0;
3199 else {
3200 u32 clks = sky2_read32(hw, STAT_TX_TIMER_INI);
3201 ecmd->tx_coalesce_usecs = sky2_clk2us(hw, clks);
3202 }
3203 ecmd->tx_max_coalesced_frames = sky2_read16(hw, STAT_TX_IDX_TH);
3204
3205 if (sky2_read8(hw, STAT_LEV_TIMER_CTRL) == TIM_STOP)
3206 ecmd->rx_coalesce_usecs = 0;
3207 else {
3208 u32 clks = sky2_read32(hw, STAT_LEV_TIMER_INI);
3209 ecmd->rx_coalesce_usecs = sky2_clk2us(hw, clks);
3210 }
3211 ecmd->rx_max_coalesced_frames = sky2_read8(hw, STAT_FIFO_WM);
3212
3213 if (sky2_read8(hw, STAT_ISR_TIMER_CTRL) == TIM_STOP)
3214 ecmd->rx_coalesce_usecs_irq = 0;
3215 else {
3216 u32 clks = sky2_read32(hw, STAT_ISR_TIMER_INI);
3217 ecmd->rx_coalesce_usecs_irq = sky2_clk2us(hw, clks);
3218 }
3219
3220 ecmd->rx_max_coalesced_frames_irq = sky2_read8(hw, STAT_FIFO_ISR_WM);
3221
3222 return 0;
3223}
3224
3225/* Note: this affect both ports */
3226static int sky2_set_coalesce(struct net_device *dev,
3227 struct ethtool_coalesce *ecmd)
3228{
3229 struct sky2_port *sky2 = netdev_priv(dev);
3230 struct sky2_hw *hw = sky2->hw;
77b3d6a2 3231 const u32 tmax = sky2_clk2us(hw, 0x0ffffff);
fb17358f 3232
77b3d6a2
SH
3233 if (ecmd->tx_coalesce_usecs > tmax ||
3234 ecmd->rx_coalesce_usecs > tmax ||
3235 ecmd->rx_coalesce_usecs_irq > tmax)
fb17358f
SH
3236 return -EINVAL;
3237
ff81fbbe 3238 if (ecmd->tx_max_coalesced_frames >= TX_RING_SIZE-1)
fb17358f 3239 return -EINVAL;
ff81fbbe 3240 if (ecmd->rx_max_coalesced_frames > RX_MAX_PENDING)
fb17358f 3241 return -EINVAL;
ff81fbbe 3242 if (ecmd->rx_max_coalesced_frames_irq >RX_MAX_PENDING)
fb17358f
SH
3243 return -EINVAL;
3244
3245 if (ecmd->tx_coalesce_usecs == 0)
3246 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_STOP);
3247 else {
3248 sky2_write32(hw, STAT_TX_TIMER_INI,
3249 sky2_us2clk(hw, ecmd->tx_coalesce_usecs));
3250 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
3251 }
3252 sky2_write16(hw, STAT_TX_IDX_TH, ecmd->tx_max_coalesced_frames);
3253
3254 if (ecmd->rx_coalesce_usecs == 0)
3255 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_STOP);
3256 else {
3257 sky2_write32(hw, STAT_LEV_TIMER_INI,
3258 sky2_us2clk(hw, ecmd->rx_coalesce_usecs));
3259 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
3260 }
3261 sky2_write8(hw, STAT_FIFO_WM, ecmd->rx_max_coalesced_frames);
3262
3263 if (ecmd->rx_coalesce_usecs_irq == 0)
3264 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_STOP);
3265 else {
d28d4870 3266 sky2_write32(hw, STAT_ISR_TIMER_INI,
fb17358f
SH
3267 sky2_us2clk(hw, ecmd->rx_coalesce_usecs_irq));
3268 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
3269 }
3270 sky2_write8(hw, STAT_FIFO_ISR_WM, ecmd->rx_max_coalesced_frames_irq);
3271 return 0;
3272}
3273
793b883e
SH
3274static void sky2_get_ringparam(struct net_device *dev,
3275 struct ethtool_ringparam *ering)
3276{
3277 struct sky2_port *sky2 = netdev_priv(dev);
3278
3279 ering->rx_max_pending = RX_MAX_PENDING;
3280 ering->rx_mini_max_pending = 0;
3281 ering->rx_jumbo_max_pending = 0;
3282 ering->tx_max_pending = TX_RING_SIZE - 1;
3283
3284 ering->rx_pending = sky2->rx_pending;
3285 ering->rx_mini_pending = 0;
3286 ering->rx_jumbo_pending = 0;
3287 ering->tx_pending = sky2->tx_pending;
3288}
3289
3290static int sky2_set_ringparam(struct net_device *dev,
3291 struct ethtool_ringparam *ering)
3292{
3293 struct sky2_port *sky2 = netdev_priv(dev);
3294 int err = 0;
3295
3296 if (ering->rx_pending > RX_MAX_PENDING ||
3297 ering->rx_pending < 8 ||
3298 ering->tx_pending < MAX_SKB_TX_LE ||
3299 ering->tx_pending > TX_RING_SIZE - 1)
3300 return -EINVAL;
3301
3302 if (netif_running(dev))
3303 sky2_down(dev);
3304
3305 sky2->rx_pending = ering->rx_pending;
3306 sky2->tx_pending = ering->tx_pending;
3307
1b537565 3308 if (netif_running(dev)) {
793b883e 3309 err = sky2_up(dev);
1b537565
SH
3310 if (err)
3311 dev_close(dev);
6ed995bb
SH
3312 else
3313 sky2_set_multicast(dev);
1b537565 3314 }
793b883e
SH
3315
3316 return err;
3317}
3318
793b883e
SH
3319static int sky2_get_regs_len(struct net_device *dev)
3320{
6e4cbb34 3321 return 0x4000;
793b883e
SH
3322}
3323
3324/*
3325 * Returns copy of control register region
6e4cbb34 3326 * Note: access to the RAM address register set will cause timeouts.
793b883e
SH
3327 */
3328static void sky2_get_regs(struct net_device *dev, struct ethtool_regs *regs,
3329 void *p)
3330{
3331 const struct sky2_port *sky2 = netdev_priv(dev);
793b883e 3332 const void __iomem *io = sky2->hw->regs;
793b883e 3333
6e4cbb34 3334 BUG_ON(regs->len < B3_RI_WTO_R1);
793b883e 3335 regs->version = 1;
6e4cbb34 3336 memset(p, 0, regs->len);
793b883e 3337
6e4cbb34
SH
3338 memcpy_fromio(p, io, B3_RAM_ADDR);
3339
3340 memcpy_fromio(p + B3_RI_WTO_R1,
3341 io + B3_RI_WTO_R1,
3342 regs->len - B3_RI_WTO_R1);
793b883e 3343}
cd28ab6a 3344
b628ed98
SH
3345/* In order to do Jumbo packets on these chips, need to turn off the
3346 * transmit store/forward. Therefore checksum offload won't work.
3347 */
3348static int no_tx_offload(struct net_device *dev)
3349{
3350 const struct sky2_port *sky2 = netdev_priv(dev);
3351 const struct sky2_hw *hw = sky2->hw;
3352
3353 return dev->mtu > ETH_DATA_LEN &&
3354 (hw->chip_id == CHIP_ID_YUKON_EX
3355 || hw->chip_id == CHIP_ID_YUKON_EC_U);
3356}
3357
3358static int sky2_set_tx_csum(struct net_device *dev, u32 data)
3359{
3360 if (data && no_tx_offload(dev))
3361 return -EINVAL;
3362
3363 return ethtool_op_set_tx_csum(dev, data);
3364}
3365
3366
3367static int sky2_set_tso(struct net_device *dev, u32 data)
3368{
3369 if (data && no_tx_offload(dev))
3370 return -EINVAL;
3371
3372 return ethtool_op_set_tso(dev, data);
3373}
3374
7282d491 3375static const struct ethtool_ops sky2_ethtool_ops = {
793b883e
SH
3376 .get_settings = sky2_get_settings,
3377 .set_settings = sky2_set_settings,
e3173832
SH
3378 .get_drvinfo = sky2_get_drvinfo,
3379 .get_wol = sky2_get_wol,
3380 .set_wol = sky2_set_wol,
793b883e
SH
3381 .get_msglevel = sky2_get_msglevel,
3382 .set_msglevel = sky2_set_msglevel,
9a7ae0a9 3383 .nway_reset = sky2_nway_reset,
793b883e
SH
3384 .get_regs_len = sky2_get_regs_len,
3385 .get_regs = sky2_get_regs,
3386 .get_link = ethtool_op_get_link,
3387 .get_sg = ethtool_op_get_sg,
3388 .set_sg = ethtool_op_set_sg,
3389 .get_tx_csum = ethtool_op_get_tx_csum,
b628ed98 3390 .set_tx_csum = sky2_set_tx_csum,
793b883e 3391 .get_tso = ethtool_op_get_tso,
b628ed98 3392 .set_tso = sky2_set_tso,
793b883e
SH
3393 .get_rx_csum = sky2_get_rx_csum,
3394 .set_rx_csum = sky2_set_rx_csum,
3395 .get_strings = sky2_get_strings,
fb17358f
SH
3396 .get_coalesce = sky2_get_coalesce,
3397 .set_coalesce = sky2_set_coalesce,
793b883e
SH
3398 .get_ringparam = sky2_get_ringparam,
3399 .set_ringparam = sky2_set_ringparam,
cd28ab6a
SH
3400 .get_pauseparam = sky2_get_pauseparam,
3401 .set_pauseparam = sky2_set_pauseparam,
793b883e 3402 .phys_id = sky2_phys_id,
cd28ab6a
SH
3403 .get_stats_count = sky2_get_stats_count,
3404 .get_ethtool_stats = sky2_get_ethtool_stats,
2995bfb7 3405 .get_perm_addr = ethtool_op_get_perm_addr,
cd28ab6a
SH
3406};
3407
3408/* Initialize network device */
3409static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
e3173832
SH
3410 unsigned port,
3411 int highmem, int wol)
cd28ab6a
SH
3412{
3413 struct sky2_port *sky2;
3414 struct net_device *dev = alloc_etherdev(sizeof(*sky2));
3415
3416 if (!dev) {
b02a9258 3417 dev_err(&hw->pdev->dev, "etherdev alloc failed");
cd28ab6a
SH
3418 return NULL;
3419 }
3420
3421 SET_MODULE_OWNER(dev);
3422 SET_NETDEV_DEV(dev, &hw->pdev->dev);
ef743d33 3423 dev->irq = hw->pdev->irq;
cd28ab6a
SH
3424 dev->open = sky2_up;
3425 dev->stop = sky2_down;
ef743d33 3426 dev->do_ioctl = sky2_ioctl;
cd28ab6a
SH
3427 dev->hard_start_xmit = sky2_xmit_frame;
3428 dev->get_stats = sky2_get_stats;
3429 dev->set_multicast_list = sky2_set_multicast;
3430 dev->set_mac_address = sky2_set_mac_address;
3431 dev->change_mtu = sky2_change_mtu;
3432 SET_ETHTOOL_OPS(dev, &sky2_ethtool_ops);
3433 dev->tx_timeout = sky2_tx_timeout;
3434 dev->watchdog_timeo = TX_WATCHDOG;
3435 if (port == 0)
3436 dev->poll = sky2_poll;
3437 dev->weight = NAPI_WEIGHT;
3438#ifdef CONFIG_NET_POLL_CONTROLLER
0ca43235
SH
3439 /* Network console (only works on port 0)
3440 * because netpoll makes assumptions about NAPI
3441 */
3442 if (port == 0)
3443 dev->poll_controller = sky2_netpoll;
cd28ab6a 3444#endif
cd28ab6a
SH
3445
3446 sky2 = netdev_priv(dev);
3447 sky2->netdev = dev;
3448 sky2->hw = hw;
3449 sky2->msg_enable = netif_msg_init(debug, default_msg);
3450
cd28ab6a
SH
3451 /* Auto speed and flow control */
3452 sky2->autoneg = AUTONEG_ENABLE;
16ad91e1
SH
3453 sky2->flow_mode = FC_BOTH;
3454
cd28ab6a
SH
3455 sky2->duplex = -1;
3456 sky2->speed = -1;
3457 sky2->advertising = sky2_supported_modes(hw);
ee7abb04 3458 sky2->rx_csum = 1;
e3173832 3459 sky2->wol = wol;
75d070c5 3460
e07b1aa8 3461 spin_lock_init(&sky2->phy_lock);
793b883e 3462 sky2->tx_pending = TX_DEF_PENDING;
290d4de5 3463 sky2->rx_pending = RX_DEF_PENDING;
cd28ab6a
SH
3464
3465 hw->dev[port] = dev;
3466
3467 sky2->port = port;
3468
4a50a876 3469 dev->features |= NETIF_F_TSO | NETIF_F_IP_CSUM | NETIF_F_SG;
cd28ab6a
SH
3470 if (highmem)
3471 dev->features |= NETIF_F_HIGHDMA;
cd28ab6a 3472
d1f13708
SH
3473#ifdef SKY2_VLAN_TAG_USED
3474 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3475 dev->vlan_rx_register = sky2_vlan_rx_register;
3476 dev->vlan_rx_kill_vid = sky2_vlan_rx_kill_vid;
3477#endif
3478
cd28ab6a 3479 /* read the mac address */
793b883e 3480 memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8, ETH_ALEN);
2995bfb7 3481 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
cd28ab6a
SH
3482
3483 /* device is off until link detection */
3484 netif_carrier_off(dev);
3485 netif_stop_queue(dev);
3486
3487 return dev;
3488}
3489
28bd181a 3490static void __devinit sky2_show_addr(struct net_device *dev)
cd28ab6a
SH
3491{
3492 const struct sky2_port *sky2 = netdev_priv(dev);
3493
3494 if (netif_msg_probe(sky2))
3495 printk(KERN_INFO PFX "%s: addr %02x:%02x:%02x:%02x:%02x:%02x\n",
3496 dev->name,
3497 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
3498 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
3499}
3500
fb2690a9 3501/* Handle software interrupt used during MSI test */
7d12e780 3502static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
fb2690a9
SH
3503{
3504 struct sky2_hw *hw = dev_id;
3505 u32 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
3506
3507 if (status == 0)
3508 return IRQ_NONE;
3509
3510 if (status & Y2_IS_IRQ_SW) {
b0a20ded 3511 hw->msi = 1;
fb2690a9
SH
3512 wake_up(&hw->msi_wait);
3513 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
3514 }
3515 sky2_write32(hw, B0_Y2_SP_ICR, 2);
3516
3517 return IRQ_HANDLED;
3518}
3519
3520/* Test interrupt path by forcing a a software IRQ */
3521static int __devinit sky2_test_msi(struct sky2_hw *hw)
3522{
3523 struct pci_dev *pdev = hw->pdev;
3524 int err;
3525
bb507fe1
SH
3526 init_waitqueue_head (&hw->msi_wait);
3527
fb2690a9
SH
3528 sky2_write32(hw, B0_IMSK, Y2_IS_IRQ_SW);
3529
b0a20ded 3530 err = request_irq(pdev->irq, sky2_test_intr, 0, DRV_NAME, hw);
fb2690a9 3531 if (err) {
b02a9258 3532 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
fb2690a9
SH
3533 return err;
3534 }
3535
fb2690a9 3536 sky2_write8(hw, B0_CTST, CS_ST_SW_IRQ);
bb507fe1 3537 sky2_read8(hw, B0_CTST);
fb2690a9 3538
b0a20ded 3539 wait_event_timeout(hw->msi_wait, hw->msi, HZ/10);
fb2690a9 3540
b0a20ded 3541 if (!hw->msi) {
fb2690a9 3542 /* MSI test failed, go back to INTx mode */
b02a9258
SH
3543 dev_info(&pdev->dev, "No interrupt generated using MSI, "
3544 "switching to INTx mode.\n");
fb2690a9
SH
3545
3546 err = -EOPNOTSUPP;
3547 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
3548 }
3549
3550 sky2_write32(hw, B0_IMSK, 0);
2bffc23a 3551 sky2_read32(hw, B0_IMSK);
fb2690a9
SH
3552
3553 free_irq(pdev->irq, hw);
3554
3555 return err;
3556}
3557
e3173832
SH
3558static int __devinit pci_wake_enabled(struct pci_dev *dev)
3559{
3560 int pm = pci_find_capability(dev, PCI_CAP_ID_PM);
3561 u16 value;
3562
3563 if (!pm)
3564 return 0;
3565 if (pci_read_config_word(dev, pm + PCI_PM_CTRL, &value))
3566 return 0;
3567 return value & PCI_PM_CTRL_PME_ENABLE;
3568}
3569
cd28ab6a
SH
3570static int __devinit sky2_probe(struct pci_dev *pdev,
3571 const struct pci_device_id *ent)
3572{
7f60c64b 3573 struct net_device *dev;
cd28ab6a 3574 struct sky2_hw *hw;
e3173832 3575 int err, using_dac = 0, wol_default;
cd28ab6a 3576
793b883e
SH
3577 err = pci_enable_device(pdev);
3578 if (err) {
b02a9258 3579 dev_err(&pdev->dev, "cannot enable PCI device\n");
cd28ab6a
SH
3580 goto err_out;
3581 }
3582
793b883e
SH
3583 err = pci_request_regions(pdev, DRV_NAME);
3584 if (err) {
b02a9258 3585 dev_err(&pdev->dev, "cannot obtain PCI resources\n");
793b883e 3586 goto err_out;
cd28ab6a
SH
3587 }
3588
3589 pci_set_master(pdev);
3590
d1f3d4dd
SH
3591 if (sizeof(dma_addr_t) > sizeof(u32) &&
3592 !(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK))) {
3593 using_dac = 1;
3594 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
3595 if (err < 0) {
b02a9258
SH
3596 dev_err(&pdev->dev, "unable to obtain 64 bit DMA "
3597 "for consistent allocations\n");
d1f3d4dd
SH
3598 goto err_out_free_regions;
3599 }
d1f3d4dd 3600 } else {
cd28ab6a
SH
3601 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
3602 if (err) {
b02a9258 3603 dev_err(&pdev->dev, "no usable DMA configuration\n");
cd28ab6a
SH
3604 goto err_out_free_regions;
3605 }
3606 }
d1f3d4dd 3607
e3173832
SH
3608 wol_default = pci_wake_enabled(pdev) ? WAKE_MAGIC : 0;
3609
cd28ab6a 3610 err = -ENOMEM;
6aad85d6 3611 hw = kzalloc(sizeof(*hw), GFP_KERNEL);
cd28ab6a 3612 if (!hw) {
b02a9258 3613 dev_err(&pdev->dev, "cannot allocate hardware struct\n");
cd28ab6a
SH
3614 goto err_out_free_regions;
3615 }
3616
cd28ab6a 3617 hw->pdev = pdev;
cd28ab6a
SH
3618
3619 hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
3620 if (!hw->regs) {
b02a9258 3621 dev_err(&pdev->dev, "cannot map device registers\n");
cd28ab6a
SH
3622 goto err_out_free_hw;
3623 }
3624
56a645cc 3625#ifdef __BIG_ENDIAN
f65b138c
SH
3626 /* The sk98lin vendor driver uses hardware byte swapping but
3627 * this driver uses software swapping.
3628 */
56a645cc
SH
3629 {
3630 u32 reg;
56a645cc 3631 reg = sky2_pci_read32(hw, PCI_DEV_REG2);
f65b138c 3632 reg &= ~PCI_REV_DESC;
56a645cc
SH
3633 sky2_pci_write32(hw, PCI_DEV_REG2, reg);
3634 }
3635#endif
3636
08c06d8a
SH
3637 /* ring for status responses */
3638 hw->st_le = pci_alloc_consistent(hw->pdev, STATUS_LE_BYTES,
3639 &hw->st_dma);
3640 if (!hw->st_le)
3641 goto err_out_iounmap;
3642
e3173832 3643 err = sky2_init(hw);
cd28ab6a 3644 if (err)
793b883e 3645 goto err_out_iounmap;
cd28ab6a 3646
b02a9258 3647 dev_info(&pdev->dev, "v%s addr 0x%llx irq %d Yukon-%s (0x%x) rev %d\n",
7c7459d1
GKH
3648 DRV_VERSION, (unsigned long long)pci_resource_start(pdev, 0),
3649 pdev->irq, yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
793b883e 3650 hw->chip_id, hw->chip_rev);
cd28ab6a 3651
e3173832
SH
3652 sky2_reset(hw);
3653
3654 dev = sky2_init_netdev(hw, 0, using_dac, wol_default);
7f60c64b 3655 if (!dev) {
3656 err = -ENOMEM;
cd28ab6a 3657 goto err_out_free_pci;
7f60c64b 3658 }
cd28ab6a 3659
9fa1b1f3
SH
3660 if (!disable_msi && pci_enable_msi(pdev) == 0) {
3661 err = sky2_test_msi(hw);
3662 if (err == -EOPNOTSUPP)
3663 pci_disable_msi(pdev);
3664 else if (err)
3665 goto err_out_free_netdev;
3666 }
3667
793b883e
SH
3668 err = register_netdev(dev);
3669 if (err) {
b02a9258 3670 dev_err(&pdev->dev, "cannot register net device\n");
cd28ab6a
SH
3671 goto err_out_free_netdev;
3672 }
3673
b0a20ded
SH
3674 err = request_irq(pdev->irq, sky2_intr, hw->msi ? 0 : IRQF_SHARED,
3675 dev->name, hw);
9fa1b1f3 3676 if (err) {
b02a9258 3677 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
9fa1b1f3
SH
3678 goto err_out_unregister;
3679 }
3680 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
3681
cd28ab6a
SH
3682 sky2_show_addr(dev);
3683
7f60c64b 3684 if (hw->ports > 1) {
3685 struct net_device *dev1;
3686
e3173832 3687 dev1 = sky2_init_netdev(hw, 1, using_dac, wol_default);
b02a9258
SH
3688 if (!dev1)
3689 dev_warn(&pdev->dev, "allocation for second device failed\n");
3690 else if ((err = register_netdev(dev1))) {
3691 dev_warn(&pdev->dev,
3692 "register of second port failed (%d)\n", err);
cd28ab6a
SH
3693 hw->dev[1] = NULL;
3694 free_netdev(dev1);
b02a9258
SH
3695 } else
3696 sky2_show_addr(dev1);
cd28ab6a
SH
3697 }
3698
01bd7564 3699 setup_timer(&hw->idle_timer, sky2_idle, (unsigned long) hw);
81906791
SH
3700 INIT_WORK(&hw->restart_work, sky2_restart);
3701
eb35cf60 3702 sky2_idle_start(hw);
d27ed387 3703
793b883e
SH
3704 pci_set_drvdata(pdev, hw);
3705
cd28ab6a
SH
3706 return 0;
3707
793b883e 3708err_out_unregister:
b0a20ded
SH
3709 if (hw->msi)
3710 pci_disable_msi(pdev);
793b883e 3711 unregister_netdev(dev);
cd28ab6a
SH
3712err_out_free_netdev:
3713 free_netdev(dev);
cd28ab6a 3714err_out_free_pci:
793b883e 3715 sky2_write8(hw, B0_CTST, CS_RST_SET);
cd28ab6a
SH
3716 pci_free_consistent(hw->pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
3717err_out_iounmap:
3718 iounmap(hw->regs);
3719err_out_free_hw:
3720 kfree(hw);
3721err_out_free_regions:
3722 pci_release_regions(pdev);
cd28ab6a 3723 pci_disable_device(pdev);
cd28ab6a
SH
3724err_out:
3725 return err;
3726}
3727
3728static void __devexit sky2_remove(struct pci_dev *pdev)
3729{
793b883e 3730 struct sky2_hw *hw = pci_get_drvdata(pdev);
cd28ab6a
SH
3731 struct net_device *dev0, *dev1;
3732
793b883e 3733 if (!hw)
cd28ab6a
SH
3734 return;
3735
d27ed387
SH
3736 del_timer_sync(&hw->idle_timer);
3737
81906791
SH
3738 flush_scheduled_work();
3739
d27ed387 3740 sky2_write32(hw, B0_IMSK, 0);
72cb8529
SH
3741 synchronize_irq(hw->pdev->irq);
3742
cd28ab6a 3743 dev0 = hw->dev[0];
793b883e
SH
3744 dev1 = hw->dev[1];
3745 if (dev1)
3746 unregister_netdev(dev1);
cd28ab6a
SH
3747 unregister_netdev(dev0);
3748
ae306cca
SH
3749 sky2_power_aux(hw);
3750
cd28ab6a 3751 sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);
793b883e 3752 sky2_write8(hw, B0_CTST, CS_RST_SET);
5afa0a9c 3753 sky2_read8(hw, B0_CTST);
cd28ab6a
SH
3754
3755 free_irq(pdev->irq, hw);
b0a20ded
SH
3756 if (hw->msi)
3757 pci_disable_msi(pdev);
793b883e 3758 pci_free_consistent(pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
cd28ab6a
SH
3759 pci_release_regions(pdev);
3760 pci_disable_device(pdev);
793b883e 3761
cd28ab6a
SH
3762 if (dev1)
3763 free_netdev(dev1);
3764 free_netdev(dev0);
3765 iounmap(hw->regs);
3766 kfree(hw);
5afa0a9c 3767
cd28ab6a
SH
3768 pci_set_drvdata(pdev, NULL);
3769}
3770
3771#ifdef CONFIG_PM
3772static int sky2_suspend(struct pci_dev *pdev, pm_message_t state)
3773{
793b883e 3774 struct sky2_hw *hw = pci_get_drvdata(pdev);
e3173832 3775 int i, wol = 0;
cd28ab6a 3776
eb35cf60 3777 del_timer_sync(&hw->idle_timer);
6a5706b9 3778 netif_poll_disable(hw->dev[0]);
eb35cf60 3779
f05267e7 3780 for (i = 0; i < hw->ports; i++) {
cd28ab6a 3781 struct net_device *dev = hw->dev[i];
e3173832 3782 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a 3783
e3173832 3784 if (netif_running(dev))
5afa0a9c 3785 sky2_down(dev);
e3173832
SH
3786
3787 if (sky2->wol)
3788 sky2_wol_init(sky2);
3789
3790 wol |= sky2->wol;
cd28ab6a
SH
3791 }
3792
8ab8fca2 3793 sky2_write32(hw, B0_IMSK, 0);
ae306cca 3794 sky2_power_aux(hw);
e3173832 3795
d374c1c1 3796 pci_save_state(pdev);
e3173832 3797 pci_enable_wake(pdev, pci_choose_state(pdev, state), wol);
ae306cca
SH
3798 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3799
2ccc99b7 3800 return 0;
cd28ab6a
SH
3801}
3802
3803static int sky2_resume(struct pci_dev *pdev)
3804{
793b883e 3805 struct sky2_hw *hw = pci_get_drvdata(pdev);
08c06d8a 3806 int i, err;
cd28ab6a 3807
ae306cca
SH
3808 err = pci_set_power_state(pdev, PCI_D0);
3809 if (err)
3810 goto out;
3811
3812 err = pci_restore_state(pdev);
3813 if (err)
3814 goto out;
3815
cd28ab6a 3816 pci_enable_wake(pdev, PCI_D0, 0);
1ad5b4a5
SH
3817
3818 /* Re-enable all clocks */
3819 if (hw->chip_id == CHIP_ID_YUKON_EX || hw->chip_id == CHIP_ID_YUKON_EC_U)
3820 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
3821
e3173832 3822 sky2_reset(hw);
cd28ab6a 3823
8ab8fca2
SH
3824 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
3825
f05267e7 3826 for (i = 0; i < hw->ports; i++) {
cd28ab6a 3827 struct net_device *dev = hw->dev[i];
6a5706b9 3828 if (netif_running(dev)) {
08c06d8a
SH
3829 err = sky2_up(dev);
3830 if (err) {
3831 printk(KERN_ERR PFX "%s: could not up: %d\n",
3832 dev->name, err);
3833 dev_close(dev);
eb35cf60 3834 goto out;
5afa0a9c 3835 }
cd28ab6a
SH
3836 }
3837 }
eb35cf60 3838
6a5706b9 3839 netif_poll_enable(hw->dev[0]);
eb35cf60 3840 sky2_idle_start(hw);
ae306cca 3841 return 0;
08c06d8a 3842out:
b02a9258 3843 dev_err(&pdev->dev, "resume failed (%d)\n", err);
ae306cca 3844 pci_disable_device(pdev);
08c06d8a 3845 return err;
cd28ab6a
SH
3846}
3847#endif
3848
e3173832
SH
3849static void sky2_shutdown(struct pci_dev *pdev)
3850{
3851 struct sky2_hw *hw = pci_get_drvdata(pdev);
3852 int i, wol = 0;
3853
3854 del_timer_sync(&hw->idle_timer);
3855 netif_poll_disable(hw->dev[0]);
3856
3857 for (i = 0; i < hw->ports; i++) {
3858 struct net_device *dev = hw->dev[i];
3859 struct sky2_port *sky2 = netdev_priv(dev);
3860
3861 if (sky2->wol) {
3862 wol = 1;
3863 sky2_wol_init(sky2);
3864 }
3865 }
3866
3867 if (wol)
3868 sky2_power_aux(hw);
3869
3870 pci_enable_wake(pdev, PCI_D3hot, wol);
3871 pci_enable_wake(pdev, PCI_D3cold, wol);
3872
3873 pci_disable_device(pdev);
3874 pci_set_power_state(pdev, PCI_D3hot);
3875
3876}
3877
cd28ab6a 3878static struct pci_driver sky2_driver = {
793b883e
SH
3879 .name = DRV_NAME,
3880 .id_table = sky2_id_table,
3881 .probe = sky2_probe,
3882 .remove = __devexit_p(sky2_remove),
cd28ab6a 3883#ifdef CONFIG_PM
793b883e
SH
3884 .suspend = sky2_suspend,
3885 .resume = sky2_resume,
cd28ab6a 3886#endif
e3173832 3887 .shutdown = sky2_shutdown,
cd28ab6a
SH
3888};
3889
3890static int __init sky2_init_module(void)
3891{
50241c4c 3892 return pci_register_driver(&sky2_driver);
cd28ab6a
SH
3893}
3894
3895static void __exit sky2_cleanup_module(void)
3896{
3897 pci_unregister_driver(&sky2_driver);
3898}
3899
3900module_init(sky2_init_module);
3901module_exit(sky2_cleanup_module);
3902
3903MODULE_DESCRIPTION("Marvell Yukon 2 Gigabit Ethernet driver");
65ebe634 3904MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
cd28ab6a 3905MODULE_LICENSE("GPL");
5f4f9dc1 3906MODULE_VERSION(DRV_VERSION);