sky2.c 138.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * New driver for Marvell Yukon 2 chipset.
 * Based on earlier sk98lin, and skge driver.
 *
 * This driver intentionally does not support all the features
 * of the original driver such as link fail-over and link management because
 * those should be done at higher levels.
 *
 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
13
 * the Free Software Foundation; either version 2 of the License.
14 15 16
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
S
Stephen Hemminger 已提交
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 19 20 21 22 23 24
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

25 26
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

S
Stephen Hemminger 已提交
27
#include <linux/crc32.h>
28 29 30
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netdevice.h>
A
Andrew Morton 已提交
31
#include <linux/dma-mapping.h>
32 33 34
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/pci.h>
35
#include <linux/interrupt.h>
36
#include <linux/ip.h>
37
#include <linux/slab.h>
38
#include <net/ip.h>
39 40 41
#include <linux/tcp.h>
#include <linux/in.h>
#include <linux/delay.h>
42
#include <linux/workqueue.h>
43
#include <linux/if_vlan.h>
S
Stephen Hemminger 已提交
44
#include <linux/prefetch.h>
S
Stephen Hemminger 已提交
45
#include <linux/debugfs.h>
46
#include <linux/mii.h>
T
Tim Harvey 已提交
47 48
#include <linux/of_device.h>
#include <linux/of_net.h>
49
#include <linux/dmi.h>
50 51 52 53 54 55

#include <asm/irq.h>

#include "sky2.h"

#define DRV_NAME		"sky2"
S
stephen hemminger 已提交
56
#define DRV_VERSION		"1.30"
57 58 59 60

/*
 * The Yukon II chipset takes 64 bit command blocks (called list elements)
 * that are organized into three (receive, transmit, status) different rings
61
 * similar to Tigon3.
62 63
 */

64
#define RX_LE_SIZE	    	1024
65
#define RX_LE_BYTES		(RX_LE_SIZE*sizeof(struct sky2_rx_le))
66
#define RX_MAX_PENDING		(RX_LE_SIZE/6 - 2)
67
#define RX_DEF_PENDING		RX_MAX_PENDING
S
Stephen Hemminger 已提交
68

69
/* This is the worst case number of transmit list elements for a single skb:
70 71
   VLAN:GSO + CKSUM + Data + skb_frags * DMA */
#define MAX_SKB_TX_LE	(2 + (sizeof(dma_addr_t)/sizeof(u32))*(MAX_SKB_FRAGS+1))
72
#define TX_MIN_PENDING		(MAX_SKB_TX_LE+1)
73
#define TX_MAX_PENDING		1024
74
#define TX_DEF_PENDING		63
75 76 77 78 79

#define TX_WATCHDOG		(5 * HZ)
#define NAPI_WEIGHT		64
#define PHY_RETRIES		1000

80 81
#define SKY2_EEPROM_MAGIC	0x9955aabb

M
Mike McCormack 已提交
82
#define RING_NEXT(x, s)	(((x)+1) & ((s)-1))
83

84
static const u32 default_msg =
S
Stephen Hemminger 已提交
85 86
    NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK
    | NETIF_MSG_TIMER | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR
87
    | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN;
88

S
Stephen Hemminger 已提交
89
static int debug = -1;		/* defaults above */
90 91 92
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");

93
static int copybreak __read_mostly = 128;
94 95 96
module_param(copybreak, int, 0);
MODULE_PARM_DESC(copybreak, "Receive copy threshold");

97
static int disable_msi = -1;
98 99 100
module_param(disable_msi, int, 0);
MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)");

101 102 103 104
static int legacy_pme = 0;
module_param(legacy_pme, int, 0);
MODULE_PARM_DESC(legacy_pme, "Legacy power management");

105
static const struct pci_device_id sky2_id_table[] = {
106 107
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) }, /* SK-9Sxx */
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E00) }, /* SK-9Exx */
S
Stephen Hemminger 已提交
108
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E01) }, /* SK-9E21M */
109
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b00) },	/* DGE-560T */
110
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4001) }, 	/* DGE-550SX */
111
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B02) },	/* DGE-560SX */
S
Stephen Hemminger 已提交
112
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4B03) },	/* DGE-550T */
113 114 115 116 117 118 119 120 121 122 123 124
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4340) }, /* 88E8021 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4341) }, /* 88E8022 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4342) }, /* 88E8061 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4343) }, /* 88E8062 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4344) }, /* 88E8021 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4345) }, /* 88E8022 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4346) }, /* 88E8061 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) }, /* 88E8062 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) }, /* 88E8035 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) }, /* 88E8036 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4352) }, /* 88E8038 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4353) }, /* 88E8039 */
S
Stephen Hemminger 已提交
125
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4354) }, /* 88E8040 */
S
Stephen Hemminger 已提交
126
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4355) }, /* 88E8040T */
127
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4356) }, /* 88EC033 */
S
Stephen Hemminger 已提交
128
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4357) }, /* 88E8042 */
S
Stephen Hemminger 已提交
129
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x435A) }, /* 88E8048 */
130 131 132 133 134
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) }, /* 88E8052 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) }, /* 88E8050 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) }, /* 88E8053 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4363) }, /* 88E8055 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4364) }, /* 88E8056 */
S
Stephen Hemminger 已提交
135
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4365) }, /* 88E8070 */
136 137 138
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4366) }, /* 88EC036 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4367) }, /* 88EC032 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4368) }, /* 88EC034 */
S
Stephen Hemminger 已提交
139 140
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4369) }, /* 88EC042 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436A) }, /* 88E8058 */
141
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436B) }, /* 88E8071 */
S
Stephen Hemminger 已提交
142
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436C) }, /* 88E8072 */
143 144
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x436D) }, /* 88E8055 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4370) }, /* 88E8075 */
S
Stephen Hemminger 已提交
145
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4380) }, /* 88E8057 */
S
Stephen Hemminger 已提交
146
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4381) }, /* 88E8059 */
147
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4382) }, /* 88E8079 */
148 149
	{ 0 }
};
S
Stephen Hemminger 已提交
150

151 152 153 154 155
MODULE_DEVICE_TABLE(pci, sky2_id_table);

/* Avoid conditionals by using array */
static const unsigned txqaddr[] = { Q_XA1, Q_XA2 };
static const unsigned rxqaddr[] = { Q_R1, Q_R2 };
S
Stephen Hemminger 已提交
156
static const u32 portirq_msk[] = { Y2_IS_PORT_1, Y2_IS_PORT_2 };
157

158
static void sky2_set_multicast(struct net_device *dev);
159
static irqreturn_t sky2_intr(int irq, void *dev_id);
160

S
Stephen Hemminger 已提交
161
/* Access to PHY via serial interconnect */
162
static int gm_phy_write(struct sky2_hw *hw, unsigned port, u16 reg, u16 val)
163 164 165 166 167 168 169 170
{
	int i;

	gma_write16(hw, port, GM_SMI_DATA, val);
	gma_write16(hw, port, GM_SMI_CTRL,
		    GM_SMI_CT_PHY_AD(PHY_ADDR_MARV) | GM_SMI_CT_REG_AD(reg));

	for (i = 0; i < PHY_RETRIES; i++) {
S
Stephen Hemminger 已提交
171 172 173 174 175
		u16 ctrl = gma_read16(hw, port, GM_SMI_CTRL);
		if (ctrl == 0xffff)
			goto io_error;

		if (!(ctrl & GM_SMI_CT_BUSY))
176
			return 0;
S
Stephen Hemminger 已提交
177 178

		udelay(10);
179
	}
180

M
Mike McCormack 已提交
181
	dev_warn(&hw->pdev->dev, "%s: phy write timeout\n", hw->dev[port]->name);
182
	return -ETIMEDOUT;
S
Stephen Hemminger 已提交
183 184 185 186

io_error:
	dev_err(&hw->pdev->dev, "%s: phy I/O error\n", hw->dev[port]->name);
	return -EIO;
187 188
}

189
static int __gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg, u16 *val)
190 191 192
{
	int i;

S
Stephen Hemminger 已提交
193
	gma_write16(hw, port, GM_SMI_CTRL, GM_SMI_CT_PHY_AD(PHY_ADDR_MARV)
194 195 196
		    | GM_SMI_CT_REG_AD(reg) | GM_SMI_CT_OP_RD);

	for (i = 0; i < PHY_RETRIES; i++) {
S
Stephen Hemminger 已提交
197 198 199 200 201
		u16 ctrl = gma_read16(hw, port, GM_SMI_CTRL);
		if (ctrl == 0xffff)
			goto io_error;

		if (ctrl & GM_SMI_CT_RD_VAL) {
202 203 204 205
			*val = gma_read16(hw, port, GM_SMI_DATA);
			return 0;
		}

S
Stephen Hemminger 已提交
206
		udelay(10);
207 208
	}

S
Stephen Hemminger 已提交
209
	dev_warn(&hw->pdev->dev, "%s: phy read timeout\n", hw->dev[port]->name);
210
	return -ETIMEDOUT;
S
Stephen Hemminger 已提交
211 212 213
io_error:
	dev_err(&hw->pdev->dev, "%s: phy I/O error\n", hw->dev[port]->name);
	return -EIO;
214 215
}

S
Stephen Hemminger 已提交
216
static inline u16 gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg)
217 218
{
	u16 v;
S
Stephen Hemminger 已提交
219
	__gm_phy_read(hw, port, reg, &v);
220
	return v;
221 222
}

223

224 225 226 227 228
static void sky2_power_on(struct sky2_hw *hw)
{
	/* switch power to VCC (WA for VAUX problem) */
	sky2_write8(hw, B0_POWER_CTRL,
		    PC_VAUX_ENA | PC_VCC_ENA | PC_VAUX_OFF | PC_VCC_ON);
229

230 231
	/* disable Core Clock Division, */
	sky2_write32(hw, B2_Y2_CLK_CTRL, Y2_CLK_DIV_DIS);
232

S
stephen hemminger 已提交
233
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > CHIP_REV_YU_XL_A1)
234 235 236 237 238 239 240
		/* enable bits are inverted */
		sky2_write8(hw, B2_Y2_CLK_GATE,
			    Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
			    Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
			    Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);
	else
		sky2_write8(hw, B2_Y2_CLK_GATE, 0);
241

242
	if (hw->flags & SKY2_HW_ADV_POWER_CTL) {
243
		u32 reg;
244

245
		sky2_pci_write32(hw, PCI_DEV_REG3, 0);
246

247
		reg = sky2_pci_read32(hw, PCI_DEV_REG4);
248 249
		/* set all bits to 0 except bits 15..12 and 8 */
		reg &= P_ASPM_CONTROL_MSK;
250
		sky2_pci_write32(hw, PCI_DEV_REG4, reg);
251

252
		reg = sky2_pci_read32(hw, PCI_DEV_REG5);
253 254
		/* set all bits to 0 except bits 28 & 27 */
		reg &= P_CTL_TIM_VMAIN_AV_MSK;
255
		sky2_pci_write32(hw, PCI_DEV_REG5, reg);
256

257
		sky2_pci_write32(hw, PCI_CFG_REG_1, 0);
S
Stephen Hemminger 已提交
258

S
stephen hemminger 已提交
259 260
		sky2_write16(hw, B0_CTST, Y2_HW_WOL_ON);

S
Stephen Hemminger 已提交
261 262 263 264
		/* Enable workaround for dev 4.107 on Yukon-Ultra & Extreme */
		reg = sky2_read32(hw, B2_GP_IO);
		reg |= GLB_GPIO_STAT_RACE_DIS;
		sky2_write32(hw, B2_GP_IO, reg);
265 266

		sky2_read32(hw, B2_GP_IO);
267
	}
268 269 270

	/* Turn on "driver loaded" LED */
	sky2_write16(hw, B0_CTST, Y2_LED_STAT_ON);
271
}
272

273 274
static void sky2_power_aux(struct sky2_hw *hw)
{
S
stephen hemminger 已提交
275
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > CHIP_REV_YU_XL_A1)
276 277 278 279 280 281 282 283
		sky2_write8(hw, B2_Y2_CLK_GATE, 0);
	else
		/* enable bits are inverted */
		sky2_write8(hw, B2_Y2_CLK_GATE,
			    Y2_PCI_CLK_LNK1_DIS | Y2_COR_CLK_LNK1_DIS |
			    Y2_CLK_GAT_LNK1_DIS | Y2_PCI_CLK_LNK2_DIS |
			    Y2_COR_CLK_LNK2_DIS | Y2_CLK_GAT_LNK2_DIS);

284 285 286
	/* switch power to VAUX if supported and PME from D3cold */
	if ( (sky2_read32(hw, B0_CTST) & Y2_VAUX_AVAIL) &&
	     pci_pme_capable(hw->pdev, PCI_D3cold))
287 288 289
		sky2_write8(hw, B0_POWER_CTRL,
			    (PC_VAUX_ENA | PC_VCC_ENA |
			     PC_VAUX_ON | PC_VCC_OFF));
290 291 292

	/* turn off "driver loaded LED" */
	sky2_write16(hw, B0_CTST, Y2_LED_STAT_OFF);
293 294
}

295
static void sky2_gmac_reset(struct sky2_hw *hw, unsigned port)
296 297 298 299 300
{
	u16 reg;

	/* disable all GMAC IRQ's */
	sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), 0);
S
Stephen Hemminger 已提交
301

302 303 304 305 306 307 308 309 310 311
	gma_write16(hw, port, GM_MC_ADDR_H1, 0);	/* clear MC hash */
	gma_write16(hw, port, GM_MC_ADDR_H2, 0);
	gma_write16(hw, port, GM_MC_ADDR_H3, 0);
	gma_write16(hw, port, GM_MC_ADDR_H4, 0);

	reg = gma_read16(hw, port, GM_RX_CTRL);
	reg |= GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA;
	gma_write16(hw, port, GM_RX_CTRL, reg);
}

312 313 314 315 316 317 318 319 320 321
/* flow control to advertise bits */
static const u16 copper_fc_adv[] = {
	[FC_NONE]	= 0,
	[FC_TX]		= PHY_M_AN_ASP,
	[FC_RX]		= PHY_M_AN_PC,
	[FC_BOTH]	= PHY_M_AN_PC | PHY_M_AN_ASP,
};

/* flow control to advertise bits when using 1000BaseX */
static const u16 fiber_fc_adv[] = {
322
	[FC_NONE] = PHY_M_P_NO_PAUSE_X,
323 324
	[FC_TX]   = PHY_M_P_ASYM_MD_X,
	[FC_RX]	  = PHY_M_P_SYM_MD_X,
325
	[FC_BOTH] = PHY_M_P_BOTH_MD_X,
326 327 328 329 330 331 332 333 334 335 336
};

/* flow control to GMA disable bits */
static const u16 gm_fc_disable[] = {
	[FC_NONE] = GM_GPCR_FC_RX_DIS | GM_GPCR_FC_TX_DIS,
	[FC_TX]	  = GM_GPCR_FC_RX_DIS,
	[FC_RX]	  = GM_GPCR_FC_TX_DIS,
	[FC_BOTH] = 0,
};


337 338 339
static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
{
	struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
340
	u16 ctrl, ct1000, adv, pg, ledctrl, ledover, reg;
341

S
Stephen Hemminger 已提交
342
	if ( (sky2->flags & SKY2_FLAG_AUTO_SPEED) &&
343
	    !(hw->flags & SKY2_HW_NEWER_PHY)) {
344 345 346
		u16 ectrl = gm_phy_read(hw, port, PHY_MARV_EXT_CTRL);

		ectrl &= ~(PHY_M_EC_M_DSC_MSK | PHY_M_EC_S_DSC_MSK |
S
Stephen Hemminger 已提交
347
			   PHY_M_EC_MAC_S_MSK);
348 349
		ectrl |= PHY_M_EC_MAC_S(MAC_TX_CLK_25_MHZ);

S
Stephen Hemminger 已提交
350
		/* on PHY 88E1040 Rev.D0 (and newer) downshift control changed */
351
		if (hw->chip_id == CHIP_ID_YUKON_EC)
S
Stephen Hemminger 已提交
352
			/* set downshift counter to 3x and enable downshift */
353 354
			ectrl |= PHY_M_EC_DSC_2(2) | PHY_M_EC_DOWN_S_ENA;
		else
S
Stephen Hemminger 已提交
355 356
			/* set master & slave downshift counter to 1x */
			ectrl |= PHY_M_EC_M_DSC(0) | PHY_M_EC_S_DSC(1);
357 358 359 360 361

		gm_phy_write(hw, port, PHY_MARV_EXT_CTRL, ectrl);
	}

	ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
S
Stephen Hemminger 已提交
362
	if (sky2_is_copper(hw)) {
S
Stephen Hemminger 已提交
363
		if (!(hw->flags & SKY2_HW_GIGABIT)) {
364 365
			/* enable automatic crossover */
			ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO) >> 1;
S
Stephen Hemminger 已提交
366 367 368 369 370 371 372 373 374 375

			if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
			    hw->chip_rev == CHIP_REV_YU_FE2_A0) {
				u16 spec;

				/* Enable Class A driver for FE+ A0 */
				spec = gm_phy_read(hw, port, PHY_MARV_FE_SPEC_2);
				spec |= PHY_M_FESC_SEL_CL_A;
				gm_phy_write(hw, port, PHY_MARV_FE_SPEC_2, spec);
			}
376 377 378 379 380 381 382
		} else {
			/* disable energy detect */
			ctrl &= ~PHY_M_PC_EN_DET_MSK;

			/* enable automatic crossover */
			ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO);

S
Stephen Hemminger 已提交
383
			/* downshift on PHY 88E1112 and 88E1149 is changed */
384 385
			if ( (sky2->flags & SKY2_FLAG_AUTO_SPEED) &&
			     (hw->flags & SKY2_HW_NEWER_PHY)) {
S
Stephen Hemminger 已提交
386
				/* set downshift counter to 3x and enable downshift */
387 388 389 390 391 392 393 394 395
				ctrl &= ~PHY_M_PC_DSC_MSK;
				ctrl |= PHY_M_PC_DSC(2) | PHY_M_PC_DOWN_S_ENA;
			}
		}
	} else {
		/* workaround for deviation #4.88 (CRC errors) */
		/* disable Automatic Crossover */

		ctrl &= ~PHY_M_PC_MDIX_MSK;
S
Stephen Hemminger 已提交
396
	}
397

S
Stephen Hemminger 已提交
398 399 400
	gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

	/* special setup for PHY 88E1112 Fiber */
401
	if (hw->chip_id == CHIP_ID_YUKON_XL && (hw->flags & SKY2_HW_FIBRE_PHY)) {
S
Stephen Hemminger 已提交
402
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
403

S
Stephen Hemminger 已提交
404 405 406 407 408 409 410 411
		/* Fiber: select 1000BASE-X only mode MAC Specific Ctrl Reg. */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
		ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
		ctrl &= ~PHY_M_MAC_MD_MSK;
		ctrl |= PHY_M_MAC_MODE_SEL(PHY_M_MAC_MD_1000BX);
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

		if (hw->pmd_type  == 'P') {
412 413
			/* select page 1 to access Fiber registers */
			gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 1);
S
Stephen Hemminger 已提交
414 415 416 417

			/* for SFP-module set SIGDET polarity to low */
			ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
			ctrl |= PHY_M_FIB_SIGD_POL;
418
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
419
		}
S
Stephen Hemminger 已提交
420 421

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
422 423
	}

S
Stephen Hemminger 已提交
424
	ctrl = PHY_CT_RESET;
425 426
	ct1000 = 0;
	adv = PHY_AN_CSMA;
427
	reg = 0;
428

S
Stephen Hemminger 已提交
429
	if (sky2->flags & SKY2_FLAG_AUTO_SPEED) {
S
Stephen Hemminger 已提交
430
		if (sky2_is_copper(hw)) {
431 432 433 434 435 436 437 438 439 440 441 442
			if (sky2->advertising & ADVERTISED_1000baseT_Full)
				ct1000 |= PHY_M_1000C_AFD;
			if (sky2->advertising & ADVERTISED_1000baseT_Half)
				ct1000 |= PHY_M_1000C_AHD;
			if (sky2->advertising & ADVERTISED_100baseT_Full)
				adv |= PHY_M_AN_100_FD;
			if (sky2->advertising & ADVERTISED_100baseT_Half)
				adv |= PHY_M_AN_100_HD;
			if (sky2->advertising & ADVERTISED_10baseT_Full)
				adv |= PHY_M_AN_10_FD;
			if (sky2->advertising & ADVERTISED_10baseT_Half)
				adv |= PHY_M_AN_10_HD;
S
Stephen Hemminger 已提交
443

S
Stephen Hemminger 已提交
444 445 446 447 448
		} else {	/* special defines for FIBER (88E1040S only) */
			if (sky2->advertising & ADVERTISED_1000baseT_Full)
				adv |= PHY_M_AN_1000X_AFD;
			if (sky2->advertising & ADVERTISED_1000baseT_Half)
				adv |= PHY_M_AN_1000X_AHD;
S
Stephen Hemminger 已提交
449
		}
450 451 452 453 454 455 456

		/* Restart Auto-negotiation */
		ctrl |= PHY_CT_ANE | PHY_CT_RE_CFG;
	} else {
		/* forced speed/duplex settings */
		ct1000 = PHY_M_1000C_MSE;

S
Stephen Hemminger 已提交
457 458
		/* Disable auto update for duplex flow control and duplex */
		reg |= GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_SPD_DIS;
459 460 461 462

		switch (sky2->speed) {
		case SPEED_1000:
			ctrl |= PHY_CT_SP1000;
463
			reg |= GM_GPCR_SPEED_1000;
464 465 466
			break;
		case SPEED_100:
			ctrl |= PHY_CT_SP100;
467
			reg |= GM_GPCR_SPEED_100;
468 469 470
			break;
		}

471 472 473
		if (sky2->duplex == DUPLEX_FULL) {
			reg |= GM_GPCR_DUP_FULL;
			ctrl |= PHY_CT_DUP_MD;
474 475
		} else if (sky2->speed < SPEED_1000)
			sky2->flow_mode = FC_NONE;
S
Stephen Hemminger 已提交
476
	}
477

S
Stephen Hemminger 已提交
478 479 480 481 482 483 484
	if (sky2->flags & SKY2_FLAG_AUTO_PAUSE) {
		if (sky2_is_copper(hw))
			adv |= copper_fc_adv[sky2->flow_mode];
		else
			adv |= fiber_fc_adv[sky2->flow_mode];
	} else {
		reg |= GM_GPCR_AU_FCT_DIS;
485
 		reg |= gm_fc_disable[sky2->flow_mode];
486 487

		/* Forward pause packets to GMAC? */
488
		if (sky2->flow_mode & FC_RX)
489 490 491
			sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
		else
			sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
492 493
	}

494 495
	gma_write16(hw, port, GM_GP_CTRL, reg);

S
Stephen Hemminger 已提交
496
	if (hw->flags & SKY2_HW_GIGABIT)
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
		gm_phy_write(hw, port, PHY_MARV_1000T_CTRL, ct1000);

	gm_phy_write(hw, port, PHY_MARV_AUNE_ADV, adv);
	gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);

	/* Setup Phy LED's */
	ledctrl = PHY_M_LED_PULS_DUR(PULS_170MS);
	ledover = 0;

	switch (hw->chip_id) {
	case CHIP_ID_YUKON_FE:
		/* on 88E3082 these bits are at 11..9 (shifted left) */
		ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) << 1;

		ctrl = gm_phy_read(hw, port, PHY_MARV_FE_LED_PAR);

		/* delete ACT LED control bits */
		ctrl &= ~PHY_M_FELP_LED1_MSK;
		/* change ACT LED control to blink mode */
		ctrl |= PHY_M_FELP_LED1_CTRL(LED_PAR_CTRL_ACT_BL);
		gm_phy_write(hw, port, PHY_MARV_FE_LED_PAR, ctrl);
		break;

S
Stephen Hemminger 已提交
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
	case CHIP_ID_YUKON_FE_P:
		/* Enable Link Partner Next Page */
		ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
		ctrl |= PHY_M_PC_ENA_LIP_NP;

		/* disable Energy Detect and enable scrambler */
		ctrl &= ~(PHY_M_PC_ENA_ENE_DT | PHY_M_PC_DIS_SCRAMB);
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

		/* set LED2 -> ACT, LED1 -> LINK, LED0 -> SPEED */
		ctrl = PHY_M_FELP_LED2_CTRL(LED_PAR_CTRL_ACT_BL) |
			PHY_M_FELP_LED1_CTRL(LED_PAR_CTRL_LINK) |
			PHY_M_FELP_LED0_CTRL(LED_PAR_CTRL_SPEED);

		gm_phy_write(hw, port, PHY_MARV_FE_LED_PAR, ctrl);
		break;

537
	case CHIP_ID_YUKON_XL:
S
Stephen Hemminger 已提交
538
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
539 540 541 542 543

		/* select page 3 to access LED control register */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);

		/* set LED Function Control register */
544 545 546 547 548
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
			     (PHY_M_LEDC_LOS_CTRL(1) |	/* LINK/ACT */
			      PHY_M_LEDC_INIT_CTRL(7) |	/* 10 Mbps */
			      PHY_M_LEDC_STA1_CTRL(7) |	/* 100 Mbps */
			      PHY_M_LEDC_STA0_CTRL(7)));	/* 1000 Mbps */
549 550 551

		/* set Polarity Control register */
		gm_phy_write(hw, port, PHY_MARV_PHY_STAT,
S
Stephen Hemminger 已提交
552 553 554 555 556 557
			     (PHY_M_POLC_LS1_P_MIX(4) |
			      PHY_M_POLC_IS0_P_MIX(4) |
			      PHY_M_POLC_LOS_CTRL(2) |
			      PHY_M_POLC_INIT_CTRL(2) |
			      PHY_M_POLC_STA1_CTRL(2) |
			      PHY_M_POLC_STA0_CTRL(2)));
558 559

		/* restore page register */
S
Stephen Hemminger 已提交
560
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
561
		break;
S
Stephen Hemminger 已提交
562

563
	case CHIP_ID_YUKON_EC_U:
S
Stephen Hemminger 已提交
564
	case CHIP_ID_YUKON_EX:
565
	case CHIP_ID_YUKON_SUPR:
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);

		/* select page 3 to access LED control register */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);

		/* set LED Function Control register */
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
			     (PHY_M_LEDC_LOS_CTRL(1) |	/* LINK/ACT */
			      PHY_M_LEDC_INIT_CTRL(8) |	/* 10 Mbps */
			      PHY_M_LEDC_STA1_CTRL(7) |	/* 100 Mbps */
			      PHY_M_LEDC_STA0_CTRL(7)));/* 1000 Mbps */

		/* set Blink Rate in LED Timer Control Register */
		gm_phy_write(hw, port, PHY_MARV_INT_MASK,
			     ledctrl | PHY_M_LED_BLINK_RT(BLINK_84MS));
		/* restore page register */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
		break;
584 585 586 587

	default:
		/* set Tx LED (LED_TX) to blink mode on Rx OR Tx activity */
		ledctrl |= PHY_M_LED_BLINK_RT(BLINK_84MS) | PHY_M_LEDC_TX_CTRL;
S
Stephen Hemminger 已提交
588

589
		/* turn off the Rx LED (LED_RX) */
S
Stephen Hemminger 已提交
590
		ledover |= PHY_M_LED_MO_RX(MO_LED_OFF);
591 592
	}

S
Stephen Hemminger 已提交
593
	if (hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_UL_2) {
594
		/* apply fixes in PHY AFE */
595 596
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255);

597
		/* increase differential signal amplitude in 10BASE-T */
598 599
		gm_phy_write(hw, port, 0x18, 0xaa99);
		gm_phy_write(hw, port, 0x17, 0x2011);
600

S
Stephen Hemminger 已提交
601 602 603 604 605
		if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
			/* fix for IEEE A/B Symmetry failure in 1000BASE-T */
			gm_phy_write(hw, port, 0x18, 0xa204);
			gm_phy_write(hw, port, 0x17, 0x2002);
		}
