sky2.c 95.4 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.
 */

S
Stephen Hemminger 已提交
25
#include <linux/crc32.h>
26 27 28 29
#include <linux/kernel.h>
#include <linux/version.h>
#include <linux/module.h>
#include <linux/netdevice.h>
A
Andrew Morton 已提交
30
#include <linux/dma-mapping.h>
31 32 33 34 35 36 37
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/pci.h>
#include <linux/ip.h>
#include <linux/tcp.h>
#include <linux/in.h>
#include <linux/delay.h>
38
#include <linux/workqueue.h>
39
#include <linux/if_vlan.h>
S
Stephen Hemminger 已提交
40
#include <linux/prefetch.h>
41
#include <linux/mii.h>
42 43 44

#include <asm/irq.h>

45 46 47 48
#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
#define SKY2_VLAN_TAG_USED 1
#endif

49 50 51
#include "sky2.h"

#define DRV_NAME		"sky2"
S
Stephen Hemminger 已提交
52
#define DRV_VERSION		"1.10"
53 54 55 56 57
#define PFX			DRV_NAME " "

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

61
#define RX_LE_SIZE	    	1024
62
#define RX_LE_BYTES		(RX_LE_SIZE*sizeof(struct sky2_rx_le))
63
#define RX_MAX_PENDING		(RX_LE_SIZE/6 - 2)
64
#define RX_DEF_PENDING		RX_MAX_PENDING
65
#define RX_SKB_ALIGN		8
66
#define RX_BUF_WRITE		16
S
Stephen Hemminger 已提交
67 68 69 70

#define TX_RING_SIZE		512
#define TX_DEF_PENDING		(TX_RING_SIZE - 1)
#define TX_MIN_PENDING		64
71
#define MAX_SKB_TX_LE		(4 + (sizeof(dma_addr_t)/sizeof(u32))*MAX_SKB_FRAGS)
72

S
Stephen Hemminger 已提交
73
#define STATUS_RING_SIZE	2048	/* 2 ports * (TX + 2*RX) */
74 75 76 77 78
#define STATUS_LE_BYTES		(STATUS_RING_SIZE*sizeof(struct sky2_status_le))
#define TX_WATCHDOG		(5 * HZ)
#define NAPI_WEIGHT		64
#define PHY_RETRIES		1000

79 80
#define RING_NEXT(x,s)	(((x)+1) & ((s)-1))

81
static const u32 default_msg =
S
Stephen Hemminger 已提交
82 83
    NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK
    | NETIF_MSG_TIMER | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR
84
    | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN;
85

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

90
static int copybreak __read_mostly = 128;
91 92 93
module_param(copybreak, int, 0);
MODULE_PARM_DESC(copybreak, "Receive copy threshold");

94 95 96 97
static int disable_msi = 0;
module_param(disable_msi, int, 0);
MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)");

S
Stephen Hemminger 已提交
98
static int idle_timeout = 0;
99
module_param(idle_timeout, int, 0);
S
Stephen Hemminger 已提交
100
MODULE_PARM_DESC(idle_timeout, "Watchdog timer for lost interrupts (ms)");
101

102
static const struct pci_device_id sky2_id_table[] = {
S
Stephen Hemminger 已提交
103
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) },
104
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E00) },
105
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b00) },	/* DGE-560T */
106
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4001) }, 	/* DGE-550SX */
107 108 109 110 111 112 113 114 115 116
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4340) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4341) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4342) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4343) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4344) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4345) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4346) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) },
117
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4352) },
118
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4353) },
119 120 121
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) },
122
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4363) },
123
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4364) },
124 125 126 127
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4365) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4366) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4367) },
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4368) },
128
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4369) },
129 130
	{ 0 }
};
S
Stephen Hemminger 已提交
131

132 133 134 135 136
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 已提交
137
static const u32 portirq_msk[] = { Y2_IS_PORT_1, Y2_IS_PORT_2 };
138

139 140 141 142 143 144 145
/* This driver supports yukon2 chipset only */
static const char *yukon2_name[] = {
	"XL",		/* 0xb3 */
	"EC Ultra", 	/* 0xb4 */
	"UNKNOWN",	/* 0xb5 */
	"EC",		/* 0xb6 */
	"FE",		/* 0xb7 */
S
Stephen Hemminger 已提交
146 147 148
};

/* Access to external PHY */
149
static int gm_phy_write(struct sky2_hw *hw, unsigned port, u16 reg, u16 val)
150 151 152 153 154 155 156 157 158
{
	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++) {
		if (!(gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_BUSY))
159
			return 0;
S
Stephen Hemminger 已提交
160
		udelay(1);
161
	}
162

S
Stephen Hemminger 已提交
163
	printk(KERN_WARNING PFX "%s: phy write timeout\n", hw->dev[port]->name);
164
	return -ETIMEDOUT;
165 166
}

167
static int __gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg, u16 *val)
168 169 170
{
	int i;

S
Stephen Hemminger 已提交
171
	gma_write16(hw, port, GM_SMI_CTRL, GM_SMI_CT_PHY_AD(PHY_ADDR_MARV)
172 173 174
		    | GM_SMI_CT_REG_AD(reg) | GM_SMI_CT_OP_RD);

	for (i = 0; i < PHY_RETRIES; i++) {
175 176 177 178 179
		if (gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_RD_VAL) {
			*val = gma_read16(hw, port, GM_SMI_DATA);
			return 0;
		}

S
Stephen Hemminger 已提交
180
		udelay(1);
181 182
	}

183 184 185 186 187 188 189 190 191 192
	return -ETIMEDOUT;
}

static u16 gm_phy_read(struct sky2_hw *hw, unsigned port, u16 reg)
{
	u16 v;

	if (__gm_phy_read(hw, port, reg, &v) != 0)
		printk(KERN_WARNING PFX "%s: phy read timeout\n", hw->dev[port]->name);
	return v;
193 194
}

195
static void sky2_set_power_state(struct sky2_hw *hw, pci_power_t state)
196 197 198 199 200 201 202
{
	u16 power_control;
	int vaux;

	pr_debug("sky2_set_power_state %d\n", state);
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);

203
	power_control = sky2_pci_read16(hw, hw->pm_cap + PCI_PM_PMC);
204
	vaux = (sky2_read16(hw, B0_CTST) & Y2_VAUX_AVAIL) &&
205 206
		(power_control & PCI_PM_CAP_PME_D3cold);

207
	power_control = sky2_pci_read16(hw, hw->pm_cap + PCI_PM_CTRL);
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229

	power_control |= PCI_PM_CTRL_PME_STATUS;
	power_control &= ~(PCI_PM_CTRL_STATE_MASK);

	switch (state) {
	case PCI_D0:
		/* 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);

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

		if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
			/* 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);

230
		if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
231 232
			u32 reg1;

233 234
			sky2_pci_write32(hw, PCI_DEV_REG3, 0);
			reg1 = sky2_pci_read32(hw, PCI_DEV_REG4);
235
			reg1 &= P_ASPM_CONTROL_MSK;
236 237
			sky2_pci_write32(hw, PCI_DEV_REG4, reg1);
			sky2_pci_write32(hw, PCI_DEV_REG5, 0);
238 239
		}

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
		break;

	case PCI_D3hot:
	case PCI_D3cold:
		if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
			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);

		/* switch power to VAUX */
		if (vaux && state != PCI_D3cold)
			sky2_write8(hw, B0_POWER_CTRL,
				    (PC_VAUX_ENA | PC_VCC_ENA |
				     PC_VAUX_ON | PC_VCC_OFF));
		break;
	default:
		printk(KERN_ERR PFX "Unknown power state %d\n", state);
	}

263
	sky2_pci_write16(hw, hw->pm_cap + PCI_PM_CTRL, power_control);
264 265 266
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
}

267
static void sky2_gmac_reset(struct sky2_hw *hw, unsigned port)
268 269 270 271 272 273 274
{
	u16 reg;

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

276 277 278 279 280 281 282 283 284 285
	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);
}

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
/* 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[] = {
	[FC_BOTH] = PHY_M_P_BOTH_MD_X,
	[FC_TX]   = PHY_M_P_ASYM_MD_X,
	[FC_RX]	  = PHY_M_P_SYM_MD_X,
	[FC_NONE] = PHY_M_P_NO_PAUSE_X,
};

/* 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,
};


311 312 313
static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
{
	struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
314
	u16 ctrl, ct1000, adv, pg, ledctrl, ledover, reg;
315

316
	if (sky2->autoneg == AUTONEG_ENABLE &&
317
	    !(hw->chip_id == CHIP_ID_YUKON_XL || hw->chip_id == CHIP_ID_YUKON_EC_U)) {
318 319 320
		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 已提交
321
			   PHY_M_EC_MAC_S_MSK);
322 323 324 325 326 327 328 329 330 331 332
		ectrl |= PHY_M_EC_MAC_S(MAC_TX_CLK_25_MHZ);

		if (hw->chip_id == CHIP_ID_YUKON_EC)
			ectrl |= PHY_M_EC_DSC_2(2) | PHY_M_EC_DOWN_S_ENA;
		else
			ectrl |= PHY_M_EC_M_DSC(2) | PHY_M_EC_S_DSC(3);

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

	ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
S
Stephen Hemminger 已提交
333
	if (sky2_is_copper(hw)) {
334 335 336 337 338 339 340 341 342 343 344
		if (hw->chip_id == CHIP_ID_YUKON_FE) {
			/* enable automatic crossover */
			ctrl |= PHY_M_PC_MDI_XMODE(PHY_M_PC_ENA_AUTO) >> 1;
		} 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);

			if (sky2->autoneg == AUTONEG_ENABLE &&
345
			    (hw->chip_id == CHIP_ID_YUKON_XL || hw->chip_id == CHIP_ID_YUKON_EC_U)) {
346 347 348 349 350 351 352 353 354
				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 已提交
355
	}
356

S
Stephen Hemminger 已提交
357 358 359 360 361
	gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

	/* special setup for PHY 88E1112 Fiber */
	if (hw->chip_id == CHIP_ID_YUKON_XL && !sky2_is_copper(hw)) {
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
362

S
Stephen Hemminger 已提交
363 364 365 366 367 368 369 370
		/* 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') {
371 372
			/* select page 1 to access Fiber registers */
			gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 1);
S
Stephen Hemminger 已提交
373 374 375 376 377

			/* for SFP-module set SIGDET polarity to low */
			ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
			ctrl |= PHY_M_FIB_SIGD_POL;
			gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
378
		}
S
Stephen Hemminger 已提交
379 380

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
381 382
	}

S
Stephen Hemminger 已提交
383
	ctrl = PHY_CT_RESET;
384 385
	ct1000 = 0;
	adv = PHY_AN_CSMA;
386
	reg = 0;
387 388

	if (sky2->autoneg == AUTONEG_ENABLE) {
S
Stephen Hemminger 已提交
389
		if (sky2_is_copper(hw)) {
390 391 392 393 394 395 396 397 398 399 400 401
			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 已提交
402

403
			adv |= copper_fc_adv[sky2->flow_mode];
S
Stephen Hemminger 已提交
404 405 406 407 408
		} 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;
409

410
			adv |= fiber_fc_adv[sky2->flow_mode];
S
Stephen Hemminger 已提交
411
		}
412 413 414 415 416 417 418

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

419 420
		/* Disable auto update for duplex flow control and speed */
		reg |= GM_GPCR_AU_ALL_DIS;
421 422 423 424

		switch (sky2->speed) {
		case SPEED_1000:
			ctrl |= PHY_CT_SP1000;
425
			reg |= GM_GPCR_SPEED_1000;
426 427 428
			break;
		case SPEED_100:
			ctrl |= PHY_CT_SP100;
429
			reg |= GM_GPCR_SPEED_100;
430 431 432
			break;
		}

433 434 435
		if (sky2->duplex == DUPLEX_FULL) {
			reg |= GM_GPCR_DUP_FULL;
			ctrl |= PHY_CT_DUP_MD;
436 437
		} else if (sky2->speed < SPEED_1000)
			sky2->flow_mode = FC_NONE;
438 439


440
 		reg |= gm_fc_disable[sky2->flow_mode];
441 442

		/* Forward pause packets to GMAC? */
443
		if (sky2->flow_mode & FC_RX)
444 445 446
			sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
		else
			sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
447 448
	}

449 450
	gma_write16(hw, port, GM_GP_CTRL, reg);

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
	if (hw->chip_id != CHIP_ID_YUKON_FE)
		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;

	case CHIP_ID_YUKON_XL:
S
Stephen Hemminger 已提交
476
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
477 478 479 480 481

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

		/* set LED Function Control register */
482 483 484 485 486
		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 */
487 488 489

		/* set Polarity Control register */
		gm_phy_write(hw, port, PHY_MARV_PHY_STAT,
S
Stephen Hemminger 已提交
490 491 492 493 494 495
			     (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)));
496 497

		/* restore page register */
S
Stephen Hemminger 已提交
498
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
499
		break;
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
	case CHIP_ID_YUKON_EC_U:
		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;
519 520 521 522 523 524 525 526

	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;
		/* turn off the Rx LED (LED_RX) */
		ledover |= PHY_M_LED_MO_RX(MO_LED_OFF);
	}

527
	if (hw->chip_id == CHIP_ID_YUKON_EC_U && hw->chip_rev == CHIP_REV_YU_EC_A1) {
528
		/* apply fixes in PHY AFE */
529 530 531
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255);

532
		/* increase differential signal amplitude in 10BASE-T */
533 534
		gm_phy_write(hw, port, 0x18, 0xaa99);
		gm_phy_write(hw, port, 0x17, 0x2011);
535

536
		/* fix for IEEE A/B Symmetry failure in 1000BASE-T */
537 538
		gm_phy_write(hw, port, 0x18, 0xa204);
		gm_phy_write(hw, port, 0x17, 0x2002);
539 540

		/* set page register to 0 */
541
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
542 543
	} else {
		gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
544

545 546 547 548
		if (sky2->autoneg == AUTONEG_DISABLE || sky2->speed == SPEED_100) {
			/* turn on 100 Mbps LED (LED_LINK100) */
			ledover |= PHY_M_LED_MO_100(MO_LED_ON);
		}
549

550 551 552 553
		if (ledover)
			gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);

	}
554

S
shemminger@osdl.org 已提交
555
	/* Enable phy interrupt on auto-negotiation complete (or link up) */
556 557 558 559 560 561
	if (sky2->autoneg == AUTONEG_ENABLE)
		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);
}

562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
static void sky2_phy_power(struct sky2_hw *hw, unsigned port, int onoff)
{
	u32 reg1;
	static const u32 phy_power[]
		= { PCI_Y2_PHY1_POWD, PCI_Y2_PHY2_POWD };

	/* looks like this XL is back asswards .. */
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev > 1)
		onoff = !onoff;

	reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);

	if (onoff)
		/* Turn off phy power saving */
		reg1 &= ~phy_power[port];
	else
		reg1 |= phy_power[port];

	sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
