]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/sky2.c
sky2: resume clocks
[net-next-2.6.git] / drivers / net / sky2.c
CommitLineData
cd28ab6a
SH
1/*
2 * New driver for Marvell Yukon 2 chipset.
3 * Based on earlier sk98lin, and skge driver.
4 *
5 * This driver intentionally does not support all the features
6 * of the original driver such as link fail-over and link management because
7 * those should be done at higher levels.
8 *
9 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
798b6b19 13 * the Free Software Foundation; either version 2 of the License.
cd28ab6a
SH
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
793b883e 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cd28ab6a
SH
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
793b883e 25#include <linux/crc32.h>
cd28ab6a 26#include <linux/kernel.h>
cd28ab6a
SH
27#include <linux/module.h>
28#include <linux/netdevice.h>
d0bbccfa 29#include <linux/dma-mapping.h>
cd28ab6a
SH
30#include <linux/etherdevice.h>
31#include <linux/ethtool.h>
32#include <linux/pci.h>
33#include <linux/ip.h>
c9bdd4b5 34#include <net/ip.h>
cd28ab6a
SH
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>
3cf26753 41#include <linux/debugfs.h>
ef743d33 42#include <linux/mii.h>
cd28ab6a
SH
43
44#include <asm/irq.h>
45
d1f13708
SH
46#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
47#define SKY2_VLAN_TAG_USED 1
48#endif
49
cd28ab6a
SH
50#include "sky2.h"
51
52#define DRV_NAME "sky2"
ac958154 53#define DRV_VERSION "1.26"
cd28ab6a
SH
54#define PFX DRV_NAME " "
55
56/*
57 * The Yukon II chipset takes 64 bit command blocks (called list elements)
58 * that are organized into three (receive, transmit, status) different rings
14d0263f 59 * similar to Tigon3.
cd28ab6a
SH
60 */
61
14d0263f 62#define RX_LE_SIZE 1024
cd28ab6a 63#define RX_LE_BYTES (RX_LE_SIZE*sizeof(struct sky2_rx_le))
14d0263f 64#define RX_MAX_PENDING (RX_LE_SIZE/6 - 2)
13210ce5 65#define RX_DEF_PENDING RX_MAX_PENDING
793b883e 66
ee5f68fe 67/* This is the worst case number of transmit list elements for a single skb:
07e31637
SH
68 VLAN:GSO + CKSUM + Data + skb_frags * DMA */
69#define MAX_SKB_TX_LE (2 + (sizeof(dma_addr_t)/sizeof(u32))*(MAX_SKB_FRAGS+1))
e9c1be80 70#define TX_MIN_PENDING (MAX_SKB_TX_LE+1)
ee5f68fe
SH
71#define TX_MAX_PENDING 4096
72#define TX_DEF_PENDING 127
cd28ab6a 73
793b883e 74#define STATUS_RING_SIZE 2048 /* 2 ports * (TX + 2*RX) */
cd28ab6a 75#define STATUS_LE_BYTES (STATUS_RING_SIZE*sizeof(struct sky2_status_le))
cd28ab6a
SH
76#define TX_WATCHDOG (5 * HZ)
77#define NAPI_WEIGHT 64
78#define PHY_RETRIES 1000
79
f4331a6d
SH
80#define SKY2_EEPROM_MAGIC 0x9955aabb
81
82
cb5d9547
SH
83#define RING_NEXT(x,s) (((x)+1) & ((s)-1))
84
cd28ab6a 85static const u32 default_msg =
793b883e
SH
86 NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK
87 | NETIF_MSG_TIMER | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR
3be92a70 88 | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN;
cd28ab6a 89
793b883e 90static int debug = -1; /* defaults above */
cd28ab6a
SH
91module_param(debug, int, 0);
92MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
93
14d0263f 94static int copybreak __read_mostly = 128;
bdb5c58e
SH
95module_param(copybreak, int, 0);
96MODULE_PARM_DESC(copybreak, "Receive copy threshold");
97
fb2690a9
SH
98static int disable_msi = 0;
99module_param(disable_msi, int, 0);
100MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)");
101
e6cac9ba 102static DEFINE_PCI_DEVICE_TABLE(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 */
e30a4ac2 105 { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E01) }, /* SK-9E21M */
2d2a3871 106 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b00) }, /* DGE-560T */
2f4a66ad 107 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4001) }, /* DGE-550SX */
508f89e7 108 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B02) }, /* DGE-560SX */
f1a0b6f5 109 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B03) }, /* DGE-550T */
e5b74c7d
SH
110 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4340) }, /* 88E8021 */
111 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4341) }, /* 88E8022 */
112 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4342) }, /* 88E8061 */
113 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4343) }, /* 88E8062 */
114 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4344) }, /* 88E8021 */
115 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4345) }, /* 88E8022 */
116 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4346) }, /* 88E8061 */
117 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) }, /* 88E8062 */
118 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) }, /* 88E8035 */
119 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) }, /* 88E8036 */
120 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4352) }, /* 88E8038 */
121 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4353) }, /* 88E8039 */
05745c4a 122 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4354) }, /* 88E8040 */
a3b4fced 123 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4355) }, /* 88E8040T */
e5b74c7d 124 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4356) }, /* 88EC033 */
5a37a68d 125 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4357) }, /* 88E8042 */
05745c4a 126 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x435A) }, /* 88E8048 */
e5b74c7d
SH
127 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) }, /* 88E8052 */
128 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) }, /* 88E8050 */
129 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) }, /* 88E8053 */
130 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4363) }, /* 88E8055 */
131 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4364) }, /* 88E8056 */
05745c4a 132 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4365) }, /* 88E8070 */
e5b74c7d
SH
133 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4366) }, /* 88EC036 */
134 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4367) }, /* 88EC032 */
135 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4368) }, /* 88EC034 */
f1a0b6f5
SH
136 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4369) }, /* 88EC042 */
137 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436A) }, /* 88E8058 */
69161611 138 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436B) }, /* 88E8071 */
5a37a68d 139 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436C) }, /* 88E8072 */
ed4d4161
SH
140 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436D) }, /* 88E8055 */
141 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4370) }, /* 88E8075 */
0ce8b98d 142 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4380) }, /* 88E8057 */
0f5aac70 143 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4381) }, /* 88E8059 */
cd28ab6a
SH
144 { 0 }
145};
793b883e 146
cd28ab6a
SH
147MODULE_DEVICE_TABLE(pci, sky2_id_table);
148
149/* Avoid conditionals by using array */
150static const unsigned txqaddr[] = { Q_XA1, Q_XA2 };
151static const unsigned rxqaddr[] = { Q_R1, Q_R2 };
f4ea431b 152static const u32 portirq_msk[] = { Y2_IS_PORT_1, Y2_IS_PORT_2 };
cd28ab6a 153
d1b139c0
SH
154static void sky2_set_multicast(struct net_device *dev);
155
af043aa5 156/* Access to PHY via serial interconnect */
ef743d33 157static int gm_phy_write(struct sky2_hw *hw, unsigned port, u16 reg, u16 val)
cd28ab6a
SH
158{
159 int i;
160
161 gma_write16(hw, port, GM_SMI_DATA, val);
162 gma_write16(hw, port, GM_SMI_CTRL,
163 GM_SMI_CT_PHY_AD(PHY_ADDR_MARV) | GM_SMI_CT_REG_AD(reg));
164
165 for (i = 0; i < PHY_RETRIES; i++) {
af043aa5
SH
166 u16 ctrl = gma_read16(hw, port, GM_SMI_CTRL);
167 if (ctrl == 0xffff)
168 goto io_error;
169
170 if (!(ctrl & GM_SMI_CT_BUSY))
ef743d33 171 return 0;
af043aa5
SH
172
173 udelay(10);
cd28ab6a 174 }
ef743d33 175
af043aa5 176 dev_warn(&hw->pdev->dev,"%s: phy write timeout\n", hw->dev[port]->name);
ef743d33 177 return -ETIMEDOUT;
af043aa5
SH
178
179io_error:
180 dev_err(&hw->pdev->dev, "%s: phy I/O error\n", hw->dev[port]->name);
181 return -EIO;
cd28ab6a
SH
182}
183
ef743d33 184static int __gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg, u16 *val)
cd28ab6a
SH
185{
186 int i;
187
793b883e 188 gma_write16(hw, port, GM_SMI_CTRL, GM_SMI_CT_PHY_AD(PHY_ADDR_MARV)
cd28ab6a
SH
189 | GM_SMI_CT_REG_AD(reg) | GM_SMI_CT_OP_RD);
190
191 for (i = 0; i < PHY_RETRIES; i++) {
af043aa5
SH
192 u16 ctrl = gma_read16(hw, port, GM_SMI_CTRL);
193 if (ctrl == 0xffff)
194 goto io_error;
195
196 if (ctrl & GM_SMI_CT_RD_VAL) {
ef743d33
SH
197 *val = gma_read16(hw, port, GM_SMI_DATA);
198 return 0;
199 }
200
af043aa5 201 udelay(10);
cd28ab6a
SH
202 }
203
af043aa5 204 dev_warn(&hw->pdev->dev, "%s: phy read timeout\n", hw->dev[port]->name);
ef743d33 205 return -ETIMEDOUT;
af043aa5
SH
206io_error:
207 dev_err(&hw->pdev->dev, "%s: phy I/O error\n", hw->dev[port]->name);
208 return -EIO;
ef743d33
SH
209}
210
af043aa5 211static inline u16 gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg)
ef743d33
SH
212{
213 u16 v;
af043aa5 214 __gm_phy_read(hw, port, reg, &v);
ef743d33 215 return v;
cd28ab6a
SH
216}
217
5afa0a9c 218
ae306cca
SH
219static void sky2_power_on(struct sky2_hw *hw)
220{
221 /* switch power to VCC (WA for VAUX problem) */
222 sky2_write8(hw, B0_POWER_CTRL,
223 PC_VAUX_ENA | PC_VCC_ENA | PC_VAUX_OFF | PC_VCC_ON);
5afa0a9c 224
ae306cca
SH
225 /* disable Core Clock Division, */
226 sky2_write32(hw, B2_Y2_CLK_CTRL, Y2_CLK_DIV_DIS);
d3bcfbeb 227
ae306cca
SH
228 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
229 /* enable bits are inverted */
230 sky2_write8(hw, B2_Y2_CLK_GATE,
231 Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
232 Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
233 Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);
234 else
235 sky2_write8(hw, B2_Y2_CLK_GATE, 0);
977bdf06 236
ea76e635 237 if (hw->flags & SKY2_HW_ADV_POWER_CTL) {
fc99fe06 238 u32 reg;
5afa0a9c 239
b32f40c4 240 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
b2345773 241
b32f40c4 242 reg = sky2_pci_read32(hw, PCI_DEV_REG4);
fc99fe06
SH
243 /* set all bits to 0 except bits 15..12 and 8 */
244 reg &= P_ASPM_CONTROL_MSK;
b32f40c4 245 sky2_pci_write32(hw, PCI_DEV_REG4, reg);
fc99fe06 246
b32f40c4 247 reg = sky2_pci_read32(hw, PCI_DEV_REG5);
fc99fe06
SH
248 /* set all bits to 0 except bits 28 & 27 */
249 reg &= P_CTL_TIM_VMAIN_AV_MSK;
b32f40c4 250 sky2_pci_write32(hw, PCI_DEV_REG5, reg);
fc99fe06 251
b32f40c4 252 sky2_pci_write32(hw, PCI_CFG_REG_1, 0);
8f70920f
SH
253
254 /* Enable workaround for dev 4.107 on Yukon-Ultra & Extreme */
255 reg = sky2_read32(hw, B2_GP_IO);
256 reg |= GLB_GPIO_STAT_RACE_DIS;
257 sky2_write32(hw, B2_GP_IO, reg);
b2345773
SH
258
259 sky2_read32(hw, B2_GP_IO);
5afa0a9c 260 }
10547ae2
SH
261
262 /* Turn on "driver loaded" LED */
263 sky2_write16(hw, B0_CTST, Y2_LED_STAT_ON);
ae306cca 264}
5afa0a9c 265
ae306cca
SH
266static void sky2_power_aux(struct sky2_hw *hw)
267{
268 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
269 sky2_write8(hw, B2_Y2_CLK_GATE, 0);
270 else
271 /* enable bits are inverted */
272 sky2_write8(hw, B2_Y2_CLK_GATE,
273 Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
274 Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
275 Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);
276
c23ddf8f
SH
277 /* switch power to VAUX if supported and PME from D3cold */
278 if ( (sky2_read32(hw, B0_CTST) & Y2_VAUX_AVAIL) &&
279 pci_pme_capable(hw->pdev, PCI_D3cold))
ae306cca
SH
280 sky2_write8(hw, B0_POWER_CTRL,
281 (PC_VAUX_ENA | PC_VCC_ENA |
282 PC_VAUX_ON | PC_VCC_OFF));
10547ae2
SH
283
284 /* turn off "driver loaded LED" */
285 sky2_write16(hw, B0_CTST, Y2_LED_STAT_OFF);
5afa0a9c
SH
286}
287
d3bcfbeb 288static void sky2_gmac_reset(struct sky2_hw *hw, unsigned port)
cd28ab6a
SH
289{
290 u16 reg;
291
292 /* disable all GMAC IRQ's */
293 sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), 0);
793b883e 294
cd28ab6a
SH
295 gma_write16(hw, port, GM_MC_ADDR_H1, 0); /* clear MC hash */
296 gma_write16(hw, port, GM_MC_ADDR_H2, 0);
297 gma_write16(hw, port, GM_MC_ADDR_H3, 0);
298 gma_write16(hw, port, GM_MC_ADDR_H4, 0);
299
300 reg = gma_read16(hw, port, GM_RX_CTRL);
301 reg |= GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA;
302 gma_write16(hw, port, GM_RX_CTRL, reg);
303}
304
16ad91e1
SH
305/* flow control to advertise bits */
306static const u16 copper_fc_adv[] = {
307 [FC_NONE] = 0,
308 [FC_TX] = PHY_M_AN_ASP,
309 [FC_RX] = PHY_M_AN_PC,
310 [FC_BOTH] = PHY_M_AN_PC | PHY_M_AN_ASP,
311};
312
313/* flow control to advertise bits when using 1000BaseX */
314static const u16 fiber_fc_adv[] = {
df3fe1f3 315 [FC_NONE] = PHY_M_P_NO_PAUSE_X,
16ad91e1
SH
316 [FC_TX] = PHY_M_P_ASYM_MD_X,
317 [FC_RX] = PHY_M_P_SYM_MD_X,
df3fe1f3 318 [FC_BOTH] = PHY_M_P_BOTH_MD_X,
16ad91e1
SH
319};
320
321/* flow control to GMA disable bits */
322static const u16 gm_fc_disable[] = {
323 [FC_NONE] = GM_GPCR_FC_RX_DIS | GM_GPCR_FC_TX_DIS,
324 [FC_TX] = GM_GPCR_FC_RX_DIS,
325 [FC_RX] = GM_GPCR_FC_TX_DIS,
326 [FC_BOTH] = 0,
327};
328
329
cd28ab6a
SH
330static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
331{
332 struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
2eaba1a2 333 u16 ctrl, ct1000, adv, pg, ledctrl, ledover, reg;
cd28ab6a 334
0ea065e5 335 if ( (sky2->flags & SKY2_FLAG_AUTO_SPEED) &&
ea76e635 336 !(hw->flags & SKY2_HW_NEWER_PHY)) {
cd28ab6a
SH
337 u16 ectrl = gm_phy_read(hw, port, PHY_MARV_EXT_CTRL);
338
339 ectrl &= ~(PHY_M_EC_M_DSC_MSK | PHY_M_EC_S_DSC_MSK |
793b883e 340 PHY_M_EC_MAC_S_MSK);
cd28ab6a
SH
341 ectrl |= PHY_M_EC_MAC_S(MAC_TX_CLK_25_MHZ);
342
53419c68 343 /* on PHY 88E1040 Rev.D0 (and newer) downshift control changed */
cd28ab6a 344 if (hw->chip_id == CHIP_ID_YUKON_EC)
53419c68 345 /* set downshift counter to 3x and enable downshift */
cd28ab6a
SH
346 ectrl |= PHY_M_EC_DSC_2(2) | PHY_M_EC_DOWN_S_ENA;
347 else
53419c68
SH
348 /* set master & slave downshift counter to 1x */
349 ectrl |= PHY_M_EC_M_DSC(0) | PHY_M_EC_S_DSC(1);
cd28ab6a
SH
350
351 gm_phy_write(hw, port, PHY_MARV_EXT_CTRL, ectrl);
352 }
353
354 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
b89165f2 355 if (sky2_is_copper(hw)) {
05745c4a 356 if (!(hw->flags & SKY2_HW_GIGABIT)) {
cd28ab6a
SH
357 /* enable automatic crossover */
358 ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO) >> 1;
6d3105d5
SH
359
360 if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
361 hw->chip_rev == CHIP_REV_YU_FE2_A0) {
362 u16 spec;
363
364 /* Enable Class A driver for FE+ A0 */
365 spec = gm_phy_read(hw, port, PHY_MARV_FE_SPEC_2);
366 spec |= PHY_M_FESC_SEL_CL_A;
367 gm_phy_write(hw, port, PHY_MARV_FE_SPEC_2, spec);
368 }
cd28ab6a
SH
369 } else {
370 /* disable energy detect */
371 ctrl &= ~PHY_M_PC_EN_DET_MSK;
372
373 /* enable automatic crossover */
374 ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO);
375
53419c68 376 /* downshift on PHY 88E1112 and 88E1149 is changed */
8e95a202
JP
377 if ( (sky2->flags & SKY2_FLAG_AUTO_SPEED) &&
378 (hw->flags & SKY2_HW_NEWER_PHY)) {
53419c68 379 /* set downshift counter to 3x and enable downshift */
cd28ab6a
SH
380 ctrl &= ~PHY_M_PC_DSC_MSK;
381 ctrl |= PHY_M_PC_DSC(2) | PHY_M_PC_DOWN_S_ENA;
382 }
383 }
cd28ab6a
SH
384 } else {
385 /* workaround for deviation #4.88 (CRC errors) */
386 /* disable Automatic Crossover */
387
388 ctrl &= ~PHY_M_PC_MDIX_MSK;
b89165f2 389 }
cd28ab6a 390
b89165f2
SH
391 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
392
393 /* special setup for PHY 88E1112 Fiber */
ea76e635 394 if (hw->chip_id == CHIP_ID_YUKON_XL && (hw->flags & SKY2_HW_FIBRE_PHY)) {
b89165f2 395 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
cd28ab6a 396
b89165f2
SH
397 /* Fiber: select 1000BASE-X only mode MAC Specific Ctrl Reg. */
398 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
399 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
400 ctrl &= ~PHY_M_MAC_MD_MSK;
401 ctrl |= PHY_M_MAC_MODE_SEL(PHY_M_MAC_MD_1000BX);
402 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
403
404 if (hw->pmd_type == 'P') {
cd28ab6a
SH
405 /* select page 1 to access Fiber registers */
406 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 1);
b89165f2
SH
407
408 /* for SFP-module set SIGDET polarity to low */
409 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
410 ctrl |= PHY_M_FIB_SIGD_POL;
34dd962b 411 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
cd28ab6a 412 }
b89165f2
SH
413
414 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
cd28ab6a
SH
415 }
416
7800fddc 417 ctrl = PHY_CT_RESET;
cd28ab6a
SH
418 ct1000 = 0;
419 adv = PHY_AN_CSMA;
2eaba1a2 420 reg = 0;
cd28ab6a 421
0ea065e5 422 if (sky2->flags & SKY2_FLAG_AUTO_SPEED) {
b89165f2 423 if (sky2_is_copper(hw)) {
cd28ab6a
SH
424 if (sky2->advertising & ADVERTISED_1000baseT_Full)
425 ct1000 |= PHY_M_1000C_AFD;
426 if (sky2->advertising & ADVERTISED_1000baseT_Half)
427 ct1000 |= PHY_M_1000C_AHD;
428 if (sky2->advertising & ADVERTISED_100baseT_Full)
429 adv |= PHY_M_AN_100_FD;
430 if (sky2->advertising & ADVERTISED_100baseT_Half)
431 adv |= PHY_M_AN_100_HD;
432 if (sky2->advertising & ADVERTISED_10baseT_Full)
433 adv |= PHY_M_AN_10_FD;
434 if (sky2->advertising & ADVERTISED_10baseT_Half)
435 adv |= PHY_M_AN_10_HD;
709c6e7b 436
b89165f2
SH
437 } else { /* special defines for FIBER (88E1040S only) */
438 if (sky2->advertising & ADVERTISED_1000baseT_Full)
439 adv |= PHY_M_AN_1000X_AFD;
440 if (sky2->advertising & ADVERTISED_1000baseT_Half)
441 adv |= PHY_M_AN_1000X_AHD;
709c6e7b 442 }
cd28ab6a
SH
443
444 /* Restart Auto-negotiation */
445 ctrl |= PHY_CT_ANE | PHY_CT_RE_CFG;
446 } else {
447 /* forced speed/duplex settings */
448 ct1000 = PHY_M_1000C_MSE;
449
0ea065e5
SH
450 /* Disable auto update for duplex flow control and duplex */
451 reg |= GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_SPD_DIS;
cd28ab6a
SH
452
453 switch (sky2->speed) {
454 case SPEED_1000:
455 ctrl |= PHY_CT_SP1000;
2eaba1a2 456 reg |= GM_GPCR_SPEED_1000;
cd28ab6a
SH
457 break;
458 case SPEED_100:
459 ctrl |= PHY_CT_SP100;
2eaba1a2 460 reg |= GM_GPCR_SPEED_100;
cd28ab6a
SH
461 break;
462 }
463
2eaba1a2
SH
464 if (sky2->duplex == DUPLEX_FULL) {
465 reg |= GM_GPCR_DUP_FULL;
466 ctrl |= PHY_CT_DUP_MD;
16ad91e1
SH
467 } else if (sky2->speed < SPEED_1000)
468 sky2->flow_mode = FC_NONE;
0ea065e5 469 }
2eaba1a2 470
0ea065e5
SH
471 if (sky2->flags & SKY2_FLAG_AUTO_PAUSE) {
472 if (sky2_is_copper(hw))
473 adv |= copper_fc_adv[sky2->flow_mode];
474 else
475 adv |= fiber_fc_adv[sky2->flow_mode];
476 } else {
477 reg |= GM_GPCR_AU_FCT_DIS;
16ad91e1 478 reg |= gm_fc_disable[sky2->flow_mode];
2eaba1a2
SH
479
480 /* Forward pause packets to GMAC? */
16ad91e1 481 if (sky2->flow_mode & FC_RX)
2eaba1a2
SH
482 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
483 else
484 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
cd28ab6a
SH
485 }
486
2eaba1a2
SH
487 gma_write16(hw, port, GM_GP_CTRL, reg);
488
05745c4a 489 if (hw->flags & SKY2_HW_GIGABIT)
cd28ab6a
SH
490 gm_phy_write(hw, port, PHY_MARV_1000T_CTRL, ct1000);
491
492 gm_phy_write(hw, port, PHY_MARV_AUNE_ADV, adv);
493 gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
494
495 /* Setup Phy LED's */
496 ledctrl = PHY_M_LED_PULS_DUR(PULS_170MS);
497 ledover = 0;
498
499 switch (hw->chip_id) {
500 case CHIP_ID_YUKON_FE:
501 /* on 88E3082 these bits are at 11..9 (shifted left) */
502 ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) << 1;
503
504 ctrl = gm_phy_read(hw, port, PHY_MARV_FE_LED_PAR);
505
506 /* delete ACT LED control bits */
507 ctrl &= ~PHY_M_FELP_LED1_MSK;
508 /* change ACT LED control to blink mode */
509 ctrl |= PHY_M_FELP_LED1_CTRL(LED_PAR_CTRL_ACT_BL);
510 gm_phy_write(hw, port, PHY_MARV_FE_LED_PAR, ctrl);
511 break;
512
05745c4a
SH
513 case CHIP_ID_YUKON_FE_P:
514 /* Enable Link Partner Next Page */
515 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
516 ctrl |= PHY_M_PC_ENA_LIP_NP;
517
518 /* disable Energy Detect and enable scrambler */
519 ctrl &= ~(PHY_M_PC_ENA_ENE_DT | PHY_M_PC_DIS_SCRAMB);
520 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
521
522 /* set LED2 -> ACT, LED1 -> LINK, LED0 -> SPEED */
523 ctrl = PHY_M_FELP_LED2_CTRL(LED_PAR_CTRL_ACT_BL) |
524 PHY_M_FELP_LED1_CTRL(LED_PAR_CTRL_LINK) |
525 PHY_M_FELP_LED0_CTRL(LED_PAR_CTRL_SPEED);
526
527 gm_phy_write(hw, port, PHY_MARV_FE_LED_PAR, ctrl);
528 break;
529
cd28ab6a 530 case CHIP_ID_YUKON_XL:
793b883e 531 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
cd28ab6a
SH
532
533 /* select page 3 to access LED control register */
534 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
535
536 /* set LED Function Control register */
ed6d32c7
SH
537 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
538 (PHY_M_LEDC_LOS_CTRL(1) | /* LINK/ACT */
539 PHY_M_LEDC_INIT_CTRL(7) | /* 10 Mbps */
540 PHY_M_LEDC_STA1_CTRL(7) | /* 100 Mbps */
541 PHY_M_LEDC_STA0_CTRL(7))); /* 1000 Mbps */
cd28ab6a
SH
542
543 /* set Polarity Control register */
544 gm_phy_write(hw, port, PHY_MARV_PHY_STAT,
793b883e
SH
545 (PHY_M_POLC_LS1_P_MIX(4) |
546 PHY_M_POLC_IS0_P_MIX(4) |
547 PHY_M_POLC_LOS_CTRL(2) |
548 PHY_M_POLC_INIT_CTRL(2) |
549 PHY_M_POLC_STA1_CTRL(2) |
550 PHY_M_POLC_STA0_CTRL(2)));
cd28ab6a
SH
551
552 /* restore page register */
793b883e 553 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
cd28ab6a 554 break;
93745494 555
ed6d32c7 556 case CHIP_ID_YUKON_EC_U:
93745494 557 case CHIP_ID_YUKON_EX:
ed4d4161 558 case CHIP_ID_YUKON_SUPR:
ed6d32c7
SH
559 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
560
561 /* select page 3 to access LED control register */
562 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
563
564 /* set LED Function Control register */
565 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
566 (PHY_M_LEDC_LOS_CTRL(1) | /* LINK/ACT */
567 PHY_M_LEDC_INIT_CTRL(8) | /* 10 Mbps */
568 PHY_M_LEDC_STA1_CTRL(7) | /* 100 Mbps */
569 PHY_M_LEDC_STA0_CTRL(7)));/* 1000 Mbps */
570
571 /* set Blink Rate in LED Timer Control Register */
572 gm_phy_write(hw, port, PHY_MARV_INT_MASK,
573 ledctrl | PHY_M_LED_BLINK_RT(BLINK_84MS));
574 /* restore page register */
575 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
576 break;
cd28ab6a
SH
577
578 default:
579 /* set Tx LED (LED_TX) to blink mode on Rx OR Tx activity */
580 ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) | PHY_M_LEDC_TX_CTRL;
a84d0a3d 581
cd28ab6a 582 /* turn off the Rx LED (LED_RX) */
a84d0a3d 583 ledover |= PHY_M_LED_MO_RX(MO_LED_OFF);
cd28ab6a
SH
584 }
585
0ce8b98d 586 if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_UL_2) {
977bdf06 587 /* apply fixes in PHY AFE */
ed6d32c7
SH
588 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255);
589
977bdf06 590 /* increase differential signal amplitude in 10BASE-T */
ed6d32c7
SH
591 gm_phy_write(hw, port, 0x18, 0xaa99);
592 gm_phy_write(hw, port, 0x17, 0x2011);
cd28ab6a 593
0ce8b98d
SH
594 if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
595 /* fix for IEEE A/B Symmetry failure in 1000BASE-T */
596 gm_phy_write(hw, port, 0x18, 0xa204);
597 gm_phy_write(hw, port, 0x17, 0x2002);
598 }
977bdf06
SH
599
600 /* set page register to 0 */
9467a8fc 601 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
05745c4a
SH
602 } else if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
603 hw->chip_rev == CHIP_REV_YU_FE2_A0) {
604 /* apply workaround for integrated resistors calibration */
605 gm_phy_write(hw, port, PHY_MARV_PAGE_ADDR, 17);
606 gm_phy_write(hw, port, PHY_MARV_PAGE_DATA, 0x3f60);
0f5aac70
SH
607 } else if (hw->chip_id == CHIP_ID_YUKON_OPT && hw->chip_rev == 0) {
608 /* apply fixes in PHY AFE */
609 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0x00ff);
610
611 /* apply RDAC termination workaround */
612 gm_phy_write(hw, port, 24, 0x2800);
613 gm_phy_write(hw, port, 23, 0x2001);
614
615 /* set page register back to 0 */
616 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
e1a74b37
SH
617 } else if (hw->chip_id != CHIP_ID_YUKON_EX &&
618 hw->chip_id < CHIP_ID_YUKON_SUPR) {
05745c4a 619 /* no effect on Yukon-XL */
977bdf06 620 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
cd28ab6a 621
8e95a202
JP
622 if (!(sky2->flags & SKY2_FLAG_AUTO_SPEED) ||
623 sky2->speed == SPEED_100) {
977bdf06 624 /* turn on 100 Mbps LED (LED_LINK100) */
a84d0a3d 625 ledover |= PHY_M_LED_MO_100(MO_LED_ON);
977bdf06 626 }
cd28ab6a 627
977bdf06
SH
628 if (ledover)
629 gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);
630
631 }
2eaba1a2 632
d571b694 633 /* Enable phy interrupt on auto-negotiation complete (or link up) */
0ea065e5 634 if (sky2->flags & SKY2_FLAG_AUTO_SPEED)
cd28ab6a
SH
635 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_COMPL);
636 else
637 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);
638}
639
b96936da
SH
640static const u32 phy_power[] = { PCI_Y2_PHY1_POWD, PCI_Y2_PHY2_POWD };
641static const u32 coma_mode[] = { PCI_Y2_PHY1_COMA, PCI_Y2_PHY2_COMA };
642
643static void sky2_phy_power_up(struct sky2_hw *hw, unsigned port)
d3bcfbeb
SH
644{
645 u32 reg1;
d3bcfbeb 646
a40ccc68 647 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
b32f40c4 648 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
b96936da 649 reg1 &= ~phy_power[port];
d3bcfbeb 650
b96936da 651 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
ff35164e
SH
652 reg1 |= coma_mode[port];
653
b32f40c4 654 sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
a40ccc68 655 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
82637e80 656 sky2_pci_read32(hw, PCI_DEV_REG1);
f71eb1a2
SH
657
658 if (hw->chip_id == CHIP_ID_YUKON_FE)
659 gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_ANE);
660 else if (hw->flags & SKY2_HW_ADV_POWER_CTL)
661 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
b96936da 662}
167f53d0 663
b96936da
SH
664static void sky2_phy_power_down(struct sky2_hw *hw, unsigned port)
665{
666 u32 reg1;
db99b988
SH
667 u16 ctrl;
668
669 /* release GPHY Control reset */
670 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
671
672 /* release GMAC reset */
673 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);
674
675 if (hw->flags & SKY2_HW_NEWER_PHY) {
676 /* select page 2 to access MAC control register */
677 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
678
679 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
680 /* allow GMII Power Down */
681 ctrl &= ~PHY_M_MAC_GMIF_PUP;
682 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
683
684 /* set page register back to 0 */
685 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
686 }
687
688 /* setup General Purpose Control Register */
689 gma_write16(hw, port, GM_GP_CTRL,
0ea065e5
SH
690 GM_GPCR_FL_PASS | GM_GPCR_SPEED_100 |
691 GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_FCT_DIS |
692 GM_GPCR_AU_SPD_DIS);
db99b988
SH
693
694 if (hw->chip_id != CHIP_ID_YUKON_EC) {
695 if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
e484d5f5
RW
696 /* select page 2 to access MAC control register */
697 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
db99b988 698
e484d5f5 699 ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
db99b988
SH
700 /* enable Power Down */
701 ctrl |= PHY_M_PC_POW_D_ENA;
702 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
e484d5f5
RW
703
704 /* set page register back to 0 */
705 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
db99b988
SH
706 }
707
708 /* set IEEE compatible Power Down Mode (dev. #4.99) */
709 gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_PDOWN);
710 }
b96936da 711
a40ccc68 712 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
b96936da 713 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
db99b988 714 reg1 |= phy_power[port]; /* set PHY to PowerDown/COMA Mode */
b96936da 715 sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
a40ccc68 716 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
d3bcfbeb
SH
717}
718
1b537565
SH
719/* Force a renegotiation */
720static void sky2_phy_reinit(struct sky2_port *sky2)
721{
e07b1aa8 722 spin_lock_bh(&sky2->phy_lock);
1b537565 723 sky2_phy_init(sky2->hw, sky2->port);
e07b1aa8 724 spin_unlock_bh(&sky2->phy_lock);
1b537565
SH
725}
726
e3173832
SH
727/* Put device in state to listen for Wake On Lan */
728static void sky2_wol_init(struct sky2_port *sky2)
729{
730 struct sky2_hw *hw = sky2->hw;
731 unsigned port = sky2->port;
732 enum flow_control save_mode;
733 u16 ctrl;
734 u32 reg1;
735
736 /* Bring hardware out of reset */
737 sky2_write16(hw, B0_CTST, CS_RST_CLR);
738 sky2_write16(hw, SK_REG(port, GMAC_LINK_CTRL), GMLC_RST_CLR);
739
740 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
741 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);
742
743 /* Force to 10/100
744 * sky2_reset will re-enable on resume
745 */
746 save_mode = sky2->flow_mode;
747 ctrl = sky2->advertising;
748
749 sky2->advertising &= ~(ADVERTISED_1000baseT_Half|ADVERTISED_1000baseT_Full);
750 sky2->flow_mode = FC_NONE;
b96936da
SH
751
752 spin_lock_bh(&sky2->phy_lock);
753 sky2_phy_power_up(hw, port);
754 sky2_phy_init(hw, port);
755 spin_unlock_bh(&sky2->phy_lock);
e3173832
SH
756
757 sky2->flow_mode = save_mode;
758 sky2->advertising = ctrl;
759
760 /* Set GMAC to no flow control and auto update for speed/duplex */
761 gma_write16(hw, port, GM_GP_CTRL,
762 GM_GPCR_FC_TX_DIS|GM_GPCR_TX_ENA|GM_GPCR_RX_ENA|
763 GM_GPCR_DUP_FULL|GM_GPCR_FC_RX_DIS|GM_GPCR_AU_FCT_DIS);
764
765 /* Set WOL address */
766 memcpy_toio(hw->regs + WOL_REGS(port, WOL_MAC_ADDR),
767 sky2->netdev->dev_addr, ETH_ALEN);
768
769 /* Turn on appropriate WOL control bits */
770 sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), WOL_CTL_CLEAR_RESULT);
771 ctrl = 0;
772 if (sky2->wol & WAKE_PHY)
773 ctrl |= WOL_CTL_ENA_PME_ON_LINK_CHG|WOL_CTL_ENA_LINK_CHG_UNIT;
774 else
775 ctrl |= WOL_CTL_DIS_PME_ON_LINK_CHG|WOL_CTL_DIS_LINK_CHG_UNIT;
776
777 if (sky2->wol & WAKE_MAGIC)
778 ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
779 else
a419aef8 780 ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;
e3173832
SH
781
782 ctrl |= WOL_CTL_DIS_PME_ON_PATTERN|WOL_CTL_DIS_PATTERN_UNIT;
783 sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), ctrl);
784
785 /* Turn on legacy PCI-Express PME mode */
b32f40c4 786 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
e3173832 787 reg1 |= PCI_Y2_PME_LEGACY;
b32f40c4 788 sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
e3173832
SH
789
790 /* block receiver */
791 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
792
793}
794
69161611
SH
795static void sky2_set_tx_stfwd(struct sky2_hw *hw, unsigned port)
796{
05745c4a
SH
797 struct net_device *dev = hw->dev[port];
798
ed4d4161
SH
799 if ( (hw->chip_id == CHIP_ID_YUKON_EX &&
800 hw->chip_rev != CHIP_REV_YU_EX_A0) ||
877c8570 801 hw->chip_id >= CHIP_ID_YUKON_FE_P) {
ed4d4161
SH
802 /* Yukon-Extreme B0 and further Extreme devices */
803 /* enable Store & Forward mode for TX */
05745c4a 804
ed4d4161
SH
805 if (dev->mtu <= ETH_DATA_LEN)
806 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
807 TX_JUMBO_DIS | TX_STFW_ENA);
69161611 808
ed4d4161
SH
809 else
810 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
811 TX_JUMBO_ENA| TX_STFW_ENA);
812 } else {
813 if (dev->mtu <= ETH_DATA_LEN)
814 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_ENA);
815 else {
816 /* set Tx GMAC FIFO Almost Empty Threshold */
817 sky2_write32(hw, SK_REG(port, TX_GMF_AE_THR),
818 (ECU_JUMBO_WM << 16) | ECU_AE_THR);
69161611 819
ed4d4161
SH
820 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_DIS);
821
822 /* Can't do offload because of lack of store/forward */
823 dev->features &= ~(NETIF_F_TSO | NETIF_F_SG | NETIF_F_ALL_CSUM);
824 }
69161611
SH
825 }
826}
827
cd28ab6a
SH
828static void sky2_mac_init(struct sky2_hw *hw, unsigned port)
829{
830 struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
831 u16 reg;
25cccecc 832 u32 rx_reg;
cd28ab6a
SH
833 int i;
834 const u8 *addr = hw->dev[port]->dev_addr;
835
f350339c
SH
836 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
837 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
cd28ab6a
SH
838
839 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);
840
793b883e 841 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0 && port == 1) {
cd28ab6a
SH
842 /* WA DEV_472 -- looks like crossed wires on port 2 */
843 /* clear GMAC 1 Control reset */
844 sky2_write8(hw, SK_REG(0, GMAC_CTRL), GMC_RST_CLR);
845 do {
846 sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_SET);
847 sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_CLR);
848 } while (gm_phy_read(hw, 1, PHY_MARV_ID0) != PHY_MARV_ID0_VAL ||
849 gm_phy_read(hw, 1, PHY_MARV_ID1) != PHY_MARV_ID1_Y2 ||
850 gm_phy_read(hw, 1, PHY_MARV_INT_MASK) != 0);
851 }
852
793b883e 853 sky2_read16(hw, SK_REG(port, GMAC_IRQ_SRC));
cd28ab6a 854
2eaba1a2
SH
855 /* Enable Transmit FIFO Underrun */
856 sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), GMAC_DEF_MSK);
857
e07b1aa8 858 spin_lock_bh(&sky2->phy_lock);
b96936da 859 sky2_phy_power_up(hw, port);
cd28ab6a 860 sky2_phy_init(hw, port);
e07b1aa8 861 spin_unlock_bh(&sky2->phy_lock);
cd28ab6a
SH
862
863 /* MIB clear */
864 reg = gma_read16(hw, port, GM_PHY_ADDR);
865 gma_write16(hw, port, GM_PHY_ADDR, reg | GM_PAR_MIB_CLR);
866
43f2f104
SH
867 for (i = GM_MIB_CNT_BASE; i <= GM_MIB_CNT_END; i += 4)
868 gma_read16(hw, port, i);
cd28ab6a
SH
869 gma_write16(hw, port, GM_PHY_ADDR, reg);
870
871 /* transmit control */
872 gma_write16(hw, port, GM_TX_CTRL, TX_COL_THR(TX_COL_DEF));
873
874 /* receive control reg: unicast + multicast + no FCS */
875 gma_write16(hw, port, GM_RX_CTRL,
793b883e 876 GM_RXCR_UCF_ENA | GM_RXCR_CRC_DIS | GM_RXCR_MCF_ENA);
cd28ab6a
SH
877
878 /* transmit flow control */
879 gma_write16(hw, port, GM_TX_FLOW_CTRL, 0xffff);
880
881 /* transmit parameter */
882 gma_write16(hw, port, GM_TX_PARAM,
883 TX_JAM_LEN_VAL(TX_JAM_LEN_DEF) |
884 TX_JAM_IPG_VAL(TX_JAM_IPG_DEF) |
885 TX_IPG_JAM_DATA(TX_IPG_JAM_DEF) |
886 TX_BACK_OFF_LIM(TX_BOF_LIM_DEF));
887
888 /* serial mode register */
889 reg = DATA_BLIND_VAL(DATA_BLIND_DEF) |
6b1a3aef 890 GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
cd28ab6a 891
6b1a3aef 892 if (hw->dev[port]->mtu > ETH_DATA_LEN)
cd28ab6a
SH
893 reg |= GM_SMOD_JUMBO_ENA;
894
895 gma_write16(hw, port, GM_SERIAL_MODE, reg);
896
cd28ab6a
SH
897 /* virtual address for data */
898 gma_set_addr(hw, port, GM_SRC_ADDR_2L, addr);
899
793b883e
SH
900 /* physical address: used for pause frames */
901 gma_set_addr(hw, port, GM_SRC_ADDR_1L, addr);
902
903 /* ignore counter overflows */
cd28ab6a
SH
904 gma_write16(hw, port, GM_TX_IRQ_MSK, 0);
905 gma_write16(hw, port, GM_RX_IRQ_MSK, 0);
906 gma_write16(hw, port, GM_TR_IRQ_MSK, 0);
907
908 /* Configure Rx MAC FIFO */
909 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_CLR);
25cccecc 910 rx_reg = GMF_OPER_ON | GMF_RX_F_FL_ON;
05745c4a
SH
911 if (hw->chip_id == CHIP_ID_YUKON_EX ||
912 hw->chip_id == CHIP_ID_YUKON_FE_P)
25cccecc 913 rx_reg |= GMF_RX_OVER_ON;
69161611 914
25cccecc 915 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), rx_reg);
cd28ab6a 916
798fdd07
SH
917 if (hw->chip_id == CHIP_ID_YUKON_XL) {
918 /* Hardware errata - clear flush mask */
919 sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), 0);
920 } else {
921 /* Flush Rx MAC FIFO on any flow control or error */
922 sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), GMR_FS_ANY_ERR);
923 }
cd28ab6a 924
8df9a876 925 /* Set threshold to 0xa (64 bytes) + 1 to workaround pause bug */
05745c4a
SH
926 reg = RX_GMF_FL_THR_DEF + 1;
927 /* Another magic mystery workaround from sk98lin */
928 if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
929 hw->chip_rev == CHIP_REV_YU_FE2_A0)
930 reg = 0x178;
931 sky2_write16(hw, SK_REG(port, RX_GMF_FL_THR), reg);
cd28ab6a
SH
932
933 /* Configure Tx MAC FIFO */
934 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR);
935 sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON);
5a5b1ea0 936
e0c28116 937 /* On chips without ram buffer, pause is controled by MAC level */
39dbd958 938 if (!(hw->flags & SKY2_HW_RAM_BUFFER)) {
d6b54d24 939 /* Pause threshold is scaled by 8 in bytes */
8e95a202
JP
940 if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
941 hw->chip_rev == CHIP_REV_YU_FE2_A0)
d6b54d24
SH
942 reg = 1568 / 8;
943 else
944 reg = 1024 / 8;
945 sky2_write16(hw, SK_REG(port, RX_GMF_UP_THR), reg);
946 sky2_write16(hw, SK_REG(port, RX_GMF_LP_THR), 768 / 8);
b628ed98 947
69161611 948 sky2_set_tx_stfwd(hw, port);
5a5b1ea0
SH
949 }
950
e970d1f8
SH
951 if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
952 hw->chip_rev == CHIP_REV_YU_FE2_A0) {
953 /* disable dynamic watermark */
954 reg = sky2_read16(hw, SK_REG(port, TX_GMF_EA));
955 reg &= ~TX_DYN_WM_ENA;
956 sky2_write16(hw, SK_REG(port, TX_GMF_EA), reg);
957 }
cd28ab6a
SH
958}
959
67712901
SH
960/* Assign Ram Buffer allocation to queue */
961static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, u32 space)
cd28ab6a 962{
67712901
SH
963 u32 end;
964
965 /* convert from K bytes to qwords used for hw register */
966 start *= 1024/8;
967 space *= 1024/8;
968 end = start + space - 1;
793b883e 969
cd28ab6a
SH
970 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR);
971 sky2_write32(hw, RB_ADDR(q, RB_START), start);
972 sky2_write32(hw, RB_ADDR(q, RB_END), end);
973 sky2_write32(hw, RB_ADDR(q, RB_WP), start);
974 sky2_write32(hw, RB_ADDR(q, RB_RP), start);
975
976 if (q == Q_R1 || q == Q_R2) {
1c28f6ba 977 u32 tp = space - space/4;
793b883e 978
1c28f6ba
SH
979 /* On receive queue's set the thresholds
980 * give receiver priority when > 3/4 full
981 * send pause when down to 2K
982 */
983 sky2_write32(hw, RB_ADDR(q, RB_RX_UTHP), tp);
984 sky2_write32(hw, RB_ADDR(q, RB_RX_LTHP), space/2);
793b883e 985
1c28f6ba
SH
986 tp = space - 2048/8;
987 sky2_write32(hw, RB_ADDR(q, RB_RX_UTPP), tp);
988 sky2_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4);
cd28ab6a
SH
989 } else {
990 /* Enable store & forward on Tx queue's because
991 * Tx FIFO is only 1K on Yukon
992 */
993 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD);
994 }
995
996 sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD);
793b883e 997 sky2_read8(hw, RB_ADDR(q, RB_CTRL));
cd28ab6a
SH
998}
999
cd28ab6a 1000/* Setup Bus Memory Interface */
af4ed7e6 1001static void sky2_qset(struct sky2_hw *hw, u16 q)
cd28ab6a
SH
1002{
1003 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_RESET);
1004 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_OPER_INIT);
1005 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_FIFO_OP_ON);
af4ed7e6 1006 sky2_write32(hw, Q_ADDR(q, Q_WM), BMU_WM_DEFAULT);
cd28ab6a
SH
1007}
1008
cd28ab6a
SH
1009/* Setup prefetch unit registers. This is the interface between
1010 * hardware and driver list elements
1011 */
8cc048e3 1012static void sky2_prefetch_init(struct sky2_hw *hw, u32 qaddr,
d6e74b6b 1013 dma_addr_t addr, u32 last)
cd28ab6a 1014{
cd28ab6a
SH
1015 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
1016 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_CLR);
d6e74b6b
SH
1017 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_HI), upper_32_bits(addr));
1018 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_LO), lower_32_bits(addr));
cd28ab6a
SH
1019 sky2_write16(hw, Y2_QADDR(qaddr, PREF_UNIT_LAST_IDX), last);
1020 sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_OP_ON);
793b883e
SH
1021
1022 sky2_read32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL));
cd28ab6a
SH
1023}
1024
9b289c33 1025static inline struct sky2_tx_le *get_tx_le(struct sky2_port *sky2, u16 *slot)
793b883e 1026{
9b289c33 1027 struct sky2_tx_le *le = sky2->tx_le + *slot;
793b883e 1028
ee5f68fe 1029 *slot = RING_NEXT(*slot, sky2->tx_ring_size);
291ea614 1030 le->ctrl = 0;
793b883e
SH
1031 return le;
1032}
cd28ab6a 1033
88f5f0ca
SH
1034static void tx_init(struct sky2_port *sky2)
1035{
1036 struct sky2_tx_le *le;
1037
1038 sky2->tx_prod = sky2->tx_cons = 0;
1039 sky2->tx_tcpsum = 0;
1040 sky2->tx_last_mss = 0;
1041
9b289c33 1042 le = get_tx_le(sky2, &sky2->tx_prod);
88f5f0ca
SH
1043 le->addr = 0;
1044 le->opcode = OP_ADDR64 | HW_OWNER;
5dce95e5 1045 sky2->tx_last_upper = 0;
88f5f0ca
SH
1046}
1047
290d4de5
SH
1048/* Update chip's next pointer */
1049static inline void sky2_put_idx(struct sky2_hw *hw, unsigned q, u16 idx)
cd28ab6a 1050{
50432cb5 1051 /* Make sure write' to descriptors are complete before we tell hardware */
762c2de2 1052 wmb();
50432cb5
SH
1053 sky2_write16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX), idx);
1054
1055 /* Synchronize I/O on since next processor may write to tail */
1056 mmiowb();
cd28ab6a
SH
1057}
1058
793b883e 1059
cd28ab6a
SH
1060static inline struct sky2_rx_le *sky2_next_rx(struct sky2_port *sky2)
1061{
1062 struct sky2_rx_le *le = sky2->rx_le + sky2->rx_put;
cb5d9547 1063 sky2->rx_put = RING_NEXT(sky2->rx_put, RX_LE_SIZE);
291ea614 1064 le->ctrl = 0;
cd28ab6a
SH
1065 return le;
1066}
1067
14d0263f
SH
1068/* Build description to hardware for one receive segment */
1069static void sky2_rx_add(struct sky2_port *sky2, u8 op,
1070 dma_addr_t map, unsigned len)
cd28ab6a
SH
1071{
1072 struct sky2_rx_le *le;
1073
86c6887e 1074 if (sizeof(dma_addr_t) > sizeof(u32)) {
cd28ab6a 1075 le = sky2_next_rx(sky2);
86c6887e 1076 le->addr = cpu_to_le32(upper_32_bits(map));
cd28ab6a
SH
1077 le->opcode = OP_ADDR64 | HW_OWNER;
1078 }
793b883e 1079
cd28ab6a 1080 le = sky2_next_rx(sky2);
d6e74b6b 1081 le->addr = cpu_to_le32(lower_32_bits(map));
734d1868 1082 le->length = cpu_to_le16(len);
14d0263f 1083 le->opcode = op | HW_OWNER;
cd28ab6a
SH
1084}
1085
14d0263f
SH
1086/* Build description to hardware for one possibly fragmented skb */
1087static void sky2_rx_submit(struct sky2_port *sky2,
1088 const struct rx_ring_info *re)
1089{
1090 int i;
1091
1092 sky2_rx_add(sky2, OP_PACKET, re->data_addr, sky2->rx_data_size);
1093
1094 for (i = 0; i < skb_shinfo(re->skb)->nr_frags; i++)
1095 sky2_rx_add(sky2, OP_BUFFER, re->frag_addr[i], PAGE_SIZE);
1096}
1097
1098
454e6cb6 1099static int sky2_rx_map_skb(struct pci_dev *pdev, struct rx_ring_info *re,
14d0263f
SH
1100 unsigned size)
1101{
1102 struct sk_buff *skb = re->skb;
1103 int i;
1104
1105 re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE);
3fbd9187 1106 if (pci_dma_mapping_error(pdev, re->data_addr))
1107 goto mapping_error;
454e6cb6 1108
14d0263f
SH
1109 pci_unmap_len_set(re, data_size, size);
1110
3fbd9187 1111 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1112 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1113
1114 re->frag_addr[i] = pci_map_page(pdev, frag->page,
1115 frag->page_offset,
1116 frag->size,
14d0263f 1117 PCI_DMA_FROMDEVICE);
3fbd9187 1118
1119 if (pci_dma_mapping_error(pdev, re->frag_addr[i]))
1120 goto map_page_error;
1121 }
454e6cb6 1122 return 0;
3fbd9187 1123
1124map_page_error:
1125 while (--i >= 0) {
1126 pci_unmap_page(pdev, re->frag_addr[i],
1127 skb_shinfo(skb)->frags[i].size,
1128 PCI_DMA_FROMDEVICE);
1129 }
1130
1131 pci_unmap_single(pdev, re->data_addr, pci_unmap_len(re, data_size),
1132 PCI_DMA_FROMDEVICE);
1133
1134mapping_error:
1135 if (net_ratelimit())
1136 dev_warn(&pdev->dev, "%s: rx mapping error\n",
1137 skb->dev->name);
1138 return -EIO;
14d0263f
SH
1139}
1140
1141static void sky2_rx_unmap_skb(struct pci_dev *pdev, struct rx_ring_info *re)
1142{
1143 struct sk_buff *skb = re->skb;
1144 int i;
1145
1146 pci_unmap_single(pdev, re->data_addr, pci_unmap_len(re, data_size),
1147 PCI_DMA_FROMDEVICE);
1148
1149 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1150 pci_unmap_page(pdev, re->frag_addr[i],
1151 skb_shinfo(skb)->frags[i].size,
1152 PCI_DMA_FROMDEVICE);
1153}
793b883e 1154
cd28ab6a
SH
1155/* Tell chip where to start receive checksum.
1156 * Actually has two checksums, but set both same to avoid possible byte
1157 * order problems.
1158 */
793b883e 1159static void rx_set_checksum(struct sky2_port *sky2)
cd28ab6a 1160{
ea76e635 1161 struct sky2_rx_le *le = sky2_next_rx(sky2);
793b883e 1162
ea76e635
SH
1163 le->addr = cpu_to_le32((ETH_HLEN << 16) | ETH_HLEN);
1164 le->ctrl = 0;
1165 le->opcode = OP_TCPSTART | HW_OWNER;
cd28ab6a 1166
ea76e635
SH
1167 sky2_write32(sky2->hw,
1168 Q_ADDR(rxqaddr[sky2->port], Q_CSR),
0ea065e5
SH
1169 (sky2->flags & SKY2_FLAG_RX_CHECKSUM)
1170 ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
cd28ab6a
SH
1171}
1172
6b1a3aef
SH
1173/*
1174 * The RX Stop command will not work for Yukon-2 if the BMU does not
1175 * reach the end of packet and since we can't make sure that we have
1176 * incoming data, we must reset the BMU while it is not doing a DMA
1177 * transfer. Since it is possible that the RX path is still active,
1178 * the RX RAM buffer will be stopped first, so any possible incoming
1179 * data will not trigger a DMA. After the RAM buffer is stopped, the
1180 * BMU is polled until any DMA in progress is ended and only then it
1181 * will be reset.
1182 */
1183static void sky2_rx_stop(struct sky2_port *sky2)
1184{
1185 struct sky2_hw *hw = sky2->hw;
1186 unsigned rxq = rxqaddr[sky2->port];
1187 int i;
1188
1189 /* disable the RAM Buffer receive queue */
1190 sky2_write8(hw, RB_ADDR(rxq, RB_CTRL), RB_DIS_OP_MD);
1191
1192 for (i = 0; i < 0xffff; i++)
1193 if (sky2_read8(hw, RB_ADDR(rxq, Q_RSL))
1194 == sky2_read8(hw, RB_ADDR(rxq, Q_RL)))
1195 goto stopped;
1196
1197 printk(KERN_WARNING PFX "%s: receiver stop failed\n",
1198 sky2->netdev->name);
1199stopped:
1200 sky2_write32(hw, Q_ADDR(rxq, Q_CSR), BMU_RST_SET | BMU_FIFO_RST);
1201
1202 /* reset the Rx prefetch unit */
1203 sky2_write32(hw, Y2_QADDR(rxq, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
3d1454dd 1204 mmiowb();
6b1a3aef 1205}
793b883e 1206
d571b694 1207/* Clean out receive buffer area, assumes receiver hardware stopped */
cd28ab6a
SH
1208static void sky2_rx_clean(struct sky2_port *sky2)
1209{
1210 unsigned i;
1211
1212 memset(sky2->rx_le, 0, RX_LE_BYTES);
793b883e 1213 for (i = 0; i < sky2->rx_pending; i++) {
291ea614 1214 struct rx_ring_info *re = sky2->rx_ring + i;
cd28ab6a
SH
1215
1216 if (re->skb) {
14d0263f 1217 sky2_rx_unmap_skb(sky2->hw->pdev, re);
cd28ab6a
SH
1218 kfree_skb(re->skb);
1219 re->skb = NULL;
1220 }
1221 }
1222}
1223
ef743d33
SH
1224/* Basic MII support */
1225static int sky2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1226{
1227 struct mii_ioctl_data *data = if_mii(ifr);
1228 struct sky2_port *sky2 = netdev_priv(dev);
1229 struct sky2_hw *hw = sky2->hw;
1230 int err = -EOPNOTSUPP;
1231
1232 if (!netif_running(dev))
1233 return -ENODEV; /* Phy still in reset */
1234
d89e1343 1235 switch (cmd) {
ef743d33
SH
1236 case SIOCGMIIPHY:
1237 data->phy_id = PHY_ADDR_MARV;
1238
1239 /* fallthru */
1240 case SIOCGMIIREG: {
1241 u16 val = 0;
91c86df5 1242
e07b1aa8 1243 spin_lock_bh(&sky2->phy_lock);
ef743d33 1244 err = __gm_phy_read(hw, sky2->port, data->reg_num & 0x1f, &val);
e07b1aa8 1245 spin_unlock_bh(&sky2->phy_lock);
91c86df5 1246
ef743d33
SH
1247 data->val_out = val;
1248 break;
1249 }
1250
1251 case SIOCSMIIREG:
e07b1aa8 1252 spin_lock_bh(&sky2->phy_lock);
ef743d33
SH
1253 err = gm_phy_write(hw, sky2->port, data->reg_num & 0x1f,
1254 data->val_in);
e07b1aa8 1255 spin_unlock_bh(&sky2->phy_lock);
ef743d33
SH
1256 break;
1257 }
1258 return err;
1259}
1260
d1f13708 1261#ifdef SKY2_VLAN_TAG_USED
d494eacd 1262static void sky2_set_vlan_mode(struct sky2_hw *hw, u16 port, bool onoff)
d1f13708 1263{
d494eacd 1264 if (onoff) {
3d4e66f5
SH
1265 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
1266 RX_VLAN_STRIP_ON);
1267 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1268 TX_VLAN_TAG_ON);
1269 } else {
1270 sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
1271 RX_VLAN_STRIP_OFF);
1272 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
1273 TX_VLAN_TAG_OFF);
1274 }
d494eacd
SH
1275}
1276
1277static void sky2_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
1278{
1279 struct sky2_port *sky2 = netdev_priv(dev);
1280 struct sky2_hw *hw = sky2->hw;
1281 u16 port = sky2->port;
1282
1283 netif_tx_lock_bh(dev);
1284 napi_disable(&hw->napi);
1285
1286 sky2->vlgrp = grp;
1287 sky2_set_vlan_mode(hw, port, grp != NULL);
d1f13708 1288
d1d08d12 1289 sky2_read32(hw, B0_Y2_SP_LISR);
bea3348e 1290 napi_enable(&hw->napi);
2bb8c262 1291 netif_tx_unlock_bh(dev);
d1f13708
SH
1292}
1293#endif
1294
bd1c6869
SH
1295/* Amount of required worst case padding in rx buffer */
1296static inline unsigned sky2_rx_pad(const struct sky2_hw *hw)
1297{
1298 return (hw->flags & SKY2_HW_RAM_BUFFER) ? 8 : 2;
1299}
1300
82788c7a 1301/*
14d0263f
SH
1302 * Allocate an skb for receiving. If the MTU is large enough
1303 * make the skb non-linear with a fragment list of pages.
82788c7a 1304 */
14d0263f 1305static struct sk_buff *sky2_rx_alloc(struct sky2_port *sky2)
82788c7a
SH
1306{
1307 struct sk_buff *skb;
14d0263f 1308 int i;
82788c7a 1309
724b6942
SH
1310 skb = netdev_alloc_skb(sky2->netdev,
1311 sky2->rx_data_size + sky2_rx_pad(sky2->hw));
bd1c6869
SH
1312 if (!skb)
1313 goto nomem;
1314
39dbd958 1315 if (sky2->hw->flags & SKY2_HW_RAM_BUFFER) {
f03b8654
SH
1316 unsigned char *start;
1317 /*
1318 * Workaround for a bug in FIFO that cause hang
1319 * if the FIFO if the receive buffer is not 64 byte aligned.
1320 * The buffer returned from netdev_alloc_skb is
1321 * aligned except if slab debugging is enabled.
1322 */
f03b8654
SH
1323 start = PTR_ALIGN(skb->data, 8);
1324 skb_reserve(skb, start - skb->data);
bd1c6869 1325 } else
f03b8654 1326 skb_reserve(skb, NET_IP_ALIGN);
14d0263f
SH
1327
1328 for (i = 0; i < sky2->rx_nfrags; i++) {
1329 struct page *page = alloc_page(GFP_ATOMIC);
1330
1331 if (!page)
1332 goto free_partial;
1333 skb_fill_page_desc(skb, i, page, 0, PAGE_SIZE);
82788c7a
SH
1334 }
1335
1336 return skb;
14d0263f
SH
1337free_partial:
1338 kfree_skb(skb);
1339nomem:
1340 return NULL;
82788c7a
SH
1341}
1342
55c9dd35
SH
1343static inline void sky2_rx_update(struct sky2_port *sky2, unsigned rxq)
1344{
1345 sky2_put_idx(sky2->hw, rxq, sky2->rx_put);
1346}
1347
cd28ab6a
SH
1348/*
1349 * Allocate and setup receiver buffer pool.
14d0263f
SH
1350 * Normal case this ends up creating one list element for skb
1351 * in the receive ring. Worst case if using large MTU and each
1352 * allocation falls on a different 64 bit region, that results
1353 * in 6 list elements per ring entry.
1354 * One element is used for checksum enable/disable, and one
1355 * extra to avoid wrap.
cd28ab6a 1356 */
6b1a3aef 1357static int sky2_rx_start(struct sky2_port *sky2)
cd28ab6a 1358{
6b1a3aef 1359 struct sky2_hw *hw = sky2->hw;
14d0263f 1360 struct rx_ring_info *re;
6b1a3aef 1361 unsigned rxq = rxqaddr[sky2->port];
5f06eba4 1362 unsigned i, size, thresh;
cd28ab6a 1363
6b1a3aef 1364 sky2->rx_put = sky2->rx_next = 0;
af4ed7e6 1365 sky2_qset(hw, rxq);
977bdf06 1366
c3905bc4
SH
1367 /* On PCI express lowering the watermark gives better performance */
1368 if (pci_find_capability(hw->pdev, PCI_CAP_ID_EXP))
1369 sky2_write32(hw, Q_ADDR(rxq, Q_WM), BMU_WM_PEX);
1370
1371 /* These chips have no ram buffer?
1372 * MAC Rx RAM Read is controlled by hardware */
8df9a876 1373 if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
8e95a202
JP
1374 (hw->chip_rev == CHIP_REV_YU_EC_U_A1 ||
1375 hw->chip_rev == CHIP_REV_YU_EC_U_B0))
f449c7c1 1376 sky2_write32(hw, Q_ADDR(rxq, Q_TEST), F_M_RX_RAM_DIS);
977bdf06 1377
6b1a3aef
SH
1378 sky2_prefetch_init(hw, rxq, sky2->rx_le_map, RX_LE_SIZE - 1);
1379
ea76e635
SH
1380 if (!(hw->flags & SKY2_HW_NEW_LE))
1381 rx_set_checksum(sky2);
14d0263f
SH
1382
1383 /* Space needed for frame data + headers rounded up */
f957da2a 1384 size = roundup(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8);
14d0263f
SH
1385
1386 /* Stopping point for hardware truncation */
1387 thresh = (size - 8) / sizeof(u32);
1388
5f06eba4 1389 sky2->rx_nfrags = size >> PAGE_SHIFT;
14d0263f
SH
1390 BUG_ON(sky2->rx_nfrags > ARRAY_SIZE(re->frag_addr));
1391
5f06eba4
SH
1392 /* Compute residue after pages */
1393 size -= sky2->rx_nfrags << PAGE_SHIFT;
14d0263f 1394
5f06eba4
SH
1395 /* Optimize to handle small packets and headers */
1396 if (size < copybreak)
1397 size = copybreak;
1398 if (size < ETH_HLEN)
1399 size = ETH_HLEN;
14d0263f 1400
14d0263f
SH
1401 sky2->rx_data_size = size;
1402
1403 /* Fill Rx ring */
793b883e 1404 for (i = 0; i < sky2->rx_pending; i++) {
14d0263f 1405 re = sky2->rx_ring + i;
cd28ab6a 1406
14d0263f 1407 re->skb = sky2_rx_alloc(sky2);
cd28ab6a
SH
1408 if (!re->skb)
1409 goto nomem;
1410
454e6cb6
SH
1411 if (sky2_rx_map_skb(hw->pdev, re, sky2->rx_data_size)) {
1412 dev_kfree_skb(re->skb);
1413 re->skb = NULL;
1414 goto nomem;
1415 }
1416
14d0263f 1417 sky2_rx_submit(sky2, re);
cd28ab6a
SH
1418 }
1419
a1433ac4
SH
1420 /*
1421 * The receiver hangs if it receives frames larger than the
1422 * packet buffer. As a workaround, truncate oversize frames, but
1423 * the register is limited to 9 bits, so if you do frames > 2052
1424 * you better get the MTU right!
1425 */
a1433ac4
SH
1426 if (thresh > 0x1ff)
1427 sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_OFF);
1428 else {
1429 sky2_write16(hw, SK_REG(sky2->port, RX_GMF_TR_THR), thresh);
1430 sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_ON);
1431 }
1432
6b1a3aef 1433 /* Tell chip about available buffers */
55c9dd35 1434 sky2_rx_update(sky2, rxq);
877c8570
SH
1435
1436 if (hw->chip_id == CHIP_ID_YUKON_EX ||
1437 hw->chip_id == CHIP_ID_YUKON_SUPR) {
1438 /*
1439 * Disable flushing of non ASF packets;
1440 * must be done after initializing the BMUs;
1441 * drivers without ASF support should do this too, otherwise
1442 * it may happen that they cannot run on ASF devices;
1443 * remember that the MAC FIFO isn't reset during initialization.
1444 */
1445 sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_MACSEC_FLUSH_OFF);
1446 }
1447
1448 if (hw->chip_id >= CHIP_ID_YUKON_SUPR) {
1449 /* Enable RX Home Address & Routing Header checksum fix */
1450 sky2_write16(hw, SK_REG(sky2->port, RX_GMF_FL_CTRL),
1451 RX_IPV6_SA_MOB_ENA | RX_IPV6_DA_MOB_ENA);
1452
1453 /* Enable TX Home Address & Routing Header checksum fix */
1454 sky2_write32(hw, Q_ADDR(txqaddr[sky2->port], Q_TEST),
1455 TBMU_TEST_HOME_ADD_FIX_EN | TBMU_TEST_ROUTING_ADD_FIX_EN);
1456 }
1457
1458
1459
cd28ab6a
SH
1460 return 0;
1461nomem:
1462 sky2_rx_clean(sky2);
1463 return -ENOMEM;
1464}
1465
90bbebb4
MM
1466static int sky2_alloc_buffers(struct sky2_port *sky2)
1467{
1468 struct sky2_hw *hw = sky2->hw;
1469
1470 /* must be power of 2 */
1471 sky2->tx_le = pci_alloc_consistent(hw->pdev,
1472 sky2->tx_ring_size *
1473 sizeof(struct sky2_tx_le),
1474 &sky2->tx_le_map);
1475 if (!sky2->tx_le)
1476 goto nomem;
1477
1478 sky2->tx_ring = kcalloc(sky2->tx_ring_size, sizeof(struct tx_ring_info),
1479 GFP_KERNEL);
1480 if (!sky2->tx_ring)
1481 goto nomem;
1482
1483 sky2->rx_le = pci_alloc_consistent(hw->pdev, RX_LE_BYTES,
1484 &sky2->rx_le_map);
1485 if (!sky2->rx_le)
1486 goto nomem;
1487 memset(sky2->rx_le, 0, RX_LE_BYTES);
1488
1489 sky2->rx_ring = kcalloc(sky2->rx_pending, sizeof(struct rx_ring_info),
1490 GFP_KERNEL);
1491 if (!sky2->rx_ring)
1492 goto nomem;
1493
1494 return 0;
1495nomem:
1496 return -ENOMEM;
1497}
1498
1499static void sky2_free_buffers(struct sky2_port *sky2)
1500{
1501 struct sky2_hw *hw = sky2->hw;
1502
1503 if (sky2->rx_le) {
1504 pci_free_consistent(hw->pdev, RX_LE_BYTES,
1505 sky2->rx_le, sky2->rx_le_map);
1506 sky2->rx_le = NULL;
1507 }
1508 if (sky2->tx_le) {
1509 pci_free_consistent(hw->pdev,
1510 sky2->tx_ring_size * sizeof(struct sky2_tx_le),
1511 sky2->tx_le, sky2->tx_le_map);
1512 sky2->tx_le = NULL;
1513 }
1514 kfree(sky2->tx_ring);
1515 kfree(sky2->rx_ring);
1516
1517 sky2->tx_ring = NULL;
1518 sky2->rx_ring = NULL;
1519}
1520
cd28ab6a
SH
1521/* Bring up network interface. */
1522static int sky2_up(struct net_device *dev)
1523{
1524 struct sky2_port *sky2 = netdev_priv(dev);
1525 struct sky2_hw *hw = sky2->hw;
1526 unsigned port = sky2->port;
e0c28116 1527 u32 imask, ramsize;
90bbebb4 1528 int cap, err;
843a46f4 1529 struct net_device *otherdev = hw->dev[sky2->port^1];
cd28ab6a 1530
ee7abb04
SH
1531 /*
1532 * On dual port PCI-X card, there is an problem where status
1533 * can be received out of order due to split transactions
843a46f4 1534 */
ee7abb04
SH
1535 if (otherdev && netif_running(otherdev) &&
1536 (cap = pci_find_capability(hw->pdev, PCI_CAP_ID_PCIX))) {
ee7abb04
SH
1537 u16 cmd;
1538
b32f40c4 1539 cmd = sky2_pci_read16(hw, cap + PCI_X_CMD);
ee7abb04 1540 cmd &= ~PCI_X_CMD_MAX_SPLIT;
b32f40c4
SH
1541 sky2_pci_write16(hw, cap + PCI_X_CMD, cmd);
1542
ee7abb04 1543 }
843a46f4 1544
55d7b4e6
SH
1545 netif_carrier_off(dev);
1546
90bbebb4
MM
1547 err = sky2_alloc_buffers(sky2);
1548 if (err)
cd28ab6a 1549 goto err_out;
88f5f0ca
SH
1550
1551 tx_init(sky2);
cd28ab6a 1552
cd28ab6a
SH
1553 sky2_mac_init(hw, port);
1554
e0c28116
SH
1555 /* Register is number of 4K blocks on internal RAM buffer. */
1556 ramsize = sky2_read8(hw, B2_E_0) * 4;
1557 if (ramsize > 0) {
67712901 1558 u32 rxspace;
cd28ab6a 1559
e0c28116 1560 pr_debug(PFX "%s: ram buffer %dK\n", dev->name, ramsize);
67712901
SH
1561 if (ramsize < 16)
1562 rxspace = ramsize / 2;
1563 else
1564 rxspace = 8 + (2*(ramsize - 16))/3;
cd28ab6a 1565
67712901
SH
1566 sky2_ramset(hw, rxqaddr[port], 0, rxspace);
1567 sky2_ramset(hw, txqaddr[port], rxspace, ramsize - rxspace);
1568
1569 /* Make sure SyncQ is disabled */
1570 sky2_write8(hw, RB_ADDR(port == 0 ? Q_XS1 : Q_XS2, RB_CTRL),
1571 RB_RST_SET);
1572 }
793b883e 1573
af4ed7e6 1574 sky2_qset(hw, txqaddr[port]);
5a5b1ea0 1575
69161611
SH
1576 /* This is copied from sk98lin 10.0.5.3; no one tells me about erratta's */
1577 if (hw->chip_id == CHIP_ID_YUKON_EX && hw->chip_rev == CHIP_REV_YU_EX_B0)
1578 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_TEST), F_TX_CHK_AUTO_OFF);
1579
977bdf06 1580 /* Set almost empty threshold */
8e95a202
JP
1581 if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
1582 hw->chip_rev == CHIP_REV_YU_EC_U_A0)
b628ed98 1583 sky2_write16(hw, Q_ADDR(txqaddr[port], Q_AL), ECU_TXFF_LEV);
5a5b1ea0 1584
6b1a3aef 1585 sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map,
ee5f68fe 1586 sky2->tx_ring_size - 1);
cd28ab6a 1587
d494eacd
SH
1588#ifdef SKY2_VLAN_TAG_USED
1589 sky2_set_vlan_mode(hw, port, sky2->vlgrp != NULL);
1590#endif
1591
6b1a3aef 1592 err = sky2_rx_start(sky2);
6de16237 1593 if (err)
cd28ab6a
SH
1594 goto err_out;
1595
cd28ab6a 1596 /* Enable interrupts from phy/mac for port */
e07b1aa8 1597 imask = sky2_read32(hw, B0_IMSK);
f4ea431b 1598 imask |= portirq_msk[port];
e07b1aa8 1599 sky2_write32(hw, B0_IMSK, imask);
1fd82f3c 1600 sky2_read32(hw, B0_IMSK);
e07b1aa8 1601
a11da890
AD
1602 if (netif_msg_ifup(sky2))
1603 printk(KERN_INFO PFX "%s: enabling interface\n", dev->name);
af18d8b8 1604
cd28ab6a
SH
1605 return 0;
1606
1607err_out:
90bbebb4 1608 sky2_free_buffers(sky2);
cd28ab6a
SH
1609 return err;
1610}
1611
793b883e 1612/* Modular subtraction in ring */
ee5f68fe 1613static inline int tx_inuse(const struct sky2_port *sky2)
793b883e 1614{
ee5f68fe 1615 return (sky2->tx_prod - sky2->tx_cons) & (sky2->tx_ring_size - 1);
793b883e 1616}
cd28ab6a 1617
793b883e
SH
1618/* Number of list elements available for next tx */
1619static inline int tx_avail(const struct sky2_port *sky2)
cd28ab6a 1620{
ee5f68fe 1621 return sky2->tx_pending - tx_inuse(sky2);
cd28ab6a
SH
1622}
1623
793b883e 1624/* Estimate of number of transmit list elements required */
28bd181a 1625static unsigned tx_le_req(const struct sk_buff *skb)
cd28ab6a 1626{
793b883e
SH
1627 unsigned count;
1628
07e31637
SH
1629 count = (skb_shinfo(skb)->nr_frags + 1)
1630 * (sizeof(dma_addr_t) / sizeof(u32));
793b883e 1631
89114afd 1632 if (skb_is_gso(skb))
793b883e 1633 ++count;
07e31637
SH
1634 else if (sizeof(dma_addr_t) == sizeof(u32))
1635 ++count; /* possible vlan */
793b883e 1636
84fa7933 1637 if (skb->ip_summed == CHECKSUM_PARTIAL)
793b883e
SH
1638 ++count;
1639
1640 return count;
cd28ab6a
SH
1641}
1642
f6815077 1643static void sky2_tx_unmap(struct pci_dev *pdev, struct tx_ring_info *re)
6b84daca
SH
1644{
1645 if (re->flags & TX_MAP_SINGLE)
1646 pci_unmap_single(pdev, pci_unmap_addr(re, mapaddr),
1647 pci_unmap_len(re, maplen),
1648 PCI_DMA_TODEVICE);
1649 else if (re->flags & TX_MAP_PAGE)
1650 pci_unmap_page(pdev, pci_unmap_addr(re, mapaddr),
1651 pci_unmap_len(re, maplen),
1652 PCI_DMA_TODEVICE);
f6815077 1653 re->flags = 0;
6b84daca
SH
1654}
1655
793b883e
SH
1656/*
1657 * Put one packet in ring for transmit.
1658 * A single packet can generate multiple list elements, and
1659 * the number of ring elements will probably be less than the number
1660 * of list elements used.
1661 */
61357325
SH
1662static netdev_tx_t sky2_xmit_frame(struct sk_buff *skb,
1663 struct net_device *dev)
cd28ab6a
SH
1664{
1665 struct sky2_port *sky2 = netdev_priv(dev);
1666 struct sky2_hw *hw = sky2->hw;
d1f13708 1667 struct sky2_tx_le *le = NULL;
6cdbbdf3 1668 struct tx_ring_info *re;
9b289c33 1669 unsigned i, len;
cd28ab6a 1670 dma_addr_t mapping;
5dce95e5
SH
1671 u32 upper;
1672 u16 slot;
cd28ab6a
SH
1673 u16 mss;
1674 u8 ctrl;
1675
2bb8c262
SH
1676 if (unlikely(tx_avail(sky2) < tx_le_req(skb)))
1677 return NETDEV_TX_BUSY;
cd28ab6a 1678
cd28ab6a
SH
1679 len = skb_headlen(skb);
1680 mapping = pci_map_single(hw->pdev, skb->data, len, PCI_DMA_TODEVICE);
793b883e 1681
454e6cb6
SH
1682 if (pci_dma_mapping_error(hw->pdev, mapping))
1683 goto mapping_error;
1684
9b289c33 1685 slot = sky2->tx_prod;
454e6cb6
SH
1686 if (unlikely(netif_msg_tx_queued(sky2)))
1687 printk(KERN_DEBUG "%s: tx queued, slot %u, len %d\n",
9b289c33 1688 dev->name, slot, skb->len);
454e6cb6 1689
86c6887e 1690 /* Send high bits if needed */
5dce95e5
SH
1691 upper = upper_32_bits(mapping);
1692 if (upper != sky2->tx_last_upper) {
9b289c33 1693 le = get_tx_le(sky2, &slot);
5dce95e5
SH
1694 le->addr = cpu_to_le32(upper);
1695 sky2->tx_last_upper = upper;
793b883e 1696 le->opcode = OP_ADDR64 | HW_OWNER;
793b883e 1697 }
cd28ab6a
SH
1698
1699 /* Check for TCP Segmentation Offload */
7967168c 1700 mss = skb_shinfo(skb)->gso_size;
793b883e 1701 if (mss != 0) {
ea76e635
SH
1702
1703 if (!(hw->flags & SKY2_HW_NEW_LE))
69161611
SH
1704 mss += ETH_HLEN + ip_hdrlen(skb) + tcp_hdrlen(skb);
1705
1706 if (mss != sky2->tx_last_mss) {
9b289c33 1707 le = get_tx_le(sky2, &slot);
69161611 1708 le->addr = cpu_to_le32(mss);
ea76e635
SH
1709
1710 if (hw->flags & SKY2_HW_NEW_LE)
69161611
SH
1711 le->opcode = OP_MSS | HW_OWNER;
1712 else
1713 le->opcode = OP_LRGLEN | HW_OWNER;
e07560cd
SH
1714 sky2->tx_last_mss = mss;
1715 }
cd28ab6a
SH
1716 }
1717
cd28ab6a 1718 ctrl = 0;
d1f13708
SH
1719#ifdef SKY2_VLAN_TAG_USED
1720 /* Add VLAN tag, can piggyback on LRGLEN or ADDR64 */
1721 if (sky2->vlgrp && vlan_tx_tag_present(skb)) {
1722 if (!le) {
9b289c33 1723 le = get_tx_le(sky2, &slot);
f65b138c 1724 le->addr = 0;
d1f13708 1725 le->opcode = OP_VLAN|HW_OWNER;
d1f13708
SH
1726 } else
1727 le->opcode |= OP_VLAN;
1728 le->length = cpu_to_be16(vlan_tx_tag_get(skb));
1729 ctrl |= INS_VLAN;
1730 }
1731#endif
1732
1733 /* Handle TCP checksum offload */
84fa7933 1734 if (skb->ip_summed == CHECKSUM_PARTIAL) {
69161611 1735 /* On Yukon EX (some versions) encoding change. */
ea76e635 1736 if (hw->flags & SKY2_HW_AUTO_TX_SUM)
69161611
SH
1737 ctrl |= CALSUM; /* auto checksum */
1738 else {
1739 const unsigned offset = skb_transport_offset(skb);
1740 u32 tcpsum;
1741
1742 tcpsum = offset << 16; /* sum start */
1743 tcpsum |= offset + skb->csum_offset; /* sum write */
1744
1745 ctrl |= CALSUM | WR_SUM | INIT_SUM | LOCK_SUM;
1746 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1747 ctrl |= UDPTCP;
1748
1749 if (tcpsum != sky2->tx_tcpsum) {
1750 sky2->tx_tcpsum = tcpsum;
1751
9b289c33 1752 le = get_tx_le(sky2, &slot);
69161611
SH
1753 le->addr = cpu_to_le32(tcpsum);
1754 le->length = 0; /* initial checksum value */
1755 le->ctrl = 1; /* one packet */
1756 le->opcode = OP_TCPLISW | HW_OWNER;
1757 }
1d179332 1758 }
cd28ab6a
SH
1759 }
1760
6b84daca
SH
1761 re = sky2->tx_ring + slot;
1762 re->flags = TX_MAP_SINGLE;
1763 pci_unmap_addr_set(re, mapaddr, mapping);
1764 pci_unmap_len_set(re, maplen, len);
1765
9b289c33 1766 le = get_tx_le(sky2, &slot);
d6e74b6b 1767 le->addr = cpu_to_le32(lower_32_bits(mapping));
cd28ab6a
SH
1768 le->length = cpu_to_le16(len);
1769 le->ctrl = ctrl;
793b883e 1770 le->opcode = mss ? (OP_LARGESEND | HW_OWNER) : (OP_PACKET | HW_OWNER);
cd28ab6a 1771
cd28ab6a
SH
1772
1773 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
291ea614 1774 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
cd28ab6a
SH
1775
1776 mapping = pci_map_page(hw->pdev, frag->page, frag->page_offset,
1777 frag->size, PCI_DMA_TODEVICE);
86c6887e 1778
454e6cb6
SH
1779 if (pci_dma_mapping_error(hw->pdev, mapping))
1780 goto mapping_unwind;
1781
5dce95e5
SH
1782 upper = upper_32_bits(mapping);
1783 if (upper != sky2->tx_last_upper) {
9b289c33 1784 le = get_tx_le(sky2, &slot);
5dce95e5
SH
1785 le->addr = cpu_to_le32(upper);
1786 sky2->tx_last_upper = upper;
793b883e 1787 le->opcode = OP_ADDR64 | HW_OWNER;
cd28ab6a
SH
1788 }
1789
6b84daca
SH
1790 re = sky2->tx_ring + slot;
1791 re->flags = TX_MAP_PAGE;
1792 pci_unmap_addr_set(re, mapaddr, mapping);
1793 pci_unmap_len_set(re, maplen, frag->size);
1794
9b289c33 1795 le = get_tx_le(sky2, &slot);
d6e74b6b 1796 le->addr = cpu_to_le32(lower_32_bits(mapping));
cd28ab6a
SH
1797 le->length = cpu_to_le16(frag->size);
1798 le->ctrl = ctrl;
793b883e 1799 le->opcode = OP_BUFFER | HW_OWNER;
cd28ab6a 1800 }
6cdbbdf3 1801
6b84daca 1802 re->skb = skb;
cd28ab6a
SH
1803 le->ctrl |= EOP;
1804
9b289c33
MM
1805 sky2->tx_prod = slot;
1806
97bda706
SH
1807 if (tx_avail(sky2) <= MAX_SKB_TX_LE)
1808 netif_stop_queue(dev);
b19666d9 1809
290d4de5 1810 sky2_put_idx(hw, txqaddr[sky2->port], sky2->tx_prod);
cd28ab6a 1811
cd28ab6a 1812 return NETDEV_TX_OK;
454e6cb6
SH
1813
1814mapping_unwind:
ee5f68fe 1815 for (i = sky2->tx_prod; i != slot; i = RING_NEXT(i, sky2->tx_ring_size)) {
454e6cb6
SH
1816 re = sky2->tx_ring + i;
1817
6b84daca 1818 sky2_tx_unmap(hw->pdev, re);
454e6cb6
SH
1819 }
1820
454e6cb6
SH
1821mapping_error:
1822 if (net_ratelimit())
1823 dev_warn(&hw->pdev->dev, "%s: tx mapping error\n", dev->name);
1824 dev_kfree_skb(skb);
1825 return NETDEV_TX_OK;
cd28ab6a
SH
1826}
1827
cd28ab6a 1828/*
793b883e
SH
1829 * Free ring elements from starting at tx_cons until "done"
1830 *
481cea4a
SH
1831 * NB:
1832 * 1. The hardware will tell us about partial completion of multi-part
291ea614 1833 * buffers so make sure not to free skb to early.
481cea4a
SH
1834 * 2. This may run in parallel start_xmit because the it only
1835 * looks at the tail of the queue of FIFO (tx_cons), not
1836 * the head (tx_prod)
cd28ab6a 1837 */
d11c13e7 1838static void sky2_tx_complete(struct sky2_port *sky2, u16 done)
cd28ab6a 1839{
d11c13e7 1840 struct net_device *dev = sky2->netdev;
291ea614 1841 unsigned idx;
cd28ab6a 1842
ee5f68fe 1843 BUG_ON(done >= sky2->tx_ring_size);
2224795d 1844
291ea614 1845 for (idx = sky2->tx_cons; idx != done;
ee5f68fe 1846 idx = RING_NEXT(idx, sky2->tx_ring_size)) {
291ea614 1847 struct tx_ring_info *re = sky2->tx_ring + idx;
6b84daca 1848 struct sk_buff *skb = re->skb;
291ea614 1849
6b84daca 1850 sky2_tx_unmap(sky2->hw->pdev, re);
bd1c6869 1851
6b84daca 1852 if (skb) {
291ea614
SH
1853 if (unlikely(netif_msg_tx_done(sky2)))
1854 printk(KERN_DEBUG "%s: tx done %u\n",
1855 dev->name, idx);
3cf26753 1856
7138a0f5 1857 dev->stats.tx_packets++;
bd1c6869
SH
1858 dev->stats.tx_bytes += skb->len;
1859
f6815077 1860 re->skb = NULL;
724b6942 1861 dev_kfree_skb_any(skb);
2bf56fe2 1862
ee5f68fe 1863 sky2->tx_next = RING_NEXT(idx, sky2->tx_ring_size);
cd28ab6a 1864 }
793b883e 1865 }
793b883e 1866
291ea614 1867 sky2->tx_cons = idx;
50432cb5
SH
1868 smp_mb();
1869
9db2f1be
JP
1870 /* Wake unless it's detached, and called e.g. from sky2_down() */
1871 if (tx_avail(sky2) > MAX_SKB_TX_LE + 4 && netif_device_present(dev))
cd28ab6a 1872 netif_wake_queue(dev);
cd28ab6a
SH
1873}
1874
264bb4fa 1875static void sky2_tx_reset(struct sky2_hw *hw, unsigned port)
a510996b 1876{
a510996b
MM
1877 /* Disable Force Sync bit and Enable Alloc bit */
1878 sky2_write8(hw, SK_REG(port, TXA_CTRL),
1879 TXA_DIS_FSYNC | TXA_DIS_ALLOC | TXA_STOP_RC);
1880
1881 /* Stop Interval Timer and Limit Counter of Tx Arbiter */
1882 sky2_write32(hw, SK_REG(port, TXA_ITI_INI), 0L);
1883 sky2_write32(hw, SK_REG(port, TXA_LIM_INI), 0L);
1884
1885 /* Reset the PCI FIFO of the async Tx queue */
1886 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR),
1887 BMU_RST_SET | BMU_FIFO_RST);
1888
1889 /* Reset the Tx prefetch units */
1890 sky2_write32(hw, Y2_QADDR(txqaddr[port], PREF_UNIT_CTRL),
1891 PREF_UNIT_RST_SET);
1892
1893 sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL), RB_RST_SET);
1894 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_SET);
1895}
1896
cd28ab6a
SH
1897/* Network shutdown */
1898static int sky2_down(struct net_device *dev)
1899{
1900 struct sky2_port *sky2 = netdev_priv(dev);
1901 struct sky2_hw *hw = sky2->hw;
1902 unsigned port = sky2->port;
1903 u16 ctrl;
e07b1aa8 1904 u32 imask;
cd28ab6a 1905
1b537565
SH
1906 /* Never really got started! */
1907 if (!sky2->tx_le)
1908 return 0;
1909
cd28ab6a
SH
1910 if (netif_msg_ifdown(sky2))
1911 printk(KERN_INFO PFX "%s: disabling interface\n", dev->name);
1912
d104acaf
SH
1913 /* Force flow control off */
1914 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
793b883e 1915
cd28ab6a
SH
1916 /* Stop transmitter */
1917 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_STOP);
1918 sky2_read32(hw, Q_ADDR(txqaddr[port], Q_CSR));
1919
1920 sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL),
793b883e 1921 RB_RST_SET | RB_DIS_OP_MD);
cd28ab6a
SH
1922
1923 ctrl = gma_read16(hw, port, GM_GP_CTRL);
793b883e 1924 ctrl &= ~(GM_GPCR_TX_ENA | GM_GPCR_RX_ENA);
cd28ab6a
SH
1925 gma_write16(hw, port, GM_GP_CTRL, ctrl);
1926
1927 sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
1928
1929 /* Workaround shared GMAC reset */
8e95a202
JP
1930 if (!(hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0 &&
1931 port == 0 && hw->dev[1] && netif_running(hw->dev[1])))
cd28ab6a
SH
1932 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);
1933
cd28ab6a 1934 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
cd28ab6a 1935
6c83504f
SH
1936 /* Force any delayed status interrrupt and NAPI */
1937 sky2_write32(hw, STAT_LEV_TIMER_CNT, 0);
1938 sky2_write32(hw, STAT_TX_TIMER_CNT, 0);
1939 sky2_write32(hw, STAT_ISR_TIMER_CNT, 0);
1940 sky2_read8(hw, STAT_ISR_TIMER_CTRL);
1941
a947a39d
MM
1942 sky2_rx_stop(sky2);
1943
1944 /* Disable port IRQ */
1945 imask = sky2_read32(hw, B0_IMSK);
1946 imask &= ~portirq_msk[port];
1947 sky2_write32(hw, B0_IMSK, imask);
1948 sky2_read32(hw, B0_IMSK);
1949
6c83504f
SH
1950 synchronize_irq(hw->pdev->irq);
1951 napi_synchronize(&hw->napi);
1952
0da6d7b3 1953 spin_lock_bh(&sky2->phy_lock);
b96936da 1954 sky2_phy_power_down(hw, port);
0da6d7b3 1955 spin_unlock_bh(&sky2->phy_lock);
d3bcfbeb 1956
264bb4fa
MM
1957 sky2_tx_reset(hw, port);
1958
481cea4a
SH
1959 /* Free any pending frames stuck in HW queue */
1960 sky2_tx_complete(sky2, sky2->tx_prod);
1961
cd28ab6a
SH
1962 sky2_rx_clean(sky2);
1963
90bbebb4 1964 sky2_free_buffers(sky2);
1b537565 1965
cd28ab6a
SH
1966 return 0;
1967}
1968
1969static u16 sky2_phy_speed(const struct sky2_hw *hw, u16 aux)
1970{
ea76e635 1971 if (hw->flags & SKY2_HW_FIBRE_PHY)
793b883e
SH
1972 return SPEED_1000;
1973
05745c4a
SH
1974 if (!(hw->flags & SKY2_HW_GIGABIT)) {
1975 if (aux & PHY_M_PS_SPEED_100)
1976 return SPEED_100;
1977 else
1978 return SPEED_10;
1979 }
cd28ab6a
SH
1980
1981 switch (aux & PHY_M_PS_SPEED_MSK) {
1982 case PHY_M_PS_SPEED_1000:
1983 return SPEED_1000;
1984 case PHY_M_PS_SPEED_100:
1985 return SPEED_100;
1986 default:
1987 return SPEED_10;
1988 }
1989}
1990
1991static void sky2_link_up(struct sky2_port *sky2)
1992{
1993 struct sky2_hw *hw = sky2->hw;
1994 unsigned port = sky2->port;
1995 u16 reg;
16ad91e1
SH
1996 static const char *fc_name[] = {
1997 [FC_NONE] = "none",
1998 [FC_TX] = "tx",
1999 [FC_RX] = "rx",
2000 [FC_BOTH] = "both",
2001 };
cd28ab6a 2002
cd28ab6a 2003 /* enable Rx/Tx */
2eaba1a2 2004 reg = gma_read16(hw, port, GM_GP_CTRL);
cd28ab6a
SH
2005 reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA;
2006 gma_write16(hw, port, GM_GP_CTRL, reg);
cd28ab6a
SH
2007
2008 gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);
2009
2010 netif_carrier_on(sky2->netdev);
cd28ab6a 2011
75e80683 2012 mod_timer(&hw->watchdog_timer, jiffies + 1);
32c2c300 2013
cd28ab6a 2014 /* Turn on link LED */
793b883e 2015 sky2_write8(hw, SK_REG(port, LNK_LED_REG),
cd28ab6a
SH
2016 LINKLED_ON | LINKLED_BLINK_OFF | LINKLED_LINKSYNC_OFF);
2017
2018 if (netif_msg_link(sky2))
2019 printk(KERN_INFO PFX
d571b694 2020 "%s: Link is up at %d Mbps, %s duplex, flow control %s\n",
cd28ab6a
SH
2021 sky2->netdev->name, sky2->speed,
2022 sky2->duplex == DUPLEX_FULL ? "full" : "half",
16ad91e1 2023 fc_name[sky2->flow_status]);
cd28ab6a
SH
2024}
2025
2026static void sky2_link_down(struct sky2_port *sky2)
2027{
2028 struct sky2_hw *hw = sky2->hw;
2029 unsigned port = sky2->port;
2030 u16 reg;
2031
2032 gm_phy_write(hw, port, PHY_MARV_INT_MASK, 0);
2033
2034 reg = gma_read16(hw, port, GM_GP_CTRL);
2035 reg &= ~(GM_GPCR_RX_ENA | GM_GPCR_TX_ENA);
2036 gma_write16(hw, port, GM_GP_CTRL, reg);
cd28ab6a 2037
cd28ab6a 2038 netif_carrier_off(sky2->netdev);
cd28ab6a 2039
809aaaae 2040 /* Turn off link LED */
cd28ab6a
SH
2041 sky2_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);
2042
2043 if (netif_msg_link(sky2))
2044 printk(KERN_INFO PFX "%s: Link is down.\n", sky2->netdev->name);
2eaba1a2 2045
cd28ab6a
SH
2046 sky2_phy_init(hw, port);
2047}
2048
16ad91e1
SH
2049static enum flow_control sky2_flow(int rx, int tx)
2050{
2051 if (rx)
2052 return tx ? FC_BOTH : FC_RX;
2053 else
2054 return tx ? FC_TX : FC_NONE;
2055}
2056
793b883e
SH
2057static int sky2_autoneg_done(struct sky2_port *sky2, u16 aux)
2058{
2059 struct sky2_hw *hw = sky2->hw;
2060 unsigned port = sky2->port;
da4c1ff4 2061 u16 advert, lpa;
793b883e 2062
da4c1ff4 2063 advert = gm_phy_read(hw, port, PHY_MARV_AUNE_ADV);
793b883e 2064 lpa = gm_phy_read(hw, port, PHY_MARV_AUNE_LP);
793b883e
SH
2065 if (lpa & PHY_M_AN_RF) {
2066 printk(KERN_ERR PFX "%s: remote fault", sky2->netdev->name);
2067 return -1;
2068 }
2069
793b883e
SH
2070 if (!(aux & PHY_M_PS_SPDUP_RES)) {
2071 printk(KERN_ERR PFX "%s: speed/duplex mismatch",
2072 sky2->netdev->name);
2073 return -1;
2074 }
2075
793b883e 2076 sky2->speed = sky2_phy_speed(hw, aux);
7c74ac1c 2077 sky2->duplex = (aux & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
793b883e 2078
da4c1ff4
SH
2079 /* Since the pause result bits seem to in different positions on
2080 * different chips. look at registers.
2081 */
ea76e635 2082 if (hw->flags & SKY2_HW_FIBRE_PHY) {
da4c1ff4
SH
2083 /* Shift for bits in fiber PHY */
2084 advert &= ~(ADVERTISE_PAUSE_CAP|ADVERTISE_PAUSE_ASYM);
2085 lpa &= ~(LPA_PAUSE_CAP|LPA_PAUSE_ASYM);
2086
2087 if (advert & ADVERTISE_1000XPAUSE)
2088 advert |= ADVERTISE_PAUSE_CAP;
2089 if (advert & ADVERTISE_1000XPSE_ASYM)
2090 advert |= ADVERTISE_PAUSE_ASYM;
2091 if (lpa & LPA_1000XPAUSE)
2092 lpa |= LPA_PAUSE_CAP;
2093 if (lpa & LPA_1000XPAUSE_ASYM)
2094 lpa |= LPA_PAUSE_ASYM;
2095 }
793b883e 2096
da4c1ff4
SH
2097 sky2->flow_status = FC_NONE;
2098 if (advert & ADVERTISE_PAUSE_CAP) {
2099 if (lpa & LPA_PAUSE_CAP)
2100 sky2->flow_status = FC_BOTH;
2101 else if (advert & ADVERTISE_PAUSE_ASYM)
2102 sky2->flow_status = FC_RX;
2103 } else if (advert & ADVERTISE_PAUSE_ASYM) {
2104 if ((lpa & LPA_PAUSE_CAP) && (lpa & LPA_PAUSE_ASYM))
2105 sky2->flow_status = FC_TX;
2106 }
793b883e 2107
8e95a202
JP
2108 if (sky2->duplex == DUPLEX_HALF && sky2->speed < SPEED_1000 &&
2109 !(hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX))
16ad91e1 2110 sky2->flow_status = FC_NONE;
2eaba1a2 2111
da4c1ff4 2112 if (sky2->flow_status & FC_TX)
793b883e
SH
2113 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
2114 else
2115 sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
2116
2117 return 0;
2118}
cd28ab6a 2119
e07b1aa8
SH
2120/* Interrupt from PHY */
2121static void sky2_phy_intr(struct sky2_hw *hw, unsigned port)
cd28ab6a 2122{
e07b1aa8
SH
2123 struct net_device *dev = hw->dev[port];
2124 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a
SH
2125 u16 istatus, phystat;
2126
ebc646f6
SH
2127 if (!netif_running(dev))
2128 return;
2129
e07b1aa8
SH
2130 spin_lock(&sky2->phy_lock);
2131 istatus = gm_phy_read(hw, port, PHY_MARV_INT_STAT);
2132 phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT);
2133
cd28ab6a
SH
2134 if (netif_msg_intr(sky2))
2135 printk(KERN_INFO PFX "%s: phy interrupt status 0x%x 0x%x\n",
2136 sky2->netdev->name, istatus, phystat);
2137
0ea065e5 2138 if (istatus & PHY_M_IS_AN_COMPL) {
793b883e
SH
2139 if (sky2_autoneg_done(sky2, phystat) == 0)
2140 sky2_link_up(sky2);
2141 goto out;
2142 }
cd28ab6a 2143
793b883e
SH
2144 if (istatus & PHY_M_IS_LSP_CHANGE)
2145 sky2->speed = sky2_phy_speed(hw, phystat);
cd28ab6a 2146
793b883e
SH
2147 if (istatus & PHY_M_IS_DUP_CHANGE)
2148 sky2->duplex =
2149 (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
cd28ab6a 2150
793b883e
SH
2151 if (istatus & PHY_M_IS_LST_CHANGE) {
2152 if (phystat & PHY_M_PS_LINK_UP)
cd28ab6a 2153 sky2_link_up(sky2);
793b883e
SH
2154 else
2155 sky2_link_down(sky2);
cd28ab6a 2156 }
793b883e 2157out:
e07b1aa8 2158 spin_unlock(&sky2->phy_lock);
cd28ab6a
SH
2159}
2160
0f5aac70
SH
2161/* Special quick link interrupt (Yukon-2 Optima only) */
2162static void sky2_qlink_intr(struct sky2_hw *hw)
2163{
2164 struct sky2_port *sky2 = netdev_priv(hw->dev[0]);
2165 u32 imask;
2166 u16 phy;
2167
2168 /* disable irq */
2169 imask = sky2_read32(hw, B0_IMSK);
2170 imask &= ~Y2_IS_PHY_QLNK;
2171 sky2_write32(hw, B0_IMSK, imask);
2172
2173 /* reset PHY Link Detect */
2174 phy = sky2_pci_read16(hw, PSM_CONFIG_REG4);
a40ccc68 2175 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
0f5aac70 2176 sky2_pci_write16(hw, PSM_CONFIG_REG4, phy | 1);
a40ccc68 2177 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
0f5aac70
SH
2178
2179 sky2_link_up(sky2);
2180}
2181
62335ab0 2182/* Transmit timeout is only called if we are running, carrier is up
302d1252
SH
2183 * and tx queue is full (stopped).
2184 */
cd28ab6a
SH
2185static void sky2_tx_timeout(struct net_device *dev)
2186{
2187 struct sky2_port *sky2 = netdev_priv(dev);
8cc048e3 2188 struct sky2_hw *hw = sky2->hw;
cd28ab6a
SH
2189
2190 if (netif_msg_timer(sky2))
2191 printk(KERN_ERR PFX "%s: tx timeout\n", dev->name);
2192
8f24664d 2193 printk(KERN_DEBUG PFX "%s: transmit ring %u .. %u report=%u done=%u\n",
62335ab0
SH
2194 dev->name, sky2->tx_cons, sky2->tx_prod,
2195 sky2_read16(hw, sky2->port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX),
2196 sky2_read16(hw, Q_ADDR(txqaddr[sky2->port], Q_DONE)));
8f24664d 2197
81906791
SH
2198 /* can't restart safely under softirq */
2199 schedule_work(&hw->restart_work);
cd28ab6a
SH
2200}
2201
2202static int sky2_change_mtu(struct net_device *dev, int new_mtu)
2203{
6b1a3aef
SH
2204 struct sky2_port *sky2 = netdev_priv(dev);
2205 struct sky2_hw *hw = sky2->hw;
b628ed98 2206 unsigned port = sky2->port;
6b1a3aef
SH
2207 int err;
2208 u16 ctl, mode;
e07b1aa8 2209 u32 imask;
cd28ab6a
SH
2210
2211 if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU)
2212 return -EINVAL;
2213
05745c4a
SH
2214 if (new_mtu > ETH_DATA_LEN &&
2215 (hw->chip_id == CHIP_ID_YUKON_FE ||
2216 hw->chip_id == CHIP_ID_YUKON_FE_P))
d2adf4f6
SH
2217 return -EINVAL;
2218
6b1a3aef
SH
2219 if (!netif_running(dev)) {
2220 dev->mtu = new_mtu;
2221 return 0;
2222 }
2223
e07b1aa8 2224 imask = sky2_read32(hw, B0_IMSK);
6b1a3aef
SH
2225 sky2_write32(hw, B0_IMSK, 0);
2226
018d1c66
SH
2227 dev->trans_start = jiffies; /* prevent tx timeout */
2228 netif_stop_queue(dev);
bea3348e 2229 napi_disable(&hw->napi);
018d1c66 2230
e07b1aa8
SH
2231 synchronize_irq(hw->pdev->irq);
2232
39dbd958 2233 if (!(hw->flags & SKY2_HW_RAM_BUFFER))
69161611 2234 sky2_set_tx_stfwd(hw, port);
b628ed98
SH
2235
2236 ctl = gma_read16(hw, port, GM_GP_CTRL);
2237 gma_write16(hw, port, GM_GP_CTRL, ctl & ~GM_GPCR_RX_ENA);
6b1a3aef
SH
2238 sky2_rx_stop(sky2);
2239 sky2_rx_clean(sky2);
cd28ab6a
SH
2240
2241 dev->mtu = new_mtu;
14d0263f 2242
6b1a3aef
SH
2243 mode = DATA_BLIND_VAL(DATA_BLIND_DEF) |
2244 GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
2245
2246 if (dev->mtu > ETH_DATA_LEN)
2247 mode |= GM_SMOD_JUMBO_ENA;
2248
b628ed98 2249 gma_write16(hw, port, GM_SERIAL_MODE, mode);
cd28ab6a 2250
b628ed98 2251 sky2_write8(hw, RB_ADDR(rxqaddr[port], RB_CTRL), RB_ENA_OP_MD);
cd28ab6a 2252
6b1a3aef 2253 err = sky2_rx_start(sky2);
e07b1aa8 2254 sky2_write32(hw, B0_IMSK, imask);
018d1c66 2255
d1d08d12 2256 sky2_read32(hw, B0_Y2_SP_LISR);
bea3348e
SH
2257 napi_enable(&hw->napi);
2258
1b537565
SH
2259 if (err)
2260 dev_close(dev);
2261 else {
b628ed98 2262 gma_write16(hw, port, GM_GP_CTRL, ctl);
1b537565 2263
1b537565
SH
2264 netif_wake_queue(dev);
2265 }
2266
cd28ab6a
SH
2267 return err;
2268}
2269
14d0263f
SH
2270/* For small just reuse existing skb for next receive */
2271static struct sk_buff *receive_copy(struct sky2_port *sky2,
2272 const struct rx_ring_info *re,
2273 unsigned length)
2274{
2275 struct sk_buff *skb;
2276
89d71a66 2277 skb = netdev_alloc_skb_ip_align(sky2->netdev, length);
14d0263f 2278 if (likely(skb)) {
14d0263f
SH
2279 pci_dma_sync_single_for_cpu(sky2->hw->pdev, re->data_addr,
2280 length, PCI_DMA_FROMDEVICE);
d626f62b 2281 skb_copy_from_linear_data(re->skb, skb->data, length);
14d0263f
SH
2282 skb->ip_summed = re->skb->ip_summed;
2283 skb->csum = re->skb->csum;
2284 pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr,
2285 length, PCI_DMA_FROMDEVICE);
2286 re->skb->ip_summed = CHECKSUM_NONE;
489b10c1 2287 skb_put(skb, length);
14d0263f
SH
2288 }
2289 return skb;
2290}
2291
2292/* Adjust length of skb with fragments to match received data */
2293static void skb_put_frags(struct sk_buff *skb, unsigned int hdr_space,
2294 unsigned int length)
2295{
2296 int i, num_frags;
2297 unsigned int size;
2298
2299 /* put header into skb */
2300 size = min(length, hdr_space);
2301 skb->tail += size;
2302 skb->len += size;
2303 length -= size;
2304
2305 num_frags = skb_shinfo(skb)->nr_frags;
2306 for (i = 0; i < num_frags; i++) {
2307 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2308
2309 if (length == 0) {
2310 /* don't need this page */
2311 __free_page(frag->page);
2312 --skb_shinfo(skb)->nr_frags;
2313 } else {
2314 size = min(length, (unsigned) PAGE_SIZE);
2315
2316 frag->size = size;
2317 skb->data_len += size;
2318 skb->truesize += size;
2319 skb->len += size;
2320 length -= size;
2321 }
2322 }
2323}
2324
2325/* Normal packet - take skb from ring element and put in a new one */
2326static struct sk_buff *receive_new(struct sky2_port *sky2,
2327 struct rx_ring_info *re,
2328 unsigned int length)
2329{
3fbd9187 2330 struct sk_buff *skb;
2331 struct rx_ring_info nre;
14d0263f
SH
2332 unsigned hdr_space = sky2->rx_data_size;
2333
3fbd9187 2334 nre.skb = sky2_rx_alloc(sky2);
2335 if (unlikely(!nre.skb))
2336 goto nobuf;
2337
2338 if (sky2_rx_map_skb(sky2->hw->pdev, &nre, hdr_space))
2339 goto nomap;
14d0263f
SH
2340
2341 skb = re->skb;
2342 sky2_rx_unmap_skb(sky2->hw->pdev, re);
14d0263f 2343 prefetch(skb->data);
3fbd9187 2344 *re = nre;
14d0263f
SH
2345
2346 if (skb_shinfo(skb)->nr_frags)
2347 skb_put_frags(skb, hdr_space, length);
2348 else
489b10c1 2349 skb_put(skb, length);
14d0263f 2350 return skb;
3fbd9187 2351
2352nomap:
2353 dev_kfree_skb(nre.skb);
2354nobuf:
2355 return NULL;
14d0263f
SH
2356}
2357
cd28ab6a
SH
2358/*
2359 * Receive one packet.
d571b694 2360 * For larger packets, get new buffer.
cd28ab6a 2361 */
497d7c86 2362static struct sk_buff *sky2_receive(struct net_device *dev,
cd28ab6a
SH
2363 u16 length, u32 status)
2364{
497d7c86 2365 struct sky2_port *sky2 = netdev_priv(dev);
291ea614 2366 struct rx_ring_info *re = sky2->rx_ring + sky2->rx_next;
79e57d32 2367 struct sk_buff *skb = NULL;
d6532232
SH
2368 u16 count = (status & GMR_FS_LEN) >> 16;
2369
2370#ifdef SKY2_VLAN_TAG_USED
2371 /* Account for vlan tag */
2372 if (sky2->vlgrp && (status & GMR_FS_VLAN))
2373 count -= VLAN_HLEN;
2374#endif
cd28ab6a
SH
2375
2376 if (unlikely(netif_msg_rx_status(sky2)))
2377 printk(KERN_DEBUG PFX "%s: rx slot %u status 0x%x len %d\n",
497d7c86 2378 dev->name, sky2->rx_next, status, length);
cd28ab6a 2379
793b883e 2380 sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending;
d70cd51a 2381 prefetch(sky2->rx_ring + sky2->rx_next);
cd28ab6a 2382
3b12e014
SH
2383 /* This chip has hardware problems that generates bogus status.
2384 * So do only marginal checking and expect higher level protocols
2385 * to handle crap frames.
2386 */
2387 if (sky2->hw->chip_id == CHIP_ID_YUKON_FE_P &&
2388 sky2->hw->chip_rev == CHIP_REV_YU_FE2_A0 &&
2389 length != count)
2390 goto okay;
2391
42eeea01 2392 if (status & GMR_FS_ANY_ERR)
cd28ab6a
SH
2393 goto error;
2394
42eeea01
SH
2395 if (!(status & GMR_FS_RX_OK))
2396 goto resubmit;
2397
d6532232
SH
2398 /* if length reported by DMA does not match PHY, packet was truncated */
2399 if (length != count)
3b12e014 2400 goto len_error;
71749531 2401
3b12e014 2402okay:
14d0263f
SH
2403 if (length < copybreak)
2404 skb = receive_copy(sky2, re, length);
2405 else
2406 skb = receive_new(sky2, re, length);
90c30335
SH
2407
2408 dev->stats.rx_dropped += (skb == NULL);
2409
793b883e 2410resubmit:
14d0263f 2411 sky2_rx_submit(sky2, re);
79e57d32 2412
cd28ab6a
SH
2413 return skb;
2414
3b12e014 2415len_error:
71749531
SH
2416 /* Truncation of overlength packets
2417 causes PHY length to not match MAC length */
7138a0f5 2418 ++dev->stats.rx_length_errors;
d6532232 2419 if (netif_msg_rx_err(sky2) && net_ratelimit())
3b12e014
SH
2420 pr_info(PFX "%s: rx length error: status %#x length %d\n",
2421 dev->name, status, length);
d6532232 2422 goto resubmit;
71749531 2423
cd28ab6a 2424error:
7138a0f5 2425 ++dev->stats.rx_errors;
b6d77734 2426 if (status & GMR_FS_RX_FF_OV) {
7138a0f5 2427 dev->stats.rx_over_errors++;
b6d77734
SH
2428 goto resubmit;
2429 }
6e15b712 2430
3be92a70 2431 if (netif_msg_rx_err(sky2) && net_ratelimit())
cd28ab6a 2432 printk(KERN_INFO PFX "%s: rx error, status 0x%x length %d\n",
497d7c86 2433 dev->name, status, length);
793b883e
SH
2434
2435 if (status & (GMR_FS_LONG_ERR | GMR_FS_UN_SIZE))
7138a0f5 2436 dev->stats.rx_length_errors++;
cd28ab6a 2437 if (status & GMR_FS_FRAGMENT)
7138a0f5 2438 dev->stats.rx_frame_errors++;
cd28ab6a 2439 if (status & GMR_FS_CRC_ERR)
7138a0f5 2440 dev->stats.rx_crc_errors++;
79e57d32 2441
793b883e 2442 goto resubmit;
cd28ab6a
SH
2443}
2444
e07b1aa8
SH
2445/* Transmit complete */
2446static inline void sky2_tx_done(struct net_device *dev, u16 last)
13b97b74 2447{
e07b1aa8 2448 struct sky2_port *sky2 = netdev_priv(dev);
302d1252 2449
49d4b8ba 2450 if (netif_running(dev))
e07b1aa8 2451 sky2_tx_complete(sky2, last);
cd28ab6a
SH
2452}
2453
37e5a243
SH
2454static inline void sky2_skb_rx(const struct sky2_port *sky2,
2455 u32 status, struct sk_buff *skb)
2456{
2457#ifdef SKY2_VLAN_TAG_USED
2458 u16 vlan_tag = be16_to_cpu(sky2->rx_tag);
2459 if (sky2->vlgrp && (status & GMR_FS_VLAN)) {
2460 if (skb->ip_summed == CHECKSUM_NONE)
2461 vlan_hwaccel_receive_skb(skb, sky2->vlgrp, vlan_tag);
2462 else
2463 vlan_gro_receive(&sky2->hw->napi, sky2->vlgrp,
2464 vlan_tag, skb);
2465 return;
2466 }
2467#endif
2468 if (skb->ip_summed == CHECKSUM_NONE)
2469 netif_receive_skb(skb);
2470 else
2471 napi_gro_receive(&sky2->hw->napi, skb);
2472}
2473
bf15fe99
SH
2474static inline void sky2_rx_done(struct sky2_hw *hw, unsigned port,
2475 unsigned packets, unsigned bytes)
2476{
2477 if (packets) {
2478 struct net_device *dev = hw->dev[port];
2479
2480 dev->stats.rx_packets += packets;
2481 dev->stats.rx_bytes += bytes;
2482 dev->last_rx = jiffies;
2483 sky2_rx_update(netdev_priv(dev), rxqaddr[port]);
2484 }
2485}
2486
e07b1aa8 2487/* Process status response ring */
26691830 2488static int sky2_status_intr(struct sky2_hw *hw, int to_do, u16 idx)
cd28ab6a 2489{
e07b1aa8 2490 int work_done = 0;
bf15fe99
SH
2491 unsigned int total_bytes[2] = { 0 };
2492 unsigned int total_packets[2] = { 0 };
a8fd6266 2493
af2a58ac 2494 rmb();
26691830 2495 do {
55c9dd35 2496 struct sky2_port *sky2;
13210ce5 2497 struct sky2_status_le *le = hw->st_le + hw->st_idx;
ab5adecb 2498 unsigned port;
13210ce5 2499 struct net_device *dev;
cd28ab6a 2500 struct sk_buff *skb;
cd28ab6a
SH
2501 u32 status;
2502 u16 length;
ab5adecb
SH
2503 u8 opcode = le->opcode;
2504
2505 if (!(opcode & HW_OWNER))
2506 break;
cd28ab6a 2507
cb5d9547 2508 hw->st_idx = RING_NEXT(hw->st_idx, STATUS_RING_SIZE);
bea86103 2509
ab5adecb 2510 port = le->css & CSS_LINK_BIT;
69161611 2511 dev = hw->dev[port];
13210ce5 2512 sky2 = netdev_priv(dev);
f65b138c
SH
2513 length = le16_to_cpu(le->length);
2514 status = le32_to_cpu(le->status);
cd28ab6a 2515
ab5adecb
SH
2516 le->opcode = 0;
2517 switch (opcode & ~HW_OWNER) {
cd28ab6a 2518 case OP_RXSTAT:
bf15fe99
SH
2519 total_packets[port]++;
2520 total_bytes[port] += length;
90c30335 2521
497d7c86 2522 skb = sky2_receive(dev, length, status);
90c30335 2523 if (!skb)
55c9dd35 2524 break;
13210ce5 2525
69161611 2526 /* This chip reports checksum status differently */
05745c4a 2527 if (hw->flags & SKY2_HW_NEW_LE) {
0ea065e5 2528 if ((sky2->flags & SKY2_FLAG_RX_CHECKSUM) &&
69161611
SH
2529 (le->css & (CSS_ISIPV4 | CSS_ISIPV6)) &&
2530 (le->css & CSS_TCPUDPCSOK))
2531 skb->ip_summed = CHECKSUM_UNNECESSARY;
2532 else
2533 skb->ip_summed = CHECKSUM_NONE;
2534 }
2535
13210ce5 2536 skb->protocol = eth_type_trans(skb, dev);
13210ce5 2537
37e5a243 2538 sky2_skb_rx(sky2, status, skb);
13210ce5 2539
22e11703 2540 /* Stop after net poll weight */
13210ce5
SH
2541 if (++work_done >= to_do)
2542 goto exit_loop;
cd28ab6a
SH
2543 break;
2544
d1f13708
SH
2545#ifdef SKY2_VLAN_TAG_USED
2546 case OP_RXVLAN:
2547 sky2->rx_tag = length;
2548 break;
2549
2550 case OP_RXCHKSVLAN:
2551 sky2->rx_tag = length;
2552 /* fall through */
2553#endif
cd28ab6a 2554 case OP_RXCHKS:
0ea065e5 2555 if (!(sky2->flags & SKY2_FLAG_RX_CHECKSUM))
87418307
SH
2556 break;
2557
05745c4a
SH
2558 /* If this happens then driver assuming wrong format */
2559 if (unlikely(hw->flags & SKY2_HW_NEW_LE)) {
2560 if (net_ratelimit())
2561 printk(KERN_NOTICE "%s: unexpected"
2562 " checksum status\n",
2563 dev->name);
69161611 2564 break;
05745c4a 2565 }
69161611 2566
87418307
SH
2567 /* Both checksum counters are programmed to start at
2568 * the same offset, so unless there is a problem they
2569 * should match. This failure is an early indication that
2570 * hardware receive checksumming won't work.
2571 */
2572 if (likely(status >> 16 == (status & 0xffff))) {
2573 skb = sky2->rx_ring[sky2->rx_next].skb;
2574 skb->ip_summed = CHECKSUM_COMPLETE;
b9389796 2575 skb->csum = le16_to_cpu(status);
87418307
SH
2576 } else {
2577 printk(KERN_NOTICE PFX "%s: hardware receive "
2578 "checksum problem (status = %#x)\n",
2579 dev->name, status);
0ea065e5
SH
2580 sky2->flags &= ~SKY2_FLAG_RX_CHECKSUM;
2581
87418307 2582 sky2_write32(sky2->hw,
69161611 2583 Q_ADDR(rxqaddr[port], Q_CSR),
87418307
SH
2584 BMU_DIS_RX_CHKSUM);
2585 }
cd28ab6a
SH
2586 break;
2587
2588 case OP_TXINDEXLE:
13b97b74 2589 /* TX index reports status for both ports */
f55925d7 2590 sky2_tx_done(hw->dev[0], status & 0xfff);
e07b1aa8
SH
2591 if (hw->dev[1])
2592 sky2_tx_done(hw->dev[1],
2593 ((status >> 24) & 0xff)
2594 | (u16)(length & 0xf) << 8);
cd28ab6a
SH
2595 break;
2596
cd28ab6a
SH
2597 default:
2598 if (net_ratelimit())
793b883e 2599 printk(KERN_WARNING PFX
ab5adecb 2600 "unknown status opcode 0x%x\n", opcode);
cd28ab6a 2601 }
26691830 2602 } while (hw->st_idx != idx);
cd28ab6a 2603
fe2a24df
SH
2604 /* Fully processed status ring so clear irq */
2605 sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);
2606
13210ce5 2607exit_loop:
bf15fe99
SH
2608 sky2_rx_done(hw, 0, total_packets[0], total_bytes[0]);
2609 sky2_rx_done(hw, 1, total_packets[1], total_bytes[1]);
22e11703 2610
e07b1aa8 2611 return work_done;
cd28ab6a
SH
2612}
2613
2614static void sky2_hw_error(struct sky2_hw *hw, unsigned port, u32 status)
2615{
2616 struct net_device *dev = hw->dev[port];
2617
3be92a70
SH
2618 if (net_ratelimit())
2619 printk(KERN_INFO PFX "%s: hw error interrupt status 0x%x\n",
2620 dev->name, status);
cd28ab6a
SH
2621
2622 if (status & Y2_IS_PAR_RD1) {
3be92a70
SH
2623 if (net_ratelimit())
2624 printk(KERN_ERR PFX "%s: ram data read parity error\n",
2625 dev->name);
cd28ab6a
SH
2626 /* Clear IRQ */
2627 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_RD_PERR);
2628 }
2629
2630 if (status & Y2_IS_PAR_WR1) {
3be92a70
SH
2631 if (net_ratelimit())
2632 printk(KERN_ERR PFX "%s: ram data write parity error\n",
2633 dev->name);
cd28ab6a
SH
2634
2635 sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_WR_PERR);
2636 }
2637
2638 if (status & Y2_IS_PAR_MAC1) {
3be92a70
SH
2639 if (net_ratelimit())
2640 printk(KERN_ERR PFX "%s: MAC parity error\n", dev->name);
cd28ab6a
SH
2641 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_PE);
2642 }
2643
2644 if (status & Y2_IS_PAR_RX1) {
3be92a70
SH
2645 if (net_ratelimit())
2646 printk(KERN_ERR PFX "%s: RX parity error\n", dev->name);
cd28ab6a
SH
2647 sky2_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), BMU_CLR_IRQ_PAR);
2648 }
2649
2650 if (status & Y2_IS_TCP_TXA1) {
3be92a70
SH
2651 if (net_ratelimit())
2652 printk(KERN_ERR PFX "%s: TCP segmentation error\n",
2653 dev->name);
cd28ab6a
SH
2654 sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_CLR_IRQ_TCP);
2655 }
2656}
2657
2658static void sky2_hw_intr(struct sky2_hw *hw)
2659{
555382cb 2660 struct pci_dev *pdev = hw->pdev;
cd28ab6a 2661 u32 status = sky2_read32(hw, B0_HWE_ISRC);
555382cb
SH
2662 u32 hwmsk = sky2_read32(hw, B0_HWE_IMSK);
2663
2664 status &= hwmsk;
cd28ab6a 2665
793b883e 2666 if (status & Y2_IS_TIST_OV)
cd28ab6a 2667 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
2668
2669 if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) {
793b883e
SH
2670 u16 pci_err;
2671
a40ccc68 2672 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
b32f40c4 2673 pci_err = sky2_pci_read16(hw, PCI_STATUS);
3be92a70 2674 if (net_ratelimit())
555382cb 2675 dev_err(&pdev->dev, "PCI hardware error (0x%x)\n",
b02a9258 2676 pci_err);
cd28ab6a 2677
b32f40c4 2678 sky2_pci_write16(hw, PCI_STATUS,
167f53d0 2679 pci_err | PCI_STATUS_ERROR_BITS);
a40ccc68 2680 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
cd28ab6a
SH
2681 }
2682
2683 if (status & Y2_IS_PCI_EXP) {
d571b694 2684 /* PCI-Express uncorrectable Error occurred */
555382cb 2685 u32 err;
cd28ab6a 2686
a40ccc68 2687 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
7782c8c4
SH
2688 err = sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
2689 sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS,
2690 0xfffffffful);
3be92a70 2691 if (net_ratelimit())
555382cb 2692 dev_err(&pdev->dev, "PCI Express error (0x%x)\n", err);
cf06ffb4 2693
7782c8c4 2694 sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
a40ccc68 2695 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
cd28ab6a
SH
2696 }
2697
2698 if (status & Y2_HWE_L1_MASK)
2699 sky2_hw_error(hw, 0, status);
2700 status >>= 8;
2701 if (status & Y2_HWE_L1_MASK)
2702 sky2_hw_error(hw, 1, status);
2703}
2704
2705static void sky2_mac_intr(struct sky2_hw *hw, unsigned port)
2706{
2707 struct net_device *dev = hw->dev[port];
2708 struct sky2_port *sky2 = netdev_priv(dev);
2709 u8 status = sky2_read8(hw, SK_REG(port, GMAC_IRQ_SRC));
2710
2711 if (netif_msg_intr(sky2))
2712 printk(KERN_INFO PFX "%s: mac interrupt status 0x%x\n",
2713 dev->name, status);
2714
a3caeada
SH
2715 if (status & GM_IS_RX_CO_OV)
2716 gma_read16(hw, port, GM_RX_IRQ_SRC);
2717
2718 if (status & GM_IS_TX_CO_OV)
2719 gma_read16(hw, port, GM_TX_IRQ_SRC);
2720
cd28ab6a 2721 if (status & GM_IS_RX_FF_OR) {
7138a0f5 2722 ++dev->stats.rx_fifo_errors;
cd28ab6a
SH
2723 sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
2724 }
2725
2726 if (status & GM_IS_TX_FF_UR) {
7138a0f5 2727 ++dev->stats.tx_fifo_errors;
cd28ab6a
SH
2728 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
2729 }
cd28ab6a
SH
2730}
2731
40b01727 2732/* This should never happen it is a bug. */
c119731d 2733static void sky2_le_error(struct sky2_hw *hw, unsigned port, u16 q)
d257924e
SH
2734{
2735 struct net_device *dev = hw->dev[port];
c119731d 2736 u16 idx = sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_GET_IDX));
d257924e 2737
c119731d
SH
2738 dev_err(&hw->pdev->dev, PFX
2739 "%s: descriptor error q=%#x get=%u put=%u\n",
2740 dev->name, (unsigned) q, (unsigned) idx,
2741 (unsigned) sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX)));
d257924e 2742
40b01727 2743 sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_IRQ_CHK);
d257924e 2744}
cd28ab6a 2745
75e80683
SH
2746static int sky2_rx_hung(struct net_device *dev)
2747{
2748 struct sky2_port *sky2 = netdev_priv(dev);
2749 struct sky2_hw *hw = sky2->hw;
2750 unsigned port = sky2->port;
2751 unsigned rxq = rxqaddr[port];
2752 u32 mac_rp = sky2_read32(hw, SK_REG(port, RX_GMF_RP));
2753 u8 mac_lev = sky2_read8(hw, SK_REG(port, RX_GMF_RLEV));
2754 u8 fifo_rp = sky2_read8(hw, Q_ADDR(rxq, Q_RP));
2755 u8 fifo_lev = sky2_read8(hw, Q_ADDR(rxq, Q_RL));
2756
2757 /* If idle and MAC or PCI is stuck */
2758 if (sky2->check.last == dev->last_rx &&
2759 ((mac_rp == sky2->check.mac_rp &&
2760 mac_lev != 0 && mac_lev >= sky2->check.mac_lev) ||
2761 /* Check if the PCI RX hang */
2762 (fifo_rp == sky2->check.fifo_rp &&
2763 fifo_lev != 0 && fifo_lev >= sky2->check.fifo_lev))) {
2764 printk(KERN_DEBUG PFX "%s: hung mac %d:%d fifo %d (%d:%d)\n",
2765 dev->name, mac_lev, mac_rp, fifo_lev, fifo_rp,
2766 sky2_read8(hw, Q_ADDR(rxq, Q_WP)));
2767 return 1;
2768 } else {
2769 sky2->check.last = dev->last_rx;
2770 sky2->check.mac_rp = mac_rp;
2771 sky2->check.mac_lev = mac_lev;
2772 sky2->check.fifo_rp = fifo_rp;
2773 sky2->check.fifo_lev = fifo_lev;
2774 return 0;
2775 }
2776}
2777
32c2c300 2778static void sky2_watchdog(unsigned long arg)
d27ed387 2779{
01bd7564 2780 struct sky2_hw *hw = (struct sky2_hw *) arg;
d27ed387 2781
75e80683 2782 /* Check for lost IRQ once a second */
32c2c300 2783 if (sky2_read32(hw, B0_ISRC)) {
bea3348e 2784 napi_schedule(&hw->napi);
75e80683
SH
2785 } else {
2786 int i, active = 0;
2787
2788 for (i = 0; i < hw->ports; i++) {
bea3348e 2789 struct net_device *dev = hw->dev[i];
75e80683
SH
2790 if (!netif_running(dev))
2791 continue;
2792 ++active;
2793
2794 /* For chips with Rx FIFO, check if stuck */
39dbd958 2795 if ((hw->flags & SKY2_HW_RAM_BUFFER) &&
75e80683
SH
2796 sky2_rx_hung(dev)) {
2797 pr_info(PFX "%s: receiver hang detected\n",
2798 dev->name);
2799 schedule_work(&hw->restart_work);
2800 return;
2801 }
2802 }
2803
2804 if (active == 0)
2805 return;
32c2c300 2806 }
01bd7564 2807
75e80683 2808 mod_timer(&hw->watchdog_timer, round_jiffies(jiffies + HZ));
d27ed387
SH
2809}
2810
40b01727
SH
2811/* Hardware/software error handling */
2812static void sky2_err_intr(struct sky2_hw *hw, u32 status)
cd28ab6a 2813{
40b01727
SH
2814 if (net_ratelimit())
2815 dev_warn(&hw->pdev->dev, "error interrupt status=%#x\n", status);
cd28ab6a 2816
1e5f1283
SH
2817 if (status & Y2_IS_HW_ERR)
2818 sky2_hw_intr(hw);
d257924e 2819
1e5f1283
SH
2820 if (status & Y2_IS_IRQ_MAC1)
2821 sky2_mac_intr(hw, 0);
cd28ab6a 2822
1e5f1283
SH
2823 if (status & Y2_IS_IRQ_MAC2)
2824 sky2_mac_intr(hw, 1);
cd28ab6a 2825
1e5f1283 2826 if (status & Y2_IS_CHK_RX1)
c119731d 2827 sky2_le_error(hw, 0, Q_R1);
d257924e 2828
1e5f1283 2829 if (status & Y2_IS_CHK_RX2)
c119731d 2830 sky2_le_error(hw, 1, Q_R2);
d257924e 2831
1e5f1283 2832 if (status & Y2_IS_CHK_TXA1)
c119731d 2833 sky2_le_error(hw, 0, Q_XA1);
d257924e 2834
1e5f1283 2835 if (status & Y2_IS_CHK_TXA2)
c119731d 2836 sky2_le_error(hw, 1, Q_XA2);
40b01727
SH
2837}
2838
bea3348e 2839static int sky2_poll(struct napi_struct *napi, int work_limit)
40b01727 2840{
bea3348e 2841 struct sky2_hw *hw = container_of(napi, struct sky2_hw, napi);
40b01727 2842 u32 status = sky2_read32(hw, B0_Y2_SP_EISR);
6f535763 2843 int work_done = 0;
26691830 2844 u16 idx;
40b01727
SH
2845
2846 if (unlikely(status & Y2_IS_ERROR))
2847 sky2_err_intr(hw, status);
2848
2849 if (status & Y2_IS_IRQ_PHY1)
2850 sky2_phy_intr(hw, 0);
2851
2852 if (status & Y2_IS_IRQ_PHY2)
2853 sky2_phy_intr(hw, 1);
cd28ab6a 2854
0f5aac70
SH
2855 if (status & Y2_IS_PHY_QLNK)
2856 sky2_qlink_intr(hw);
2857
26691830
SH
2858 while ((idx = sky2_read16(hw, STAT_PUT_IDX)) != hw->st_idx) {
2859 work_done += sky2_status_intr(hw, work_limit - work_done, idx);
6f535763
DM
2860
2861 if (work_done >= work_limit)
26691830
SH
2862 goto done;
2863 }
6f535763 2864
26691830
SH
2865 napi_complete(napi);
2866 sky2_read32(hw, B0_Y2_SP_LISR);
2867done:
6f535763 2868
bea3348e 2869 return work_done;
e07b1aa8
SH
2870}
2871
7d12e780 2872static irqreturn_t sky2_intr(int irq, void *dev_id)
e07b1aa8
SH
2873{
2874 struct sky2_hw *hw = dev_id;
e07b1aa8
SH
2875 u32 status;
2876
2877 /* Reading this mask interrupts as side effect */
2878 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
2879 if (status == 0 || status == ~0)
2880 return IRQ_NONE;
793b883e 2881
e07b1aa8 2882 prefetch(&hw->st_le[hw->st_idx]);
bea3348e
SH
2883
2884 napi_schedule(&hw->napi);
793b883e 2885
cd28ab6a
SH
2886 return IRQ_HANDLED;
2887}
2888
2889#ifdef CONFIG_NET_POLL_CONTROLLER
2890static void sky2_netpoll(struct net_device *dev)
2891{
2892 struct sky2_port *sky2 = netdev_priv(dev);
2893
bea3348e 2894 napi_schedule(&sky2->hw->napi);
cd28ab6a
SH
2895}
2896#endif
2897
2898/* Chip internal frequency for clock calculations */
05745c4a 2899static u32 sky2_mhz(const struct sky2_hw *hw)
cd28ab6a 2900{
793b883e 2901 switch (hw->chip_id) {
cd28ab6a 2902 case CHIP_ID_YUKON_EC:
5a5b1ea0 2903 case CHIP_ID_YUKON_EC_U:
93745494 2904 case CHIP_ID_YUKON_EX:
ed4d4161 2905 case CHIP_ID_YUKON_SUPR:
0ce8b98d 2906 case CHIP_ID_YUKON_UL_2:
0f5aac70 2907 case CHIP_ID_YUKON_OPT:
05745c4a
SH
2908 return 125;
2909
cd28ab6a 2910 case CHIP_ID_YUKON_FE:
05745c4a
SH
2911 return 100;
2912
2913 case CHIP_ID_YUKON_FE_P:
2914 return 50;
2915
2916 case CHIP_ID_YUKON_XL:
2917 return 156;
2918
2919 default:
2920 BUG();
cd28ab6a
SH
2921 }
2922}
2923
fb17358f 2924static inline u32 sky2_us2clk(const struct sky2_hw *hw, u32 us)
cd28ab6a 2925{
fb17358f 2926 return sky2_mhz(hw) * us;
cd28ab6a
SH
2927}
2928
fb17358f 2929static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
cd28ab6a 2930{
fb17358f 2931 return clk / sky2_mhz(hw);
cd28ab6a
SH
2932}
2933
fb17358f 2934
e3173832 2935static int __devinit sky2_init(struct sky2_hw *hw)
cd28ab6a 2936{
b89165f2 2937 u8 t8;
cd28ab6a 2938
167f53d0 2939 /* Enable all clocks and check for bad PCI access */
b32f40c4 2940 sky2_pci_write32(hw, PCI_DEV_REG3, 0);
451af335 2941
cd28ab6a 2942 sky2_write8(hw, B0_CTST, CS_RST_CLR);
08c06d8a 2943
cd28ab6a 2944 hw->chip_id = sky2_read8(hw, B2_CHIP_ID);
ea76e635
SH
2945 hw->chip_rev = (sky2_read8(hw, B2_MAC_CFG) & CFG_CHIP_R_MSK) >> 4;
2946
2947 switch(hw->chip_id) {
2948 case CHIP_ID_YUKON_XL:
39dbd958 2949 hw->flags = SKY2_HW_GIGABIT | SKY2_HW_NEWER_PHY;
ea76e635
SH
2950 break;
2951
2952 case CHIP_ID_YUKON_EC_U:
2953 hw->flags = SKY2_HW_GIGABIT
2954 | SKY2_HW_NEWER_PHY
2955 | SKY2_HW_ADV_POWER_CTL;
2956 break;
2957
2958 case CHIP_ID_YUKON_EX:
2959 hw->flags = SKY2_HW_GIGABIT
2960 | SKY2_HW_NEWER_PHY
2961 | SKY2_HW_NEW_LE
2962 | SKY2_HW_ADV_POWER_CTL;
2963
2964 /* New transmit checksum */
2965 if (hw->chip_rev != CHIP_REV_YU_EX_B0)
2966 hw->flags |= SKY2_HW_AUTO_TX_SUM;
2967 break;
2968
2969 case CHIP_ID_YUKON_EC:
2970 /* This rev is really old, and requires untested workarounds */
2971 if (hw->chip_rev == CHIP_REV_YU_EC_A1) {
2972 dev_err(&hw->pdev->dev, "unsupported revision Yukon-EC rev A1\n");
2973 return -EOPNOTSUPP;
2974 }
39dbd958 2975 hw->flags = SKY2_HW_GIGABIT;
ea76e635
SH
2976 break;
2977
2978 case CHIP_ID_YUKON_FE:
ea76e635
SH
2979 break;
2980
05745c4a
SH
2981 case CHIP_ID_YUKON_FE_P:
2982 hw->flags = SKY2_HW_NEWER_PHY
2983 | SKY2_HW_NEW_LE
2984 | SKY2_HW_AUTO_TX_SUM
2985 | SKY2_HW_ADV_POWER_CTL;
2986 break;
ed4d4161
SH
2987
2988 case CHIP_ID_YUKON_SUPR:
2989 hw->flags = SKY2_HW_GIGABIT
2990 | SKY2_HW_NEWER_PHY
2991 | SKY2_HW_NEW_LE
2992 | SKY2_HW_AUTO_TX_SUM
2993 | SKY2_HW_ADV_POWER_CTL;
2994 break;
2995
0ce8b98d 2996 case CHIP_ID_YUKON_UL_2:
b338682d
TI
2997 hw->flags = SKY2_HW_GIGABIT
2998 | SKY2_HW_ADV_POWER_CTL;
2999 break;
3000
0f5aac70 3001 case CHIP_ID_YUKON_OPT:
0ce8b98d 3002 hw->flags = SKY2_HW_GIGABIT
b338682d 3003 | SKY2_HW_NEW_LE
0ce8b98d
SH
3004 | SKY2_HW_ADV_POWER_CTL;
3005 break;
3006
ea76e635 3007 default:
b02a9258
SH
3008 dev_err(&hw->pdev->dev, "unsupported chip type 0x%x\n",
3009 hw->chip_id);
cd28ab6a
SH
3010 return -EOPNOTSUPP;
3011 }
3012
ea76e635
SH
3013 hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
3014 if (hw->pmd_type == 'L' || hw->pmd_type == 'S' || hw->pmd_type == 'P')
3015 hw->flags |= SKY2_HW_FIBRE_PHY;
290d4de5 3016
e3173832
SH
3017 hw->ports = 1;
3018 t8 = sky2_read8(hw, B2_Y2_HW_RES);
3019 if ((t8 & CFG_DUAL_MAC_MSK) == CFG_DUAL_MAC_MSK) {
3020 if (!(sky2_read8(hw, B2_Y2_CLK_GATE) & Y2_STATUS_LNK2_INAC))
3021 ++hw->ports;
3022 }
3023
74a61ebf
MM
3024 if (sky2_read8(hw, B2_E_0))
3025 hw->flags |= SKY2_HW_RAM_BUFFER;
3026
e3173832
SH
3027 return 0;
3028}
3029
3030static void sky2_reset(struct sky2_hw *hw)
3031{
555382cb 3032 struct pci_dev *pdev = hw->pdev;
e3173832 3033 u16 status;
555382cb
SH
3034 int i, cap;
3035 u32 hwe_mask = Y2_HWE_ALL_MASK;
e3173832 3036
cd28ab6a 3037 /* disable ASF */
4f44d8ba
SH
3038 if (hw->chip_id == CHIP_ID_YUKON_EX) {
3039 status = sky2_read16(hw, HCU_CCSR);
3040 status &= ~(HCU_CCSR_AHB_RST | HCU_CCSR_CPU_RST_MODE |
3041 HCU_CCSR_UC_STATE_MSK);
3042 sky2_write16(hw, HCU_CCSR, status);
3043 } else
3044 sky2_write8(hw, B28_Y2_ASF_STAT_CMD, Y2_ASF_RESET);
3045 sky2_write16(hw, B0_CTST, Y2_ASF_DISABLE);
cd28ab6a
SH
3046
3047 /* do a SW reset */
3048 sky2_write8(hw, B0_CTST, CS_RST_SET);
3049 sky2_write8(hw, B0_CTST, CS_RST_CLR);
3050
ac93a394
SH
3051 /* allow writes to PCI config */
3052 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
3053
cd28ab6a 3054 /* clear PCI errors, if any */
b32f40c4 3055 status = sky2_pci_read16(hw, PCI_STATUS);
167f53d0 3056 status |= PCI_STATUS_ERROR_BITS;
b32f40c4 3057 sky2_pci_write16(hw, PCI_STATUS, status);
cd28ab6a
SH
3058
3059 sky2_write8(hw, B0_CTST, CS_MRST_CLR);
3060
555382cb
SH
3061 cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3062 if (cap) {
7782c8c4
SH
3063 sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS,
3064 0xfffffffful);
555382cb
SH
3065
3066 /* If error bit is stuck on ignore it */
3067 if (sky2_read32(hw, B0_HWE_ISRC) & Y2_IS_PCI_EXP)
3068 dev_info(&pdev->dev, "ignoring stuck error report bit\n");
7782c8c4 3069 else
555382cb
SH
3070 hwe_mask |= Y2_IS_PCI_EXP;
3071 }
cd28ab6a 3072
ae306cca 3073 sky2_power_on(hw);
a40ccc68 3074 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
cd28ab6a
SH
3075
3076 for (i = 0; i < hw->ports; i++) {
3077 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
3078 sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_CLR);
69161611 3079
ed4d4161
SH
3080 if (hw->chip_id == CHIP_ID_YUKON_EX ||
3081 hw->chip_id == CHIP_ID_YUKON_SUPR)
69161611
SH
3082 sky2_write16(hw, SK_REG(i, GMAC_CTRL),
3083 GMC_BYP_MACSECRX_ON | GMC_BYP_MACSECTX_ON
3084 | GMC_BYP_RETR_ON);
877c8570
SH
3085
3086 }
3087
3088 if (hw->chip_id == CHIP_ID_YUKON_SUPR && hw->chip_rev > CHIP_REV_YU_SU_B0) {
3089 /* enable MACSec clock gating */
3090 sky2_pci_write32(hw, PCI_DEV_REG3, P_CLK_MACSEC_DIS);
cd28ab6a
SH
3091 }
3092
0f5aac70
SH
3093 if (hw->chip_id == CHIP_ID_YUKON_OPT) {
3094 u16 reg;
3095 u32 msk;
3096
3097 if (hw->chip_rev == 0) {
3098 /* disable PCI-E PHY power down (set PHY reg 0x80, bit 7 */
3099 sky2_write32(hw, Y2_PEX_PHY_DATA, (0x80UL << 16) | (1 << 7));
3100
3101 /* set PHY Link Detect Timer to 1.1 second (11x 100ms) */
3102 reg = 10;
3103 } else {
3104 /* set PHY Link Detect Timer to 0.4 second (4x 100ms) */
3105 reg = 3;
3106 }
3107
3108 reg <<= PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_BASE;
3109
3110 /* reset PHY Link Detect */
a40ccc68 3111 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
0f5aac70
SH
3112 sky2_pci_write16(hw, PSM_CONFIG_REG4,
3113 reg | PSM_CONFIG_REG4_RST_PHY_LINK_DETECT);
3114 sky2_pci_write16(hw, PSM_CONFIG_REG4, reg);
3115
3116
3117 /* enable PHY Quick Link */
3118 msk = sky2_read32(hw, B0_IMSK);
3119 msk |= Y2_IS_PHY_QLNK;
3120 sky2_write32(hw, B0_IMSK, msk);
3121
3122 /* check if PSMv2 was running before */
3123 reg = sky2_pci_read16(hw, PSM_CONFIG_REG3);
3124 if (reg & PCI_EXP_LNKCTL_ASPMC) {
3125 int cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3126 /* restore the PCIe Link Control register */
3127 sky2_pci_write16(hw, cap + PCI_EXP_LNKCTL, reg);
3128 }
a40ccc68 3129 sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
0f5aac70
SH
3130
3131 /* re-enable PEX PM in PEX PHY debug reg. 8 (clear bit 12) */
3132 sky2_write32(hw, Y2_PEX_PHY_DATA, PEX_DB_ACCESS | (0x08UL << 16));
3133 }
3134
793b883e
SH
3135 /* Clear I2C IRQ noise */
3136 sky2_write32(hw, B2_I2C_IRQ, 1);
cd28ab6a
SH
3137
3138 /* turn off hardware timer (unused) */
3139 sky2_write8(hw, B2_TI_CTRL, TIM_STOP);
3140 sky2_write8(hw, B2_TI_CTRL, TIM_CLR_IRQ);
793b883e 3141
69634ee7
SH
3142 /* Turn off descriptor polling */
3143 sky2_write32(hw, B28_DPT_CTRL, DPT_STOP);
cd28ab6a
SH
3144
3145 /* Turn off receive timestamp */
3146 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_STOP);
793b883e 3147 sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
cd28ab6a
SH
3148
3149 /* enable the Tx Arbiters */
3150 for (i = 0; i < hw->ports; i++)
3151 sky2_write8(hw, SK_REG(i, TXA_CTRL), TXA_ENA_ARB);
3152
3153 /* Initialize ram interface */
3154 for (i = 0; i < hw->ports; i++) {
793b883e 3155 sky2_write8(hw, RAM_BUFFER(i, B3_RI_CTRL), RI_RST_CLR);
cd28ab6a
SH
3156
3157 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R1), SK_RI_TO_53);
3158 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA1), SK_RI_TO_53);
3159 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS1), SK_RI_TO_53);
3160 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R1), SK_RI_TO_53);
3161 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA1), SK_RI_TO_53);
3162 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS1), SK_RI_TO_53);
3163 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R2), SK_RI_TO_53);
3164 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA2), SK_RI_TO_53);
3165 sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS2), SK_RI_TO_53);
3166 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R2), SK_RI_TO_53);
3167 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA2), SK_RI_TO_53);
3168 sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS2), SK_RI_TO_53);
3169 }
3170
555382cb 3171 sky2_write32(hw, B0_HWE_IMSK, hwe_mask);
cd28ab6a 3172
cd28ab6a 3173 for (i = 0; i < hw->ports; i++)
d3bcfbeb 3174 sky2_gmac_reset(hw, i);
cd28ab6a 3175
cd28ab6a
SH
3176 memset(hw->st_le, 0, STATUS_LE_BYTES);
3177 hw->st_idx = 0;
3178
3179 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_SET);
3180 sky2_write32(hw, STAT_CTRL, SC_STAT_RST_CLR);
3181
3182 sky2_write32(hw, STAT_LIST_ADDR_LO, hw->st_dma);
793b883e 3183 sky2_write32(hw, STAT_LIST_ADDR_HI, (u64) hw->st_dma >> 32);
cd28ab6a
SH
3184
3185 /* Set the list last index */
793b883e 3186 sky2_write16(hw, STAT_LAST_IDX, STATUS_RING_SIZE - 1);
cd28ab6a 3187
290d4de5
SH
3188 sky2_write16(hw, STAT_TX_IDX_TH, 10);
3189 sky2_write8(hw, STAT_FIFO_WM, 16);
cd28ab6a 3190
290d4de5
SH
3191 /* set Status-FIFO ISR watermark */
3192 if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0)
3193 sky2_write8(hw, STAT_FIFO_ISR_WM, 4);
3194 else
3195 sky2_write8(hw, STAT_FIFO_ISR_WM, 16);
cd28ab6a 3196
290d4de5 3197 sky2_write32(hw, STAT_TX_TIMER_INI, sky2_us2clk(hw, 1000));
77b3d6a2
SH
3198 sky2_write32(hw, STAT_ISR_TIMER_INI, sky2_us2clk(hw, 20));
3199 sky2_write32(hw, STAT_LEV_TIMER_INI, sky2_us2clk(hw, 100));
cd28ab6a 3200
793b883e 3201 /* enable status unit */
cd28ab6a
SH
3202 sky2_write32(hw, STAT_CTRL, SC_STAT_OP_ON);
3203
3204 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
3205 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
3206 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
e3173832
SH
3207}
3208
af18d8b8
SH
3209/* Take device down (offline).
3210 * Equivalent to doing dev_stop() but this does not
3211 * inform upper layers of the transistion.
3212 */
3213static void sky2_detach(struct net_device *dev)
3214{
3215 if (netif_running(dev)) {
c36531b9 3216 netif_tx_lock(dev);
af18d8b8 3217 netif_device_detach(dev); /* stop txq */
c36531b9 3218 netif_tx_unlock(dev);
af18d8b8
SH
3219 sky2_down(dev);
3220 }
3221}
3222
3223/* Bring device back after doing sky2_detach */
3224static int sky2_reattach(struct net_device *dev)
3225{
3226 int err = 0;
3227
3228 if (netif_running(dev)) {
3229 err = sky2_up(dev);
3230 if (err) {
3231 printk(KERN_INFO PFX "%s: could not restart %d\n",
3232 dev->name, err);
3233 dev_close(dev);
3234 } else {
3235 netif_device_attach(dev);
3236 sky2_set_multicast(dev);
3237 }
3238 }
3239
3240 return err;
3241}
3242
81906791
SH
3243static void sky2_restart(struct work_struct *work)
3244{
3245 struct sky2_hw *hw = container_of(work, struct sky2_hw, restart_work);
af18d8b8 3246 int i;
81906791 3247
81906791 3248 rtnl_lock();
af18d8b8
SH
3249 for (i = 0; i < hw->ports; i++)
3250 sky2_detach(hw->dev[i]);
81906791 3251
8cfcbe99
SH
3252 napi_disable(&hw->napi);
3253 sky2_write32(hw, B0_IMSK, 0);
81906791
SH
3254 sky2_reset(hw);
3255 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
6de16237 3256 napi_enable(&hw->napi);
81906791 3257
af18d8b8
SH
3258 for (i = 0; i < hw->ports; i++)
3259 sky2_reattach(hw->dev[i]);
81906791 3260
81906791
SH
3261 rtnl_unlock();
3262}
3263
e3173832
SH
3264static inline u8 sky2_wol_supported(const struct sky2_hw *hw)
3265{
3266 return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0;
3267}
3268
2ca4231d
MM
3269static void sky2_hw_set_wol(struct sky2_hw *hw)
3270{
3271 int wol = 0;
3272 int i;
3273
3274 for (i = 0; i < hw->ports; i++) {
3275 struct net_device *dev = hw->dev[i];
3276 struct sky2_port *sky2 = netdev_priv(dev);
3277
3278 if (sky2->wol)
3279 wol = 1;
3280 }
3281
3282 if (hw->chip_id == CHIP_ID_YUKON_EC_U ||
3283 hw->chip_id == CHIP_ID_YUKON_EX ||
3284 hw->chip_id == CHIP_ID_YUKON_FE_P)
3285 sky2_write32(hw, B0_CTST, wol ? Y2_HW_WOL_ON : Y2_HW_WOL_OFF);
3286
3287 device_set_wakeup_enable(&hw->pdev->dev, wol);
3288}
3289
e3173832
SH
3290static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3291{
3292 const struct sky2_port *sky2 = netdev_priv(dev);
3293
3294 wol->supported = sky2_wol_supported(sky2->hw);
3295 wol->wolopts = sky2->wol;
3296}
3297
3298static int sky2_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3299{
3300 struct sky2_port *sky2 = netdev_priv(dev);
3301 struct sky2_hw *hw = sky2->hw;
cd28ab6a 3302
8e95a202
JP
3303 if ((wol->wolopts & ~sky2_wol_supported(sky2->hw)) ||
3304 !device_can_wakeup(&hw->pdev->dev))
e3173832
SH
3305 return -EOPNOTSUPP;
3306
3307 sky2->wol = wol->wolopts;
3308
2ca4231d 3309 sky2_hw_set_wol(hw);
9d731d77 3310
e3173832
SH
3311 if (!netif_running(dev))
3312 sky2_wol_init(sky2);
cd28ab6a
SH
3313 return 0;
3314}
3315
28bd181a 3316static u32 sky2_supported_modes(const struct sky2_hw *hw)
cd28ab6a 3317{
b89165f2
SH
3318 if (sky2_is_copper(hw)) {
3319 u32 modes = SUPPORTED_10baseT_Half
3320 | SUPPORTED_10baseT_Full
3321 | SUPPORTED_100baseT_Half
3322 | SUPPORTED_100baseT_Full
3323 | SUPPORTED_Autoneg | SUPPORTED_TP;
cd28ab6a 3324
ea76e635 3325 if (hw->flags & SKY2_HW_GIGABIT)
cd28ab6a 3326 modes |= SUPPORTED_1000baseT_Half
b89165f2
SH
3327 | SUPPORTED_1000baseT_Full;
3328 return modes;
cd28ab6a 3329 } else
b89165f2
SH
3330 return SUPPORTED_1000baseT_Half
3331 | SUPPORTED_1000baseT_Full
3332 | SUPPORTED_Autoneg
3333 | SUPPORTED_FIBRE;
cd28ab6a
SH
3334}
3335
793b883e 3336static int sky2_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
cd28ab6a
SH
3337{
3338 struct sky2_port *sky2 = netdev_priv(dev);
3339 struct sky2_hw *hw = sky2->hw;
3340
3341 ecmd->transceiver = XCVR_INTERNAL;
3342 ecmd->supported = sky2_supported_modes(hw);
3343 ecmd->phy_address = PHY_ADDR_MARV;
b89165f2 3344 if (sky2_is_copper(hw)) {
cd28ab6a 3345 ecmd->port = PORT_TP;
b89165f2
SH
3346 ecmd->speed = sky2->speed;
3347 } else {
3348 ecmd->speed = SPEED_1000;
cd28ab6a 3349 ecmd->port = PORT_FIBRE;
b89165f2 3350 }
cd28ab6a
SH
3351
3352 ecmd->advertising = sky2->advertising;
0ea065e5
SH
3353 ecmd->autoneg = (sky2->flags & SKY2_FLAG_AUTO_SPEED)
3354 ? AUTONEG_ENABLE : AUTONEG_DISABLE;
cd28ab6a
SH
3355 ecmd->duplex = sky2->duplex;
3356 return 0;
3357}
3358
3359static int sky2_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
3360{
3361 struct sky2_port *sky2 = netdev_priv(dev);
3362 const struct sky2_hw *hw = sky2->hw;
3363 u32 supported = sky2_supported_modes(hw);
3364
3365 if (ecmd->autoneg == AUTONEG_ENABLE) {
0ea065e5 3366 sky2->flags |= SKY2_FLAG_AUTO_SPEED;
cd28ab6a
SH
3367 ecmd->advertising = supported;
3368 sky2->duplex = -1;
3369 sky2->speed = -1;
3370 } else {
3371 u32 setting;
3372
793b883e 3373 switch (ecmd->speed) {
cd28ab6a
SH
3374 case SPEED_1000:
3375 if (ecmd->duplex == DUPLEX_FULL)
3376 setting = SUPPORTED_1000baseT_Full;
3377 else if (ecmd->duplex == DUPLEX_HALF)
3378 setting = SUPPORTED_1000baseT_Half;
3379 else
3380 return -EINVAL;
3381 break;
3382 case SPEED_100:
3383 if (ecmd->duplex == DUPLEX_FULL)
3384 setting = SUPPORTED_100baseT_Full;
3385 else if (ecmd->duplex == DUPLEX_HALF)
3386 setting = SUPPORTED_100baseT_Half;
3387 else
3388 return -EINVAL;
3389 break;
3390
3391 case SPEED_10:
3392 if (ecmd->duplex == DUPLEX_FULL)
3393 setting = SUPPORTED_10baseT_Full;
3394 else if (ecmd->duplex == DUPLEX_HALF)
3395 setting = SUPPORTED_10baseT_Half;
3396 else
3397 return -EINVAL;
3398 break;
3399 default:
3400 return -EINVAL;
3401 }
3402
3403 if ((setting & supported) == 0)
3404 return -EINVAL;
3405
3406 sky2->speed = ecmd->speed;
3407 sky2->duplex = ecmd->duplex;
0ea065e5 3408 sky2->flags &= ~SKY2_FLAG_AUTO_SPEED;
cd28ab6a
SH
3409 }
3410
cd28ab6a
SH
3411 sky2->advertising = ecmd->advertising;
3412
d1b139c0 3413 if (netif_running(dev)) {
1b537565 3414 sky2_phy_reinit(sky2);
d1b139c0
SH
3415 sky2_set_multicast(dev);
3416 }
cd28ab6a
SH
3417
3418 return 0;
3419}
3420
3421static void sky2_get_drvinfo(struct net_device *dev,
3422 struct ethtool_drvinfo *info)
3423{
3424 struct sky2_port *sky2 = netdev_priv(dev);
3425
3426 strcpy(info->driver, DRV_NAME);
3427 strcpy(info->version, DRV_VERSION);
3428 strcpy(info->fw_version, "N/A");
3429 strcpy(info->bus_info, pci_name(sky2->hw->pdev));
3430}
3431
3432static const struct sky2_stat {
793b883e
SH
3433 char name[ETH_GSTRING_LEN];
3434 u16 offset;
cd28ab6a
SH
3435} sky2_stats[] = {
3436 { "tx_bytes", GM_TXO_OK_HI },
3437 { "rx_bytes", GM_RXO_OK_HI },
3438 { "tx_broadcast", GM_TXF_BC_OK },
3439 { "rx_broadcast", GM_RXF_BC_OK },
3440 { "tx_multicast", GM_TXF_MC_OK },
3441 { "rx_multicast", GM_RXF_MC_OK },
3442 { "tx_unicast", GM_TXF_UC_OK },
3443 { "rx_unicast", GM_RXF_UC_OK },
3444 { "tx_mac_pause", GM_TXF_MPAUSE },
3445 { "rx_mac_pause", GM_RXF_MPAUSE },
eadfa7dd 3446 { "collisions", GM_TXF_COL },
cd28ab6a
SH
3447 { "late_collision",GM_TXF_LAT_COL },
3448 { "aborted", GM_TXF_ABO_COL },
eadfa7dd 3449 { "single_collisions", GM_TXF_SNG_COL },
cd28ab6a 3450 { "multi_collisions", GM_TXF_MUL_COL },
eadfa7dd 3451
d2604540 3452 { "rx_short", GM_RXF_SHT },
cd28ab6a 3453 { "rx_runt", GM_RXE_FRAG },
eadfa7dd
SH
3454 { "rx_64_byte_packets", GM_RXF_64B },
3455 { "rx_65_to_127_byte_packets", GM_RXF_127B },
3456 { "rx_128_to_255_byte_packets", GM_RXF_255B },
3457 { "rx_256_to_511_byte_packets", GM_RXF_511B },
3458 { "rx_512_to_1023_byte_packets", GM_RXF_1023B },
3459 { "rx_1024_to_1518_byte_packets", GM_RXF_1518B },
3460 { "rx_1518_to_max_byte_packets", GM_RXF_MAX_SZ },
cd28ab6a 3461 { "rx_too_long", GM_RXF_LNG_ERR },
eadfa7dd
SH
3462 { "rx_fifo_overflow", GM_RXE_FIFO_OV },
3463 { "rx_jabber", GM_RXF_JAB_PKT },
cd28ab6a 3464 { "rx_fcs_error", GM_RXF_FCS_ERR },
eadfa7dd
SH
3465
3466 { "tx_64_byte_packets", GM_TXF_64B },
3467 { "tx_65_to_127_byte_packets", GM_TXF_127B },
3468 { "tx_128_to_255_byte_packets", GM_TXF_255B },
3469 { "tx_256_to_511_byte_packets", GM_TXF_511B },
3470 { "tx_512_to_1023_byte_packets", GM_TXF_1023B },
3471 { "tx_1024_to_1518_byte_packets", GM_TXF_1518B },
3472 { "tx_1519_to_max_byte_packets", GM_TXF_MAX_SZ },
3473 { "tx_fifo_underrun", GM_TXE_FIFO_UR },
cd28ab6a
SH
3474};
3475
cd28ab6a
SH
3476static u32 sky2_get_rx_csum(struct net_device *dev)
3477{
3478 struct sky2_port *sky2 = netdev_priv(dev);
3479
0ea065e5 3480 return !!(sky2->flags & SKY2_FLAG_RX_CHECKSUM);
cd28ab6a
SH
3481}
3482
3483static int sky2_set_rx_csum(struct net_device *dev, u32 data)
3484{
3485 struct sky2_port *sky2 = netdev_priv(dev);
3486
0ea065e5
SH
3487 if (data)
3488 sky2->flags |= SKY2_FLAG_RX_CHECKSUM;
3489 else
3490 sky2->flags &= ~SKY2_FLAG_RX_CHECKSUM;
793b883e 3491
cd28ab6a
SH
3492 sky2_write32(sky2->hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
3493 data ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
3494
3495 return 0;
3496}
3497
3498static u32 sky2_get_msglevel(struct net_device *netdev)
3499{
3500 struct sky2_port *sky2 = netdev_priv(netdev);
3501 return sky2->msg_enable;
3502}
3503
9a7ae0a9
SH
3504static int sky2_nway_reset(struct net_device *dev)
3505{
3506 struct sky2_port *sky2 = netdev_priv(dev);
9a7ae0a9 3507
0ea065e5 3508 if (!netif_running(dev) || !(sky2->flags & SKY2_FLAG_AUTO_SPEED))
9a7ae0a9
SH
3509 return -EINVAL;
3510
1b537565 3511 sky2_phy_reinit(sky2);
d1b139c0 3512 sky2_set_multicast(dev);
9a7ae0a9
SH
3513
3514 return 0;
3515}
3516
793b883e 3517static void sky2_phy_stats(struct sky2_port *sky2, u64 * data, unsigned count)
cd28ab6a
SH
3518{
3519 struct sky2_hw *hw = sky2->hw;
3520 unsigned port = sky2->port;
3521 int i;
3522
3523 data[0] = (u64) gma_read32(hw, port, GM_TXO_OK_HI) << 32
793b883e 3524 | (u64) gma_read32(hw, port, GM_TXO_OK_LO);
cd28ab6a 3525 data[1] = (u64) gma_read32(hw, port, GM_RXO_OK_HI) << 32
793b883e 3526 | (u64) gma_read32(hw, port, GM_RXO_OK_LO);
cd28ab6a 3527
793b883e 3528 for (i = 2; i < count; i++)
cd28ab6a
SH
3529 data[i] = (u64) gma_read32(hw, port, sky2_stats[i].offset);
3530}
3531
cd28ab6a
SH
3532static void sky2_set_msglevel(struct net_device *netdev, u32 value)
3533{
3534 struct sky2_port *sky2 = netdev_priv(netdev);
3535 sky2->msg_enable = value;
3536}
3537
b9f2c044 3538static int sky2_get_sset_count(struct net_device *dev, int sset)
cd28ab6a 3539{
b9f2c044
JG
3540 switch (sset) {
3541 case ETH_SS_STATS:
3542 return ARRAY_SIZE(sky2_stats);
3543 default:
3544 return -EOPNOTSUPP;
3545 }
cd28ab6a
SH
3546}
3547
3548static void sky2_get_ethtool_stats(struct net_device *dev,
793b883e 3549 struct ethtool_stats *stats, u64 * data)
cd28ab6a
SH
3550{
3551 struct sky2_port *sky2 = netdev_priv(dev);
3552
793b883e 3553 sky2_phy_stats(sky2, data, ARRAY_SIZE(sky2_stats));
cd28ab6a
SH
3554}
3555
793b883e 3556static void sky2_get_strings(struct net_device *dev, u32 stringset, u8 * data)
cd28ab6a
SH
3557{
3558 int i;
3559
3560 switch (stringset) {
3561 case ETH_SS_STATS:
3562 for (i = 0; i < ARRAY_SIZE(sky2_stats); i++)
3563 memcpy(data + i * ETH_GSTRING_LEN,
3564 sky2_stats[i].name, ETH_GSTRING_LEN);
3565 break;
3566 }
3567}
3568
cd28ab6a
SH
3569static int sky2_set_mac_address(struct net_device *dev, void *p)
3570{
3571 struct sky2_port *sky2 = netdev_priv(dev);
a8ab1ec0
SH
3572 struct sky2_hw *hw = sky2->hw;
3573 unsigned port = sky2->port;
3574 const struct sockaddr *addr = p;
cd28ab6a
SH
3575
3576 if (!is_valid_ether_addr(addr->sa_data))
3577 return -EADDRNOTAVAIL;
3578
cd28ab6a 3579 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
a8ab1ec0 3580 memcpy_toio(hw->regs + B2_MAC_1 + port * 8,
cd28ab6a 3581 dev->dev_addr, ETH_ALEN);
a8ab1ec0 3582 memcpy_toio(hw->regs + B2_MAC_2 + port * 8,
cd28ab6a 3583 dev->dev_addr, ETH_ALEN);
1b537565 3584
a8ab1ec0
SH
3585 /* virtual address for data */
3586 gma_set_addr(hw, port, GM_SRC_ADDR_2L, dev->dev_addr);
3587
3588 /* physical address: used for pause frames */
3589 gma_set_addr(hw, port, GM_SRC_ADDR_1L, dev->dev_addr);
1b537565
SH
3590
3591 return 0;
cd28ab6a
SH
3592}
3593
a052b52f
SH
3594static void inline sky2_add_filter(u8 filter[8], const u8 *addr)
3595{
3596 u32 bit;
3597
3598 bit = ether_crc(ETH_ALEN, addr) & 63;
3599 filter[bit >> 3] |= 1 << (bit & 7);
3600}
3601
cd28ab6a
SH
3602static void sky2_set_multicast(struct net_device *dev)
3603{
3604 struct sky2_port *sky2 = netdev_priv(dev);
3605 struct sky2_hw *hw = sky2->hw;
3606 unsigned port = sky2->port;
3607 struct dev_mc_list *list = dev->mc_list;
3608 u16 reg;
3609 u8 filter[8];
a052b52f
SH
3610 int rx_pause;
3611 static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };
cd28ab6a 3612
a052b52f 3613 rx_pause = (sky2->flow_status == FC_RX || sky2->flow_status == FC_BOTH);
cd28ab6a
SH
3614 memset(filter, 0, sizeof(filter));
3615
3616 reg = gma_read16(hw, port, GM_RX_CTRL);
3617 reg |= GM_RXCR_UCF_ENA;
3618
d571b694 3619 if (dev->flags & IFF_PROMISC) /* promiscuous */
cd28ab6a 3620 reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
a052b52f 3621 else if (dev->flags & IFF_ALLMULTI)
cd28ab6a 3622 memset(filter, 0xff, sizeof(filter));
a052b52f 3623 else if (dev->mc_count == 0 && !rx_pause)
cd28ab6a
SH
3624 reg &= ~GM_RXCR_MCF_ENA;
3625 else {
3626 int i;
3627 reg |= GM_RXCR_MCF_ENA;
3628
a052b52f
SH
3629 if (rx_pause)
3630 sky2_add_filter(filter, pause_mc_addr);
3631
3632 for (i = 0; list && i < dev->mc_count; i++, list = list->next)
3633 sky2_add_filter(filter, list->dmi_addr);
cd28ab6a
SH
3634 }
3635
cd28ab6a 3636 gma_write16(hw, port, GM_MC_ADDR_H1,
793b883e 3637 (u16) filter[0] | ((u16) filter[1] << 8));
cd28ab6a 3638 gma_write16(hw, port, GM_MC_ADDR_H2,
793b883e 3639 (u16) filter[2] | ((u16) filter[3] << 8));
cd28ab6a 3640 gma_write16(hw, port, GM_MC_ADDR_H3,
793b883e 3641 (u16) filter[4] | ((u16) filter[5] << 8));
cd28ab6a 3642 gma_write16(hw, port, GM_MC_ADDR_H4,
793b883e 3643 (u16) filter[6] | ((u16) filter[7] << 8));
cd28ab6a
SH
3644
3645 gma_write16(hw, port, GM_RX_CTRL, reg);
3646}
3647
3648/* Can have one global because blinking is controlled by
3649 * ethtool and that is always under RTNL mutex
3650 */
a84d0a3d 3651static void sky2_led(struct sky2_port *sky2, enum led_mode mode)
cd28ab6a 3652{
a84d0a3d
SH
3653 struct sky2_hw *hw = sky2->hw;
3654 unsigned port = sky2->port;
793b883e 3655
a84d0a3d
SH
3656 spin_lock_bh(&sky2->phy_lock);
3657 if (hw->chip_id == CHIP_ID_YUKON_EC_U ||
3658 hw->chip_id == CHIP_ID_YUKON_EX ||
3659 hw->chip_id == CHIP_ID_YUKON_SUPR) {
3660 u16 pg;
793b883e
SH
3661 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
3662 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
793b883e 3663
a84d0a3d
SH
3664 switch (mode) {
3665 case MO_LED_OFF:
3666 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3667 PHY_M_LEDC_LOS_CTRL(8) |
3668 PHY_M_LEDC_INIT_CTRL(8) |
3669 PHY_M_LEDC_STA1_CTRL(8) |
3670 PHY_M_LEDC_STA0_CTRL(8));
3671 break;
3672 case MO_LED_ON:
3673 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3674 PHY_M_LEDC_LOS_CTRL(9) |
3675 PHY_M_LEDC_INIT_CTRL(9) |
3676 PHY_M_LEDC_STA1_CTRL(9) |
3677 PHY_M_LEDC_STA0_CTRL(9));
3678 break;
3679 case MO_LED_BLINK:
3680 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3681 PHY_M_LEDC_LOS_CTRL(0xa) |
3682 PHY_M_LEDC_INIT_CTRL(0xa) |
3683 PHY_M_LEDC_STA1_CTRL(0xa) |
3684 PHY_M_LEDC_STA0_CTRL(0xa));
3685 break;
3686 case MO_LED_NORM:
3687 gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
3688 PHY_M_LEDC_LOS_CTRL(1) |
3689 PHY_M_LEDC_INIT_CTRL(8) |
3690 PHY_M_LEDC_STA1_CTRL(7) |
3691 PHY_M_LEDC_STA0_CTRL(7));
3692 }
793b883e 3693
a84d0a3d
SH
3694 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
3695 } else
7d2e3cb7 3696 gm_phy_write(hw, port, PHY_MARV_LED_OVER,
a84d0a3d
SH
3697 PHY_M_LED_MO_DUP(mode) |
3698 PHY_M_LED_MO_10(mode) |
3699 PHY_M_LED_MO_100(mode) |
3700 PHY_M_LED_MO_1000(mode) |
3701 PHY_M_LED_MO_RX(mode) |
3702 PHY_M_LED_MO_TX(mode));
3703
3704 spin_unlock_bh(&sky2->phy_lock);
cd28ab6a
SH
3705}
3706
3707/* blink LED's for finding board */
3708static int sky2_phys_id(struct net_device *dev, u32 data)
3709{
3710 struct sky2_port *sky2 = netdev_priv(dev);
a84d0a3d 3711 unsigned int i;
cd28ab6a 3712
a84d0a3d
SH
3713 if (data == 0)
3714 data = UINT_MAX;
cd28ab6a 3715
a84d0a3d
SH
3716 for (i = 0; i < data; i++) {
3717 sky2_led(sky2, MO_LED_ON);
3718 if (msleep_interruptible(500))
3719 break;
3720 sky2_led(sky2, MO_LED_OFF);
3721 if (msleep_interruptible(500))
3722 break;
793b883e 3723 }
a84d0a3d 3724 sky2_led(sky2, MO_LED_NORM);
cd28ab6a
SH
3725
3726 return 0;
3727}
3728
3729static void sky2_get_pauseparam(struct net_device *dev,
3730 struct ethtool_pauseparam *ecmd)
3731{
3732 struct sky2_port *sky2 = netdev_priv(dev);
3733
16ad91e1
SH
3734 switch (sky2->flow_mode) {
3735 case FC_NONE:
3736 ecmd->tx_pause = ecmd->rx_pause = 0;
3737 break;
3738 case FC_TX:
3739 ecmd->tx_pause = 1, ecmd->rx_pause = 0;
3740 break;
3741 case FC_RX:
3742 ecmd->tx_pause = 0, ecmd->rx_pause = 1;
3743 break;
3744 case FC_BOTH:
3745 ecmd->tx_pause = ecmd->rx_pause = 1;
3746 }
3747
0ea065e5
SH
3748 ecmd->autoneg = (sky2->flags & SKY2_FLAG_AUTO_PAUSE)
3749 ? AUTONEG_ENABLE : AUTONEG_DISABLE;
cd28ab6a
SH
3750}
3751
3752static int sky2_set_pauseparam(struct net_device *dev,
3753 struct ethtool_pauseparam *ecmd)
3754{
3755 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a 3756
0ea065e5
SH
3757 if (ecmd->autoneg == AUTONEG_ENABLE)
3758 sky2->flags |= SKY2_FLAG_AUTO_PAUSE;
3759 else
3760 sky2->flags &= ~SKY2_FLAG_AUTO_PAUSE;
3761
16ad91e1 3762 sky2->flow_mode = sky2_flow(ecmd->rx_pause, ecmd->tx_pause);
cd28ab6a 3763
16ad91e1
SH
3764 if (netif_running(dev))
3765 sky2_phy_reinit(sky2);
cd28ab6a 3766
2eaba1a2 3767 return 0;
cd28ab6a
SH
3768}
3769
fb17358f
SH
3770static int sky2_get_coalesce(struct net_device *dev,
3771 struct ethtool_coalesce *ecmd)
3772{
3773 struct sky2_port *sky2 = netdev_priv(dev);
3774 struct sky2_hw *hw = sky2->hw;
3775
3776 if (sky2_read8(hw, STAT_TX_TIMER_CTRL) == TIM_STOP)
3777 ecmd->tx_coalesce_usecs = 0;
3778 else {
3779 u32 clks = sky2_read32(hw, STAT_TX_TIMER_INI);
3780 ecmd->tx_coalesce_usecs = sky2_clk2us(hw, clks);
3781 }
3782 ecmd->tx_max_coalesced_frames = sky2_read16(hw, STAT_TX_IDX_TH);
3783
3784 if (sky2_read8(hw, STAT_LEV_TIMER_CTRL) == TIM_STOP)
3785 ecmd->rx_coalesce_usecs = 0;
3786 else {
3787 u32 clks = sky2_read32(hw, STAT_LEV_TIMER_INI);
3788 ecmd->rx_coalesce_usecs = sky2_clk2us(hw, clks);
3789 }
3790 ecmd->rx_max_coalesced_frames = sky2_read8(hw, STAT_FIFO_WM);
3791
3792 if (sky2_read8(hw, STAT_ISR_TIMER_CTRL) == TIM_STOP)
3793 ecmd->rx_coalesce_usecs_irq = 0;
3794 else {
3795 u32 clks = sky2_read32(hw, STAT_ISR_TIMER_INI);
3796 ecmd->rx_coalesce_usecs_irq = sky2_clk2us(hw, clks);
3797 }
3798
3799 ecmd->rx_max_coalesced_frames_irq = sky2_read8(hw, STAT_FIFO_ISR_WM);
3800
3801 return 0;
3802}
3803
3804/* Note: this affect both ports */
3805static int sky2_set_coalesce(struct net_device *dev,
3806 struct ethtool_coalesce *ecmd)
3807{
3808 struct sky2_port *sky2 = netdev_priv(dev);
3809 struct sky2_hw *hw = sky2->hw;
77b3d6a2 3810 const u32 tmax = sky2_clk2us(hw, 0x0ffffff);
fb17358f 3811
77b3d6a2
SH
3812 if (ecmd->tx_coalesce_usecs > tmax ||
3813 ecmd->rx_coalesce_usecs > tmax ||
3814 ecmd->rx_coalesce_usecs_irq > tmax)
fb17358f
SH
3815 return -EINVAL;
3816
ee5f68fe 3817 if (ecmd->tx_max_coalesced_frames >= sky2->tx_ring_size-1)
fb17358f 3818 return -EINVAL;
ff81fbbe 3819 if (ecmd->rx_max_coalesced_frames > RX_MAX_PENDING)
fb17358f 3820 return -EINVAL;
ff81fbbe 3821 if (ecmd->rx_max_coalesced_frames_irq >RX_MAX_PENDING)
fb17358f
SH
3822 return -EINVAL;
3823
3824 if (ecmd->tx_coalesce_usecs == 0)
3825 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_STOP);
3826 else {
3827 sky2_write32(hw, STAT_TX_TIMER_INI,
3828 sky2_us2clk(hw, ecmd->tx_coalesce_usecs));
3829 sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
3830 }
3831 sky2_write16(hw, STAT_TX_IDX_TH, ecmd->tx_max_coalesced_frames);
3832
3833 if (ecmd->rx_coalesce_usecs == 0)
3834 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_STOP);
3835 else {
3836 sky2_write32(hw, STAT_LEV_TIMER_INI,
3837 sky2_us2clk(hw, ecmd->rx_coalesce_usecs));
3838 sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
3839 }
3840 sky2_write8(hw, STAT_FIFO_WM, ecmd->rx_max_coalesced_frames);
3841
3842 if (ecmd->rx_coalesce_usecs_irq == 0)
3843 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_STOP);
3844 else {
d28d4870 3845 sky2_write32(hw, STAT_ISR_TIMER_INI,
fb17358f
SH
3846 sky2_us2clk(hw, ecmd->rx_coalesce_usecs_irq));
3847 sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
3848 }
3849 sky2_write8(hw, STAT_FIFO_ISR_WM, ecmd->rx_max_coalesced_frames_irq);
3850 return 0;
3851}
3852
793b883e
SH
3853static void sky2_get_ringparam(struct net_device *dev,
3854 struct ethtool_ringparam *ering)
3855{
3856 struct sky2_port *sky2 = netdev_priv(dev);
3857
3858 ering->rx_max_pending = RX_MAX_PENDING;
3859 ering->rx_mini_max_pending = 0;
3860 ering->rx_jumbo_max_pending = 0;
ee5f68fe 3861 ering->tx_max_pending = TX_MAX_PENDING;
793b883e
SH
3862
3863 ering->rx_pending = sky2->rx_pending;
3864 ering->rx_mini_pending = 0;
3865 ering->rx_jumbo_pending = 0;
3866 ering->tx_pending = sky2->tx_pending;
3867}
3868
3869static int sky2_set_ringparam(struct net_device *dev,
3870 struct ethtool_ringparam *ering)
3871{
3872 struct sky2_port *sky2 = netdev_priv(dev);
793b883e
SH
3873
3874 if (ering->rx_pending > RX_MAX_PENDING ||
3875 ering->rx_pending < 8 ||
ee5f68fe
SH
3876 ering->tx_pending < TX_MIN_PENDING ||
3877 ering->tx_pending > TX_MAX_PENDING)
793b883e
SH
3878 return -EINVAL;
3879
af18d8b8 3880 sky2_detach(dev);
793b883e
SH
3881
3882 sky2->rx_pending = ering->rx_pending;
3883 sky2->tx_pending = ering->tx_pending;
ee5f68fe 3884 sky2->tx_ring_size = roundup_pow_of_two(sky2->tx_pending+1);
793b883e 3885
af18d8b8 3886 return sky2_reattach(dev);
793b883e
SH
3887}
3888
793b883e
SH
3889static int sky2_get_regs_len(struct net_device *dev)
3890{
6e4cbb34 3891 return 0x4000;
793b883e
SH
3892}
3893
c32bbff8
MM
3894static int sky2_reg_access_ok(struct sky2_hw *hw, unsigned int b)
3895{
3896 /* This complicated switch statement is to make sure and
3897 * only access regions that are unreserved.
3898 * Some blocks are only valid on dual port cards.
3899 */
3900 switch (b) {
3901 /* second port */
3902 case 5: /* Tx Arbiter 2 */
3903 case 9: /* RX2 */
3904 case 14 ... 15: /* TX2 */
3905 case 17: case 19: /* Ram Buffer 2 */
3906 case 22 ... 23: /* Tx Ram Buffer 2 */
3907 case 25: /* Rx MAC Fifo 1 */
3908 case 27: /* Tx MAC Fifo 2 */
3909 case 31: /* GPHY 2 */
3910 case 40 ... 47: /* Pattern Ram 2 */
3911 case 52: case 54: /* TCP Segmentation 2 */
3912 case 112 ... 116: /* GMAC 2 */
3913 return hw->ports > 1;
3914
3915 case 0: /* Control */
3916 case 2: /* Mac address */
3917 case 4: /* Tx Arbiter 1 */
3918 case 7: /* PCI express reg */
3919 case 8: /* RX1 */
3920 case 12 ... 13: /* TX1 */
3921 case 16: case 18:/* Rx Ram Buffer 1 */
3922 case 20 ... 21: /* Tx Ram Buffer 1 */
3923 case 24: /* Rx MAC Fifo 1 */
3924 case 26: /* Tx MAC Fifo 1 */
3925 case 28 ... 29: /* Descriptor and status unit */
3926 case 30: /* GPHY 1*/
3927 case 32 ... 39: /* Pattern Ram 1 */
3928 case 48: case 50: /* TCP Segmentation 1 */
3929 case 56 ... 60: /* PCI space */
3930 case 80 ... 84: /* GMAC 1 */
3931 return 1;
3932
3933 default:
3934 return 0;
3935 }
3936}
3937
793b883e
SH
3938/*
3939 * Returns copy of control register region
3ead5db7 3940 * Note: ethtool_get_regs always provides full size (16k) buffer
793b883e
SH
3941 */
3942static void sky2_get_regs(struct net_device *dev, struct ethtool_regs *regs,
3943 void *p)
3944{
3945 const struct sky2_port *sky2 = netdev_priv(dev);
793b883e 3946 const void __iomem *io = sky2->hw->regs;
295b54c4 3947 unsigned int b;
793b883e
SH
3948
3949 regs->version = 1;
793b883e 3950
295b54c4 3951 for (b = 0; b < 128; b++) {
c32bbff8
MM
3952 /* skip poisonous diagnostic ram region in block 3 */
3953 if (b == 3)
295b54c4 3954 memcpy_fromio(p + 0x10, io + 0x10, 128 - 0x10);
c32bbff8 3955 else if (sky2_reg_access_ok(sky2->hw, b))
295b54c4 3956 memcpy_fromio(p, io, 128);
c32bbff8 3957 else
295b54c4 3958 memset(p, 0, 128);
3ead5db7 3959
295b54c4
SH
3960 p += 128;
3961 io += 128;
3962 }
793b883e 3963}
cd28ab6a 3964
b628ed98
SH
3965/* In order to do Jumbo packets on these chips, need to turn off the
3966 * transmit store/forward. Therefore checksum offload won't work.
3967 */
3968static int no_tx_offload(struct net_device *dev)
3969{
3970 const struct sky2_port *sky2 = netdev_priv(dev);
3971 const struct sky2_hw *hw = sky2->hw;
3972
69161611 3973 return dev->mtu > ETH_DATA_LEN && hw->chip_id == CHIP_ID_YUKON_EC_U;
b628ed98
SH
3974}
3975
3976static int sky2_set_tx_csum(struct net_device *dev, u32 data)
3977{
3978 if (data && no_tx_offload(dev))
3979 return -EINVAL;
3980
3981 return ethtool_op_set_tx_csum(dev, data);
3982}
3983
3984
3985static int sky2_set_tso(struct net_device *dev, u32 data)
3986{
3987 if (data && no_tx_offload(dev))
3988 return -EINVAL;
3989
3990 return ethtool_op_set_tso(dev, data);
3991}
3992
f4331a6d
SH
3993static int sky2_get_eeprom_len(struct net_device *dev)
3994{
3995 struct sky2_port *sky2 = netdev_priv(dev);
b32f40c4 3996 struct sky2_hw *hw = sky2->hw;
f4331a6d
SH
3997 u16 reg2;
3998
b32f40c4 3999 reg2 = sky2_pci_read16(hw, PCI_DEV_REG2);
f4331a6d
SH
4000 return 1 << ( ((reg2 & PCI_VPD_ROM_SZ) >> 14) + 8);
4001}
4002
1413235c 4003static int sky2_vpd_wait(const struct sky2_hw *hw, int cap, u16 busy)
f4331a6d 4004{
1413235c 4005 unsigned long start = jiffies;
f4331a6d 4006
1413235c
SH
4007 while ( (sky2_pci_read16(hw, cap + PCI_VPD_ADDR) & PCI_VPD_ADDR_F) == busy) {
4008 /* Can take up to 10.6 ms for write */
4009 if (time_after(jiffies, start + HZ/4)) {
4010 dev_err(&hw->pdev->dev, PFX "VPD cycle timed out");
4011 return -ETIMEDOUT;
4012 }
4013 mdelay(1);
4014 }
167f53d0 4015
1413235c
SH
4016 return 0;
4017}
167f53d0 4018
1413235c
SH
4019static int sky2_vpd_read(struct sky2_hw *hw, int cap, void *data,
4020 u16 offset, size_t length)
4021{
4022 int rc = 0;
4023
4024 while (length > 0) {
4025 u32 val;
4026
4027 sky2_pci_write16(hw, cap + PCI_VPD_ADDR, offset);
4028 rc = sky2_vpd_wait(hw, cap, 0);
4029 if (rc)
4030 break;
4031
4032 val = sky2_pci_read32(hw, cap + PCI_VPD_DATA);
4033
4034 memcpy(data, &val, min(sizeof(val), length));
4035 offset += sizeof(u32);
4036 data += sizeof(u32);
4037 length -= sizeof(u32);
4038 }
4039
4040 return rc;
f4331a6d
SH
4041}
4042
1413235c
SH
4043static int sky2_vpd_write(struct sky2_hw *hw, int cap, const void *data,
4044 u16 offset, unsigned int length)
f4331a6d 4045{
1413235c
SH
4046 unsigned int i;
4047 int rc = 0;
4048
4049 for (i = 0; i < length; i += sizeof(u32)) {
4050 u32 val = *(u32 *)(data + i);
4051
4052 sky2_pci_write32(hw, cap + PCI_VPD_DATA, val);
4053 sky2_pci_write32(hw, cap + PCI_VPD_ADDR, offset | PCI_VPD_ADDR_F);
4054
4055 rc = sky2_vpd_wait(hw, cap, PCI_VPD_ADDR_F);
4056 if (rc)
4057 break;
4058 }
4059 return rc;
f4331a6d
SH
4060}
4061
4062static int sky2_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
4063 u8 *data)
4064{
4065 struct sky2_port *sky2 = netdev_priv(dev);
4066 int cap = pci_find_capability(sky2->hw->pdev, PCI_CAP_ID_VPD);
f4331a6d
SH
4067
4068 if (!cap)
4069 return -EINVAL;
4070
4071 eeprom->magic = SKY2_EEPROM_MAGIC;
4072
1413235c 4073 return sky2_vpd_read(sky2->hw, cap, data, eeprom->offset, eeprom->len);
f4331a6d
SH
4074}
4075
4076static int sky2_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
4077 u8 *data)
4078{
4079 struct sky2_port *sky2 = netdev_priv(dev);
4080 int cap = pci_find_capability(sky2->hw->pdev, PCI_CAP_ID_VPD);
f4331a6d
SH
4081
4082 if (!cap)
4083 return -EINVAL;
4084
4085 if (eeprom->magic != SKY2_EEPROM_MAGIC)
4086 return -EINVAL;
4087
1413235c
SH
4088 /* Partial writes not supported */
4089 if ((eeprom->offset & 3) || (eeprom->len & 3))
4090 return -EINVAL;
f4331a6d 4091
1413235c 4092 return sky2_vpd_write(sky2->hw, cap, data, eeprom->offset, eeprom->len);
f4331a6d
SH
4093}
4094
4095
7282d491 4096static const struct ethtool_ops sky2_ethtool_ops = {
f4331a6d
SH
4097 .get_settings = sky2_get_settings,
4098 .set_settings = sky2_set_settings,
4099 .get_drvinfo = sky2_get_drvinfo,
4100 .get_wol = sky2_get_wol,
4101 .set_wol = sky2_set_wol,
4102 .get_msglevel = sky2_get_msglevel,
4103 .set_msglevel = sky2_set_msglevel,
4104 .nway_reset = sky2_nway_reset,
4105 .get_regs_len = sky2_get_regs_len,
4106 .get_regs = sky2_get_regs,
4107 .get_link = ethtool_op_get_link,
4108 .get_eeprom_len = sky2_get_eeprom_len,
4109 .get_eeprom = sky2_get_eeprom,
4110 .set_eeprom = sky2_set_eeprom,
f4331a6d 4111 .set_sg = ethtool_op_set_sg,
f4331a6d 4112 .set_tx_csum = sky2_set_tx_csum,
f4331a6d
SH
4113 .set_tso = sky2_set_tso,
4114 .get_rx_csum = sky2_get_rx_csum,
4115 .set_rx_csum = sky2_set_rx_csum,
4116 .get_strings = sky2_get_strings,
4117 .get_coalesce = sky2_get_coalesce,
4118 .set_coalesce = sky2_set_coalesce,
4119 .get_ringparam = sky2_get_ringparam,
4120 .set_ringparam = sky2_set_ringparam,
cd28ab6a
SH
4121 .get_pauseparam = sky2_get_pauseparam,
4122 .set_pauseparam = sky2_set_pauseparam,
f4331a6d 4123 .phys_id = sky2_phys_id,
b9f2c044 4124 .get_sset_count = sky2_get_sset_count,
cd28ab6a
SH
4125 .get_ethtool_stats = sky2_get_ethtool_stats,
4126};
4127
3cf26753
SH
4128#ifdef CONFIG_SKY2_DEBUG
4129
4130static struct dentry *sky2_debug;
4131
e4c2abe2
SH
4132
4133/*
4134 * Read and parse the first part of Vital Product Data
4135 */
4136#define VPD_SIZE 128
4137#define VPD_MAGIC 0x82
4138
4139static const struct vpd_tag {
4140 char tag[2];
4141 char *label;
4142} vpd_tags[] = {
4143 { "PN", "Part Number" },
4144 { "EC", "Engineering Level" },
4145 { "MN", "Manufacturer" },
4146 { "SN", "Serial Number" },
4147 { "YA", "Asset Tag" },
4148 { "VL", "First Error Log Message" },
4149 { "VF", "Second Error Log Message" },
4150 { "VB", "Boot Agent ROM Configuration" },
4151 { "VE", "EFI UNDI Configuration" },
4152};
4153
4154static void sky2_show_vpd(struct seq_file *seq, struct sky2_hw *hw)
4155{
4156 size_t vpd_size;
4157 loff_t offs;
4158 u8 len;
4159 unsigned char *buf;
4160 u16 reg2;
4161
4162 reg2 = sky2_pci_read16(hw, PCI_DEV_REG2);
4163 vpd_size = 1 << ( ((reg2 & PCI_VPD_ROM_SZ) >> 14) + 8);
4164
4165 seq_printf(seq, "%s Product Data\n", pci_name(hw->pdev));
4166 buf = kmalloc(vpd_size, GFP_KERNEL);
4167 if (!buf) {
4168 seq_puts(seq, "no memory!\n");
4169 return;
4170 }
4171
4172 if (pci_read_vpd(hw->pdev, 0, vpd_size, buf) < 0) {
4173 seq_puts(seq, "VPD read failed\n");
4174 goto out;
4175 }
4176
4177 if (buf[0] != VPD_MAGIC) {
4178 seq_printf(seq, "VPD tag mismatch: %#x\n", buf[0]);
4179 goto out;
4180 }
4181 len = buf[1];
4182 if (len == 0 || len > vpd_size - 4) {
4183 seq_printf(seq, "Invalid id length: %d\n", len);
4184 goto out;
4185 }
4186
4187 seq_printf(seq, "%.*s\n", len, buf + 3);
4188 offs = len + 3;
4189
4190 while (offs < vpd_size - 4) {
4191 int i;
4192
4193 if (!memcmp("RW", buf + offs, 2)) /* end marker */
4194 break;
4195 len = buf[offs + 2];
4196 if (offs + len + 3 >= vpd_size)
4197 break;
4198
4199 for (i = 0; i < ARRAY_SIZE(vpd_tags); i++) {
4200 if (!memcmp(vpd_tags[i].tag, buf + offs, 2)) {
4201 seq_printf(seq, " %s: %.*s\n",
4202 vpd_tags[i].label, len, buf + offs + 3);
4203 break;
4204 }
4205 }
4206 offs += len + 3;
4207 }
4208out:
4209 kfree(buf);
4210}
4211
3cf26753
SH
4212static int sky2_debug_show(struct seq_file *seq, void *v)
4213{
4214 struct net_device *dev = seq->private;
4215 const struct sky2_port *sky2 = netdev_priv(dev);
bea3348e 4216 struct sky2_hw *hw = sky2->hw;
3cf26753
SH
4217 unsigned port = sky2->port;
4218 unsigned idx, last;
4219 int sop;
4220
e4c2abe2 4221 sky2_show_vpd(seq, hw);
3cf26753 4222
e4c2abe2 4223 seq_printf(seq, "\nIRQ src=%x mask=%x control=%x\n",
3cf26753
SH
4224 sky2_read32(hw, B0_ISRC),
4225 sky2_read32(hw, B0_IMSK),
4226 sky2_read32(hw, B0_Y2_SP_ICR));
4227
e4c2abe2
SH
4228 if (!netif_running(dev)) {
4229 seq_printf(seq, "network not running\n");
4230 return 0;
4231 }
4232
bea3348e 4233 napi_disable(&hw->napi);
3cf26753
SH
4234 last = sky2_read16(hw, STAT_PUT_IDX);
4235
4236 if (hw->st_idx == last)
4237 seq_puts(seq, "Status ring (empty)\n");
4238 else {
4239 seq_puts(seq, "Status ring\n");
4240 for (idx = hw->st_idx; idx != last && idx < STATUS_RING_SIZE;
4241 idx = RING_NEXT(idx, STATUS_RING_SIZE)) {
4242 const struct sky2_status_le *le = hw->st_le + idx;
4243 seq_printf(seq, "[%d] %#x %d %#x\n",
4244 idx, le->opcode, le->length, le->status);
4245 }
4246 seq_puts(seq, "\n");
4247 }
4248
4249 seq_printf(seq, "Tx ring pending=%u...%u report=%d done=%d\n",
4250 sky2->tx_cons, sky2->tx_prod,
4251 sky2_read16(hw, port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX),
4252 sky2_read16(hw, Q_ADDR(txqaddr[port], Q_DONE)));
4253
4254 /* Dump contents of tx ring */
4255 sop = 1;
ee5f68fe
SH
4256 for (idx = sky2->tx_next; idx != sky2->tx_prod && idx < sky2->tx_ring_size;
4257 idx = RING_NEXT(idx, sky2->tx_ring_size)) {
3cf26753
SH
4258 const struct sky2_tx_le *le = sky2->tx_le + idx;
4259 u32 a = le32_to_cpu(le->addr);
4260
4261 if (sop)
4262 seq_printf(seq, "%u:", idx);
4263 sop = 0;
4264
4265 switch(le->opcode & ~HW_OWNER) {
4266 case OP_ADDR64:
4267 seq_printf(seq, " %#x:", a);
4268 break;
4269 case OP_LRGLEN:
4270 seq_printf(seq, " mtu=%d", a);
4271 break;
4272 case OP_VLAN:
4273 seq_printf(seq, " vlan=%d", be16_to_cpu(le->length));
4274 break;
4275 case OP_TCPLISW:
4276 seq_printf(seq, " csum=%#x", a);
4277 break;
4278 case OP_LARGESEND:
4279 seq_printf(seq, " tso=%#x(%d)", a, le16_to_cpu(le->length));
4280 break;
4281 case OP_PACKET:
4282 seq_printf(seq, " %#x(%d)", a, le16_to_cpu(le->length));
4283 break;
4284 case OP_BUFFER:
4285 seq_printf(seq, " frag=%#x(%d)", a, le16_to_cpu(le->length));
4286 break;
4287 default:
4288 seq_printf(seq, " op=%#x,%#x(%d)", le->opcode,
4289 a, le16_to_cpu(le->length));
4290 }
4291
4292 if (le->ctrl & EOP) {
4293 seq_putc(seq, '\n');
4294 sop = 1;
4295 }
4296 }
4297
4298 seq_printf(seq, "\nRx ring hw get=%d put=%d last=%d\n",
4299 sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_GET_IDX)),
c409c34b 4300 sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_PUT_IDX)),
3cf26753
SH
4301 sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_LAST_IDX)));
4302
d1d08d12 4303 sky2_read32(hw, B0_Y2_SP_LISR);
bea3348e 4304 napi_enable(&hw->napi);
3cf26753
SH
4305 return 0;
4306}
4307
4308static int sky2_debug_open(struct inode *inode, struct file *file)
4309{
4310 return single_open(file, sky2_debug_show, inode->i_private);
4311}
4312
4313static const struct file_operations sky2_debug_fops = {
4314 .owner = THIS_MODULE,
4315 .open = sky2_debug_open,
4316 .read = seq_read,
4317 .llseek = seq_lseek,
4318 .release = single_release,
4319};
4320
4321/*
4322 * Use network device events to create/remove/rename
4323 * debugfs file entries
4324 */
4325static int sky2_device_event(struct notifier_block *unused,
4326 unsigned long event, void *ptr)
4327{
4328 struct net_device *dev = ptr;
5b296bc9 4329 struct sky2_port *sky2 = netdev_priv(dev);
3cf26753 4330
1436b301 4331 if (dev->netdev_ops->ndo_open != sky2_up || !sky2_debug)
5b296bc9 4332 return NOTIFY_DONE;
3cf26753 4333
5b296bc9
SH
4334 switch(event) {
4335 case NETDEV_CHANGENAME:
4336 if (sky2->debugfs) {
4337 sky2->debugfs = debugfs_rename(sky2_debug, sky2->debugfs,
4338 sky2_debug, dev->name);
4339 }
4340 break;
3cf26753 4341
5b296bc9
SH
4342 case NETDEV_GOING_DOWN:
4343 if (sky2->debugfs) {
4344 printk(KERN_DEBUG PFX "%s: remove debugfs\n",
4345 dev->name);
4346 debugfs_remove(sky2->debugfs);
4347 sky2->debugfs = NULL;
3cf26753 4348 }
5b296bc9
SH
4349 break;
4350
4351 case NETDEV_UP:
4352 sky2->debugfs = debugfs_create_file(dev->name, S_IRUGO,
4353 sky2_debug, dev,
4354 &sky2_debug_fops);
4355 if (IS_ERR(sky2->debugfs))
4356 sky2->debugfs = NULL;
3cf26753
SH
4357 }
4358
4359 return NOTIFY_DONE;
4360}
4361
4362static struct notifier_block sky2_notifier = {
4363 .notifier_call = sky2_device_event,
4364};
4365
4366
4367static __init void sky2_debug_init(void)
4368{
4369 struct dentry *ent;
4370
4371 ent = debugfs_create_dir("sky2", NULL);
4372 if (!ent || IS_ERR(ent))
4373 return;
4374
4375 sky2_debug = ent;
4376 register_netdevice_notifier(&sky2_notifier);
4377}
4378
4379static __exit void sky2_debug_cleanup(void)
4380{
4381 if (sky2_debug) {
4382 unregister_netdevice_notifier(&sky2_notifier);
4383 debugfs_remove(sky2_debug);
4384 sky2_debug = NULL;
4385 }
4386}
4387
4388#else
4389#define sky2_debug_init()
4390#define sky2_debug_cleanup()
4391#endif
4392
1436b301
SH
4393/* Two copies of network device operations to handle special case of
4394 not allowing netpoll on second port */
4395static const struct net_device_ops sky2_netdev_ops[2] = {
4396 {
4397 .ndo_open = sky2_up,
4398 .ndo_stop = sky2_down,
00829823 4399 .ndo_start_xmit = sky2_xmit_frame,
1436b301
SH
4400 .ndo_do_ioctl = sky2_ioctl,
4401 .ndo_validate_addr = eth_validate_addr,
4402 .ndo_set_mac_address = sky2_set_mac_address,
4403 .ndo_set_multicast_list = sky2_set_multicast,
4404 .ndo_change_mtu = sky2_change_mtu,
4405 .ndo_tx_timeout = sky2_tx_timeout,
4406#ifdef SKY2_VLAN_TAG_USED
4407 .ndo_vlan_rx_register = sky2_vlan_rx_register,
4408#endif
4409#ifdef CONFIG_NET_POLL_CONTROLLER
4410 .ndo_poll_controller = sky2_netpoll,
4411#endif
4412 },
4413 {
4414 .ndo_open = sky2_up,
4415 .ndo_stop = sky2_down,
00829823 4416 .ndo_start_xmit = sky2_xmit_frame,
1436b301
SH
4417 .ndo_do_ioctl = sky2_ioctl,
4418 .ndo_validate_addr = eth_validate_addr,
4419 .ndo_set_mac_address = sky2_set_mac_address,
4420 .ndo_set_multicast_list = sky2_set_multicast,
4421 .ndo_change_mtu = sky2_change_mtu,
4422 .ndo_tx_timeout = sky2_tx_timeout,
4423#ifdef SKY2_VLAN_TAG_USED
4424 .ndo_vlan_rx_register = sky2_vlan_rx_register,
4425#endif
4426 },
4427};
3cf26753 4428
cd28ab6a
SH
4429/* Initialize network device */
4430static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
e3173832 4431 unsigned port,
be63a21c 4432 int highmem, int wol)
cd28ab6a
SH
4433{
4434 struct sky2_port *sky2;
4435 struct net_device *dev = alloc_etherdev(sizeof(*sky2));
4436
4437 if (!dev) {
898eb71c 4438 dev_err(&hw->pdev->dev, "etherdev alloc failed\n");
cd28ab6a
SH
4439 return NULL;
4440 }
4441
cd28ab6a 4442 SET_NETDEV_DEV(dev, &hw->pdev->dev);
ef743d33 4443 dev->irq = hw->pdev->irq;
cd28ab6a 4444 SET_ETHTOOL_OPS(dev, &sky2_ethtool_ops);
cd28ab6a 4445 dev->watchdog_timeo = TX_WATCHDOG;
1436b301 4446 dev->netdev_ops = &sky2_netdev_ops[port];
cd28ab6a
SH
4447
4448 sky2 = netdev_priv(dev);
4449 sky2->netdev = dev;
4450 sky2->hw = hw;
4451 sky2->msg_enable = netif_msg_init(debug, default_msg);
4452
cd28ab6a 4453 /* Auto speed and flow control */
0ea065e5
SH
4454 sky2->flags = SKY2_FLAG_AUTO_SPEED | SKY2_FLAG_AUTO_PAUSE;
4455 if (hw->chip_id != CHIP_ID_YUKON_XL)
4456 sky2->flags |= SKY2_FLAG_RX_CHECKSUM;
4457
16ad91e1
SH
4458 sky2->flow_mode = FC_BOTH;
4459
cd28ab6a
SH
4460 sky2->duplex = -1;
4461 sky2->speed = -1;
4462 sky2->advertising = sky2_supported_modes(hw);
be63a21c 4463 sky2->wol = wol;
75d070c5 4464
e07b1aa8 4465 spin_lock_init(&sky2->phy_lock);
ee5f68fe 4466
793b883e 4467 sky2->tx_pending = TX_DEF_PENDING;
ee5f68fe 4468 sky2->tx_ring_size = roundup_pow_of_two(TX_DEF_PENDING+1);
290d4de5 4469 sky2->rx_pending = RX_DEF_PENDING;
cd28ab6a
SH
4470
4471 hw->dev[port] = dev;
4472
4473 sky2->port = port;
4474
4a50a876 4475 dev->features |= NETIF_F_TSO | NETIF_F_IP_CSUM | NETIF_F_SG;
cd28ab6a
SH
4476 if (highmem)
4477 dev->features |= NETIF_F_HIGHDMA;
cd28ab6a 4478
d1f13708 4479#ifdef SKY2_VLAN_TAG_USED
d6c9bc1e
SH
4480 /* The workaround for FE+ status conflicts with VLAN tag detection. */
4481 if (!(sky2->hw->chip_id == CHIP_ID_YUKON_FE_P &&
4482 sky2->hw->chip_rev == CHIP_REV_YU_FE2_A0)) {
4483 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
d6c9bc1e 4484 }
d1f13708
SH
4485#endif
4486
cd28ab6a 4487 /* read the mac address */
793b883e 4488 memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8, ETH_ALEN);
2995bfb7 4489 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
cd28ab6a 4490
cd28ab6a
SH
4491 return dev;
4492}
4493
28bd181a 4494static void __devinit sky2_show_addr(struct net_device *dev)
cd28ab6a
SH
4495{
4496 const struct sky2_port *sky2 = netdev_priv(dev);
4497
4498 if (netif_msg_probe(sky2))
e174961c
JB
4499 printk(KERN_INFO PFX "%s: addr %pM\n",
4500 dev->name, dev->dev_addr);
cd28ab6a
SH
4501}
4502
fb2690a9 4503/* Handle software interrupt used during MSI test */
7d12e780 4504static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
fb2690a9
SH
4505{
4506 struct sky2_hw *hw = dev_id;
4507 u32 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
4508
4509 if (status == 0)
4510 return IRQ_NONE;
4511
4512 if (status & Y2_IS_IRQ_SW) {
ea76e635 4513 hw->flags |= SKY2_HW_USE_MSI;
fb2690a9
SH
4514 wake_up(&hw->msi_wait);
4515 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
4516 }
4517 sky2_write32(hw, B0_Y2_SP_ICR, 2);
4518
4519 return IRQ_HANDLED;
4520}
4521
4522/* Test interrupt path by forcing a a software IRQ */
4523static int __devinit sky2_test_msi(struct sky2_hw *hw)
4524{
4525 struct pci_dev *pdev = hw->pdev;
4526 int err;
4527
bb507fe1
SH
4528 init_waitqueue_head (&hw->msi_wait);
4529
fb2690a9
SH
4530 sky2_write32(hw, B0_IMSK, Y2_IS_IRQ_SW);
4531
b0a20ded 4532 err = request_irq(pdev->irq, sky2_test_intr, 0, DRV_NAME, hw);
fb2690a9 4533 if (err) {
b02a9258 4534 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
fb2690a9
SH
4535 return err;
4536 }
4537
fb2690a9 4538 sky2_write8(hw, B0_CTST, CS_ST_SW_IRQ);
bb507fe1 4539 sky2_read8(hw, B0_CTST);
fb2690a9 4540
ea76e635 4541 wait_event_timeout(hw->msi_wait, (hw->flags & SKY2_HW_USE_MSI), HZ/10);
fb2690a9 4542
ea76e635 4543 if (!(hw->flags & SKY2_HW_USE_MSI)) {
fb2690a9 4544 /* MSI test failed, go back to INTx mode */
b02a9258
SH
4545 dev_info(&pdev->dev, "No interrupt generated using MSI, "
4546 "switching to INTx mode.\n");
fb2690a9
SH
4547
4548 err = -EOPNOTSUPP;
4549 sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
4550 }
4551
4552 sky2_write32(hw, B0_IMSK, 0);
2bffc23a 4553 sky2_read32(hw, B0_IMSK);
fb2690a9
SH
4554
4555 free_irq(pdev->irq, hw);
4556
4557 return err;
4558}
4559
c7127a34
SH
4560/* This driver supports yukon2 chipset only */
4561static const char *sky2_name(u8 chipid, char *buf, int sz)
4562{
4563 const char *name[] = {
4564 "XL", /* 0xb3 */
4565 "EC Ultra", /* 0xb4 */
4566 "Extreme", /* 0xb5 */
4567 "EC", /* 0xb6 */
4568 "FE", /* 0xb7 */
4569 "FE+", /* 0xb8 */
4570 "Supreme", /* 0xb9 */
0ce8b98d 4571 "UL 2", /* 0xba */
0f5aac70
SH
4572 "Unknown", /* 0xbb */
4573 "Optima", /* 0xbc */
c7127a34
SH
4574 };
4575
dae3a511 4576 if (chipid >= CHIP_ID_YUKON_XL && chipid <= CHIP_ID_YUKON_OPT)
c7127a34
SH
4577 strncpy(buf, name[chipid - CHIP_ID_YUKON_XL], sz);
4578 else
4579 snprintf(buf, sz, "(chip %#x)", chipid);
4580 return buf;
4581}
4582
cd28ab6a
SH
4583static int __devinit sky2_probe(struct pci_dev *pdev,
4584 const struct pci_device_id *ent)
4585{
7f60c64b 4586 struct net_device *dev;
cd28ab6a 4587 struct sky2_hw *hw;
be63a21c 4588 int err, using_dac = 0, wol_default;
3834507d 4589 u32 reg;
c7127a34 4590 char buf1[16];
cd28ab6a 4591
793b883e
SH
4592 err = pci_enable_device(pdev);
4593 if (err) {
b02a9258 4594 dev_err(&pdev->dev, "cannot enable PCI device\n");
cd28ab6a
SH
4595 goto err_out;
4596 }
4597
6cc90a5a
SH
4598 /* Get configuration information
4599 * Note: only regular PCI config access once to test for HW issues
4600 * other PCI access through shared memory for speed and to
4601 * avoid MMCONFIG problems.
4602 */
4603 err = pci_read_config_dword(pdev, PCI_DEV_REG2, &reg);
4604 if (err) {
4605 dev_err(&pdev->dev, "PCI read config failed\n");
4606 goto err_out;
4607 }
4608
4609 if (~reg == 0) {
4610 dev_err(&pdev->dev, "PCI configuration read error\n");
4611 goto err_out;
4612 }
4613
793b883e
SH
4614 err = pci_request_regions(pdev, DRV_NAME);
4615 if (err) {
b02a9258 4616 dev_err(&pdev->dev, "cannot obtain PCI resources\n");
44a1d2e5 4617 goto err_out_disable;
cd28ab6a
SH
4618 }
4619
4620 pci_set_master(pdev);
4621
d1f3d4dd 4622 if (sizeof(dma_addr_t) > sizeof(u32) &&
6a35528a 4623 !(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)))) {
d1f3d4dd 4624 using_dac = 1;
6a35528a 4625 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
d1f3d4dd 4626 if (err < 0) {
b02a9258
SH
4627 dev_err(&pdev->dev, "unable to obtain 64 bit DMA "
4628 "for consistent allocations\n");
d1f3d4dd
SH
4629 goto err_out_free_regions;
4630 }
d1f3d4dd 4631 } else {
284901a9 4632 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
cd28ab6a 4633 if (err) {
b02a9258 4634 dev_err(&pdev->dev, "no usable DMA configuration\n");
cd28ab6a
SH
4635 goto err_out_free_regions;
4636 }
4637 }
d1f3d4dd 4638
3834507d
SH
4639
4640#ifdef __BIG_ENDIAN
4641 /* The sk98lin vendor driver uses hardware byte swapping but
4642 * this driver uses software swapping.
4643 */
4644 reg &= ~PCI_REV_DESC;
4645 err = pci_write_config_dword(pdev,PCI_DEV_REG2, reg);
4646 if (err) {
4647 dev_err(&pdev->dev, "PCI write config failed\n");
4648 goto err_out_free_regions;
4649 }
4650#endif
4651
9d731d77 4652 wol_default = device_may_wakeup(&pdev->dev) ? WAKE_MAGIC : 0;
be63a21c 4653
cd28ab6a 4654 err = -ENOMEM;
66466797
SH
4655
4656 hw = kzalloc(sizeof(*hw) + strlen(DRV_NAME "@pci:")
4657 + strlen(pci_name(pdev)) + 1, GFP_KERNEL);
cd28ab6a 4658 if (!hw) {
b02a9258 4659 dev_err(&pdev->dev, "cannot allocate hardware struct\n");
cd28ab6a
SH
4660 goto err_out_free_regions;
4661 }
4662
cd28ab6a 4663 hw->pdev = pdev;
66466797 4664 sprintf(hw->irq_name, DRV_NAME "@pci:%s", pci_name(pdev));
cd28ab6a
SH
4665
4666 hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
4667 if (!hw->regs) {
b02a9258 4668 dev_err(&pdev->dev, "cannot map device registers\n");
cd28ab6a
SH
4669 goto err_out_free_hw;
4670 }
4671
08c06d8a 4672 /* ring for status responses */
167f53d0 4673 hw->st_le = pci_alloc_consistent(pdev, STATUS_LE_BYTES, &hw->st_dma);
08c06d8a
SH
4674 if (!hw->st_le)
4675 goto err_out_iounmap;
4676
e3173832 4677 err = sky2_init(hw);
cd28ab6a 4678 if (err)
793b883e 4679 goto err_out_iounmap;
cd28ab6a 4680
c844d483
SH
4681 dev_info(&pdev->dev, "Yukon-2 %s chip revision %d\n",
4682 sky2_name(hw->chip_id, buf1, sizeof(buf1)), hw->chip_rev);
cd28ab6a 4683
e3173832
SH
4684 sky2_reset(hw);
4685
be63a21c 4686 dev = sky2_init_netdev(hw, 0, using_dac, wol_default);
7f60c64b 4687 if (!dev) {
4688 err = -ENOMEM;
cd28ab6a 4689 goto err_out_free_pci;
7f60c64b 4690 }
cd28ab6a 4691
9fa1b1f3
SH
4692 if (!disable_msi && pci_enable_msi(pdev) == 0) {
4693 err = sky2_test_msi(hw);
4694 if (err == -EOPNOTSUPP)
4695 pci_disable_msi(pdev);
4696 else if (err)
4697 goto err_out_free_netdev;
4698 }
4699
793b883e
SH
4700 err = register_netdev(dev);
4701 if (err) {
b02a9258 4702 dev_err(&pdev->dev, "cannot register net device\n");
cd28ab6a
SH
4703 goto err_out_free_netdev;
4704 }
4705
33cb7d33
BP
4706 netif_carrier_off(dev);
4707
6de16237
SH
4708 netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT);
4709
ea76e635
SH
4710 err = request_irq(pdev->irq, sky2_intr,
4711 (hw->flags & SKY2_HW_USE_MSI) ? 0 : IRQF_SHARED,
66466797 4712 hw->irq_name, hw);
9fa1b1f3 4713 if (err) {
b02a9258 4714 dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
9fa1b1f3
SH
4715 goto err_out_unregister;
4716 }
4717 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
6de16237 4718 napi_enable(&hw->napi);
9fa1b1f3 4719
cd28ab6a
SH
4720 sky2_show_addr(dev);
4721
7f60c64b 4722 if (hw->ports > 1) {
4723 struct net_device *dev1;
4724
ca519274 4725 err = -ENOMEM;
be63a21c 4726 dev1 = sky2_init_netdev(hw, 1, using_dac, wol_default);
ca519274
SH
4727 if (dev1 && (err = register_netdev(dev1)) == 0)
4728 sky2_show_addr(dev1);
4729 else {
b02a9258
SH
4730 dev_warn(&pdev->dev,
4731 "register of second port failed (%d)\n", err);
cd28ab6a 4732 hw->dev[1] = NULL;
ca519274
SH
4733 hw->ports = 1;
4734 if (dev1)
4735 free_netdev(dev1);
4736 }
cd28ab6a
SH
4737 }
4738
32c2c300 4739 setup_timer(&hw->watchdog_timer, sky2_watchdog, (unsigned long) hw);
81906791
SH
4740 INIT_WORK(&hw->restart_work, sky2_restart);
4741
793b883e 4742 pci_set_drvdata(pdev, hw);
1ae861e6 4743 pdev->d3_delay = 150;
793b883e 4744
cd28ab6a
SH
4745 return 0;
4746
793b883e 4747err_out_unregister:
ea76e635 4748 if (hw->flags & SKY2_HW_USE_MSI)
b0a20ded 4749 pci_disable_msi(pdev);
793b883e 4750 unregister_netdev(dev);
cd28ab6a
SH
4751err_out_free_netdev:
4752 free_netdev(dev);
cd28ab6a 4753err_out_free_pci:
793b883e 4754 sky2_write8(hw, B0_CTST, CS_RST_SET);
167f53d0 4755 pci_free_consistent(pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
cd28ab6a
SH
4756err_out_iounmap:
4757 iounmap(hw->regs);
4758err_out_free_hw:
4759 kfree(hw);
4760err_out_free_regions:
4761 pci_release_regions(pdev);
44a1d2e5 4762err_out_disable:
cd28ab6a 4763 pci_disable_device(pdev);
cd28ab6a 4764err_out:
549a68c3 4765 pci_set_drvdata(pdev, NULL);
cd28ab6a
SH
4766 return err;
4767}
4768
4769static void __devexit sky2_remove(struct pci_dev *pdev)
4770{
793b883e 4771 struct sky2_hw *hw = pci_get_drvdata(pdev);
6de16237 4772 int i;
cd28ab6a 4773
793b883e 4774 if (!hw)
cd28ab6a
SH
4775 return;
4776
32c2c300 4777 del_timer_sync(&hw->watchdog_timer);
6de16237 4778 cancel_work_sync(&hw->restart_work);
d27ed387 4779
b877fe28 4780 for (i = hw->ports-1; i >= 0; --i)
6de16237 4781 unregister_netdev(hw->dev[i]);
81906791 4782
d27ed387 4783 sky2_write32(hw, B0_IMSK, 0);
cd28ab6a 4784
ae306cca
SH
4785 sky2_power_aux(hw);
4786
793b883e 4787 sky2_write8(hw, B0_CTST, CS_RST_SET);
5afa0a9c 4788 sky2_read8(hw, B0_CTST);
cd28ab6a
SH
4789
4790 free_irq(pdev->irq, hw);
ea76e635 4791 if (hw->flags & SKY2_HW_USE_MSI)
b0a20ded 4792 pci_disable_msi(pdev);
793b883e 4793 pci_free_consistent(pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
cd28ab6a
SH
4794 pci_release_regions(pdev);
4795 pci_disable_device(pdev);
793b883e 4796
b877fe28 4797 for (i = hw->ports-1; i >= 0; --i)
6de16237
SH
4798 free_netdev(hw->dev[i]);
4799
cd28ab6a
SH
4800 iounmap(hw->regs);
4801 kfree(hw);
5afa0a9c 4802
cd28ab6a
SH
4803 pci_set_drvdata(pdev, NULL);
4804}
4805
4806#ifdef CONFIG_PM
4807static int sky2_suspend(struct pci_dev *pdev, pm_message_t state)
4808{
793b883e 4809 struct sky2_hw *hw = pci_get_drvdata(pdev);
e3173832 4810 int i, wol = 0;
cd28ab6a 4811
549a68c3
SH
4812 if (!hw)
4813 return 0;
4814
063a0b38
SH
4815 del_timer_sync(&hw->watchdog_timer);
4816 cancel_work_sync(&hw->restart_work);
4817
19720737 4818 rtnl_lock();
f05267e7 4819 for (i = 0; i < hw->ports; i++) {
cd28ab6a 4820 struct net_device *dev = hw->dev[i];
e3173832 4821 struct sky2_port *sky2 = netdev_priv(dev);
cd28ab6a 4822
af18d8b8 4823 sky2_detach(dev);
e3173832
SH
4824
4825 if (sky2->wol)
4826 sky2_wol_init(sky2);
4827
4828 wol |= sky2->wol;
cd28ab6a
SH
4829 }
4830
8ab8fca2 4831 sky2_write32(hw, B0_IMSK, 0);
6de16237 4832 napi_disable(&hw->napi);
ae306cca 4833 sky2_power_aux(hw);
19720737 4834 rtnl_unlock();
e3173832 4835
d374c1c1 4836 pci_save_state(pdev);
e3173832 4837 pci_enable_wake(pdev, pci_choose_state(pdev, state), wol);
f71eb1a2 4838 pci_set_power_state(pdev, pci_choose_state(pdev, state));
ae306cca 4839
2ccc99b7 4840 return 0;
cd28ab6a
SH
4841}
4842
4843static int sky2_resume(struct pci_dev *pdev)
4844{
793b883e 4845 struct sky2_hw *hw = pci_get_drvdata(pdev);
08c06d8a 4846 int i, err;
cd28ab6a 4847
549a68c3
SH
4848 if (!hw)
4849 return 0;
4850
f71eb1a2
SH
4851 err = pci_set_power_state(pdev, PCI_D0);
4852 if (err)
4853 goto out;
ae306cca
SH
4854
4855 err = pci_restore_state(pdev);
4856 if (err)
4857 goto out;
4858
cd28ab6a 4859 pci_enable_wake(pdev, PCI_D0, 0);
1ad5b4a5
SH
4860
4861 /* Re-enable all clocks */
a0db28b8 4862 err = pci_write_config_dword(pdev, PCI_DEV_REG3, 0);
4863 if (err) {
4864 dev_err(&pdev->dev, "PCI write config failed\n");
4865 goto out;
4866 }
1ad5b4a5 4867
e3173832 4868 sky2_reset(hw);
8ab8fca2 4869 sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
6de16237 4870 napi_enable(&hw->napi);
8ab8fca2 4871
af18d8b8 4872 rtnl_lock();
f05267e7 4873 for (i = 0; i < hw->ports; i++) {
af18d8b8
SH
4874 err = sky2_reattach(hw->dev[i]);
4875 if (err)
4876 goto out;
cd28ab6a 4877 }
af18d8b8 4878 rtnl_unlock();
eb35cf60 4879
ae306cca 4880 return 0;
08c06d8a 4881out:
af18d8b8
SH
4882 rtnl_unlock();
4883
b02a9258 4884 dev_err(&pdev->dev, "resume failed (%d)\n", err);
ae306cca 4885 pci_disable_device(pdev);
08c06d8a 4886 return err;
cd28ab6a
SH
4887}
4888#endif
4889
e3173832
SH
4890static void sky2_shutdown(struct pci_dev *pdev)
4891{
4892 struct sky2_hw *hw = pci_get_drvdata(pdev);
4893 int i, wol = 0;
4894
549a68c3
SH
4895 if (!hw)
4896 return;
4897
19720737 4898 rtnl_lock();
5c0d6b34 4899 del_timer_sync(&hw->watchdog_timer);
e3173832
SH
4900
4901 for (i = 0; i < hw->ports; i++) {
4902 struct net_device *dev = hw->dev[i];
4903 struct sky2_port *sky2 = netdev_priv(dev);
4904
4905 if (sky2->wol) {
4906 wol = 1;
4907 sky2_wol_init(sky2);
4908 }
4909 }
4910
4911 if (wol)
4912 sky2_power_aux(hw);
19720737 4913 rtnl_unlock();
e3173832
SH
4914
4915 pci_enable_wake(pdev, PCI_D3hot, wol);
4916 pci_enable_wake(pdev, PCI_D3cold, wol);
4917
4918 pci_disable_device(pdev);
f71eb1a2 4919 pci_set_power_state(pdev, PCI_D3hot);
e3173832
SH
4920}
4921
cd28ab6a 4922static struct pci_driver sky2_driver = {
793b883e
SH
4923 .name = DRV_NAME,
4924 .id_table = sky2_id_table,
4925 .probe = sky2_probe,
4926 .remove = __devexit_p(sky2_remove),
cd28ab6a 4927#ifdef CONFIG_PM
793b883e
SH
4928 .suspend = sky2_suspend,
4929 .resume = sky2_resume,
cd28ab6a 4930#endif
e3173832 4931 .shutdown = sky2_shutdown,
cd28ab6a
SH
4932};
4933
4934static int __init sky2_init_module(void)
4935{
c844d483
SH
4936 pr_info(PFX "driver version " DRV_VERSION "\n");
4937
3cf26753 4938 sky2_debug_init();
50241c4c 4939 return pci_register_driver(&sky2_driver);
cd28ab6a
SH
4940}
4941
4942static void __exit sky2_cleanup_module(void)
4943{
4944 pci_unregister_driver(&sky2_driver);
3cf26753 4945 sky2_debug_cleanup();
cd28ab6a
SH
4946}
4947
4948module_init(sky2_init_module);
4949module_exit(sky2_cleanup_module);
4950
4951MODULE_DESCRIPTION("Marvell Yukon 2 Gigabit Ethernet driver");
65ebe634 4952MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
cd28ab6a 4953MODULE_LICENSE("GPL");
5f4f9dc1 4954MODULE_VERSION(DRV_VERSION);