606 607

		/* set page register to 0 */
608
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
S
Stephen Hemminger 已提交
609 610 611 612 613
	} else if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
		   hw->chip_rev == CHIP_REV_YU_FE2_A0) {
		/* apply workaround for integrated resistors calibration */
		gm_phy_write(hw, port, PHY_MARV_PAGE_ADDR, 17);
		gm_phy_write(hw, port, PHY_MARV_PAGE_DATA, 0x3f60);
S
Stephen Hemminger 已提交
614 615 616 617 618 619 620 621 622 623
	} else if (hw->chip_id == CHIP_ID_YUKON_OPT && hw->chip_rev == 0) {
		/* apply fixes in PHY AFE */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0x00ff);

		/* apply RDAC termination workaround */
		gm_phy_write(hw, port, 24, 0x2800);
		gm_phy_write(hw, port, 23, 0x2001);

		/* set page register back to 0 */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
S
Stephen Hemminger 已提交
624 625
	} else if (hw->chip_id != CHIP_ID_YUKON_EX &&
		   hw->chip_id < CHIP_ID_YUKON_SUPR) {
S
Stephen Hemminger 已提交
626
		/* no effect on Yukon-XL */
627
		gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
628

629 630
		if (!(sky2->flags & SKY2_FLAG_AUTO_SPEED) ||
		    sky2->speed == SPEED_100) {
631
			/* turn on 100 Mbps LED (LED_LINK100) */
S
Stephen Hemminger 已提交
632
			ledover |= PHY_M_LED_MO_100(MO_LED_ON);
633
		}
634

635 636 637
		if (ledover)
			gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);

638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
	} else if (hw->chip_id == CHIP_ID_YUKON_PRM &&
		   (sky2_read8(hw, B2_MAC_CFG) & 0xf) == 0x7) {
		int i;
		/* This a phy register setup workaround copied from vendor driver. */
		static const struct {
			u16 reg, val;
		} eee_afe[] = {
			{ 0x156, 0x58ce },
			{ 0x153, 0x99eb },
			{ 0x141, 0x8064 },
			/* { 0x155, 0x130b },*/
			{ 0x000, 0x0000 },
			{ 0x151, 0x8433 },
			{ 0x14b, 0x8c44 },
			{ 0x14c, 0x0f90 },
			{ 0x14f, 0x39aa },
			/* { 0x154, 0x2f39 },*/
			{ 0x14d, 0xba33 },
			{ 0x144, 0x0048 },
			{ 0x152, 0x2010 },
			/* { 0x158, 0x1223 },*/
			{ 0x140, 0x4444 },
			{ 0x154, 0x2f3b },
			{ 0x158, 0xb203 },
			{ 0x157, 0x2029 },
		};

		/* Start Workaround for OptimaEEE Rev.Z0 */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0x00fb);

		gm_phy_write(hw, port,  1, 0x4099);
		gm_phy_write(hw, port,  3, 0x1120);
		gm_phy_write(hw, port, 11, 0x113c);
		gm_phy_write(hw, port, 14, 0x8100);
		gm_phy_write(hw, port, 15, 0x112a);
		gm_phy_write(hw, port, 17, 0x1008);

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0x00fc);
		gm_phy_write(hw, port,  1, 0x20b0);

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0x00ff);

		for (i = 0; i < ARRAY_SIZE(eee_afe); i++) {
			/* apply AFE settings */
			gm_phy_write(hw, port, 17, eee_afe[i].val);
			gm_phy_write(hw, port, 16, eee_afe[i].reg | 1u<<13);
		}

		/* End Workaround for OptimaEEE */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);

		/* Enable 10Base-Te (EEE) */
		if (hw->chip_id >= CHIP_ID_YUKON_PRM) {
			reg = gm_phy_read(hw, port, PHY_MARV_EXT_CTRL);
			gm_phy_write(hw, port, PHY_MARV_EXT_CTRL,
				     reg | PHY_M_10B_TE_ENABLE);
		}
695
	}
696

S
shemminger@osdl.org 已提交
697
	/* Enable phy interrupt on auto-negotiation complete (or link up) */
S
Stephen Hemminger 已提交
698
	if (sky2->flags & SKY2_FLAG_AUTO_SPEED)
699 700 701 702 703
		gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_COMPL);
	else
		gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);
}

704 705 706 707
static const u32 phy_power[] = { PCI_Y2_PHY1_POWD, PCI_Y2_PHY2_POWD };
static const u32 coma_mode[] = { PCI_Y2_PHY1_COMA, PCI_Y2_PHY2_COMA };

static void sky2_phy_power_up(struct sky2_hw *hw, unsigned port)
708 709 710
{
	u32 reg1;

711
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
712
	reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
713
	reg1 &= ~phy_power[port];
714

S
stephen hemminger 已提交
715
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > CHIP_REV_YU_XL_A1)
716 717
		reg1 |= coma_mode[port];

718
	sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
719
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
720
	sky2_pci_read32(hw, PCI_DEV_REG1);
721 722 723 724 725

	if (hw->chip_id == CHIP_ID_YUKON_FE)
		gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_ANE);
	else if (hw->flags & SKY2_HW_ADV_POWER_CTL)
		sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
726
}
727

728 729 730
static void sky2_phy_power_down(struct sky2_hw *hw, unsigned port)
{
	u32 reg1;
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	u16 ctrl;

	/* release GPHY Control reset */
	sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);

	/* release GMAC reset */
	sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);

	if (hw->flags & SKY2_HW_NEWER_PHY) {
		/* select page 2 to access MAC control register */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);

		ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
		/* allow GMII Power Down */
		ctrl &= ~PHY_M_MAC_GMIF_PUP;
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

		/* set page register back to 0 */
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
	}

	/* setup General Purpose Control Register */
	gma_write16(hw, port, GM_GP_CTRL,
S
Stephen Hemminger 已提交
754 755 756
		    GM_GPCR_FL_PASS | GM_GPCR_SPEED_100 |
		    GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_FCT_DIS |
		    GM_GPCR_AU_SPD_DIS);
757 758 759

	if (hw->chip_id != CHIP_ID_YUKON_EC) {
		if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
760 761
			/* select page 2 to access MAC control register */
			gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 2);
762

763
			ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
764 765 766
			/* enable Power Down */
			ctrl |= PHY_M_PC_POW_D_ENA;
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);
767 768 769

			/* set page register back to 0 */
			gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 0);
770 771 772 773 774
		}

		/* set IEEE compatible Power Down Mode (dev. #4.99) */
		gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_PDOWN);
	}
775

776
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
777
	reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
778
	reg1 |= phy_power[port];		/* set PHY to PowerDown/COMA Mode */
779
	sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
780
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
781 782
}

783 784 785 786 787 788 789 790 791 792 793 794 795 796
/* configure IPG according to used link speed */
static void sky2_set_ipg(struct sky2_port *sky2)
{
	u16 reg;

	reg = gma_read16(sky2->hw, sky2->port, GM_SERIAL_MODE);
	reg &= ~GM_SMOD_IPG_MSK;
	if (sky2->speed > SPEED_100)
		reg |= IPG_DATA_VAL(IPG_DATA_DEF_1000);
	else
		reg |= IPG_DATA_VAL(IPG_DATA_DEF_10_100);
	gma_write16(sky2->hw, sky2->port, GM_SERIAL_MODE, reg);
}

797 798 799 800 801 802 803 804 805 806 807 808
/* Enable Rx/Tx */
static void sky2_enable_rx_tx(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	u16 reg;

	reg = gma_read16(hw, port, GM_GP_CTRL);
	reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA;
	gma_write16(hw, port, GM_GP_CTRL, reg);
}

809 810 811
/* Force a renegotiation */
static void sky2_phy_reinit(struct sky2_port *sky2)
{
812
	spin_lock_bh(&sky2->phy_lock);
813
	sky2_phy_init(sky2->hw, sky2->port);
814
	sky2_enable_rx_tx(sky2);
815
	spin_unlock_bh(&sky2->phy_lock);
816 817
}

818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
/* Put device in state to listen for Wake On Lan */
static void sky2_wol_init(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	enum flow_control save_mode;
	u16 ctrl;

	/* Bring hardware out of reset */
	sky2_write16(hw, B0_CTST, CS_RST_CLR);
	sky2_write16(hw, SK_REG(port, GMAC_LINK_CTRL), GMLC_RST_CLR);

	sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
	sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);

	/* Force to 10/100
	 * sky2_reset will re-enable on resume
	 */
	save_mode = sky2->flow_mode;
	ctrl = sky2->advertising;

	sky2->advertising &= ~(ADVERTISED_1000baseT_Half|ADVERTISED_1000baseT_Full);
	sky2->flow_mode = FC_NONE;
841 842 843 844 845

	spin_lock_bh(&sky2->phy_lock);
	sky2_phy_power_up(hw, port);
	sky2_phy_init(hw, port);
	spin_unlock_bh(&sky2->phy_lock);
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869

	sky2->flow_mode = save_mode;
	sky2->advertising = ctrl;

	/* Set GMAC to no flow control and auto update for speed/duplex */
	gma_write16(hw, port, GM_GP_CTRL,
		    GM_GPCR_FC_TX_DIS|GM_GPCR_TX_ENA|GM_GPCR_RX_ENA|
		    GM_GPCR_DUP_FULL|GM_GPCR_FC_RX_DIS|GM_GPCR_AU_FCT_DIS);

	/* Set WOL address */
	memcpy_toio(hw->regs + WOL_REGS(port, WOL_MAC_ADDR),
		    sky2->netdev->dev_addr, ETH_ALEN);

	/* Turn on appropriate WOL control bits */
	sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), WOL_CTL_CLEAR_RESULT);
	ctrl = 0;
	if (sky2->wol & WAKE_PHY)
		ctrl |= WOL_CTL_ENA_PME_ON_LINK_CHG|WOL_CTL_ENA_LINK_CHG_UNIT;
	else
		ctrl |= WOL_CTL_DIS_PME_ON_LINK_CHG|WOL_CTL_DIS_LINK_CHG_UNIT;

	if (sky2->wol & WAKE_MAGIC)
		ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
	else
870
		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;
871 872 873 874

	ctrl |= WOL_CTL_DIS_PME_ON_PATTERN|WOL_CTL_DIS_PATTERN_UNIT;
	sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), ctrl);

S
stephen hemminger 已提交
875 876 877
	/* Disable PiG firmware */
	sky2_write16(hw, B0_CTST, Y2_HW_WOL_OFF);

878 879 880 881 882 883 884
	/* Needed by some broken BIOSes, use PCI rather than PCI-e for WOL */
	if (legacy_pme) {
		u32 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
		reg1 |= PCI_Y2_PME_LEGACY;
		sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
	}

885 886
	/* block receiver */
	sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
S
stephen hemminger 已提交
887
	sky2_read32(hw, B0_CTST);
888 889
}

890 891
static void sky2_set_tx_stfwd(struct sky2_hw *hw, unsigned port)
{
S
Stephen Hemminger 已提交
892 893
	struct net_device *dev = hw->dev[port];

894 895
	if ( (hw->chip_id == CHIP_ID_YUKON_EX &&
	      hw->chip_rev != CHIP_REV_YU_EX_A0) ||
896
	     hw->chip_id >= CHIP_ID_YUKON_FE_P) {
897
		/* Yukon-Extreme B0 and further Extreme devices */
S
stephen hemminger 已提交
898 899 900 901 902
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_ENA);
	} else if (dev->mtu > ETH_DATA_LEN) {
		/* set Tx GMAC FIFO Almost Empty Threshold */
		sky2_write32(hw, SK_REG(port, TX_GMF_AE_THR),
			     (ECU_JUMBO_WM << 16) | ECU_AE_THR);
S
Stephen Hemminger 已提交
903

S
stephen hemminger 已提交
904 905 906
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_DIS);
	} else
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_ENA);
907 908
}

909 910 911 912
static void sky2_mac_init(struct sky2_hw *hw, unsigned port)
{
	struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
	u16 reg;
A
Al Viro 已提交
913
	u32 rx_reg;
914 915 916
	int i;
	const u8 *addr = hw->dev[port]->dev_addr;

917 918
	sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
	sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR);
919 920 921

	sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_CLR);

S
stephen hemminger 已提交
922 923 924
	if (hw->chip_id == CHIP_ID_YUKON_XL &&
	    hw->chip_rev == CHIP_REV_YU_XL_A0 &&
	    port == 1) {
925 926 927 928 929 930 931 932 933 934 935
		/* WA DEV_472 -- looks like crossed wires on port 2 */
		/* clear GMAC 1 Control reset */
		sky2_write8(hw, SK_REG(0, GMAC_CTRL), GMC_RST_CLR);
		do {
			sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_SET);
			sky2_write8(hw, SK_REG(1, GMAC_CTRL), GMC_RST_CLR);
		} while (gm_phy_read(hw, 1, PHY_MARV_ID0) != PHY_MARV_ID0_VAL ||
			 gm_phy_read(hw, 1, PHY_MARV_ID1) != PHY_MARV_ID1_Y2 ||
			 gm_phy_read(hw, 1, PHY_MARV_INT_MASK) != 0);
	}

S
Stephen Hemminger 已提交
936
	sky2_read16(hw, SK_REG(port, GMAC_IRQ_SRC));
937

938 939 940
	/* Enable Transmit FIFO Underrun */
	sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), GMAC_DEF_MSK);

941
	spin_lock_bh(&sky2->phy_lock);
942
	sky2_phy_power_up(hw, port);
943
	sky2_phy_init(hw, port);
944
	spin_unlock_bh(&sky2->phy_lock);
945 946 947 948 949

	/* MIB clear */
	reg = gma_read16(hw, port, GM_PHY_ADDR);
	gma_write16(hw, port, GM_PHY_ADDR, reg | GM_PAR_MIB_CLR);

950 951
	for (i = GM_MIB_CNT_BASE; i <= GM_MIB_CNT_END; i += 4)
		gma_read16(hw, port, i);
952 953 954 955 956 957 958
	gma_write16(hw, port, GM_PHY_ADDR, reg);

	/* transmit control */
	gma_write16(hw, port, GM_TX_CTRL, TX_COL_THR(TX_COL_DEF));

	/* receive control reg: unicast + multicast + no FCS  */
	gma_write16(hw, port, GM_RX_CTRL,
S
Stephen Hemminger 已提交
959
		    GM_RXCR_UCF_ENA | GM_RXCR_CRC_DIS | GM_RXCR_MCF_ENA);
960 961 962 963 964 965 966 967 968 969 970 971 972

	/* transmit flow control */
	gma_write16(hw, port, GM_TX_FLOW_CTRL, 0xffff);

	/* transmit parameter */
	gma_write16(hw, port, GM_TX_PARAM,
		    TX_JAM_LEN_VAL(TX_JAM_LEN_DEF) |
		    TX_JAM_IPG_VAL(TX_JAM_IPG_DEF) |
		    TX_IPG_JAM_DATA(TX_IPG_JAM_DEF) |
		    TX_BACK_OFF_LIM(TX_BOF_LIM_DEF));

	/* serial mode register */
	reg = DATA_BLIND_VAL(DATA_BLIND_DEF) |
973
		GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF_1000);
974

975
	if (hw->dev[port]->mtu > ETH_DATA_LEN)
976 977
		reg |= GM_SMOD_JUMBO_ENA;

978 979 980 981
	if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
	    hw->chip_rev == CHIP_REV_YU_EC_U_B1)
		reg |= GM_NEW_FLOW_CTRL;

982 983 984 985 986
	gma_write16(hw, port, GM_SERIAL_MODE, reg);

	/* virtual address for data */
	gma_set_addr(hw, port, GM_SRC_ADDR_2L, addr);

S
Stephen Hemminger 已提交
987 988 989 990
	/* physical address: used for pause frames */
	gma_set_addr(hw, port, GM_SRC_ADDR_1L, addr);

	/* ignore counter overflows */
991 992 993 994 995 996
	gma_write16(hw, port, GM_TX_IRQ_MSK, 0);
	gma_write16(hw, port, GM_RX_IRQ_MSK, 0);
	gma_write16(hw, port, GM_TR_IRQ_MSK, 0);

	/* Configure Rx MAC FIFO */
	sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_CLR);
A
Al Viro 已提交
997
	rx_reg = GMF_OPER_ON | GMF_RX_F_FL_ON;
S
Stephen Hemminger 已提交
998 999
	if (hw->chip_id == CHIP_ID_YUKON_EX ||
	    hw->chip_id == CHIP_ID_YUKON_FE_P)
A
Al Viro 已提交
1000
		rx_reg |= GMF_RX_OVER_ON;
1001

A
Al Viro 已提交
1002
	sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), rx_reg);
1003

S
Stephen Hemminger 已提交
1004 1005 1006 1007 1008 1009 1010
	if (hw->chip_id == CHIP_ID_YUKON_XL) {
		/* Hardware errata - clear flush mask */
		sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), 0);
	} else {
		/* Flush Rx MAC FIFO on any flow control or error */
		sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), GMR_FS_ANY_ERR);
	}
1011

1012
	/* Set threshold to 0xa (64 bytes) + 1 to workaround pause bug  */
S
Stephen Hemminger 已提交
1013 1014 1015 1016 1017 1018
	reg = RX_GMF_FL_THR_DEF + 1;
	/* Another magic mystery workaround from sk98lin */
	if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
	    hw->chip_rev == CHIP_REV_YU_FE2_A0)
		reg = 0x178;
	sky2_write16(hw, SK_REG(port, RX_GMF_FL_THR), reg);
1019 1020 1021 1022

	/* Configure Tx MAC FIFO */
	sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR);
	sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON);
1023

L
Lucas De Marchi 已提交
1024
	/* On chips without ram buffer, pause is controlled by MAC level */
1025
	if (!(hw->flags & SKY2_HW_RAM_BUFFER)) {
1026
		/* Pause threshold is scaled by 8 in bytes */
1027 1028
		if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
		    hw->chip_rev == CHIP_REV_YU_FE2_A0)
1029 1030 1031 1032 1033
			reg = 1568 / 8;
		else
			reg = 1024 / 8;
		sky2_write16(hw, SK_REG(port, RX_GMF_UP_THR), reg);
		sky2_write16(hw, SK_REG(port, RX_GMF_LP_THR), 768 / 8);
1034

1035
		sky2_set_tx_stfwd(hw, port);
1036 1037
	}

1038 1039 1040 1041 1042 1043 1044
	if (hw->chip_id == CHIP_ID_YUKON_FE_P &&
	    hw->chip_rev == CHIP_REV_YU_FE2_A0) {
		/* disable dynamic watermark */
		reg = sky2_read16(hw, SK_REG(port, TX_GMF_EA));
		reg &= ~TX_DYN_WM_ENA;
		sky2_write16(hw, SK_REG(port, TX_GMF_EA), reg);
	}
1045 1046
}

1047 1048
/* Assign Ram Buffer allocation to queue */
static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, u32 space)
1049
{
1050 1051 1052 1053 1054 1055
	u32 end;

	/* convert from K bytes to qwords used for hw register */
	start *= 1024/8;
	space *= 1024/8;
	end = start + space - 1;
S
Stephen Hemminger 已提交
1056

1057 1058 1059 1060 1061 1062 1063
	sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR);
	sky2_write32(hw, RB_ADDR(q, RB_START), start);
	sky2_write32(hw, RB_ADDR(q, RB_END), end);
	sky2_write32(hw, RB_ADDR(q, RB_WP), start);
	sky2_write32(hw, RB_ADDR(q, RB_RP), start);

	if (q == Q_R1 || q == Q_R2) {
1064
		u32 tp = space - space/4;
S
Stephen Hemminger 已提交
1065

1066 1067 1068 1069 1070 1071
		/* On receive queue's set the thresholds
		 * give receiver priority when > 3/4 full
		 * send pause when down to 2K
		 */
		sky2_write32(hw, RB_ADDR(q, RB_RX_UTHP), tp);
		sky2_write32(hw, RB_ADDR(q, RB_RX_LTHP), space/2);
S
Stephen Hemminger 已提交
1072

1073
		tp = space - 8192/8;
1074 1075
		sky2_write32(hw, RB_ADDR(q, RB_RX_UTPP), tp);
		sky2_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4);
1076 1077 1078 1079 1080 1081 1082 1083
	} else {
		/* Enable store & forward on Tx queue's because
		 * Tx FIFO is only 1K on Yukon
		 */
		sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD);
	}

	sky2_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD);
S
Stephen Hemminger 已提交
1084
	sky2_read8(hw, RB_ADDR(q, RB_CTRL));
1085 1086 1087
}

/* Setup Bus Memory Interface */
1088
static void sky2_qset(struct sky2_hw *hw, u16 q)
1089 1090 1091 1092
{
	sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_RESET);
	sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_OPER_INIT);
	sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_FIFO_OP_ON);
1093
	sky2_write32(hw, Q_ADDR(q, Q_WM),  BMU_WM_DEFAULT);
1094 1095 1096 1097 1098
}

/* Setup prefetch unit registers. This is the interface between
 * hardware and driver list elements
 */
1099
static void sky2_prefetch_init(struct sky2_hw *hw, u32 qaddr,
1100
			       dma_addr_t addr, u32 last)
1101 1102 1103
{
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_RST_CLR);
1104 1105
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_HI), upper_32_bits(addr));
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_LO), lower_32_bits(addr));
1106 1107
	sky2_write16(hw, Y2_QADDR(qaddr, PREF_UNIT_LAST_IDX), last);
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL), PREF_UNIT_OP_ON);
S
Stephen Hemminger 已提交
1108 1109

	sky2_read32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL));
1110 1111
}

1112
static inline struct sky2_tx_le *get_tx_le(struct sky2_port *sky2, u16 *slot)
S
Stephen Hemminger 已提交
1113
{
1114
	struct sky2_tx_le *le = sky2->tx_le + *slot;
S
Stephen Hemminger 已提交
1115

1116
	*slot = RING_NEXT(*slot, sky2->tx_ring_size);
1117
	le->ctrl = 0;
S
Stephen Hemminger 已提交
1118 1119
	return le;
}
1120

1121 1122 1123 1124 1125 1126 1127
static void tx_init(struct sky2_port *sky2)
{
	struct sky2_tx_le *le;

	sky2->tx_prod = sky2->tx_cons = 0;
	sky2->tx_tcpsum = 0;
	sky2->tx_last_mss = 0;
S
stephen hemminger 已提交
1128
	netdev_reset_queue(sky2->netdev);
1129

1130
	le = get_tx_le(sky2, &sky2->tx_prod);
1131 1132
	le->addr = 0;
	le->opcode = OP_ADDR64 | HW_OWNER;
1133
	sky2->tx_last_upper = 0;
1134 1135
}

1136 1137
/* Update chip's next pointer */
static inline void sky2_put_idx(struct sky2_hw *hw, unsigned q, u16 idx)
1138
{
S
Stephen Hemminger 已提交
1139
	/* Make sure write' to descriptors are complete before we tell hardware */
1140
	wmb();
S
Stephen Hemminger 已提交
1141 1142 1143 1144
	sky2_write16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX), idx);

	/* Synchronize I/O on since next processor may write to tail */
	mmiowb();
1145 1146
}

S
Stephen Hemminger 已提交
1147

1148 1149 1150
static inline struct sky2_rx_le *sky2_next_rx(struct sky2_port *sky2)
{
	struct sky2_rx_le *le = sky2->rx_le + sky2->rx_put;
1151
	sky2->rx_put = RING_NEXT(sky2->rx_put, RX_LE_SIZE);
1152
	le->ctrl = 0;
1153 1154 1155
	return le;
}

M
Mike McCormack 已提交
1156
static unsigned sky2_get_rx_threshold(struct sky2_port *sky2)
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
{
	unsigned size;

	/* Space needed for frame data + headers rounded up */
	size = roundup(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8);

	/* Stopping point for hardware truncation */
	return (size - 8) / sizeof(u32);
}

M
Mike McCormack 已提交
1167
static unsigned sky2_get_rx_data_size(struct sky2_port *sky2)
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
{
	struct rx_ring_info *re;
	unsigned size;

	/* Space needed for frame data + headers rounded up */
	size = roundup(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8);

	sky2->rx_nfrags = size >> PAGE_SHIFT;
	BUG_ON(sky2->rx_nfrags > ARRAY_SIZE(re->frag_addr));

	/* Compute residue after pages */
	size -= sky2->rx_nfrags << PAGE_SHIFT;

	/* Optimize to handle small packets and headers */
	if (size < copybreak)
		size = copybreak;
	if (size < ETH_HLEN)
		size = ETH_HLEN;

	return size;
}

1190
/* Build description to hardware for one receive segment */
M
Mike McCormack 已提交
1191
static void sky2_rx_add(struct sky2_port *sky2, u8 op,
1192
			dma_addr_t map, unsigned len)
1193 1194 1195
{
	struct sky2_rx_le *le;

1196
	if (sizeof(dma_addr_t) > sizeof(u32)) {
1197
		le = sky2_next_rx(sky2);
1198
		le->addr = cpu_to_le32(upper_32_bits(map));
1199 1200
		le->opcode = OP_ADDR64 | HW_OWNER;
	}
S
Stephen Hemminger 已提交
1201

1202
	le = sky2_next_rx(sky2);
1203
	le->addr = cpu_to_le32(lower_32_bits(map));
1204
	le->length = cpu_to_le16(len);
1205
	le->opcode = op | HW_OWNER;
1206 1207
}

1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
/* Build description to hardware for one possibly fragmented skb */
static void sky2_rx_submit(struct sky2_port *sky2,
			   const struct rx_ring_info *re)
{
	int i;

	sky2_rx_add(sky2, OP_PACKET, re->data_addr, sky2->rx_data_size);

	for (i = 0; i < skb_shinfo(re->skb)->nr_frags; i++)
		sky2_rx_add(sky2, OP_BUFFER, re->frag_addr[i], PAGE_SIZE);
}


1221
static int sky2_rx_map_skb(struct pci_dev *pdev, struct rx_ring_info *re,
1222 1223 1224 1225 1226 1227
			    unsigned size)
{
	struct sk_buff *skb = re->skb;
	int i;

	re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE);
1228 1229
	if (pci_dma_mapping_error(pdev, re->data_addr))
		goto mapping_error;
1230

1231
	dma_unmap_len_set(re, data_size, size);
1232

1233
	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
E
Eric Dumazet 已提交
1234
		const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1235

1236
		re->frag_addr[i] = skb_frag_dma_map(&pdev->dev, frag, 0,
E
Eric Dumazet 已提交
1237
						    skb_frag_size(frag),
1238
						    DMA_FROM_DEVICE);
1239

1240
		if (dma_mapping_error(&pdev->dev, re->frag_addr[i]))
1241 1242
			goto map_page_error;
	}
1243
	return 0;
1244 1245 1246 1247

map_page_error:
	while (--i >= 0) {
		pci_unmap_page(pdev, re->frag_addr[i],
E
Eric Dumazet 已提交
1248
			       skb_frag_size(&skb_shinfo(skb)->frags[i]),
1249 1250 1251
			       PCI_DMA_FROMDEVICE);
	}

1252
	pci_unmap_single(pdev, re->data_addr, dma_unmap_len(re, data_size),
1253 1254 1255 1256 1257 1258 1259
			 PCI_DMA_FROMDEVICE);

mapping_error:
	if (net_ratelimit())
		dev_warn(&pdev->dev, "%s: rx mapping error\n",
			 skb->dev->name);
	return -EIO;
1260 1261 1262 1263 1264 1265 1266
}

static void sky2_rx_unmap_skb(struct pci_dev *pdev, struct rx_ring_info *re)
{
	struct sk_buff *skb = re->skb;
	int i;

1267
	pci_unmap_single(pdev, re->data_addr, dma_unmap_len(re, data_size),
1268 1269 1270 1271
			 PCI_DMA_FROMDEVICE);

	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
		pci_unmap_page(pdev, re->frag_addr[i],
E
Eric Dumazet 已提交
1272
			       skb_frag_size(&skb_shinfo(skb)->frags[i]),
1273 1274
			       PCI_DMA_FROMDEVICE);
}
S
Stephen Hemminger 已提交
1275