S
shemminger@osdl.org 已提交
581
	sky2_pci_read32(hw, PCI_DEV_REG1);
582 583 584
	udelay(100);
}

585 586 587
/* Force a renegotiation */
static void sky2_phy_reinit(struct sky2_port *sky2)
{
588
	spin_lock_bh(&sky2->phy_lock);
589
	sky2_phy_init(sky2->hw, sky2->port);
590
	spin_unlock_bh(&sky2->phy_lock);
591 592
}

593 594 595 596 597 598 599
static void sky2_mac_init(struct sky2_hw *hw, unsigned port)
{
	struct sky2_port *sky2 = netdev_priv(hw->dev[port]);
	u16 reg;
	int i;
	const u8 *addr = hw->dev[port]->dev_addr;

600 601
	sky2_write32(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
	sky2_write32(hw, SK_REG(port, GPHY_CTRL), GPC_RST_CLR|GPC_ENA_PAUSE);
602 603 604

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

S
Stephen Hemminger 已提交
605
	if (hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0 && port == 1) {
606 607 608 609 610 611 612 613 614 615 616
		/* 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 已提交
617
	sky2_read16(hw, SK_REG(port, GMAC_IRQ_SRC));
618

619 620 621
	/* Enable Transmit FIFO Underrun */
	sky2_write8(hw, SK_REG(port, GMAC_IRQ_MSK), GMAC_DEF_MSK);

622
	spin_lock_bh(&sky2->phy_lock);
623
	sky2_phy_init(hw, port);
624
	spin_unlock_bh(&sky2->phy_lock);
625 626 627 628 629

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

630 631
	for (i = GM_MIB_CNT_BASE; i <= GM_MIB_CNT_END; i += 4)
		gma_read16(hw, port, i);
632 633 634 635 636 637 638
	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 已提交
639
		    GM_RXCR_UCF_ENA | GM_RXCR_CRC_DIS | GM_RXCR_MCF_ENA);
640 641 642 643 644 645 646 647 648 649 650 651 652

	/* 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) |
653
		GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);
654

655
	if (hw->dev[port]->mtu > ETH_DATA_LEN)
656 657 658 659 660 661 662
		reg |= GM_SMOD_JUMBO_ENA;

	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 已提交
663 664 665 666
	/* physical address: used for pause frames */
	gma_set_addr(hw, port, GM_SRC_ADDR_1L, addr);

	/* ignore counter overflows */
667 668 669 670 671 672
	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);
673 674
	sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T),
		     GMF_OPER_ON | GMF_RX_F_FL_ON);
675

S
shemminger@osdl.org 已提交
676
	/* Flush Rx MAC FIFO on any flow control or error */
677
	sky2_write16(hw, SK_REG(port, RX_GMF_FL_MSK), GMR_FS_ANY_ERR);
678

S
Stephen Hemminger 已提交
679 680
	/* Set threshold to 0xa (64 bytes)
	 *  ASF disabled so no need to do WA dev #4.30
681 682 683 684 685 686
	 */
	sky2_write16(hw, SK_REG(port, RX_GMF_FL_THR), RX_GMF_FL_THR_DEF);

	/* 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);
687 688

	if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
689
		sky2_write8(hw, SK_REG(port, RX_GMF_LP_THR), 512/8);
690 691 692 693 694 695 696 697 698
		sky2_write8(hw, SK_REG(port, RX_GMF_UP_THR), 1024/8);
		if (hw->dev[port]->mtu > ETH_DATA_LEN) {
			/* set Tx GMAC FIFO Almost Empty Threshold */
			sky2_write32(hw, SK_REG(port, TX_GMF_AE_THR), 0x180);
			/* Disable Store & Forward mode for TX */
			sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_DIS);
		}
	}

699 700
}

701 702
/* Assign Ram Buffer allocation in units of 64bit (8 bytes) */
static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, u32 end)
703
{
704
	pr_debug(PFX "q %d %#x %#x\n", q, start, end);
S
Stephen Hemminger 已提交
705

706 707 708 709 710 711 712
	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) {
713
		u32 space = end - start + 1;
714
		u32 tp = space - space/4;
S
Stephen Hemminger 已提交
715

716 717 718 719 720 721
		/* 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 已提交
722

723 724 725
		tp = space - 2048/8;
		sky2_write32(hw, RB_ADDR(q, RB_RX_UTPP), tp);
		sky2_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4);
726 727 728 729 730 731 732 733
	} 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 已提交
734
	sky2_read8(hw, RB_ADDR(q, RB_CTRL));
735 736 737
}

/* Setup Bus Memory Interface */
738
static void sky2_qset(struct sky2_hw *hw, u16 q)
739 740 741 742
{
	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);
743
	sky2_write32(hw, Q_ADDR(q, Q_WM),  BMU_WM_DEFAULT);
744 745 746 747 748
}

/* Setup prefetch unit registers. This is the interface between
 * hardware and driver list elements
 */
749
static void sky2_prefetch_init(struct sky2_hw *hw, u32 qaddr,
750 751 752 753 754 755 756 757
				      u64 addr, u32 last)
{
	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);
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_HI), addr >> 32);
	sky2_write32(hw, Y2_QADDR(qaddr, PREF_UNIT_ADDR_LO), (u32) addr);
	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 已提交
758 759

	sky2_read32(hw, Y2_QADDR(qaddr, PREF_UNIT_CTRL));
760 761
}

S
Stephen Hemminger 已提交
762 763 764 765
static inline struct sky2_tx_le *get_tx_le(struct sky2_port *sky2)
{
	struct sky2_tx_le *le = sky2->tx_le + sky2->tx_prod;

766
	sky2->tx_prod = RING_NEXT(sky2->tx_prod, TX_RING_SIZE);
767
	le->ctrl = 0;
S
Stephen Hemminger 已提交
768 769
	return le;
}
770

771 772 773 774 775 776
static inline struct tx_ring_info *tx_le_re(struct sky2_port *sky2,
					    struct sky2_tx_le *le)
{
	return sky2->tx_ring + (le - sky2->tx_le);
}

777 778
/* Update chip's next pointer */
static inline void sky2_put_idx(struct sky2_hw *hw, unsigned q, u16 idx)
779
{
S
shemminger@osdl.org 已提交
780
	q = Y2_QADDR(q, PREF_UNIT_PUT_IDX);
781
	wmb();
S
shemminger@osdl.org 已提交
782 783
	sky2_write16(hw, q, idx);
	sky2_read16(hw, q);
784 785
}

S
Stephen Hemminger 已提交
786

787 788 789
static inline struct sky2_rx_le *sky2_next_rx(struct sky2_port *sky2)
{
	struct sky2_rx_le *le = sky2->rx_le + sky2->rx_put;
790
	sky2->rx_put = RING_NEXT(sky2->rx_put, RX_LE_SIZE);
791
	le->ctrl = 0;
792 793 794
	return le;
}

795 796 797
/* Return high part of DMA address (could be 32 or 64 bit) */
static inline u32 high32(dma_addr_t a)
{
798
	return sizeof(a) > sizeof(u32) ? (a >> 16) >> 16 : 0;
799 800
}

801 802 803
/* Build description to hardware for one receive segment */
static void sky2_rx_add(struct sky2_port *sky2,  u8 op,
			dma_addr_t map, unsigned len)
804 805
{
	struct sky2_rx_le *le;
806
	u32 hi = high32(map);
807

S
Stephen Hemminger 已提交
808
	if (sky2->rx_addr64 != hi) {
809
		le = sky2_next_rx(sky2);
S
Stephen Hemminger 已提交
810
		le->addr = cpu_to_le32(hi);
811
		le->opcode = OP_ADDR64 | HW_OWNER;
812
		sky2->rx_addr64 = high32(map + len);
813
	}
S
Stephen Hemminger 已提交
814

815
	le = sky2_next_rx(sky2);
816 817
	le->addr = cpu_to_le32((u32) map);
	le->length = cpu_to_le16(len);
818
	le->opcode = op | HW_OWNER;
819 820
}

821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
/* 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);
}


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

	re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE);
	pci_unmap_len_set(re, data_size, size);

	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
		re->frag_addr[i] = pci_map_page(pdev,
						skb_shinfo(skb)->frags[i].page,
						skb_shinfo(skb)->frags[i].page_offset,
						skb_shinfo(skb)->frags[i].size,
						PCI_DMA_FROMDEVICE);
}

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

	pci_unmap_single(pdev, re->data_addr, pci_unmap_len(re, data_size),
			 PCI_DMA_FROMDEVICE);

	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
		pci_unmap_page(pdev, re->frag_addr[i],
			       skb_shinfo(skb)->frags[i].size,
			       PCI_DMA_FROMDEVICE);
}
S
Stephen Hemminger 已提交
864

865 866 867 868
/* Tell chip where to start receive checksum.
 * Actually has two checksums, but set both same to avoid possible byte
 * order problems.
 */
S
Stephen Hemminger 已提交
869
static void rx_set_checksum(struct sky2_port *sky2)
870 871 872 873
{
	struct sky2_rx_le *le;

	le = sky2_next_rx(sky2);
S
Stephen Hemminger 已提交
874
	le->addr = cpu_to_le32((ETH_HLEN << 16) | ETH_HLEN);
875 876
	le->ctrl = 0;
	le->opcode = OP_TCPSTART | HW_OWNER;
S
Stephen Hemminger 已提交
877 878 879 880

	sky2_write32(sky2->hw,
		     Q_ADDR(rxqaddr[sky2->port], Q_CSR),
		     sky2->rx_csum ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);
881 882 883

}

884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
/*
 * 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;

	printk(KERN_WARNING PFX "%s: receiver stop failed\n",
	       sky2->netdev->name);
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);
}
S
Stephen Hemminger 已提交
916

S
shemminger@osdl.org 已提交
917
/* Clean out receive buffer area, assumes receiver hardware stopped */
918 919 920 921 922
static void sky2_rx_clean(struct sky2_port *sky2)
{
	unsigned i;

	memset(sky2->rx_le, 0, RX_LE_BYTES);
S
Stephen Hemminger 已提交
923
	for (i = 0; i < sky2->rx_pending; i++) {
924
		struct rx_ring_info *re = sky2->rx_ring + i;
925 926

		if (re->skb) {
927
			sky2_rx_unmap_skb(sky2->hw->pdev, re);
928 929 930 931 932 933
			kfree_skb(re->skb);
			re->skb = NULL;
		}
	}
}

934 935 936 937 938 939 940 941 942 943 944
/* 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 */

945
	switch (cmd) {
946 947 948 949 950 951
	case SIOCGMIIPHY:
		data->phy_id = PHY_ADDR_MARV;

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

953
		spin_lock_bh(&sky2->phy_lock);
954
		err = __gm_phy_read(hw, sky2->port, data->reg_num & 0x1f, &val);
955
		spin_unlock_bh(&sky2->phy_lock);
956

957 958 959 960 961 962 963 964
		data->val_out = val;
		break;
	}

	case SIOCSMIIREG:
		if (!capable(CAP_NET_ADMIN))
			return -EPERM;

965
		spin_lock_bh(&sky2->phy_lock);
966 967
		err = gm_phy_write(hw, sky2->port, data->reg_num & 0x1f,
				   data->val_in);
968
		spin_unlock_bh(&sky2->phy_lock);
969 970 971 972 973
		break;
	}
	return err;
}

974 975 976 977 978 979 980
#ifdef SKY2_VLAN_TAG_USED
static void sky2_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	u16 port = sky2->port;

981
	netif_tx_lock_bh(dev);
982 983 984 985 986

	sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), RX_VLAN_STRIP_ON);
	sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_VLAN_TAG_ON);
	sky2->vlgrp = grp;

987
	netif_tx_unlock_bh(dev);
988 989 990 991 992 993 994 995
}

static void sky2_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	u16 port = sky2->port;

996
	netif_tx_lock_bh(dev);
997 998 999 1000 1001 1002

	sky2_write32(hw, SK_REG(port, RX_GMF_CTRL_T), RX_VLAN_STRIP_OFF);
	sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_VLAN_TAG_OFF);
	if (sky2->vlgrp)
		sky2->vlgrp->vlan_devices[vid] = NULL;

1003
	netif_tx_unlock_bh(dev);
1004 1005 1006
}
#endif

1007
/*
1008 1009 1010
 * Allocate an skb for receiving. If the MTU is large enough
 * make the skb non-linear with a fragment list of pages.
 *
1011 1012
 * It appears the hardware has a bug in the FIFO logic that
 * cause it to hang if the FIFO gets overrun and the receive buffer
1013 1014
 * is not 64 byte aligned. The buffer returned from netdev_alloc_skb is
 * aligned except if slab debugging is enabled.
1015
 */
1016
static struct sk_buff *sky2_rx_alloc(struct sky2_port *sky2)
1017 1018
{
	struct sk_buff *skb;
1019 1020
	unsigned long p;
	int i;
1021

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	skb = netdev_alloc_skb(sky2->netdev, sky2->rx_data_size + RX_SKB_ALIGN);
	if (!skb)
		goto nomem;

	p = (unsigned long) skb->data;
	skb_reserve(skb, ALIGN(p, RX_SKB_ALIGN) - p);

	for (i = 0; i < sky2->rx_nfrags; i++) {
		struct page *page = alloc_page(GFP_ATOMIC);

		if (!page)
			goto free_partial;
		skb_fill_page_desc(skb, i, page, 0, PAGE_SIZE);
1035 1036 1037
	}

	return skb;
1038 1039 1040 1041
free_partial:
	kfree_skb(skb);
nomem:
	return NULL;
1042 1043
}

1044 1045
/*
 * Allocate and setup receiver buffer pool.
1046 1047 1048 1049 1050 1051
 * 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.
1052
 */
1053
static int sky2_rx_start(struct sky2_port *sky2)
1054
{
1055
	struct sky2_hw *hw = sky2->hw;
1056
	struct rx_ring_info *re;
1057
	unsigned rxq = rxqaddr[sky2->port];
1058
	unsigned i, size, space, thresh;
1059

1060
	sky2->rx_put = sky2->rx_next = 0;
1061
	sky2_qset(hw, rxq);
1062 1063 1064 1065 1066 1067

	if (hw->chip_id == CHIP_ID_YUKON_EC_U && hw->chip_rev >= 2) {
		/* MAC Rx RAM Read is controlled by hardware */
		sky2_write32(hw, Q_ADDR(rxq, Q_F), F_M_RX_RAM_DIS);
	}

1068 1069 1070
	sky2_prefetch_init(hw, rxq, sky2->rx_le_map, RX_LE_SIZE - 1);

	rx_set_checksum(sky2);
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

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

	/* Stopping point for hardware truncation */
	thresh = (size - 8) / sizeof(u32);

	/* Account for overhead of skb - to avoid order > 0 allocation */
	space = SKB_DATA_ALIGN(size) + NET_SKB_PAD
		+ sizeof(struct skb_shared_info);

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

	if (sky2->rx_nfrags != 0) {
		/* Compute residue after pages */
		space = sky2->rx_nfrags << PAGE_SHIFT;

		if (space < size)
			size -= space;
		else
			size = 0;

		/* Optimize to handle small packets and headers */
		if (size < copybreak)
			size = copybreak;
		if (size < ETH_HLEN)
			size = ETH_HLEN;
	}
	sky2->rx_data_size = size;

	/* Fill Rx ring */
S
Stephen Hemminger 已提交
1104
	for (i = 0; i < sky2->rx_pending; i++) {
1105
		re = sky2->rx_ring + i;
1106

1107
		re->skb = sky2_rx_alloc(sky2);
1108 1109 1110
		if (!re->skb)
			goto nomem;

1111 1112
		sky2_rx_map_skb(hw->pdev, re, sky2->rx_data_size);
		sky2_rx_submit(sky2, re);
1113 1114
	}

1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
	/*
	 * 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!
	 */
	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);
	}

