]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/sky2.c
sky2: EC-U performance and jumbo support
[mirror_ubuntu-bionic-kernel.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"
62ba7e6c 52#define DRV_VERSION "1.13"
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
6b1a3aef
SH
1902 if (!netif_running(dev)) {
1903 dev->mtu = new_mtu;
1904 return 0;
1905 }
1906
e07b1aa8 1907 imask = sky2_read32(hw, B0_IMSK);
6b1a3aef
SH
1908 sky2_write32(hw, B0_IMSK, 0);
1909
018d1c66
SH
1910 dev->trans_start = jiffies; /* prevent tx timeout */
1911 netif_stop_queue(dev);
1912 netif_poll_disable(hw->dev[0]);
1913
e07b1aa8
SH
1914 synchronize_irq(hw->pdev->irq);
1915
b628ed98
SH
1916 if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX) {
1917 if (new_mtu > ETH_DATA_LEN) {
1918 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1919 TX_JUMBO_ENA | TX_STFW_DIS);
1920 dev->features &= NETIF_F_TSO | NETIF_F_SG | NETIF_F_IP_CSUM;
1921 } else
1922 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1923 TX_JUMBO_DIS | TX_STFW_ENA);
1924 }
1925
1926 ctl = gma_read16(hw, port, GM_GP_CTRL);
1927 gma_write16(hw, port, GM_GP_CTRL, ctl & ~GM_GPCR_RX_ENA);
6b1a3aef
SH
1928 sky2_rx_stop(sky2);
1929 sky2_rx_clean(sky2);
cd28ab6a
SH
1930
1931 dev->mtu = new_mtu;
14d0263f 1932
6b1a3aef
SH
1933 mode = DATA_BLIND_VAL(DATA_BLIND_DEF) |
1934 GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
1935
1936 if (dev->mtu > ETH_DATA_LEN)
1937 mode |= GM_SMOD_JUMBO_ENA;
1938
b628ed98 1939 gma_write16(hw, port, GM_SERIAL_MODE, mode);
cd28ab6a 1940
b628ed98 1941 sky2_write8(hw, RB_ADDR(rxqaddr[port], RB_CTRL), RB_ENA_OP_MD);
cd28ab6a 1942
6b1a3aef 1943 err = sky2_rx_start(sky2);
e07b1aa8 1944 sky2_write32(hw, B0_IMSK, imask);
018d1c66 1945
1b537565
SH
1946 if (err)
1947 dev_close(dev);
1948 else {
b628ed98 1949 gma_write16(hw, port, GM_GP_CTRL, ctl);
1b537565
SH
1950
1951 netif_poll_enable(hw->dev[0]);
1952 netif_wake_queue(dev);
1953 }
1954
cd28ab6a
SH
1955 return err;
1956}
1957
14d0263f
SH
1958/* For small just reuse existing skb for next receive */
1959static struct sk_buff *receive_copy(struct sky2_port *sky2,
1960 const struct rx_ring_info *re,
1961 unsigned length)
1962{
1963 struct sk_buff *skb;
1964
1965 skb = netdev_alloc_skb(sky2->netdev, length + 2);
1966 if (likely(skb)) {
1967 skb_reserve(skb, 2);
1968 pci_dma_sync_single_for_cpu(sky2->hw->pdev, re->data_addr,
1969 length, PCI_DMA_FROMDEVICE);
1970 memcpy(skb->data, re->skb->data, length);
1971 skb->ip_summed = re->skb->ip_summed;
1972 skb->csum = re->skb->csum;
1973 pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr,
1974 length, PCI_DMA_FROMDEVICE);
1975 re->skb->ip_summed = CHECKSUM_NONE;
489b10c1 1976 skb_put(skb, length);
14d0263f
SH
1977 }
1978 return skb;
1979}
1980
1981/* Adjust length of skb with fragments to match received data */
1982static void skb_put_frags(struct sk_buff *skb, unsigned int hdr_space,
1983 unsigned int length)
1984{
1985 int i, num_frags;
1986 unsigned int size;
1987
1988 /* put header into skb */
1989 size = min(length, hdr_space);
1990 skb->tail += size;
1991 skb->len += size;
1992 length -= size;
1993
1994 num_frags = skb_shinfo(skb)->nr_frags;
1995 for (i = 0; i < num_frags; i++) {
1996 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1997
1998 if (length == 0) {
1999 /* don't need this page */
2000 __free_page(frag->page);
2001 --skb_shinfo(skb)->nr_frags;
2002 } else {
2003 size = min(length, (unsigned) PAGE_SIZE);
2004
2005 frag->size = size;
2006 skb->data_len += size;
2007 skb->truesize += size;
2008 skb->len += size;
2009 length -= size;
2010 }
2011 }
2012}
2013
2014/* Normal packet - take skb from ring element and put in a new one */
2015static struct sk_buff *receive_new(struct sky2_port *sky2,
2016 struct rx_ring_info *re,
2017 unsigned int length)
2018{
2019 struct sk_buff *skb, *nskb;
2020 unsigned hdr_space = sky2->rx_data_size;
2021
2022 pr_debug(PFX "receive new length=%d\n", length);
2023
2024 /* Don't be tricky about reusing pages (yet) */
2025 nskb = sky2_rx_alloc(sky2);
2026 if (unlikely(!nskb))
2027 return NULL;
2028
2029 skb = re->skb;
2030 sky2_rx_unmap_skb(sky2->hw->pdev, re);
2031
2032 prefetch(skb->data);
2033 re->skb = nskb;
2034 sky2_rx_map_skb(sky2->hw->pdev, re, hdr_space);
2035
2036 if (skb_shinfo(skb)->nr_frags)
2037 skb_put_frags(skb, hdr_space, length);
2038 else
489b10c1 2039 skb_put(skb, length);
14d0263f
SH
2040 return skb;
2041}
2042
cd28ab6a
SH
2043/*
2044 * Receive one packet.
d571b694 2045 * For larger packets, get new buffer.
cd28ab6a 2046 */
497d7c86 2047static struct sk_buff *sky2_receive(struct net_device *dev,
cd28ab6a
SH
2048 u16 length, u32 status)
2049{
497d7c86 2050 struct sky2_port *sky2 = netdev_priv(dev);
291ea614 2051 struct rx_ring_info *re = sky2->rx_ring + sky2->rx_next;
79e57d32 2052 struct sk_buff *skb = NULL;
cd28ab6a
SH
2053
2054 if (unlikely(netif_msg_rx_status(sky2)))
2055 printk(KERN_DEBUG PFX "%s: rx slot %u status 0x%x len %d\n",
497d7c86 2056 dev->name, sky2->rx_next, status, length);
cd28ab6a 2057
793b883e 2058 sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending;
d70cd51a 2059 prefetch(sky2->rx_ring + sky2->rx_next);
cd28ab6a 2060
42eeea01 2061 if (status & GMR_FS_ANY_ERR)
cd28ab6a
SH
2062 goto error;
2063
42eeea01
SH
2064 if (!(status & GMR_FS_RX_OK))
2065 goto resubmit;
2066
14d0263f
SH
2067 if (length < copybreak)
2068 skb = receive_copy(sky2, re, length);
2069 else
2070 skb = receive_new(sky2, re, length);
793b883e 2071resubmit:
14d0263f 2072 sky2_rx_submit(sky2, re);
79e57d32 2073
cd28ab6a
SH
2074 return skb;
2075
2076error:
6e15b712 2077 ++sky2->net_stats.rx_errors;
b6d77734 2078 if (status & GMR_FS_RX_FF_OV) {
a79abdc6 2079 sky2->net_stats.rx_over_errors++;
b6d77734
SH
2080 goto resubmit;
2081 }
6e15b712 2082
3be92a70 2083 if (netif_msg_rx_err(sky2) && net_ratelimit())
cd28ab6a 2084 printk(KERN_INFO PFX "%s: rx error, status 0x%x length %d\n",
497d7c86 2085 dev->name, status, length);
793b883e
SH
2086
2087 if (status & (GMR_FS_LONG_ERR | GMR_FS_UN_SIZE))
cd28ab6a
SH
2088 sky2->net_stats.rx_length_errors++;
2089 if (status & GMR_FS_FRAGMENT)
2090 sky2->net_stats.rx_frame_errors++;
2091 if (status & GMR_FS_CRC_ERR)
2092 sky2->net_stats.rx_crc_errors++;
79e57d32 2093
793b883e 2094 goto resubmit;
cd28ab6a
SH
2095}
2096
e07b1aa8
SH
2097/* Transmit complete */
2098static inline void sky2_tx_done(struct net_device *dev, u16 last)
13b97b74 2099{
e07b1aa8 2100 struct sky2_port *sky2 = netdev_priv(dev);
302d1252 2101
e07b1aa8 2102 if (netif_running(dev)) {
2bb8c262 2103 netif_tx_lock(dev);
e07b1aa8 2104 sky2_tx_complete(sky2, last);
2bb8c262 2105 netif_tx_unlock(dev);
2224795d 2106 }
cd28ab6a
SH
2107}
2108
e07b1aa8
SH
2109/* Process status response ring */
2110static int sky2_status_intr(struct sky2_hw *hw, int to_do)
cd28ab6a 2111{
22e11703 2112 struct sky2_port *sky2;
e07b1aa8 2113 int work_done = 0;
22e11703 2114 unsigned buf_write[2] = { 0, 0 };
e71ebd73 2115 u16 hwidx = sky2_read16(hw, STAT_PUT_IDX);
a8fd6266 2116
af2a58ac 2117 rmb();
bea86103 2118
e71ebd73 2119 while (hw->st_idx != hwidx) {
13210ce5
SH
2120 struct sky2_status_le *le = hw->st_le + hw->st_idx;
2121 struct net_device *dev;
cd28ab6a 2122 struct sk_buff *skb;
cd28ab6a
SH
2123 u32 status;
2124 u16 length;
2125
cb5d9547 2126 hw->st_idx = RING_NEXT(hw->st_idx, STATUS_RING_SIZE);
bea86103 2127
e71ebd73
SH
2128 BUG_ON(le->link >= 2);
2129 dev = hw->dev[le->link];
13210ce5
SH
2130
2131 sky2 = netdev_priv(dev);
f65b138c
SH
2132 length = le16_to_cpu(le->length);
2133 status = le32_to_cpu(le->status);
cd28ab6a 2134
e71ebd73 2135 switch (le->opcode & ~HW_OWNER) {
cd28ab6a 2136 case OP_RXSTAT:
497d7c86 2137 skb = sky2_receive(dev, length, status);
d1f13708 2138 if (!skb)
5df79111 2139 goto force_update;
13210ce5 2140
13210ce5 2141 skb->protocol = eth_type_trans(skb, dev);
2bf56fe2 2142 sky2->net_stats.rx_packets++;
2143 sky2->net_stats.rx_bytes += skb->len;
13210ce5
SH
2144 dev->last_rx = jiffies;
2145
d1f13708
SH
2146#ifdef SKY2_VLAN_TAG_USED
2147 if (sky2->vlgrp && (status & GMR_FS_VLAN)) {
2148 vlan_hwaccel_receive_skb(skb,
2149 sky2->vlgrp,
2150 be16_to_cpu(sky2->rx_tag));
2151 } else
2152#endif
cd28ab6a 2153 netif_receive_skb(skb);
13210ce5 2154
22e11703
SH
2155 /* Update receiver after 16 frames */
2156 if (++buf_write[le->link] == RX_BUF_WRITE) {
5df79111
SH
2157force_update:
2158 sky2_put_idx(hw, rxqaddr[le->link], sky2->rx_put);
22e11703
SH
2159 buf_write[le->link] = 0;
2160 }
2161
2162 /* Stop after net poll weight */
13210ce5
SH
2163 if (++work_done >= to_do)
2164 goto exit_loop;
cd28ab6a
SH
2165 break;
2166
d1f13708
SH
2167#ifdef SKY2_VLAN_TAG_USED
2168 case OP_RXVLAN:
2169 sky2->rx_tag = length;
2170 break;
2171
2172 case OP_RXCHKSVLAN:
2173 sky2->rx_tag = length;
2174 /* fall through */
2175#endif
cd28ab6a 2176 case OP_RXCHKS:
87418307
SH
2177 if (!sky2->rx_csum)
2178 break;
2179
2180 /* Both checksum counters are programmed to start at
2181 * the same offset, so unless there is a problem they
2182 * should match. This failure is an early indication that
2183 * hardware receive checksumming won't work.
2184 */
2185 if (likely(status >> 16 == (status & 0xffff))) {
2186 skb = sky2->rx_ring[sky2->rx_next].skb;
2187 skb->ip_summed = CHECKSUM_COMPLETE;
2188 skb->csum = status & 0xffff;
2189 } else {
2190 printk(KERN_NOTICE PFX "%s: hardware receive "
2191 "checksum problem (status = %#x)\n",
2192 dev->name, status);
2193 sky2->rx_csum = 0;
2194 sky2_write32(sky2->hw,
2195 Q_ADDR(rxqaddr[le->link], Q_CSR),
2196 BMU_DIS_RX_CHKSUM);
2197 }
cd28ab6a
SH
2198 break;
2199
2200 case OP_TXINDEXLE:
13b97b74 2201 /* TX index reports status for both ports */
f55925d7
SH
2202 BUILD_BUG_ON(TX_RING_SIZE > 0x1000);
2203 sky2_tx_done(hw->dev[0], status & 0xfff);
e07b1aa8
SH
2204 if (hw->dev[1])
2205 sky2_tx_done(hw->dev[1],
2206 ((status >> 24) & 0xff)
2207 | (u16)(length & 0xf) << 8);
cd28ab6a
SH
2208 break;
2209
cd28ab6a
SH
2210 default:
2211 if (net_ratelimit())
793b883e 2212 printk(KERN_WARNING PFX
e71ebd73
SH
2213 "unknown status opcode 0x%x\n", le->opcode);
2214 goto exit_loop;
cd28ab6a 2215 }
13210ce5 2216 }
cd28ab6a 2217
fe2a24df
SH
2218 /* Fully processed status ring so clear irq */
2219 sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);
2220
13210ce5 2221exit_loop:
22e11703
SH
2222 if (buf_write[0]) {
2223 sky2 = netdev_priv(hw->dev[0]);
2224 sky2_put_idx(hw, Q_R1, sky2->rx_put);
2225 }
2226
2227 if (buf_write[1]) {
2228 sky2 = netdev_priv(hw->dev[1]);
2229 sky2_put_idx(hw, Q_R2, sky2->rx_put);
2230 }
2231
e07b1aa8 2232 return work_done;
cd28ab6a
SH
2233}
2234
2235static void sky2_hw_error(struct sky2_hw *hw, unsigned port, u32 status)
2236{
2237 struct net_device *dev = hw->dev[port];
2238
3be92a70
SH
2239 if (net_ratelimit())
2240 printk(KERN_INFO PFX "%s: hw error interrupt status 0x%x\n",
2241 dev->name, status);
cd28ab6a
SH
2242
2243 if (status & Y2_IS_PAR_RD1) {
3be92a70
SH
2244 if (net_ratelimit())
2245 printk(KERN_ERR PFX "%s: ram data read parity error\n",
2246 dev->name);
cd28ab6a
SH
2247 /* Clear IRQ */
2248 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_RD_PERR);
2249 }
2250
2251 if (status & Y2_IS_PAR_WR1) {
3be92a70
SH
2252 if (net_ratelimit())
2253 printk(KERN_ERR PFX "%s: ram data write parity error\n",
2254 dev->name);
cd28ab6a
SH
2255
2256 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_WR_PERR);
2257 }
2258
2259 if (status & Y2_IS_PAR_MAC1) {
3be92a70
SH
2260 if (net_ratelimit())
2261 printk(KERN_ERR PFX "%s: MAC parity error\n", dev->name);
cd28ab6a
SH
2262 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_PE);
2263 }
2264
2265 if (status & Y2_IS_PAR_RX1) {
3be92a70
SH
2266 if (net_ratelimit())
2267 printk(KERN_ERR PFX "%s: RX parity error\n", dev->name);
cd28ab6a
SH
2268 sky2_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), BMU_CLR_IRQ_PAR);
2269 }
2270
2271 if (status & Y2_IS_TCP_TXA1) {
3be92a70
SH
2272 if (net_ratelimit())
2273 printk(KERN_ERR PFX "%s: TCP segmentation error\n",
2274 dev->name);
cd28ab6a
SH
2275 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_CLR_IRQ_TCP);
2276 }
2277}
2278
2279static void sky2_hw_intr(struct sky2_hw *hw)
2280{
2281 u32 status = sky2_read32(hw, B0_HWE_ISRC);
2282
793b883e 2283 if (status & Y2_IS_TIST_OV)
cd28ab6a 2284 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
2285
2286 if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) {
793b883e
SH
2287 u16 pci_err;
2288
56a645cc 2289 pci_err = sky2_pci_read16(hw, PCI_STATUS);
3be92a70 2290 if (net_ratelimit())
b02a9258
SH
2291 dev_err(&hw->pdev->dev, "PCI hardware error (0x%x)\n",
2292 pci_err);
cd28ab6a
SH
2293
2294 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
56a645cc 2295 sky2_pci_write16(hw, PCI_STATUS,
91aeb3ed 2296 pci_err | PCI_STATUS_ERROR_BITS);
cd28ab6a
SH
2297 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2298 }
2299
2300 if (status & Y2_IS_PCI_EXP) {
d571b694 2301 /* PCI-Express uncorrectable Error occurred */
793b883e
SH
2302 u32 pex_err;
2303
7bd656d1 2304 pex_err = sky2_pci_read32(hw, PEX_UNC_ERR_STAT);
cd28ab6a 2305
3be92a70 2306 if (net_ratelimit())
b02a9258
SH
2307 dev_err(&hw->pdev->dev, "PCI Express error (0x%x)\n",
2308 pex_err);
cd28ab6a
SH
2309
2310 /* clear the interrupt */
2311 sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
7bd656d1
SH
2312 sky2_pci_write32(hw, PEX_UNC_ERR_STAT,
2313 0xffffffffUL);
cd28ab6a
SH
2314 sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2315
7bd656d1 2316 if (pex_err & PEX_FATAL_ERRORS) {
cd28ab6a
SH
2317 u32 hwmsk = sky2_read32(hw, B0_HWE_IMSK);
2318 hwmsk &= ~Y2_IS_PCI_EXP;
2319 sky2_write32(hw, B0_HWE_IMSK, hwmsk);
2320 }
2321 }
2322
2323 if (status & Y2_HWE_L1_MASK)
2324 sky2_hw_error(hw, 0, status);
2325 status >>= 8;
2326 if (status & Y2_HWE_L1_MASK)
2327 sky2_hw_error(hw, 1, status);
2328}
2329
2330static void sky2_mac_intr(struct sky2_hw *hw, unsigned port)
2331{
2332 struct net_device *dev = hw->dev[port];
2333 struct sky2_port *sky2 = netdev_priv(dev);
2334 u8 status = sky2_read8(hw, SK_REG(port, GMAC_IRQ_SRC));
2335
2336 if (netif_msg_intr(sky2))
2337 printk(KERN_INFO PFX "%s: mac interrupt status 0x%x\n",
2338 dev->name, status);
2339
2340 if (status & GM_IS_RX_FF_OR) {
2341 ++sky2->net_stats.rx_fifo_errors;
2342 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
2343 }
2344
2345 if (status & GM_IS_TX_FF_UR) {
2346 ++sky2->net_stats.tx_fifo_errors;
2347 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
2348 }
cd28ab6a
SH
2349}
2350
40b01727
SH
2351/* This should never happen it is a bug. */
2352static void sky2_le_error(struct sky2_hw *hw, unsigned port,
2353 u16 q, unsigned ring_size)
d257924e
SH
2354{
2355 struct net_device *dev = hw->dev[port];
2356 struct sky2_port *sky2 = netdev_priv(dev);
40b01727
SH
2357 unsigned idx;
2358 const u64 *le = (q == Q_R1 || q == Q_R2)
2359 ? (u64 *) sky2->rx_le : (u64 *) sky2->tx_le;
d257924e 2360
40b01727
SH
2361 idx = sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_GET_IDX));
2362 printk(KERN_ERR PFX "%s: descriptor error q=%#x get=%u [%llx] put=%u\n",
2363 dev->name, (unsigned) q, idx, (unsigned long long) le[idx],
2364 (unsigned) sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX)));
d257924e 2365
40b01727 2366 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_IRQ_CHK);
d257924e 2367}
cd28ab6a 2368
d27ed387
SH
2369/* If idle then force a fake soft NAPI poll once a second
2370 * to work around cases where sharing an edge triggered interrupt.
2371 */
eb35cf60
SH
2372static inline void sky2_idle_start(struct sky2_hw *hw)
2373{
2374 if (idle_timeout > 0)
2375 mod_timer(&hw->idle_timer,
2376 jiffies + msecs_to_jiffies(idle_timeout));
2377}
2378
d27ed387
SH
2379static void sky2_idle(unsigned long arg)
2380{
01bd7564
SH
2381 struct sky2_hw *hw = (struct sky2_hw *) arg;
2382 struct net_device *dev = hw->dev[0];
d27ed387 2383
d27ed387
SH
2384 if (__netif_rx_schedule_prep(dev))
2385 __netif_rx_schedule(dev);
01bd7564
SH
2386
2387 mod_timer(&hw->idle_timer, jiffies + msecs_to_jiffies(idle_timeout));
d27ed387
SH
2388}
2389
40b01727
SH
2390/* Hardware/software error handling */
2391static void sky2_err_intr(struct sky2_hw *hw, u32 status)
cd28ab6a 2392{
40b01727
SH
2393 if (net_ratelimit())
2394 dev_warn(&hw->pdev->dev, "error interrupt status=%#x\n", status);
cd28ab6a 2395
1e5f1283
SH
2396 if (status & Y2_IS_HW_ERR)
2397 sky2_hw_intr(hw);
d257924e 2398
1e5f1283
SH
2399 if (status & Y2_IS_IRQ_MAC1)
2400 sky2_mac_intr(hw, 0);
cd28ab6a 2401
1e5f1283
SH
2402 if (status & Y2_IS_IRQ_MAC2)
2403 sky2_mac_intr(hw, 1);
cd28ab6a 2404
1e5f1283 2405 if (status & Y2_IS_CHK_RX1)
40b01727 2406 sky2_le_error(hw, 0, Q_R1, RX_LE_SIZE);
d257924e 2407
1e5f1283 2408 if (status & Y2_IS_CHK_RX2)
40b01727 2409 sky2_le_error(hw, 1, Q_R2, RX_LE_SIZE);
d257924e 2410
1e5f1283 2411 if (status & Y2_IS_CHK_TXA1)
40b01727 2412 sky2_le_error(hw, 0, Q_XA1, TX_RING_SIZE);
d257924e 2413
1e5f1283 2414 if (status & Y2_IS_CHK_TXA2)
40b01727
SH
2415 sky2_le_error(hw, 1, Q_XA2, TX_RING_SIZE);
2416}
2417
2418static int sky2_poll(struct net_device *dev0, int *budget)
2419{
2420 struct sky2_hw *hw = ((struct sky2_port *) netdev_priv(dev0))->hw;
2421 int work_limit = min(dev0->quota, *budget);
2422 int work_done = 0;
2423 u32 status = sky2_read32(hw, B0_Y2_SP_EISR);
2424
2425 if (unlikely(status & Y2_IS_ERROR))
2426 sky2_err_intr(hw, status);
2427
2428 if (status & Y2_IS_IRQ_PHY1)
2429 sky2_phy_intr(hw, 0);
2430
2431 if (status & Y2_IS_IRQ_PHY2)
2432 sky2_phy_intr(hw, 1);
cd28ab6a 2433
1e5f1283 2434 work_done = sky2_status_intr(hw, work_limit);
fe2a24df
SH
2435 if (work_done < work_limit) {
2436 netif_rx_complete(dev0);
86fba634 2437
fe2a24df
SH
2438 sky2_read32(hw, B0_Y2_SP_LISR);
2439 return 0;
2440 } else {
2441 *budget -= work_done;
2442 dev0->quota -= work_done;
1e5f1283 2443 return 1;
fe2a24df 2444 }
e07b1aa8
SH
2445}
2446
7d12e780 2447static irqreturn_t sky2_intr(int irq, void *dev_id)
e07b1aa8
SH
2448{
2449 struct sky2_hw *hw = dev_id;
2450 struct net_device *dev0 = hw->dev[0];
2451 u32 status;
2452
2453 /* Reading this mask interrupts as side effect */
2454 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
2455 if (status == 0 || status == ~0)
2456 return IRQ_NONE;
793b883e 2457
e07b1aa8
SH
2458 prefetch(&hw->st_le[hw->st_idx]);
2459 if (likely(__netif_rx_schedule_prep(dev0)))
2460 __netif_rx_schedule(dev0);
793b883e 2461
cd28ab6a
SH
2462 return IRQ_HANDLED;
2463}
2464
2465#ifdef CONFIG_NET_POLL_CONTROLLER
2466static void sky2_netpoll(struct net_device *dev)
2467{
2468 struct sky2_port *sky2 = netdev_priv(dev);
88d11360 2469 struct net_device *dev0 = sky2->hw->dev[0];
cd28ab6a 2470
88d11360
SH
2471 if (netif_running(dev) && __netif_rx_schedule_prep(dev0))
2472 __netif_rx_schedule(dev0);
cd28ab6a
SH
2473}
2474#endif
2475
2476/* Chip internal frequency for clock calculations */
fb17358f 2477static inline u32 sky2_mhz(const struct sky2_hw *hw)
cd28ab6a 2478{
793b883e 2479 switch (hw->chip_id) {
cd28ab6a 2480 case CHIP_ID_YUKON_EC:
5a5b1ea0 2481 case CHIP_ID_YUKON_EC_U:
93745494 2482 case CHIP_ID_YUKON_EX:
fb17358f 2483 return 125; /* 125 Mhz */
cd28ab6a 2484 case CHIP_ID_YUKON_FE:
fb17358f 2485 return 100; /* 100 Mhz */
793b883e 2486 default: /* YUKON_XL */
fb17358f 2487 return 156; /* 156 Mhz */
cd28ab6a
SH
2488 }
2489}
2490
fb17358f 2491static inline u32 sky2_us2clk(const struct sky2_hw *hw, u32 us)
cd28ab6a 2492{
fb17358f 2493 return sky2_mhz(hw) * us;
cd28ab6a
SH
2494}
2495
fb17358f 2496static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
cd28ab6a 2497{
fb17358f 2498 return clk / sky2_mhz(hw);
cd28ab6a
SH
2499}
2500
fb17358f 2501
e3173832 2502static int __devinit sky2_init(struct sky2_hw *hw)
cd28ab6a 2503{
b89165f2 2504 u8 t8;
cd28ab6a 2505
cd28ab6a 2506 sky2_write8(hw, B0_CTST, CS_RST_CLR);
08c06d8a 2507
cd28ab6a
SH
2508 hw->chip_id = sky2_read8(hw, B2_CHIP_ID);
2509 if (hw->chip_id < CHIP_ID_YUKON_XL || hw->chip_id > CHIP_ID_YUKON_FE) {
b02a9258
SH
2510 dev_err(&hw->pdev->dev, "unsupported chip type 0x%x\n",
2511 hw->chip_id);
cd28ab6a
SH
2512 return -EOPNOTSUPP;
2513 }
2514
93745494
SH
2515 if (hw->chip_id == CHIP_ID_YUKON_EX)
2516 dev_warn(&hw->pdev->dev, "this driver not yet tested on this chip type\n"
2517 "Please report success or failure to <netdev@vger.kernel.org>\n");
2518
2519 /* Make sure and enable all clocks */
2520 if (hw->chip_id == CHIP_ID_YUKON_EX || hw->chip_id == CHIP_ID_YUKON_EC_U)
2521 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
2522
290d4de5
SH
2523 hw->chip_rev = (sky2_read8(hw, B2_MAC_CFG) & CFG_CHIP_R_MSK) >> 4;
2524
2525 /* This rev is really old, and requires untested workarounds */
2526 if (hw->chip_id == CHIP_ID_YUKON_EC && hw->chip_rev == CHIP_REV_YU_EC_A1) {
b02a9258
SH
2527 dev_err(&hw->pdev->dev, "unsupported revision Yukon-%s (0x%x) rev %d\n",
2528 yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
2529 hw->chip_id, hw->chip_rev);
290d4de5
SH
2530 return -EOPNOTSUPP;
2531 }
2532
e3173832
SH
2533 hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
2534 hw->ports = 1;
2535 t8 = sky2_read8(hw, B2_Y2_HW_RES);
2536 if ((t8 & CFG_DUAL_MAC_MSK) == CFG_DUAL_MAC_MSK) {
2537 if (!(sky2_read8(hw, B2_Y2_CLK_GATE) & Y2_STATUS_LNK2_INAC))
2538 ++hw->ports;
2539 }
2540
2541 return 0;
2542}
2543
2544static void sky2_reset(struct sky2_hw *hw)
2545{
2546 u16 status;
2547 int i;
2548
cd28ab6a 2549 /* disable ASF */
4f44d8ba
SH
2550 if (hw->chip_id == CHIP_ID_YUKON_EX) {
2551 status = sky2_read16(hw, HCU_CCSR);
2552 status &= ~(HCU_CCSR_AHB_RST | HCU_CCSR_CPU_RST_MODE |
2553 HCU_CCSR_UC_STATE_MSK);
2554 sky2_write16(hw, HCU_CCSR, status);
2555 } else
2556 sky2_write8(hw, B28_Y2_ASF_STAT_CMD, Y2_ASF_RESET);
2557 sky2_write16(hw, B0_CTST, Y2_ASF_DISABLE);
cd28ab6a
SH
2558
2559 /* do a SW reset */
2560 sky2_write8(hw, B0_CTST, CS_RST_SET);
2561 sky2_write8(hw, B0_CTST, CS_RST_CLR);
2562
2563 /* clear PCI errors, if any */
56a645cc 2564 status = sky2_pci_read16(hw, PCI_STATUS);
2d42d21f 2565
cd28ab6a 2566 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
56a645cc
SH
2567 sky2_pci_write16(hw, PCI_STATUS, status | PCI_STATUS_ERROR_BITS);
2568
cd28ab6a
SH
2569
2570 sky2_write8(hw, B0_CTST, CS_MRST_CLR);
2571
2572 /* clear any PEX errors */
7bd656d1
SH
2573 if (pci_find_capability(hw->pdev, PCI_CAP_ID_EXP))
2574 sky2_pci_write32(hw, PEX_UNC_ERR_STAT, 0xffffffffUL);
2575
cd28ab6a 2576
ae306cca 2577 sky2_power_on(hw);
cd28ab6a
SH
2578
2579 for (i = 0; i < hw->ports; i++) {
2580 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
2581 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_CLR);
2582 }
2583
2584 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2585
793b883e
SH
2586 /* Clear I2C IRQ noise */
2587 sky2_write32(hw, B2_I2C_IRQ, 1);
cd28ab6a
SH
2588
2589 /* turn off hardware timer (unused) */
2590 sky2_write8(hw, B2_TI_CTRL, TIM_STOP);
2591 sky2_write8(hw, B2_TI_CTRL, TIM_CLR_IRQ);
793b883e 2592
cd28ab6a
SH
2593 sky2_write8(hw, B0_Y2LED, LED_STAT_ON);
2594
69634ee7
SH
2595 /* Turn off descriptor polling */
2596 sky2_write32(hw, B28_DPT_CTRL, DPT_STOP);
cd28ab6a
SH
2597
2598 /* Turn off receive timestamp */
2599 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_STOP);
793b883e 2600 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
2601
2602 /* enable the Tx Arbiters */
2603 for (i = 0; i < hw->ports; i++)
2604 sky2_write8(hw, SK_REG(i, TXA_CTRL), TXA_ENA_ARB);
2605
2606 /* Initialize ram interface */
2607 for (i = 0; i < hw->ports; i++) {
793b883e 2608 sky2_write8(hw, RAM_BUFFER(i, B3_RI_CTRL), RI_RST_CLR);
cd28ab6a
SH
2609
2610 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R1), SK_RI_TO_53);
2611 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA1), SK_RI_TO_53);
2612 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS1), SK_RI_TO_53);
2613 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R1), SK_RI_TO_53);
2614 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA1), SK_RI_TO_53);
2615 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS1), SK_RI_TO_53);
2616 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R2), SK_RI_TO_53);
2617 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA2), SK_RI_TO_53);
2618 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS2), SK_RI_TO_53);
2619 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R2), SK_RI_TO_53);
2620 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA2), SK_RI_TO_53);
2621 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS2), SK_RI_TO_53);
2622 }
2623
7bd656d1 2624 sky2_write32(hw, B0_HWE_IMSK, Y2_HWE_ALL_MASK);
cd28ab6a 2625
cd28ab6a 2626 for (i = 0; i < hw->ports; i++)
d3bcfbeb 2627 sky2_gmac_reset(hw, i);
cd28ab6a 2628
cd28ab6a
SH
2629 memset(hw->st_le, 0, STATUS_LE_BYTES);
2630 hw->st_idx = 0;
2631
2632 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_SET);
2633 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_CLR);
2634
2635 sky2_write32(hw, STAT_LIST_ADDR_LO, hw->st_dma);
793b883e 2636 sky2_write32(hw, STAT_LIST_ADDR_HI, (u64) hw->st_dma >> 32);
cd28ab6a
SH
2637
2638 /* Set the list last index */
793b883e 2639 sky2_write16(hw, STAT_LAST_IDX, STATUS_RING_SIZE - 1);
cd28ab6a 2640
290d4de5
SH
2641 sky2_write16(hw, STAT_TX_IDX_TH, 10);
2642 sky2_write8(hw, STAT_FIFO_WM, 16);
cd28ab6a 2643
290d4de5
SH
2644 /* set Status-FIFO ISR watermark */
2645 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0)
2646 sky2_write8(hw, STAT_FIFO_ISR_WM, 4);
2647 else
2648 sky2_write8(hw, STAT_FIFO_ISR_WM, 16);
cd28ab6a 2649
290d4de5 2650 sky2_write32(hw, STAT_TX_TIMER_INI, sky2_us2clk(hw, 1000));
77b3d6a2
SH
2651 sky2_write32(hw, STAT_ISR_TIMER_INI, sky2_us2clk(hw, 20));
2652 sky2_write32(hw, STAT_LEV_TIMER_INI, sky2_us2clk(hw, 100));
cd28ab6a 2653
793b883e 2654 /* enable status unit */
cd28ab6a
SH
2655 sky2_write32(hw, STAT_CTRL, SC_STAT_OP_ON);
2656
2657 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
2658 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
2659 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
e3173832
SH
2660}
2661
81906791
SH
2662static void sky2_restart(struct work_struct *work)
2663{
2664 struct sky2_hw *hw = container_of(work, struct sky2_hw, restart_work);
2665 struct net_device *dev;
2666 int i, err;
2667
2668 dev_dbg(&hw->pdev->dev, "restarting\n");
2669
2670 del_timer_sync(&hw->idle_timer);
2671
2672 rtnl_lock();
2673 sky2_write32(hw, B0_IMSK, 0);
2674 sky2_read32(hw, B0_IMSK);
2675
2676 netif_poll_disable(hw->dev[0]);
2677
2678 for (i = 0; i < hw->ports; i++) {
2679 dev = hw->dev[i];
2680 if (netif_running(dev))
2681 sky2_down(dev);
2682 }
2683
2684 sky2_reset(hw);
2685 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
2686 netif_poll_enable(hw->dev[0]);
2687
2688 for (i = 0; i < hw->ports; i++) {
2689 dev = hw->dev[i];
2690 if (netif_running(dev)) {
2691 err = sky2_up(dev);
2692 if (err) {
2693 printk(KERN_INFO PFX "%s: could not restart %d\n",
2694 dev->name, err);
2695 dev_close(dev);
2696 }
2697 }
2698 }
2699
2700 sky2_idle_start(hw);
2701
2702 rtnl_unlock();
2703}
2704
e3173832
SH
2705static inline u8 sky2_wol_supported(const struct sky2_hw *hw)
2706{
2707 return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0;
2708}
2709
2710static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2711{
2712 const struct sky2_port *sky2 = netdev_priv(dev);
2713
2714 wol->supported = sky2_wol_supported(sky2->hw);
2715 wol->wolopts = sky2->wol;
2716}
2717
2718static int sky2_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2719{
2720 struct sky2_port *sky2 = netdev_priv(dev);
2721 struct sky2_hw *hw = sky2->hw;
cd28ab6a 2722
e3173832
SH
2723 if (wol->wolopts & ~sky2_wol_supported(sky2->hw))
2724 return -EOPNOTSUPP;
2725
2726 sky2->wol = wol->wolopts;
2727
2728 if (hw->chip_id == CHIP_ID_YUKON_EC_U)
2729 sky2_write32(hw, B0_CTST, sky2->wol
2730 ? Y2_HW_WOL_ON : Y2_HW_WOL_OFF);
2731
2732 if (!netif_running(dev))
2733 sky2_wol_init(sky2);
cd28ab6a
SH
2734 return 0;
2735}
2736
28bd181a 2737static u32 sky2_supported_modes(const struct sky2_hw *hw)
cd28ab6a 2738{
b89165f2
SH
2739 if (sky2_is_copper(hw)) {
2740 u32 modes = SUPPORTED_10baseT_Half
2741 | SUPPORTED_10baseT_Full
2742 | SUPPORTED_100baseT_Half
2743 | SUPPORTED_100baseT_Full
2744 | SUPPORTED_Autoneg | SUPPORTED_TP;
cd28ab6a
SH
2745
2746 if (hw->chip_id != CHIP_ID_YUKON_FE)
2747 modes |= SUPPORTED_1000baseT_Half
b89165f2
SH
2748 | SUPPORTED_1000baseT_Full;
2749 return modes;
cd28ab6a 2750 } else
b89165f2
SH
2751 return SUPPORTED_1000baseT_Half
2752 | SUPPORTED_1000baseT_Full
2753 | SUPPORTED_Autoneg
2754 | SUPPORTED_FIBRE;
cd28ab6a
SH
2755}
2756
793b883e 2757static int sky2_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
cd28ab6a
SH
2758{
2759 struct sky2_port *sky2 = netdev_priv(dev);
2760 struct sky2_hw *hw = sky2->hw;
2761
2762 ecmd->transceiver = XCVR_INTERNAL;
2763 ecmd->supported = sky2_supported_modes(hw);
2764 ecmd->phy_address = PHY_ADDR_MARV;
b89165f2 2765 if (sky2_is_copper(hw)) {
cd28ab6a 2766 ecmd->supported = SUPPORTED_10baseT_Half
793b883e
SH
2767 | SUPPORTED_10baseT_Full
2768 | SUPPORTED_100baseT_Half
2769 | SUPPORTED_100baseT_Full
2770 | SUPPORTED_1000baseT_Half
2771 | SUPPORTED_1000baseT_Full
2772 | SUPPORTED_Autoneg | SUPPORTED_TP;
cd28ab6a 2773 ecmd->port = PORT_TP;
b89165f2
SH
2774 ecmd->speed = sky2->speed;
2775 } else {
2776 ecmd->speed = SPEED_1000;
cd28ab6a 2777 ecmd->port = PORT_FIBRE;
b89165f2 2778 }
cd28ab6a
SH
2779
2780 ecmd->advertising = sky2->advertising;
2781 ecmd->autoneg = sky2->autoneg;
cd28ab6a
SH
2782 ecmd->duplex = sky2->duplex;
2783 return 0;
2784}
2785
2786static int sky2_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
2787{
2788 struct sky2_port *sky2 = netdev_priv(dev);
2789 const struct sky2_hw *hw = sky2->hw;
2790 u32 supported = sky2_supported_modes(hw);
2791
2792 if (ecmd->autoneg == AUTONEG_ENABLE) {
2793 ecmd->advertising = supported;
2794 sky2->duplex = -1;
2795 sky2->speed = -1;
2796 } else {
2797 u32 setting;
2798
793b883e 2799 switch (ecmd->speed) {
cd28ab6a
SH
2800 case SPEED_1000:
2801 if (ecmd->duplex == DUPLEX_FULL)
2802 setting = SUPPORTED_1000baseT_Full;
2803 else if (ecmd->duplex == DUPLEX_HALF)
2804 setting = SUPPORTED_1000baseT_Half;
2805 else
2806 return -EINVAL;
2807 break;
2808 case SPEED_100:
2809 if (ecmd->duplex == DUPLEX_FULL)
2810 setting = SUPPORTED_100baseT_Full;
2811 else if (ecmd->duplex == DUPLEX_HALF)
2812 setting = SUPPORTED_100baseT_Half;
2813 else
2814 return -EINVAL;
2815 break;
2816
2817 case SPEED_10:
2818 if (ecmd->duplex == DUPLEX_FULL)
2819 setting = SUPPORTED_10baseT_Full;
2820 else if (ecmd->duplex == DUPLEX_HALF)
2821 setting = SUPPORTED_10baseT_Half;
2822 else
2823 return -EINVAL;
2824 break;
2825 default:
2826 return -EINVAL;
2827 }
2828
2829 if ((setting & supported) == 0)
2830 return -EINVAL;
2831
2832 sky2->speed = ecmd->speed;
2833 sky2->duplex = ecmd->duplex;
2834 }
2835
2836 sky2->autoneg = ecmd->autoneg;
2837 sky2->advertising = ecmd->advertising;
2838
1b537565
SH
2839 if (netif_running(dev))
2840 sky2_phy_reinit(sky2);
cd28ab6a
SH
2841
2842 return 0;
2843}
2844
2845static void sky2_get_drvinfo(struct net_device *dev,
2846 struct ethtool_drvinfo *info)
2847{
2848 struct sky2_port *sky2 = netdev_priv(dev);
2849
2850 strcpy(info->driver, DRV_NAME);
2851 strcpy(info->version, DRV_VERSION);
2852 strcpy(info->fw_version, "N/A");
2853 strcpy(info->bus_info, pci_name(sky2->hw->pdev));
2854}
2855
2856static const struct sky2_stat {
793b883e
SH
2857 char name[ETH_GSTRING_LEN];
2858 u16 offset;
cd28ab6a
SH
2859} sky2_stats[] = {
2860 { "tx_bytes", GM_TXO_OK_HI },
2861 { "rx_bytes", GM_RXO_OK_HI },
2862 { "tx_broadcast", GM_TXF_BC_OK },
2863 { "rx_broadcast", GM_RXF_BC_OK },
2864 { "tx_multicast", GM_TXF_MC_OK },
2865 { "rx_multicast", GM_RXF_MC_OK },
2866 { "tx_unicast", GM_TXF_UC_OK },
2867 { "rx_unicast", GM_RXF_UC_OK },
2868 { "tx_mac_pause", GM_TXF_MPAUSE },
2869 { "rx_mac_pause", GM_RXF_MPAUSE },
eadfa7dd 2870 { "collisions", GM_TXF_COL },
cd28ab6a
SH
2871 { "late_collision",GM_TXF_LAT_COL },
2872 { "aborted", GM_TXF_ABO_COL },
eadfa7dd 2873 { "single_collisions", GM_TXF_SNG_COL },
cd28ab6a 2874 { "multi_collisions", GM_TXF_MUL_COL },
eadfa7dd 2875
d2604540 2876 { "rx_short", GM_RXF_SHT },
cd28ab6a 2877 { "rx_runt", GM_RXE_FRAG },
eadfa7dd
SH
2878 { "rx_64_byte_packets", GM_RXF_64B },
2879 { "rx_65_to_127_byte_packets", GM_RXF_127B },
2880 { "rx_128_to_255_byte_packets", GM_RXF_255B },
2881 { "rx_256_to_511_byte_packets", GM_RXF_511B },
2882 { "rx_512_to_1023_byte_packets", GM_RXF_1023B },
2883 { "rx_1024_to_1518_byte_packets", GM_RXF_1518B },
2884 { "rx_1518_to_max_byte_packets", GM_RXF_MAX_SZ },
cd28ab6a 2885 { "rx_too_long", GM_RXF_LNG_ERR },
eadfa7dd
SH
2886 { "rx_fifo_overflow", GM_RXE_FIFO_OV },
2887 { "rx_jabber", GM_RXF_JAB_PKT },
cd28ab6a 2888 { "rx_fcs_error", GM_RXF_FCS_ERR },
eadfa7dd
SH
2889
2890 { "tx_64_byte_packets", GM_TXF_64B },
2891 { "tx_65_to_127_byte_packets", GM_TXF_127B },
2892 { "tx_128_to_255_byte_packets", GM_TXF_255B },
2893 { "tx_256_to_511_byte_packets", GM_TXF_511B },
2894 { "tx_512_to_1023_byte_packets", GM_TXF_1023B },
2895 { "tx_1024_to_1518_byte_packets", GM_TXF_1518B },
2896 { "tx_1519_to_max_byte_packets", GM_TXF_MAX_SZ },
2897 { "tx_fifo_underrun", GM_TXE_FIFO_UR },
cd28ab6a
SH
2898};
2899
cd28ab6a
SH
2900static u32 sky2_get_rx_csum(struct net_device *dev)
2901{
2902 struct sky2_port *sky2 = netdev_priv(dev);
2903
2904 return sky2->rx_csum;
2905}
2906
2907static int sky2_set_rx_csum(struct net_device *dev, u32 data)
2908{
2909 struct sky2_port *sky2 = netdev_priv(dev);
2910
2911 sky2->rx_csum = data;
793b883e 2912
cd28ab6a
SH
2913 sky2_write32(sky2->hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
2914 data ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
2915
2916 return 0;
2917}
2918
2919static u32 sky2_get_msglevel(struct net_device *netdev)
2920{
2921 struct sky2_port *sky2 = netdev_priv(netdev);
2922 return sky2->msg_enable;
2923}
2924
9a7ae0a9
SH
2925static int sky2_nway_reset(struct net_device *dev)
2926{
2927 struct sky2_port *sky2 = netdev_priv(dev);
9a7ae0a9 2928
16ad91e1 2929 if (!netif_running(dev) || sky2->autoneg != AUTONEG_ENABLE)
9a7ae0a9
SH
2930 return -EINVAL;
2931
1b537565 2932 sky2_phy_reinit(sky2);
9a7ae0a9
SH
2933
2934 return 0;
2935}
2936
793b883e 2937static void sky2_phy_stats(struct sky2_port *sky2, u64 * data, unsigned count)
cd28ab6a
SH
2938{
2939 struct sky2_hw *hw = sky2->hw;
2940 unsigned port = sky2->port;
2941 int i;
2942
2943 data[0] = (u64) gma_read32(hw, port, GM_TXO_OK_HI) << 32
793b883e 2944 | (u64) gma_read32(hw, port, GM_TXO_OK_LO);
cd28ab6a 2945 data[1] = (u64) gma_read32(hw, port, GM_RXO_OK_HI) << 32
793b883e 2946 | (u64) gma_read32(hw, port, GM_RXO_OK_LO);
cd28ab6a 2947
793b883e 2948 for (i = 2; i < count; i++)
cd28ab6a
SH
2949 data[i] = (u64) gma_read32(hw, port, sky2_stats[i].offset);
2950}
2951
cd28ab6a
SH
2952static void sky2_set_msglevel(struct net_device *netdev, u32 value)
2953{
2954 struct sky2_port *sky2 = netdev_priv(netdev);
2955 sky2->msg_enable = value;
2956}
2957
2958static int sky2_get_stats_count(struct net_device *dev)
2959{
2960 return ARRAY_SIZE(sky2_stats);
2961}
2962
2963static void sky2_get_ethtool_stats(struct net_device *dev,
793b883e 2964 struct ethtool_stats *stats, u64 * data)
cd28ab6a
SH
2965{
2966 struct sky2_port *sky2 = netdev_priv(dev);
2967
793b883e 2968 sky2_phy_stats(sky2, data, ARRAY_SIZE(sky2_stats));
cd28ab6a
SH
2969}
2970
793b883e 2971static void sky2_get_strings(struct net_device *dev, u32 stringset, u8 * data)
cd28ab6a
SH
2972{
2973 int i;
2974
2975 switch (stringset) {
2976 case ETH_SS_STATS:
2977 for (i = 0; i < ARRAY_SIZE(sky2_stats); i++)
2978 memcpy(data + i * ETH_GSTRING_LEN,
2979 sky2_stats[i].name, ETH_GSTRING_LEN);
2980 break;
2981 }
2982}
2983
cd28ab6a
SH
2984static struct net_device_stats *sky2_get_stats(struct net_device *dev)
2985{
2986 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
2987 return &sky2->net_stats;
2988}
2989
2990static int sky2_set_mac_address(struct net_device *dev, void *p)
2991{
2992 struct sky2_port *sky2 = netdev_priv(dev);
a8ab1ec0
SH
2993 struct sky2_hw *hw = sky2->hw;
2994 unsigned port = sky2->port;
2995 const struct sockaddr *addr = p;
cd28ab6a
SH
2996
2997 if (!is_valid_ether_addr(addr->sa_data))
2998 return -EADDRNOTAVAIL;
2999
cd28ab6a 3000 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
a8ab1ec0 3001 memcpy_toio(hw->regs + B2_MAC_1 + port * 8,
cd28ab6a 3002 dev->dev_addr, ETH_ALEN);
a8ab1ec0 3003 memcpy_toio(hw->regs + B2_MAC_2 + port * 8,
cd28ab6a 3004 dev->dev_addr, ETH_ALEN);
1b537565 3005
a8ab1ec0
SH
3006 /* virtual address for data */
3007 gma_set_addr(hw, port, GM_SRC_ADDR_2L, dev->dev_addr);
3008
3009 /* physical address: used for pause frames */
3010 gma_set_addr(hw, port, GM_SRC_ADDR_1L, dev->dev_addr);
1b537565
SH
3011
3012 return 0;
cd28ab6a
SH
3013}
3014
a052b52f
SH
3015static void inline sky2_add_filter(u8 filter[8], const u8 *addr)
3016{
3017 u32 bit;
3018
3019 bit = ether_crc(ETH_ALEN, addr) & 63;
3020 filter[bit >> 3] |= 1 << (bit & 7);
3021}
3022
cd28ab6a
SH
3023static void sky2_set_multicast(struct net_device *dev)
3024{
3025 struct sky2_port *sky2 = netdev_priv(dev);
3026 struct sky2_hw *hw = sky2->hw;
3027 unsigned port = sky2->port;
3028 struct dev_mc_list *list = dev->mc_list;
3029 u16 reg;
3030 u8 filter[8];
a052b52f
SH
3031 int rx_pause;
3032 static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };
cd28ab6a 3033
a052b52f 3034 rx_pause = (sky2->flow_status == FC_RX || sky2->flow_status == FC_BOTH);
cd28ab6a
SH
3035 memset(filter, 0, sizeof(filter));
3036
3037 reg = gma_read16(hw, port, GM_RX_CTRL);
3038 reg |= GM_RXCR_UCF_ENA;
3039
d571b694 3040 if (dev->flags & IFF_PROMISC) /* promiscuous */
cd28ab6a 3041 reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
a052b52f 3042 else if (dev->flags & IFF_ALLMULTI)
cd28ab6a 3043 memset(filter, 0xff, sizeof(filter));
a052b52f 3044 else if (dev->mc_count == 0 && !rx_pause)
cd28ab6a
SH
3045 reg &= ~GM_RXCR_MCF_ENA;
3046 else {
3047 int i;
3048 reg |= GM_RXCR_MCF_ENA;
3049
a052b52f
SH
3050 if (rx_pause)
3051 sky2_add_filter(filter, pause_mc_addr);
3052
3053 for (i = 0; list && i < dev->mc_count; i++, list = list->next)
3054 sky2_add_filter(filter, list->dmi_addr);
cd28ab6a
SH
3055 }
3056
cd28ab6a 3057 gma_write16(hw, port, GM_MC_ADDR_H1,
793b883e 3058 (u16) filter[0] | ((u16) filter[1] << 8));
cd28ab6a 3059 gma_write16(hw, port, GM_MC_ADDR_H2,
793b883e 3060 (u16) filter[2] | ((u16) filter[3] << 8));
cd28ab6a 3061 gma_write16(hw, port, GM_MC_ADDR_H3,
793b883e 3062 (u16) filter[4] | ((u16) filter[5] << 8));
cd28ab6a 3063 gma_write16(hw, port, GM_MC_ADDR_H4,
793b883e 3064 (u16) filter[6] | ((u16) filter[7] << 8));
cd28ab6a
SH
3065
3066 gma_write16(hw, port, GM_RX_CTRL, reg);
3067}
3068
3069/* Can have one global because blinking is controlled by
3070 * ethtool and that is always under RTNL mutex
3071 */
91c86df5 3072static void sky2_led(struct sky2_hw *hw, unsigned port, int on)
cd28ab6a 3073{
793b883e
SH
3074 u16 pg;
3075
793b883e
SH
3076 switch (hw->chip_id) {
3077 case CHIP_ID_YUKON_XL:
3078 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3079 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3080 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3081 on ? (PHY_M_LEDC_LOS_CTRL(1) |
3082 PHY_M_LEDC_INIT_CTRL(7) |
3083 PHY_M_LEDC_STA1_CTRL(7) |
3084 PHY_M_LEDC_STA0_CTRL(7))
3085 : 0);
3086
3087 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3088 break;
3089
3090 default:
3091 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, 0);
0efdf262
SH
3092 gm_phy_write(hw, port, PHY_MARV_LED_OVER,
3093 on ? PHY_M_LED_ALL : 0);
793b883e 3094 }
cd28ab6a
SH
3095}
3096
3097/* blink LED's for finding board */
3098static int sky2_phys_id(struct net_device *dev, u32 data)
3099{
3100 struct sky2_port *sky2 = netdev_priv(dev);
3101 struct sky2_hw *hw = sky2->hw;
3102 unsigned port = sky2->port;
793b883e 3103 u16 ledctrl, ledover = 0;
cd28ab6a 3104 long ms;
91c86df5 3105 int interrupted;
cd28ab6a
SH
3106 int onoff = 1;
3107
793b883e 3108 if (!data || data > (u32) (MAX_SCHEDULE_TIMEOUT / HZ))
cd28ab6a
SH
3109 ms = jiffies_to_msecs(MAX_SCHEDULE_TIMEOUT);
3110 else
3111 ms = data * 1000;
3112
3113 /* save initial values */
e07b1aa8 3114 spin_lock_bh(&sky2->phy_lock);
793b883e
SH
3115 if (hw->chip_id == CHIP_ID_YUKON_XL) {
3116 u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3117 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3118 ledctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
3119 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3120 } else {
3121 ledctrl = gm_phy_read(hw, port, PHY_MARV_LED_CTRL);
3122 ledover = gm_phy_read(hw, port, PHY_MARV_LED_OVER);
3123 }
cd28ab6a 3124
91c86df5
SH
3125 interrupted = 0;
3126 while (!interrupted && ms > 0) {
cd28ab6a
SH
3127 sky2_led(hw, port, onoff);
3128 onoff = !onoff;
3129
e07b1aa8 3130 spin_unlock_bh(&sky2->phy_lock);
91c86df5 3131 interrupted = msleep_interruptible(250);
e07b1aa8 3132 spin_lock_bh(&sky2->phy_lock);
91c86df5 3133
cd28ab6a
SH
3134 ms -= 250;
3135 }
3136
3137 /* resume regularly scheduled programming */
793b883e
SH
3138 if (hw->chip_id == CHIP_ID_YUKON_XL) {
3139 u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3140 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
3141 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ledctrl);
3142 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3143 } else {
3144 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
3145 gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);
3146 }
e07b1aa8 3147 spin_unlock_bh(&sky2->phy_lock);
cd28ab6a
SH
3148
3149 return 0;
3150}
3151
3152static void sky2_get_pauseparam(struct net_device *dev,
3153 struct ethtool_pauseparam *ecmd)
3154{
3155 struct sky2_port *sky2 = netdev_priv(dev);
3156
16ad91e1
SH
3157 switch (sky2->flow_mode) {
3158 case FC_NONE:
3159 ecmd->tx_pause = ecmd->rx_pause = 0;
3160 break;
3161 case FC_TX:
3162 ecmd->tx_pause = 1, ecmd->rx_pause = 0;
3163 break;
3164 case FC_RX:
3165 ecmd->tx_pause = 0, ecmd->rx_pause = 1;
3166 break;
3167 case FC_BOTH:
3168 ecmd->tx_pause = ecmd->rx_pause = 1;
3169 }
3170
cd28ab6a
SH
3171 ecmd->autoneg = sky2->autoneg;
3172}
3173
3174static int sky2_set_pauseparam(struct net_device *dev,
3175 struct ethtool_pauseparam *ecmd)
3176{
3177 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
3178
3179 sky2->autoneg = ecmd->autoneg;
16ad91e1 3180 sky2->flow_mode = sky2_flow(ecmd->rx_pause, ecmd->tx_pause);
cd28ab6a 3181
16ad91e1
SH
3182 if (netif_running(dev))
3183 sky2_phy_reinit(sky2);
cd28ab6a 3184
2eaba1a2 3185 return 0;
cd28ab6a
SH
3186}
3187
fb17358f
SH
3188static int sky2_get_coalesce(struct net_device *dev,
3189 struct ethtool_coalesce *ecmd)
3190{
3191 struct sky2_port *sky2 = netdev_priv(dev);
3192 struct sky2_hw *hw = sky2->hw;
3193
3194 if (sky2_read8(hw, STAT_TX_TIMER_CTRL) == TIM_STOP)
3195 ecmd->tx_coalesce_usecs = 0;
3196 else {
3197 u32 clks = sky2_read32(hw, STAT_TX_TIMER_INI);
3198 ecmd->tx_coalesce_usecs = sky2_clk2us(hw, clks);
3199 }
3200 ecmd->tx_max_coalesced_frames = sky2_read16(hw, STAT_TX_IDX_TH);
3201
3202 if (sky2_read8(hw, STAT_LEV_TIMER_CTRL) == TIM_STOP)
3203 ecmd->rx_coalesce_usecs = 0;
3204 else {
3205 u32 clks = sky2_read32(hw, STAT_LEV_TIMER_INI);
3206 ecmd->rx_coalesce_usecs = sky2_clk2us(hw, clks);
3207 }
3208 ecmd->rx_max_coalesced_frames = sky2_read8(hw, STAT_FIFO_WM);
3209
3210 if (sky2_read8(hw, STAT_ISR_TIMER_CTRL) == TIM_STOP)
3211 ecmd->rx_coalesce_usecs_irq = 0;
3212 else {
3213 u32 clks = sky2_read32(hw, STAT_ISR_TIMER_INI);
3214 ecmd->rx_coalesce_usecs_irq = sky2_clk2us(hw, clks);
3215 }
3216
3217 ecmd->rx_max_coalesced_frames_irq = sky2_read8(hw, STAT_FIFO_ISR_WM);
3218
3219 return 0;
3220}
3221
3222/* Note: this affect both ports */
3223static int sky2_set_coalesce(struct net_device *dev,
3224 struct ethtool_coalesce *ecmd)
3225{
3226 struct sky2_port *sky2 = netdev_priv(dev);
3227 struct sky2_hw *hw = sky2->hw;
77b3d6a2 3228 const u32 tmax = sky2_clk2us(hw, 0x0ffffff);
fb17358f 3229
77b3d6a2
SH
3230 if (ecmd->tx_coalesce_usecs > tmax ||
3231 ecmd->rx_coalesce_usecs > tmax ||
3232 ecmd->rx_coalesce_usecs_irq > tmax)
fb17358f
SH
3233 return -EINVAL;
3234
ff81fbbe 3235 if (ecmd->tx_max_coalesced_frames >= TX_RING_SIZE-1)
fb17358f 3236 return -EINVAL;
ff81fbbe 3237 if (ecmd->rx_max_coalesced_frames > RX_MAX_PENDING)
fb17358f 3238 return -EINVAL;
ff81fbbe 3239 if (ecmd->rx_max_coalesced_frames_irq >RX_MAX_PENDING)
fb17358f
SH
3240 return -EINVAL;
3241
3242 if (ecmd->tx_coalesce_usecs == 0)
3243 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_STOP);
3244 else {
3245 sky2_write32(hw, STAT_TX_TIMER_INI,
3246 sky2_us2clk(hw, ecmd->tx_coalesce_usecs));
3247 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
3248 }
3249 sky2_write16(hw, STAT_TX_IDX_TH, ecmd->tx_max_coalesced_frames);
3250
3251 if (ecmd->rx_coalesce_usecs == 0)
3252 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_STOP);
3253 else {
3254 sky2_write32(hw, STAT_LEV_TIMER_INI,
3255 sky2_us2clk(hw, ecmd->rx_coalesce_usecs));
3256 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
3257 }
3258 sky2_write8(hw, STAT_FIFO_WM, ecmd->rx_max_coalesced_frames);
3259
3260 if (ecmd->rx_coalesce_usecs_irq == 0)
3261 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_STOP);
3262 else {
d28d4870 3263 sky2_write32(hw, STAT_ISR_TIMER_INI,
fb17358f
SH
3264 sky2_us2clk(hw, ecmd->rx_coalesce_usecs_irq));
3265 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
3266 }
3267 sky2_write8(hw, STAT_FIFO_ISR_WM, ecmd->rx_max_coalesced_frames_irq);
3268 return 0;
3269}
3270
793b883e
SH
3271static void sky2_get_ringparam(struct net_device *dev,
3272 struct ethtool_ringparam *ering)
3273{
3274 struct sky2_port *sky2 = netdev_priv(dev);
3275
3276 ering->rx_max_pending = RX_MAX_PENDING;
3277 ering->rx_mini_max_pending = 0;
3278 ering->rx_jumbo_max_pending = 0;
3279 ering->tx_max_pending = TX_RING_SIZE - 1;
3280
3281 ering->rx_pending = sky2->rx_pending;
3282 ering->rx_mini_pending = 0;
3283 ering->rx_jumbo_pending = 0;
3284 ering->tx_pending = sky2->tx_pending;
3285}
3286
3287static int sky2_set_ringparam(struct net_device *dev,
3288 struct ethtool_ringparam *ering)
3289{
3290 struct sky2_port *sky2 = netdev_priv(dev);
3291 int err = 0;
3292
3293 if (ering->rx_pending > RX_MAX_PENDING ||
3294 ering->rx_pending < 8 ||
3295 ering->tx_pending < MAX_SKB_TX_LE ||
3296 ering->tx_pending > TX_RING_SIZE - 1)
3297 return -EINVAL;
3298
3299 if (netif_running(dev))
3300 sky2_down(dev);
3301
3302 sky2->rx_pending = ering->rx_pending;
3303 sky2->tx_pending = ering->tx_pending;
3304
1b537565 3305 if (netif_running(dev)) {
793b883e 3306 err = sky2_up(dev);
1b537565
SH
3307 if (err)
3308 dev_close(dev);
6ed995bb
SH
3309 else
3310 sky2_set_multicast(dev);
1b537565 3311 }
793b883e
SH
3312
3313 return err;
3314}
3315
793b883e
SH
3316static int sky2_get_regs_len(struct net_device *dev)
3317{
6e4cbb34 3318 return 0x4000;
793b883e
SH
3319}
3320
3321/*
3322 * Returns copy of control register region
6e4cbb34 3323 * Note: access to the RAM address register set will cause timeouts.
793b883e
SH
3324 */
3325static void sky2_get_regs(struct net_device *dev, struct ethtool_regs *regs,
3326 void *p)
3327{
3328 const struct sky2_port *sky2 = netdev_priv(dev);
793b883e 3329 const void __iomem *io = sky2->hw->regs;
793b883e 3330
6e4cbb34 3331 BUG_ON(regs->len < B3_RI_WTO_R1);
793b883e 3332 regs->version = 1;
6e4cbb34 3333 memset(p, 0, regs->len);
793b883e 3334
6e4cbb34
SH
3335 memcpy_fromio(p, io, B3_RAM_ADDR);
3336
3337 memcpy_fromio(p + B3_RI_WTO_R1,
3338 io + B3_RI_WTO_R1,
3339 regs->len - B3_RI_WTO_R1);
793b883e 3340}
cd28ab6a 3341
b628ed98
SH
3342/* In order to do Jumbo packets on these chips, need to turn off the
3343 * transmit store/forward. Therefore checksum offload won't work.
3344 */
3345static int no_tx_offload(struct net_device *dev)
3346{
3347 const struct sky2_port *sky2 = netdev_priv(dev);
3348 const struct sky2_hw *hw = sky2->hw;
3349
3350 return dev->mtu > ETH_DATA_LEN &&
3351 (hw->chip_id == CHIP_ID_YUKON_EX
3352 || hw->chip_id == CHIP_ID_YUKON_EC_U);
3353}
3354
3355static int sky2_set_tx_csum(struct net_device *dev, u32 data)
3356{
3357 if (data && no_tx_offload(dev))
3358 return -EINVAL;
3359
3360 return ethtool_op_set_tx_csum(dev, data);
3361}
3362
3363
3364static int sky2_set_tso(struct net_device *dev, u32 data)
3365{
3366 if (data && no_tx_offload(dev))
3367 return -EINVAL;
3368
3369 return ethtool_op_set_tso(dev, data);
3370}
3371
7282d491 3372static const struct ethtool_ops sky2_ethtool_ops = {
793b883e
SH
3373 .get_settings = sky2_get_settings,
3374 .set_settings = sky2_set_settings,
e3173832
SH
3375 .get_drvinfo = sky2_get_drvinfo,
3376 .get_wol = sky2_get_wol,
3377 .set_wol = sky2_set_wol,
793b883e
SH
3378 .get_msglevel = sky2_get_msglevel,
3379 .set_msglevel = sky2_set_msglevel,
9a7ae0a9 3380 .nway_reset = sky2_nway_reset,
793b883e
SH
3381 .get_regs_len = sky2_get_regs_len,
3382 .get_regs = sky2_get_regs,
3383 .get_link = ethtool_op_get_link,
3384 .get_sg = ethtool_op_get_sg,
3385 .set_sg = ethtool_op_set_sg,
3386 .get_tx_csum = ethtool_op_get_tx_csum,
b628ed98 3387 .set_tx_csum = sky2_set_tx_csum,
793b883e 3388 .get_tso = ethtool_op_get_tso,
b628ed98 3389 .set_tso = sky2_set_tso,
793b883e
SH
3390 .get_rx_csum = sky2_get_rx_csum,
3391 .set_rx_csum = sky2_set_rx_csum,
3392 .get_strings = sky2_get_strings,
fb17358f
SH
3393 .get_coalesce = sky2_get_coalesce,
3394 .set_coalesce = sky2_set_coalesce,
793b883e
SH
3395 .get_ringparam = sky2_get_ringparam,
3396 .set_ringparam = sky2_set_ringparam,
cd28ab6a
SH
3397 .get_pauseparam = sky2_get_pauseparam,
3398 .set_pauseparam = sky2_set_pauseparam,
793b883e 3399 .phys_id = sky2_phys_id,
cd28ab6a
SH
3400 .get_stats_count = sky2_get_stats_count,
3401 .get_ethtool_stats = sky2_get_ethtool_stats,
2995bfb7 3402 .get_perm_addr = ethtool_op_get_perm_addr,
cd28ab6a
SH
3403};
3404
3405/* Initialize network device */
3406static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
e3173832
SH
3407 unsigned port,
3408 int highmem, int wol)
cd28ab6a
SH
3409{
3410 struct sky2_port *sky2;
3411 struct net_device *dev = alloc_etherdev(sizeof(*sky2));
3412
3413 if (!dev) {
b02a9258 3414 dev_err(&hw->pdev->dev, "etherdev alloc failed");
cd28ab6a
SH
3415 return NULL;
3416 }
3417
3418 SET_MODULE_OWNER(dev);
3419 SET_NETDEV_DEV(dev, &hw->pdev->dev);
ef743d33 3420 dev->irq = hw->pdev->irq;
cd28ab6a
SH
3421 dev->open = sky2_up;
3422 dev->stop = sky2_down;
ef743d33 3423 dev->do_ioctl = sky2_ioctl;
cd28ab6a
SH
3424 dev->hard_start_xmit = sky2_xmit_frame;
3425 dev->get_stats = sky2_get_stats;
3426 dev->set_multicast_list = sky2_set_multicast;
3427 dev->set_mac_address = sky2_set_mac_address;
3428 dev->change_mtu = sky2_change_mtu;
3429 SET_ETHTOOL_OPS(dev, &sky2_ethtool_ops);
3430 dev->tx_timeout = sky2_tx_timeout;
3431 dev->watchdog_timeo = TX_WATCHDOG;
3432 if (port == 0)
3433 dev->poll = sky2_poll;
3434 dev->weight = NAPI_WEIGHT;
3435#ifdef CONFIG_NET_POLL_CONTROLLER
0ca43235
SH
3436 /* Network console (only works on port 0)
3437 * because netpoll makes assumptions about NAPI
3438 */
3439 if (port == 0)
3440 dev->poll_controller = sky2_netpoll;
cd28ab6a 3441#endif
cd28ab6a
SH
3442
3443 sky2 = netdev_priv(dev);
3444 sky2->netdev = dev;
3445 sky2->hw = hw;
3446 sky2->msg_enable = netif_msg_init(debug, default_msg);
3447
cd28ab6a
SH
3448 /* Auto speed and flow control */
3449 sky2->autoneg = AUTONEG_ENABLE;
16ad91e1
SH
3450 sky2->flow_mode = FC_BOTH;
3451
cd28ab6a
SH
3452 sky2->duplex = -1;
3453 sky2->speed = -1;
3454 sky2->advertising = sky2_supported_modes(hw);
ee7abb04 3455 sky2->rx_csum = 1;
e3173832 3456 sky2->wol = wol;
75d070c5 3457
e07b1aa8 3458 spin_lock_init(&sky2->phy_lock);
793b883e 3459 sky2->tx_pending = TX_DEF_PENDING;
290d4de5 3460 sky2->rx_pending = RX_DEF_PENDING;
cd28ab6a
SH
3461
3462 hw->dev[port] = dev;
3463
3464 sky2->port = port;
3465
4a50a876 3466 dev->features |= NETIF_F_TSO | NETIF_F_IP_CSUM | NETIF_F_SG;
cd28ab6a
SH
3467 if (highmem)
3468 dev->features |= NETIF_F_HIGHDMA;
cd28ab6a 3469
d1f13708
SH
3470#ifdef SKY2_VLAN_TAG_USED
3471 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3472 dev->vlan_rx_register = sky2_vlan_rx_register;
3473 dev->vlan_rx_kill_vid = sky2_vlan_rx_kill_vid;
3474#endif
3475
cd28ab6a 3476 /* read the mac address */
793b883e 3477 memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8, ETH_ALEN);
2995bfb7 3478 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
cd28ab6a
SH
3479
3480 /* device is off until link detection */
3481 netif_carrier_off(dev);
3482 netif_stop_queue(dev);
3483
3484 return dev;
3485}
3486
28bd181a 3487static void __devinit sky2_show_addr(struct net_device *dev)
cd28ab6a
SH
3488{
3489 const struct sky2_port *sky2 = netdev_priv(dev);
3490
3491 if (netif_msg_probe(sky2))
3492 printk(KERN_INFO PFX "%s: addr %02x:%02x:%02x:%02x:%02x:%02x\n",
3493 dev->name,
3494 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
3495 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
3496}
3497
fb2690a9 3498/* Handle software interrupt used during MSI test */
7d12e780 3499static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
fb2690a9
SH
3500{
3501 struct sky2_hw *hw = dev_id;
3502 u32 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
3503
3504 if (status == 0)
3505 return IRQ_NONE;
3506
3507 if (status & Y2_IS_IRQ_SW) {
b0a20ded 3508 hw->msi = 1;
fb2690a9
SH
3509 wake_up(&hw->msi_wait);
3510 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
3511 }
3512 sky2_write32(hw, B0_Y2_SP_ICR, 2);
3513
3514 return IRQ_HANDLED;
3515}
3516
3517/* Test interrupt path by forcing a a software IRQ */
3518static int __devinit sky2_test_msi(struct sky2_hw *hw)
3519{
3520 struct pci_dev *pdev = hw->pdev;
3521 int err;
3522
bb507fe1
SH
3523 init_waitqueue_head (&hw->msi_wait);
3524
fb2690a9
SH
3525 sky2_write32(hw, B0_IMSK, Y2_IS_IRQ_SW);
3526
b0a20ded 3527 err = request_irq(pdev->irq, sky2_test_intr, 0, DRV_NAME, hw);
fb2690a9 3528 if (err) {
b02a9258 3529 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
fb2690a9
SH
3530 return err;
3531 }
3532
fb2690a9 3533 sky2_write8(hw, B0_CTST, CS_ST_SW_IRQ);
bb507fe1 3534 sky2_read8(hw, B0_CTST);
fb2690a9 3535
b0a20ded 3536 wait_event_timeout(hw->msi_wait, hw->msi, HZ/10);
fb2690a9 3537
b0a20ded 3538 if (!hw->msi) {
fb2690a9 3539 /* MSI test failed, go back to INTx mode */
b02a9258
SH
3540 dev_info(&pdev->dev, "No interrupt generated using MSI, "
3541 "switching to INTx mode.\n");
fb2690a9
SH
3542
3543 err = -EOPNOTSUPP;
3544 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
3545 }
3546
3547 sky2_write32(hw, B0_IMSK, 0);
2bffc23a 3548 sky2_read32(hw, B0_IMSK);
fb2690a9
SH
3549
3550 free_irq(pdev->irq, hw);
3551
3552 return err;
3553}
3554
e3173832
SH
3555static int __devinit pci_wake_enabled(struct pci_dev *dev)
3556{
3557 int pm = pci_find_capability(dev, PCI_CAP_ID_PM);
3558 u16 value;
3559
3560 if (!pm)
3561 return 0;
3562 if (pci_read_config_word(dev, pm + PCI_PM_CTRL, &value))
3563 return 0;
3564 return value & PCI_PM_CTRL_PME_ENABLE;
3565}
3566
cd28ab6a
SH
3567static int __devinit sky2_probe(struct pci_dev *pdev,
3568 const struct pci_device_id *ent)
3569{
7f60c64b 3570 struct net_device *dev;
cd28ab6a 3571 struct sky2_hw *hw;
e3173832 3572 int err, using_dac = 0, wol_default;
cd28ab6a 3573
793b883e
SH
3574 err = pci_enable_device(pdev);
3575 if (err) {
b02a9258 3576 dev_err(&pdev->dev, "cannot enable PCI device\n");
cd28ab6a
SH
3577 goto err_out;
3578 }
3579
793b883e
SH
3580 err = pci_request_regions(pdev, DRV_NAME);
3581 if (err) {
b02a9258 3582 dev_err(&pdev->dev, "cannot obtain PCI resources\n");
793b883e 3583 goto err_out;
cd28ab6a
SH
3584 }
3585
3586 pci_set_master(pdev);
3587
d1f3d4dd
SH
3588 if (sizeof(dma_addr_t) > sizeof(u32) &&
3589 !(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK))) {
3590 using_dac = 1;
3591 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
3592 if (err < 0) {
b02a9258
SH
3593 dev_err(&pdev->dev, "unable to obtain 64 bit DMA "
3594 "for consistent allocations\n");
d1f3d4dd
SH
3595 goto err_out_free_regions;
3596 }
d1f3d4dd 3597 } else {
cd28ab6a
SH
3598 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
3599 if (err) {
b02a9258 3600 dev_err(&pdev->dev, "no usable DMA configuration\n");
cd28ab6a
SH
3601 goto err_out_free_regions;
3602 }
3603 }
d1f3d4dd 3604
e3173832
SH
3605 wol_default = pci_wake_enabled(pdev) ? WAKE_MAGIC : 0;
3606
cd28ab6a 3607 err = -ENOMEM;
6aad85d6 3608 hw = kzalloc(sizeof(*hw), GFP_KERNEL);
cd28ab6a 3609 if (!hw) {
b02a9258 3610 dev_err(&pdev->dev, "cannot allocate hardware struct\n");
cd28ab6a
SH
3611 goto err_out_free_regions;
3612 }
3613
cd28ab6a 3614 hw->pdev = pdev;
cd28ab6a
SH
3615
3616 hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
3617 if (!hw->regs) {
b02a9258 3618 dev_err(&pdev->dev, "cannot map device registers\n");
cd28ab6a
SH
3619 goto err_out_free_hw;
3620 }
3621
56a645cc 3622#ifdef __BIG_ENDIAN
f65b138c
SH
3623 /* The sk98lin vendor driver uses hardware byte swapping but
3624 * this driver uses software swapping.
3625 */
56a645cc
SH
3626 {
3627 u32 reg;
56a645cc 3628 reg = sky2_pci_read32(hw, PCI_DEV_REG2);
f65b138c 3629 reg &= ~PCI_REV_DESC;
56a645cc
SH
3630 sky2_pci_write32(hw, PCI_DEV_REG2, reg);
3631 }
3632#endif
3633
08c06d8a
SH
3634 /* ring for status responses */
3635 hw->st_le = pci_alloc_consistent(hw->pdev, STATUS_LE_BYTES,
3636 &hw->st_dma);
3637 if (!hw->st_le)
3638 goto err_out_iounmap;
3639
e3173832 3640 err = sky2_init(hw);
cd28ab6a 3641 if (err)
793b883e 3642 goto err_out_iounmap;
cd28ab6a 3643
b02a9258 3644 dev_info(&pdev->dev, "v%s addr 0x%llx irq %d Yukon-%s (0x%x) rev %d\n",
7c7459d1
GKH
3645 DRV_VERSION, (unsigned long long)pci_resource_start(pdev, 0),
3646 pdev->irq, yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
793b883e 3647 hw->chip_id, hw->chip_rev);
cd28ab6a 3648
e3173832
SH
3649 sky2_reset(hw);
3650
3651 dev = sky2_init_netdev(hw, 0, using_dac, wol_default);
7f60c64b 3652 if (!dev) {
3653 err = -ENOMEM;
cd28ab6a 3654 goto err_out_free_pci;
7f60c64b 3655 }
cd28ab6a 3656
9fa1b1f3
SH
3657 if (!disable_msi && pci_enable_msi(pdev) == 0) {
3658 err = sky2_test_msi(hw);
3659 if (err == -EOPNOTSUPP)
3660 pci_disable_msi(pdev);
3661 else if (err)
3662 goto err_out_free_netdev;
3663 }
3664
793b883e
SH
3665 err = register_netdev(dev);
3666 if (err) {
b02a9258 3667 dev_err(&pdev->dev, "cannot register net device\n");
cd28ab6a
SH
3668 goto err_out_free_netdev;
3669 }
3670
b0a20ded
SH
3671 err = request_irq(pdev->irq, sky2_intr, hw->msi ? 0 : IRQF_SHARED,
3672 dev->name, hw);
9fa1b1f3 3673 if (err) {
b02a9258 3674 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
9fa1b1f3
SH
3675 goto err_out_unregister;
3676 }
3677 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
3678
cd28ab6a
SH
3679 sky2_show_addr(dev);
3680
7f60c64b 3681 if (hw->ports > 1) {
3682 struct net_device *dev1;
3683
e3173832 3684 dev1 = sky2_init_netdev(hw, 1, using_dac, wol_default);
b02a9258
SH
3685 if (!dev1)
3686 dev_warn(&pdev->dev, "allocation for second device failed\n");
3687 else if ((err = register_netdev(dev1))) {
3688 dev_warn(&pdev->dev,
3689 "register of second port failed (%d)\n", err);
cd28ab6a
SH
3690 hw->dev[1] = NULL;
3691 free_netdev(dev1);
b02a9258
SH
3692 } else
3693 sky2_show_addr(dev1);
cd28ab6a
SH
3694 }
3695
01bd7564 3696 setup_timer(&hw->idle_timer, sky2_idle, (unsigned long) hw);
81906791
SH
3697 INIT_WORK(&hw->restart_work, sky2_restart);
3698
eb35cf60 3699 sky2_idle_start(hw);
d27ed387 3700
793b883e
SH
3701 pci_set_drvdata(pdev, hw);
3702
cd28ab6a
SH
3703 return 0;
3704
793b883e 3705err_out_unregister:
b0a20ded
SH
3706 if (hw->msi)
3707 pci_disable_msi(pdev);
793b883e 3708 unregister_netdev(dev);
cd28ab6a
SH
3709err_out_free_netdev:
3710 free_netdev(dev);
cd28ab6a 3711err_out_free_pci:
793b883e 3712 sky2_write8(hw, B0_CTST, CS_RST_SET);
cd28ab6a
SH
3713 pci_free_consistent(hw->pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
3714err_out_iounmap:
3715 iounmap(hw->regs);
3716err_out_free_hw:
3717 kfree(hw);
3718err_out_free_regions:
3719 pci_release_regions(pdev);
cd28ab6a 3720 pci_disable_device(pdev);
cd28ab6a
SH
3721err_out:
3722 return err;
3723}
3724
3725static void __devexit sky2_remove(struct pci_dev *pdev)
3726{
793b883e 3727 struct sky2_hw *hw = pci_get_drvdata(pdev);
cd28ab6a
SH
3728 struct net_device *dev0, *dev1;
3729
793b883e 3730 if (!hw)
cd28ab6a
SH
3731 return;
3732
d27ed387
SH
3733 del_timer_sync(&hw->idle_timer);
3734
81906791
SH
3735 flush_scheduled_work();
3736
d27ed387 3737 sky2_write32(hw, B0_IMSK, 0);
72cb8529
SH
3738 synchronize_irq(hw->pdev->irq);
3739
cd28ab6a 3740 dev0 = hw->dev[0];
793b883e
SH
3741 dev1 = hw->dev[1];
3742 if (dev1)
3743 unregister_netdev(dev1);
cd28ab6a
SH
3744 unregister_netdev(dev0);
3745
ae306cca
SH
3746 sky2_power_aux(hw);
3747
cd28ab6a 3748 sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);
793b883e 3749 sky2_write8(hw, B0_CTST, CS_RST_SET);
5afa0a9c 3750 sky2_read8(hw, B0_CTST);
cd28ab6a
SH
3751
3752 free_irq(pdev->irq, hw);
b0a20ded
SH
3753 if (hw->msi)
3754 pci_disable_msi(pdev);
793b883e 3755 pci_free_consistent(pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
cd28ab6a
SH
3756 pci_release_regions(pdev);
3757 pci_disable_device(pdev);
793b883e 3758
cd28ab6a
SH
3759 if (dev1)
3760 free_netdev(dev1);
3761 free_netdev(dev0);
3762 iounmap(hw->regs);
3763 kfree(hw);
5afa0a9c 3764
cd28ab6a
SH
3765 pci_set_drvdata(pdev, NULL);
3766}
3767
3768#ifdef CONFIG_PM
3769static int sky2_suspend(struct pci_dev *pdev, pm_message_t state)
3770{
793b883e 3771 struct sky2_hw *hw = pci_get_drvdata(pdev);
e3173832 3772 int i, wol = 0;
cd28ab6a 3773
eb35cf60 3774 del_timer_sync(&hw->idle_timer);
6a5706b9 3775 netif_poll_disable(hw->dev[0]);
eb35cf60 3776
f05267e7 3777 for (i = 0; i < hw->ports; i++) {
cd28ab6a 3778 struct net_device *dev = hw->dev[i];
e3173832 3779 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a 3780
e3173832 3781 if (netif_running(dev))
5afa0a9c 3782 sky2_down(dev);
e3173832
SH
3783
3784 if (sky2->wol)
3785 sky2_wol_init(sky2);
3786
3787 wol |= sky2->wol;
cd28ab6a
SH
3788 }
3789
8ab8fca2 3790 sky2_write32(hw, B0_IMSK, 0);
ae306cca 3791 sky2_power_aux(hw);
e3173832 3792
d374c1c1 3793 pci_save_state(pdev);
e3173832 3794 pci_enable_wake(pdev, pci_choose_state(pdev, state), wol);
ae306cca
SH
3795 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3796
2ccc99b7 3797 return 0;
cd28ab6a
SH
3798}
3799
3800static int sky2_resume(struct pci_dev *pdev)
3801{
793b883e 3802 struct sky2_hw *hw = pci_get_drvdata(pdev);
08c06d8a 3803 int i, err;
cd28ab6a 3804
ae306cca
SH
3805 err = pci_set_power_state(pdev, PCI_D0);
3806 if (err)
3807 goto out;
3808
3809 err = pci_restore_state(pdev);
3810 if (err)
3811 goto out;
3812
cd28ab6a 3813 pci_enable_wake(pdev, PCI_D0, 0);
1ad5b4a5
SH
3814
3815 /* Re-enable all clocks */
3816 if (hw->chip_id == CHIP_ID_YUKON_EX || hw->chip_id == CHIP_ID_YUKON_EC_U)
3817 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
3818
e3173832 3819 sky2_reset(hw);
cd28ab6a 3820
8ab8fca2
SH
3821 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
3822
f05267e7 3823 for (i = 0; i < hw->ports; i++) {
cd28ab6a 3824 struct net_device *dev = hw->dev[i];
6a5706b9 3825 if (netif_running(dev)) {
08c06d8a
SH
3826 err = sky2_up(dev);
3827 if (err) {
3828 printk(KERN_ERR PFX "%s: could not up: %d\n",
3829 dev->name, err);
3830 dev_close(dev);
eb35cf60 3831 goto out;
5afa0a9c 3832 }
cd28ab6a
SH
3833 }
3834 }
eb35cf60 3835
6a5706b9 3836 netif_poll_enable(hw->dev[0]);
eb35cf60 3837 sky2_idle_start(hw);
ae306cca 3838 return 0;
08c06d8a 3839out:
b02a9258 3840 dev_err(&pdev->dev, "resume failed (%d)\n", err);
ae306cca 3841 pci_disable_device(pdev);
08c06d8a 3842 return err;
cd28ab6a
SH
3843}
3844#endif
3845
e3173832
SH
3846static void sky2_shutdown(struct pci_dev *pdev)
3847{
3848 struct sky2_hw *hw = pci_get_drvdata(pdev);
3849 int i, wol = 0;
3850
3851 del_timer_sync(&hw->idle_timer);
3852 netif_poll_disable(hw->dev[0]);
3853
3854 for (i = 0; i < hw->ports; i++) {
3855 struct net_device *dev = hw->dev[i];
3856 struct sky2_port *sky2 = netdev_priv(dev);
3857
3858 if (sky2->wol) {
3859 wol = 1;
3860 sky2_wol_init(sky2);
3861 }
3862 }
3863
3864 if (wol)
3865 sky2_power_aux(hw);
3866
3867 pci_enable_wake(pdev, PCI_D3hot, wol);
3868 pci_enable_wake(pdev, PCI_D3cold, wol);
3869
3870 pci_disable_device(pdev);
3871 pci_set_power_state(pdev, PCI_D3hot);
3872
3873}
3874
cd28ab6a 3875static struct pci_driver sky2_driver = {
793b883e
SH
3876 .name = DRV_NAME,
3877 .id_table = sky2_id_table,
3878 .probe = sky2_probe,
3879 .remove = __devexit_p(sky2_remove),
cd28ab6a 3880#ifdef CONFIG_PM
793b883e
SH
3881 .suspend = sky2_suspend,
3882 .resume = sky2_resume,
cd28ab6a 3883#endif
e3173832 3884 .shutdown = sky2_shutdown,
cd28ab6a
SH
3885};
3886
3887static int __init sky2_init_module(void)
3888{
50241c4c 3889 return pci_register_driver(&sky2_driver);
cd28ab6a
SH
3890}
3891
3892static void __exit sky2_cleanup_module(void)
3893{
3894 pci_unregister_driver(&sky2_driver);
3895}
3896
3897module_init(sky2_init_module);
3898module_exit(sky2_cleanup_module);
3899
3900MODULE_DESCRIPTION("Marvell Yukon 2 Gigabit Ethernet driver");
65ebe634 3901MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
cd28ab6a 3902MODULE_LICENSE("GPL");
5f4f9dc1 3903MODULE_VERSION(DRV_VERSION);