1276 1277 1278 1279
/* Tell chip where to start receive checksum.
 * Actually has two checksums, but set both same to avoid possible byte
 * order problems.
 */
S
Stephen Hemminger 已提交
1280
static void rx_set_checksum(struct sky2_port *sky2)
1281
{
1282
	struct sky2_rx_le *le = sky2_next_rx(sky2);
S
Stephen Hemminger 已提交
1283

1284 1285 1286
	le->addr = cpu_to_le32((ETH_HLEN << 16) | ETH_HLEN);
	le->ctrl = 0;
	le->opcode = OP_TCPSTART | HW_OWNER;
1287

1288 1289
	sky2_write32(sky2->hw,
		     Q_ADDR(rxqaddr[sky2->port], Q_CSR),
1290
		     (sky2->netdev->features & NETIF_F_RXCSUM)
S
Stephen Hemminger 已提交
1291
		     ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
1292 1293
}

1294
/* Enable/disable receive hash calculation (RSS) */
1295
static void rx_set_rss(struct net_device *dev, netdev_features_t features)
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	int i, nkeys = 4;

	/* Supports IPv6 and other modes */
	if (hw->flags & SKY2_HW_NEW_LE) {
		nkeys = 10;
		sky2_write32(hw, SK_REG(sky2->port, RSS_CFG), HASH_ALL);
	}

	/* Program RSS initial values */
1308
	if (features & NETIF_F_RXHASH) {
1309 1310 1311
		u32 rss_key[10];

		netdev_rss_key_fill(rss_key, sizeof(rss_key));
1312 1313
		for (i = 0; i < nkeys; i++)
			sky2_write32(hw, SK_REG(sky2->port, RSS_KEY + i * 4),
1314
				     rss_key[i]);
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326

		/* Need to turn on (undocumented) flag to make hashing work  */
		sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T),
			     RX_STFW_ENA);

		sky2_write32(hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
			     BMU_ENA_RX_RSS_HASH);
	} else
		sky2_write32(hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
			     BMU_DIS_RX_RSS_HASH);
}

1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
/*
 * The RX Stop command will not work for Yukon-2 if the BMU does not
 * reach the end of packet and since we can't make sure that we have
 * incoming data, we must reset the BMU while it is not doing a DMA
 * transfer. Since it is possible that the RX path is still active,
 * the RX RAM buffer will be stopped first, so any possible incoming
 * data will not trigger a DMA. After the RAM buffer is stopped, the
 * BMU is polled until any DMA in progress is ended and only then it
 * will be reset.
 */
static void sky2_rx_stop(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned rxq = rxqaddr[sky2->port];
	int i;

	/* disable the RAM Buffer receive queue */
	sky2_write8(hw, RB_ADDR(rxq, RB_CTRL), RB_DIS_OP_MD);

	for (i = 0; i < 0xffff; i++)
		if (sky2_read8(hw, RB_ADDR(rxq, Q_RSL))
		    == sky2_read8(hw, RB_ADDR(rxq, Q_RL)))
			goto stopped;

1351
	netdev_warn(sky2->netdev, "receiver stop failed\n");
1352 1353 1354 1355 1356
stopped:
	sky2_write32(hw, Q_ADDR(rxq, Q_CSR), BMU_RST_SET | BMU_FIFO_RST);

	/* reset the Rx prefetch unit */
	sky2_write32(hw, Y2_QADDR(rxq, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
1357
	mmiowb();
1358
}
S
Stephen Hemminger 已提交
1359

S
shemminger@osdl.org 已提交
1360
/* Clean out receive buffer area, assumes receiver hardware stopped */
1361 1362 1363 1364
static void sky2_rx_clean(struct sky2_port *sky2)
{
	unsigned i;

1365 1366 1367
	if (sky2->rx_le)
		memset(sky2->rx_le, 0, RX_LE_BYTES);

S
Stephen Hemminger 已提交
1368
	for (i = 0; i < sky2->rx_pending; i++) {
1369
		struct rx_ring_info *re = sky2->rx_ring + i;
1370 1371

		if (re->skb) {
1372
			sky2_rx_unmap_skb(sky2->hw->pdev, re);
1373 1374 1375 1376 1377 1378
			kfree_skb(re->skb);
			re->skb = NULL;
		}
	}
}

1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
/* Basic MII support */
static int sky2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
	struct mii_ioctl_data *data = if_mii(ifr);
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	int err = -EOPNOTSUPP;

	if (!netif_running(dev))
		return -ENODEV;	/* Phy still in reset */

1390
	switch (cmd) {
1391 1392 1393 1394 1395 1396
	case SIOCGMIIPHY:
		data->phy_id = PHY_ADDR_MARV;

		/* fallthru */
	case SIOCGMIIREG: {
		u16 val = 0;
1397

1398
		spin_lock_bh(&sky2->phy_lock);
1399
		err = __gm_phy_read(hw, sky2->port, data->reg_num & 0x1f, &val);
1400
		spin_unlock_bh(&sky2->phy_lock);
1401

1402 1403 1404 1405 1406
		data->val_out = val;
		break;
	}

	case SIOCSMIIREG:
1407
		spin_lock_bh(&sky2->phy_lock);
1408 1409
		err = gm_phy_write(hw, sky2->port, data->reg_num & 0x1f,
				   data->val_in);
1410
		spin_unlock_bh(&sky2->phy_lock);
1411 1412 1413 1414 1415
		break;
	}
	return err;
}

1416
#define SKY2_VLAN_OFFLOADS (NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_TSO)
1417

1418
static void sky2_vlan_mode(struct net_device *dev, netdev_features_t features)
1419 1420 1421 1422 1423
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	u16 port = sky2->port;

1424
	if (features & NETIF_F_HW_VLAN_CTAG_RX)
1425 1426 1427 1428 1429
		sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
			     RX_VLAN_STRIP_ON);
	else
		sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
			     RX_VLAN_STRIP_OFF);
1430

1431
	if (features & NETIF_F_HW_VLAN_CTAG_TX) {
1432 1433
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
			     TX_VLAN_TAG_ON);
1434 1435 1436

		dev->vlan_features |= SKY2_VLAN_OFFLOADS;
	} else {
1437 1438
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
			     TX_VLAN_TAG_OFF);
1439

1440
		/* Can't do transmit offload of vlan without hw vlan */
1441
		dev->vlan_features &= ~SKY2_VLAN_OFFLOADS;
1442
	}
1443 1444
}

S
Stephen Hemminger 已提交
1445 1446 1447 1448 1449 1450
/* Amount of required worst case padding in rx buffer */
static inline unsigned sky2_rx_pad(const struct sky2_hw *hw)
{
	return (hw->flags & SKY2_HW_RAM_BUFFER) ? 8 : 2;
}

1451
/*
1452 1453
 * Allocate an skb for receiving. If the MTU is large enough
 * make the skb non-linear with a fragment list of pages.
1454
 */
1455
static struct sk_buff *sky2_rx_alloc(struct sky2_port *sky2, gfp_t gfp)
1456 1457
{
	struct sk_buff *skb;
1458
	int i;
1459

1460 1461 1462
	skb = __netdev_alloc_skb(sky2->netdev,
				 sky2->rx_data_size + sky2_rx_pad(sky2->hw),
				 gfp);
S
Stephen Hemminger 已提交
1463 1464 1465
	if (!skb)
		goto nomem;

1466
	if (sky2->hw->flags & SKY2_HW_RAM_BUFFER) {
1467 1468 1469 1470 1471 1472 1473 1474 1475
		unsigned char *start;
		/*
		 * Workaround for a bug in FIFO that cause hang
		 * if the FIFO if the receive buffer is not 64 byte aligned.
		 * The buffer returned from netdev_alloc_skb is
		 * aligned except if slab debugging is enabled.
		 */
		start = PTR_ALIGN(skb->data, 8);
		skb_reserve(skb, start - skb->data);
S
Stephen Hemminger 已提交
1476
	} else
1477
		skb_reserve(skb, NET_IP_ALIGN);
1478 1479

	for (i = 0; i < sky2->rx_nfrags; i++) {
1480
		struct page *page = alloc_page(gfp);
1481 1482 1483 1484

		if (!page)
			goto free_partial;
		skb_fill_page_desc(skb, i, page, 0, PAGE_SIZE);
1485 1486 1487
	}

	return skb;
1488 1489 1490 1491
free_partial:
	kfree_skb(skb);
nomem:
	return NULL;
1492 1493
}

S
Stephen Hemminger 已提交
1494 1495 1496 1497 1498
static inline void sky2_rx_update(struct sky2_port *sky2, unsigned rxq)
{
	sky2_put_idx(sky2->hw, rxq, sky2->rx_put);
}

1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
static int sky2_alloc_rx_skbs(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned i;

	sky2->rx_data_size = sky2_get_rx_data_size(sky2);

	/* Fill Rx ring */
	for (i = 0; i < sky2->rx_pending; i++) {
		struct rx_ring_info *re = sky2->rx_ring + i;

1510
		re->skb = sky2_rx_alloc(sky2, GFP_KERNEL);
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
		if (!re->skb)
			return -ENOMEM;

		if (sky2_rx_map_skb(hw->pdev, re, sky2->rx_data_size)) {
			dev_kfree_skb(re->skb);
			re->skb = NULL;
			return -ENOMEM;
		}
	}
	return 0;
}

1523
/*
1524
 * Setup receiver buffer pool.
1525 1526 1527 1528 1529 1530
 * Normal case this ends up creating one list element for skb
 * in the receive ring. Worst case if using large MTU and each
 * allocation falls on a different 64 bit region, that results
 * in 6 list elements per ring entry.
 * One element is used for checksum enable/disable, and one
 * extra to avoid wrap.
1531
 */
1532
static void sky2_rx_start(struct sky2_port *sky2)
1533
{
1534
	struct sky2_hw *hw = sky2->hw;
1535
	struct rx_ring_info *re;
1536
	unsigned rxq = rxqaddr[sky2->port];
1537
	unsigned i, thresh;
1538

1539
	sky2->rx_put = sky2->rx_next = 0;
1540
	sky2_qset(hw, rxq);
1541

1542
	/* On PCI express lowering the watermark gives better performance */
1543
	if (pci_is_pcie(hw->pdev))
1544 1545 1546 1547
		sky2_write32(hw, Q_ADDR(rxq, Q_WM), BMU_WM_PEX);

	/* These chips have no ram buffer?
	 * MAC Rx RAM Read is controlled by hardware */
1548
	if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
1549
	    hw->chip_rev > CHIP_REV_YU_EC_U_A0)
S
Stephen Hemminger 已提交
1550
		sky2_write32(hw, Q_ADDR(rxq, Q_TEST), F_M_RX_RAM_DIS);
1551

1552 1553
	sky2_prefetch_init(hw, rxq, sky2->rx_le_map, RX_LE_SIZE - 1);

1554 1555
	if (!(hw->flags & SKY2_HW_NEW_LE))
		rx_set_checksum(sky2);
1556

1557
	if (!(hw->flags & SKY2_HW_RSS_BROKEN))
1558
		rx_set_rss(sky2->netdev, sky2->netdev->features);
1559

1560
	/* submit Rx ring */
S
Stephen Hemminger 已提交
1561
	for (i = 0; i < sky2->rx_pending; i++) {
1562 1563
		re = sky2->rx_ring + i;
		sky2_rx_submit(sky2, re);
1564 1565
	}

1566 1567 1568 1569 1570 1571
	/*
	 * The receiver hangs if it receives frames larger than the
	 * packet buffer. As a workaround, truncate oversize frames, but
	 * the register is limited to 9 bits, so if you do frames > 2052
	 * you better get the MTU right!
	 */
1572
	thresh = sky2_get_rx_threshold(sky2);
1573 1574 1575 1576 1577 1578 1579
	if (thresh > 0x1ff)
		sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_OFF);
	else {
		sky2_write16(hw, SK_REG(sky2->port, RX_GMF_TR_THR), thresh);
		sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_TRUNC_ON);
	}

1580
	/* Tell chip about available buffers */
S
Stephen Hemminger 已提交
1581
	sky2_rx_update(sky2, rxq);
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603

	if (hw->chip_id == CHIP_ID_YUKON_EX ||
	    hw->chip_id == CHIP_ID_YUKON_SUPR) {
		/*
		 * Disable flushing of non ASF packets;
		 * must be done after initializing the BMUs;
		 * drivers without ASF support should do this too, otherwise
		 * it may happen that they cannot run on ASF devices;
		 * remember that the MAC FIFO isn't reset during initialization.
		 */
		sky2_write32(hw, SK_REG(sky2->port, RX_GMF_CTRL_T), RX_MACSEC_FLUSH_OFF);
	}

	if (hw->chip_id >= CHIP_ID_YUKON_SUPR) {
		/* Enable RX Home Address & Routing Header checksum fix */
		sky2_write16(hw, SK_REG(sky2->port, RX_GMF_FL_CTRL),
			     RX_IPV6_SA_MOB_ENA | RX_IPV6_DA_MOB_ENA);

		/* Enable TX Home Address & Routing Header checksum fix */
		sky2_write32(hw, Q_ADDR(txqaddr[sky2->port], Q_TEST),
			     TBMU_TEST_HOME_ADD_FIX_EN | TBMU_TEST_ROUTING_ADD_FIX_EN);
	}
1604 1605
}

1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
static int sky2_alloc_buffers(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;

	/* must be power of 2 */
	sky2->tx_le = pci_alloc_consistent(hw->pdev,
					   sky2->tx_ring_size *
					   sizeof(struct sky2_tx_le),
					   &sky2->tx_le_map);
	if (!sky2->tx_le)
		goto nomem;

	sky2->tx_ring = kcalloc(sky2->tx_ring_size, sizeof(struct tx_ring_info),
				GFP_KERNEL);
	if (!sky2->tx_ring)
		goto nomem;

J
Joe Perches 已提交
1623 1624
	sky2->rx_le = pci_zalloc_consistent(hw->pdev, RX_LE_BYTES,
					    &sky2->rx_le_map);
1625 1626 1627 1628 1629 1630 1631 1632
	if (!sky2->rx_le)
		goto nomem;

	sky2->rx_ring = kcalloc(sky2->rx_pending, sizeof(struct rx_ring_info),
				GFP_KERNEL);
	if (!sky2->rx_ring)
		goto nomem;

1633
	return sky2_alloc_rx_skbs(sky2);
1634 1635 1636 1637 1638 1639 1640 1641
nomem:
	return -ENOMEM;
}

static void sky2_free_buffers(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;

1642 1643
	sky2_rx_clean(sky2);

1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
	if (sky2->rx_le) {
		pci_free_consistent(hw->pdev, RX_LE_BYTES,
				    sky2->rx_le, sky2->rx_le_map);
		sky2->rx_le = NULL;
	}
	if (sky2->tx_le) {
		pci_free_consistent(hw->pdev,
				    sky2->tx_ring_size * sizeof(struct sky2_tx_le),
				    sky2->tx_le, sky2->tx_le_map);
		sky2->tx_le = NULL;
	}
	kfree(sky2->tx_ring);
	kfree(sky2->rx_ring);

	sky2->tx_ring = NULL;
	sky2->rx_ring = NULL;
}

1662
static void sky2_hw_up(struct sky2_port *sky2)
1663 1664 1665
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
1666 1667
	u32 ramsize;
	int cap;
1668
	struct net_device *otherdev = hw->dev[sky2->port^1];
1669

1670 1671
	tx_init(sky2);

1672 1673 1674
	/*
 	 * On dual port PCI-X card, there is an problem where status
	 * can be received out of order due to split transactions
1675
	 */
1676 1677 1678 1679
	if (otherdev && netif_running(otherdev) &&
 	    (cap = pci_find_capability(hw->pdev, PCI_CAP_ID_PCIX))) {
 		u16 cmd;

1680
		cmd = sky2_pci_read16(hw, cap + PCI_X_CMD);
1681
 		cmd &= ~PCI_X_CMD_MAX_SPLIT;
1682
 		sky2_pci_write16(hw, cap + PCI_X_CMD, cmd);
1683
	}
1684 1685 1686

	sky2_mac_init(hw, port);

1687 1688 1689
	/* Register is number of 4K blocks on internal RAM buffer. */
	ramsize = sky2_read8(hw, B2_E_0) * 4;
	if (ramsize > 0) {
1690
		u32 rxspace;
1691

1692
		netdev_dbg(sky2->netdev, "ram buffer %dK\n", ramsize);
1693 1694 1695 1696
		if (ramsize < 16)
			rxspace = ramsize / 2;
		else
			rxspace = 8 + (2*(ramsize - 16))/3;
1697

1698 1699 1700 1701 1702 1703 1704
		sky2_ramset(hw, rxqaddr[port], 0, rxspace);
		sky2_ramset(hw, txqaddr[port], rxspace, ramsize - rxspace);

		/* Make sure SyncQ is disabled */
		sky2_write8(hw, RB_ADDR(port == 0 ? Q_XS1 : Q_XS2, RB_CTRL),
			    RB_RST_SET);
	}
S
Stephen Hemminger 已提交
1705

1706
	sky2_qset(hw, txqaddr[port]);
1707

1708 1709 1710 1711
	/* This is copied from sk98lin 10.0.5.3; no one tells me about erratta's */
	if (hw->chip_id == CHIP_ID_YUKON_EX && hw->chip_rev == CHIP_REV_YU_EX_B0)
		sky2_write32(hw, Q_ADDR(txqaddr[port], Q_TEST), F_TX_CHK_AUTO_OFF);

1712
	/* Set almost empty threshold */
1713 1714
	if (hw->chip_id == CHIP_ID_YUKON_EC_U &&
	    hw->chip_rev == CHIP_REV_YU_EC_U_A0)
1715
		sky2_write16(hw, Q_ADDR(txqaddr[port], Q_AL), ECU_TXFF_LEV);
1716

1717
	sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map,
1718
			   sky2->tx_ring_size - 1);
1719

1720 1721
	sky2_vlan_mode(sky2->netdev, sky2->netdev->features);
	netdev_update_features(sky2->netdev);
1722

1723
	sky2_rx_start(sky2);
1724 1725
}

1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
/* Setup device IRQ and enable napi to process */
static int sky2_setup_irq(struct sky2_hw *hw, const char *name)
{
	struct pci_dev *pdev = hw->pdev;
	int err;

	err = request_irq(pdev->irq, sky2_intr,
			  (hw->flags & SKY2_HW_USE_MSI) ? 0 : IRQF_SHARED,
			  name, hw);
	if (err)
		dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
	else {
S
stephen hemminger 已提交
1738 1739
		hw->flags |= SKY2_HW_IRQ_SETUP;

1740 1741 1742 1743 1744 1745 1746 1747 1748
		napi_enable(&hw->napi);
		sky2_write32(hw, B0_IMSK, Y2_IS_BASE);
		sky2_read32(hw, B0_IMSK);
	}

	return err;
}


1749
/* Bring up network interface. */
S
stephen hemminger 已提交
1750
static int sky2_open(struct net_device *dev)
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	u32 imask;
	int err;

	netif_carrier_off(dev);

	err = sky2_alloc_buffers(sky2);
	if (err)
		goto err_out;

1764 1765 1766 1767
	/* With single port, IRQ is setup when device is brought up */
	if (hw->ports == 1 && (err = sky2_setup_irq(hw, dev->name)))
		goto err_out;

1768
	sky2_hw_up(sky2);
1769

1770 1771 1772
	/* Enable interrupts from phy/mac for port */
	imask = sky2_read32(hw, B0_IMSK);

1773 1774 1775 1776 1777
	if (hw->chip_id == CHIP_ID_YUKON_OPT ||
	    hw->chip_id == CHIP_ID_YUKON_PRM ||
	    hw->chip_id == CHIP_ID_YUKON_OP_2)
		imask |= Y2_IS_PHY_QLNK;	/* enable PHY Quick Link */

S
Stephen Hemminger 已提交
1778
	imask |= portirq_msk[port];
1779
	sky2_write32(hw, B0_IMSK, imask);
S
Stephen Hemminger 已提交
1780
	sky2_read32(hw, B0_IMSK);
1781

1782
	netif_info(sky2, ifup, dev, "enabling interface\n");
1783

1784 1785 1786
	return 0;

err_out:
1787
	sky2_free_buffers(sky2);
1788 1789 1790
	return err;
}

S
Stephen Hemminger 已提交
1791
/* Modular subtraction in ring */
1792
static inline int tx_inuse(const struct sky2_port *sky2)
S
Stephen Hemminger 已提交
1793
{
1794
	return (sky2->tx_prod - sky2->tx_cons) & (sky2->tx_ring_size - 1);
S
Stephen Hemminger 已提交
1795
}
1796

S
Stephen Hemminger 已提交
1797 1798
/* Number of list elements available for next tx */
static inline int tx_avail(const struct sky2_port *sky2)
1799
{
1800
	return sky2->tx_pending - tx_inuse(sky2);
1801 1802
}

S
Stephen Hemminger 已提交
1803
/* Estimate of number of transmit list elements required */
1804
static unsigned tx_le_req(const struct sk_buff *skb)
1805
{
S
Stephen Hemminger 已提交
1806 1807
	unsigned count;

1808 1809
	count = (skb_shinfo(skb)->nr_frags + 1)
		* (sizeof(dma_addr_t) / sizeof(u32));
S
Stephen Hemminger 已提交
1810

H
Herbert Xu 已提交
1811
	if (skb_is_gso(skb))
S
Stephen Hemminger 已提交
1812
		++count;
1813 1814
	else if (sizeof(dma_addr_t) == sizeof(u32))
		++count;	/* possible vlan */
S
Stephen Hemminger 已提交
1815

1816
	if (skb->ip_summed == CHECKSUM_PARTIAL)
S
Stephen Hemminger 已提交
1817 1818 1819
		++count;

	return count;
1820 1821
}

1822
static void sky2_tx_unmap(struct pci_dev *pdev, struct tx_ring_info *re)
1823 1824
{
	if (re->flags & TX_MAP_SINGLE)
1825 1826
		pci_unmap_single(pdev, dma_unmap_addr(re, mapaddr),
				 dma_unmap_len(re, maplen),
1827 1828
				 PCI_DMA_TODEVICE);
	else if (re->flags & TX_MAP_PAGE)
1829 1830
		pci_unmap_page(pdev, dma_unmap_addr(re, mapaddr),
			       dma_unmap_len(re, maplen),
1831
			       PCI_DMA_TODEVICE);
1832
	re->flags = 0;
1833 1834
}

S
Stephen Hemminger 已提交
1835 1836 1837 1838 1839 1840
/*
 * Put one packet in ring for transmit.
 * A single packet can generate multiple list elements, and
 * the number of ring elements will probably be less than the number
 * of list elements used.
 */
1841 1842
static netdev_tx_t sky2_xmit_frame(struct sk_buff *skb,
				   struct net_device *dev)
1843 1844 1845
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
1846
	struct sky2_tx_le *le = NULL;
1847
	struct tx_ring_info *re;
1848
	unsigned i, len;
1849
	dma_addr_t mapping;
1850 1851
	u32 upper;
	u16 slot;
1852 1853 1854
	u16 mss;
	u8 ctrl;

1855 1856
 	if (unlikely(tx_avail(sky2) < tx_le_req(skb)))
  		return NETDEV_TX_BUSY;
1857 1858 1859

	len = skb_headlen(skb);
	mapping = pci_map_single(hw->pdev, skb->data, len, PCI_DMA_TODEVICE);
S
Stephen Hemminger 已提交
1860

1861 1862 1863
	if (pci_dma_mapping_error(hw->pdev, mapping))
		goto mapping_error;

1864
	slot = sky2->tx_prod;
1865 1866
	netif_printk(sky2, tx_queued, KERN_DEBUG, dev,
		     "tx queued, slot %u, len %d\n", slot, skb->len);
1867

1868
	/* Send high bits if needed */
1869 1870
	upper = upper_32_bits(mapping);
	if (upper != sky2->tx_last_upper) {
1871
		le = get_tx_le(sky2, &slot);
1872 1873
		le->addr = cpu_to_le32(upper);
		sky2->tx_last_upper = upper;
S
Stephen Hemminger 已提交
1874 1875
		le->opcode = OP_ADDR64 | HW_OWNER;
	}
1876 1877

	/* Check for TCP Segmentation Offload */
1878
	mss = skb_shinfo(skb)->gso_size;
S
Stephen Hemminger 已提交
1879
	if (mss != 0) {
1880 1881

		if (!(hw->flags & SKY2_HW_NEW_LE))
1882 1883 1884
			mss += ETH_HLEN + ip_hdrlen(skb) + tcp_hdrlen(skb);

  		if (mss != sky2->tx_last_mss) {
1885
			le = get_tx_le(sky2, &slot);
1886
  			le->addr = cpu_to_le32(mss);
1887 1888

			if (hw->flags & SKY2_HW_NEW_LE)
1889 1890 1891
				le->opcode = OP_MSS | HW_OWNER;
			else
				le->opcode = OP_LRGLEN | HW_OWNER;
1892 1893
			sky2->tx_last_mss = mss;
		}
1894 1895 1896
	}

	ctrl = 0;
1897

1898
	/* Add VLAN tag, can piggyback on LRGLEN or ADDR64 */
1899
	if (skb_vlan_tag_present(skb)) {
1900
		if (!le) {
1901
			le = get_tx_le(sky2, &slot);
S
Stephen Hemminger 已提交
1902
			le->addr = 0;
1903 1904 1905
			le->opcode = OP_VLAN|HW_OWNER;
		} else
			le->opcode |= OP_VLAN;
1906
		le->length = cpu_to_be16(skb_vlan_tag_get(skb));
1907 1908 1909 1910
		ctrl |= INS_VLAN;
	}

	/* Handle TCP checksum offload */
1911
	if (skb->ip_summed == CHECKSUM_PARTIAL) {
1912
		/* On Yukon EX (some versions) encoding change. */
1913
 		if (hw->flags & SKY2_HW_AUTO_TX_SUM)
1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
 			ctrl |= CALSUM;	/* auto checksum */
		else {
			const unsigned offset = skb_transport_offset(skb);
			u32 tcpsum;

			tcpsum = offset << 16;			/* sum start */
			tcpsum |= offset + skb->csum_offset;	/* sum write */

			ctrl |= CALSUM | WR_SUM | INIT_SUM | LOCK_SUM;
			if (ip_hdr(skb)->protocol == IPPROTO_UDP)
				ctrl |= UDPTCP;

			if (tcpsum != sky2->tx_tcpsum) {
				sky2->tx_tcpsum = tcpsum;

1929
				le = get_tx_le(sky2, &slot);
1930 1931 1932 1933 1934
				le->addr = cpu_to_le32(tcpsum);
				le->length = 0;	/* initial checksum value */
				le->ctrl = 1;	/* one packet */
				le->opcode = OP_TCPLISW | HW_OWNER;
			}
1935
		}
1936 1937
	}

1938 1939
	re = sky2->tx_ring + slot;
	re->flags = TX_MAP_SINGLE;
1940 1941
	dma_unmap_addr_set(re, mapaddr, mapping);
	dma_unmap_len_set(re, maplen, len);
1942

1943
	le = get_tx_le(sky2, &slot);
1944
	le->addr = cpu_to_le32(lower_32_bits(mapping));
1945 1946
	le->length = cpu_to_le16(len);
	le->ctrl = ctrl;
S
Stephen Hemminger 已提交
1947
	le->opcode = mss ? (OP_LARGESEND | HW_OWNER) : (OP_PACKET | HW_OWNER);
1948 1949 1950


	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1951
		const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1952

1953
		mapping = skb_frag_dma_map(&hw->pdev->dev, frag, 0,
E
Eric Dumazet 已提交
1954
					   skb_frag_size(frag), DMA_TO_DEVICE);
1955

1956
		if (dma_mapping_error(&hw->pdev->dev, mapping))
1957 1958
			goto mapping_unwind;