1128 1129
	/* Tell chip about available buffers */
	sky2_write16(hw, Y2_QADDR(rxq, PREF_UNIT_PUT_IDX), sky2->rx_put);
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
	return 0;
nomem:
	sky2_rx_clean(sky2);
	return -ENOMEM;
}

/* Bring up network interface. */
static int sky2_up(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
1142
	u32 ramsize, rxspace, imask;
1143
	int cap, err = -ENOMEM;
1144
	struct net_device *otherdev = hw->dev[sky2->port^1];
1145

1146 1147 1148
	/*
 	 * On dual port PCI-X card, there is an problem where status
	 * can be received out of order due to split transactions
1149
	 */
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
	if (otherdev && netif_running(otherdev) &&
 	    (cap = pci_find_capability(hw->pdev, PCI_CAP_ID_PCIX))) {
 		struct sky2_port *osky2 = netdev_priv(otherdev);
 		u16 cmd;

 		cmd = sky2_pci_read16(hw, cap + PCI_X_CMD);
 		cmd &= ~PCI_X_CMD_MAX_SPLIT;
 		sky2_pci_write16(hw, cap + PCI_X_CMD, cmd);

 		sky2->rx_csum = 0;
 		osky2->rx_csum = 0;
 	}
1162

1163 1164 1165 1166 1167
	if (netif_msg_ifup(sky2))
		printk(KERN_INFO PFX "%s: enabling interface\n", dev->name);

	/* must be power of 2 */
	sky2->tx_le = pci_alloc_consistent(hw->pdev,
S
Stephen Hemminger 已提交
1168 1169
					   TX_RING_SIZE *
					   sizeof(struct sky2_tx_le),
1170 1171 1172 1173
					   &sky2->tx_le_map);
	if (!sky2->tx_le)
		goto err_out;

1174
	sky2->tx_ring = kcalloc(TX_RING_SIZE, sizeof(struct tx_ring_info),
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
				GFP_KERNEL);
	if (!sky2->tx_ring)
		goto err_out;
	sky2->tx_prod = sky2->tx_cons = 0;

	sky2->rx_le = pci_alloc_consistent(hw->pdev, RX_LE_BYTES,
					   &sky2->rx_le_map);
	if (!sky2->rx_le)
		goto err_out;
	memset(sky2->rx_le, 0, RX_LE_BYTES);

1186
	sky2->rx_ring = kcalloc(sky2->rx_pending, sizeof(struct rx_ring_info),
1187 1188 1189 1190
				GFP_KERNEL);
	if (!sky2->rx_ring)
		goto err_out;

1191 1192
	sky2_phy_power(hw, port, 1);

1193 1194
	sky2_mac_init(hw, port);

1195 1196
	/* Determine available ram buffer space in qwords.  */
	ramsize = sky2_read8(hw, B2_E_0) * 4096/8;
1197

1198 1199 1200 1201
	if (ramsize > 6*1024/8)
		rxspace = ramsize - (ramsize + 2) / 3;
	else
		rxspace = ramsize / 2;
1202

1203 1204
	sky2_ramset(hw, rxqaddr[port], 0, rxspace-1);
	sky2_ramset(hw, txqaddr[port], rxspace, ramsize-1);
1205

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

1210
	sky2_qset(hw, txqaddr[port]);
1211

1212
	/* Set almost empty threshold */
1213 1214
	if (hw->chip_id == CHIP_ID_YUKON_EC_U
	    && hw->chip_rev == CHIP_REV_YU_EC_U_A0)
1215
		sky2_write16(hw, Q_ADDR(txqaddr[port], Q_AL), 0x1a0);
1216

1217 1218
	sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map,
			   TX_RING_SIZE - 1);
1219

1220
	err = sky2_rx_start(sky2);
1221 1222 1223 1224
	if (err)
		goto err_out;

	/* Enable interrupts from phy/mac for port */
1225
	imask = sky2_read32(hw, B0_IMSK);
S
Stephen Hemminger 已提交
1226
	imask |= portirq_msk[port];
1227 1228
	sky2_write32(hw, B0_IMSK, imask);

1229 1230 1231
	return 0;

err_out:
1232
	if (sky2->rx_le) {
1233 1234
		pci_free_consistent(hw->pdev, RX_LE_BYTES,
				    sky2->rx_le, sky2->rx_le_map);
1235 1236 1237
		sky2->rx_le = NULL;
	}
	if (sky2->tx_le) {
1238 1239 1240
		pci_free_consistent(hw->pdev,
				    TX_RING_SIZE * sizeof(struct sky2_tx_le),
				    sky2->tx_le, sky2->tx_le_map);
1241 1242 1243 1244
		sky2->tx_le = NULL;
	}
	kfree(sky2->tx_ring);
	kfree(sky2->rx_ring);
1245

1246 1247
	sky2->tx_ring = NULL;
	sky2->rx_ring = NULL;
1248 1249 1250
	return err;
}

S
Stephen Hemminger 已提交
1251 1252 1253
/* Modular subtraction in ring */
static inline int tx_dist(unsigned tail, unsigned head)
{
1254
	return (head - tail) & (TX_RING_SIZE - 1);
S
Stephen Hemminger 已提交
1255
}
1256

S
Stephen Hemminger 已提交
1257 1258
/* Number of list elements available for next tx */
static inline int tx_avail(const struct sky2_port *sky2)
1259
{
S
Stephen Hemminger 已提交
1260
	return sky2->tx_pending - tx_dist(sky2->tx_cons, sky2->tx_prod);
1261 1262
}

S
Stephen Hemminger 已提交
1263
/* Estimate of number of transmit list elements required */
1264
static unsigned tx_le_req(const struct sk_buff *skb)
1265
{
S
Stephen Hemminger 已提交
1266 1267 1268 1269 1270
	unsigned count;

	count = sizeof(dma_addr_t) / sizeof(u32);
	count += skb_shinfo(skb)->nr_frags * count;

H
Herbert Xu 已提交
1271
	if (skb_is_gso(skb))
S
Stephen Hemminger 已提交
1272 1273
		++count;

1274
	if (skb->ip_summed == CHECKSUM_PARTIAL)
S
Stephen Hemminger 已提交
1275 1276 1277
		++count;

	return count;
1278 1279
}

S
Stephen Hemminger 已提交
1280 1281 1282 1283 1284 1285
/*
 * 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.
 */
1286 1287 1288 1289
static int sky2_xmit_frame(struct sk_buff *skb, struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
1290
	struct sky2_tx_le *le = NULL;
1291
	struct tx_ring_info *re;
1292 1293 1294 1295 1296 1297
	unsigned i, len;
	dma_addr_t mapping;
	u32 addr64;
	u16 mss;
	u8 ctrl;

1298 1299
 	if (unlikely(tx_avail(sky2) < tx_le_req(skb)))
  		return NETDEV_TX_BUSY;
1300

S
Stephen Hemminger 已提交
1301
	if (unlikely(netif_msg_tx_queued(sky2)))
1302 1303 1304 1305 1306
		printk(KERN_DEBUG "%s: tx queued, slot %u, len %d\n",
		       dev->name, sky2->tx_prod, skb->len);

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

1309 1310
	/* Send high bits if changed or crosses boundary */
	if (addr64 != sky2->tx_addr64 || high32(mapping + len) != sky2->tx_addr64) {
S
Stephen Hemminger 已提交
1311
		le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1312
		le->addr = cpu_to_le32(addr64);
S
Stephen Hemminger 已提交
1313
		le->opcode = OP_ADDR64 | HW_OWNER;
1314
		sky2->tx_addr64 = high32(mapping + len);
S
Stephen Hemminger 已提交
1315
	}
1316 1317

	/* Check for TCP Segmentation Offload */
1318
	mss = skb_shinfo(skb)->gso_size;
S
Stephen Hemminger 已提交
1319
	if (mss != 0) {
1320 1321 1322 1323
		mss += ((skb->h.th->doff - 5) * 4);	/* TCP options */
		mss += (skb->nh.iph->ihl * 4) + sizeof(struct tcphdr);
		mss += ETH_HLEN;

1324 1325
		if (mss != sky2->tx_last_mss) {
			le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1326
			le->addr = cpu_to_le32(mss);
1327 1328 1329
			le->opcode = OP_LRGLEN | HW_OWNER;
			sky2->tx_last_mss = mss;
		}
1330 1331 1332
	}

	ctrl = 0;
1333 1334 1335 1336 1337
#ifdef SKY2_VLAN_TAG_USED
	/* Add VLAN tag, can piggyback on LRGLEN or ADDR64 */
	if (sky2->vlgrp && vlan_tx_tag_present(skb)) {
		if (!le) {
			le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1338
			le->addr = 0;
1339 1340 1341 1342 1343 1344 1345 1346 1347
			le->opcode = OP_VLAN|HW_OWNER;
		} else
			le->opcode |= OP_VLAN;
		le->length = cpu_to_be16(vlan_tx_tag_get(skb));
		ctrl |= INS_VLAN;
	}
#endif

	/* Handle TCP checksum offload */
1348
	if (skb->ip_summed == CHECKSUM_PARTIAL) {
S
Stephen Hemminger 已提交
1349 1350 1351 1352 1353
		unsigned offset = skb->h.raw - skb->data;
		u32 tcpsum;

		tcpsum = offset << 16;		/* sum start */
		tcpsum |= offset + skb->csum;	/* sum write */
1354 1355 1356 1357 1358

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

S
Stephen Hemminger 已提交
1359 1360
		if (tcpsum != sky2->tx_tcpsum) {
			sky2->tx_tcpsum = tcpsum;
1361 1362

			le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1363
			le->addr = cpu_to_le32(tcpsum);
1364 1365 1366 1367
			le->length = 0;	/* initial checksum value */
			le->ctrl = 1;	/* one packet */
			le->opcode = OP_TCPLISW | HW_OWNER;
		}
1368 1369 1370
	}

	le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1371
	le->addr = cpu_to_le32((u32) mapping);
1372 1373
	le->length = cpu_to_le16(len);
	le->ctrl = ctrl;
S
Stephen Hemminger 已提交
1374
	le->opcode = mss ? (OP_LARGESEND | HW_OWNER) : (OP_PACKET | HW_OWNER);
1375

1376
	re = tx_le_re(sky2, le);
1377
	re->skb = skb;
1378
	pci_unmap_addr_set(re, mapaddr, mapping);
1379
	pci_unmap_len_set(re, maplen, len);
1380 1381

	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1382
		const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1383 1384 1385

		mapping = pci_map_page(hw->pdev, frag->page, frag->page_offset,
				       frag->size, PCI_DMA_TODEVICE);
1386
		addr64 = high32(mapping);
S
Stephen Hemminger 已提交
1387 1388
		if (addr64 != sky2->tx_addr64) {
			le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1389
			le->addr = cpu_to_le32(addr64);
S
Stephen Hemminger 已提交
1390 1391 1392
			le->ctrl = 0;
			le->opcode = OP_ADDR64 | HW_OWNER;
			sky2->tx_addr64 = addr64;
1393 1394 1395
		}

		le = get_tx_le(sky2);
S
Stephen Hemminger 已提交
1396
		le->addr = cpu_to_le32((u32) mapping);
1397 1398
		le->length = cpu_to_le16(frag->size);
		le->ctrl = ctrl;
S
Stephen Hemminger 已提交
1399
		le->opcode = OP_BUFFER | HW_OWNER;
1400

1401 1402 1403 1404
		re = tx_le_re(sky2, le);
		re->skb = skb;
		pci_unmap_addr_set(re, mapaddr, mapping);
		pci_unmap_len_set(re, maplen, frag->size);
1405
	}
1406

1407 1408
	le->ctrl |= EOP;

1409 1410
	if (tx_avail(sky2) <= MAX_SKB_TX_LE)
		netif_stop_queue(dev);
1411

1412
	sky2_put_idx(hw, txqaddr[sky2->port], sky2->tx_prod);
1413 1414 1415 1416 1417 1418

	dev->trans_start = jiffies;
	return NETDEV_TX_OK;
}

/*
S
Stephen Hemminger 已提交
1419 1420 1421
 * Free ring elements from starting at tx_cons until "done"
 *
 * NB: the hardware will tell us about partial completion of multi-part
1422
 *     buffers so make sure not to free skb to early.
1423
 */
1424
static void sky2_tx_complete(struct sky2_port *sky2, u16 done)
1425
{
1426
	struct net_device *dev = sky2->netdev;
1427
	struct pci_dev *pdev = sky2->hw->pdev;
1428
	unsigned idx;
1429

1430
	BUG_ON(done >= TX_RING_SIZE);
1431

1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
	for (idx = sky2->tx_cons; idx != done;
	     idx = RING_NEXT(idx, TX_RING_SIZE)) {
		struct sky2_tx_le *le = sky2->tx_le + idx;
		struct tx_ring_info *re = sky2->tx_ring + idx;

		switch(le->opcode & ~HW_OWNER) {
		case OP_LARGESEND:
		case OP_PACKET:
			pci_unmap_single(pdev,
					 pci_unmap_addr(re, mapaddr),
					 pci_unmap_len(re, maplen),
					 PCI_DMA_TODEVICE);
1444
			break;
1445 1446 1447
		case OP_BUFFER:
			pci_unmap_page(pdev, pci_unmap_addr(re, mapaddr),
				       pci_unmap_len(re, maplen),
1448
				       PCI_DMA_TODEVICE);
1449 1450 1451 1452 1453 1454 1455 1456
			break;
		}

		if (le->ctrl & EOP) {
			if (unlikely(netif_msg_tx_done(sky2)))
				printk(KERN_DEBUG "%s: tx done %u\n",
				       dev->name, idx);
			dev_kfree_skb(re->skb);
1457 1458
		}

1459
		le->opcode = 0;	/* paranoia */
S
Stephen Hemminger 已提交
1460 1461
	}

1462
	sky2->tx_cons = idx;
1463
	if (tx_avail(sky2) > MAX_SKB_TX_LE + 4)
1464 1465 1466 1467
		netif_wake_queue(dev);
}