1959 1960
		upper = upper_32_bits(mapping);
		if (upper != sky2->tx_last_upper) {
1961
			le = get_tx_le(sky2, &slot);
1962 1963
			le->addr = cpu_to_le32(upper);
			sky2->tx_last_upper = upper;
S
Stephen Hemminger 已提交
1964
			le->opcode = OP_ADDR64 | HW_OWNER;
1965 1966
		}

1967 1968
		re = sky2->tx_ring + slot;
		re->flags = TX_MAP_PAGE;
1969
		dma_unmap_addr_set(re, mapaddr, mapping);
E
Eric Dumazet 已提交
1970
		dma_unmap_len_set(re, maplen, skb_frag_size(frag));
1971

1972
		le = get_tx_le(sky2, &slot);
1973
		le->addr = cpu_to_le32(lower_32_bits(mapping));
E
Eric Dumazet 已提交
1974
		le->length = cpu_to_le16(skb_frag_size(frag));
1975
		le->ctrl = ctrl;
S
Stephen Hemminger 已提交
1976
		le->opcode = OP_BUFFER | HW_OWNER;
1977
	}
1978

1979
	re->skb = skb;
1980 1981
	le->ctrl |= EOP;

1982 1983
	sky2->tx_prod = slot;

1984 1985
	if (tx_avail(sky2) <= MAX_SKB_TX_LE)
		netif_stop_queue(dev);
1986

S
stephen hemminger 已提交
1987
	netdev_sent_queue(dev, skb->len);
1988
	sky2_put_idx(hw, txqaddr[sky2->port], sky2->tx_prod);
1989 1990

	return NETDEV_TX_OK;
1991 1992

mapping_unwind:
1993
	for (i = sky2->tx_prod; i != slot; i = RING_NEXT(i, sky2->tx_ring_size)) {
1994 1995
		re = sky2->tx_ring + i;

1996
		sky2_tx_unmap(hw->pdev, re);
1997 1998 1999 2000 2001
	}

mapping_error:
	if (net_ratelimit())
		dev_warn(&hw->pdev->dev, "%s: tx mapping error\n", dev->name);
2002
	dev_kfree_skb_any(skb);
2003
	return NETDEV_TX_OK;
2004 2005 2006
}

/*
S
Stephen Hemminger 已提交
2007 2008
 * Free ring elements from starting at tx_cons until "done"
 *
2009 2010
 * NB:
 *  1. The hardware will tell us about partial completion of multi-part
2011
 *     buffers so make sure not to free skb to early.
2012 2013 2014
 *  2. This may run in parallel start_xmit because the it only
 *     looks at the tail of the queue of FIFO (tx_cons), not
 *     the head (tx_prod)
2015
 */
2016
static void sky2_tx_complete(struct sky2_port *sky2, u16 done)
2017
{
2018
	struct net_device *dev = sky2->netdev;
S
stephen hemminger 已提交
2019 2020
	u16 idx;
	unsigned int bytes_compl = 0, pkts_compl = 0;
2021

2022
	BUG_ON(done >= sky2->tx_ring_size);
2023

2024
	for (idx = sky2->tx_cons; idx != done;
2025
	     idx = RING_NEXT(idx, sky2->tx_ring_size)) {
2026
		struct tx_ring_info *re = sky2->tx_ring + idx;
2027
		struct sk_buff *skb = re->skb;
2028

2029
		sky2_tx_unmap(sky2->hw->pdev, re);
S
Stephen Hemminger 已提交
2030

2031
		if (skb) {
2032 2033
			netif_printk(sky2, tx_done, KERN_DEBUG, dev,
				     "tx done %u\n", idx);
S
Stephen Hemminger 已提交
2034

S
stephen hemminger 已提交
2035 2036
			pkts_compl++;
			bytes_compl += skb->len;
S
Stephen Hemminger 已提交
2037

2038
			re->skb = NULL;
S
Stephen Hemminger 已提交
2039
			dev_kfree_skb_any(skb);
2040

2041
			sky2->tx_next = RING_NEXT(idx, sky2->tx_ring_size);
2042
		}
S
Stephen Hemminger 已提交
2043 2044
	}

2045
	sky2->tx_cons = idx;
S
Stephen Hemminger 已提交
2046
	smp_mb();
S
stephen hemminger 已提交
2047 2048 2049 2050 2051 2052 2053

	netdev_completed_queue(dev, pkts_compl, bytes_compl);

	u64_stats_update_begin(&sky2->tx_stats.syncp);
	sky2->tx_stats.packets += pkts_compl;
	sky2->tx_stats.bytes += bytes_compl;
	u64_stats_update_end(&sky2->tx_stats.syncp);
2054 2055
}

2056
static void sky2_tx_reset(struct sky2_hw *hw, unsigned port)
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
{
	/* Disable Force Sync bit and Enable Alloc bit */
	sky2_write8(hw, SK_REG(port, TXA_CTRL),
		    TXA_DIS_FSYNC | TXA_DIS_ALLOC | TXA_STOP_RC);

	/* Stop Interval Timer and Limit Counter of Tx Arbiter */
	sky2_write32(hw, SK_REG(port, TXA_ITI_INI), 0L);
	sky2_write32(hw, SK_REG(port, TXA_LIM_INI), 0L);

	/* Reset the PCI FIFO of the async Tx queue */
	sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR),
		     BMU_RST_SET | BMU_FIFO_RST);

	/* Reset the Tx prefetch units */
	sky2_write32(hw, Y2_QADDR(txqaddr[port], PREF_UNIT_CTRL),
		     PREF_UNIT_RST_SET);

	sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL), RB_RST_SET);
	sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_SET);
S
stephen hemminger 已提交
2076 2077

	sky2_read32(hw, B0_CTST);
2078 2079
}

2080
static void sky2_hw_down(struct sky2_port *sky2)
2081 2082 2083
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
2084
	u16 ctrl;
2085

2086 2087
	/* Force flow control off */
	sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
S
Stephen Hemminger 已提交
2088

2089 2090 2091 2092 2093
	/* Stop transmitter */
	sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_STOP);
	sky2_read32(hw, Q_ADDR(txqaddr[port], Q_CSR));

	sky2_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL),
S
Stephen Hemminger 已提交
2094
		     RB_RST_SET | RB_DIS_OP_MD);
2095 2096

	ctrl = gma_read16(hw, port, GM_GP_CTRL);
S
Stephen Hemminger 已提交
2097
	ctrl &= ~(GM_GPCR_TX_ENA | GM_GPCR_RX_ENA);
2098 2099 2100 2101 2102
	gma_write16(hw, port, GM_GP_CTRL, ctrl);

	sky2_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);

	/* Workaround shared GMAC reset */
2103 2104
	if (!(hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0 &&
	      port == 0 && hw->dev[1] && netif_running(hw->dev[1])))
2105 2106 2107 2108
		sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);

	sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);

2109
	/* Force any delayed status interrupt and NAPI */
2110 2111 2112 2113 2114
	sky2_write32(hw, STAT_LEV_TIMER_CNT, 0);
	sky2_write32(hw, STAT_TX_TIMER_CNT, 0);
	sky2_write32(hw, STAT_ISR_TIMER_CNT, 0);
	sky2_read8(hw, STAT_ISR_TIMER_CTRL);

M
Mike McCormack 已提交
2115 2116
	sky2_rx_stop(sky2);

2117
	spin_lock_bh(&sky2->phy_lock);
2118
	sky2_phy_power_down(hw, port);
2119
	spin_unlock_bh(&sky2->phy_lock);
2120

2121 2122
	sky2_tx_reset(hw, port);

2123 2124
	/* Free any pending frames stuck in HW queue */
	sky2_tx_complete(sky2, sky2->tx_prod);
2125 2126 2127
}

/* Network shutdown */
S
stephen hemminger 已提交
2128
static int sky2_close(struct net_device *dev)
2129 2130
{
	struct sky2_port *sky2 = netdev_priv(dev);
2131
	struct sky2_hw *hw = sky2->hw;
2132 2133 2134 2135 2136

	/* Never really got started! */
	if (!sky2->tx_le)
		return 0;

2137
	netif_info(sky2, ifdown, dev, "disabling interface\n");
2138

2139
	if (hw->ports == 1) {
2140 2141 2142
		sky2_write32(hw, B0_IMSK, 0);
		sky2_read32(hw, B0_IMSK);

2143 2144
		napi_disable(&hw->napi);
		free_irq(hw->pdev->irq, hw);
S
stephen hemminger 已提交
2145
		hw->flags &= ~SKY2_HW_IRQ_SETUP;
2146
	} else {
2147 2148 2149 2150 2151 2152 2153 2154
		u32 imask;

		/* Disable port IRQ */
		imask  = sky2_read32(hw, B0_IMSK);
		imask &= ~portirq_msk[sky2->port];
		sky2_write32(hw, B0_IMSK, imask);
		sky2_read32(hw, B0_IMSK);

2155 2156 2157
		synchronize_irq(hw->pdev->irq);
		napi_synchronize(&hw->napi);
	}
2158

2159
	sky2_hw_down(sky2);
2160

2161
	sky2_free_buffers(sky2);
2162

2163 2164 2165 2166 2167
	return 0;
}

static u16 sky2_phy_speed(const struct sky2_hw *hw, u16 aux)
{
2168
	if (hw->flags & SKY2_HW_FIBRE_PHY)
S
Stephen Hemminger 已提交
2169 2170
		return SPEED_1000;

S
Stephen Hemminger 已提交
2171 2172 2173 2174 2175 2176
	if (!(hw->flags & SKY2_HW_GIGABIT)) {
		if (aux & PHY_M_PS_SPEED_100)
			return SPEED_100;
		else
			return SPEED_10;
	}
2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191

	switch (aux & PHY_M_PS_SPEED_MSK) {
	case PHY_M_PS_SPEED_1000:
		return SPEED_1000;
	case PHY_M_PS_SPEED_100:
		return SPEED_100;
	default:
		return SPEED_10;
	}
}

static void sky2_link_up(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
2192 2193 2194 2195 2196 2197
	static const char *fc_name[] = {
		[FC_NONE]	= "none",
		[FC_TX]		= "tx",
		[FC_RX]		= "rx",
		[FC_BOTH]	= "both",
	};
2198

2199 2200
	sky2_set_ipg(sky2);

2201
	sky2_enable_rx_tx(sky2);
2202 2203 2204 2205 2206

	gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);

	netif_carrier_on(sky2->netdev);

S
Stephen Hemminger 已提交
2207
	mod_timer(&hw->watchdog_timer, jiffies + 1);
2208

2209
	/* Turn on link LED */
S
Stephen Hemminger 已提交
2210
	sky2_write8(hw, SK_REG(port, LNK_LED_REG),
2211 2212
		    LINKLED_ON | LINKLED_BLINK_OFF | LINKLED_LINKSYNC_OFF);

2213 2214 2215 2216 2217
	netif_info(sky2, link, sky2->netdev,
		   "Link is up at %d Mbps, %s duplex, flow control %s\n",
		   sky2->speed,
		   sky2->duplex == DUPLEX_FULL ? "full" : "half",
		   fc_name[sky2->flow_status]);
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
}

static void sky2_link_down(struct sky2_port *sky2)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	u16 reg;

	gm_phy_write(hw, port, PHY_MARV_INT_MASK, 0);

	reg = gma_read16(hw, port, GM_GP_CTRL);
	reg &= ~(GM_GPCR_RX_ENA | GM_GPCR_TX_ENA);
	gma_write16(hw, port, GM_GP_CTRL, reg);

	netif_carrier_off(sky2->netdev);

2234
	/* Turn off link LED */
2235 2236
	sky2_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);

2237
	netif_info(sky2, link, sky2->netdev, "Link is down\n");
2238

2239 2240 2241
	sky2_phy_init(hw, port);
}

2242 2243 2244 2245 2246 2247 2248 2249
static enum flow_control sky2_flow(int rx, int tx)
{
	if (rx)
		return tx ? FC_BOTH : FC_RX;
	else
		return tx ? FC_TX : FC_NONE;
}

S
Stephen Hemminger 已提交
2250 2251 2252 2253
static int sky2_autoneg_done(struct sky2_port *sky2, u16 aux)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
2254
	u16 advert, lpa;
S
Stephen Hemminger 已提交
2255

2256
	advert = gm_phy_read(hw, port, PHY_MARV_AUNE_ADV);
S
Stephen Hemminger 已提交
2257 2258
	lpa = gm_phy_read(hw, port, PHY_MARV_AUNE_LP);
	if (lpa & PHY_M_AN_RF) {
2259
		netdev_err(sky2->netdev, "remote fault\n");
S
Stephen Hemminger 已提交
2260 2261 2262 2263
		return -1;
	}

	if (!(aux & PHY_M_PS_SPDUP_RES)) {
2264
		netdev_err(sky2->netdev, "speed/duplex mismatch\n");
S
Stephen Hemminger 已提交
2265 2266 2267 2268
		return -1;
	}

	sky2->speed = sky2_phy_speed(hw, aux);
S
Stephen Hemminger 已提交
2269
	sky2->duplex = (aux & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
S
Stephen Hemminger 已提交
2270

2271 2272 2273
	/* Since the pause result bits seem to in different positions on
	 * different chips. look at registers.
	 */
2274
	if (hw->flags & SKY2_HW_FIBRE_PHY) {
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
		/* Shift for bits in fiber PHY */
		advert &= ~(ADVERTISE_PAUSE_CAP|ADVERTISE_PAUSE_ASYM);
		lpa &= ~(LPA_PAUSE_CAP|LPA_PAUSE_ASYM);

		if (advert & ADVERTISE_1000XPAUSE)
			advert |= ADVERTISE_PAUSE_CAP;
		if (advert & ADVERTISE_1000XPSE_ASYM)
			advert |= ADVERTISE_PAUSE_ASYM;
		if (lpa & LPA_1000XPAUSE)
			lpa |= LPA_PAUSE_CAP;
		if (lpa & LPA_1000XPAUSE_ASYM)
			lpa |= LPA_PAUSE_ASYM;
	}
S
Stephen Hemminger 已提交
2288

2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
	sky2->flow_status = FC_NONE;
	if (advert & ADVERTISE_PAUSE_CAP) {
		if (lpa & LPA_PAUSE_CAP)
			sky2->flow_status = FC_BOTH;
		else if (advert & ADVERTISE_PAUSE_ASYM)
			sky2->flow_status = FC_RX;
	} else if (advert & ADVERTISE_PAUSE_ASYM) {
		if ((lpa & LPA_PAUSE_CAP) && (lpa & LPA_PAUSE_ASYM))
			sky2->flow_status = FC_TX;
	}
S
Stephen Hemminger 已提交
2299

2300 2301
	if (sky2->duplex == DUPLEX_HALF && sky2->speed < SPEED_1000 &&
	    !(hw->chip_id == CHIP_ID_YUKON_EC_U || hw->chip_id == CHIP_ID_YUKON_EX))
2302
		sky2->flow_status = FC_NONE;
2303

2304
	if (sky2->flow_status & FC_TX)
S
Stephen Hemminger 已提交
2305 2306 2307 2308 2309 2310
		sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
	else
		sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);

	return 0;
}
2311

2312 2313
/* Interrupt from PHY */
static void sky2_phy_intr(struct sky2_hw *hw, unsigned port)
2314
{
2315 2316
	struct net_device *dev = hw->dev[port];
	struct sky2_port *sky2 = netdev_priv(dev);
2317 2318
	u16 istatus, phystat;

S
Stephen Hemminger 已提交
2319 2320 2321
	if (!netif_running(dev))
		return;

2322 2323 2324 2325
	spin_lock(&sky2->phy_lock);
	istatus = gm_phy_read(hw, port, PHY_MARV_INT_STAT);
	phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT);

2326 2327
	netif_info(sky2, intr, sky2->netdev, "phy interrupt status 0x%x 0x%x\n",
		   istatus, phystat);
2328

S
Stephen Hemminger 已提交
2329
	if (istatus & PHY_M_IS_AN_COMPL) {
2330 2331
		if (sky2_autoneg_done(sky2, phystat) == 0 &&
		    !netif_carrier_ok(dev))
S
Stephen Hemminger 已提交
2332 2333 2334
			sky2_link_up(sky2);
		goto out;
	}
2335

S
Stephen Hemminger 已提交
2336 2337
	if (istatus & PHY_M_IS_LSP_CHANGE)
		sky2->speed = sky2_phy_speed(hw, phystat);
2338

S
Stephen Hemminger 已提交
2339 2340 2341
	if (istatus & PHY_M_IS_DUP_CHANGE)
		sky2->duplex =
		    (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
2342

S
Stephen Hemminger 已提交
2343 2344
	if (istatus & PHY_M_IS_LST_CHANGE) {
		if (phystat & PHY_M_PS_LINK_UP)
2345
			sky2_link_up(sky2);
S
Stephen Hemminger 已提交
2346 2347
		else
			sky2_link_down(sky2);
2348
	}
S
Stephen Hemminger 已提交
2349
out:
2350
	spin_unlock(&sky2->phy_lock);
2351 2352
}

S
Stephen Hemminger 已提交
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
/* Special quick link interrupt (Yukon-2 Optima only) */
static void sky2_qlink_intr(struct sky2_hw *hw)
{
	struct sky2_port *sky2 = netdev_priv(hw->dev[0]);
	u32 imask;
	u16 phy;

	/* disable irq */
	imask = sky2_read32(hw, B0_IMSK);
	imask &= ~Y2_IS_PHY_QLNK;
	sky2_write32(hw, B0_IMSK, imask);

	/* reset PHY Link Detect */
	phy = sky2_pci_read16(hw, PSM_CONFIG_REG4);
2367
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
S
Stephen Hemminger 已提交
2368
	sky2_pci_write16(hw, PSM_CONFIG_REG4, phy | 1);
2369
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
S
Stephen Hemminger 已提交
2370 2371 2372 2373

	sky2_link_up(sky2);
}

S
Stephen Hemminger 已提交
2374
/* Transmit timeout is only called if we are running, carrier is up
2375 2376
 * and tx queue is full (stopped).
 */
2377 2378 2379
static void sky2_tx_timeout(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
2380
	struct sky2_hw *hw = sky2->hw;
2381

2382
	netif_err(sky2, timer, dev, "tx timeout\n");
2383

2384 2385 2386 2387
	netdev_printk(KERN_DEBUG, dev, "transmit ring %u .. %u report=%u done=%u\n",
		      sky2->tx_cons, sky2->tx_prod,
		      sky2_read16(hw, sky2->port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX),
		      sky2_read16(hw, Q_ADDR(txqaddr[sky2->port], Q_DONE)));
2388

S
Stephen Hemminger 已提交
2389 2390
	/* can't restart safely under softirq */
	schedule_work(&hw->restart_work);
2391 2392 2393 2394
}

static int sky2_change_mtu(struct net_device *dev, int new_mtu)
{
2395 2396
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
2397
	unsigned port = sky2->port;
2398 2399
	int err;
	u16 ctl, mode;
2400
	u32 imask;
2401

2402 2403
	if (!netif_running(dev)) {
		dev->mtu = new_mtu;
2404
		netdev_update_features(dev);
2405 2406 2407
		return 0;
	}

2408
	imask = sky2_read32(hw, B0_IMSK);
2409
	sky2_write32(hw, B0_IMSK, 0);
2410
	sky2_read32(hw, B0_IMSK);
2411

2412
	netif_trans_update(dev);	/* prevent tx timeout */
2413
	napi_disable(&hw->napi);
2414
	netif_tx_disable(dev);
2415

2416 2417
	synchronize_irq(hw->pdev->irq);

2418
	if (!(hw->flags & SKY2_HW_RAM_BUFFER))
2419
		sky2_set_tx_stfwd(hw, port);
2420 2421 2422

	ctl = gma_read16(hw, port, GM_GP_CTRL);
	gma_write16(hw, port, GM_GP_CTRL, ctl & ~GM_GPCR_RX_ENA);
2423 2424
	sky2_rx_stop(sky2);
	sky2_rx_clean(sky2);
2425 2426

	dev->mtu = new_mtu;
2427
	netdev_update_features(dev);
2428

2429 2430 2431 2432 2433
	mode = DATA_BLIND_VAL(DATA_BLIND_DEF) |	GM_SMOD_VLAN_ENA;
	if (sky2->speed > SPEED_100)
		mode |= IPG_DATA_VAL(IPG_DATA_DEF_1000);
	else
		mode |= IPG_DATA_VAL(IPG_DATA_DEF_10_100);
2434 2435 2436 2437

	if (dev->mtu > ETH_DATA_LEN)
		mode |= GM_SMOD_JUMBO_ENA;

2438
	gma_write16(hw, port, GM_SERIAL_MODE, mode);
2439

2440
	sky2_write8(hw, RB_ADDR(rxqaddr[port], RB_CTRL), RB_ENA_OP_MD);
2441

2442 2443 2444 2445 2446
	err = sky2_alloc_rx_skbs(sky2);
	if (!err)
		sky2_rx_start(sky2);
	else
		sky2_rx_clean(sky2);
2447
	sky2_write32(hw, B0_IMSK, imask);
2448

2449
	sky2_read32(hw, B0_Y2_SP_LISR);
2450 2451
	napi_enable(&hw->napi);

2452 2453 2454
	if (err)
		dev_close(dev);
	else {
2455
		gma_write16(hw, port, GM_GP_CTRL, ctl);
2456 2457 2458 2459

		netif_wake_queue(dev);
	}

2460 2461 2462
	return err;
}

2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
static inline bool needs_copy(const struct rx_ring_info *re,
			      unsigned length)
{
#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
	/* Some architectures need the IP header to be aligned */
	if (!IS_ALIGNED(re->data_addr + ETH_HLEN, sizeof(u32)))
		return true;
#endif
	return length < copybreak;
}

2474 2475 2476 2477 2478 2479 2480
/* For small just reuse existing skb for next receive */
static struct sk_buff *receive_copy(struct sky2_port *sky2,
				    const struct rx_ring_info *re,
				    unsigned length)
{
	struct sk_buff *skb;

2481
	skb = netdev_alloc_skb_ip_align(sky2->netdev, length);
2482 2483 2484
	if (likely(skb)) {
		pci_dma_sync_single_for_cpu(sky2->hw->pdev, re->data_addr,
					    length, PCI_DMA_FROMDEVICE);
2485
		skb_copy_from_linear_data(re->skb, skb->data, length);
2486 2487
		skb->ip_summed = re->skb->ip_summed;
		skb->csum = re->skb->csum;
T
Tom Herbert 已提交
2488
		skb_copy_hash(skb, re->skb);
2489
		skb->vlan_proto = re->skb->vlan_proto;
2490
		skb->vlan_tci = re->skb->vlan_tci;
2491

2492 2493
		pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr,
					       length, PCI_DMA_FROMDEVICE);
2494
		re->skb->vlan_proto = 0;
2495
		re->skb->vlan_tci = 0;
T
Tom Herbert 已提交
2496
		skb_clear_hash(re->skb);
2497
		re->skb->ip_summed = CHECKSUM_NONE;
2498
		skb_put(skb, length);
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521
	}
	return skb;
}

/* Adjust length of skb with fragments to match received data */
static void skb_put_frags(struct sk_buff *skb, unsigned int hdr_space,
			  unsigned int length)
{
	int i, num_frags;
	unsigned int size;

	/* put header into skb */
	size = min(length, hdr_space);
	skb->tail += size;
	skb->len += size;
	length -= size;

	num_frags = skb_shinfo(skb)->nr_frags;
	for (i = 0; i < num_frags; i++) {
		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];

		if (length == 0) {
			/* don't need this page */
2522
			__skb_frag_unref(frag);
2523 2524 2525 2526
			--skb_shinfo(skb)->nr_frags;
		} else {
			size = min(length, (unsigned) PAGE_SIZE);

E
Eric Dumazet 已提交
2527
			skb_frag_size_set(frag, size);
2528
			skb->data_len += size;
2529
			skb->truesize += PAGE_SIZE;
2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
			skb->len += size;
			length -= size;
		}
	}
}

/* Normal packet - take skb from ring element and put in a new one  */
static struct sk_buff *receive_new(struct sky2_port *sky2,
				   struct rx_ring_info *re,
				   unsigned int length)
{
2541 2542
	struct sk_buff *skb;
	struct rx_ring_info nre;
2543 2544
	unsigned hdr_space = sky2->rx_data_size;

2545
	nre.skb = sky2_rx_alloc(sky2, GFP_ATOMIC);
2546 2547 2548 2549 2550
	if (unlikely(!nre.skb))
		goto nobuf;

	if (sky2_rx_map_skb(sky2->hw->pdev, &nre, hdr_space))
		goto nomap;
2551 2552 2553 2554

	skb = re->skb;
	sky2_rx_unmap_skb(sky2->hw->pdev, re);
	prefetch(skb->data);
2555
	*re = nre;
2556 2557 2558 2559

	if (skb_shinfo(skb)->nr_frags)
		skb_put_frags(skb, hdr_space, length);
	else
2560
		skb_put(skb, length);
2561
	return skb;
2562 2563 2564 2565 2566

nomap:
	dev_kfree_skb(nre.skb);
nobuf:
	return NULL;
2567 2568
}

2569 2570
/*
 * Receive one packet.
S
shemminger@osdl.org 已提交
2571
 * For larger packets, get new buffer.
2572
 */
2573
static struct sk_buff *sky2_receive(struct net_device *dev,
2574 2575
				    u16 length, u32 status)
{
2576
 	struct sky2_port *sky2 = netdev_priv(dev);
2577
	struct rx_ring_info *re = sky2->rx_ring + sky2->rx_next;
2578
	struct sk_buff *skb = NULL;
2579 2580
	u16 count = (status & GMR_FS_LEN) >> 16;

2581 2582 2583
	netif_printk(sky2, rx_status, KERN_DEBUG, dev,
		     "rx slot %u status 0x%x len %d\n",
		     sky2->rx_next, status, length);
2584

S
Stephen Hemminger 已提交
2585
	sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending;
S
Stephen Hemminger 已提交
2586
	prefetch(sky2->rx_ring + sky2->rx_next);
2587

2588
	if (skb_vlan_tag_present(re->skb))
2589 2590
		count -= VLAN_HLEN;	/* Account for vlan tag */

2591 2592 2593 2594 2595 2596 2597 2598 2599
	/* This chip has hardware problems that generates bogus status.
	 * So do only marginal checking and expect higher level protocols
	 * to handle crap frames.
	 */
	if (sky2->hw->chip_id == CHIP_ID_YUKON_FE_P &&
	    sky2->hw->chip_rev == CHIP_REV_YU_FE2_A0 &&
	    length != count)
		goto okay;

2600
	if (status & GMR_FS_ANY_ERR)
2601 2602
		goto error;

2603 2604 2605
	if (!(status & GMR_FS_RX_OK))
		goto resubmit;

2606 2607
	/* if length reported by DMA does not match PHY, packet was truncated */
	if (length != count)
S
stephen hemminger 已提交
2608
		goto error;
2609

2610
okay:
2611
	if (needs_copy(re, length))
2612 2613 2614
		skb = receive_copy(sky2, re, length);
	else
		skb = receive_new(sky2, re, length);
2615 2616 2617

	dev->stats.rx_dropped += (skb == NULL);

S
Stephen Hemminger 已提交
2618
resubmit:
2619
	sky2_rx_submit(sky2, re);
2620

2621 2622 2623
	return skb;

error:
2624
	++dev->stats.rx_errors;
2625

2626 2627 2628
	if (net_ratelimit())
		netif_info(sky2, rx_err, dev,
			   "rx error, status 0x%x length %d\n", status, length);
S
Stephen Hemminger 已提交
2629 2630

	goto resubmit;
2631 2632
}

2633 2634
/* Transmit complete */
static inline void sky2_tx_done(struct net_device *dev, u16 last)
2635
{
2636
	struct sky2_port *sky2 = netdev_priv(dev);
2637

2638
	if (netif_running(dev)) {
2639
		sky2_tx_complete(sky2, last);
2640

S
stephen hemminger 已提交
2641
		/* Wake unless it's detached, and called e.g. from sky2_close() */
2642 2643 2644
		if (tx_avail(sky2) > MAX_SKB_TX_LE + 4)
			netif_wake_queue(dev);
	}
2645 2646
}

S
Stephen Hemminger 已提交
2647
static inline void sky2_skb_rx(const struct sky2_port *sky2,
2648
			       struct sk_buff *skb)
S
Stephen Hemminger 已提交
2649 2650 2651 2652 2653 2654 2655
{
	if (skb->ip_summed == CHECKSUM_NONE)
		netif_receive_skb(skb);
	else
		napi_gro_receive(&sky2->hw->napi, skb);
}

S
Stephen Hemminger 已提交
2656 2657 2658
static inline void sky2_rx_done(struct sky2_hw *hw, unsigned port,
				unsigned packets, unsigned bytes)
{
S
stephen hemminger 已提交
2659 2660
	struct net_device *dev = hw->dev[port];
	struct sky2_port *sky2 = netdev_priv(dev);
S
Stephen Hemminger 已提交
2661

S
stephen hemminger 已提交
2662 2663 2664 2665 2666 2667 2668 2669
	if (packets == 0)
		return;

	u64_stats_update_begin(&sky2->rx_stats.syncp);
	sky2->rx_stats.packets += packets;
	sky2->rx_stats.bytes += bytes;
	u64_stats_update_end(&sky2->rx_stats.syncp);

2670
	sky2->last_rx = jiffies;
S
stephen hemminger 已提交
2671
	sky2_rx_update(netdev_priv(dev), rxqaddr[port]);
S
Stephen Hemminger 已提交
2672 2673
}

2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692
static void sky2_rx_checksum(struct sky2_port *sky2, u32 status)
{
	/* If this happens then driver assuming wrong format for chip type */
	BUG_ON(sky2->hw->flags & SKY2_HW_NEW_LE);

	/* Both checksum counters are programmed to start at
	 * the same offset, so unless there is a problem they
	 * should match. This failure is an early indication that
	 * hardware receive checksumming won't work.
	 */
	if (likely((u16)(status >> 16) == (u16)status)) {
		struct sk_buff *skb = sky2->rx_ring[sky2->rx_next].skb;
		skb->ip_summed = CHECKSUM_COMPLETE;
		skb->csum = le16_to_cpu(status);
	} else {
		dev_notice(&sky2->hw->pdev->dev,
			   "%s: receive checksum problem (status = %#x)\n",
			   sky2->netdev->name, status);

2693 2694 2695 2696 2697
		/* Disable checksum offload
		 * It will be reenabled on next ndo_set_features, but if it's
		 * really broken, will get disabled again
		 */
		sky2->netdev->features &= ~NETIF_F_RXCSUM;
2698 2699 2700 2701 2702
		sky2_write32(sky2->hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
			     BMU_DIS_RX_CHKSUM);
	}
}

2703 2704 2705 2706 2707
static void sky2_rx_tag(struct sky2_port *sky2, u16 length)
{
	struct sk_buff *skb;

	skb = sky2->rx_ring[sky2->rx_next].skb;
2708
	__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(length));
2709 2710
}

2711 2712 2713 2714 2715
static void sky2_rx_hash(struct sky2_port *sky2, u32 status)
{
	struct sk_buff *skb;

	skb = sky2->rx_ring[sky2->rx_next].skb;
T
Tom Herbert 已提交
2716
	skb_set_hash(skb, le32_to_cpu(status), PKT_HASH_TYPE_L3);
2717 2718
}

2719
/* Process status response ring */
2720
static int sky2_status_intr(struct sky2_hw *hw, int to_do, u16 idx)
2721
{
2722
	int work_done = 0;
S
Stephen Hemminger 已提交
2723 2724
	unsigned int total_bytes[2] = { 0 };
	unsigned int total_packets[2] = { 0 };
2725

2726 2727 2728
	if (to_do <= 0)
		return work_done;

2729
	rmb();
2730
	do {
S
Stephen Hemminger 已提交
2731
		struct sky2_port *sky2;
2732
		struct sky2_status_le *le  = hw->st_le + hw->st_idx;
S
Stephen Hemminger 已提交
2733
		unsigned port;
2734
		struct net_device *dev;
2735 2736 2737
		struct sk_buff *skb;
		u32 status;
		u16 length;
S
Stephen Hemminger 已提交
2738 2739 2740 2741
		u8 opcode = le->opcode;

		if (!(opcode & HW_OWNER))
			break;
2742

2743
		hw->st_idx = RING_NEXT(hw->st_idx, hw->st_size);
2744

S
Stephen Hemminger 已提交
2745
		port = le->css & CSS_LINK_BIT;
2746
		dev = hw->dev[port];
2747
		sky2 = netdev_priv(dev);
S
Stephen Hemminger 已提交
2748 2749
		length = le16_to_cpu(le->length);
		status = le32_to_cpu(le->status);
2750

S
Stephen Hemminger 已提交
2751 2752
		le->opcode = 0;
		switch (opcode & ~HW_OWNER) {
2753
		case OP_RXSTAT:
S
Stephen Hemminger 已提交
2754 2755
			total_packets[port]++;
			total_bytes[port] += length;
2756

2757
			skb = sky2_receive(dev, length, status);
2758
			if (!skb)
S
Stephen Hemminger 已提交
2759
				break;
2760

2761
			/* This chip reports checksum status differently */
S
Stephen Hemminger 已提交
2762
			if (hw->flags & SKY2_HW_NEW_LE) {
2763
				if ((dev->features & NETIF_F_RXCSUM) &&
2764 2765 2766 2767 2768 2769 2770
				    (le->css & (CSS_ISIPV4 | CSS_ISIPV6)) &&
				    (le->css & CSS_TCPUDPCSOK))
					skb->ip_summed = CHECKSUM_UNNECESSARY;
				else
					skb->ip_summed = CHECKSUM_NONE;
			}

2771
			skb->protocol = eth_type_trans(skb, dev);
2772
			sky2_skb_rx(sky2, skb);
2773

2774
			/* Stop after net poll weight */
2775 2776
			if (++work_done >= to_do)
				goto exit_loop;
2777 2778
			break;

2779
		case OP_RXVLAN:
2780
			sky2_rx_tag(sky2, length);
2781 2782 2783
			break;

		case OP_RXCHKSVLAN:
2784
			sky2_rx_tag(sky2, length);
2785
			/* fall through */
2786
		case OP_RXCHKS:
2787
			if (likely(dev->features & NETIF_F_RXCSUM))
2788
				sky2_rx_checksum(sky2, status);
2789 2790
			break;

2791 2792 2793 2794
		case OP_RSS_HASH:
			sky2_rx_hash(sky2, status);
			break;

2795
		case OP_TXINDEXLE:
2796
			/* TX index reports status for both ports */
S
Stephen Hemminger 已提交
2797
			sky2_tx_done(hw->dev[0], status & 0xfff);
2798 2799 2800 2801
			if (hw->dev[1])
				sky2_tx_done(hw->dev[1],
				     ((status >> 24) & 0xff)
					     | (u16)(length & 0xf) << 8);
2802 2803 2804 2805
			break;

		default:
			if (net_ratelimit())
2806
				pr_warn("unknown status opcode 0x%x\n", opcode);
2807
		}
2808
	} while (hw->st_idx != idx);
2809

2810 2811 2812
	/* Fully processed status ring so clear irq */
	sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);

2813
exit_loop:
S
Stephen Hemminger 已提交
2814 2815
	sky2_rx_done(hw, 0, total_packets[0], total_bytes[0]);
	sky2_rx_done(hw, 1, total_packets[1], total_bytes[1]);
2816

2817
	return work_done;
2818 2819 2820 2821 2822 2823
}

static void sky2_hw_error(struct sky2_hw *hw, unsigned port, u32 status)
{
	struct net_device *dev = hw->dev[port];

2824
	if (net_ratelimit())
2825
		netdev_info(dev, "hw error interrupt status 0x%x\n", status);
2826 2827

	if (status & Y2_IS_PAR_RD1) {
2828
		if (net_ratelimit())
2829
			netdev_err(dev, "ram data read parity error\n");
2830 2831 2832 2833 2834
		/* Clear IRQ */
		sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_RD_PERR);
	}

	if (status & Y2_IS_PAR_WR1) {
2835
		if (net_ratelimit())
2836
			netdev_err(dev, "ram data write parity error\n");
2837 2838 2839 2840 2841

		sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_WR_PERR);
	}

	if (status & Y2_IS_PAR_MAC1) {
2842
		if (net_ratelimit())
2843
			netdev_err(dev, "MAC parity error\n");
2844 2845 2846 2847
		sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_PE);
	}

	if (status & Y2_IS_PAR_RX1) {
2848
		if (net_ratelimit())
2849
			netdev_err(dev, "RX parity error\n");
2850 2851 2852 2853
		sky2_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), BMU_CLR_IRQ_PAR);
	}

	if (status & Y2_IS_TCP_TXA1) {
2854
		if (net_ratelimit())
2855
			netdev_err(dev, "TCP segmentation error\n");
2856 2857 2858 2859 2860 2861
		sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_CLR_IRQ_TCP);
	}
}

static void sky2_hw_intr(struct sky2_hw *hw)
{
S
Stephen Hemminger 已提交
2862
	struct pci_dev *pdev = hw->pdev;
2863
	u32 status = sky2_read32(hw, B0_HWE_ISRC);
S
Stephen Hemminger 已提交
2864 2865 2866
	u32 hwmsk = sky2_read32(hw, B0_HWE_IMSK);

	status &= hwmsk;
2867

S
Stephen Hemminger 已提交
2868
	if (status & Y2_IS_TIST_OV)
2869 2870 2871
		sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);

	if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) {
S
Stephen Hemminger 已提交
2872 2873
		u16 pci_err;

2874
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
2875
		pci_err = sky2_pci_read16(hw, PCI_STATUS);
2876
		if (net_ratelimit())
S
Stephen Hemminger 已提交
2877
			dev_err(&pdev->dev, "PCI hardware error (0x%x)\n",
2878
			        pci_err);
2879

2880
		sky2_pci_write16(hw, PCI_STATUS,
2881
				      pci_err | PCI_STATUS_ERROR_BITS);
2882
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2883 2884 2885
	}

	if (status & Y2_IS_PCI_EXP) {
S
shemminger@osdl.org 已提交
2886
		/* PCI-Express uncorrectable Error occurred */
S
Stephen Hemminger 已提交
2887
		u32 err;
2888

2889
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
S
Stephen Hemminger 已提交
2890 2891 2892
		err = sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
		sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS,
			     0xfffffffful);
2893
		if (net_ratelimit())
S
Stephen Hemminger 已提交
2894
			dev_err(&pdev->dev, "PCI Express error (0x%x)\n", err);
2895

S
Stephen Hemminger 已提交
2896
		sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
2897
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912
	}

	if (status & Y2_HWE_L1_MASK)
		sky2_hw_error(hw, 0, status);
	status >>= 8;
	if (status & Y2_HWE_L1_MASK)
		sky2_hw_error(hw, 1, status);
}

static void sky2_mac_intr(struct sky2_hw *hw, unsigned port)
{
	struct net_device *dev = hw->dev[port];
	struct sky2_port *sky2 = netdev_priv(dev);
	u8 status = sky2_read8(hw, SK_REG(port, GMAC_IRQ_SRC));

2913
	netif_info(sky2, intr, dev, "mac interrupt status 0x%x\n", status);
2914

2915 2916 2917 2918 2919 2920
	if (status & GM_IS_RX_CO_OV)
		gma_read16(hw, port, GM_RX_IRQ_SRC);

	if (status & GM_IS_TX_CO_OV)
		gma_read16(hw, port, GM_TX_IRQ_SRC);

2921
	if (status & GM_IS_RX_FF_OR) {
2922
		++dev->stats.rx_fifo_errors;
2923 2924 2925 2926
		sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
	}

	if (status & GM_IS_TX_FF_UR) {
2927
		++dev->stats.tx_fifo_errors;
2928 2929 2930 2931
		sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
	}
}

2932
/* This should never happen it is a bug. */
2933
static void sky2_le_error(struct sky2_hw *hw, unsigned port, u16 q)
2934 2935
{
	struct net_device *dev = hw->dev[port];
2936
	u16 idx = sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_GET_IDX));
2937

2938
	dev_err(&hw->pdev->dev, "%s: descriptor error q=%#x get=%u put=%u\n",
2939 2940
		dev->name, (unsigned) q, (unsigned) idx,
		(unsigned) sky2_read16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX)));
2941

2942
	sky2_write32(hw, Q_ADDR(q, Q_CSR), BMU_CLR_IRQ_CHK);
2943
}
2944

S
Stephen Hemminger 已提交
2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956
static int sky2_rx_hung(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	unsigned rxq = rxqaddr[port];
	u32 mac_rp = sky2_read32(hw, SK_REG(port, RX_GMF_RP));
	u8 mac_lev = sky2_read8(hw, SK_REG(port, RX_GMF_RLEV));
	u8 fifo_rp = sky2_read8(hw, Q_ADDR(rxq, Q_RP));
	u8 fifo_lev = sky2_read8(hw, Q_ADDR(rxq, Q_RL));

	/* If idle and MAC or PCI is stuck */
2957
	if (sky2->check.last == sky2->last_rx &&
S
Stephen Hemminger 已提交
2958 2959 2960 2961 2962
	    ((mac_rp == sky2->check.mac_rp &&
	      mac_lev != 0 && mac_lev >= sky2->check.mac_lev) ||
	     /* Check if the PCI RX hang */
	     (fifo_rp == sky2->check.fifo_rp &&
	      fifo_lev != 0 && fifo_lev >= sky2->check.fifo_lev))) {
2963 2964 2965 2966
		netdev_printk(KERN_DEBUG, dev,
			      "hung mac %d:%d fifo %d (%d:%d)\n",
			      mac_lev, mac_rp, fifo_lev,
			      fifo_rp, sky2_read8(hw, Q_ADDR(rxq, Q_WP)));
S
Stephen Hemminger 已提交
2967 2968
		return 1;
	} else {
2969
		sky2->check.last = sky2->last_rx;
S
Stephen Hemminger 已提交
2970 2971 2972 2973 2974 2975 2976 2977
		sky2->check.mac_rp = mac_rp;
		sky2->check.mac_lev = mac_lev;
		sky2->check.fifo_rp = fifo_rp;
		sky2->check.fifo_lev = fifo_lev;
		return 0;
	}
}

2978
static void sky2_watchdog(struct timer_list *t)
2979
{
2980
	struct sky2_hw *hw = from_timer(hw, t, watchdog_timer);
2981

S
Stephen Hemminger 已提交
2982
	/* Check for lost IRQ once a second */
2983
	if (sky2_read32(hw, B0_ISRC)) {
2984
		napi_schedule(&hw->napi);
S
Stephen Hemminger 已提交
2985 2986 2987 2988
	} else {
		int i, active = 0;

		for (i = 0; i < hw->ports; i++) {
2989
			struct net_device *dev = hw->dev[i];
S
Stephen Hemminger 已提交
2990 2991 2992 2993 2994
			if (!netif_running(dev))
				continue;
			++active;

			/* For chips with Rx FIFO, check if stuck */
2995
			if ((hw->flags & SKY2_HW_RAM_BUFFER) &&
S
Stephen Hemminger 已提交
2996
			     sky2_rx_hung(dev)) {
2997
				netdev_info(dev, "receiver hang detected\n");
S
Stephen Hemminger 已提交
2998 2999 3000 3001 3002 3003 3004
				schedule_work(&hw->restart_work);
				return;
			}
		}

		if (active == 0)
			return;
3005
	}
3006

S
Stephen Hemminger 已提交
3007
	mod_timer(&hw->watchdog_timer, round_jiffies(jiffies + HZ));
3008 3009
}

3010 3011
/* Hardware/software error handling */
static void sky2_err_intr(struct sky2_hw *hw, u32 status)
3012
{
3013 3014
	if (net_ratelimit())
		dev_warn(&hw->pdev->dev, "error interrupt status=%#x\n", status);
3015

S
Stephen Hemminger 已提交
3016 3017
	if (status & Y2_IS_HW_ERR)
		sky2_hw_intr(hw);
3018

S
Stephen Hemminger 已提交
3019 3020
	if (status & Y2_IS_IRQ_MAC1)
		sky2_mac_intr(hw, 0);
3021

S
Stephen Hemminger 已提交
3022 3023
	if (status & Y2_IS_IRQ_MAC2)
		sky2_mac_intr(hw, 1);
3024

S
Stephen Hemminger 已提交
3025
	if (status & Y2_IS_CHK_RX1)
3026
		sky2_le_error(hw, 0, Q_R1);
3027

S
Stephen Hemminger 已提交
3028
	if (status & Y2_IS_CHK_RX2)
3029
		sky2_le_error(hw, 1, Q_R2);
3030

S
Stephen Hemminger 已提交
3031
	if (status & Y2_IS_CHK_TXA1)
3032
		sky2_le_error(hw, 0, Q_XA1);
3033

S
Stephen Hemminger 已提交
3034
	if (status & Y2_IS_CHK_TXA2)
3035
		sky2_le_error(hw, 1, Q_XA2);
3036 3037
}

3038
static int sky2_poll(struct napi_struct *napi, int work_limit)
3039
{
3040
	struct sky2_hw *hw = container_of(napi, struct sky2_hw, napi);
3041
	u32 status = sky2_read32(hw, B0_Y2_SP_EISR);
3042
	int work_done = 0;
3043
	u16 idx;
3044 3045 3046 3047 3048 3049 3050 3051 3052

	if (unlikely(status & Y2_IS_ERROR))
		sky2_err_intr(hw, status);

	if (status & Y2_IS_IRQ_PHY1)
		sky2_phy_intr(hw, 0);

	if (status & Y2_IS_IRQ_PHY2)
		sky2_phy_intr(hw, 1);
3053

S
Stephen Hemminger 已提交
3054 3055 3056
	if (status & Y2_IS_PHY_QLNK)
		sky2_qlink_intr(hw);

3057 3058
	while ((idx = sky2_read16(hw, STAT_PUT_IDX)) != hw->st_idx) {
		work_done += sky2_status_intr(hw, work_limit - work_done, idx);
3059 3060

		if (work_done >= work_limit)
3061 3062
			goto done;
	}
3063

S
stephen hemminger 已提交
3064
	napi_complete_done(napi, work_done);
3065 3066
	sky2_read32(hw, B0_Y2_SP_LISR);
done:
3067

3068
	return work_done;
3069 3070
}

3071
static irqreturn_t sky2_intr(int irq, void *dev_id)
3072 3073 3074 3075 3076 3077
{
	struct sky2_hw *hw = dev_id;
	u32 status;

	/* Reading this mask interrupts as side effect */
	status = sky2_read32(hw, B0_Y2_SP_ISRC2);
M
Mirko Lindner 已提交
3078 3079
	if (status == 0 || status == ~0) {
		sky2_write32(hw, B0_Y2_SP_ICR, 2);
3080
		return IRQ_NONE;
M
Mirko Lindner 已提交
3081
	}
S
Stephen Hemminger 已提交
3082

3083
	prefetch(&hw->st_le[hw->st_idx]);
3084 3085

	napi_schedule(&hw->napi);
S
Stephen Hemminger 已提交
3086

3087 3088 3089 3090 3091 3092 3093 3094
	return IRQ_HANDLED;
}

#ifdef CONFIG_NET_POLL_CONTROLLER
static void sky2_netpoll(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);

3095
	napi_schedule(&sky2->hw->napi);
3096 3097 3098 3099
}
#endif

/* Chip internal frequency for clock calculations */
S
Stephen Hemminger 已提交
3100
static u32 sky2_mhz(const struct sky2_hw *hw)
3101
{
S
Stephen Hemminger 已提交
3102
	switch (hw->chip_id) {
3103
	case CHIP_ID_YUKON_EC:
3104
	case CHIP_ID_YUKON_EC_U:
S
Stephen Hemminger 已提交
3105
	case CHIP_ID_YUKON_EX:
3106
	case CHIP_ID_YUKON_SUPR:
S
Stephen Hemminger 已提交
3107
	case CHIP_ID_YUKON_UL_2:
S
Stephen Hemminger 已提交
3108
	case CHIP_ID_YUKON_OPT:
3109 3110
	case CHIP_ID_YUKON_PRM:
	case CHIP_ID_YUKON_OP_2:
S
Stephen Hemminger 已提交
3111 3112
		return 125;

3113
	case CHIP_ID_YUKON_FE:
S
Stephen Hemminger 已提交
3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
		return 100;

	case CHIP_ID_YUKON_FE_P:
		return 50;

	case CHIP_ID_YUKON_XL:
		return 156;

	default:
		BUG();
3124 3125 3126
	}
}

3127
static inline u32 sky2_us2clk(const struct sky2_hw *hw, u32 us)
3128
{
3129
	return sky2_mhz(hw) * us;
3130 3131
}

3132
static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
3133
{
3134
	return clk / sky2_mhz(hw);
3135 3136
}

3137

B
Bill Pemberton 已提交
3138
static int sky2_init(struct sky2_hw *hw)
3139
{
S
Stephen Hemminger 已提交
3140
	u8 t8;
3141

3142
	/* Enable all clocks and check for bad PCI access */
3143
	sky2_pci_write32(hw, PCI_DEV_REG3, 0);
3144

3145
	sky2_write8(hw, B0_CTST, CS_RST_CLR);
3146

3147
	hw->chip_id = sky2_read8(hw, B2_CHIP_ID);
3148 3149
	hw->chip_rev = (sky2_read8(hw, B2_MAC_CFG) & CFG_CHIP_R_MSK) >> 4;

M
Mike McCormack 已提交
3150
	switch (hw->chip_id) {
3151
	case CHIP_ID_YUKON_XL:
3152
		hw->flags = SKY2_HW_GIGABIT | SKY2_HW_NEWER_PHY;
3153 3154
		if (hw->chip_rev < CHIP_REV_YU_XL_A2)
			hw->flags |= SKY2_HW_RSS_BROKEN;
3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166
		break;

	case CHIP_ID_YUKON_EC_U:
		hw->flags = SKY2_HW_GIGABIT
			| SKY2_HW_NEWER_PHY
			| SKY2_HW_ADV_POWER_CTL;
		break;

	case CHIP_ID_YUKON_EX:
		hw->flags = SKY2_HW_GIGABIT
			| SKY2_HW_NEWER_PHY
			| SKY2_HW_NEW_LE
3167 3168
			| SKY2_HW_ADV_POWER_CTL
			| SKY2_HW_RSS_CHKSUM;
3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180

		/* New transmit checksum */
		if (hw->chip_rev != CHIP_REV_YU_EX_B0)
			hw->flags |= SKY2_HW_AUTO_TX_SUM;
		break;

	case CHIP_ID_YUKON_EC:
		/* This rev is really old, and requires untested workarounds */
		if (hw->chip_rev == CHIP_REV_YU_EC_A1) {
			dev_err(&hw->pdev->dev, "unsupported revision Yukon-EC rev A1\n");
			return -EOPNOTSUPP;
		}
3181
		hw->flags = SKY2_HW_GIGABIT | SKY2_HW_RSS_BROKEN;
3182 3183 3184
		break;

	case CHIP_ID_YUKON_FE:
3185
		hw->flags = SKY2_HW_RSS_BROKEN;
3186 3187
		break;

S
Stephen Hemminger 已提交
3188 3189 3190 3191 3192
	case CHIP_ID_YUKON_FE_P:
		hw->flags = SKY2_HW_NEWER_PHY
			| SKY2_HW_NEW_LE
			| SKY2_HW_AUTO_TX_SUM
			| SKY2_HW_ADV_POWER_CTL;
3193 3194 3195

		/* The workaround for status conflicts VLAN tag detection. */
		if (hw->chip_rev == CHIP_REV_YU_FE2_A0)
3196
			hw->flags |= SKY2_HW_VLAN_BROKEN | SKY2_HW_RSS_CHKSUM;
S
Stephen Hemminger 已提交
3197
		break;
3198 3199 3200 3201 3202 3203 3204

	case CHIP_ID_YUKON_SUPR:
		hw->flags = SKY2_HW_GIGABIT
			| SKY2_HW_NEWER_PHY
			| SKY2_HW_NEW_LE
			| SKY2_HW_AUTO_TX_SUM
			| SKY2_HW_ADV_POWER_CTL;
3205 3206 3207

		if (hw->chip_rev == CHIP_REV_YU_SU_A0)
			hw->flags |= SKY2_HW_RSS_CHKSUM;
3208 3209
		break;

S
Stephen Hemminger 已提交
3210
	case CHIP_ID_YUKON_UL_2:
3211 3212 3213 3214
		hw->flags = SKY2_HW_GIGABIT
			| SKY2_HW_ADV_POWER_CTL;
		break;

S
Stephen Hemminger 已提交
3215
	case CHIP_ID_YUKON_OPT:
3216 3217
	case CHIP_ID_YUKON_PRM:
	case CHIP_ID_YUKON_OP_2:
S
Stephen Hemminger 已提交
3218
		hw->flags = SKY2_HW_GIGABIT
3219
			| SKY2_HW_NEW_LE
S
Stephen Hemminger 已提交
3220 3221 3222
			| SKY2_HW_ADV_POWER_CTL;
		break;

3223
	default:
3224 3225
		dev_err(&hw->pdev->dev, "unsupported chip type 0x%x\n",
			hw->chip_id);
3226 3227 3228
		return -EOPNOTSUPP;
	}

3229 3230 3231
	hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
	if (hw->pmd_type == 'L' || hw->pmd_type == 'S' || hw->pmd_type == 'P')
		hw->flags |= SKY2_HW_FIBRE_PHY;
3232

3233 3234 3235 3236 3237 3238 3239
	hw->ports = 1;
	t8 = sky2_read8(hw, B2_Y2_HW_RES);
	if ((t8 & CFG_DUAL_MAC_MSK) == CFG_DUAL_MAC_MSK) {
		if (!(sky2_read8(hw, B2_Y2_CLK_GATE) & Y2_STATUS_LNK2_INAC))
			++hw->ports;
	}

3240 3241 3242
	if (sky2_read8(hw, B2_E_0))
		hw->flags |= SKY2_HW_RAM_BUFFER;

3243 3244 3245 3246 3247
	return 0;
}

static void sky2_reset(struct sky2_hw *hw)
{
S
Stephen Hemminger 已提交
3248
	struct pci_dev *pdev = hw->pdev;
3249
	u16 status;
3250
	int i;
S
Stephen Hemminger 已提交
3251
	u32 hwe_mask = Y2_HWE_ALL_MASK;
3252

3253
	/* disable ASF */
3254 3255 3256
	if (hw->chip_id == CHIP_ID_YUKON_EX
	    || hw->chip_id == CHIP_ID_YUKON_SUPR) {
		sky2_write32(hw, CPU_WDOG, 0);
3257 3258 3259
		status = sky2_read16(hw, HCU_CCSR);
		status &= ~(HCU_CCSR_AHB_RST | HCU_CCSR_CPU_RST_MODE |
			    HCU_CCSR_UC_STATE_MSK);
3260 3261 3262 3263 3264 3265
		/*
		 * CPU clock divider shouldn't be used because
		 * - ASF firmware may malfunction
		 * - Yukon-Supreme: Parallel FLASH doesn't support divided clocks
		 */
		status &= ~HCU_CCSR_CPU_CLK_DIVIDE_MSK;
3266
		sky2_write16(hw, HCU_CCSR, status);
3267
		sky2_write32(hw, CPU_WDOG, 0);
3268 3269 3270
	} else
		sky2_write8(hw, B28_Y2_ASF_STAT_CMD, Y2_ASF_RESET);
	sky2_write16(hw, B0_CTST, Y2_ASF_DISABLE);
3271 3272 3273 3274 3275

	/* do a SW reset */
	sky2_write8(hw, B0_CTST, CS_RST_SET);
	sky2_write8(hw, B0_CTST, CS_RST_CLR);

S
Stephen Hemminger 已提交
3276 3277 3278
	/* allow writes to PCI config */
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);