/* Cleanup all untransmitted buffers, assume transmitter not running */
1468
static void sky2_tx_clean(struct net_device *dev)
1469
{
1470 1471 1472
	struct sky2_port *sky2 = netdev_priv(dev);

	netif_tx_lock_bh(dev);
1473
	sky2_tx_complete(sky2, sky2->tx_prod);
1474
	netif_tx_unlock_bh(dev);
1475 1476 1477 1478 1479 1480 1481 1482 1483
}

/* Network shutdown */
static int sky2_down(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	u16 ctrl;
1484
	u32 imask;
1485

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

1490 1491 1492
	if (netif_msg_ifdown(sky2))
		printk(KERN_INFO PFX "%s: disabling interface\n", dev->name);

1493
	/* Stop more packets from being queued */
1494 1495
	netif_stop_queue(dev);

S
Stephen Hemminger 已提交
1496 1497 1498 1499 1500
	/* Disable port IRQ */
	imask = sky2_read32(hw, B0_IMSK);
	imask &= ~portirq_msk[port];
	sky2_write32(hw, B0_IMSK, imask);

1501
	sky2_gmac_reset(hw, port);
S
Stephen Hemminger 已提交
1502

1503 1504 1505 1506 1507
	/* 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 已提交
1508
		     RB_RST_SET | RB_DIS_OP_MD);
1509

1510 1511 1512 1513 1514 1515 1516
	/* WA for dev. #4.209 */
	if (hw->chip_id == CHIP_ID_YUKON_EC_U
	    && hw->chip_rev == CHIP_REV_YU_EC_U_A1)
		sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T),
			     sky2->speed != SPEED_1000 ?
			     TX_STFW_ENA : TX_STFW_DIS);

1517
	ctrl = gma_read16(hw, port, GM_GP_CTRL);
S
Stephen Hemminger 已提交
1518
	ctrl &= ~(GM_GPCR_TX_ENA | GM_GPCR_RX_ENA);
1519 1520 1521 1522 1523
	gma_write16(hw, port, GM_GP_CTRL, ctrl);

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

	/* Workaround shared GMAC reset */
S
Stephen Hemminger 已提交
1524 1525
	if (!(hw->chip_id == CHIP_ID_YUKON_XL && hw->chip_rev == 0
	      && port == 0 && hw->dev[1] && netif_running(hw->dev[1])))
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
		sky2_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);

	/* 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 */
S
Stephen Hemminger 已提交
1537 1538
	sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR),
		     BMU_RST_SET | BMU_FIFO_RST);
1539 1540 1541 1542 1543 1544 1545

	/* 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);

1546
	sky2_rx_stop(sky2);
1547 1548 1549 1550

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

1551 1552
	sky2_phy_power(hw, port, 0);

S
shemminger@osdl.org 已提交
1553
	/* turn off LED's */
1554 1555
	sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);

1556 1557
	synchronize_irq(hw->pdev->irq);

1558
	sky2_tx_clean(dev);
1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
	sky2_rx_clean(sky2);

	pci_free_consistent(hw->pdev, RX_LE_BYTES,
			    sky2->rx_le, sky2->rx_le_map);
	kfree(sky2->rx_ring);

	pci_free_consistent(hw->pdev,
			    TX_RING_SIZE * sizeof(struct sky2_tx_le),
			    sky2->tx_le, sky2->tx_le_map);
	kfree(sky2->tx_ring);

1570 1571 1572 1573 1574 1575
	sky2->tx_le = NULL;
	sky2->rx_le = NULL;

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

1576 1577 1578 1579 1580
	return 0;
}

static u16 sky2_phy_speed(const struct sky2_hw *hw, u16 aux)
{
S
Stephen Hemminger 已提交
1581
	if (!sky2_is_copper(hw))
S
Stephen Hemminger 已提交
1582 1583
		return SPEED_1000;

1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
	if (hw->chip_id == CHIP_ID_YUKON_FE)
		return (aux & PHY_M_PS_SPEED_100) ? SPEED_100 : SPEED_10;

	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;
	u16 reg;
1602 1603 1604 1605 1606 1607
	static const char *fc_name[] = {
		[FC_NONE]	= "none",
		[FC_TX]		= "tx",
		[FC_RX]		= "rx",
		[FC_BOTH]	= "both",
	};
1608 1609

	/* enable Rx/Tx */
1610
	reg = gma_read16(hw, port, GM_GP_CTRL);
1611 1612 1613 1614 1615 1616 1617 1618 1619
	reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA;
	gma_write16(hw, port, GM_GP_CTRL, reg);

	gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK);

	netif_carrier_on(sky2->netdev);
	netif_wake_queue(sky2->netdev);

	/* Turn on link LED */
S
Stephen Hemminger 已提交
1620
	sky2_write8(hw, SK_REG(port, LNK_LED_REG),
1621 1622
		    LINKLED_ON | LINKLED_BLINK_OFF | LINKLED_LINKSYNC_OFF);

1623
	if (hw->chip_id == CHIP_ID_YUKON_XL || hw->chip_id == CHIP_ID_YUKON_EC_U) {
S
Stephen Hemminger 已提交
1624
		u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
		u16 led = PHY_M_LEDC_LOS_CTRL(1);	/* link active */

		switch(sky2->speed) {
		case SPEED_10:
			led |= PHY_M_LEDC_INIT_CTRL(7);
			break;

		case SPEED_100:
			led |= PHY_M_LEDC_STA1_CTRL(7);
			break;

		case SPEED_1000:
			led |= PHY_M_LEDC_STA0_CTRL(7);
			break;
		}
S
Stephen Hemminger 已提交
1640 1641

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
1642
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, led);
S
Stephen Hemminger 已提交
1643 1644 1645
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
	}

1646 1647
	if (netif_msg_link(sky2))
		printk(KERN_INFO PFX
S
shemminger@osdl.org 已提交
1648
		       "%s: Link is up at %d Mbps, %s duplex, flow control %s\n",
1649 1650
		       sky2->netdev->name, sky2->speed,
		       sky2->duplex == DUPLEX_FULL ? "full" : "half",
1651
		       fc_name[sky2->flow_status]);
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
}

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);

1666
	if (sky2->flow_status == FC_RX) {
1667 1668
		/* restore Asymmetric Pause bit */
		gm_phy_write(hw, port, PHY_MARV_AUNE_ADV,
S
Stephen Hemminger 已提交
1669 1670
			     gm_phy_read(hw, port, PHY_MARV_AUNE_ADV)
			     | PHY_M_AN_ASP);
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
	}

	netif_carrier_off(sky2->netdev);
	netif_stop_queue(sky2->netdev);

	/* Turn on link LED */
	sky2_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);

	if (netif_msg_link(sky2))
		printk(KERN_INFO PFX "%s: Link is down.\n", sky2->netdev->name);
1681

1682 1683 1684
	sky2_phy_init(hw, port);
}

1685 1686 1687 1688 1689 1690 1691 1692
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 已提交
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
static int sky2_autoneg_done(struct sky2_port *sky2, u16 aux)
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	u16 lpa;

	lpa = gm_phy_read(hw, port, PHY_MARV_AUNE_LP);

	if (lpa & PHY_M_AN_RF) {
		printk(KERN_ERR PFX "%s: remote fault", sky2->netdev->name);
		return -1;
	}

	if (!(aux & PHY_M_PS_SPDUP_RES)) {
		printk(KERN_ERR PFX "%s: speed/duplex mismatch",
		       sky2->netdev->name);
		return -1;
	}

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

	/* Pause bits are offset (9..8) */
1716
	if (hw->chip_id == CHIP_ID_YUKON_XL || hw->chip_id == CHIP_ID_YUKON_EC_U)
S
Stephen Hemminger 已提交
1717 1718
		aux >>= 6;

1719 1720
	sky2->flow_status = sky2_flow(aux & PHY_M_PS_RX_P_EN,
				      aux & PHY_M_PS_TX_P_EN);
S
Stephen Hemminger 已提交
1721

1722
	if (sky2->duplex == DUPLEX_HALF && sky2->speed < SPEED_1000
1723
	    && hw->chip_id != CHIP_ID_YUKON_EC_U)
1724
		sky2->flow_status = FC_NONE;
1725

1726
	if (aux & PHY_M_PS_RX_P_EN)
S
Stephen Hemminger 已提交
1727 1728 1729 1730 1731 1732
		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;
}
1733

1734 1735
/* Interrupt from PHY */
static void sky2_phy_intr(struct sky2_hw *hw, unsigned port)
1736
{
1737 1738
	struct net_device *dev = hw->dev[port];
	struct sky2_port *sky2 = netdev_priv(dev);
1739 1740
	u16 istatus, phystat;

S
Stephen Hemminger 已提交
1741 1742 1743
	if (!netif_running(dev))
		return;

1744 1745 1746 1747
	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);

1748 1749 1750 1751
	if (netif_msg_intr(sky2))
		printk(KERN_INFO PFX "%s: phy interrupt status 0x%x 0x%x\n",
		       sky2->netdev->name, istatus, phystat);

1752
	if (sky2->autoneg == AUTONEG_ENABLE && (istatus & PHY_M_IS_AN_COMPL)) {
S
Stephen Hemminger 已提交
1753 1754 1755 1756
		if (sky2_autoneg_done(sky2, phystat) == 0)
			sky2_link_up(sky2);
		goto out;
	}
1757

S
Stephen Hemminger 已提交
1758 1759
	if (istatus & PHY_M_IS_LSP_CHANGE)
		sky2->speed = sky2_phy_speed(hw, phystat);
1760

S
Stephen Hemminger 已提交
1761 1762 1763
	if (istatus & PHY_M_IS_DUP_CHANGE)
		sky2->duplex =
		    (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
1764

S
Stephen Hemminger 已提交
1765 1766
	if (istatus & PHY_M_IS_LST_CHANGE) {
		if (phystat & PHY_M_PS_LINK_UP)
1767
			sky2_link_up(sky2);
S
Stephen Hemminger 已提交
1768 1769
		else
			sky2_link_down(sky2);
1770
	}
S
Stephen Hemminger 已提交
1771
out:
1772
	spin_unlock(&sky2->phy_lock);
1773 1774
}

1775 1776 1777 1778

/* Transmit timeout is only called if we are running, carries is up
 * and tx queue is full (stopped).
 */
1779 1780 1781
static void sky2_tx_timeout(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
1782 1783
	struct sky2_hw *hw = sky2->hw;
	unsigned txq = txqaddr[sky2->port];
1784
	u16 report, done;
1785 1786 1787 1788

	if (netif_msg_timer(sky2))
		printk(KERN_ERR PFX "%s: tx timeout\n", dev->name);

1789 1790
	report = sky2_read16(hw, sky2->port == 0 ? STAT_TXA1_RIDX : STAT_TXA2_RIDX);
	done = sky2_read16(hw, Q_ADDR(txq, Q_DONE));
1791

1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
	printk(KERN_DEBUG PFX "%s: transmit ring %u .. %u report=%u done=%u\n",
	       dev->name,
	       sky2->tx_cons, sky2->tx_prod, report, done);

	if (report != done) {
		printk(KERN_INFO PFX "status burst pending (irq moderation?)\n");

		sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_STOP);
		sky2_write8(hw, STAT_TX_TIMER_CTRL, TIM_START);
	} else if (report != sky2->tx_cons) {
		printk(KERN_INFO PFX "status report lost?\n");

1804
		netif_tx_lock_bh(dev);
1805
		sky2_tx_complete(sky2, report);
1806
		netif_tx_unlock_bh(dev);
1807 1808
	} else {
		printk(KERN_INFO PFX "hardware hung? flushing\n");
1809

1810 1811 1812
		sky2_write32(hw, Q_ADDR(txq, Q_CSR), BMU_STOP);
		sky2_write32(hw, Y2_QADDR(txq, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);

1813
		sky2_tx_clean(dev);
1814 1815 1816 1817

		sky2_qset(hw, txq);
		sky2_prefetch_init(hw, txq, sky2->tx_le_map, TX_RING_SIZE - 1);
	}
1818 1819 1820 1821
}

static int sky2_change_mtu(struct net_device *dev, int new_mtu)
{
1822 1823 1824 1825
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	int err;
	u16 ctl, mode;
1826
	u32 imask;
1827 1828 1829 1830

	if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU)
		return -EINVAL;

1831 1832 1833
	if (hw->chip_id == CHIP_ID_YUKON_EC_U && new_mtu > ETH_DATA_LEN)
		return -EINVAL;

1834 1835 1836 1837 1838
	if (!netif_running(dev)) {
		dev->mtu = new_mtu;
		return 0;
	}

1839
	imask = sky2_read32(hw, B0_IMSK);
1840 1841
	sky2_write32(hw, B0_IMSK, 0);

1842 1843 1844 1845
	dev->trans_start = jiffies;	/* prevent tx timeout */
	netif_stop_queue(dev);
	netif_poll_disable(hw->dev[0]);

1846 1847
	synchronize_irq(hw->pdev->irq);

1848 1849 1850 1851
	ctl = gma_read16(hw, sky2->port, GM_GP_CTRL);
	gma_write16(hw, sky2->port, GM_GP_CTRL, ctl & ~GM_GPCR_RX_ENA);
	sky2_rx_stop(sky2);
	sky2_rx_clean(sky2);
1852 1853

	dev->mtu = new_mtu;
1854

1855 1856 1857 1858 1859 1860 1861
	mode = DATA_BLIND_VAL(DATA_BLIND_DEF) |
		GM_SMOD_VLAN_ENA | IPG_DATA_VAL(IPG_DATA_DEF);

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

	gma_write16(hw, sky2->port, GM_SERIAL_MODE, mode);
1862

1863
	sky2_write8(hw, RB_ADDR(rxqaddr[sky2->port], RB_CTRL), RB_ENA_OP_MD);
1864

1865
	err = sky2_rx_start(sky2);
1866
	sky2_write32(hw, B0_IMSK, imask);
1867

1868 1869 1870 1871 1872 1873 1874 1875 1876
	if (err)
		dev_close(dev);
	else {
		gma_write16(hw, sky2->port, GM_GP_CTRL, ctl);

		netif_poll_enable(hw->dev[0]);
		netif_wake_queue(dev);
	}

1877 1878 1879
	return err;
}