3279
	/* clear PCI errors, if any */
3280
	status = sky2_pci_read16(hw, PCI_STATUS);
3281
	status |= PCI_STATUS_ERROR_BITS;
3282
	sky2_pci_write16(hw, PCI_STATUS, status);
3283 3284 3285

	sky2_write8(hw, B0_CTST, CS_MRST_CLR);

3286
	if (pci_is_pcie(pdev)) {
S
Stephen Hemminger 已提交
3287 3288
		sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS,
			     0xfffffffful);
S
Stephen Hemminger 已提交
3289 3290 3291 3292

		/* If error bit is stuck on ignore it */
		if (sky2_read32(hw, B0_HWE_ISRC) & Y2_IS_PCI_EXP)
			dev_info(&pdev->dev, "ignoring stuck error report bit\n");
S
Stephen Hemminger 已提交
3293
		else
S
Stephen Hemminger 已提交
3294 3295
			hwe_mask |= Y2_IS_PCI_EXP;
	}
3296

3297
	sky2_power_on(hw);
3298
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
3299 3300 3301 3302

	for (i = 0; i < hw->ports; i++) {
		sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
		sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_CLR);
3303

3304 3305
		if (hw->chip_id == CHIP_ID_YUKON_EX ||
		    hw->chip_id == CHIP_ID_YUKON_SUPR)
3306 3307 3308
			sky2_write16(hw, SK_REG(i, GMAC_CTRL),
				     GMC_BYP_MACSECRX_ON | GMC_BYP_MACSECTX_ON
				     | GMC_BYP_RETR_ON);
3309 3310 3311 3312 3313 3314

	}

	if (hw->chip_id == CHIP_ID_YUKON_SUPR && hw->chip_rev > CHIP_REV_YU_SU_B0) {
		/* enable MACSec clock gating */
		sky2_pci_write32(hw, PCI_DEV_REG3, P_CLK_MACSEC_DIS);
3315 3316
	}

3317 3318 3319
	if (hw->chip_id == CHIP_ID_YUKON_OPT ||
	    hw->chip_id == CHIP_ID_YUKON_PRM ||
	    hw->chip_id == CHIP_ID_YUKON_OP_2) {
S
Stephen Hemminger 已提交
3320 3321
		u16 reg;

3322
		if (hw->chip_id == CHIP_ID_YUKON_OPT && hw->chip_rev == 0) {
S
Stephen Hemminger 已提交
3323 3324 3325 3326 3327
			/* disable PCI-E PHY power down (set PHY reg 0x80, bit 7 */
			sky2_write32(hw, Y2_PEX_PHY_DATA, (0x80UL << 16) | (1 << 7));

			/* set PHY Link Detect Timer to 1.1 second (11x 100ms) */
			reg = 10;
3328 3329 3330

			/* re-enable PEX PM in PEX PHY debug reg. 8 (clear bit 12) */
			sky2_write32(hw, Y2_PEX_PHY_DATA, PEX_DB_ACCESS | (0x08UL << 16));
S
Stephen Hemminger 已提交
3331 3332 3333 3334 3335 3336
		} else {
			/* set PHY Link Detect Timer to 0.4 second (4x 100ms) */
			reg = 3;
		}

		reg <<= PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_BASE;
3337
		reg |= PSM_CONFIG_REG4_RST_PHY_LINK_DETECT;
S
Stephen Hemminger 已提交
3338 3339

		/* reset PHY Link Detect */
3340
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
S
Stephen Hemminger 已提交
3341 3342 3343 3344
		sky2_pci_write16(hw, PSM_CONFIG_REG4, reg);

		/* check if PSMv2 was running before */
		reg = sky2_pci_read16(hw, PSM_CONFIG_REG3);
3345
		if (reg & PCI_EXP_LNKCTL_ASPMC)
S
Stephen Hemminger 已提交
3346
			/* restore the PCIe Link Control register */
3347 3348 3349
			sky2_pci_write16(hw, pdev->pcie_cap + PCI_EXP_LNKCTL,
					 reg);

3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360
		if (hw->chip_id == CHIP_ID_YUKON_PRM &&
			hw->chip_rev == CHIP_REV_YU_PRM_A0) {
			/* change PHY Interrupt polarity to low active */
			reg = sky2_read16(hw, GPHY_CTRL);
			sky2_write16(hw, GPHY_CTRL, reg | GPC_INTPOL);

			/* adapt HW for low active PHY Interrupt */
			reg = sky2_read16(hw, Y2_CFG_SPC + PCI_LDO_CTRL);
			sky2_write16(hw, Y2_CFG_SPC + PCI_LDO_CTRL, reg | PHY_M_UNDOC1);
		}

3361
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
S
Stephen Hemminger 已提交
3362 3363 3364 3365 3366

		/* re-enable PEX PM in PEX PHY debug reg. 8 (clear bit 12) */
		sky2_write32(hw, Y2_PEX_PHY_DATA, PEX_DB_ACCESS | (0x08UL << 16));
	}

S
Stephen Hemminger 已提交
3367 3368
	/* Clear I2C IRQ noise */
	sky2_write32(hw, B2_I2C_IRQ, 1);
3369 3370 3371 3372

	/* turn off hardware timer (unused) */
	sky2_write8(hw, B2_TI_CTRL, TIM_STOP);
	sky2_write8(hw, B2_TI_CTRL, TIM_CLR_IRQ);
S
Stephen Hemminger 已提交
3373

3374 3375
	/* Turn off descriptor polling */
	sky2_write32(hw, B28_DPT_CTRL, DPT_STOP);
3376 3377 3378

	/* Turn off receive timestamp */
	sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_STOP);
S
Stephen Hemminger 已提交
3379
	sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
3380 3381 3382 3383 3384 3385 3386

	/* enable the Tx Arbiters */
	for (i = 0; i < hw->ports; i++)
		sky2_write8(hw, SK_REG(i, TXA_CTRL), TXA_ENA_ARB);

	/* Initialize ram interface */
	for (i = 0; i < hw->ports; i++) {
S
Stephen Hemminger 已提交
3387
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_CTRL), RI_RST_CLR);
3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402

		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS1), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_R2), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XA2), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_WTO_XS2), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_R2), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XA2), SK_RI_TO_53);
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_RTO_XS2), SK_RI_TO_53);
	}

S
Stephen Hemminger 已提交
3403
	sky2_write32(hw, B0_HWE_IMSK, hwe_mask);
3404 3405

	for (i = 0; i < hw->ports; i++)
3406
		sky2_gmac_reset(hw, i);
3407

3408
	memset(hw->st_le, 0, hw->st_size * sizeof(struct sky2_status_le));
3409 3410 3411 3412 3413 3414
	hw->st_idx = 0;

	sky2_write32(hw, STAT_CTRL, SC_STAT_RST_SET);
	sky2_write32(hw, STAT_CTRL, SC_STAT_RST_CLR);

	sky2_write32(hw, STAT_LIST_ADDR_LO, hw->st_dma);
S
Stephen Hemminger 已提交
3415
	sky2_write32(hw, STAT_LIST_ADDR_HI, (u64) hw->st_dma >> 32);
3416 3417

	/* Set the list last index */
3418
	sky2_write16(hw, STAT_LAST_IDX, hw->st_size - 1);
3419

3420 3421
	sky2_write16(hw, STAT_TX_IDX_TH, 10);
	sky2_write8(hw, STAT_FIFO_WM, 16);
3422

3423 3424 3425 3426 3427
	/* set Status-FIFO ISR watermark */
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0)
		sky2_write8(hw, STAT_FIFO_ISR_WM, 4);
	else
		sky2_write8(hw, STAT_FIFO_ISR_WM, 16);
3428

3429
	sky2_write32(hw, STAT_TX_TIMER_INI, sky2_us2clk(hw, 1000));
3430 3431
	sky2_write32(hw, STAT_ISR_TIMER_INI, sky2_us2clk(hw, 20));
	sky2_write32(hw, STAT_LEV_TIMER_INI, sky2_us2clk(hw, 100));
3432

S
Stephen Hemminger 已提交
3433
	/* enable status unit */
3434 3435 3436 3437 3438
	sky2_write32(hw, STAT_CTRL, SC_STAT_OP_ON);

	sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
	sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
	sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
3439 3440
}

3441 3442
/* Take device down (offline).
 * Equivalent to doing dev_stop() but this does not
L
Lucas De Marchi 已提交
3443
 * inform upper layers of the transition.
3444 3445 3446 3447
 */
static void sky2_detach(struct net_device *dev)
{
	if (netif_running(dev)) {
3448
		netif_tx_lock(dev);
3449
		netif_device_detach(dev);	/* stop txq */
3450
		netif_tx_unlock(dev);
S
stephen hemminger 已提交
3451
		sky2_close(dev);
3452 3453 3454 3455 3456 3457 3458 3459 3460
	}
}

/* Bring device back after doing sky2_detach */
static int sky2_reattach(struct net_device *dev)
{
	int err = 0;

	if (netif_running(dev)) {
S
stephen hemminger 已提交
3461
		err = sky2_open(dev);
3462
		if (err) {
3463
			netdev_info(dev, "could not restart %d\n", err);
3464 3465 3466 3467 3468 3469 3470 3471 3472 3473
			dev_close(dev);
		} else {
			netif_device_attach(dev);
			sky2_set_multicast(dev);
		}
	}

	return err;
}

3474
static void sky2_all_down(struct sky2_hw *hw)
S
Stephen Hemminger 已提交
3475
{
3476
	int i;
S
Stephen Hemminger 已提交
3477

S
stephen hemminger 已提交
3478 3479
	if (hw->flags & SKY2_HW_IRQ_SETUP) {
		sky2_write32(hw, B0_IMSK, 0);
3480
		sky2_read32(hw, B0_IMSK);
3481 3482

		synchronize_irq(hw->pdev->irq);
S
stephen hemminger 已提交
3483 3484
		napi_disable(&hw->napi);
	}
3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496

	for (i = 0; i < hw->ports; i++) {
		struct net_device *dev = hw->dev[i];
		struct sky2_port *sky2 = netdev_priv(dev);

		if (!netif_running(dev))
			continue;

		netif_carrier_off(dev);
		netif_tx_disable(dev);
		sky2_hw_down(sky2);
	}
3497
}
3498

3499 3500 3501 3502
static void sky2_all_up(struct sky2_hw *hw)
{
	u32 imask = Y2_IS_BASE;
	int i;
S
Stephen Hemminger 已提交
3503

3504 3505 3506 3507 3508 3509 3510 3511
	for (i = 0; i < hw->ports; i++) {
		struct net_device *dev = hw->dev[i];
		struct sky2_port *sky2 = netdev_priv(dev);

		if (!netif_running(dev))
			continue;

		sky2_hw_up(sky2);
3512
		sky2_set_multicast(dev);
3513
		imask |= portirq_msk[i];
3514 3515 3516
		netif_wake_queue(dev);
	}

S
stephen hemminger 已提交
3517
	if (hw->flags & SKY2_HW_IRQ_SETUP) {
3518 3519 3520 3521 3522
		sky2_write32(hw, B0_IMSK, imask);
		sky2_read32(hw, B0_IMSK);
		sky2_read32(hw, B0_Y2_SP_LISR);
		napi_enable(&hw->napi);
	}
3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533
}

static void sky2_restart(struct work_struct *work)
{
	struct sky2_hw *hw = container_of(work, struct sky2_hw, restart_work);

	rtnl_lock();

	sky2_all_down(hw);
	sky2_reset(hw);
	sky2_all_up(hw);
S
Stephen Hemminger 已提交
3534 3535 3536 3537

	rtnl_unlock();
}

3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554
static inline u8 sky2_wol_supported(const struct sky2_hw *hw)
{
	return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0;
}

static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
{
	const struct sky2_port *sky2 = netdev_priv(dev);

	wol->supported = sky2_wol_supported(sky2->hw);
	wol->wolopts = sky2->wol;
}

static int sky2_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
3555 3556
	bool enable_wakeup = false;
	int i;
3557

3558 3559
	if ((wol->wolopts & ~sky2_wol_supported(sky2->hw)) ||
	    !device_can_wakeup(&hw->pdev->dev))
3560 3561 3562
		return -EOPNOTSUPP;

	sky2->wol = wol->wolopts;
3563 3564 3565 3566 3567 3568 3569 3570 3571 3572

	for (i = 0; i < hw->ports; i++) {
		struct net_device *dev = hw->dev[i];
		struct sky2_port *sky2 = netdev_priv(dev);

		if (sky2->wol)
			enable_wakeup = true;
	}
	device_set_wakeup_enable(&hw->pdev->dev, enable_wakeup);

3573 3574 3575
	return 0;
}

3576
static u32 sky2_supported_modes(const struct sky2_hw *hw)
3577
{
S
Stephen Hemminger 已提交
3578 3579 3580 3581
	if (sky2_is_copper(hw)) {
		u32 modes = SUPPORTED_10baseT_Half
			| SUPPORTED_10baseT_Full
			| SUPPORTED_100baseT_Half
3582
			| SUPPORTED_100baseT_Full;
3583

3584
		if (hw->flags & SKY2_HW_GIGABIT)
3585
			modes |= SUPPORTED_1000baseT_Half
S
Stephen Hemminger 已提交
3586 3587
				| SUPPORTED_1000baseT_Full;
		return modes;
3588
	} else
3589 3590
		return SUPPORTED_1000baseT_Half
			| SUPPORTED_1000baseT_Full;
3591 3592
}

3593 3594
static int sky2_get_link_ksettings(struct net_device *dev,
				   struct ethtool_link_ksettings *cmd)
3595 3596 3597
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
3598
	u32 supported, advertising;
3599

3600 3601
	supported = sky2_supported_modes(hw);
	cmd->base.phy_address = PHY_ADDR_MARV;
S
Stephen Hemminger 已提交
3602
	if (sky2_is_copper(hw)) {
3603 3604 3605
		cmd->base.port = PORT_TP;
		cmd->base.speed = sky2->speed;
		supported |=  SUPPORTED_Autoneg | SUPPORTED_TP;
S
Stephen Hemminger 已提交
3606
	} else {
3607 3608 3609
		cmd->base.speed = SPEED_1000;
		cmd->base.port = PORT_FIBRE;
		supported |=  SUPPORTED_Autoneg | SUPPORTED_FIBRE;
S
Stephen Hemminger 已提交
3610
	}
3611

3612 3613
	advertising = sky2->advertising;
	cmd->base.autoneg = (sky2->flags & SKY2_FLAG_AUTO_SPEED)
S
Stephen Hemminger 已提交
3614
		? AUTONEG_ENABLE : AUTONEG_DISABLE;
3615 3616 3617 3618 3619 3620 3621
	cmd->base.duplex = sky2->duplex;

	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
						supported);
	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
						advertising);

3622 3623 3624
	return 0;
}

3625 3626
static int sky2_set_link_ksettings(struct net_device *dev,
				   const struct ethtool_link_ksettings *cmd)
3627 3628 3629 3630
{
	struct sky2_port *sky2 = netdev_priv(dev);
	const struct sky2_hw *hw = sky2->hw;
	u32 supported = sky2_supported_modes(hw);
3631 3632 3633 3634
	u32 new_advertising;

	ethtool_convert_link_mode_to_legacy_u32(&new_advertising,
						cmd->link_modes.advertising);
3635

3636 3637
	if (cmd->base.autoneg == AUTONEG_ENABLE) {
		if (new_advertising & ~supported)
3638 3639 3640
			return -EINVAL;

		if (sky2_is_copper(hw))
3641
			sky2->advertising = new_advertising |
3642 3643 3644
					    ADVERTISED_TP |
					    ADVERTISED_Autoneg;
		else
3645
			sky2->advertising = new_advertising |
3646 3647 3648
					    ADVERTISED_FIBRE |
					    ADVERTISED_Autoneg;

S
Stephen Hemminger 已提交
3649
		sky2->flags |= SKY2_FLAG_AUTO_SPEED;
3650 3651 3652 3653
		sky2->duplex = -1;
		sky2->speed = -1;
	} else {
		u32 setting;
3654
		u32 speed = cmd->base.speed;
3655

3656
		switch (speed) {
3657
		case SPEED_1000:
3658
			if (cmd->base.duplex == DUPLEX_FULL)
3659
				setting = SUPPORTED_1000baseT_Full;
3660
			else if (cmd->base.duplex == DUPLEX_HALF)
3661 3662 3663 3664 3665
				setting = SUPPORTED_1000baseT_Half;
			else
				return -EINVAL;
			break;
		case SPEED_100:
3666
			if (cmd->base.duplex == DUPLEX_FULL)
3667
				setting = SUPPORTED_100baseT_Full;
3668
			else if (cmd->base.duplex == DUPLEX_HALF)
3669 3670 3671 3672 3673 3674
				setting = SUPPORTED_100baseT_Half;
			else
				return -EINVAL;
			break;

		case SPEED_10:
3675
			if (cmd->base.duplex == DUPLEX_FULL)
3676
				setting = SUPPORTED_10baseT_Full;
3677
			else if (cmd->base.duplex == DUPLEX_HALF)
3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688
				setting = SUPPORTED_10baseT_Half;
			else
				return -EINVAL;
			break;
		default:
			return -EINVAL;
		}

		if ((setting & supported) == 0)
			return -EINVAL;

3689
		sky2->speed = speed;
3690
		sky2->duplex = cmd->base.duplex;
S
Stephen Hemminger 已提交
3691
		sky2->flags &= ~SKY2_FLAG_AUTO_SPEED;
3692 3693
	}

3694
	if (netif_running(dev)) {
3695
		sky2_phy_reinit(sky2);
3696 3697
		sky2_set_multicast(dev);
	}
3698 3699 3700 3701 3702 3703 3704 3705 3706

	return 0;
}

static void sky2_get_drvinfo(struct net_device *dev,
			     struct ethtool_drvinfo *info)
{
	struct sky2_port *sky2 = netdev_priv(dev);

3707 3708 3709 3710
	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
	strlcpy(info->bus_info, pci_name(sky2->hw->pdev),
		sizeof(info->bus_info));
3711 3712 3713
}

static const struct sky2_stat {
S
Stephen Hemminger 已提交
3714 3715
	char name[ETH_GSTRING_LEN];
	u16 offset;
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726
} sky2_stats[] = {
	{ "tx_bytes",	   GM_TXO_OK_HI },
	{ "rx_bytes",	   GM_RXO_OK_HI },
	{ "tx_broadcast",  GM_TXF_BC_OK },
	{ "rx_broadcast",  GM_RXF_BC_OK },
	{ "tx_multicast",  GM_TXF_MC_OK },
	{ "rx_multicast",  GM_RXF_MC_OK },
	{ "tx_unicast",    GM_TXF_UC_OK },
	{ "rx_unicast",    GM_RXF_UC_OK },
	{ "tx_mac_pause",  GM_TXF_MPAUSE },
	{ "rx_mac_pause",  GM_RXF_MPAUSE },
3727
	{ "collisions",    GM_TXF_COL },
3728 3729
	{ "late_collision",GM_TXF_LAT_COL },
	{ "aborted", 	   GM_TXF_ABO_COL },
3730
	{ "single_collisions", GM_TXF_SNG_COL },
3731
	{ "multi_collisions", GM_TXF_MUL_COL },
3732

3733
	{ "rx_short",      GM_RXF_SHT },
3734
	{ "rx_runt", 	   GM_RXE_FRAG },
3735 3736 3737 3738 3739 3740 3741
	{ "rx_64_byte_packets", GM_RXF_64B },
	{ "rx_65_to_127_byte_packets", GM_RXF_127B },
	{ "rx_128_to_255_byte_packets", GM_RXF_255B },
	{ "rx_256_to_511_byte_packets", GM_RXF_511B },
	{ "rx_512_to_1023_byte_packets", GM_RXF_1023B },
	{ "rx_1024_to_1518_byte_packets", GM_RXF_1518B },
	{ "rx_1518_to_max_byte_packets", GM_RXF_MAX_SZ },
3742
	{ "rx_too_long",   GM_RXF_LNG_ERR },
3743 3744
	{ "rx_fifo_overflow", GM_RXE_FIFO_OV },
	{ "rx_jabber",     GM_RXF_JAB_PKT },
3745
	{ "rx_fcs_error",   GM_RXF_FCS_ERR },
3746 3747 3748 3749 3750 3751 3752 3753 3754

	{ "tx_64_byte_packets", GM_TXF_64B },
	{ "tx_65_to_127_byte_packets", GM_TXF_127B },
	{ "tx_128_to_255_byte_packets", GM_TXF_255B },
	{ "tx_256_to_511_byte_packets", GM_TXF_511B },
	{ "tx_512_to_1023_byte_packets", GM_TXF_1023B },
	{ "tx_1024_to_1518_byte_packets", GM_TXF_1518B },
	{ "tx_1519_to_max_byte_packets", GM_TXF_MAX_SZ },
	{ "tx_fifo_underrun", GM_TXE_FIFO_UR },
3755 3756 3757 3758 3759 3760 3761 3762
};

static u32 sky2_get_msglevel(struct net_device *netdev)
{
	struct sky2_port *sky2 = netdev_priv(netdev);
	return sky2->msg_enable;
}

3763 3764 3765 3766
static int sky2_nway_reset(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);

S
Stephen Hemminger 已提交
3767
	if (!netif_running(dev) || !(sky2->flags & SKY2_FLAG_AUTO_SPEED))
3768 3769
		return -EINVAL;

3770
	sky2_phy_reinit(sky2);
3771
	sky2_set_multicast(dev);
3772 3773 3774 3775

	return 0;
}

S
Stephen Hemminger 已提交
3776
static void sky2_phy_stats(struct sky2_port *sky2, u64 * data, unsigned count)
3777 3778 3779 3780 3781
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	int i;

S
stephen hemminger 已提交
3782 3783
	data[0] = get_stats64(hw, port, GM_TXO_OK_LO);
	data[1] = get_stats64(hw, port, GM_RXO_OK_LO);
3784

S
Stephen Hemminger 已提交
3785
	for (i = 2; i < count; i++)
S
stephen hemminger 已提交
3786
		data[i] = get_stats32(hw, port, sky2_stats[i].offset);
3787 3788 3789 3790 3791 3792 3793 3794
}

static void sky2_set_msglevel(struct net_device *netdev, u32 value)
{
	struct sky2_port *sky2 = netdev_priv(netdev);
	sky2->msg_enable = value;
}

3795
static int sky2_get_sset_count(struct net_device *dev, int sset)
3796
{
3797 3798 3799 3800 3801 3802
	switch (sset) {
	case ETH_SS_STATS:
		return ARRAY_SIZE(sky2_stats);
	default:
		return -EOPNOTSUPP;
	}
3803 3804 3805
}

static void sky2_get_ethtool_stats(struct net_device *dev,
S
Stephen Hemminger 已提交
3806
				   struct ethtool_stats *stats, u64 * data)
3807 3808 3809
{
	struct sky2_port *sky2 = netdev_priv(dev);

S
Stephen Hemminger 已提交
3810
	sky2_phy_stats(sky2, data, ARRAY_SIZE(sky2_stats));
3811 3812
}

S
Stephen Hemminger 已提交
3813
static void sky2_get_strings(struct net_device *dev, u32 stringset, u8 * data)
3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828
{
	int i;

	switch (stringset) {
	case ETH_SS_STATS:
		for (i = 0; i < ARRAY_SIZE(sky2_stats); i++)
			memcpy(data + i * ETH_GSTRING_LEN,
			       sky2_stats[i].name, ETH_GSTRING_LEN);
		break;
	}
}

static int sky2_set_mac_address(struct net_device *dev, void *p)
{
	struct sky2_port *sky2 = netdev_priv(dev);
3829 3830 3831
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	const struct sockaddr *addr = p;
3832 3833 3834 3835 3836

	if (!is_valid_ether_addr(addr->sa_data))
		return -EADDRNOTAVAIL;

	memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
3837
	memcpy_toio(hw->regs + B2_MAC_1 + port * 8,
3838
		    dev->dev_addr, ETH_ALEN);
3839
	memcpy_toio(hw->regs + B2_MAC_2 + port * 8,
3840
		    dev->dev_addr, ETH_ALEN);
3841

3842 3843 3844 3845 3846
	/* virtual address for data */
	gma_set_addr(hw, port, GM_SRC_ADDR_2L, dev->dev_addr);

	/* physical address: used for pause frames */
	gma_set_addr(hw, port, GM_SRC_ADDR_1L, dev->dev_addr);
3847 3848

	return 0;
3849 3850
}

M
Mike McCormack 已提交
3851
static inline void sky2_add_filter(u8 filter[8], const u8 *addr)
3852 3853 3854 3855 3856 3857 3858
{
	u32 bit;

	bit = ether_crc(ETH_ALEN, addr) & 63;
	filter[bit >> 3] |= 1 << (bit & 7);
}

3859 3860 3861 3862 3863
static void sky2_set_multicast(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
3864
	struct netdev_hw_addr *ha;
3865 3866
	u16 reg;
	u8 filter[8];
3867 3868
	int rx_pause;
	static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };
3869

3870
	rx_pause = (sky2->flow_status == FC_RX || sky2->flow_status == FC_BOTH);
3871 3872 3873 3874 3875
	memset(filter, 0, sizeof(filter));

	reg = gma_read16(hw, port, GM_RX_CTRL);
	reg |= GM_RXCR_UCF_ENA;

S
shemminger@osdl.org 已提交
3876
	if (dev->flags & IFF_PROMISC)	/* promiscuous */
3877
		reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
3878
	else if (dev->flags & IFF_ALLMULTI)
3879
		memset(filter, 0xff, sizeof(filter));
3880
	else if (netdev_mc_empty(dev) && !rx_pause)
3881 3882 3883 3884
		reg &= ~GM_RXCR_MCF_ENA;
	else {
		reg |= GM_RXCR_MCF_ENA;

3885 3886 3887
		if (rx_pause)
			sky2_add_filter(filter, pause_mc_addr);

3888 3889
		netdev_for_each_mc_addr(ha, dev)
			sky2_add_filter(filter, ha->addr);
3890 3891 3892
	}

	gma_write16(hw, port, GM_MC_ADDR_H1,
S
Stephen Hemminger 已提交
3893
		    (u16) filter[0] | ((u16) filter[1] << 8));
3894
	gma_write16(hw, port, GM_MC_ADDR_H2,
S
Stephen Hemminger 已提交
3895
		    (u16) filter[2] | ((u16) filter[3] << 8));
3896
	gma_write16(hw, port, GM_MC_ADDR_H3,
S
Stephen Hemminger 已提交
3897
		    (u16) filter[4] | ((u16) filter[5] << 8));
3898
	gma_write16(hw, port, GM_MC_ADDR_H4,
S
Stephen Hemminger 已提交
3899
		    (u16) filter[6] | ((u16) filter[7] << 8));
3900 3901 3902 3903

	gma_write16(hw, port, GM_RX_CTRL, reg);
}

3904 3905
static void sky2_get_stats(struct net_device *dev,
			   struct rtnl_link_stats64 *stats)
S
stephen hemminger 已提交
3906 3907 3908 3909 3910 3911 3912 3913
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	unsigned int start;
	u64 _bytes, _packets;

	do {
3914
		start = u64_stats_fetch_begin_irq(&sky2->rx_stats.syncp);
S
stephen hemminger 已提交
3915 3916
		_bytes = sky2->rx_stats.bytes;
		_packets = sky2->rx_stats.packets;
3917
	} while (u64_stats_fetch_retry_irq(&sky2->rx_stats.syncp, start));
S
stephen hemminger 已提交
3918 3919 3920 3921 3922

	stats->rx_packets = _packets;
	stats->rx_bytes = _bytes;

	do {
3923
		start = u64_stats_fetch_begin_irq(&sky2->tx_stats.syncp);
S
stephen hemminger 已提交
3924 3925
		_bytes = sky2->tx_stats.bytes;
		_packets = sky2->tx_stats.packets;
3926
	} while (u64_stats_fetch_retry_irq(&sky2->tx_stats.syncp, start));