1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
/* 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;

	skb = netdev_alloc_skb(sky2->netdev, length + 2);
	if (likely(skb)) {
		skb_reserve(skb, 2);
		pci_dma_sync_single_for_cpu(sky2->hw->pdev, re->data_addr,
					    length, PCI_DMA_FROMDEVICE);
		memcpy(skb->data, re->skb->data, length);
		skb->ip_summed = re->skb->ip_summed;
		skb->csum = re->skb->csum;
		pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr,
					       length, PCI_DMA_FROMDEVICE);
		re->skb->ip_summed = CHECKSUM_NONE;
1898
		skb_put(skb, length);
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960
	}
	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 */
			__free_page(frag->page);
			--skb_shinfo(skb)->nr_frags;
		} else {
			size = min(length, (unsigned) PAGE_SIZE);

			frag->size = size;
			skb->data_len += size;
			skb->truesize += size;
			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)
{
	struct sk_buff *skb, *nskb;
	unsigned hdr_space = sky2->rx_data_size;

	pr_debug(PFX "receive new length=%d\n", length);

	/* Don't be tricky about reusing pages (yet) */
	nskb = sky2_rx_alloc(sky2);
	if (unlikely(!nskb))
		return NULL;

	skb = re->skb;
	sky2_rx_unmap_skb(sky2->hw->pdev, re);

	prefetch(skb->data);
	re->skb = nskb;
	sky2_rx_map_skb(sky2->hw->pdev, re, hdr_space);

	if (skb_shinfo(skb)->nr_frags)
		skb_put_frags(skb, hdr_space, length);
	else
1961
		skb_put(skb, length);
1962 1963 1964
	return skb;
}

1965 1966
/*
 * Receive one packet.
S
shemminger@osdl.org 已提交
1967
 * For larger packets, get new buffer.
1968
 */
1969
static struct sk_buff *sky2_receive(struct net_device *dev,
1970 1971
				    u16 length, u32 status)
{
1972
 	struct sky2_port *sky2 = netdev_priv(dev);
1973
	struct rx_ring_info *re = sky2->rx_ring + sky2->rx_next;
1974
	struct sk_buff *skb = NULL;
1975 1976 1977

	if (unlikely(netif_msg_rx_status(sky2)))
		printk(KERN_DEBUG PFX "%s: rx slot %u status 0x%x len %d\n",
1978
		       dev->name, sky2->rx_next, status, length);
1979

S
Stephen Hemminger 已提交
1980
	sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending;
S
Stephen Hemminger 已提交
1981
	prefetch(sky2->rx_ring + sky2->rx_next);
1982

1983
	if (status & GMR_FS_ANY_ERR)
1984 1985
		goto error;

1986 1987 1988
	if (!(status & GMR_FS_RX_OK))
		goto resubmit;

1989
	if (length > dev->mtu + ETH_HLEN)
1990 1991
		goto oversize;

1992 1993 1994 1995
	if (length < copybreak)
		skb = receive_copy(sky2, re, length);
	else
		skb = receive_new(sky2, re, length);
S
Stephen Hemminger 已提交
1996
resubmit:
1997
	sky2_rx_submit(sky2, re);
1998

1999 2000
	return skb;

2001 2002 2003 2004
oversize:
	++sky2->net_stats.rx_over_errors;
	goto resubmit;

2005
error:
2006
	++sky2->net_stats.rx_errors;
2007 2008 2009 2010
	if (status & GMR_FS_RX_FF_OV) {
		sky2->net_stats.rx_fifo_errors++;
		goto resubmit;
	}
2011

2012
	if (netif_msg_rx_err(sky2) && net_ratelimit())
2013
		printk(KERN_INFO PFX "%s: rx error, status 0x%x length %d\n",
2014
		       dev->name, status, length);
S
Stephen Hemminger 已提交
2015 2016

	if (status & (GMR_FS_LONG_ERR | GMR_FS_UN_SIZE))
2017 2018 2019 2020 2021
		sky2->net_stats.rx_length_errors++;
	if (status & GMR_FS_FRAGMENT)
		sky2->net_stats.rx_frame_errors++;
	if (status & GMR_FS_CRC_ERR)
		sky2->net_stats.rx_crc_errors++;
2022

S
Stephen Hemminger 已提交
2023
	goto resubmit;
2024 2025
}

2026 2027
/* Transmit complete */
static inline void sky2_tx_done(struct net_device *dev, u16 last)
2028
{
2029
	struct sky2_port *sky2 = netdev_priv(dev);
2030

2031
	if (netif_running(dev)) {
2032
		netif_tx_lock(dev);
2033
		sky2_tx_complete(sky2, last);
2034
		netif_tx_unlock(dev);
2035
	}
2036 2037
}

2038 2039
/* Process status response ring */
static int sky2_status_intr(struct sky2_hw *hw, int to_do)
2040
{
2041
	struct sky2_port *sky2;
2042
	int work_done = 0;
2043
	unsigned buf_write[2] = { 0, 0 };
S
Stephen Hemminger 已提交
2044
	u16 hwidx = sky2_read16(hw, STAT_PUT_IDX);
2045

2046
	rmb();
2047

S
Stephen Hemminger 已提交
2048
	while (hw->st_idx != hwidx) {
2049 2050
		struct sky2_status_le *le  = hw->st_le + hw->st_idx;
		struct net_device *dev;
2051 2052 2053 2054
		struct sk_buff *skb;
		u32 status;
		u16 length;

2055
		hw->st_idx = RING_NEXT(hw->st_idx, STATUS_RING_SIZE);
2056

S
Stephen Hemminger 已提交
2057 2058
		BUG_ON(le->link >= 2);
		dev = hw->dev[le->link];
2059 2060

		sky2 = netdev_priv(dev);
S
Stephen Hemminger 已提交
2061 2062
		length = le16_to_cpu(le->length);
		status = le32_to_cpu(le->status);
2063

S
Stephen Hemminger 已提交
2064
		switch (le->opcode & ~HW_OWNER) {
2065
		case OP_RXSTAT:
2066
			skb = sky2_receive(dev, length, status);
2067 2068
			if (!skb)
				break;
2069 2070 2071 2072

			skb->protocol = eth_type_trans(skb, dev);
			dev->last_rx = jiffies;

2073 2074 2075 2076 2077 2078 2079
#ifdef SKY2_VLAN_TAG_USED
			if (sky2->vlgrp && (status & GMR_FS_VLAN)) {
				vlan_hwaccel_receive_skb(skb,
							 sky2->vlgrp,
							 be16_to_cpu(sky2->rx_tag));
			} else
#endif
2080
				netif_receive_skb(skb);
2081

2082 2083 2084 2085 2086 2087 2088 2089
			/* Update receiver after 16 frames */
			if (++buf_write[le->link] == RX_BUF_WRITE) {
				sky2_put_idx(hw, rxqaddr[le->link],
					     sky2->rx_put);
				buf_write[le->link] = 0;
			}

			/* Stop after net poll weight */
2090 2091
			if (++work_done >= to_do)
				goto exit_loop;
2092 2093
			break;

2094 2095 2096 2097 2098 2099 2100 2101 2102
#ifdef SKY2_VLAN_TAG_USED
		case OP_RXVLAN:
			sky2->rx_tag = length;
			break;

		case OP_RXCHKSVLAN:
			sky2->rx_tag = length;
			/* fall through */
#endif
2103
		case OP_RXCHKS:
2104
			skb = sky2->rx_ring[sky2->rx_next].skb;
2105
			skb->ip_summed = CHECKSUM_COMPLETE;
S
Stephen Hemminger 已提交
2106
			skb->csum = status & 0xffff;
2107 2108 2109
			break;

		case OP_TXINDEXLE:
2110
			/* TX index reports status for both ports */
S
Stephen Hemminger 已提交
2111 2112
			BUILD_BUG_ON(TX_RING_SIZE > 0x1000);
			sky2_tx_done(hw->dev[0], status & 0xfff);
2113 2114 2115 2116
			if (hw->dev[1])
				sky2_tx_done(hw->dev[1],
				     ((status >> 24) & 0xff)
					     | (u16)(length & 0xf) << 8);
2117 2118 2119 2120
			break;

		default:
			if (net_ratelimit())
S
Stephen Hemminger 已提交
2121
				printk(KERN_WARNING PFX
S
Stephen Hemminger 已提交
2122 2123
				       "unknown status opcode 0x%x\n", le->opcode);
			goto exit_loop;
2124
		}
2125
	}
2126

2127 2128 2129
	/* Fully processed status ring so clear irq */
	sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);

2130
exit_loop:
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140
	if (buf_write[0]) {
		sky2 = netdev_priv(hw->dev[0]);
		sky2_put_idx(hw, Q_R1, sky2->rx_put);
	}

	if (buf_write[1]) {
		sky2 = netdev_priv(hw->dev[1]);
		sky2_put_idx(hw, Q_R2, sky2->rx_put);
	}

2141
	return work_done;
2142 2143 2144 2145 2146 2147
}

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

2148 2149 2150
	if (net_ratelimit())
		printk(KERN_INFO PFX "%s: hw error interrupt status 0x%x\n",
		       dev->name, status);
2151 2152

	if (status & Y2_IS_PAR_RD1) {
2153 2154 2155
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: ram data read parity error\n",
			       dev->name);
2156 2157 2158 2159 2160
		/* Clear IRQ */
		sky2_write16(hw, RAM_BUFFER(port, B3_RI_CTRL), RI_CLR_RD_PERR);
	}

	if (status & Y2_IS_PAR_WR1) {
2161 2162 2163
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: ram data write parity error\n",
			       dev->name);
2164 2165 2166 2167 2168

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

	if (status & Y2_IS_PAR_MAC1) {
2169 2170
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: MAC parity error\n", dev->name);
2171 2172 2173 2174
		sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_PE);
	}

	if (status & Y2_IS_PAR_RX1) {
2175 2176
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: RX parity error\n", dev->name);
2177 2178 2179 2180
		sky2_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), BMU_CLR_IRQ_PAR);
	}

	if (status & Y2_IS_TCP_TXA1) {
2181 2182 2183
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: TCP segmentation error\n",
			       dev->name);
2184 2185 2186 2187 2188 2189 2190 2191
		sky2_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), BMU_CLR_IRQ_TCP);
	}
}

static void sky2_hw_intr(struct sky2_hw *hw)
{
	u32 status = sky2_read32(hw, B0_HWE_ISRC);

S
Stephen Hemminger 已提交
2192
	if (status & Y2_IS_TIST_OV)
2193 2194 2195
		sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);

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

2198
		pci_err = sky2_pci_read16(hw, PCI_STATUS);
2199 2200 2201
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: pci hw error (0x%x)\n",
			       pci_name(hw->pdev), pci_err);
2202 2203

		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
2204
		sky2_pci_write16(hw, PCI_STATUS,
2205
				 pci_err | PCI_STATUS_ERROR_BITS);
2206 2207 2208 2209
		sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
	}

	if (status & Y2_IS_PCI_EXP) {
S
shemminger@osdl.org 已提交
2210
		/* PCI-Express uncorrectable Error occurred */
S
Stephen Hemminger 已提交
2211 2212
		u32 pex_err;

2213
		pex_err = sky2_pci_read32(hw, PEX_UNC_ERR_STAT);
2214

2215 2216 2217
		if (net_ratelimit())
			printk(KERN_ERR PFX "%s: pci express error (0x%x)\n",
			       pci_name(hw->pdev), pex_err);
2218 2219 2220

		/* clear the interrupt */
		sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
2221 2222
		sky2_pci_write32(hw, PEX_UNC_ERR_STAT,
				       0xffffffffUL);
2223 2224
		sky2_write32(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);

2225
		if (pex_err & PEX_FATAL_ERRORS) {
2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
			u32 hwmsk = sky2_read32(hw, B0_HWE_IMSK);
			hwmsk &= ~Y2_IS_PCI_EXP;
			sky2_write32(hw, B0_HWE_IMSK, hwmsk);
		}
	}

	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));

	if (netif_msg_intr(sky2))
		printk(KERN_INFO PFX "%s: mac interrupt status 0x%x\n",
		       dev->name, status);

	if (status & GM_IS_RX_FF_OR) {
		++sky2->net_stats.rx_fifo_errors;
		sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
	}

	if (status & GM_IS_TX_FF_UR) {
		++sky2->net_stats.tx_fifo_errors;
		sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
	}
}

2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
/* This should never happen it is a fatal situation */
static void sky2_descriptor_error(struct sky2_hw *hw, unsigned port,
				  const char *rxtx, u32 mask)
{
	struct net_device *dev = hw->dev[port];
	struct sky2_port *sky2 = netdev_priv(dev);
	u32 imask;

	printk(KERN_ERR PFX "%s: %s descriptor error (hardware problem)\n",
	       dev ? dev->name : "<not registered>", rxtx);

	imask = sky2_read32(hw, B0_IMSK);
	imask &= ~mask;
	sky2_write32(hw, B0_IMSK, imask);

	if (dev) {
		spin_lock(&sky2->phy_lock);
		sky2_link_down(sky2);
		spin_unlock(&sky2->phy_lock);
	}
}
2281

2282 2283 2284
/* If idle then force a fake soft NAPI poll once a second
 * to work around cases where sharing an edge triggered interrupt.
 */
2285 2286 2287 2288 2289 2290 2291
static inline void sky2_idle_start(struct sky2_hw *hw)
{
	if (idle_timeout > 0)
		mod_timer(&hw->idle_timer,
			  jiffies + msecs_to_jiffies(idle_timeout));
}

2292 2293
static void sky2_idle(unsigned long arg)
{
2294 2295
	struct sky2_hw *hw = (struct sky2_hw *) arg;
	struct net_device *dev = hw->dev[0];
2296 2297 2298

	if (__netif_rx_schedule_prep(dev))
		__netif_rx_schedule(dev);
2299 2300

	mod_timer(&hw->idle_timer, jiffies + msecs_to_jiffies(idle_timeout));
2301 2302 2303
}


2304
static int sky2_poll(struct net_device *dev0, int *budget)
2305
{
2306 2307 2308
	struct sky2_hw *hw = ((struct sky2_port *) netdev_priv(dev0))->hw;
	int work_limit = min(dev0->quota, *budget);
	int work_done = 0;
2309
	u32 status = sky2_read32(hw, B0_Y2_SP_EISR);
2310

S
Stephen Hemminger 已提交
2311 2312
	if (status & Y2_IS_HW_ERR)
		sky2_hw_intr(hw);
2313

S
Stephen Hemminger 已提交
2314 2315
	if (status & Y2_IS_IRQ_PHY1)
		sky2_phy_intr(hw, 0);
2316

S
Stephen Hemminger 已提交
2317 2318
	if (status & Y2_IS_IRQ_PHY2)
		sky2_phy_intr(hw, 1);
2319

S
Stephen Hemminger 已提交
2320 2321
	if (status & Y2_IS_IRQ_MAC1)
		sky2_mac_intr(hw, 0);
2322

S
Stephen Hemminger 已提交
2323 2324
	if (status & Y2_IS_IRQ_MAC2)
		sky2_mac_intr(hw, 1);
2325

S
Stephen Hemminger 已提交
2326 2327
	if (status & Y2_IS_CHK_RX1)
		sky2_descriptor_error(hw, 0, "receive", Y2_IS_CHK_RX1);
2328

S
Stephen Hemminger 已提交
2329 2330
	if (status & Y2_IS_CHK_RX2)
		sky2_descriptor_error(hw, 1, "receive", Y2_IS_CHK_RX2);
2331

S
Stephen Hemminger 已提交
2332 2333
	if (status & Y2_IS_CHK_TXA1)
		sky2_descriptor_error(hw, 0, "transmit", Y2_IS_CHK_TXA1);
2334

S
Stephen Hemminger 已提交
2335 2336
	if (status & Y2_IS_CHK_TXA2)
		sky2_descriptor_error(hw, 1, "transmit", Y2_IS_CHK_TXA2);
2337

S
Stephen Hemminger 已提交
2338
	work_done = sky2_status_intr(hw, work_limit);
2339 2340
	if (work_done < work_limit) {
		netif_rx_complete(dev0);
2341

2342 2343 2344 2345 2346
		sky2_read32(hw, B0_Y2_SP_LISR);
		return 0;
	} else {
		*budget -= work_done;
		dev0->quota -= work_done;
S
Stephen Hemminger 已提交
2347
		return 1;
2348
	}
2349 2350
}