S
stephen hemminger 已提交
3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946

	stats->tx_packets = _packets;
	stats->tx_bytes = _bytes;

	stats->multicast = get_stats32(hw, port, GM_RXF_MC_OK)
		+ get_stats32(hw, port, GM_RXF_BC_OK);

	stats->collisions = get_stats32(hw, port, GM_TXF_COL);

	stats->rx_length_errors = get_stats32(hw, port, GM_RXF_LNG_ERR);
	stats->rx_crc_errors = get_stats32(hw, port, GM_RXF_FCS_ERR);
	stats->rx_frame_errors = get_stats32(hw, port, GM_RXF_SHT)
		+ get_stats32(hw, port, GM_RXE_FRAG);
	stats->rx_over_errors = get_stats32(hw, port, GM_RXE_FIFO_OV);

	stats->rx_dropped = dev->stats.rx_dropped;
	stats->rx_fifo_errors = dev->stats.rx_fifo_errors;
	stats->tx_fifo_errors = dev->stats.tx_fifo_errors;
}

3947 3948 3949
/* Can have one global because blinking is controlled by
 * ethtool and that is always under RTNL mutex
 */
S
Stephen Hemminger 已提交
3950
static void sky2_led(struct sky2_port *sky2, enum led_mode mode)
3951
{
S
Stephen Hemminger 已提交
3952 3953
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
S
Stephen Hemminger 已提交
3954

S
Stephen Hemminger 已提交
3955 3956 3957 3958 3959
	spin_lock_bh(&sky2->phy_lock);
	if (hw->chip_id == CHIP_ID_YUKON_EC_U ||
	    hw->chip_id == CHIP_ID_YUKON_EX ||
	    hw->chip_id == CHIP_ID_YUKON_SUPR) {
		u16 pg;
S
Stephen Hemminger 已提交
3960 3961 3962
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);

S
Stephen Hemminger 已提交
3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991
		switch (mode) {
		case MO_LED_OFF:
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
				     PHY_M_LEDC_LOS_CTRL(8) |
				     PHY_M_LEDC_INIT_CTRL(8) |
				     PHY_M_LEDC_STA1_CTRL(8) |
				     PHY_M_LEDC_STA0_CTRL(8));
			break;
		case MO_LED_ON:
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
				     PHY_M_LEDC_LOS_CTRL(9) |
				     PHY_M_LEDC_INIT_CTRL(9) |
				     PHY_M_LEDC_STA1_CTRL(9) |
				     PHY_M_LEDC_STA0_CTRL(9));
			break;
		case MO_LED_BLINK:
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
				     PHY_M_LEDC_LOS_CTRL(0xa) |
				     PHY_M_LEDC_INIT_CTRL(0xa) |
				     PHY_M_LEDC_STA1_CTRL(0xa) |
				     PHY_M_LEDC_STA0_CTRL(0xa));
			break;
		case MO_LED_NORM:
			gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
				     PHY_M_LEDC_LOS_CTRL(1) |
				     PHY_M_LEDC_INIT_CTRL(8) |
				     PHY_M_LEDC_STA1_CTRL(7) |
				     PHY_M_LEDC_STA0_CTRL(7));
		}
S
Stephen Hemminger 已提交
3992

S
Stephen Hemminger 已提交
3993 3994
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
	} else
3995
		gm_phy_write(hw, port, PHY_MARV_LED_OVER,
S
Stephen Hemminger 已提交
3996 3997 3998 3999 4000 4001 4002 4003
				     PHY_M_LED_MO_DUP(mode) |
				     PHY_M_LED_MO_10(mode) |
				     PHY_M_LED_MO_100(mode) |
				     PHY_M_LED_MO_1000(mode) |
				     PHY_M_LED_MO_RX(mode) |
				     PHY_M_LED_MO_TX(mode));

	spin_unlock_bh(&sky2->phy_lock);
4004 4005 4006
}

/* blink LED's for finding board */
4007 4008
static int sky2_set_phys_id(struct net_device *dev,
			    enum ethtool_phys_id_state state)
4009 4010 4011
{
	struct sky2_port *sky2 = netdev_priv(dev);

4012 4013
	switch (state) {
	case ETHTOOL_ID_ACTIVE:
4014
		return 1;	/* cycle on/off once per second */
4015 4016 4017 4018
	case ETHTOOL_ID_INACTIVE:
		sky2_led(sky2, MO_LED_NORM);
		break;
	case ETHTOOL_ID_ON:
S
Stephen Hemminger 已提交
4019
		sky2_led(sky2, MO_LED_ON);
4020 4021
		break;
	case ETHTOOL_ID_OFF:
S
Stephen Hemminger 已提交
4022
		sky2_led(sky2, MO_LED_OFF);
4023
		break;
S
Stephen Hemminger 已提交
4024
	}
4025 4026 4027 4028 4029 4030 4031 4032 4033

	return 0;
}

static void sky2_get_pauseparam(struct net_device *dev,
				struct ethtool_pauseparam *ecmd)
{
	struct sky2_port *sky2 = netdev_priv(dev);

4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047
	switch (sky2->flow_mode) {
	case FC_NONE:
		ecmd->tx_pause = ecmd->rx_pause = 0;
		break;
	case FC_TX:
		ecmd->tx_pause = 1, ecmd->rx_pause = 0;
		break;
	case FC_RX:
		ecmd->tx_pause = 0, ecmd->rx_pause = 1;
		break;
	case FC_BOTH:
		ecmd->tx_pause = ecmd->rx_pause = 1;
	}

S
Stephen Hemminger 已提交
4048 4049
	ecmd->autoneg = (sky2->flags & SKY2_FLAG_AUTO_PAUSE)
		? AUTONEG_ENABLE : AUTONEG_DISABLE;
4050 4051 4052 4053 4054 4055 4056
}

static int sky2_set_pauseparam(struct net_device *dev,
			       struct ethtool_pauseparam *ecmd)
{
	struct sky2_port *sky2 = netdev_priv(dev);

S
Stephen Hemminger 已提交
4057 4058 4059 4060 4061
	if (ecmd->autoneg == AUTONEG_ENABLE)
		sky2->flags |= SKY2_FLAG_AUTO_PAUSE;
	else
		sky2->flags &= ~SKY2_FLAG_AUTO_PAUSE;

4062
	sky2->flow_mode = sky2_flow(ecmd->rx_pause, ecmd->tx_pause);
4063

4064 4065
	if (netif_running(dev))
		sky2_phy_reinit(sky2);
4066

4067
	return 0;
4068 4069
}

4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109
static int sky2_get_coalesce(struct net_device *dev,
			     struct ethtool_coalesce *ecmd)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;

	if (sky2_read8(hw, STAT_TX_TIMER_CTRL) == TIM_STOP)
		ecmd->tx_coalesce_usecs = 0;
	else {
		u32 clks = sky2_read32(hw, STAT_TX_TIMER_INI);
		ecmd->tx_coalesce_usecs = sky2_clk2us(hw, clks);
	}
	ecmd->tx_max_coalesced_frames = sky2_read16(hw, STAT_TX_IDX_TH);

	if (sky2_read8(hw, STAT_LEV_TIMER_CTRL) == TIM_STOP)
		ecmd->rx_coalesce_usecs = 0;
	else {
		u32 clks = sky2_read32(hw, STAT_LEV_TIMER_INI);
		ecmd->rx_coalesce_usecs = sky2_clk2us(hw, clks);
	}
	ecmd->rx_max_coalesced_frames = sky2_read8(hw, STAT_FIFO_WM);

	if (sky2_read8(hw, STAT_ISR_TIMER_CTRL) == TIM_STOP)
		ecmd->rx_coalesce_usecs_irq = 0;
	else {
		u32 clks = sky2_read32(hw, STAT_ISR_TIMER_INI);
		ecmd->rx_coalesce_usecs_irq = sky2_clk2us(hw, clks);
	}

	ecmd->rx_max_coalesced_frames_irq = sky2_read8(hw, STAT_FIFO_ISR_WM);

	return 0;
}

/* Note: this affect both ports */
static int sky2_set_coalesce(struct net_device *dev,
			     struct ethtool_coalesce *ecmd)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
4110
	const u32 tmax = sky2_clk2us(hw, 0x0ffffff);
4111

4112 4113 4114
	if (ecmd->tx_coalesce_usecs > tmax ||
	    ecmd->rx_coalesce_usecs > tmax ||
	    ecmd->rx_coalesce_usecs_irq > tmax)
4115 4116
		return -EINVAL;

4117
	if (ecmd->tx_max_coalesced_frames >= sky2->tx_ring_size-1)
4118
		return -EINVAL;
4119
	if (ecmd->rx_max_coalesced_frames > RX_MAX_PENDING)
4120
		return -EINVAL;
M
Mike McCormack 已提交
4121
	if (ecmd->rx_max_coalesced_frames_irq > RX_MAX_PENDING)
4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144
		return -EINVAL;

	if (ecmd->tx_coalesce_usecs == 0)
		sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_STOP);
	else {
		sky2_write32(hw, STAT_TX_TIMER_INI,
			     sky2_us2clk(hw, ecmd->tx_coalesce_usecs));
		sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
	}
	sky2_write16(hw, STAT_TX_IDX_TH, ecmd->tx_max_coalesced_frames);

	if (ecmd->rx_coalesce_usecs == 0)
		sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_STOP);
	else {
		sky2_write32(hw, STAT_LEV_TIMER_INI,
			     sky2_us2clk(hw, ecmd->rx_coalesce_usecs));
		sky2_write8(hw, STAT_LEV_TIMER_CTRL, TIM_START);
	}
	sky2_write8(hw, STAT_FIFO_WM, ecmd->rx_max_coalesced_frames);

	if (ecmd->rx_coalesce_usecs_irq == 0)
		sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_STOP);
	else {
4145
		sky2_write32(hw, STAT_ISR_TIMER_INI,
4146 4147 4148 4149 4150 4151 4152
			     sky2_us2clk(hw, ecmd->rx_coalesce_usecs_irq));
		sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
	}
	sky2_write8(hw, STAT_FIFO_ISR_WM, ecmd->rx_max_coalesced_frames_irq);
	return 0;
}

4153 4154 4155 4156 4157 4158 4159 4160 4161 4162
/*
 * Hardware is limited to min of 128 and max of 2048 for ring size
 * and  rounded up to next power of two
 * to avoid division in modulus calclation
 */
static unsigned long roundup_ring_size(unsigned long pending)
{
	return max(128ul, roundup_pow_of_two(pending+1));
}

S
Stephen Hemminger 已提交
4163 4164 4165 4166 4167 4168
static void sky2_get_ringparam(struct net_device *dev,
			       struct ethtool_ringparam *ering)
{
	struct sky2_port *sky2 = netdev_priv(dev);

	ering->rx_max_pending = RX_MAX_PENDING;
4169
	ering->tx_max_pending = TX_MAX_PENDING;
S
Stephen Hemminger 已提交
4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181

	ering->rx_pending = sky2->rx_pending;
	ering->tx_pending = sky2->tx_pending;
}

static int sky2_set_ringparam(struct net_device *dev,
			      struct ethtool_ringparam *ering)
{
	struct sky2_port *sky2 = netdev_priv(dev);

	if (ering->rx_pending > RX_MAX_PENDING ||
	    ering->rx_pending < 8 ||
4182 4183
	    ering->tx_pending < TX_MIN_PENDING ||
	    ering->tx_pending > TX_MAX_PENDING)
S
Stephen Hemminger 已提交
4184 4185
		return -EINVAL;

4186
	sky2_detach(dev);
S
Stephen Hemminger 已提交
4187 4188 4189

	sky2->rx_pending = ering->rx_pending;
	sky2->tx_pending = ering->tx_pending;
4190
	sky2->tx_ring_size = roundup_ring_size(sky2->tx_pending);
S
Stephen Hemminger 已提交
4191

4192
	return sky2_reattach(dev);
S
Stephen Hemminger 已提交
4193 4194 4195 4196
}

static int sky2_get_regs_len(struct net_device *dev)
{
4197
	return 0x4000;
S
Stephen Hemminger 已提交
4198 4199
}

4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243
static int sky2_reg_access_ok(struct sky2_hw *hw, unsigned int b)
{
	/* This complicated switch statement is to make sure and
	 * only access regions that are unreserved.
	 * Some blocks are only valid on dual port cards.
	 */
	switch (b) {
	/* second port */
	case 5:		/* Tx Arbiter 2 */
	case 9:		/* RX2 */
	case 14 ... 15:	/* TX2 */
	case 17: case 19: /* Ram Buffer 2 */
	case 22 ... 23: /* Tx Ram Buffer 2 */
	case 25:	/* Rx MAC Fifo 1 */
	case 27:	/* Tx MAC Fifo 2 */
	case 31:	/* GPHY 2 */
	case 40 ... 47: /* Pattern Ram 2 */
	case 52: case 54: /* TCP Segmentation 2 */
	case 112 ... 116: /* GMAC 2 */
		return hw->ports > 1;

	case 0:		/* Control */
	case 2:		/* Mac address */
	case 4:		/* Tx Arbiter 1 */
	case 7:		/* PCI express reg */
	case 8:		/* RX1 */
	case 12 ... 13: /* TX1 */
	case 16: case 18:/* Rx Ram Buffer 1 */
	case 20 ... 21: /* Tx Ram Buffer 1 */
	case 24:	/* Rx MAC Fifo 1 */
	case 26:	/* Tx MAC Fifo 1 */
	case 28 ... 29: /* Descriptor and status unit */
	case 30:	/* GPHY 1*/
	case 32 ... 39: /* Pattern Ram 1 */
	case 48: case 50: /* TCP Segmentation 1 */
	case 56 ... 60:	/* PCI space */
	case 80 ... 84:	/* GMAC 1 */
		return 1;

	default:
		return 0;
	}
}

S
Stephen Hemminger 已提交
4244 4245
/*
 * Returns copy of control register region
4246
 * Note: ethtool_get_regs always provides full size (16k) buffer
S
Stephen Hemminger 已提交
4247 4248 4249 4250 4251 4252
 */
static void sky2_get_regs(struct net_device *dev, struct ethtool_regs *regs,
			  void *p)
{
	const struct sky2_port *sky2 = netdev_priv(dev);
	const void __iomem *io = sky2->hw->regs;
4253
	unsigned int b;
S
Stephen Hemminger 已提交
4254 4255 4256

	regs->version = 1;

4257
	for (b = 0; b < 128; b++) {
4258 4259
		/* skip poisonous diagnostic ram region in block 3 */
		if (b == 3)
4260
			memcpy_fromio(p + 0x10, io + 0x10, 128 - 0x10);
4261
		else if (sky2_reg_access_ok(sky2->hw, b))
4262
			memcpy_fromio(p, io, 128);
4263
		else
4264
			memset(p, 0, 128);
4265

4266 4267 4268
		p += 128;
		io += 128;
	}
S
Stephen Hemminger 已提交
4269
}
4270

4271 4272 4273
static int sky2_get_eeprom_len(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
4274
	struct sky2_hw *hw = sky2->hw;
4275 4276
	u16 reg2;

4277
	reg2 = sky2_pci_read16(hw, PCI_DEV_REG2);
4278 4279 4280
	return 1 << ( ((reg2 & PCI_VPD_ROM_SZ) >> 14) + 8);
}

4281
static int sky2_vpd_wait(const struct sky2_hw *hw, int cap, u16 busy)
4282
{
4283
	unsigned long start = jiffies;
4284

4285 4286 4287
	while ( (sky2_pci_read16(hw, cap + PCI_VPD_ADDR) & PCI_VPD_ADDR_F) == busy) {
		/* Can take up to 10.6 ms for write */
		if (time_after(jiffies, start + HZ/4)) {
4288
			dev_err(&hw->pdev->dev, "VPD cycle timed out\n");
4289 4290
			return -ETIMEDOUT;
		}
4291
		msleep(1);
4292
	}
4293

4294 4295
	return 0;
}
4296

4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
static int sky2_vpd_read(struct sky2_hw *hw, int cap, void *data,
			 u16 offset, size_t length)
{
	int rc = 0;

	while (length > 0) {
		u32 val;

		sky2_pci_write16(hw, cap + PCI_VPD_ADDR, offset);
		rc = sky2_vpd_wait(hw, cap, 0);
		if (rc)
			break;

		val = sky2_pci_read32(hw, cap + PCI_VPD_DATA);

		memcpy(data, &val, min(sizeof(val), length));
		offset += sizeof(u32);
		data += sizeof(u32);
		length -= sizeof(u32);
	}

	return rc;
4319 4320
}

4321 4322
static int sky2_vpd_write(struct sky2_hw *hw, int cap, const void *data,
			  u16 offset, unsigned int length)
4323
{
4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337
	unsigned int i;
	int rc = 0;

	for (i = 0; i < length; i += sizeof(u32)) {
		u32 val = *(u32 *)(data + i);

		sky2_pci_write32(hw, cap + PCI_VPD_DATA, val);
		sky2_pci_write32(hw, cap + PCI_VPD_ADDR, offset | PCI_VPD_ADDR_F);

		rc = sky2_vpd_wait(hw, cap, PCI_VPD_ADDR_F);
		if (rc)
			break;
	}
	return rc;
4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350
}

static int sky2_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
			   u8 *data)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	int cap = pci_find_capability(sky2->hw->pdev, PCI_CAP_ID_VPD);

	if (!cap)
		return -EINVAL;

	eeprom->magic = SKY2_EEPROM_MAGIC;

4351
	return sky2_vpd_read(sky2->hw, cap, data, eeprom->offset, eeprom->len);
4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365
}

static int sky2_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
			   u8 *data)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	int cap = pci_find_capability(sky2->hw->pdev, PCI_CAP_ID_VPD);

	if (!cap)
		return -EINVAL;

	if (eeprom->magic != SKY2_EEPROM_MAGIC)
		return -EINVAL;

4366 4367 4368
	/* Partial writes not supported */
	if ((eeprom->offset & 3) || (eeprom->len & 3))
		return -EINVAL;
4369

4370
	return sky2_vpd_write(sky2->hw, cap, data, eeprom->offset, eeprom->len);
4371 4372
}

4373 4374
static netdev_features_t sky2_fix_features(struct net_device *dev,
	netdev_features_t features)
4375
{
4376 4377
	const struct sky2_port *sky2 = netdev_priv(dev);
	const struct sky2_hw *hw = sky2->hw;
4378

4379 4380 4381
	/* In order to do Jumbo packets on these chips, need to turn off the
	 * transmit store/forward. Therefore checksum offload won't work.
	 */
4382 4383
	if (dev->mtu > ETH_DATA_LEN && hw->chip_id == CHIP_ID_YUKON_EC_U) {
		netdev_info(dev, "checksum offload not possible with jumbo frames\n");
4384
		features &= ~(NETIF_F_TSO | NETIF_F_SG | NETIF_F_CSUM_MASK);
4385 4386 4387 4388 4389 4390 4391 4392 4393
	}

	/* Some hardware requires receive checksum for RSS to work. */
	if ( (features & NETIF_F_RXHASH) &&
	     !(features & NETIF_F_RXCSUM) &&
	     (sky2->hw->flags & SKY2_HW_RSS_CHKSUM)) {
		netdev_info(dev, "receive hashing forces receive checksum\n");
		features |= NETIF_F_RXCSUM;
	}
4394

4395 4396
	return features;
}
4397

4398
static int sky2_set_features(struct net_device *dev, netdev_features_t features)
4399 4400
{
	struct sky2_port *sky2 = netdev_priv(dev);
4401
	netdev_features_t changed = dev->features ^ features;
4402

4403 4404 4405 4406 4407 4408
	if ((changed & NETIF_F_RXCSUM) &&
	    !(sky2->hw->flags & SKY2_HW_NEW_LE)) {
		sky2_write32(sky2->hw,
			     Q_ADDR(rxqaddr[sky2->port], Q_CSR),
			     (features & NETIF_F_RXCSUM)
			     ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
4409
	}
4410

4411 4412
	if (changed & NETIF_F_RXHASH)
		rx_set_rss(dev, features);
4413

4414
	if (changed & (NETIF_F_HW_VLAN_CTAG_TX|NETIF_F_HW_VLAN_CTAG_RX))
4415
		sky2_vlan_mode(dev, features);
4416 4417 4418

	return 0;
}
4419

4420
static const struct ethtool_ops sky2_ethtool_ops = {
4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437
	.get_drvinfo	= sky2_get_drvinfo,
	.get_wol	= sky2_get_wol,
	.set_wol	= sky2_set_wol,
	.get_msglevel	= sky2_get_msglevel,
	.set_msglevel	= sky2_set_msglevel,
	.nway_reset	= sky2_nway_reset,
	.get_regs_len	= sky2_get_regs_len,
	.get_regs	= sky2_get_regs,
	.get_link	= ethtool_op_get_link,
	.get_eeprom_len	= sky2_get_eeprom_len,
	.get_eeprom	= sky2_get_eeprom,
	.set_eeprom	= sky2_set_eeprom,
	.get_strings	= sky2_get_strings,
	.get_coalesce	= sky2_get_coalesce,
	.set_coalesce	= sky2_set_coalesce,
	.get_ringparam	= sky2_get_ringparam,
	.set_ringparam	= sky2_set_ringparam,
4438 4439
	.get_pauseparam = sky2_get_pauseparam,
	.set_pauseparam = sky2_set_pauseparam,
4440
	.set_phys_id	= sky2_set_phys_id,
4441
	.get_sset_count = sky2_get_sset_count,
4442
	.get_ethtool_stats = sky2_get_ethtool_stats,
4443 4444
	.get_link_ksettings = sky2_get_link_ksettings,
	.set_link_ksettings = sky2_set_link_ksettings,
4445 4446
};

S
Stephen Hemminger 已提交
4447 4448 4449 4450
#ifdef CONFIG_SKY2_DEBUG

static struct dentry *sky2_debug;

4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530

/*
 * Read and parse the first part of Vital Product Data
 */
#define VPD_SIZE	128
#define VPD_MAGIC	0x82

static const struct vpd_tag {
	char tag[2];
	char *label;
} vpd_tags[] = {
	{ "PN",	"Part Number" },
	{ "EC", "Engineering Level" },
	{ "MN", "Manufacturer" },
	{ "SN", "Serial Number" },
	{ "YA", "Asset Tag" },
	{ "VL", "First Error Log Message" },
	{ "VF", "Second Error Log Message" },
	{ "VB", "Boot Agent ROM Configuration" },
	{ "VE", "EFI UNDI Configuration" },
};

static void sky2_show_vpd(struct seq_file *seq, struct sky2_hw *hw)
{
	size_t vpd_size;
	loff_t offs;
	u8 len;
	unsigned char *buf;
	u16 reg2;

	reg2 = sky2_pci_read16(hw, PCI_DEV_REG2);
	vpd_size = 1 << ( ((reg2 & PCI_VPD_ROM_SZ) >> 14) + 8);

	seq_printf(seq, "%s Product Data\n", pci_name(hw->pdev));
	buf = kmalloc(vpd_size, GFP_KERNEL);
	if (!buf) {
		seq_puts(seq, "no memory!\n");
		return;
	}

	if (pci_read_vpd(hw->pdev, 0, vpd_size, buf) < 0) {
		seq_puts(seq, "VPD read failed\n");
		goto out;
	}

	if (buf[0] != VPD_MAGIC) {
		seq_printf(seq, "VPD tag mismatch: %#x\n", buf[0]);
		goto out;
	}
	len = buf[1];
	if (len == 0 || len > vpd_size - 4) {
		seq_printf(seq, "Invalid id length: %d\n", len);
		goto out;
	}

	seq_printf(seq, "%.*s\n", len, buf + 3);
	offs = len + 3;

	while (offs < vpd_size - 4) {
		int i;

		if (!memcmp("RW", buf + offs, 2))	/* end marker */
			break;
		len = buf[offs + 2];
		if (offs + len + 3 >= vpd_size)
			break;

		for (i = 0; i < ARRAY_SIZE(vpd_tags); i++) {
			if (!memcmp(vpd_tags[i].tag, buf + offs, 2)) {
				seq_printf(seq, " %s: %.*s\n",
					   vpd_tags[i].label, len, buf + offs + 3);
				break;
			}
		}
		offs += len + 3;
	}
out:
	kfree(buf);
}

S
Stephen Hemminger 已提交
4531 4532 4533 4534
static int sky2_debug_show(struct seq_file *seq, void *v)
{
	struct net_device *dev = seq->private;
	const struct sky2_port *sky2 = netdev_priv(dev);
4535
	struct sky2_hw *hw = sky2->hw;
S
Stephen Hemminger 已提交
4536 4537 4538 4539
	unsigned port = sky2->port;
	unsigned idx, last;
	int sop;

4540
	sky2_show_vpd(seq, hw);
S
Stephen Hemminger 已提交
4541

4542
	seq_printf(seq, "\nIRQ src=%x mask=%x control=%x\n",
S
Stephen Hemminger 已提交
4543 4544 4545 4546
		   sky2_read32(hw, B0_ISRC),
		   sky2_read32(hw, B0_IMSK),
		   sky2_read32(hw, B0_Y2_SP_ICR));

4547
	if (!netif_running(dev)) {
4548
		seq_puts(seq, "network not running\n");
4549 4550 4551
		return 0;
	}

4552
	napi_disable(&hw->napi);
S
Stephen Hemminger 已提交
4553 4554
	last = sky2_read16(hw, STAT_PUT_IDX);

4555
	seq_printf(seq, "Status ring %u\n", hw->st_size);
S
Stephen Hemminger 已提交
4556 4557 4558 4559
	if (hw->st_idx == last)
		seq_puts(seq, "Status ring (empty)\n");
	else {
		seq_puts(seq, "Status ring\n");
4560 4561
		for (idx = hw->st_idx; idx != last && idx < hw->st_size;
		     idx = RING_NEXT(idx, hw->st_size)) {
S
Stephen Hemminger 已提交
4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575
			const struct sky2_status_le *le = hw->st_le + idx;
			seq_printf(seq, "[%d] %#x %d %#x\n",
				   idx, le->opcode, le->length, le->status);
		}
		seq_puts(seq, "\n");
	}

	seq_printf(seq, "Tx ring pending=%u...%u report=%d done=%d\n",
		   sky2->tx_cons, sky2->tx_prod,
		   sky2_read16(hw, port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX),
		   sky2_read16(hw, Q_ADDR(txqaddr[port], Q_DONE)));

	/* Dump contents of tx ring */
	sop = 1;
4576 4577
	for (idx = sky2->tx_next; idx != sky2->tx_prod && idx < sky2->tx_ring_size;
	     idx = RING_NEXT(idx, sky2->tx_ring_size)) {
S
Stephen Hemminger 已提交
4578 4579 4580 4581 4582 4583 4584
		const struct sky2_tx_le *le = sky2->tx_le + idx;
		u32 a = le32_to_cpu(le->addr);

		if (sop)
			seq_printf(seq, "%u:", idx);
		sop = 0;

M
Mike McCormack 已提交
4585
		switch (le->opcode & ~HW_OWNER) {
S
Stephen Hemminger 已提交
4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619
		case OP_ADDR64:
			seq_printf(seq, " %#x:", a);
			break;
		case OP_LRGLEN:
			seq_printf(seq, " mtu=%d", a);
			break;
		case OP_VLAN:
			seq_printf(seq, " vlan=%d", be16_to_cpu(le->length));
			break;
		case OP_TCPLISW:
			seq_printf(seq, " csum=%#x", a);
			break;
		case OP_LARGESEND:
			seq_printf(seq, " tso=%#x(%d)", a, le16_to_cpu(le->length));
			break;
		case OP_PACKET:
			seq_printf(seq, " %#x(%d)", a, le16_to_cpu(le->length));
			break;
		case OP_BUFFER:
			seq_printf(seq, " frag=%#x(%d)", a, le16_to_cpu(le->length));
			break;
		default:
			seq_printf(seq, " op=%#x,%#x(%d)", le->opcode,
				   a, le16_to_cpu(le->length));
		}

		if (le->ctrl & EOP) {
			seq_putc(seq, '\n');
			sop = 1;
		}
	}

	seq_printf(seq, "\nRx ring hw get=%d put=%d last=%d\n",
		   sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_GET_IDX)),
4620
		   sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_PUT_IDX)),