2351
static irqreturn_t sky2_intr(int irq, void *dev_id)
2352 2353 2354 2355 2356 2357 2358 2359 2360
{
	struct sky2_hw *hw = dev_id;
	struct net_device *dev0 = hw->dev[0];
	u32 status;

	/* Reading this mask interrupts as side effect */
	status = sky2_read32(hw, B0_Y2_SP_ISRC2);
	if (status == 0 || status == ~0)
		return IRQ_NONE;
S
Stephen Hemminger 已提交
2361

2362 2363 2364
	prefetch(&hw->st_le[hw->st_idx]);
	if (likely(__netif_rx_schedule_prep(dev0)))
		__netif_rx_schedule(dev0);
S
Stephen Hemminger 已提交
2365

2366 2367 2368 2369 2370 2371 2372
	return IRQ_HANDLED;
}

#ifdef CONFIG_NET_POLL_CONTROLLER
static void sky2_netpoll(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
2373
	struct net_device *dev0 = sky2->hw->dev[0];
2374

2375 2376
	if (netif_running(dev) && __netif_rx_schedule_prep(dev0))
		__netif_rx_schedule(dev0);
2377 2378 2379 2380
}
#endif

/* Chip internal frequency for clock calculations */
2381
static inline u32 sky2_mhz(const struct sky2_hw *hw)
2382
{
S
Stephen Hemminger 已提交
2383
	switch (hw->chip_id) {
2384
	case CHIP_ID_YUKON_EC:
2385
	case CHIP_ID_YUKON_EC_U:
2386
		return 125;	/* 125 Mhz */
2387
	case CHIP_ID_YUKON_FE:
2388
		return 100;	/* 100 Mhz */
S
Stephen Hemminger 已提交
2389
	default:		/* YUKON_XL */
2390
		return 156;	/* 156 Mhz */
2391 2392 2393
	}
}

2394
static inline u32 sky2_us2clk(const struct sky2_hw *hw, u32 us)
2395
{
2396
	return sky2_mhz(hw) * us;
2397 2398
}

2399
static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
2400
{
2401
	return clk / sky2_mhz(hw);
2402 2403
}

2404

2405
static int sky2_reset(struct sky2_hw *hw)
2406 2407
{
	u16 status;
S
Stephen Hemminger 已提交
2408
	u8 t8;
2409
	int i;
2410 2411

	sky2_write8(hw, B0_CTST, CS_RST_CLR);
2412

2413 2414 2415 2416 2417 2418 2419
	hw->chip_id = sky2_read8(hw, B2_CHIP_ID);
	if (hw->chip_id < CHIP_ID_YUKON_XL || hw->chip_id > CHIP_ID_YUKON_FE) {
		printk(KERN_ERR PFX "%s: unsupported chip type 0x%x\n",
		       pci_name(hw->pdev), hw->chip_id);
		return -EOPNOTSUPP;
	}

2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
	hw->chip_rev = (sky2_read8(hw, B2_MAC_CFG) & CFG_CHIP_R_MSK) >> 4;

	/* This rev is really old, and requires untested workarounds */
	if (hw->chip_id == CHIP_ID_YUKON_EC && hw->chip_rev == CHIP_REV_YU_EC_A1) {
		printk(KERN_ERR PFX "%s: unsupported revision Yukon-%s (0x%x) rev %d\n",
		       pci_name(hw->pdev), yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
		       hw->chip_id, hw->chip_rev);
		return -EOPNOTSUPP;
	}

2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
	/* disable ASF */
	if (hw->chip_id <= CHIP_ID_YUKON_EC) {
		sky2_write8(hw, B28_Y2_ASF_STAT_CMD, Y2_ASF_RESET);
		sky2_write16(hw, B0_CTST, Y2_ASF_DISABLE);
	}

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

	/* clear PCI errors, if any */
2441
	status = sky2_pci_read16(hw, PCI_STATUS);
2442

2443
	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
2444 2445
	sky2_pci_write16(hw, PCI_STATUS, status | PCI_STATUS_ERROR_BITS);

2446 2447 2448 2449

	sky2_write8(hw, B0_CTST, CS_MRST_CLR);

	/* clear any PEX errors */
2450 2451 2452
	if (pci_find_capability(hw->pdev, PCI_CAP_ID_EXP))
		sky2_pci_write32(hw, PEX_UNC_ERR_STAT, 0xffffffffUL);

2453

S
Stephen Hemminger 已提交
2454
	hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
2455 2456 2457 2458 2459 2460 2461
	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;
	}

2462
	sky2_set_power_state(hw, PCI_D0);
2463 2464 2465 2466 2467 2468 2469 2470

	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);
	}

	sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);

S
Stephen Hemminger 已提交
2471 2472
	/* Clear I2C IRQ noise */
	sky2_write32(hw, B2_I2C_IRQ, 1);
2473 2474 2475 2476

	/* 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 已提交
2477

2478 2479
	sky2_write8(hw, B0_Y2LED, LED_STAT_ON);

2480 2481
	/* Turn off descriptor polling */
	sky2_write32(hw, B28_DPT_CTRL, DPT_STOP);
2482 2483 2484

	/* Turn off receive timestamp */
	sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_STOP);
S
Stephen Hemminger 已提交
2485
	sky2_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
2486 2487 2488 2489 2490 2491 2492

	/* 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 已提交
2493
		sky2_write8(hw, RAM_BUFFER(i, B3_RI_CTRL), RI_RST_CLR);
2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508

		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);
	}

2509
	sky2_write32(hw, B0_HWE_IMSK, Y2_HWE_ALL_MASK);
2510 2511

	for (i = 0; i < hw->ports; i++)
2512
		sky2_gmac_reset(hw, i);
2513 2514 2515 2516 2517 2518 2519 2520

	memset(hw->st_le, 0, STATUS_LE_BYTES);
	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 已提交
2521
	sky2_write32(hw, STAT_LIST_ADDR_HI, (u64) hw->st_dma >> 32);
2522 2523

	/* Set the list last index */
S
Stephen Hemminger 已提交
2524
	sky2_write16(hw, STAT_LAST_IDX, STATUS_RING_SIZE - 1);
2525

2526 2527
	sky2_write16(hw, STAT_TX_IDX_TH, 10);
	sky2_write8(hw, STAT_FIFO_WM, 16);
2528

2529 2530 2531 2532 2533
	/* 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);
2534

2535
	sky2_write32(hw, STAT_TX_TIMER_INI, sky2_us2clk(hw, 1000));
2536 2537
	sky2_write32(hw, STAT_ISR_TIMER_INI, sky2_us2clk(hw, 20));
	sky2_write32(hw, STAT_LEV_TIMER_INI, sky2_us2clk(hw, 100));
2538

S
Stephen Hemminger 已提交
2539
	/* enable status unit */
2540 2541 2542 2543 2544 2545 2546 2547 2548
	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);

	return 0;
}

2549
static u32 sky2_supported_modes(const struct sky2_hw *hw)
2550
{
S
Stephen Hemminger 已提交
2551 2552 2553 2554 2555 2556
	if (sky2_is_copper(hw)) {
		u32 modes = SUPPORTED_10baseT_Half
			| SUPPORTED_10baseT_Full
			| SUPPORTED_100baseT_Half
			| SUPPORTED_100baseT_Full
			| SUPPORTED_Autoneg | SUPPORTED_TP;
2557 2558 2559

		if (hw->chip_id != CHIP_ID_YUKON_FE)
			modes |= SUPPORTED_1000baseT_Half
S
Stephen Hemminger 已提交
2560 2561
				| SUPPORTED_1000baseT_Full;
		return modes;
2562
	} else
S
Stephen Hemminger 已提交
2563 2564 2565 2566
		return  SUPPORTED_1000baseT_Half
			| SUPPORTED_1000baseT_Full
			| SUPPORTED_Autoneg
			| SUPPORTED_FIBRE;
2567 2568
}

S
Stephen Hemminger 已提交
2569
static int sky2_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
2570 2571 2572 2573 2574 2575 2576
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;

	ecmd->transceiver = XCVR_INTERNAL;
	ecmd->supported = sky2_supported_modes(hw);
	ecmd->phy_address = PHY_ADDR_MARV;
S
Stephen Hemminger 已提交
2577
	if (sky2_is_copper(hw)) {
2578
		ecmd->supported = SUPPORTED_10baseT_Half
S
Stephen Hemminger 已提交
2579 2580 2581 2582 2583 2584
		    | SUPPORTED_10baseT_Full
		    | SUPPORTED_100baseT_Half
		    | SUPPORTED_100baseT_Full
		    | SUPPORTED_1000baseT_Half
		    | SUPPORTED_1000baseT_Full
		    | SUPPORTED_Autoneg | SUPPORTED_TP;
2585
		ecmd->port = PORT_TP;
S
Stephen Hemminger 已提交
2586 2587 2588
		ecmd->speed = sky2->speed;
	} else {
		ecmd->speed = SPEED_1000;
2589
		ecmd->port = PORT_FIBRE;
S
Stephen Hemminger 已提交
2590
	}
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610

	ecmd->advertising = sky2->advertising;
	ecmd->autoneg = sky2->autoneg;
	ecmd->duplex = sky2->duplex;
	return 0;
}

static int sky2_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	const struct sky2_hw *hw = sky2->hw;
	u32 supported = sky2_supported_modes(hw);

	if (ecmd->autoneg == AUTONEG_ENABLE) {
		ecmd->advertising = supported;
		sky2->duplex = -1;
		sky2->speed = -1;
	} else {
		u32 setting;

S
Stephen Hemminger 已提交
2611
		switch (ecmd->speed) {
2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650
		case SPEED_1000:
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_1000baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_1000baseT_Half;
			else
				return -EINVAL;
			break;
		case SPEED_100:
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_100baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_100baseT_Half;
			else
				return -EINVAL;
			break;

		case SPEED_10:
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_10baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_10baseT_Half;
			else
				return -EINVAL;
			break;
		default:
			return -EINVAL;
		}

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

		sky2->speed = ecmd->speed;
		sky2->duplex = ecmd->duplex;
	}

	sky2->autoneg = ecmd->autoneg;
	sky2->advertising = ecmd->advertising;

2651 2652
	if (netif_running(dev))
		sky2_phy_reinit(sky2);
2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668

	return 0;
}

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

	strcpy(info->driver, DRV_NAME);
	strcpy(info->version, DRV_VERSION);
	strcpy(info->fw_version, "N/A");
	strcpy(info->bus_info, pci_name(sky2->hw->pdev));
}

static const struct sky2_stat {
S
Stephen Hemminger 已提交
2669 2670
	char name[ETH_GSTRING_LEN];
	u16 offset;
2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681
} 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 },
2682
	{ "collisions",    GM_TXF_COL },
2683 2684
	{ "late_collision",GM_TXF_LAT_COL },
	{ "aborted", 	   GM_TXF_ABO_COL },
2685
	{ "single_collisions", GM_TXF_SNG_COL },
2686
	{ "multi_collisions", GM_TXF_MUL_COL },
2687

2688
	{ "rx_short",      GM_RXF_SHT },
2689
	{ "rx_runt", 	   GM_RXE_FRAG },
2690 2691 2692 2693 2694 2695 2696
	{ "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 },
2697
	{ "rx_too_long",   GM_RXF_LNG_ERR },
2698 2699
	{ "rx_fifo_overflow", GM_RXE_FIFO_OV },
	{ "rx_jabber",     GM_RXF_JAB_PKT },
2700
	{ "rx_fcs_error",   GM_RXF_FCS_ERR },
2701 2702 2703 2704 2705 2706 2707 2708 2709

	{ "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 },
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723
};

static u32 sky2_get_rx_csum(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);

	return sky2->rx_csum;
}

static int sky2_set_rx_csum(struct net_device *dev, u32 data)
{
	struct sky2_port *sky2 = netdev_priv(dev);

	sky2->rx_csum = data;
S
Stephen Hemminger 已提交
2724

2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736
	sky2_write32(sky2->hw, Q_ADDR(rxqaddr[sky2->port], Q_CSR),
		     data ? BMU_ENA_RX_CHKSUM : BMU_DIS_RX_CHKSUM);

	return 0;
}

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

2737 2738 2739 2740
static int sky2_nway_reset(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);

2741
	if (!netif_running(dev) || sky2->autoneg != AUTONEG_ENABLE)
2742 2743
		return -EINVAL;

2744
	sky2_phy_reinit(sky2);
2745 2746 2747 2748

	return 0;
}

S
Stephen Hemminger 已提交
2749
static void sky2_phy_stats(struct sky2_port *sky2, u64 * data, unsigned count)
2750 2751 2752 2753 2754 2755
{
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	int i;

	data[0] = (u64) gma_read32(hw, port, GM_TXO_OK_HI) << 32
S
Stephen Hemminger 已提交
2756
	    | (u64) gma_read32(hw, port, GM_TXO_OK_LO);
2757
	data[1] = (u64) gma_read32(hw, port, GM_RXO_OK_HI) << 32
S
Stephen Hemminger 已提交
2758
	    | (u64) gma_read32(hw, port, GM_RXO_OK_LO);
2759

S
Stephen Hemminger 已提交
2760
	for (i = 2; i < count; i++)
2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775
		data[i] = (u64) gma_read32(hw, port, sky2_stats[i].offset);
}

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

static int sky2_get_stats_count(struct net_device *dev)
{
	return ARRAY_SIZE(sky2_stats);
}

static void sky2_get_ethtool_stats(struct net_device *dev,
S
Stephen Hemminger 已提交
2776
				   struct ethtool_stats *stats, u64 * data)
2777 2778 2779
{
	struct sky2_port *sky2 = netdev_priv(dev);

S
Stephen Hemminger 已提交
2780
	sky2_phy_stats(sky2, data, ARRAY_SIZE(sky2_stats));
2781 2782
}

S
Stephen Hemminger 已提交
2783
static void sky2_get_strings(struct net_device *dev, u32 stringset, u8 * data)
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802
{
	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;
	}
}

/* Use hardware MIB variables for critical path statistics and
 * transmit feedback not reported at interrupt.
 * Other errors are accounted for in interrupt handler.
 */