S
Stephen Hemminger 已提交
4621 4622
		   sky2_read16(hw, Y2_QADDR(rxqaddr[port], PREF_UNIT_LAST_IDX)));

4623
	sky2_read32(hw, B0_Y2_SP_LISR);
4624
	napi_enable(&hw->napi);
S
Stephen Hemminger 已提交
4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647
	return 0;
}

static int sky2_debug_open(struct inode *inode, struct file *file)
{
	return single_open(file, sky2_debug_show, inode->i_private);
}

static const struct file_operations sky2_debug_fops = {
	.owner		= THIS_MODULE,
	.open		= sky2_debug_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

/*
 * Use network device events to create/remove/rename
 * debugfs file entries
 */
static int sky2_device_event(struct notifier_block *unused,
			     unsigned long event, void *ptr)
{
4648
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
S
Stephen Hemminger 已提交
4649
	struct sky2_port *sky2 = netdev_priv(dev);
S
Stephen Hemminger 已提交
4650

S
stephen hemminger 已提交
4651
	if (dev->netdev_ops->ndo_open != sky2_open || !sky2_debug)
S
Stephen Hemminger 已提交
4652
		return NOTIFY_DONE;
S
Stephen Hemminger 已提交
4653

M
Mike McCormack 已提交
4654
	switch (event) {
S
Stephen Hemminger 已提交
4655 4656 4657 4658 4659 4660
	case NETDEV_CHANGENAME:
		if (sky2->debugfs) {
			sky2->debugfs = debugfs_rename(sky2_debug, sky2->debugfs,
						       sky2_debug, dev->name);
		}
		break;
S
Stephen Hemminger 已提交
4661

S
Stephen Hemminger 已提交
4662 4663
	case NETDEV_GOING_DOWN:
		if (sky2->debugfs) {
4664
			netdev_printk(KERN_DEBUG, dev, "remove debugfs\n");
S
Stephen Hemminger 已提交
4665 4666
			debugfs_remove(sky2->debugfs);
			sky2->debugfs = NULL;
S
Stephen Hemminger 已提交
4667
		}
S
Stephen Hemminger 已提交
4668 4669 4670
		break;

	case NETDEV_UP:
4671
		sky2->debugfs = debugfs_create_file(dev->name, 0444,
S
Stephen Hemminger 已提交
4672 4673 4674 4675
						    sky2_debug, dev,
						    &sky2_debug_fops);
		if (IS_ERR(sky2->debugfs))
			sky2->debugfs = NULL;
S
Stephen Hemminger 已提交
4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711
	}

	return NOTIFY_DONE;
}

static struct notifier_block sky2_notifier = {
	.notifier_call = sky2_device_event,
};


static __init void sky2_debug_init(void)
{
	struct dentry *ent;

	ent = debugfs_create_dir("sky2", NULL);
	if (!ent || IS_ERR(ent))
		return;

	sky2_debug = ent;
	register_netdevice_notifier(&sky2_notifier);
}

static __exit void sky2_debug_cleanup(void)
{
	if (sky2_debug) {
		unregister_netdevice_notifier(&sky2_notifier);
		debugfs_remove(sky2_debug);
		sky2_debug = NULL;
	}
}

#else
#define sky2_debug_init()
#define sky2_debug_cleanup()
#endif

4712 4713 4714 4715
/* Two copies of network device operations to handle special case of
   not allowing netpoll on second port */
static const struct net_device_ops sky2_netdev_ops[2] = {
  {
S
stephen hemminger 已提交
4716 4717
	.ndo_open		= sky2_open,
	.ndo_stop		= sky2_close,
4718
	.ndo_start_xmit		= sky2_xmit_frame,
4719 4720 4721
	.ndo_do_ioctl		= sky2_ioctl,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= sky2_set_mac_address,
4722
	.ndo_set_rx_mode	= sky2_set_multicast,
4723
	.ndo_change_mtu		= sky2_change_mtu,
4724 4725
	.ndo_fix_features	= sky2_fix_features,
	.ndo_set_features	= sky2_set_features,
4726
	.ndo_tx_timeout		= sky2_tx_timeout,
S
stephen hemminger 已提交
4727
	.ndo_get_stats64	= sky2_get_stats,
4728 4729 4730 4731 4732
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= sky2_netpoll,
#endif
  },
  {
S
stephen hemminger 已提交
4733 4734
	.ndo_open		= sky2_open,
	.ndo_stop		= sky2_close,
4735
	.ndo_start_xmit		= sky2_xmit_frame,
4736 4737 4738
	.ndo_do_ioctl		= sky2_ioctl,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= sky2_set_mac_address,
4739
	.ndo_set_rx_mode	= sky2_set_multicast,
4740
	.ndo_change_mtu		= sky2_change_mtu,
4741 4742
	.ndo_fix_features	= sky2_fix_features,
	.ndo_set_features	= sky2_set_features,
4743
	.ndo_tx_timeout		= sky2_tx_timeout,
S
stephen hemminger 已提交
4744
	.ndo_get_stats64	= sky2_get_stats,
4745 4746
  },
};
S
Stephen Hemminger 已提交
4747

4748
/* Initialize network device */
4749 4750
static struct net_device *sky2_init_netdev(struct sky2_hw *hw, unsigned port,
					   int highmem, int wol)
4751 4752 4753
{
	struct sky2_port *sky2;
	struct net_device *dev = alloc_etherdev(sizeof(*sky2));
T
Tim Harvey 已提交
4754
	const void *iap;
4755

4756
	if (!dev)
4757 4758 4759
		return NULL;

	SET_NETDEV_DEV(dev, &hw->pdev->dev);
4760
	dev->irq = hw->pdev->irq;
4761
	dev->ethtool_ops = &sky2_ethtool_ops;
4762
	dev->watchdog_timeo = TX_WATCHDOG;
4763
	dev->netdev_ops = &sky2_netdev_ops[port];
4764 4765 4766 4767 4768 4769

	sky2 = netdev_priv(dev);
	sky2->netdev = dev;
	sky2->hw = hw;
	sky2->msg_enable = netif_msg_init(debug, default_msg);

4770 4771 4772
	u64_stats_init(&sky2->tx_stats.syncp);
	u64_stats_init(&sky2->rx_stats.syncp);

4773
	/* Auto speed and flow control */
S
Stephen Hemminger 已提交
4774 4775
	sky2->flags = SKY2_FLAG_AUTO_SPEED | SKY2_FLAG_AUTO_PAUSE;
	if (hw->chip_id != CHIP_ID_YUKON_XL)
4776
		dev->hw_features |= NETIF_F_RXCSUM;
S
Stephen Hemminger 已提交
4777

4778 4779
	sky2->flow_mode = FC_BOTH;

4780 4781 4782
	sky2->duplex = -1;
	sky2->speed = -1;
	sky2->advertising = sky2_supported_modes(hw);
4783
	sky2->wol = wol;
4784

4785
	spin_lock_init(&sky2->phy_lock);
4786

S
Stephen Hemminger 已提交
4787
	sky2->tx_pending = TX_DEF_PENDING;
4788
	sky2->tx_ring_size = roundup_ring_size(TX_DEF_PENDING);
4789
	sky2->rx_pending = RX_DEF_PENDING;
4790 4791 4792 4793 4794

	hw->dev[port] = dev;

	sky2->port = port;

4795
	dev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_TSO;
4796

4797 4798 4799
	if (highmem)
		dev->features |= NETIF_F_HIGHDMA;

4800 4801
	/* Enable receive hashing unless hardware is known broken */
	if (!(hw->flags & SKY2_HW_RSS_BROKEN))
4802 4803 4804
		dev->hw_features |= NETIF_F_RXHASH;

	if (!(hw->flags & SKY2_HW_VLAN_BROKEN)) {
4805 4806
		dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX |
				    NETIF_F_HW_VLAN_CTAG_RX;
4807 4808
		dev->vlan_features |= SKY2_VLAN_OFFLOADS;
	}
4809

4810
	dev->features |= dev->hw_features;
4811

4812 4813 4814 4815 4816 4817 4818 4819
	/* MTU range: 60 - 1500 or 9000 */
	dev->min_mtu = ETH_ZLEN;
	if (hw->chip_id == CHIP_ID_YUKON_FE ||
	    hw->chip_id == CHIP_ID_YUKON_FE_P)
		dev->max_mtu = ETH_DATA_LEN;
	else
		dev->max_mtu = ETH_JUMBO_MTU;

T
Tim Harvey 已提交
4820 4821 4822 4823 4824 4825 4826 4827 4828 4829
	/* try to get mac address in the following order:
	 * 1) from device tree data
	 * 2) from internal registers set by bootloader
	 */
	iap = of_get_mac_address(hw->pdev->dev.of_node);
	if (iap)
		memcpy(dev->dev_addr, iap, ETH_ALEN);
	else
		memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8,
			      ETH_ALEN);
4830

4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842
	/* if the address is invalid, use a random value */
	if (!is_valid_ether_addr(dev->dev_addr)) {
		struct sockaddr sa = { AF_UNSPEC };

		netdev_warn(dev,
			    "Invalid MAC address, defaulting to random\n");
		eth_hw_addr_random(dev);
		memcpy(sa.sa_data, dev->dev_addr, ETH_ALEN);
		if (sky2_set_mac_address(dev, &sa))
			netdev_warn(dev, "Failed to set MAC address.\n");
	}

4843 4844 4845
	return dev;
}

B
Bill Pemberton 已提交
4846
static void sky2_show_addr(struct net_device *dev)
4847 4848 4849
{
	const struct sky2_port *sky2 = netdev_priv(dev);

4850
	netif_info(sky2, probe, dev, "addr %pM\n", dev->dev_addr);
4851 4852
}

4853
/* Handle software interrupt used during MSI test */
B
Bill Pemberton 已提交
4854
static irqreturn_t sky2_test_intr(int irq, void *dev_id)
4855 4856 4857 4858 4859 4860 4861 4862
{
	struct sky2_hw *hw = dev_id;
	u32 status = sky2_read32(hw, B0_Y2_SP_ISRC2);

	if (status == 0)
		return IRQ_NONE;

	if (status & Y2_IS_IRQ_SW) {
4863
		hw->flags |= SKY2_HW_USE_MSI;
4864 4865 4866 4867 4868 4869 4870 4871 4872
		wake_up(&hw->msi_wait);
		sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
	}
	sky2_write32(hw, B0_Y2_SP_ICR, 2);

	return IRQ_HANDLED;
}

/* Test interrupt path by forcing a a software IRQ */
B
Bill Pemberton 已提交
4873
static int sky2_test_msi(struct sky2_hw *hw)
4874 4875 4876 4877
{
	struct pci_dev *pdev = hw->pdev;
	int err;

M
Mike McCormack 已提交
4878
	init_waitqueue_head(&hw->msi_wait);
4879

4880
	err = request_irq(pdev->irq, sky2_test_intr, 0, DRV_NAME, hw);
4881
	if (err) {
4882
		dev_err(&pdev->dev, "cannot assign irq %d\n", pdev->irq);
4883 4884 4885
		return err;
	}

4886 4887
	sky2_write32(hw, B0_IMSK, Y2_IS_IRQ_SW);

4888
	sky2_write8(hw, B0_CTST, CS_ST_SW_IRQ);
4889
	sky2_read8(hw, B0_CTST);
4890

4891
	wait_event_timeout(hw->msi_wait, (hw->flags & SKY2_HW_USE_MSI), HZ/10);
4892

4893
	if (!(hw->flags & SKY2_HW_USE_MSI)) {
4894
		/* MSI test failed, go back to INTx mode */
4895 4896
		dev_info(&pdev->dev, "No interrupt generated using MSI, "
			 "switching to INTx mode.\n");
4897 4898 4899 4900 4901 4902

		err = -EOPNOTSUPP;
		sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
	}

	sky2_write32(hw, B0_IMSK, 0);
4903
	sky2_read32(hw, B0_IMSK);
4904 4905 4906 4907 4908 4909

	free_irq(pdev->irq, hw);

	return err;
}

S
Stephen Hemminger 已提交
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920
/* This driver supports yukon2 chipset only */
static const char *sky2_name(u8 chipid, char *buf, int sz)
{
	const char *name[] = {
		"XL",		/* 0xb3 */
		"EC Ultra", 	/* 0xb4 */
		"Extreme",	/* 0xb5 */
		"EC",		/* 0xb6 */
		"FE",		/* 0xb7 */
		"FE+",		/* 0xb8 */
		"Supreme",	/* 0xb9 */
S
Stephen Hemminger 已提交
4921
		"UL 2",		/* 0xba */
S
Stephen Hemminger 已提交
4922 4923
		"Unknown",	/* 0xbb */
		"Optima",	/* 0xbc */
4924
		"OptimaEEE",    /* 0xbd */
4925
		"Optima 2",	/* 0xbe */
S
Stephen Hemminger 已提交
4926 4927
	};

4928
	if (chipid >= CHIP_ID_YUKON_XL && chipid <= CHIP_ID_YUKON_OP_2)
S
Stephen Hemminger 已提交
4929 4930 4931 4932 4933 4934
		strncpy(buf, name[chipid - CHIP_ID_YUKON_XL], sz);
	else
		snprintf(buf, sz, "(chip %#x)", chipid);
	return buf;
}

4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949
static const struct dmi_system_id msi_blacklist[] = {
	{
		.ident = "Dell Inspiron 1545",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1545"),
		},
	},
	{
		.ident = "Gateway P-79",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Gateway"),
			DMI_MATCH(DMI_PRODUCT_NAME, "P-79"),
		},
	},
T
Takashi Iwai 已提交
4950 4951 4952 4953 4954 4955 4956
	{
		.ident = "ASUS P6T",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
			DMI_MATCH(DMI_BOARD_NAME, "P6T"),
		},
	},
4957 4958 4959 4960 4961 4962 4963
	{
		.ident = "ASUS P6X",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
			DMI_MATCH(DMI_BOARD_NAME, "P6X"),
		},
	},
4964 4965 4966
	{}
};

4967
static int sky2_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
4968
{
4969
	struct net_device *dev, *dev1;
4970
	struct sky2_hw *hw;
4971
	int err, using_dac = 0, wol_default;
S
Stephen Hemminger 已提交
4972
	u32 reg;
S
Stephen Hemminger 已提交
4973
	char buf1[16];
4974

S
Stephen Hemminger 已提交
4975 4976
	err = pci_enable_device(pdev);
	if (err) {
4977
		dev_err(&pdev->dev, "cannot enable PCI device\n");
4978 4979 4980
		goto err_out;
	}

4981 4982 4983 4984 4985 4986 4987 4988
	/* Get configuration information
	 * Note: only regular PCI config access once to test for HW issues
	 *       other PCI access through shared memory for speed and to
	 *	 avoid MMCONFIG problems.
	 */
	err = pci_read_config_dword(pdev, PCI_DEV_REG2, &reg);
	if (err) {
		dev_err(&pdev->dev, "PCI read config failed\n");
4989
		goto err_out_disable;
4990 4991 4992 4993
	}

	if (~reg == 0) {
		dev_err(&pdev->dev, "PCI configuration read error\n");
4994
		err = -EIO;
4995
		goto err_out_disable;
4996 4997
	}

S
Stephen Hemminger 已提交
4998 4999
	err = pci_request_regions(pdev, DRV_NAME);
	if (err) {
5000
		dev_err(&pdev->dev, "cannot obtain PCI resources\n");
5001
		goto err_out_disable;
5002 5003 5004 5005
	}

	pci_set_master(pdev);

5006
	if (sizeof(dma_addr_t) > sizeof(u32) &&
5007
	    !(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)))) {
5008
		using_dac = 1;
5009
		err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
5010
		if (err < 0) {
5011 5012
			dev_err(&pdev->dev, "unable to obtain 64 bit DMA "
				"for consistent allocations\n");
5013 5014 5015
			goto err_out_free_regions;
		}
	} else {
5016
		err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
5017
		if (err) {
5018
			dev_err(&pdev->dev, "no usable DMA configuration\n");
5019 5020 5021
			goto err_out_free_regions;
		}
	}
5022

S
Stephen Hemminger 已提交
5023 5024 5025 5026 5027 5028

#ifdef __BIG_ENDIAN
	/* The sk98lin vendor driver uses hardware byte swapping but
	 * this driver uses software swapping.
	 */
	reg &= ~PCI_REV_DESC;
M
Mike McCormack 已提交
5029
	err = pci_write_config_dword(pdev, PCI_DEV_REG2, reg);
S
Stephen Hemminger 已提交
5030 5031 5032 5033 5034 5035
	if (err) {
		dev_err(&pdev->dev, "PCI write config failed\n");
		goto err_out_free_regions;
	}
#endif

R
Rafael J. Wysocki 已提交
5036
	wol_default = device_may_wakeup(&pdev->dev) ? WAKE_MAGIC : 0;
5037

5038
	err = -ENOMEM;
5039 5040 5041

	hw = kzalloc(sizeof(*hw) + strlen(DRV_NAME "@pci:")
		     + strlen(pci_name(pdev)) + 1, GFP_KERNEL);
5042
	if (!hw)
5043 5044 5045
		goto err_out_free_regions;

	hw->pdev = pdev;
5046
	sprintf(hw->irq_name, DRV_NAME "@pci:%s", pci_name(pdev));
5047 5048 5049

	hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
	if (!hw->regs) {
5050
		dev_err(&pdev->dev, "cannot map device registers\n");
5051 5052 5053
		goto err_out_free_hw;
	}

5054
	err = sky2_init(hw);
5055
	if (err)
S
Stephen Hemminger 已提交
5056
		goto err_out_iounmap;
5057

5058
	/* ring for status responses */
5059
	hw->st_size = hw->ports * roundup_pow_of_two(3*RX_MAX_PENDING + TX_MAX_PENDING);
5060 5061
	hw->st_le = pci_alloc_consistent(pdev, hw->st_size * sizeof(struct sky2_status_le),
					 &hw->st_dma);
5062 5063
	if (!hw->st_le) {
		err = -ENOMEM;
5064
		goto err_out_reset;
5065
	}
5066

5067 5068
	dev_info(&pdev->dev, "Yukon-2 %s chip revision %d\n",
		 sky2_name(hw->chip_id, buf1, sizeof(buf1)), hw->chip_rev);
5069

5070 5071
	sky2_reset(hw);

5072
	dev = sky2_init_netdev(hw, 0, using_dac, wol_default);
5073 5074
	if (!dev) {
		err = -ENOMEM;
5075
		goto err_out_free_pci;
5076
	}
5077

5078 5079 5080
	if (disable_msi == -1)
		disable_msi = !!dmi_check_system(msi_blacklist);

5081 5082
	if (!disable_msi && pci_enable_msi(pdev) == 0) {
		err = sky2_test_msi(hw);
5083
		if (err) {
5084
 			pci_disable_msi(pdev);
5085 5086 5087
			if (err != -EOPNOTSUPP)
				goto err_out_free_netdev;
		}
5088 5089
 	}

5090 5091
	netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT);

S
Stephen Hemminger 已提交
5092 5093
	err = register_netdev(dev);
	if (err) {
5094
		dev_err(&pdev->dev, "cannot register net device\n");
5095 5096 5097
		goto err_out_free_netdev;
	}

B
Brandon Philips 已提交
5098 5099
	netif_carrier_off(dev);

5100 5101
	sky2_show_addr(dev);

5102
	if (hw->ports > 1) {
5103
		dev1 = sky2_init_netdev(hw, 1, using_dac, wol_default);
5104 5105 5106
		if (!dev1) {
			err = -ENOMEM;
			goto err_out_unregister;
5107
		}
5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119

		err = register_netdev(dev1);
		if (err) {
			dev_err(&pdev->dev, "cannot register second net device\n");
			goto err_out_free_dev1;
		}

		err = sky2_setup_irq(hw, hw->irq_name);
		if (err)
			goto err_out_unregister_dev1;

		sky2_show_addr(dev1);
5120 5121
	}

5122
	timer_setup(&hw->watchdog_timer, sky2_watchdog, 0);
S
Stephen Hemminger 已提交
5123 5124
	INIT_WORK(&hw->restart_work, sky2_restart);

S
Stephen Hemminger 已提交
5125
	pci_set_drvdata(pdev, hw);
K
Kai-Heng Feng 已提交
5126
	pdev->d3_delay = 300;
S
Stephen Hemminger 已提交
5127

5128 5129
	return 0;

5130 5131 5132 5133
err_out_unregister_dev1:
	unregister_netdev(dev1);
err_out_free_dev1:
	free_netdev(dev1);
S
Stephen Hemminger 已提交
5134 5135
err_out_unregister:
	unregister_netdev(dev);
5136
err_out_free_netdev:
5137 5138
	if (hw->flags & SKY2_HW_USE_MSI)
		pci_disable_msi(pdev);
5139 5140
	free_netdev(dev);
err_out_free_pci:
5141 5142 5143
	pci_free_consistent(pdev, hw->st_size * sizeof(struct sky2_status_le),
			    hw->st_le, hw->st_dma);
err_out_reset:
S
Stephen Hemminger 已提交
5144
	sky2_write8(hw, B0_CTST, CS_RST_SET);
5145 5146 5147 5148 5149 5150
err_out_iounmap:
	iounmap(hw->regs);
err_out_free_hw:
	kfree(hw);
err_out_free_regions:
	pci_release_regions(pdev);
5151
err_out_disable:
5152 5153 5154 5155 5156
	pci_disable_device(pdev);
err_out:
	return err;
}

B
Bill Pemberton 已提交
5157
static void sky2_remove(struct pci_dev *pdev)
5158
{
S
Stephen Hemminger 已提交
5159
	struct sky2_hw *hw = pci_get_drvdata(pdev);
S
Stephen Hemminger 已提交
5160
	int i;
5161

S
Stephen Hemminger 已提交
5162
	if (!hw)
5163 5164
		return;

5165
	del_timer_sync(&hw->watchdog_timer);
S
Stephen Hemminger 已提交
5166
	cancel_work_sync(&hw->restart_work);
5167

S
Stephen Hemminger 已提交
5168
	for (i = hw->ports-1; i >= 0; --i)
S
Stephen Hemminger 已提交
5169
		unregister_netdev(hw->dev[i]);
S
Stephen Hemminger 已提交
5170

5171
	sky2_write32(hw, B0_IMSK, 0);
5172
	sky2_read32(hw, B0_IMSK);
5173

5174 5175
	sky2_power_aux(hw);

S
Stephen Hemminger 已提交
5176
	sky2_write8(hw, B0_CTST, CS_RST_SET);
5177
	sky2_read8(hw, B0_CTST);
5178

5179 5180 5181 5182 5183
	if (hw->ports > 1) {
		napi_disable(&hw->napi);
		free_irq(pdev->irq, hw);
	}

5184
	if (hw->flags & SKY2_HW_USE_MSI)
5185
		pci_disable_msi(pdev);
5186 5187
	pci_free_consistent(pdev, hw->st_size * sizeof(struct sky2_status_le),
			    hw->st_le, hw->st_dma);
5188 5189
	pci_release_regions(pdev);
	pci_disable_device(pdev);
S
Stephen Hemminger 已提交
5190

S
Stephen Hemminger 已提交
5191
	for (i = hw->ports-1; i >= 0; --i)
S
Stephen Hemminger 已提交
5192 5193
		free_netdev(hw->dev[i]);

5194 5195 5196 5197
	iounmap(hw->regs);
	kfree(hw);
}

5198
static int sky2_suspend(struct device *dev)
5199
{
5200
	struct pci_dev *pdev = to_pci_dev(dev);
S
Stephen Hemminger 已提交
5201
	struct sky2_hw *hw = pci_get_drvdata(pdev);
5202
	int i;
5203

S
Stephen Hemminger 已提交
5204 5205 5206
	if (!hw)
		return 0;

5207 5208 5209
	del_timer_sync(&hw->watchdog_timer);
	cancel_work_sync(&hw->restart_work);

5210
	rtnl_lock();
5211 5212

	sky2_all_down(hw);
5213
	for (i = 0; i < hw->ports; i++) {
5214
		struct net_device *dev = hw->dev[i];
5215
		struct sky2_port *sky2 = netdev_priv(dev);
5216

5217 5218
		if (sky2->wol)
			sky2_wol_init(sky2);
5219 5220
	}

5221
	sky2_power_aux(hw);
5222
	rtnl_unlock();
5223

5224
	return 0;
5225 5226
}

5227
#ifdef CONFIG_PM_SLEEP
5228
static int sky2_resume(struct device *dev)
5229
{
5230
	struct pci_dev *pdev = to_pci_dev(dev);
S
Stephen Hemminger 已提交
5231
	struct sky2_hw *hw = pci_get_drvdata(pdev);
5232
	int err;
5233

S
Stephen Hemminger 已提交
5234 5235 5236
	if (!hw)
		return 0;

5237
	/* Re-enable all clocks */
S
stephen hemminger 已提交
5238 5239 5240 5241 5242
	err = pci_write_config_dword(pdev, PCI_DEV_REG3, 0);
	if (err) {
		dev_err(&pdev->dev, "PCI write config failed\n");
		goto out;
	}
5243

5244
	rtnl_lock();
5245
	sky2_reset(hw);
5246
	sky2_all_up(hw);
5247
	rtnl_unlock();
5248

5249
	return 0;
5250
out:
5251

5252
	dev_err(&pdev->dev, "resume failed (%d)\n", err);
5253
	pci_disable_device(pdev);
5254
	return err;
5255
}
5256 5257 5258 5259 5260 5261 5262

static SIMPLE_DEV_PM_OPS(sky2_pm_ops, sky2_suspend, sky2_resume);
#define SKY2_PM_OPS (&sky2_pm_ops)

#else

#define SKY2_PM_OPS NULL
5263 5264
#endif

5265 5266
static void sky2_shutdown(struct pci_dev *pdev)
{
J
Jeremy Linton 已提交
5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279
	struct sky2_hw *hw = pci_get_drvdata(pdev);
	int port;

	for (port = 0; port < hw->ports; port++) {
		struct net_device *ndev = hw->dev[port];

		rtnl_lock();
		if (netif_running(ndev)) {
			dev_close(ndev);
			netif_device_detach(ndev);
		}
		rtnl_unlock();
	}
5280 5281 5282
	sky2_suspend(&pdev->dev);
	pci_wake_from_d3(pdev, device_may_wakeup(&pdev->dev));
	pci_set_power_state(pdev, PCI_D3hot);
5283 5284
}

5285
static struct pci_driver sky2_driver = {
S
Stephen Hemminger 已提交
5286 5287 5288
	.name = DRV_NAME,
	.id_table = sky2_id_table,
	.probe = sky2_probe,
B
Bill Pemberton 已提交
5289
	.remove = sky2_remove,
5290
	.shutdown = sky2_shutdown,
5291
	.driver.pm = SKY2_PM_OPS,
5292 5293 5294 5295
};

static int __init sky2_init_module(void)
{
5296
	pr_info("driver version " DRV_VERSION "\n");
5297

S
Stephen Hemminger 已提交
5298
	sky2_debug_init();
5299
	return pci_register_driver(&sky2_driver);
5300 5301 5302 5303 5304
}

static void __exit sky2_cleanup_module(void)
{
	pci_unregister_driver(&sky2_driver);
S
Stephen Hemminger 已提交
5305
	sky2_debug_cleanup();
5306 5307 5308 5309 5310 5311
}

module_init(sky2_init_module);
module_exit(sky2_cleanup_module);

MODULE_DESCRIPTION("Marvell Yukon 2 Gigabit Ethernet driver");
5312
MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
5313
MODULE_LICENSE("GPL");
5314
MODULE_VERSION(DRV_VERSION);