static struct net_device_stats *sky2_get_stats(struct net_device *dev)
{
	struct sky2_port *sky2 = netdev_priv(dev);
S
Stephen Hemminger 已提交
2803
	u64 data[13];
2804

S
Stephen Hemminger 已提交
2805
	sky2_phy_stats(sky2, data, ARRAY_SIZE(data));
2806 2807 2808 2809 2810

	sky2->net_stats.tx_bytes = data[0];
	sky2->net_stats.rx_bytes = data[1];
	sky2->net_stats.tx_packets = data[2] + data[4] + data[6];
	sky2->net_stats.rx_packets = data[3] + data[5] + data[7];
S
Stephen Hemminger 已提交
2811
	sky2->net_stats.multicast = data[3] + data[5];
2812 2813 2814 2815 2816 2817 2818 2819 2820
	sky2->net_stats.collisions = data[10];
	sky2->net_stats.tx_aborted_errors = data[12];

	return &sky2->net_stats;
}

static int sky2_set_mac_address(struct net_device *dev, void *p)
{
	struct sky2_port *sky2 = netdev_priv(dev);
2821 2822 2823
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
	const struct sockaddr *addr = p;
2824 2825 2826 2827 2828

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

	memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
2829
	memcpy_toio(hw->regs + B2_MAC_1 + port * 8,
2830
		    dev->dev_addr, ETH_ALEN);
2831
	memcpy_toio(hw->regs + B2_MAC_2 + port * 8,
2832
		    dev->dev_addr, ETH_ALEN);
2833

2834 2835 2836 2837 2838
	/* 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);
2839 2840

	return 0;
2841 2842
}

2843 2844 2845 2846 2847 2848 2849 2850
static void inline sky2_add_filter(u8 filter[8], const u8 *addr)
{
	u32 bit;

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

2851 2852 2853 2854 2855 2856 2857 2858
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;
	struct dev_mc_list *list = dev->mc_list;
	u16 reg;
	u8 filter[8];
2859 2860
	int rx_pause;
	static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };
2861

2862
	rx_pause = (sky2->flow_status == FC_RX || sky2->flow_status == FC_BOTH);
2863 2864 2865 2866 2867
	memset(filter, 0, sizeof(filter));

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

S
shemminger@osdl.org 已提交
2868
	if (dev->flags & IFF_PROMISC)	/* promiscuous */
2869
		reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
2870
	else if (dev->flags & IFF_ALLMULTI)
2871
		memset(filter, 0xff, sizeof(filter));
2872
	else if (dev->mc_count == 0 && !rx_pause)
2873 2874 2875 2876 2877
		reg &= ~GM_RXCR_MCF_ENA;
	else {
		int i;
		reg |= GM_RXCR_MCF_ENA;

2878 2879 2880 2881 2882
		if (rx_pause)
			sky2_add_filter(filter, pause_mc_addr);

		for (i = 0; list && i < dev->mc_count; i++, list = list->next)
			sky2_add_filter(filter, list->dmi_addr);
2883 2884 2885
	}

	gma_write16(hw, port, GM_MC_ADDR_H1,
S
Stephen Hemminger 已提交
2886
		    (u16) filter[0] | ((u16) filter[1] << 8));
2887
	gma_write16(hw, port, GM_MC_ADDR_H2,
S
Stephen Hemminger 已提交
2888
		    (u16) filter[2] | ((u16) filter[3] << 8));
2889
	gma_write16(hw, port, GM_MC_ADDR_H3,
S
Stephen Hemminger 已提交
2890
		    (u16) filter[4] | ((u16) filter[5] << 8));
2891
	gma_write16(hw, port, GM_MC_ADDR_H4,
S
Stephen Hemminger 已提交
2892
		    (u16) filter[6] | ((u16) filter[7] << 8));
2893 2894 2895 2896 2897 2898 2899

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

/* Can have one global because blinking is controlled by
 * ethtool and that is always under RTNL mutex
 */
2900
static void sky2_led(struct sky2_hw *hw, unsigned port, int on)
2901
{
S
Stephen Hemminger 已提交
2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
	u16 pg;

	switch (hw->chip_id) {
	case CHIP_ID_YUKON_XL:
		pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL,
			     on ? (PHY_M_LEDC_LOS_CTRL(1) |
				   PHY_M_LEDC_INIT_CTRL(7) |
				   PHY_M_LEDC_STA1_CTRL(7) |
				   PHY_M_LEDC_STA0_CTRL(7))
			     : 0);

		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
		break;

	default:
		gm_phy_write(hw, port, PHY_MARV_LED_CTRL, 0);
2920
		gm_phy_write(hw, port, PHY_MARV_LED_OVER,
S
Stephen Hemminger 已提交
2921 2922 2923
			     on ? PHY_M_LED_MO_DUP(MO_LED_ON) |
			     PHY_M_LED_MO_10(MO_LED_ON) |
			     PHY_M_LED_MO_100(MO_LED_ON) |
2924
			     PHY_M_LED_MO_1000(MO_LED_ON) |
S
Stephen Hemminger 已提交
2925 2926 2927 2928
			     PHY_M_LED_MO_RX(MO_LED_ON)
			     : PHY_M_LED_MO_DUP(MO_LED_OFF) |
			     PHY_M_LED_MO_10(MO_LED_OFF) |
			     PHY_M_LED_MO_100(MO_LED_OFF) |
2929 2930 2931
			     PHY_M_LED_MO_1000(MO_LED_OFF) |
			     PHY_M_LED_MO_RX(MO_LED_OFF));

S
Stephen Hemminger 已提交
2932
	}
2933 2934 2935 2936 2937 2938 2939 2940
}

/* blink LED's for finding board */
static int sky2_phys_id(struct net_device *dev, u32 data)
{
	struct sky2_port *sky2 = netdev_priv(dev);
	struct sky2_hw *hw = sky2->hw;
	unsigned port = sky2->port;
S
Stephen Hemminger 已提交
2941
	u16 ledctrl, ledover = 0;
2942
	long ms;
2943
	int interrupted;
2944 2945
	int onoff = 1;

S
Stephen Hemminger 已提交
2946
	if (!data || data > (u32) (MAX_SCHEDULE_TIMEOUT / HZ))
2947 2948 2949 2950 2951
		ms = jiffies_to_msecs(MAX_SCHEDULE_TIMEOUT);
	else
		ms = data * 1000;

	/* save initial values */
2952
	spin_lock_bh(&sky2->phy_lock);
S
Stephen Hemminger 已提交
2953 2954 2955 2956 2957 2958 2959 2960 2961
	if (hw->chip_id == CHIP_ID_YUKON_XL) {
		u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
		ledctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
	} else {
		ledctrl = gm_phy_read(hw, port, PHY_MARV_LED_CTRL);
		ledover = gm_phy_read(hw, port, PHY_MARV_LED_OVER);
	}
2962

2963 2964
	interrupted = 0;
	while (!interrupted && ms > 0) {
2965 2966 2967
		sky2_led(hw, port, onoff);
		onoff = !onoff;

2968
		spin_unlock_bh(&sky2->phy_lock);
2969
		interrupted = msleep_interruptible(250);
2970
		spin_lock_bh(&sky2->phy_lock);
2971

2972 2973 2974 2975
		ms -= 250;
	}

	/* resume regularly scheduled programming */
S
Stephen Hemminger 已提交
2976 2977 2978 2979 2980 2981 2982 2983 2984
	if (hw->chip_id == CHIP_ID_YUKON_XL) {
		u16 pg = gm_phy_read(hw, port, PHY_MARV_EXT_ADR);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 3);
		gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ledctrl);
		gm_phy_write(hw, port, PHY_MARV_EXT_ADR, pg);
	} else {
		gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
		gm_phy_write(hw, port, PHY_MARV_LED_OVER, ledover);
	}
2985
	spin_unlock_bh(&sky2->phy_lock);
2986 2987 2988 2989 2990 2991 2992 2993 2994

	return 0;
}

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

2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008
	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;
	}

3009 3010 3011 3012 3013 3014 3015 3016 3017
	ecmd->autoneg = sky2->autoneg;
}

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

	sky2->autoneg = ecmd->autoneg;
3018
	sky2->flow_mode = sky2_flow(ecmd->rx_pause, ecmd->tx_pause);
3019

3020 3021
	if (netif_running(dev))
		sky2_phy_reinit(sky2);
3022

3023
	return 0;
3024 3025
}

3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065
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;
3066
	const u32 tmax = sky2_clk2us(hw, 0x0ffffff);
3067

3068 3069 3070
	if (ecmd->tx_coalesce_usecs > tmax ||
	    ecmd->rx_coalesce_usecs > tmax ||
	    ecmd->rx_coalesce_usecs_irq > tmax)
3071 3072
		return -EINVAL;

3073
	if (ecmd->tx_max_coalesced_frames >= TX_RING_SIZE-1)
3074
		return -EINVAL;
3075
	if (ecmd->rx_max_coalesced_frames > RX_MAX_PENDING)
3076
		return -EINVAL;
3077
	if (ecmd->rx_max_coalesced_frames_irq >RX_MAX_PENDING)
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
		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 {
3101
		sky2_write32(hw, STAT_ISR_TIMER_INI,
3102 3103 3104 3105 3106 3107 3108
			     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;
}

S
Stephen Hemminger 已提交
3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142
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;
	ering->rx_mini_max_pending = 0;
	ering->rx_jumbo_max_pending = 0;
	ering->tx_max_pending = TX_RING_SIZE - 1;

	ering->rx_pending = sky2->rx_pending;
	ering->rx_mini_pending = 0;
	ering->rx_jumbo_pending = 0;
	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);
	int err = 0;

	if (ering->rx_pending > RX_MAX_PENDING ||
	    ering->rx_pending < 8 ||
	    ering->tx_pending < MAX_SKB_TX_LE ||
	    ering->tx_pending > TX_RING_SIZE - 1)
		return -EINVAL;

	if (netif_running(dev))
		sky2_down(dev);

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

3143
	if (netif_running(dev)) {
S
Stephen Hemminger 已提交
3144
		err = sky2_up(dev);
3145 3146
		if (err)
			dev_close(dev);
3147 3148
		else
			sky2_set_multicast(dev);
3149
	}
S
Stephen Hemminger 已提交
3150 3151 3152 3153 3154 3155

	return err;
}

static int sky2_get_regs_len(struct net_device *dev)
{
3156
	return 0x4000;
S
Stephen Hemminger 已提交
3157 3158 3159 3160
}

/*
 * Returns copy of control register region
3161
 * Note: access to the RAM address register set will cause timeouts.
S
Stephen Hemminger 已提交
3162 3163 3164 3165 3166 3167 3168
 */
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;

3169
	BUG_ON(regs->len < B3_RI_WTO_R1);
S
Stephen Hemminger 已提交
3170
	regs->version = 1;
3171
	memset(p, 0, regs->len);
S
Stephen Hemminger 已提交
3172

3173 3174 3175 3176 3177
	memcpy_fromio(p, io, B3_RAM_ADDR);

	memcpy_fromio(p + B3_RI_WTO_R1,
		      io + B3_RI_WTO_R1,
		      regs->len - B3_RI_WTO_R1);
S
Stephen Hemminger 已提交
3178
}
3179

3180
static const struct ethtool_ops sky2_ethtool_ops = {
S
Stephen Hemminger 已提交
3181 3182 3183 3184 3185
	.get_settings = sky2_get_settings,
	.set_settings = sky2_set_settings,
	.get_drvinfo = sky2_get_drvinfo,
	.get_msglevel = sky2_get_msglevel,
	.set_msglevel = sky2_set_msglevel,
3186
	.nway_reset   = sky2_nway_reset,
S
Stephen Hemminger 已提交
3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198
	.get_regs_len = sky2_get_regs_len,
	.get_regs = sky2_get_regs,
	.get_link = ethtool_op_get_link,
	.get_sg = ethtool_op_get_sg,
	.set_sg = ethtool_op_set_sg,
	.get_tx_csum = ethtool_op_get_tx_csum,
	.set_tx_csum = ethtool_op_set_tx_csum,
	.get_tso = ethtool_op_get_tso,
	.set_tso = ethtool_op_set_tso,
	.get_rx_csum = sky2_get_rx_csum,
	.set_rx_csum = sky2_set_rx_csum,
	.get_strings = sky2_get_strings,
3199 3200
	.get_coalesce = sky2_get_coalesce,
	.set_coalesce = sky2_set_coalesce,
S
Stephen Hemminger 已提交
3201 3202
	.get_ringparam = sky2_get_ringparam,
	.set_ringparam = sky2_set_ringparam,
3203 3204
	.get_pauseparam = sky2_get_pauseparam,
	.set_pauseparam = sky2_set_pauseparam,
S
Stephen Hemminger 已提交
3205
	.phys_id = sky2_phys_id,
3206 3207
	.get_stats_count = sky2_get_stats_count,
	.get_ethtool_stats = sky2_get_ethtool_stats,
3208
	.get_perm_addr	= ethtool_op_get_perm_addr,
3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224
};

/* Initialize network device */
static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
						     unsigned port, int highmem)
{
	struct sky2_port *sky2;
	struct net_device *dev = alloc_etherdev(sizeof(*sky2));

	if (!dev) {
		printk(KERN_ERR "sky2 etherdev alloc failed");
		return NULL;
	}

	SET_MODULE_OWNER(dev);
	SET_NETDEV_DEV(dev, &hw->pdev->dev);
3225
	dev->irq = hw->pdev->irq;
3226 3227
	dev->open = sky2_up;
	dev->stop = sky2_down;
3228
	dev->do_ioctl = sky2_ioctl;
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240
	dev->hard_start_xmit = sky2_xmit_frame;
	dev->get_stats = sky2_get_stats;
	dev->set_multicast_list = sky2_set_multicast;
	dev->set_mac_address = sky2_set_mac_address;
	dev->change_mtu = sky2_change_mtu;
	SET_ETHTOOL_OPS(dev, &sky2_ethtool_ops);
	dev->tx_timeout = sky2_tx_timeout;
	dev->watchdog_timeo = TX_WATCHDOG;
	if (port == 0)
		dev->poll = sky2_poll;
	dev->weight = NAPI_WEIGHT;
#ifdef CONFIG_NET_POLL_CONTROLLER
3241 3242 3243 3244 3245
	/* Network console (only works on port 0)
	 * because netpoll makes assumptions about NAPI
	 */
	if (port == 0)
		dev->poll_controller = sky2_netpoll;
3246 3247 3248 3249 3250 3251 3252 3253 3254
#endif

	sky2 = netdev_priv(dev);
	sky2->netdev = dev;
	sky2->hw = hw;
	sky2->msg_enable = netif_msg_init(debug, default_msg);

	/* Auto speed and flow control */
	sky2->autoneg = AUTONEG_ENABLE;
3255 3256
	sky2->flow_mode = FC_BOTH;

3257 3258 3259
	sky2->duplex = -1;
	sky2->speed = -1;
	sky2->advertising = sky2_supported_modes(hw);
3260
	sky2->rx_csum = 1;
3261

3262
	spin_lock_init(&sky2->phy_lock);
S
Stephen Hemminger 已提交
3263
	sky2->tx_pending = TX_DEF_PENDING;
3264
	sky2->rx_pending = RX_DEF_PENDING;
3265 3266 3267 3268 3269

	hw->dev[port] = dev;

	sky2->port = port;

3270 3271
	if (hw->chip_id != CHIP_ID_YUKON_EC_U)
		dev->features |= NETIF_F_TSO;
3272 3273
	if (highmem)
		dev->features |= NETIF_F_HIGHDMA;
S
Stephen Hemminger 已提交
3274
	dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
3275

3276 3277 3278 3279 3280 3281
#ifdef SKY2_VLAN_TAG_USED
	dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
	dev->vlan_rx_register = sky2_vlan_rx_register;
	dev->vlan_rx_kill_vid = sky2_vlan_rx_kill_vid;
#endif

3282
	/* read the mac address */
S
Stephen Hemminger 已提交
3283
	memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8, ETH_ALEN);
3284
	memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
3285 3286 3287 3288 3289 3290 3291 3292

	/* device is off until link detection */
	netif_carrier_off(dev);
	netif_stop_queue(dev);

	return dev;
}

3293
static void __devinit sky2_show_addr(struct net_device *dev)
3294 3295 3296 3297 3298 3299 3300 3301 3302 3303
{
	const struct sky2_port *sky2 = netdev_priv(dev);

	if (netif_msg_probe(sky2))
		printk(KERN_INFO PFX "%s: addr %02x:%02x:%02x:%02x:%02x:%02x\n",
		       dev->name,
		       dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
		       dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
}

3304
/* Handle software interrupt used during MSI test */
3305
static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328
{
	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) {
		hw->msi_detected = 1;
		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 */
static int __devinit sky2_test_msi(struct sky2_hw *hw)
{
	struct pci_dev *pdev = hw->pdev;
	int err;

3329 3330
	init_waitqueue_head (&hw->msi_wait);

3331 3332
	sky2_write32(hw, B0_IMSK, Y2_IS_IRQ_SW);

3333
	err = request_irq(pdev->irq, sky2_test_intr, IRQF_SHARED, DRV_NAME, hw);
3334 3335 3336 3337 3338 3339 3340
	if (err) {
		printk(KERN_ERR PFX "%s: cannot assign irq %d\n",
		       pci_name(pdev), pdev->irq);
		return err;
	}

	sky2_write8(hw, B0_CTST, CS_ST_SW_IRQ);
3341
	sky2_read8(hw, B0_CTST);
3342 3343 3344 3345 3346

	wait_event_timeout(hw->msi_wait, hw->msi_detected, HZ/10);

	if (!hw->msi_detected) {
		/* MSI test failed, go back to INTx mode */
3347 3348
		printk(KERN_INFO PFX "%s: No interrupt generated using MSI, "
		       "switching to INTx mode.\n",
3349 3350 3351 3352 3353 3354 3355
		       pci_name(pdev));

		err = -EOPNOTSUPP;
		sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
	}

	sky2_write32(hw, B0_IMSK, 0);
3356
	sky2_read32(hw, B0_IMSK);
3357 3358 3359 3360 3361 3362

	free_irq(pdev->irq, hw);

	return err;
}

3363 3364 3365
static int __devinit sky2_probe(struct pci_dev *pdev,
				const struct pci_device_id *ent)
{
S
Stephen Hemminger 已提交
3366
	struct net_device *dev, *dev1 = NULL;
3367
	struct sky2_hw *hw;
3368
	int err, pm_cap, using_dac = 0;
3369

S
Stephen Hemminger 已提交
3370 3371
	err = pci_enable_device(pdev);
	if (err) {
3372 3373 3374 3375 3376
		printk(KERN_ERR PFX "%s cannot enable PCI device\n",
		       pci_name(pdev));
		goto err_out;
	}

S
Stephen Hemminger 已提交
3377 3378
	err = pci_request_regions(pdev, DRV_NAME);
	if (err) {
3379 3380
		printk(KERN_ERR PFX "%s cannot obtain PCI resources\n",
		       pci_name(pdev));
S
Stephen Hemminger 已提交
3381
		goto err_out;
3382 3383 3384 3385
	}

	pci_set_master(pdev);

3386 3387 3388 3389 3390 3391 3392 3393 3394
	/* Find power-management capability. */
	pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
	if (pm_cap == 0) {
		printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
		       "aborting.\n");
		err = -EIO;
		goto err_out_free_regions;
	}

3395 3396 3397 3398 3399 3400 3401 3402 3403
	if (sizeof(dma_addr_t) > sizeof(u32) &&
	    !(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK))) {
		using_dac = 1;
		err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
		if (err < 0) {
			printk(KERN_ERR PFX "%s unable to obtain 64 bit DMA "
			       "for consistent allocations\n", pci_name(pdev));
			goto err_out_free_regions;
		}
3404

3405
	} else {
3406 3407 3408 3409 3410 3411 3412
		err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
		if (err) {
			printk(KERN_ERR PFX "%s no usable DMA configuration\n",
			       pci_name(pdev));
			goto err_out_free_regions;
		}
	}
3413

3414
	err = -ENOMEM;
S
Stephen Hemminger 已提交
3415
	hw = kzalloc(sizeof(*hw), GFP_KERNEL);
3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429
	if (!hw) {
		printk(KERN_ERR PFX "%s: cannot allocate hardware struct\n",
		       pci_name(pdev));
		goto err_out_free_regions;
	}

	hw->pdev = pdev;

	hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
	if (!hw->regs) {
		printk(KERN_ERR PFX "%s: cannot map device registers\n",
		       pci_name(pdev));
		goto err_out_free_hw;
	}
3430
	hw->pm_cap = pm_cap;
3431

3432
#ifdef __BIG_ENDIAN
S
Stephen Hemminger 已提交
3433 3434 3435
	/* The sk98lin vendor driver uses hardware byte swapping but
	 * this driver uses software swapping.
	 */
3436 3437 3438
	{
		u32 reg;
		reg = sky2_pci_read32(hw, PCI_DEV_REG2);
S
Stephen Hemminger 已提交
3439
		reg &= ~PCI_REV_DESC;
3440 3441 3442 3443
		sky2_pci_write32(hw, PCI_DEV_REG2, reg);
	}
#endif

3444 3445 3446 3447 3448 3449
	/* ring for status responses */
	hw->st_le = pci_alloc_consistent(hw->pdev, STATUS_LE_BYTES,
					 &hw->st_dma);
	if (!hw->st_le)
		goto err_out_iounmap;

3450 3451
	err = sky2_reset(hw);
	if (err)
S
Stephen Hemminger 已提交
3452
		goto err_out_iounmap;
3453

3454 3455 3456
	printk(KERN_INFO PFX "v%s addr 0x%llx irq %d Yukon-%s (0x%x) rev %d\n",
	       DRV_VERSION, (unsigned long long)pci_resource_start(pdev, 0),
	       pdev->irq, yukon2_name[hw->chip_id - CHIP_ID_YUKON_XL],
S
Stephen Hemminger 已提交
3457
	       hw->chip_id, hw->chip_rev);
3458

S
Stephen Hemminger 已提交
3459 3460
	dev = sky2_init_netdev(hw, 0, using_dac);
	if (!dev)
3461 3462
		goto err_out_free_pci;

3463 3464 3465 3466 3467 3468 3469 3470
	if (!disable_msi && pci_enable_msi(pdev) == 0) {
		err = sky2_test_msi(hw);
		if (err == -EOPNOTSUPP)
 			pci_disable_msi(pdev);
		else if (err)
			goto err_out_free_netdev;
 	}

S
Stephen Hemminger 已提交
3471 3472
	err = register_netdev(dev);
	if (err) {
3473 3474 3475 3476 3477
		printk(KERN_ERR PFX "%s: cannot register net device\n",
		       pci_name(pdev));
		goto err_out_free_netdev;
	}

3478 3479 3480 3481 3482 3483 3484 3485
	err = request_irq(pdev->irq,  sky2_intr, IRQF_SHARED, dev->name, hw);
	if (err) {
		printk(KERN_ERR PFX "%s: cannot assign irq %d\n",
		       pci_name(pdev), pdev->irq);
		goto err_out_unregister;
	}
	sky2_write32(hw, B0_IMSK, Y2_IS_BASE);

3486 3487 3488 3489 3490 3491 3492
	sky2_show_addr(dev);

	if (hw->ports > 1 && (dev1 = sky2_init_netdev(hw, 1, using_dac))) {
		if (register_netdev(dev1) == 0)
			sky2_show_addr(dev1);
		else {
			/* Failure to register second port need not be fatal */
S
Stephen Hemminger 已提交
3493 3494
			printk(KERN_WARNING PFX
			       "register of second port failed\n");
3495 3496 3497 3498 3499
			hw->dev[1] = NULL;
			free_netdev(dev1);
		}
	}

3500
	setup_timer(&hw->idle_timer, sky2_idle, (unsigned long) hw);
3501
	sky2_idle_start(hw);
3502

S
Stephen Hemminger 已提交
3503 3504
	pci_set_drvdata(pdev, hw);

3505 3506
	return 0;

S
Stephen Hemminger 已提交
3507
err_out_unregister:
3508
	pci_disable_msi(pdev);
S
Stephen Hemminger 已提交
3509
	unregister_netdev(dev);
3510 3511 3512
err_out_free_netdev:
	free_netdev(dev);
err_out_free_pci:
S
Stephen Hemminger 已提交
3513
	sky2_write8(hw, B0_CTST, CS_RST_SET);
3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527
	pci_free_consistent(hw->pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
err_out_iounmap:
	iounmap(hw->regs);
err_out_free_hw:
	kfree(hw);
err_out_free_regions:
	pci_release_regions(pdev);
	pci_disable_device(pdev);
err_out:
	return err;
}

static void __devexit sky2_remove(struct pci_dev *pdev)
{
S
Stephen Hemminger 已提交
3528
	struct sky2_hw *hw = pci_get_drvdata(pdev);
3529 3530
	struct net_device *dev0, *dev1;

S
Stephen Hemminger 已提交
3531
	if (!hw)
3532 3533
		return;

3534 3535 3536
	del_timer_sync(&hw->idle_timer);

	sky2_write32(hw, B0_IMSK, 0);
3537 3538
	synchronize_irq(hw->pdev->irq);

3539
	dev0 = hw->dev[0];
S
Stephen Hemminger 已提交
3540 3541 3542
	dev1 = hw->dev[1];
	if (dev1)
		unregister_netdev(dev1);
3543 3544
	unregister_netdev(dev0);

3545
	sky2_set_power_state(hw, PCI_D3hot);
3546
	sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);
S
Stephen Hemminger 已提交
3547
	sky2_write8(hw, B0_CTST, CS_RST_SET);
3548
	sky2_read8(hw, B0_CTST);
3549 3550

	free_irq(pdev->irq, hw);
3551
	pci_disable_msi(pdev);
S
Stephen Hemminger 已提交
3552
	pci_free_consistent(pdev, STATUS_LE_BYTES, hw->st_le, hw->st_dma);
3553 3554
	pci_release_regions(pdev);
	pci_disable_device(pdev);
S
Stephen Hemminger 已提交
3555

3556 3557 3558 3559 3560
	if (dev1)
		free_netdev(dev1);
	free_netdev(dev0);
	iounmap(hw->regs);
	kfree(hw);
3561

3562 3563 3564 3565 3566 3567
	pci_set_drvdata(pdev, NULL);
}

#ifdef CONFIG_PM
static int sky2_suspend(struct pci_dev *pdev, pm_message_t state)
{
S
Stephen Hemminger 已提交
3568
	struct sky2_hw *hw = pci_get_drvdata(pdev);
3569
	int i;
3570 3571 3572 3573
	pci_power_t pstate = pci_choose_state(pdev, state);

	if (!(pstate == PCI_D3hot || pstate == PCI_D3cold))
		return -EINVAL;
3574

3575
	del_timer_sync(&hw->idle_timer);
3576
	netif_poll_disable(hw->dev[0]);
3577

3578
	for (i = 0; i < hw->ports; i++) {
3579 3580
		struct net_device *dev = hw->dev[i];

3581
		if (netif_running(dev)) {
3582
			sky2_down(dev);
3583 3584 3585 3586
			netif_device_detach(dev);
		}
	}

3587
	sky2_write32(hw, B0_IMSK, 0);
3588
	pci_save_state(pdev);
3589 3590
	sky2_set_power_state(hw, pstate);
	return 0;
3591 3592 3593 3594
}

static int sky2_resume(struct pci_dev *pdev)
{
S
Stephen Hemminger 已提交
3595
	struct sky2_hw *hw = pci_get_drvdata(pdev);
3596
	int i, err;
3597 3598 3599

	pci_restore_state(pdev);
	pci_enable_wake(pdev, PCI_D0, 0);
3600
	sky2_set_power_state(hw, PCI_D0);
3601

3602 3603 3604
	err = sky2_reset(hw);
	if (err)
		goto out;
3605

3606 3607
	sky2_write32(hw, B0_IMSK, Y2_IS_BASE);

3608
	for (i = 0; i < hw->ports; i++) {
3609
		struct net_device *dev = hw->dev[i];
3610
		if (netif_running(dev)) {
3611
			netif_device_attach(dev);
3612

3613 3614 3615 3616 3617
			err = sky2_up(dev);
			if (err) {
				printk(KERN_ERR PFX "%s: could not up: %d\n",
				       dev->name, err);
				dev_close(dev);
3618
				goto out;
3619
			}
3620 3621
		}
	}
3622

3623
	netif_poll_enable(hw->dev[0]);
3624
	sky2_idle_start(hw);
3625 3626
out:
	return err;
3627 3628 3629 3630
}
#endif

static struct pci_driver sky2_driver = {
S
Stephen Hemminger 已提交
3631 3632 3633 3634
	.name = DRV_NAME,
	.id_table = sky2_id_table,
	.probe = sky2_probe,
	.remove = __devexit_p(sky2_remove),
3635
#ifdef CONFIG_PM
S
Stephen Hemminger 已提交
3636 3637
	.suspend = sky2_suspend,
	.resume = sky2_resume,
3638 3639 3640 3641 3642
#endif
};

static int __init sky2_init_module(void)
{
3643
	return pci_register_driver(&sky2_driver);
3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656
}

static void __exit sky2_cleanup_module(void)
{
	pci_unregister_driver(&sky2_driver);
}

module_init(sky2_init_module);
module_exit(sky2_cleanup_module);

MODULE_DESCRIPTION("Marvell Yukon 2 Gigabit Ethernet driver");
MODULE_AUTHOR("Stephen Hemminger <shemminger@osdl.org>");
MODULE_LICENSE("GPL");
3657
MODULE_VERSION(DRV_VERSION);