skge.c 106.7 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * New driver for Marvell Yukon chipset and SysKonnect Gigabit
 * Ethernet adapters. Based on earlier sk98lin, e100 and
 * FreeBSD if_sk drivers.
 *
 * 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.
 *
10
 * Copyright (C) 2004, 2005 Stephen Hemminger <shemminger@osdl.org>
11 12 13
 *
 * 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
14
 * the Free Software Foundation; either version 2 of the License.
15 16 17 18 19 20 21 22 23 24 25
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * 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.
 */

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

28
#include <linux/in.h>
29 30 31 32 33 34 35 36 37 38 39
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/pci.h>
#include <linux/if_vlan.h>
#include <linux/ip.h>
#include <linux/delay.h>
#include <linux/crc32.h>
A
Al Viro 已提交
40
#include <linux/dma-mapping.h>
S
Stephen Hemminger 已提交
41
#include <linux/debugfs.h>
42
#include <linux/sched.h>
S
Stephen Hemminger 已提交
43
#include <linux/seq_file.h>
44
#include <linux/mii.h>
45
#include <linux/slab.h>
S
Stanislaw Gruszka 已提交
46
#include <linux/dmi.h>
47
#include <linux/prefetch.h>
48 49 50 51 52
#include <asm/irq.h>

#include "skge.h"

#define DRV_NAME		"skge"
S
stephen hemminger 已提交
53
#define DRV_VERSION		"1.14"
54 55 56 57

#define DEFAULT_TX_RING_SIZE	128
#define DEFAULT_RX_RING_SIZE	512
#define MAX_TX_RING_SIZE	1024
58
#define TX_LOW_WATER		(MAX_SKB_FRAGS + 1)
59
#define MAX_RX_RING_SIZE	4096
60 61
#define RX_COPY_THRESHOLD	128
#define RX_BUF_SIZE		1536
62 63 64 65
#define PHY_RETRIES	        1000
#define ETH_JUMBO_MTU		9000
#define TX_WATCHDOG		(5 * HZ)
#define NAPI_WEIGHT		64
66
#define BLINK_MS		250
S
Stephen Hemminger 已提交
67
#define LINK_HZ			HZ
68

S
Stephen Hemminger 已提交
69 70 71
#define SKGE_EEPROM_MAGIC	0x9933aabb


72
MODULE_DESCRIPTION("SysKonnect Gigabit Ethernet driver");
73
MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
74 75 76
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);

77 78 79
static const u32 default_msg = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
				NETIF_MSG_LINK | NETIF_MSG_IFUP |
				NETIF_MSG_IFDOWN);
80 81 82 83 84

static int debug = -1;	/* defaults above */
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");

85
static const struct pci_device_id skge_id_table[] = {
S
stephen hemminger 已提交
86 87
	{ PCI_DEVICE(PCI_VENDOR_ID_3COM, 0x1700) },	  /* 3Com 3C940 */
	{ PCI_DEVICE(PCI_VENDOR_ID_3COM, 0x80EB) },	  /* 3Com 3C940B */
88 89 90
#ifdef CONFIG_SKGE_GENESIS
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x4300) }, /* SK-9xx */
#endif
S
stephen hemminger 已提交
91 92 93
	{ PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x4320) }, /* SK-98xx V2.0 */
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b01) },	  /* D-Link DGE-530T (rev.B) */
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4c00) },	  /* D-Link DGE-530T */
S
stephen hemminger 已提交
94
	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302) },	  /* D-Link DGE-530T Rev C1 */
S
stephen hemminger 已提交
95 96 97 98 99
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4320) },	  /* Marvell Yukon 88E8001/8003/8010 */
	{ PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5005) },	  /* Belkin */
	{ PCI_DEVICE(PCI_VENDOR_ID_CNET, 0x434E) }, 	  /* CNet PowerG-2000 */
	{ PCI_DEVICE(PCI_VENDOR_ID_LINKSYS, 0x1064) },	  /* Linksys EG1064 v2 */
	{ PCI_VENDOR_ID_LINKSYS, 0x1032, PCI_ANY_ID, 0x0015 }, /* Linksys EG1032 v2 */
100 101 102 103 104 105
	{ 0 }
};
MODULE_DEVICE_TABLE(pci, skge_id_table);

static int skge_up(struct net_device *dev);
static int skge_down(struct net_device *dev);
106
static void skge_phy_reset(struct skge_port *skge);
107
static void skge_tx_clean(struct net_device *dev);
108 109
static int xm_phy_write(struct skge_hw *hw, int port, u16 reg, u16 val);
static int gm_phy_write(struct skge_hw *hw, int port, u16 reg, u16 val);
110 111 112 113
static void genesis_get_stats(struct skge_port *skge, u64 *data);
static void yukon_get_stats(struct skge_port *skge, u64 *data);
static void yukon_init(struct skge_hw *hw, int port);
static void genesis_mac_init(struct skge_hw *hw, int port);
114
static void genesis_link_up(struct skge_port *skge);
115
static void skge_set_multicast(struct net_device *dev);
116
static irqreturn_t skge_intr(int irq, void *dev_id);
117

118
/* Avoid conditionals by using array */
119 120 121 122
static const int txqaddr[] = { Q_XA1, Q_XA2 };
static const int rxqaddr[] = { Q_R1, Q_R2 };
static const u32 rxirqmask[] = { IS_R1_F, IS_R2_F };
static const u32 txirqmask[] = { IS_XA1_F, IS_XA2_F };
123 124
static const u32 napimask[] = { IS_R1_F|IS_XA1_F, IS_R2_F|IS_XA2_F };
static const u32 portmask[] = { IS_PORT_1, IS_PORT_2 };
125

126 127 128 129 130 131 132 133 134
static inline bool is_genesis(const struct skge_hw *hw)
{
#ifdef CONFIG_SKGE_GENESIS
	return hw->chip_id == CHIP_ID_GENESIS;
#else
	return false;
#endif
}

135 136
static int skge_get_regs_len(struct net_device *dev)
{
137
	return 0x4000;
138 139 140
}

/*
141 142 143
 * Returns copy of whole control register region
 * Note: skip RAM address register because accessing it will
 * 	 cause bus hangs!
144 145 146 147 148 149 150 151
 */
static void skge_get_regs(struct net_device *dev, struct ethtool_regs *regs,
			  void *p)
{
	const struct skge_port *skge = netdev_priv(dev);
	const void __iomem *io = skge->hw->regs;

	regs->version = 1;
152 153
	memset(p, 0, regs->len);
	memcpy_fromio(p, io, B3_RAM_ADDR);
154

155 156
	memcpy_fromio(p + B3_RI_WTO_R1, io + B3_RI_WTO_R1,
		      regs->len - B3_RI_WTO_R1);
157 158
}

S
Stephen Hemminger 已提交
159
/* Wake on Lan only supported on Yukon chips with rev 1 or above */
S
Stephen Hemminger 已提交
160
static u32 wol_supported(const struct skge_hw *hw)
161
{
162
	if (is_genesis(hw))
S
Stephen Hemminger 已提交
163
		return 0;
164 165 166 167 168

	if (hw->chip_id == CHIP_ID_YUKON && hw->chip_rev == 0)
		return 0;

	return WAKE_MAGIC | WAKE_PHY;
S
Stephen Hemminger 已提交
169 170 171 172 173 174
}

static void skge_wol_init(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
S
Stephen Hemminger 已提交
175
	u16 ctrl;
S
Stephen Hemminger 已提交
176 177 178 179

	skge_write16(hw, B0_CTST, CS_RST_CLR);
	skge_write16(hw, SK_REG(port, GMAC_LINK_CTRL), GMLC_RST_CLR);

S
Stephen Hemminger 已提交
180 181 182
	/* Turn on Vaux */
	skge_write8(hw, B0_POWER_CTRL,
		    PC_VAUX_ENA | PC_VCC_ENA | PC_VAUX_ON | PC_VCC_OFF);
S
Stephen Hemminger 已提交
183

S
Stephen Hemminger 已提交
184 185 186 187 188 189 190 191
	/* WA code for COMA mode -- clear PHY reset */
	if (hw->chip_id == CHIP_ID_YUKON_LITE &&
	    hw->chip_rev >= CHIP_REV_YU_LITE_A3) {
		u32 reg = skge_read32(hw, B2_GP_IO);
		reg |= GP_DIR_9;
		reg &= ~GP_IO_9;
		skge_write32(hw, B2_GP_IO, reg);
	}
S
Stephen Hemminger 已提交
192

S
Stephen Hemminger 已提交
193 194 195 196
	skge_write32(hw, SK_REG(port, GPHY_CTRL),
		     GPC_DIS_SLEEP |
		     GPC_HWCFG_M_3 | GPC_HWCFG_M_2 | GPC_HWCFG_M_1 | GPC_HWCFG_M_0 |
		     GPC_ANEG_1 | GPC_RST_SET);
S
Stephen Hemminger 已提交
197

S
Stephen Hemminger 已提交
198 199 200 201 202 203 204 205 206
	skge_write32(hw, SK_REG(port, GPHY_CTRL),
		     GPC_DIS_SLEEP |
		     GPC_HWCFG_M_3 | GPC_HWCFG_M_2 | GPC_HWCFG_M_1 | GPC_HWCFG_M_0 |
		     GPC_ANEG_1 | GPC_RST_CLR);

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

	/* Force to 10/100 skge_reset will re-enable on resume	 */
	gm_phy_write(hw, port, PHY_MARV_AUNE_ADV,
207 208
		     (PHY_AN_100FULL | PHY_AN_100HALF |
		      PHY_AN_10FULL | PHY_AN_10HALF | PHY_AN_CSMA));
S
Stephen Hemminger 已提交
209 210 211 212 213
	/* no 1000 HD/FD */
	gm_phy_write(hw, port, PHY_MARV_1000T_CTRL, 0);
	gm_phy_write(hw, port, PHY_MARV_CTRL,
		     PHY_CT_RESET | PHY_CT_SPS_LSB | PHY_CT_ANE |
		     PHY_CT_RE_CFG | PHY_CT_DUP_MD);
S
Stephen Hemminger 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235


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

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

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

	if (skge->wol & WAKE_MAGIC)
		ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
	else
236
		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;
S
Stephen Hemminger 已提交
237 238 239 240 241 242

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

	/* block receiver */
	skge_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
243 244 245 246 247 248
}

static void skge_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
{
	struct skge_port *skge = netdev_priv(dev);

S
Stephen Hemminger 已提交
249 250
	wol->supported = wol_supported(skge->hw);
	wol->wolopts = skge->wol;
251 252 253 254 255 256 257
}

static int skge_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;

258 259
	if ((wol->wolopts & ~wol_supported(hw)) ||
	    !device_can_wakeup(&hw->pdev->dev))
260 261
		return -EOPNOTSUPP;

S
Stephen Hemminger 已提交
262
	skge->wol = wol->wolopts;
263 264 265

	device_set_wakeup_enable(&hw->pdev->dev, skge->wol);

266 267 268
	return 0;
}

S
Stephen Hemminger 已提交
269 270
/* Determine supported/advertised modes based on hardware.
 * Note: ethtool ADVERTISED_xxx == SUPPORTED_xxx
271 272 273 274 275
 */
static u32 skge_supported_modes(const struct skge_hw *hw)
{
	u32 supported;

276
	if (hw->copper) {
277 278 279 280 281 282 283 284
		supported = (SUPPORTED_10baseT_Half |
			     SUPPORTED_10baseT_Full |
			     SUPPORTED_100baseT_Half |
			     SUPPORTED_100baseT_Full |
			     SUPPORTED_1000baseT_Half |
			     SUPPORTED_1000baseT_Full |
			     SUPPORTED_Autoneg |
			     SUPPORTED_TP);
285

286
		if (is_genesis(hw))
287 288 289 290
			supported &= ~(SUPPORTED_10baseT_Half |
				       SUPPORTED_10baseT_Full |
				       SUPPORTED_100baseT_Half |
				       SUPPORTED_100baseT_Full);
291 292 293 294

		else if (hw->chip_id == CHIP_ID_YUKON)
			supported &= ~SUPPORTED_1000baseT_Half;
	} else
295 296 297 298
		supported = (SUPPORTED_1000baseT_Full |
			     SUPPORTED_1000baseT_Half |
			     SUPPORTED_FIBRE |
			     SUPPORTED_Autoneg);
299 300 301

	return supported;
}
302 303 304 305 306 307 308 309

static int skge_get_settings(struct net_device *dev,
			     struct ethtool_cmd *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;

	ecmd->transceiver = XCVR_INTERNAL;
310
	ecmd->supported = skge_supported_modes(hw);
311

312
	if (hw->copper) {
313 314
		ecmd->port = PORT_TP;
		ecmd->phy_address = hw->phy_addr;
315
	} else
316 317 318 319
		ecmd->port = PORT_FIBRE;

	ecmd->advertising = skge->advertising;
	ecmd->autoneg = skge->autoneg;
320
	ethtool_cmd_speed_set(ecmd, skge->speed);
321 322 323 324 325 326 327 328
	ecmd->duplex = skge->duplex;
	return 0;
}

static int skge_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);
	const struct skge_hw *hw = skge->hw;
329
	u32 supported = skge_supported_modes(hw);
330
	int err = 0;
331 332

	if (ecmd->autoneg == AUTONEG_ENABLE) {
333 334 335
		ecmd->advertising = supported;
		skge->duplex = -1;
		skge->speed = -1;
336
	} else {
337
		u32 setting;
338
		u32 speed = ethtool_cmd_speed(ecmd);
339

340
		switch (speed) {
341
		case SPEED_1000:
342 343 344 345 346 347
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_1000baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_1000baseT_Half;
			else
				return -EINVAL;
348 349
			break;
		case SPEED_100:
350 351 352 353 354 355 356 357
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_100baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_100baseT_Half;
			else
				return -EINVAL;
			break;

358
		case SPEED_10:
359 360 361 362 363
			if (ecmd->duplex == DUPLEX_FULL)
				setting = SUPPORTED_10baseT_Full;
			else if (ecmd->duplex == DUPLEX_HALF)
				setting = SUPPORTED_10baseT_Half;
			else
364 365 366 367 368
				return -EINVAL;
			break;
		default:
			return -EINVAL;
		}
369 370 371 372

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

373
		skge->speed = speed;
374
		skge->duplex = ecmd->duplex;
375 376 377 378 379
	}

	skge->autoneg = ecmd->autoneg;
	skge->advertising = ecmd->advertising;

380 381 382 383 384 385 386 387
	if (netif_running(dev)) {
		skge_down(dev);
		err = skge_up(dev);
		if (err) {
			dev_close(dev);
			return err;
		}
	}
388

389
	return 0;
390 391 392 393 394 395 396
}

static void skge_get_drvinfo(struct net_device *dev,
			     struct ethtool_drvinfo *info)
{
	struct skge_port *skge = netdev_priv(dev);

397 398 399 400
	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
	strlcpy(info->bus_info, pci_name(skge->hw->pdev),
		sizeof(info->bus_info));
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
}

static const struct skge_stat {
	char 	   name[ETH_GSTRING_LEN];
	u16	   xmac_offset;
	u16	   gma_offset;
} skge_stats[] = {
	{ "tx_bytes",		XM_TXO_OK_HI,  GM_TXO_OK_HI },
	{ "rx_bytes",		XM_RXO_OK_HI,  GM_RXO_OK_HI },

	{ "tx_broadcast",	XM_TXF_BC_OK,  GM_TXF_BC_OK },
	{ "rx_broadcast",	XM_RXF_BC_OK,  GM_RXF_BC_OK },
	{ "tx_multicast",	XM_TXF_MC_OK,  GM_TXF_MC_OK },
	{ "rx_multicast",	XM_RXF_MC_OK,  GM_RXF_MC_OK },
	{ "tx_unicast",		XM_TXF_UC_OK,  GM_TXF_UC_OK },
	{ "rx_unicast",		XM_RXF_UC_OK,  GM_RXF_UC_OK },
	{ "tx_mac_pause",	XM_TXF_MPAUSE, GM_TXF_MPAUSE },
	{ "rx_mac_pause",	XM_RXF_MPAUSE, GM_RXF_MPAUSE },

	{ "collisions",		XM_TXF_SNG_COL, GM_TXF_SNG_COL },
	{ "multi_collisions",	XM_TXF_MUL_COL, GM_TXF_MUL_COL },
	{ "aborted",		XM_TXF_ABO_COL, GM_TXF_ABO_COL },
	{ "late_collision",	XM_TXF_LAT_COL, GM_TXF_LAT_COL },
	{ "fifo_underrun",	XM_TXE_FIFO_UR, GM_TXE_FIFO_UR },
	{ "fifo_overflow",	XM_RXE_FIFO_OV, GM_RXE_FIFO_OV },

	{ "rx_toolong",		XM_RXF_LNG_ERR, GM_RXF_LNG_ERR },
	{ "rx_jabber",		XM_RXF_JAB_PKT, GM_RXF_JAB_PKT },
	{ "rx_runt",		XM_RXE_RUNT, 	GM_RXE_FRAG },
	{ "rx_too_long",	XM_RXF_LNG_ERR, GM_RXF_LNG_ERR },
	{ "rx_fcs_error",	XM_RXF_FCS_ERR, GM_RXF_FCS_ERR },
};

434
static int skge_get_sset_count(struct net_device *dev, int sset)
435
{
436 437 438 439 440 441
	switch (sset) {
	case ETH_SS_STATS:
		return ARRAY_SIZE(skge_stats);
	default:
		return -EOPNOTSUPP;
	}
442 443 444 445 446 447 448
}

static void skge_get_ethtool_stats(struct net_device *dev,
				   struct ethtool_stats *stats, u64 *data)
{
	struct skge_port *skge = netdev_priv(dev);

449
	if (is_genesis(skge->hw))
450 451 452 453 454 455 456 457 458 459 460 461 462 463
		genesis_get_stats(skge, data);
	else
		yukon_get_stats(skge, data);
}

/* 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 *skge_get_stats(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	u64 data[ARRAY_SIZE(skge_stats)];

464
	if (is_genesis(skge->hw))
465 466 467 468
		genesis_get_stats(skge, data);
	else
		yukon_get_stats(skge, data);

S
Stephen Hemminger 已提交
469 470 471 472 473 474 475
	dev->stats.tx_bytes = data[0];
	dev->stats.rx_bytes = data[1];
	dev->stats.tx_packets = data[2] + data[4] + data[6];
	dev->stats.rx_packets = data[3] + data[5] + data[7];
	dev->stats.multicast = data[3] + data[5];
	dev->stats.collisions = data[10];
	dev->stats.tx_aborted_errors = data[12];
476

S
Stephen Hemminger 已提交
477
	return &dev->stats;
478 479 480 481 482 483
}

static void skge_get_strings(struct net_device *dev, u32 stringset, u8 *data)
{
	int i;

484
	switch (stringset) {
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
	case ETH_SS_STATS:
		for (i = 0; i < ARRAY_SIZE(skge_stats); i++)
			memcpy(data + i * ETH_GSTRING_LEN,
			       skge_stats[i].name, ETH_GSTRING_LEN);
		break;
	}
}

static void skge_get_ring_param(struct net_device *dev,
				struct ethtool_ringparam *p)
{
	struct skge_port *skge = netdev_priv(dev);

	p->rx_max_pending = MAX_RX_RING_SIZE;
	p->tx_max_pending = MAX_TX_RING_SIZE;

	p->rx_pending = skge->rx_ring.count;
	p->tx_pending = skge->tx_ring.count;
}

static int skge_set_ring_param(struct net_device *dev,
			       struct ethtool_ringparam *p)
{
	struct skge_port *skge = netdev_priv(dev);
509
	int err = 0;
510 511

	if (p->rx_pending == 0 || p->rx_pending > MAX_RX_RING_SIZE ||
512
	    p->tx_pending < TX_LOW_WATER || p->tx_pending > MAX_TX_RING_SIZE)
513 514 515 516 517 518 519
		return -EINVAL;

	skge->rx_ring.count = p->rx_pending;
	skge->tx_ring.count = p->tx_pending;

	if (netif_running(dev)) {
		skge_down(dev);
520 521 522
		err = skge_up(dev);
		if (err)
			dev_close(dev);
523 524
	}

525
	return err;
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
}

static u32 skge_get_msglevel(struct net_device *netdev)
{
	struct skge_port *skge = netdev_priv(netdev);
	return skge->msg_enable;
}

static void skge_set_msglevel(struct net_device *netdev, u32 value)
{
	struct skge_port *skge = netdev_priv(netdev);
	skge->msg_enable = value;
}

static int skge_nway_reset(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);

	if (skge->autoneg != AUTONEG_ENABLE || !netif_running(dev))
		return -EINVAL;

547
	skge_phy_reset(skge);
548 549 550 551 552 553 554 555
	return 0;
}

static void skge_get_pauseparam(struct net_device *dev,
				struct ethtool_pauseparam *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);

556 557 558 559
	ecmd->rx_pause = ((skge->flow_control == FLOW_MODE_SYMMETRIC) ||
			  (skge->flow_control == FLOW_MODE_SYM_OR_REM));
	ecmd->tx_pause = (ecmd->rx_pause ||
			  (skge->flow_control == FLOW_MODE_LOC_SEND));
560

561
	ecmd->autoneg = ecmd->rx_pause || ecmd->tx_pause;
562 563 564 565 566 567
}

static int skge_set_pauseparam(struct net_device *dev,
			       struct ethtool_pauseparam *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);
568
	struct ethtool_pauseparam old;
569
	int err = 0;
570

571 572 573 574 575 576 577 578 579 580 581 582 583 584
	skge_get_pauseparam(dev, &old);

	if (ecmd->autoneg != old.autoneg)
		skge->flow_control = ecmd->autoneg ? FLOW_MODE_NONE : FLOW_MODE_SYMMETRIC;
	else {
		if (ecmd->rx_pause && ecmd->tx_pause)
			skge->flow_control = FLOW_MODE_SYMMETRIC;
		else if (ecmd->rx_pause && !ecmd->tx_pause)
			skge->flow_control = FLOW_MODE_SYM_OR_REM;
		else if (!ecmd->rx_pause && ecmd->tx_pause)
			skge->flow_control = FLOW_MODE_LOC_SEND;
		else
			skge->flow_control = FLOW_MODE_NONE;
	}
585

586 587 588 589 590 591 592 593
	if (netif_running(dev)) {
		skge_down(dev);
		err = skge_up(dev);
		if (err) {
			dev_close(dev);
			return err;
		}
	}
594

595 596 597 598 599 600
	return 0;
}

/* Chip internal frequency for clock calculations */
static inline u32 hwkhz(const struct skge_hw *hw)
{
601
	return is_genesis(hw) ? 53125 : 78125;
602 603
}

S
Stephen Hemminger 已提交
604
/* Chip HZ to microseconds */
605 606 607 608 609
static inline u32 skge_clk2usec(const struct skge_hw *hw, u32 ticks)
{
	return (ticks * 1000) / hwkhz(hw);
}

S
Stephen Hemminger 已提交
610
/* Microseconds to chip HZ */
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
static inline u32 skge_usecs2clk(const struct skge_hw *hw, u32 usec)
{
	return hwkhz(hw) * usec / 1000;
}

static int skge_get_coalesce(struct net_device *dev,
			     struct ethtool_coalesce *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;

	ecmd->rx_coalesce_usecs = 0;
	ecmd->tx_coalesce_usecs = 0;

	if (skge_read32(hw, B2_IRQM_CTRL) & TIM_START) {
		u32 delay = skge_clk2usec(hw, skge_read32(hw, B2_IRQM_INI));
		u32 msk = skge_read32(hw, B2_IRQM_MSK);

		if (msk & rxirqmask[port])
			ecmd->rx_coalesce_usecs = delay;
		if (msk & txirqmask[port])
			ecmd->tx_coalesce_usecs = delay;
	}

	return 0;
}

/* Note: interrupt timer is per board, but can turn on/off per port */
static int skge_set_coalesce(struct net_device *dev,
			     struct ethtool_coalesce *ecmd)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	u32 msk = skge_read32(hw, B2_IRQM_MSK);
	u32 delay = 25;

	if (ecmd->rx_coalesce_usecs == 0)
		msk &= ~rxirqmask[port];
	else if (ecmd->rx_coalesce_usecs < 25 ||
		 ecmd->rx_coalesce_usecs > 33333)
		return -EINVAL;
	else {
		msk |= rxirqmask[port];
		delay = ecmd->rx_coalesce_usecs;
	}

	if (ecmd->tx_coalesce_usecs == 0)
		msk &= ~txirqmask[port];
	else if (ecmd->tx_coalesce_usecs < 25 ||
		 ecmd->tx_coalesce_usecs > 33333)
		return -EINVAL;
	else {
		msk |= txirqmask[port];
		delay = min(delay, ecmd->rx_coalesce_usecs);
	}

	skge_write32(hw, B2_IRQM_MSK, msk);
	if (msk == 0)
		skge_write32(hw, B2_IRQM_CTRL, TIM_STOP);
	else {
		skge_write32(hw, B2_IRQM_INI, skge_usecs2clk(hw, delay));
		skge_write32(hw, B2_IRQM_CTRL, TIM_START);
	}
	return 0;
}

679 680
enum led_mode { LED_MODE_OFF, LED_MODE_ON, LED_MODE_TST };
static void skge_led(struct skge_port *skge, enum led_mode mode)
681
{
682 683 684
	struct skge_hw *hw = skge->hw;
	int port = skge->port;

685
	spin_lock_bh(&hw->phy_lock);
686
	if (is_genesis(hw)) {
687 688
		switch (mode) {
		case LED_MODE_OFF:
S
Stephen Hemminger 已提交
689 690 691 692 693 694
			if (hw->phy_type == SK_PHY_BCOM)
				xm_phy_write(hw, port, PHY_BCOM_P_EXT_CTRL, PHY_B_PEC_LED_OFF);
			else {
				skge_write32(hw, SK_REG(port, TX_LED_VAL), 0);
				skge_write8(hw, SK_REG(port, TX_LED_CTRL), LED_T_OFF);
			}
695 696 697 698
			skge_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);
			skge_write32(hw, SK_REG(port, RX_LED_VAL), 0);
			skge_write8(hw, SK_REG(port, RX_LED_CTRL), LED_T_OFF);
			break;
699

700 701 702
		case LED_MODE_ON:
			skge_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_ON);
			skge_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_LINKSYNC_ON);
703

704 705
			skge_write8(hw, SK_REG(port, RX_LED_CTRL), LED_START);
			skge_write8(hw, SK_REG(port, TX_LED_CTRL), LED_START);
706

707
			break;
708

709 710 711 712
		case LED_MODE_TST:
			skge_write8(hw, SK_REG(port, RX_LED_TST), LED_T_ON);
			skge_write32(hw, SK_REG(port, RX_LED_VAL), 100);
			skge_write8(hw, SK_REG(port, RX_LED_CTRL), LED_START);
713

S
Stephen Hemminger 已提交
714 715 716 717 718 719 720 721
			if (hw->phy_type == SK_PHY_BCOM)
				xm_phy_write(hw, port, PHY_BCOM_P_EXT_CTRL, PHY_B_PEC_LED_ON);
			else {
				skge_write8(hw, SK_REG(port, TX_LED_TST), LED_T_ON);
				skge_write32(hw, SK_REG(port, TX_LED_VAL), 100);
				skge_write8(hw, SK_REG(port, TX_LED_CTRL), LED_START);
			}

722
		}
723
	} else {
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
		switch (mode) {
		case LED_MODE_OFF:
			gm_phy_write(hw, port, PHY_MARV_LED_CTRL, 0);
			gm_phy_write(hw, port, PHY_MARV_LED_OVER,
				     PHY_M_LED_MO_DUP(MO_LED_OFF)  |
				     PHY_M_LED_MO_10(MO_LED_OFF)   |
				     PHY_M_LED_MO_100(MO_LED_OFF)  |
				     PHY_M_LED_MO_1000(MO_LED_OFF) |
				     PHY_M_LED_MO_RX(MO_LED_OFF));
			break;
		case LED_MODE_ON:
			gm_phy_write(hw, port, PHY_MARV_LED_CTRL,
				     PHY_M_LED_PULS_DUR(PULS_170MS) |
				     PHY_M_LED_BLINK_RT(BLINK_84MS) |
				     PHY_M_LEDC_TX_CTRL |
				     PHY_M_LEDC_DP_CTRL);
740

741 742 743 744 745 746 747 748 749 750 751 752 753 754
			gm_phy_write(hw, port, PHY_MARV_LED_OVER,
				     PHY_M_LED_MO_RX(MO_LED_OFF) |
				     (skge->speed == SPEED_100 ?
				      PHY_M_LED_MO_100(MO_LED_ON) : 0));
			break;
		case LED_MODE_TST:
			gm_phy_write(hw, port, PHY_MARV_LED_CTRL, 0);
			gm_phy_write(hw, port, PHY_MARV_LED_OVER,
				     PHY_M_LED_MO_DUP(MO_LED_ON)  |
				     PHY_M_LED_MO_10(MO_LED_ON)   |
				     PHY_M_LED_MO_100(MO_LED_ON)  |
				     PHY_M_LED_MO_1000(MO_LED_ON) |
				     PHY_M_LED_MO_RX(MO_LED_ON));
		}
755
	}
756
	spin_unlock_bh(&hw->phy_lock);
757 758 759
}

/* blink LED's for finding board */
S
stephen hemminger 已提交
760 761
static int skge_set_phys_id(struct net_device *dev,
			    enum ethtool_phys_id_state state)
762 763 764
{
	struct skge_port *skge = netdev_priv(dev);

S
stephen hemminger 已提交
765 766
	switch (state) {
	case ETHTOOL_ID_ACTIVE:
767
		return 2;	/* cycle on/off twice per second */
768

S
stephen hemminger 已提交
769 770 771
	case ETHTOOL_ID_ON:
		skge_led(skge, LED_MODE_TST);
		break;
772

S
stephen hemminger 已提交
773 774 775
	case ETHTOOL_ID_OFF:
		skge_led(skge, LED_MODE_OFF);
		break;
776

S
stephen hemminger 已提交
777 778 779 780
	case ETHTOOL_ID_INACTIVE:
		/* back to regular LED state */
		skge_led(skge, netif_running(dev) ? LED_MODE_ON : LED_MODE_OFF);
	}
781 782 783 784

	return 0;
}

S
Stephen Hemminger 已提交
785 786 787 788 789 790
static int skge_get_eeprom_len(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	u32 reg2;

	pci_read_config_dword(skge->hw->pdev, PCI_DEV_REG2, &reg2);
791
	return 1 << (((reg2 & PCI_VPD_ROM_SZ) >> 14) + 8);
S
Stephen Hemminger 已提交
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
}

static u32 skge_vpd_read(struct pci_dev *pdev, int cap, u16 offset)
{
	u32 val;

	pci_write_config_word(pdev, cap + PCI_VPD_ADDR, offset);

	do {
		pci_read_config_word(pdev, cap + PCI_VPD_ADDR, &offset);
	} while (!(offset & PCI_VPD_ADDR_F));

	pci_read_config_dword(pdev, cap + PCI_VPD_DATA, &val);
	return val;
}

static void skge_vpd_write(struct pci_dev *pdev, int cap, u16 offset, u32 val)
{
	pci_write_config_dword(pdev, cap + PCI_VPD_DATA, val);
	pci_write_config_word(pdev, cap + PCI_VPD_ADDR,
			      offset | PCI_VPD_ADDR_F);

	do {
		pci_read_config_word(pdev, cap + PCI_VPD_ADDR, &offset);
	} while (offset & PCI_VPD_ADDR_F);
}

static int skge_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
			   u8 *data)
{
	struct skge_port *skge = netdev_priv(dev);
	struct pci_dev *pdev = skge->hw->pdev;
	int cap = pci_find_capability(pdev, PCI_CAP_ID_VPD);
	int length = eeprom->len;
	u16 offset = eeprom->offset;

	if (!cap)
		return -EINVAL;

	eeprom->magic = SKGE_EEPROM_MAGIC;

	while (length > 0) {
		u32 val = skge_vpd_read(pdev, cap, offset);
		int n = min_t(int, length, sizeof(val));

		memcpy(data, &val, n);
		length -= n;
		data += n;
		offset += n;
	}
	return 0;
}

static int skge_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
			   u8 *data)
{
	struct skge_port *skge = netdev_priv(dev);
	struct pci_dev *pdev = skge->hw->pdev;
	int cap = pci_find_capability(pdev, PCI_CAP_ID_VPD);
	int length = eeprom->len;
	u16 offset = eeprom->offset;

	if (!cap)
		return -EINVAL;

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

	while (length > 0) {
		u32 val;
		int n = min_t(int, length, sizeof(val));

		if (n < sizeof(val))
			val = skge_vpd_read(pdev, cap, offset);
		memcpy(&val, data, n);

		skge_vpd_write(pdev, cap, offset, val);

		length -= n;
		data += n;
		offset += n;
	}
	return 0;
}

877
static const struct ethtool_ops skge_ethtool_ops = {
878 879 880 881 882 883 884 885 886 887 888
	.get_settings	= skge_get_settings,
	.set_settings	= skge_set_settings,
	.get_drvinfo	= skge_get_drvinfo,
	.get_regs_len	= skge_get_regs_len,
	.get_regs	= skge_get_regs,
	.get_wol	= skge_get_wol,
	.set_wol	= skge_set_wol,
	.get_msglevel	= skge_get_msglevel,
	.set_msglevel	= skge_set_msglevel,
	.nway_reset	= skge_nway_reset,
	.get_link	= ethtool_op_get_link,
S
Stephen Hemminger 已提交
889 890 891
	.get_eeprom_len	= skge_get_eeprom_len,
	.get_eeprom	= skge_get_eeprom,
	.set_eeprom	= skge_set_eeprom,
892 893 894 895 896 897 898
	.get_ringparam	= skge_get_ring_param,
	.set_ringparam	= skge_set_ring_param,
	.get_pauseparam = skge_get_pauseparam,
	.set_pauseparam = skge_set_pauseparam,
	.get_coalesce	= skge_get_coalesce,
	.set_coalesce	= skge_set_coalesce,
	.get_strings	= skge_get_strings,
S
stephen hemminger 已提交
899
	.set_phys_id	= skge_set_phys_id,
900
	.get_sset_count = skge_get_sset_count,
901 902 903 904 905 906 907
	.get_ethtool_stats = skge_get_ethtool_stats,
};

/*
 * Allocate ring elements and chain them together
 * One-to-one association of board descriptors with ring elements
 */
908
static int skge_ring_alloc(struct skge_ring *ring, void *vaddr, u32 base)
909 910 911 912 913
{
	struct skge_tx_desc *d;
	struct skge_element *e;
	int i;

914
	ring->start = kcalloc(ring->count, sizeof(*e), GFP_KERNEL);
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
	if (!ring->start)
		return -ENOMEM;

	for (i = 0, e = ring->start, d = vaddr; i < ring->count; i++, e++, d++) {
		e->desc = d;
		if (i == ring->count - 1) {
			e->next = ring->start;
			d->next_offset = base;
		} else {
			e->next = e + 1;
			d->next_offset = base + (i+1) * sizeof(*d);
		}
	}
	ring->to_use = ring->to_clean = ring->start;

	return 0;
}

933
/* Allocate and setup a new buffer for receiving */
S
stephen hemminger 已提交
934 935
static int skge_rx_setup(struct skge_port *skge, struct skge_element *e,
			 struct sk_buff *skb, unsigned int bufsize)
936 937
{
	struct skge_rx_desc *rd = e->desc;
S
stephen hemminger 已提交
938
	dma_addr_t map;
939

940
	map = pci_map_single(skge->hw->pdev, skb->data, bufsize,
941 942
			     PCI_DMA_FROMDEVICE);

S
stephen hemminger 已提交
943 944 945
	if (pci_dma_mapping_error(skge->hw->pdev, map))
		return -1;

S
Stephen Hemminger 已提交
946 947
	rd->dma_lo = lower_32_bits(map);
	rd->dma_hi = upper_32_bits(map);
948 949 950 951 952 953 954 955 956
	e->skb = skb;
	rd->csum1_start = ETH_HLEN;
	rd->csum2_start = ETH_HLEN;
	rd->csum1 = 0;
	rd->csum2 = 0;

	wmb();

	rd->control = BMU_OWN | BMU_STF | BMU_IRQ_EOF | BMU_TCP_CHECK | bufsize;
957 958
	dma_unmap_addr_set(e, mapaddr, map);
	dma_unmap_len_set(e, maplen, bufsize);
S
stephen hemminger 已提交
959
	return 0;
960 961
}

962 963 964 965
/* Resume receiving using existing skb,
 * Note: DMA address is not changed by chip.
 * 	 MTU not changed while receiver active.
 */
966
static inline void skge_rx_reuse(struct skge_element *e, unsigned int size)
967 968 969 970 971 972 973 974 975 976 977 978 979
{
	struct skge_rx_desc *rd = e->desc;

	rd->csum2 = 0;
	rd->csum2_start = ETH_HLEN;

	wmb();

	rd->control = BMU_OWN | BMU_STF | BMU_IRQ_EOF | BMU_TCP_CHECK | size;
}


/* Free all  buffers in receive ring, assumes receiver stopped */
980 981 982 983 984 985
static void skge_rx_clean(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	struct skge_ring *ring = &skge->rx_ring;
	struct skge_element *e;

986 987
	e = ring->start;
	do {
988 989
		struct skge_rx_desc *rd = e->desc;
		rd->control = 0;
990 991
		if (e->skb) {
			pci_unmap_single(hw->pdev,
992 993
					 dma_unmap_addr(e, mapaddr),
					 dma_unmap_len(e, maplen),
994 995 996 997 998
					 PCI_DMA_FROMDEVICE);
			dev_kfree_skb(e->skb);
			e->skb = NULL;
		}
	} while ((e = e->next) != ring->start);
999 1000
}

1001

1002
/* Allocate buffers for receive ring
1003
 * For receive:  to_clean is next received frame.
1004
 */
1005
static int skge_rx_fill(struct net_device *dev)
1006
{
1007
	struct skge_port *skge = netdev_priv(dev);
1008 1009 1010
	struct skge_ring *ring = &skge->rx_ring;
	struct skge_element *e;

1011 1012
	e = ring->start;
	do {
1013
		struct sk_buff *skb;
1014

1015 1016
		skb = __netdev_alloc_skb(dev, skge->rx_buf_size + NET_IP_ALIGN,
					 GFP_KERNEL);
1017 1018 1019
		if (!skb)
			return -ENOMEM;

1020
		skb_reserve(skb, NET_IP_ALIGN);
S
stephen hemminger 已提交
1021 1022 1023 1024
		if (skge_rx_setup(skge, e, skb, skge->rx_buf_size) < 0) {
			dev_kfree_skb(skb);
			return -EIO;
		}
1025
	} while ((e = e->next) != ring->start);
1026

1027 1028
	ring->to_clean = ring->start;
	return 0;
1029 1030
}

1031 1032
static const char *skge_pause(enum pause_status status)
{
1033
	switch (status) {
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
	case FLOW_STAT_NONE:
		return "none";
	case FLOW_STAT_REM_SEND:
		return "rx only";
	case FLOW_STAT_LOC_SEND:
		return "tx_only";
	case FLOW_STAT_SYMMETRIC:		/* Both station may send PAUSE */
		return "both";
	default:
		return "indeterminated";
	}
}


1048 1049
static void skge_link_up(struct skge_port *skge)
{
1050
	skge_write8(skge->hw, SK_REG(skge->port, LNK_LED_REG),
1051
		    LED_BLK_OFF|LED_SYNC_OFF|LED_REG_ON);
1052

1053
	netif_carrier_on(skge->netdev);
1054
	netif_wake_queue(skge->netdev);
1055

1056 1057 1058 1059 1060
	netif_info(skge, link, skge->netdev,
		   "Link is up at %d Mbps, %s duplex, flow control %s\n",
		   skge->speed,
		   skge->duplex == DUPLEX_FULL ? "full" : "half",
		   skge_pause(skge->flow_status));
1061 1062 1063 1064
}

static void skge_link_down(struct skge_port *skge)
{
1065
	skge_write8(skge->hw, SK_REG(skge->port, LNK_LED_REG), LED_REG_OFF);
1066 1067 1068
	netif_carrier_off(skge->netdev);
	netif_stop_queue(skge->netdev);

1069
	netif_info(skge, link, skge->netdev, "Link is down\n");
1070 1071
}

1072 1073 1074 1075 1076
static void xm_link_down(struct skge_hw *hw, int port)
{
	struct net_device *dev = hw->dev[port];
	struct skge_port *skge = netdev_priv(dev);

S
Stephen Hemminger 已提交
1077
	xm_write16(hw, port, XM_IMSK, XM_IMSK_DISABLE);
1078 1079 1080 1081 1082

	if (netif_carrier_ok(dev))
		skge_link_down(skge);
}

1083
static int __xm_phy_read(struct skge_hw *hw, int port, u16 reg, u16 *val)
1084 1085 1086
{
	int i;

1087
	xm_write16(hw, port, XM_PHY_ADDR, reg | hw->phy_addr);
1088
	*val = xm_read16(hw, port, XM_PHY_DATA);
1089

S
Stephen Hemminger 已提交
1090 1091 1092
	if (hw->phy_type == SK_PHY_XMAC)
		goto ready;

1093
	for (i = 0; i < PHY_RETRIES; i++) {
1094
		if (xm_read16(hw, port, XM_MMU_CMD) & XM_MMU_PHY_RDY)
1095
			goto ready;
1096
		udelay(1);
1097 1098
	}

1099
	return -ETIMEDOUT;
1100
 ready:
1101
	*val = xm_read16(hw, port, XM_PHY_DATA);
1102

1103 1104 1105 1106 1107 1108 1109
	return 0;
}

static u16 xm_phy_read(struct skge_hw *hw, int port, u16 reg)
{
	u16 v = 0;
	if (__xm_phy_read(hw, port, reg, &v))
1110
		pr_warn("%s: phy read timed out\n", hw->dev[port]->name);
1111 1112 1113
	return v;
}

1114
static int xm_phy_write(struct skge_hw *hw, int port, u16 reg, u16 val)
1115 1116 1117
{
	int i;

1118
	xm_write16(hw, port, XM_PHY_ADDR, reg | hw->phy_addr);
1119
	for (i = 0; i < PHY_RETRIES; i++) {
1120
		if (!(xm_read16(hw, port, XM_MMU_CMD) & XM_MMU_PHY_BUSY))
1121
			goto ready;
1122
		udelay(1);
1123
	}
1124
	return -EIO;
1125 1126

 ready:
1127
	xm_write16(hw, port, XM_PHY_DATA, val);
1128 1129 1130 1131 1132 1133
	for (i = 0; i < PHY_RETRIES; i++) {
		if (!(xm_read16(hw, port, XM_MMU_CMD) & XM_MMU_PHY_BUSY))
			return 0;
		udelay(1);
	}
	return -ETIMEDOUT;
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
}

static void genesis_init(struct skge_hw *hw)
{
	/* set blink source counter */
	skge_write32(hw, B2_BSC_INI, (SK_BLK_DUR * SK_FACT_53) / 100);
	skge_write8(hw, B2_BSC_CTRL, BSC_START);

	/* configure mac arbiter */
	skge_write16(hw, B3_MA_TO_CTRL, MA_RST_CLR);

	/* configure mac arbiter timeout values */
	skge_write8(hw, B3_MA_TOINI_RX1, SK_MAC_TO_53);
	skge_write8(hw, B3_MA_TOINI_RX2, SK_MAC_TO_53);
	skge_write8(hw, B3_MA_TOINI_TX1, SK_MAC_TO_53);
	skge_write8(hw, B3_MA_TOINI_TX2, SK_MAC_TO_53);

	skge_write8(hw, B3_MA_RCINI_RX1, 0);
	skge_write8(hw, B3_MA_RCINI_RX2, 0);
	skge_write8(hw, B3_MA_RCINI_TX1, 0);
	skge_write8(hw, B3_MA_RCINI_TX2, 0);

	/* configure packet arbiter timeout */
	skge_write16(hw, B3_PA_CTRL, PA_RST_CLR);
	skge_write16(hw, B3_PA_TOINI_RX1, SK_PKT_TO_MAX);
	skge_write16(hw, B3_PA_TOINI_TX1, SK_PKT_TO_MAX);
	skge_write16(hw, B3_PA_TOINI_RX2, SK_PKT_TO_MAX);
	skge_write16(hw, B3_PA_TOINI_TX2, SK_PKT_TO_MAX);
}

static void genesis_reset(struct skge_hw *hw, int port)
{
J
Joe Perches 已提交
1166
	static const u8 zero[8]  = { 0 };
S
Stephen Hemminger 已提交
1167
	u32 reg;
1168

1169 1170
	skge_write8(hw, SK_REG(port, GMAC_IRQ_MSK), 0);

1171
	/* reset the statistics module */
1172
	xm_write32(hw, port, XM_GP_PORT, XM_GP_RES_STAT);
S
Stephen Hemminger 已提交
1173
	xm_write16(hw, port, XM_IMSK, XM_IMSK_DISABLE);
1174 1175 1176
	xm_write32(hw, port, XM_MODE, 0);		/* clear Mode Reg */
	xm_write16(hw, port, XM_TX_CMD, 0);	/* reset TX CMD Reg */
	xm_write16(hw, port, XM_RX_CMD, 0);	/* reset RX CMD Reg */
1177

1178
	/* disable Broadcom PHY IRQ */
S
Stephen Hemminger 已提交
1179 1180
	if (hw->phy_type == SK_PHY_BCOM)
		xm_write16(hw, port, PHY_BCOM_INT_MASK, 0xffff);
1181

1182
	xm_outhash(hw, port, XM_HSM, zero);
S
Stephen Hemminger 已提交
1183 1184 1185 1186 1187

	/* Flush TX and RX fifo */
	reg = xm_read32(hw, port, XM_MODE);
	xm_write32(hw, port, XM_MODE, reg | XM_MD_FTF);
	xm_write32(hw, port, XM_MODE, reg | XM_MD_FRF);
1188 1189
}

1190 1191 1192 1193 1194
/* Convert mode to MII values  */
static const u16 phy_pause_map[] = {
	[FLOW_MODE_NONE] =	0,
	[FLOW_MODE_LOC_SEND] =	PHY_AN_PAUSE_ASYM,
	[FLOW_MODE_SYMMETRIC] = PHY_AN_PAUSE_CAP,
1195
	[FLOW_MODE_SYM_OR_REM]  = PHY_AN_PAUSE_CAP | PHY_AN_PAUSE_ASYM,
1196 1197
};

1198 1199 1200 1201 1202
/* special defines for FIBER (88E1011S only) */
static const u16 fiber_pause_map[] = {
	[FLOW_MODE_NONE]	= PHY_X_P_NO_PAUSE,
	[FLOW_MODE_LOC_SEND]	= PHY_X_P_ASYM_MD,
	[FLOW_MODE_SYMMETRIC]	= PHY_X_P_SYM_MD,
1203
	[FLOW_MODE_SYM_OR_REM]	= PHY_X_P_BOTH_MD,
1204 1205
};

1206 1207 1208

/* Check status of Broadcom phy link */
static void bcom_check_link(struct skge_hw *hw, int port)
1209
{
1210 1211 1212 1213 1214
	struct net_device *dev = hw->dev[port];
	struct skge_port *skge = netdev_priv(dev);
	u16 status;

	/* read twice because of latch */
S
Stephen Hemminger 已提交
1215
	xm_phy_read(hw, port, PHY_BCOM_STAT);
1216 1217 1218
	status = xm_phy_read(hw, port, PHY_BCOM_STAT);

	if ((status & PHY_ST_LSYNC) == 0) {
1219
		xm_link_down(hw, port);
S
Stephen Hemminger 已提交
1220 1221
		return;
	}
1222

S
Stephen Hemminger 已提交
1223 1224
	if (skge->autoneg == AUTONEG_ENABLE) {
		u16 lpa, aux;
1225

S
Stephen Hemminger 已提交
1226 1227
		if (!(status & PHY_ST_AN_OVER))
			return;
1228

S
Stephen Hemminger 已提交
1229 1230
		lpa = xm_phy_read(hw, port, PHY_XMAC_AUNE_LP);
		if (lpa & PHY_B_AN_RF) {
1231
			netdev_notice(dev, "remote fault\n");
S
Stephen Hemminger 已提交
1232 1233
			return;
		}
1234

S
Stephen Hemminger 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
		aux = xm_phy_read(hw, port, PHY_BCOM_AUX_STAT);

		/* Check Duplex mismatch */
		switch (aux & PHY_B_AS_AN_RES_MSK) {
		case PHY_B_RES_1000FD:
			skge->duplex = DUPLEX_FULL;
			break;
		case PHY_B_RES_1000HD:
			skge->duplex = DUPLEX_HALF;
			break;
		default:
1246
			netdev_notice(dev, "duplex mismatch\n");
S
Stephen Hemminger 已提交
1247
			return;
1248 1249
		}

S
Stephen Hemminger 已提交
1250 1251 1252
		/* We are using IEEE 802.3z/D5.0 Table 37-4 */
		switch (aux & PHY_B_AS_PAUSE_MSK) {
		case PHY_B_AS_PAUSE_MSK:
1253
			skge->flow_status = FLOW_STAT_SYMMETRIC;
S
Stephen Hemminger 已提交
1254 1255
			break;
		case PHY_B_AS_PRR:
1256
			skge->flow_status = FLOW_STAT_REM_SEND;
S
Stephen Hemminger 已提交
1257 1258
			break;
		case PHY_B_AS_PRT:
1259
			skge->flow_status = FLOW_STAT_LOC_SEND;
S
Stephen Hemminger 已提交
1260 1261
			break;
		default:
1262
			skge->flow_status = FLOW_STAT_NONE;
S
Stephen Hemminger 已提交
1263 1264
		}
		skge->speed = SPEED_1000;
1265
	}
S
Stephen Hemminger 已提交
1266 1267 1268

	if (!netif_carrier_ok(dev))
		genesis_link_up(skge);
1269 1270 1271 1272 1273
}

/* Broadcom 5400 only supports giagabit! SysKonnect did not put an additional
 * Phy on for 100 or 10Mbit operation
 */
S
Stephen Hemminger 已提交
1274
static void bcom_phy_init(struct skge_port *skge)
1275 1276 1277
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
1278
	int i;
1279
	u16 id1, r, ext, ctl;
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294

	/* magic workaround patterns for Broadcom */
	static const struct {
		u16 reg;
		u16 val;
	} A1hack[] = {
		{ 0x18, 0x0c20 }, { 0x17, 0x0012 }, { 0x15, 0x1104 },
		{ 0x17, 0x0013 }, { 0x15, 0x0404 }, { 0x17, 0x8006 },
		{ 0x15, 0x0132 }, { 0x17, 0x8006 }, { 0x15, 0x0232 },
		{ 0x17, 0x800D }, { 0x15, 0x000F }, { 0x18, 0x0420 },
	}, C0hack[] = {
		{ 0x18, 0x0c20 }, { 0x17, 0x0012 }, { 0x15, 0x1204 },
		{ 0x17, 0x0013 }, { 0x15, 0x0A04 }, { 0x18, 0x0420 },
	};

1295 1296 1297 1298 1299 1300
	/* read Id from external PHY (all have the same address) */
	id1 = xm_phy_read(hw, port, PHY_XMAC_ID1);

	/* Optimize MDIO transfer by suppressing preamble. */
	r = xm_read16(hw, port, XM_MMU_CMD);
	r |=  XM_MMU_NO_PRE;
1301
	xm_write16(hw, port, XM_MMU_CMD, r);
1302

1303
	switch (id1) {
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
	case PHY_BCOM_ID1_C0:
		/*
		 * Workaround BCOM Errata for the C0 type.
		 * Write magic patterns to reserved registers.
		 */
		for (i = 0; i < ARRAY_SIZE(C0hack); i++)
			xm_phy_write(hw, port,
				     C0hack[i].reg, C0hack[i].val);

		break;
	case PHY_BCOM_ID1_A1:
		/*
		 * Workaround BCOM Errata for the A1 type.
		 * Write magic patterns to reserved registers.
		 */
		for (i = 0; i < ARRAY_SIZE(A1hack); i++)
			xm_phy_write(hw, port,
				     A1hack[i].reg, A1hack[i].val);
		break;
	}

	/*
	 * Workaround BCOM Errata (#10523) for all BCom PHYs.
	 * Disable Power Management after reset.
	 */
	r = xm_phy_read(hw, port, PHY_BCOM_AUX_CTRL);
	r |= PHY_B_AC_DIS_PM;
	xm_phy_write(hw, port, PHY_BCOM_AUX_CTRL, r);

	/* Dummy read */
	xm_read16(hw, port, XM_ISRC);

	ext = PHY_B_PEC_EN_LTR; /* enable tx led */
	ctl = PHY_CT_SP1000;	/* always 1000mbit */

	if (skge->autoneg == AUTONEG_ENABLE) {
		/*
		 * Workaround BCOM Errata #1 for the C5 type.
		 * 1000Base-T Link Acquisition Failure in Slave Mode
		 * Set Repeater/DTE bit 10 of the 1000Base-T Control Register
		 */
		u16 adv = PHY_B_1000C_RD;
		if (skge->advertising & ADVERTISED_1000baseT_Half)
			adv |= PHY_B_1000C_AHD;
		if (skge->advertising & ADVERTISED_1000baseT_Full)
			adv |= PHY_B_1000C_AFD;
		xm_phy_write(hw, port, PHY_BCOM_1000T_CTRL, adv);

		ctl |= PHY_CT_ANE | PHY_CT_RE_CFG;
	} else {
		if (skge->duplex == DUPLEX_FULL)
			ctl |= PHY_CT_DUP_MD;
		/* Force to slave */
		xm_phy_write(hw, port, PHY_BCOM_1000T_CTRL, PHY_B_1000C_MSE);
	}

	/* Set autonegotiation pause parameters */
	xm_phy_write(hw, port, PHY_BCOM_AUNE_ADV,
		     phy_pause_map[skge->flow_control] | PHY_AN_CSMA);

	/* Handle Jumbo frames */
S
Stephen Hemminger 已提交
1365
	if (hw->dev[port]->mtu > ETH_DATA_LEN) {
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
		xm_phy_write(hw, port, PHY_BCOM_AUX_CTRL,
			     PHY_B_AC_TX_TST | PHY_B_AC_LONG_PACK);

		ext |= PHY_B_PEC_HIGH_LA;

	}

	xm_phy_write(hw, port, PHY_BCOM_P_EXT_CTRL, ext);
	xm_phy_write(hw, port, PHY_BCOM_CTRL, ctl);

S
Stephen Hemminger 已提交
1376
	/* Use link status change interrupt */
1377
	xm_phy_write(hw, port, PHY_BCOM_INT_MASK, PHY_B_DEF_MSK);
S
Stephen Hemminger 已提交
1378
}
1379

S
Stephen Hemminger 已提交
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
static void xm_phy_init(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	u16 ctrl = 0;

	if (skge->autoneg == AUTONEG_ENABLE) {
		if (skge->advertising & ADVERTISED_1000baseT_Half)
			ctrl |= PHY_X_AN_HD;
		if (skge->advertising & ADVERTISED_1000baseT_Full)
			ctrl |= PHY_X_AN_FD;

1392
		ctrl |= fiber_pause_map[skge->flow_control];
S
Stephen Hemminger 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410

		xm_phy_write(hw, port, PHY_XMAC_AUNE_ADV, ctrl);

		/* Restart Auto-negotiation */
		ctrl = PHY_CT_ANE | PHY_CT_RE_CFG;
	} else {
		/* Set DuplexMode in Config register */
		if (skge->duplex == DUPLEX_FULL)
			ctrl |= PHY_CT_DUP_MD;
		/*
		 * Do NOT enable Auto-negotiation here. This would hold
		 * the link down because no IDLEs are transmitted
		 */
	}

	xm_phy_write(hw, port, PHY_XMAC_CTRL, ctrl);

	/* Poll PHY for status changes */
1411
	mod_timer(&skge->link_timer, jiffies + LINK_HZ);
S
Stephen Hemminger 已提交
1412 1413
}

S
Stephen Hemminger 已提交
1414
static int xm_check_link(struct net_device *dev)
S
Stephen Hemminger 已提交
1415 1416 1417 1418 1419 1420 1421
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	u16 status;

	/* read twice because of latch */
S
Stephen Hemminger 已提交
1422
	xm_phy_read(hw, port, PHY_XMAC_STAT);
S
Stephen Hemminger 已提交
1423 1424 1425
	status = xm_phy_read(hw, port, PHY_XMAC_STAT);

	if ((status & PHY_ST_LSYNC) == 0) {
1426
		xm_link_down(hw, port);
S
Stephen Hemminger 已提交
1427
		return 0;
S
Stephen Hemminger 已提交
1428 1429 1430 1431 1432 1433
	}

	if (skge->autoneg == AUTONEG_ENABLE) {
		u16 lpa, res;

		if (!(status & PHY_ST_AN_OVER))
S
Stephen Hemminger 已提交
1434
			return 0;
S
Stephen Hemminger 已提交
1435 1436 1437

		lpa = xm_phy_read(hw, port, PHY_XMAC_AUNE_LP);
		if (lpa & PHY_B_AN_RF) {
1438
			netdev_notice(dev, "remote fault\n");
S
Stephen Hemminger 已提交
1439
			return 0;
S
Stephen Hemminger 已提交
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
		}

		res = xm_phy_read(hw, port, PHY_XMAC_RES_ABI);

		/* Check Duplex mismatch */
		switch (res & (PHY_X_RS_HD | PHY_X_RS_FD)) {
		case PHY_X_RS_FD:
			skge->duplex = DUPLEX_FULL;
			break;
		case PHY_X_RS_HD:
			skge->duplex = DUPLEX_HALF;
			break;
		default:
1453
			netdev_notice(dev, "duplex mismatch\n");
S
Stephen Hemminger 已提交
1454
			return 0;
S
Stephen Hemminger 已提交
1455 1456 1457
		}

		/* We are using IEEE 802.3z/D5.0 Table 37-4 */
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
		if ((skge->flow_control == FLOW_MODE_SYMMETRIC ||
		     skge->flow_control == FLOW_MODE_SYM_OR_REM) &&
		    (lpa & PHY_X_P_SYM_MD))
			skge->flow_status = FLOW_STAT_SYMMETRIC;
		else if (skge->flow_control == FLOW_MODE_SYM_OR_REM &&
			 (lpa & PHY_X_RS_PAUSE) == PHY_X_P_ASYM_MD)
			/* Enable PAUSE receive, disable PAUSE transmit */
			skge->flow_status  = FLOW_STAT_REM_SEND;
		else if (skge->flow_control == FLOW_MODE_LOC_SEND &&
			 (lpa & PHY_X_RS_PAUSE) == PHY_X_P_BOTH_MD)
			/* Disable PAUSE receive, enable PAUSE transmit */
			skge->flow_status = FLOW_STAT_LOC_SEND;
S
Stephen Hemminger 已提交
1470
		else
1471
			skge->flow_status = FLOW_STAT_NONE;
S
Stephen Hemminger 已提交
1472 1473 1474 1475 1476 1477

		skge->speed = SPEED_1000;
	}

	if (!netif_carrier_ok(dev))
		genesis_link_up(skge);
S
Stephen Hemminger 已提交
1478
	return 1;
S
Stephen Hemminger 已提交
1479 1480 1481
}

/* Poll to check for link coming up.
S
Stephen Hemminger 已提交
1482
 *
S
Stephen Hemminger 已提交
1483
 * Since internal PHY is wired to a level triggered pin, can't
S
Stephen Hemminger 已提交
1484 1485
 * get an interrupt when carrier is detected, need to poll for
 * link coming up.
S
Stephen Hemminger 已提交
1486
 */
1487
static void xm_link_timer(unsigned long arg)
S
Stephen Hemminger 已提交
1488
{
1489
	struct skge_port *skge = (struct skge_port *) arg;
D
David Howells 已提交
1490
	struct net_device *dev = skge->netdev;
1491
	struct skge_hw *hw = skge->hw;
S
Stephen Hemminger 已提交
1492
	int port = skge->port;
S
Stephen Hemminger 已提交
1493 1494
	int i;
	unsigned long flags;
S
Stephen Hemminger 已提交
1495 1496 1497 1498

	if (!netif_running(dev))
		return;

S
Stephen Hemminger 已提交
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
	spin_lock_irqsave(&hw->phy_lock, flags);

	/*
	 * Verify that the link by checking GPIO register three times.
	 * This pin has the signal from the link_sync pin connected to it.
	 */
	for (i = 0; i < 3; i++) {
		if (xm_read16(hw, port, XM_GP_PORT) & XM_GP_INP_ASS)
			goto link_down;
	}

1510
	/* Re-enable interrupt to detect link down */
S
Stephen Hemminger 已提交
1511 1512 1513 1514
	if (xm_check_link(dev)) {
		u16 msk = xm_read16(hw, port, XM_IMSK);
		msk &= ~XM_IS_INP_ASS;
		xm_write16(hw, port, XM_IMSK, msk);
S
Stephen Hemminger 已提交
1515 1516
		xm_read16(hw, port, XM_ISRC);
	} else {
S
Stephen Hemminger 已提交
1517 1518 1519
link_down:
		mod_timer(&skge->link_timer,
			  round_jiffies(jiffies + LINK_HZ));
S
Stephen Hemminger 已提交
1520
	}
S
Stephen Hemminger 已提交
1521
	spin_unlock_irqrestore(&hw->phy_lock, flags);
1522 1523 1524 1525 1526 1527 1528 1529 1530
}

static void genesis_mac_init(struct skge_hw *hw, int port)
{
	struct net_device *dev = hw->dev[port];
	struct skge_port *skge = netdev_priv(dev);
	int jumbo = hw->dev[port]->mtu > ETH_DATA_LEN;
	int i;
	u32 r;
J
Joe Perches 已提交
1531
	static const u8 zero[6]  = { 0 };
1532

1533 1534 1535 1536 1537 1538 1539
	for (i = 0; i < 10; i++) {
		skge_write16(hw, SK_REG(port, TX_MFF_CTRL1),
			     MFF_SET_MAC_RST);
		if (skge_read16(hw, SK_REG(port, TX_MFF_CTRL1)) & MFF_SET_MAC_RST)
			goto reset_ok;
		udelay(1);
	}
1540

1541
	netdev_warn(dev, "genesis reset failed\n");
1542 1543

 reset_ok:
1544
	/* Unreset the XMAC. */
1545
	skge_write16(hw, SK_REG(port, TX_MFF_CTRL1), MFF_CLR_MAC_RST);
1546 1547 1548 1549 1550 1551

	/*
	 * Perform additional initialization for external PHYs,
	 * namely for the 1000baseTX cards that use the XMAC's
	 * GMII mode.
	 */
S
Stephen Hemminger 已提交
1552 1553 1554 1555 1556 1557 1558
	if (hw->phy_type != SK_PHY_XMAC) {
		/* Take external Phy out of reset */
		r = skge_read32(hw, B2_GP_IO);
		if (port == 0)
			r |= GP_DIR_0|GP_IO_0;
		else
			r |= GP_DIR_2|GP_IO_2;
1559

S
Stephen Hemminger 已提交
1560
		skge_write32(hw, B2_GP_IO, r);
1561

S
Stephen Hemminger 已提交
1562 1563 1564
		/* Enable GMII interface */
		xm_write16(hw, port, XM_HW_CFG, XM_HW_GMII_MD);
	}
1565 1566


1567
	switch (hw->phy_type) {
S
Stephen Hemminger 已提交
1568 1569 1570 1571 1572 1573 1574
	case SK_PHY_XMAC:
		xm_phy_init(skge);
		break;
	case SK_PHY_BCOM:
		bcom_phy_init(skge);
		bcom_check_link(hw, port);
	}
1575

1576 1577
	/* Set Station Address */
	xm_outaddr(hw, port, XM_SA, dev->dev_addr);
1578

1579 1580 1581 1582
	/* We don't use match addresses so clear */
	for (i = 1; i < 16; i++)
		xm_outaddr(hw, port, XM_EXM(i), zero);

1583 1584 1585 1586 1587 1588 1589
	/* Clear MIB counters */
	xm_write16(hw, port, XM_STAT_CMD,
			XM_SC_CLR_RXC | XM_SC_CLR_TXC);
	/* Clear two times according to Errata #3 */
	xm_write16(hw, port, XM_STAT_CMD,
			XM_SC_CLR_RXC | XM_SC_CLR_TXC);

1590 1591 1592 1593 1594 1595 1596
	/* configure Rx High Water Mark (XM_RX_HI_WM) */
	xm_write16(hw, port, XM_RX_HI_WM, 1450);

	/* We don't need the FCS appended to the packet. */
	r = XM_RX_LENERR_OK | XM_RX_STRIP_FCS;
	if (jumbo)
		r |= XM_RX_BIG_PK_OK;
1597

1598
	if (skge->duplex == DUPLEX_HALF) {
1599
		/*
1600 1601 1602
		 * If in manual half duplex mode the other side might be in
		 * full duplex mode, so ignore if a carrier extension is not seen
		 * on frames received
1603
		 */
1604
		r |= XM_RX_DIS_CEXT;
1605
	}
1606
	xm_write16(hw, port, XM_RX_CMD, r);
1607 1608

	/* We want short frames padded to 60 bytes. */
1609 1610
	xm_write16(hw, port, XM_TX_CMD, XM_TX_AUTO_PAD);

1611 1612 1613 1614 1615
	/* Increase threshold for jumbo frames on dual port */
	if (hw->ports > 1 && jumbo)
		xm_write16(hw, port, XM_TX_THR, 1020);
	else
		xm_write16(hw, port, XM_TX_THR, 512);
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627

	/*
	 * Enable the reception of all error frames. This is is
	 * a necessary evil due to the design of the XMAC. The
	 * XMAC's receive FIFO is only 8K in size, however jumbo
	 * frames can be up to 9000 bytes in length. When bad
	 * frame filtering is enabled, the XMAC's RX FIFO operates
	 * in 'store and forward' mode. For this to work, the
	 * entire frame has to fit into the FIFO, but that means
	 * that jumbo frames larger than 8192 bytes will be
	 * truncated. Disabling all bad frame filtering causes
	 * the RX FIFO to operate in streaming mode, in which
S
Stephen Hemminger 已提交
1628
	 * case the XMAC will start transferring frames out of the
1629 1630
	 * RX FIFO as soon as the FIFO threshold is reached.
	 */
1631
	xm_write32(hw, port, XM_MODE, XM_DEF_MODE);
1632 1633 1634


	/*
1635 1636 1637
	 * Initialize the Receive Counter Event Mask (XM_RX_EV_MSK)
	 *	- Enable all bits excepting 'Octets Rx OK Low CntOv'
	 *	  and 'Octets Rx OK Hi Cnt Ov'.
1638
	 */
1639 1640 1641 1642 1643 1644 1645 1646
	xm_write32(hw, port, XM_RX_EV_MSK, XMR_DEF_MSK);

	/*
	 * Initialize the Transmit Counter Event Mask (XM_TX_EV_MSK)
	 *	- Enable all bits excepting 'Octets Tx OK Low CntOv'
	 *	  and 'Octets Tx OK Hi Cnt Ov'.
	 */
	xm_write32(hw, port, XM_TX_EV_MSK, XMT_DEF_MSK);
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662

	/* Configure MAC arbiter */
	skge_write16(hw, B3_MA_TO_CTRL, MA_RST_CLR);

	/* configure timeout values */
	skge_write8(hw, B3_MA_TOINI_RX1, 72);
	skge_write8(hw, B3_MA_TOINI_RX2, 72);
	skge_write8(hw, B3_MA_TOINI_TX1, 72);
	skge_write8(hw, B3_MA_TOINI_TX2, 72);

	skge_write8(hw, B3_MA_RCINI_RX1, 0);
	skge_write8(hw, B3_MA_RCINI_RX2, 0);
	skge_write8(hw, B3_MA_RCINI_TX1, 0);
	skge_write8(hw, B3_MA_RCINI_TX2, 0);

	/* Configure Rx MAC FIFO */
1663 1664 1665
	skge_write8(hw, SK_REG(port, RX_MFF_CTRL2), MFF_RST_CLR);
	skge_write16(hw, SK_REG(port, RX_MFF_CTRL1), MFF_ENA_TIM_PAT);
	skge_write8(hw, SK_REG(port, RX_MFF_CTRL2), MFF_ENA_OP_MD);
1666 1667

	/* Configure Tx MAC FIFO */
1668 1669 1670
	skge_write8(hw, SK_REG(port, TX_MFF_CTRL2), MFF_RST_CLR);
	skge_write16(hw, SK_REG(port, TX_MFF_CTRL1), MFF_TX_CTRL_DEF);
	skge_write8(hw, SK_REG(port, TX_MFF_CTRL2), MFF_ENA_OP_MD);
1671

1672
	if (jumbo) {
1673
		/* Enable frame flushing if jumbo frames used */
1674
		skge_write16(hw, SK_REG(port, RX_MFF_CTRL1), MFF_ENA_FLUSH);
1675 1676 1677
	} else {
		/* enable timeout timers if normal frames */
		skge_write16(hw, B3_PA_CTRL,
1678
			     (port == 0) ? PA_ENA_TO_TX1 : PA_ENA_TO_TX2);
1679 1680 1681 1682 1683 1684 1685
	}
}

static void genesis_stop(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
S
Stephen Hemminger 已提交
1686
	unsigned retries = 1000;
S
Stephen Hemminger 已提交
1687 1688
	u16 cmd;

1689
	/* Disable Tx and Rx */
S
Stephen Hemminger 已提交
1690 1691 1692
	cmd = xm_read16(hw, port, XM_MMU_CMD);
	cmd &= ~(XM_MMU_ENA_RX | XM_MMU_ENA_TX);
	xm_write16(hw, port, XM_MMU_CMD, cmd);
1693

1694 1695
	genesis_reset(hw, port);

1696 1697 1698 1699 1700
	/* Clear Tx packet arbiter timeout IRQ */
	skge_write16(hw, B3_PA_CTRL,
		     port == 0 ? PA_CLR_TO_TX1 : PA_CLR_TO_TX2);

	/* Reset the MAC */
S
Stephen Hemminger 已提交
1701 1702 1703 1704 1705 1706
	skge_write16(hw, SK_REG(port, TX_MFF_CTRL1), MFF_CLR_MAC_RST);
	do {
		skge_write16(hw, SK_REG(port, TX_MFF_CTRL1), MFF_SET_MAC_RST);
		if (!(skge_read16(hw, SK_REG(port, TX_MFF_CTRL1)) & MFF_SET_MAC_RST))
			break;
	} while (--retries > 0);
1707 1708

	/* For external PHYs there must be special handling */
S
Stephen Hemminger 已提交
1709
	if (hw->phy_type != SK_PHY_XMAC) {
S
Stephen Hemminger 已提交
1710
		u32 reg = skge_read32(hw, B2_GP_IO);
S
Stephen Hemminger 已提交
1711 1712 1713 1714 1715 1716 1717 1718 1719
		if (port == 0) {
			reg |= GP_DIR_0;
			reg &= ~GP_IO_0;
		} else {
			reg |= GP_DIR_2;
			reg &= ~GP_IO_2;
		}
		skge_write32(hw, B2_GP_IO, reg);
		skge_read32(hw, B2_GP_IO);
1720 1721
	}

1722 1723
	xm_write16(hw, port, XM_MMU_CMD,
			xm_read16(hw, port, XM_MMU_CMD)
1724 1725
			& ~(XM_MMU_ENA_RX | XM_MMU_ENA_TX));

1726
	xm_read16(hw, port, XM_MMU_CMD);
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
}


static void genesis_get_stats(struct skge_port *skge, u64 *data)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	int i;
	unsigned long timeout = jiffies + HZ;

1737
	xm_write16(hw, port,
1738 1739 1740
			XM_STAT_CMD, XM_SC_SNP_TXC | XM_SC_SNP_RXC);

	/* wait for update to complete */
1741
	while (xm_read16(hw, port, XM_STAT_CMD)
1742 1743 1744 1745 1746 1747 1748
	       & (XM_SC_SNP_TXC | XM_SC_SNP_RXC)) {
		if (time_after(jiffies, timeout))
			break;
		udelay(10);
	}

	/* special case for 64 bit octet counter */
1749 1750 1751 1752
	data[0] = (u64) xm_read32(hw, port, XM_TXO_OK_HI) << 32
		| xm_read32(hw, port, XM_TXO_OK_LO);
	data[1] = (u64) xm_read32(hw, port, XM_RXO_OK_HI) << 32
		| xm_read32(hw, port, XM_RXO_OK_LO);
1753 1754

	for (i = 2; i < ARRAY_SIZE(skge_stats); i++)
1755
		data[i] = xm_read32(hw, port, skge_stats[i].xmac_offset);
1756 1757 1758 1759
}

static void genesis_mac_intr(struct skge_hw *hw, int port)
{
S
Stephen Hemminger 已提交
1760 1761
	struct net_device *dev = hw->dev[port];
	struct skge_port *skge = netdev_priv(dev);
1762
	u16 status = xm_read16(hw, port, XM_ISRC);
1763

1764 1765
	netif_printk(skge, intr, KERN_DEBUG, skge->netdev,
		     "mac interrupt status 0x%x\n", status);
1766

S
Stephen Hemminger 已提交
1767
	if (hw->phy_type == SK_PHY_XMAC && (status & XM_IS_INP_ASS)) {
1768
		xm_link_down(hw, port);
S
Stephen Hemminger 已提交
1769 1770
		mod_timer(&skge->link_timer, jiffies + 1);
	}
1771

1772
	if (status & XM_IS_TXF_UR) {
1773
		xm_write32(hw, port, XM_MODE, XM_MD_FTF);
S
Stephen Hemminger 已提交
1774
		++dev->stats.tx_fifo_errors;
1775 1776 1777 1778 1779 1780 1781
	}
}

static void genesis_link_up(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
1782
	u16 cmd, msk;
S
Stephen Hemminger 已提交
1783
	u32 mode;
1784

1785
	cmd = xm_read16(hw, port, XM_MMU_CMD);
1786 1787 1788 1789 1790

	/*
	 * enabling pause frame reception is required for 1000BT
	 * because the XMAC is not reset if the link is going down
	 */
1791 1792
	if (skge->flow_status == FLOW_STAT_NONE ||
	    skge->flow_status == FLOW_STAT_LOC_SEND)
1793
		/* Disable Pause Frame Reception */
1794 1795 1796 1797 1798
		cmd |= XM_MMU_IGN_PF;
	else
		/* Enable Pause Frame Reception */
		cmd &= ~XM_MMU_IGN_PF;

1799
	xm_write16(hw, port, XM_MMU_CMD, cmd);
1800

1801
	mode = xm_read32(hw, port, XM_MODE);
1802
	if (skge->flow_status == FLOW_STAT_SYMMETRIC ||
1803
	    skge->flow_status == FLOW_STAT_LOC_SEND) {
1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
		/*
		 * Configure Pause Frame Generation
		 * Use internal and external Pause Frame Generation.
		 * Sending pause frames is edge triggered.
		 * Send a Pause frame with the maximum pause time if
		 * internal oder external FIFO full condition occurs.
		 * Send a zero pause time frame to re-start transmission.
		 */
		/* XM_PAUSE_DA = '010000C28001' (default) */
		/* XM_MAC_PTIME = 0xffff (maximum) */
		/* remember this value is defined in big endian (!) */
1815
		xm_write16(hw, port, XM_MAC_PTIME, 0xffff);
1816 1817

		mode |= XM_PAUSE_MODE;
1818
		skge_write16(hw, SK_REG(port, RX_MFF_CTRL1), MFF_ENA_PAUSE);
1819 1820 1821 1822 1823 1824 1825 1826
	} else {
		/*
		 * disable pause frame generation is required for 1000BT
		 * because the XMAC is not reset if the link is going down
		 */
		/* Disable Pause Mode in Mode Register */
		mode &= ~XM_PAUSE_MODE;

1827
		skge_write16(hw, SK_REG(port, RX_MFF_CTRL1), MFF_DIS_PAUSE);
1828 1829
	}

1830
	xm_write32(hw, port, XM_MODE, mode);
1831

S
Stephen Hemminger 已提交
1832
	/* Turn on detection of Tx underrun */
S
Stephen Hemminger 已提交
1833
	msk = xm_read16(hw, port, XM_IMSK);
S
Stephen Hemminger 已提交
1834
	msk &= ~XM_IS_TXF_UR;
1835
	xm_write16(hw, port, XM_IMSK, msk);
S
Stephen Hemminger 已提交
1836

1837
	xm_read16(hw, port, XM_ISRC);
1838 1839

	/* get MMU Command Reg. */
1840
	cmd = xm_read16(hw, port, XM_MMU_CMD);
S
Stephen Hemminger 已提交
1841
	if (hw->phy_type != SK_PHY_XMAC && skge->duplex == DUPLEX_FULL)
1842 1843
		cmd |= XM_MMU_GMII_FD;

1844 1845 1846 1847
	/*
	 * Workaround BCOM Errata (#10523) for all BCom Phys
	 * Enable Power Management after link up
	 */
S
Stephen Hemminger 已提交
1848 1849 1850 1851 1852 1853
	if (hw->phy_type == SK_PHY_BCOM) {
		xm_phy_write(hw, port, PHY_BCOM_AUX_CTRL,
			     xm_phy_read(hw, port, PHY_BCOM_AUX_CTRL)
			     & ~PHY_B_AC_DIS_PM);
		xm_phy_write(hw, port, PHY_BCOM_INT_MASK, PHY_B_DEF_MSK);
	}
1854 1855

	/* enable Rx/Tx */
1856
	xm_write16(hw, port, XM_MMU_CMD,
1857 1858 1859 1860 1861
			cmd | XM_MMU_ENA_RX | XM_MMU_ENA_TX);
	skge_link_up(skge);
}


1862
static inline void bcom_phy_intr(struct skge_port *skge)
1863 1864 1865
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
1866 1867 1868
	u16 isrc;

	isrc = xm_phy_read(hw, port, PHY_BCOM_INT_STAT);
1869 1870
	netif_printk(skge, intr, KERN_DEBUG, skge->netdev,
		     "phy interrupt status 0x%x\n", isrc);
1871

1872
	if (isrc & PHY_B_IS_PSE)
1873
		pr_err("%s: uncorrectable pair swap error\n",
1874
		       hw->dev[port]->name);
1875 1876 1877 1878

	/* Workaround BCom Errata:
	 *	enable and disable loopback mode if "NO HCD" occurs.
	 */
1879
	if (isrc & PHY_B_IS_NO_HDCL) {
1880 1881
		u16 ctrl = xm_phy_read(hw, port, PHY_BCOM_CTRL);
		xm_phy_write(hw, port, PHY_BCOM_CTRL,
1882
				  ctrl | PHY_CT_LOOP);
1883
		xm_phy_write(hw, port, PHY_BCOM_CTRL,
1884 1885 1886
				  ctrl & ~PHY_CT_LOOP);
	}

1887 1888
	if (isrc & (PHY_B_IS_AN_PR | PHY_B_IS_LST_CHANGE))
		bcom_check_link(hw, port);
1889 1890 1891

}

1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
static int gm_phy_write(struct skge_hw *hw, int port, u16 reg, u16 val)
{
	int i;

	gma_write16(hw, port, GM_SMI_DATA, val);
	gma_write16(hw, port, GM_SMI_CTRL,
			 GM_SMI_CT_PHY_AD(hw->phy_addr) | GM_SMI_CT_REG_AD(reg));
	for (i = 0; i < PHY_RETRIES; i++) {
		udelay(1);

		if (!(gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_BUSY))
			return 0;
	}

1906
	pr_warn("%s: phy write timeout\n", hw->dev[port]->name);
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
	return -EIO;
}

static int __gm_phy_read(struct skge_hw *hw, int port, u16 reg, u16 *val)
{
	int i;

	gma_write16(hw, port, GM_SMI_CTRL,
			 GM_SMI_CT_PHY_AD(hw->phy_addr)
			 | GM_SMI_CT_REG_AD(reg) | GM_SMI_CT_OP_RD);

	for (i = 0; i < PHY_RETRIES; i++) {
		udelay(1);
		if (gma_read16(hw, port, GM_SMI_CTRL) & GM_SMI_CT_RD_VAL)
			goto ready;
	}

	return -ETIMEDOUT;
 ready:
	*val = gma_read16(hw, port, GM_SMI_DATA);
	return 0;
}

static u16 gm_phy_read(struct skge_hw *hw, int port, u16 reg)
{
	u16 v = 0;
	if (__gm_phy_read(hw, port, reg, &v))
1934
		pr_warn("%s: phy read timeout\n", hw->dev[port]->name);
1935 1936 1937
	return v;
}

S
Stephen Hemminger 已提交
1938
/* Marvell Phy Initialization */
1939 1940 1941 1942 1943 1944
static void yukon_init(struct skge_hw *hw, int port)
{
	struct skge_port *skge = netdev_priv(hw->dev[port]);
	u16 ctrl, ct1000, adv;

	if (skge->autoneg == AUTONEG_ENABLE) {
1945
		u16 ectrl = gm_phy_read(hw, port, PHY_MARV_EXT_CTRL);
1946 1947 1948 1949 1950

		ectrl &= ~(PHY_M_EC_M_DSC_MSK | PHY_M_EC_S_DSC_MSK |
			  PHY_M_EC_MAC_S_MSK);
		ectrl |= PHY_M_EC_MAC_S(MAC_TX_CLK_25_MHZ);

1951
		ectrl |= PHY_M_EC_M_DSC(0) | PHY_M_EC_S_DSC(1);
1952

1953
		gm_phy_write(hw, port, PHY_MARV_EXT_CTRL, ectrl);
1954 1955
	}

1956
	ctrl = gm_phy_read(hw, port, PHY_MARV_CTRL);
1957 1958 1959 1960
	if (skge->autoneg == AUTONEG_DISABLE)
		ctrl &= ~PHY_CT_ANE;

	ctrl |= PHY_CT_RESET;
1961
	gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
1962 1963 1964

	ctrl = 0;
	ct1000 = 0;
1965
	adv = PHY_AN_CSMA;
1966 1967

	if (skge->autoneg == AUTONEG_ENABLE) {
1968
		if (hw->copper) {
1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981
			if (skge->advertising & ADVERTISED_1000baseT_Full)
				ct1000 |= PHY_M_1000C_AFD;
			if (skge->advertising & ADVERTISED_1000baseT_Half)
				ct1000 |= PHY_M_1000C_AHD;
			if (skge->advertising & ADVERTISED_100baseT_Full)
				adv |= PHY_M_AN_100_FD;
			if (skge->advertising & ADVERTISED_100baseT_Half)
				adv |= PHY_M_AN_100_HD;
			if (skge->advertising & ADVERTISED_10baseT_Full)
				adv |= PHY_M_AN_10_FD;
			if (skge->advertising & ADVERTISED_10baseT_Half)
				adv |= PHY_M_AN_10_HD;

1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
			/* Set Flow-control capabilities */
			adv |= phy_pause_map[skge->flow_control];
		} else {
			if (skge->advertising & ADVERTISED_1000baseT_Full)
				adv |= PHY_M_AN_1000X_AFD;
			if (skge->advertising & ADVERTISED_1000baseT_Half)
				adv |= PHY_M_AN_1000X_AHD;

			adv |= fiber_pause_map[skge->flow_control];
		}
1992

1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
		/* Restart Auto-negotiation */
		ctrl |= PHY_CT_ANE | PHY_CT_RE_CFG;
	} else {
		/* forced speed/duplex settings */
		ct1000 = PHY_M_1000C_MSE;

		if (skge->duplex == DUPLEX_FULL)
			ctrl |= PHY_CT_DUP_MD;

		switch (skge->speed) {
		case SPEED_1000:
			ctrl |= PHY_CT_SP1000;
			break;
		case SPEED_100:
			ctrl |= PHY_CT_SP100;
			break;
		}

		ctrl |= PHY_CT_RESET;
	}

2014
	gm_phy_write(hw, port, PHY_MARV_1000T_CTRL, ct1000);
2015

2016 2017
	gm_phy_write(hw, port, PHY_MARV_AUNE_ADV, adv);
	gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
2018 2019 2020

	/* Enable phy interrupt on autonegotiation complete (or link up) */
	if (skge->autoneg == AUTONEG_ENABLE)
2021
		gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_MSK);
2022
	else
2023
		gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_DEF_MSK);
2024 2025 2026 2027
}

static void yukon_reset(struct skge_hw *hw, int port)
{
2028 2029 2030 2031 2032
	gm_phy_write(hw, port, PHY_MARV_INT_MASK, 0);/* disable PHY IRQs */
	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);
2033

2034 2035
	gma_write16(hw, port, GM_RX_CTRL,
			 gma_read16(hw, port, GM_RX_CTRL)
2036 2037 2038
			 | GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
}

2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054
/* Apparently, early versions of Yukon-Lite had wrong chip_id? */
static int is_yukon_lite_a0(struct skge_hw *hw)
{
	u32 reg;
	int ret;

	if (hw->chip_id != CHIP_ID_YUKON)
		return 0;

	reg = skge_read32(hw, B2_FAR);
	skge_write8(hw, B2_FAR + 3, 0xff);
	ret = (skge_read8(hw, B2_FAR + 3) != 0);
	skge_write32(hw, B2_FAR, reg);
	return ret;
}

2055 2056 2057 2058 2059 2060 2061 2062 2063
static void yukon_mac_init(struct skge_hw *hw, int port)
{
	struct skge_port *skge = netdev_priv(hw->dev[port]);
	int i;
	u32 reg;
	const u8 *addr = hw->dev[port]->dev_addr;

	/* WA code for COMA mode -- set PHY reset */
	if (hw->chip_id == CHIP_ID_YUKON_LITE &&
2064 2065 2066 2067 2068
	    hw->chip_rev >= CHIP_REV_YU_LITE_A3) {
		reg = skge_read32(hw, B2_GP_IO);
		reg |= GP_DIR_9 | GP_IO_9;
		skge_write32(hw, B2_GP_IO, reg);
	}
2069 2070

	/* hard reset */
2071 2072
	skge_write32(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
	skge_write32(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);
2073 2074 2075

	/* WA code for COMA mode -- clear PHY reset */
	if (hw->chip_id == CHIP_ID_YUKON_LITE &&
2076 2077 2078 2079 2080 2081
	    hw->chip_rev >= CHIP_REV_YU_LITE_A3) {
		reg = skge_read32(hw, B2_GP_IO);
		reg |= GP_DIR_9;
		reg &= ~GP_IO_9;
		skge_write32(hw, B2_GP_IO, reg);
	}
2082 2083 2084 2085

	/* Set hardware config mode */
	reg = GPC_INT_POL_HI | GPC_DIS_FC | GPC_DIS_SLEEP |
		GPC_ENA_XC | GPC_ANEG_ADV_ALL_M | GPC_ENA_PAUSE;
2086
	reg |= hw->copper ? GPC_HWCFG_GMII_COP : GPC_HWCFG_GMII_FIB;
2087 2088

	/* Clear GMC reset */
2089 2090 2091
	skge_write32(hw, SK_REG(port, GPHY_CTRL), reg | GPC_RST_SET);
	skge_write32(hw, SK_REG(port, GPHY_CTRL), reg | GPC_RST_CLR);
	skge_write32(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON | GMC_RST_CLR);
S
Stephen Hemminger 已提交
2092

2093 2094
	if (skge->autoneg == AUTONEG_DISABLE) {
		reg = GM_GPCR_AU_ALL_DIS;
2095 2096
		gma_write16(hw, port, GM_GP_CTRL,
				 gma_read16(hw, port, GM_GP_CTRL) | reg);
2097 2098 2099

		switch (skge->speed) {
		case SPEED_1000:
S
Stephen Hemminger 已提交
2100
			reg &= ~GM_GPCR_SPEED_100;
2101
			reg |= GM_GPCR_SPEED_1000;
S
Stephen Hemminger 已提交
2102
			break;
2103
		case SPEED_100:
S
Stephen Hemminger 已提交
2104
			reg &= ~GM_GPCR_SPEED_1000;
2105
			reg |= GM_GPCR_SPEED_100;
S
Stephen Hemminger 已提交
2106 2107 2108 2109
			break;
		case SPEED_10:
			reg &= ~(GM_GPCR_SPEED_1000 | GM_GPCR_SPEED_100);
			break;
2110 2111 2112 2113 2114 2115
		}

		if (skge->duplex == DUPLEX_FULL)
			reg |= GM_GPCR_DUP_FULL;
	} else
		reg = GM_GPCR_SPEED_1000 | GM_GPCR_SPEED_100 | GM_GPCR_DUP_FULL;
S
Stephen Hemminger 已提交
2116

2117 2118
	switch (skge->flow_control) {
	case FLOW_MODE_NONE:
2119
		skge_write32(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
2120 2121 2122 2123 2124
		reg |= GM_GPCR_FC_TX_DIS | GM_GPCR_FC_RX_DIS | GM_GPCR_AU_FCT_DIS;
		break;
	case FLOW_MODE_LOC_SEND:
		/* disable Rx flow-control */
		reg |= GM_GPCR_FC_RX_DIS | GM_GPCR_AU_FCT_DIS;
2125 2126 2127 2128 2129
		break;
	case FLOW_MODE_SYMMETRIC:
	case FLOW_MODE_SYM_OR_REM:
		/* enable Tx & Rx flow-control */
		break;
2130 2131
	}

2132
	gma_write16(hw, port, GM_GP_CTRL, reg);
2133
	skge_read16(hw, SK_REG(port, GMAC_IRQ_SRC));
2134 2135 2136 2137

	yukon_init(hw, port);

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

	for (i = 0; i < GM_MIB_CNT_SIZE; i++)
2142 2143
		gma_read16(hw, port, GM_MIB_CNT_BASE + 8*i);
	gma_write16(hw, port, GM_PHY_ADDR, reg);
2144 2145

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

	/* receive control reg: unicast + multicast + no FCS  */
2149
	gma_write16(hw, port, GM_RX_CTRL,
2150 2151 2152
			 GM_RXCR_UCF_ENA | GM_RXCR_CRC_DIS | GM_RXCR_MCF_ENA);

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

	/* transmit parameter */
2156
	gma_write16(hw, port, GM_TX_PARAM,
2157 2158 2159 2160
			 TX_JAM_LEN_VAL(TX_JAM_LEN_DEF) |
			 TX_JAM_IPG_VAL(TX_JAM_IPG_DEF) |
			 TX_IPG_JAM_DATA(TX_IPG_JAM_DEF));

2161 2162 2163 2164 2165 2166
	/* configure the Serial Mode Register */
	reg = DATA_BLIND_VAL(DATA_BLIND_DEF)
		| GM_SMOD_VLAN_ENA
		| IPG_DATA_VAL(IPG_DATA_DEF);

	if (hw->dev[port]->mtu > ETH_DATA_LEN)
2167 2168
		reg |= GM_SMOD_JUMBO_ENA;

2169
	gma_write16(hw, port, GM_SERIAL_MODE, reg);
2170 2171

	/* physical address: used for pause frames */
2172
	gma_set_addr(hw, port, GM_SRC_ADDR_1L, addr);
2173
	/* virtual address for data */
2174
	gma_set_addr(hw, port, GM_SRC_ADDR_2L, addr);
2175 2176

	/* enable interrupt mask for counter overflows */
2177 2178 2179
	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);
2180 2181 2182 2183

	/* Initialize Mac Fifo */

	/* Configure Rx MAC FIFO */
2184
	skge_write16(hw, SK_REG(port, RX_GMF_FL_MSK), RX_FF_FL_DEF_MSK);
2185
	reg = GMF_OPER_ON | GMF_RX_F_FL_ON;
2186 2187 2188

	/* disable Rx GMAC FIFO Flush for YUKON-Lite Rev. A0 only */
	if (is_yukon_lite_a0(hw))
2189
		reg &= ~GMF_RX_F_FL_ON;
2190

2191 2192
	skge_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_CLR);
	skge_write16(hw, SK_REG(port, RX_GMF_CTRL_T), reg);
2193 2194 2195 2196 2197 2198
	/*
	 * because Pause Packet Truncation in GMAC is not working
	 * we have to increase the Flush Threshold to 64 bytes
	 * in order to flush pause packets in Rx FIFO on Yukon-1
	 */
	skge_write16(hw, SK_REG(port, RX_GMF_FL_THR), RX_GMF_FL_THR_DEF+1);
2199 2200

	/* Configure Tx MAC FIFO */
2201 2202
	skge_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR);
	skge_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON);
2203 2204
}

2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223
/* Go into power down mode */
static void yukon_suspend(struct skge_hw *hw, int port)
{
	u16 ctrl;

	ctrl = gm_phy_read(hw, port, PHY_MARV_PHY_CTRL);
	ctrl |= PHY_M_PC_POL_R_DIS;
	gm_phy_write(hw, port, PHY_MARV_PHY_CTRL, ctrl);

	ctrl = gm_phy_read(hw, port, PHY_MARV_CTRL);
	ctrl |= PHY_CT_RESET;
	gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);

	/* switch IEEE compatible power down mode on */
	ctrl = gm_phy_read(hw, port, PHY_MARV_CTRL);
	ctrl |= PHY_CT_PDOWN;
	gm_phy_write(hw, port, PHY_MARV_CTRL, ctrl);
}

2224 2225 2226 2227 2228
static void yukon_stop(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;

2229 2230
	skge_write8(hw, SK_REG(port, GMAC_IRQ_MSK), 0);
	yukon_reset(hw, port);
2231

2232 2233
	gma_write16(hw, port, GM_GP_CTRL,
			 gma_read16(hw, port, GM_GP_CTRL)
2234
			 & ~(GM_GPCR_TX_ENA|GM_GPCR_RX_ENA));
2235
	gma_read16(hw, port, GM_GP_CTRL);
2236

2237
	yukon_suspend(hw, port);
2238

2239
	/* set GPHY Control reset */
2240 2241
	skge_write8(hw, SK_REG(port, GPHY_CTRL), GPC_RST_SET);
	skge_write8(hw, SK_REG(port, GMAC_CTRL), GMC_RST_SET);
2242 2243 2244 2245 2246 2247 2248 2249
}

static void yukon_get_stats(struct skge_port *skge, u64 *data)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	int i;

2250 2251 2252 2253
	data[0] = (u64) gma_read32(hw, port, GM_TXO_OK_HI) << 32
		| gma_read32(hw, port, GM_TXO_OK_LO);
	data[1] = (u64) gma_read32(hw, port, GM_RXO_OK_HI) << 32
		| gma_read32(hw, port, GM_RXO_OK_LO);
2254 2255

	for (i = 2; i < ARRAY_SIZE(skge_stats); i++)
2256
		data[i] = gma_read32(hw, port,
2257 2258 2259 2260 2261
					  skge_stats[i].gma_offset);
}

static void yukon_mac_intr(struct skge_hw *hw, int port)
{
2262 2263
	struct net_device *dev = hw->dev[port];
	struct skge_port *skge = netdev_priv(dev);
2264
	u8 status = skge_read8(hw, SK_REG(port, GMAC_IRQ_SRC));
2265

2266 2267
	netif_printk(skge, intr, KERN_DEBUG, skge->netdev,
		     "mac interrupt status 0x%x\n", status);
2268

2269
	if (status & GM_IS_RX_FF_OR) {
S
Stephen Hemminger 已提交
2270
		++dev->stats.rx_fifo_errors;
2271
		skge_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_CLI_RX_FO);
2272
	}
2273

2274
	if (status & GM_IS_TX_FF_UR) {
S
Stephen Hemminger 已提交
2275
		++dev->stats.tx_fifo_errors;
2276
		skge_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_CLI_TX_FU);
2277 2278 2279 2280 2281 2282
	}

}

static u16 yukon_speed(const struct skge_hw *hw, u16 aux)
{
2283
	switch (aux & PHY_M_PS_SPEED_MSK) {
2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
	case PHY_M_PS_SPEED_1000:
		return SPEED_1000;
	case PHY_M_PS_SPEED_100:
		return SPEED_100;
	default:
		return SPEED_10;
	}
}

static void yukon_link_up(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	u16 reg;

	/* Enable Transmit FIFO Underrun */
2300
	skge_write8(hw, SK_REG(port, GMAC_IRQ_MSK), GMAC_DEF_MSK);
2301

2302
	reg = gma_read16(hw, port, GM_GP_CTRL);
2303 2304 2305 2306 2307
	if (skge->duplex == DUPLEX_FULL || skge->autoneg == AUTONEG_ENABLE)
		reg |= GM_GPCR_DUP_FULL;

	/* enable Rx/Tx */
	reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA;
2308
	gma_write16(hw, port, GM_GP_CTRL, reg);
2309

2310
	gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_DEF_MSK);
2311 2312 2313 2314 2315 2316 2317
	skge_link_up(skge);
}

static void yukon_link_down(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
2318
	u16 ctrl;
2319

2320 2321 2322
	ctrl = gma_read16(hw, port, GM_GP_CTRL);
	ctrl &= ~(GM_GPCR_RX_ENA | GM_GPCR_TX_ENA);
	gma_write16(hw, port, GM_GP_CTRL, ctrl);
2323

2324 2325 2326
	if (skge->flow_status == FLOW_STAT_REM_SEND) {
		ctrl = gm_phy_read(hw, port, PHY_MARV_AUNE_ADV);
		ctrl |= PHY_M_AN_ASP;
2327
		/* restore Asymmetric Pause bit */
2328
		gm_phy_write(hw, port, PHY_MARV_AUNE_ADV, ctrl);
2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
	}

	skge_link_down(skge);

	yukon_init(hw, port);
}

static void yukon_phy_intr(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
	const char *reason = NULL;
	u16 istatus, phystat;

2343 2344
	istatus = gm_phy_read(hw, port, PHY_MARV_INT_STAT);
	phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT);
2345

2346 2347
	netif_printk(skge, intr, KERN_DEBUG, skge->netdev,
		     "phy interrupt status 0x%x 0x%x\n", istatus, phystat);
2348 2349

	if (istatus & PHY_M_IS_AN_COMPL) {
2350
		if (gm_phy_read(hw, port, PHY_MARV_AUNE_LP)
2351 2352 2353 2354 2355
		    & PHY_M_AN_RF) {
			reason = "remote fault";
			goto failed;
		}

2356
		if (gm_phy_read(hw, port, PHY_MARV_1000T_STAT) & PHY_B_1000S_MSF) {
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
			reason = "master/slave fault";
			goto failed;
		}

		if (!(phystat & PHY_M_PS_SPDUP_RES)) {
			reason = "speed/duplex";
			goto failed;
		}

		skge->duplex = (phystat & PHY_M_PS_FULL_DUP)
			? DUPLEX_FULL : DUPLEX_HALF;
		skge->speed = yukon_speed(hw, phystat);

		/* We are using IEEE 802.3z/D5.0 Table 37-4 */
		switch (phystat & PHY_M_PS_PAUSE_MSK) {
		case PHY_M_PS_PAUSE_MSK:
2373
			skge->flow_status = FLOW_STAT_SYMMETRIC;
2374 2375
			break;
		case PHY_M_PS_RX_P_EN:
2376
			skge->flow_status = FLOW_STAT_REM_SEND;
2377 2378
			break;
		case PHY_M_PS_TX_P_EN:
2379
			skge->flow_status = FLOW_STAT_LOC_SEND;
2380 2381
			break;
		default:
2382
			skge->flow_status = FLOW_STAT_NONE;
2383 2384
		}

2385
		if (skge->flow_status == FLOW_STAT_NONE ||
2386
		    (skge->speed < SPEED_1000 && skge->duplex == DUPLEX_HALF))
2387
			skge_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_OFF);
2388
		else
2389
			skge_write8(hw, SK_REG(port, GMAC_CTRL), GMC_PAUSE_ON);
2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
		yukon_link_up(skge);
		return;
	}

	if (istatus & PHY_M_IS_LSP_CHANGE)
		skge->speed = yukon_speed(hw, phystat);

	if (istatus & PHY_M_IS_DUP_CHANGE)
		skge->duplex = (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF;
	if (istatus & PHY_M_IS_LST_CHANGE) {
		if (phystat & PHY_M_PS_LINK_UP)
			yukon_link_up(skge);
		else
			yukon_link_down(skge);
	}
	return;
 failed:
2407
	pr_err("%s: autonegotiation failed (%s)\n", skge->netdev->name, reason);
2408 2409 2410 2411

	/* XXX restart autonegotiation? */
}

2412 2413 2414 2415
static void skge_phy_reset(struct skge_port *skge)
{
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
J
Jeff Garzik 已提交
2416
	struct net_device *dev = hw->dev[port];
2417 2418 2419 2420

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

2421
	spin_lock_bh(&hw->phy_lock);
2422
	if (is_genesis(hw)) {
2423 2424 2425 2426 2427 2428
		genesis_reset(hw, port);
		genesis_mac_init(hw, port);
	} else {
		yukon_reset(hw, port);
		yukon_init(hw, port);
	}
2429
	spin_unlock_bh(&hw->phy_lock);
2430

2431
	skge_set_multicast(dev);
2432 2433
}

2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
/* Basic MII support */
static int skge_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
	struct mii_ioctl_data *data = if_mii(ifr);
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int err = -EOPNOTSUPP;

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

2445
	switch (cmd) {
2446 2447 2448 2449 2450 2451
	case SIOCGMIIPHY:
		data->phy_id = hw->phy_addr;

		/* fallthru */
	case SIOCGMIIREG: {
		u16 val = 0;
2452
		spin_lock_bh(&hw->phy_lock);
2453 2454

		if (is_genesis(hw))
2455 2456 2457
			err = __xm_phy_read(hw, skge->port, data->reg_num & 0x1f, &val);
		else
			err = __gm_phy_read(hw, skge->port, data->reg_num & 0x1f, &val);
2458
		spin_unlock_bh(&hw->phy_lock);
2459 2460 2461 2462 2463
		data->val_out = val;
		break;
	}

	case SIOCSMIIREG:
2464
		spin_lock_bh(&hw->phy_lock);
2465
		if (is_genesis(hw))
2466 2467 2468 2469 2470
			err = xm_phy_write(hw, skge->port, data->reg_num & 0x1f,
				   data->val_in);
		else
			err = gm_phy_write(hw, skge->port, data->reg_num & 0x1f,
				   data->val_in);
2471
		spin_unlock_bh(&hw->phy_lock);
2472 2473 2474 2475 2476
		break;
	}
	return err;
}

2477
static void skge_ramset(struct skge_hw *hw, u16 q, u32 start, size_t len)
2478 2479 2480
{
	u32 end;

2481 2482 2483
	start /= 8;
	len /= 8;
	end = start + len - 1;
2484 2485 2486 2487 2488

	skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR);
	skge_write32(hw, RB_ADDR(q, RB_START), start);
	skge_write32(hw, RB_ADDR(q, RB_WP), start);
	skge_write32(hw, RB_ADDR(q, RB_RP), start);
2489
	skge_write32(hw, RB_ADDR(q, RB_END), end);
2490 2491 2492

	if (q == Q_R1 || q == Q_R2) {
		/* Set thresholds on receive queue's */
2493 2494 2495 2496 2497 2498 2499 2500
		skge_write32(hw, RB_ADDR(q, RB_RX_UTPP),
			     start + (2*len)/3);
		skge_write32(hw, RB_ADDR(q, RB_RX_LTPP),
			     start + (len/3));
	} else {
		/* Enable store & forward on Tx queue's because
		 * Tx FIFO is only 4K on Genesis and 1K on Yukon
		 */
2501
		skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD);
2502
	}
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529

	skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD);
}

/* Setup Bus Memory Interface */
static void skge_qset(struct skge_port *skge, u16 q,
		      const struct skge_element *e)
{
	struct skge_hw *hw = skge->hw;
	u32 watermark = 0x600;
	u64 base = skge->dma + (e->desc - skge->mem);

	/* optimization to reduce window on 32bit/33mhz */
	if ((skge_read16(hw, B0_CTST) & (CS_BUS_CLOCK | CS_BUS_SLOT_SZ)) == 0)
		watermark /= 2;

	skge_write32(hw, Q_ADDR(q, Q_CSR), CSR_CLR_RESET);
	skge_write32(hw, Q_ADDR(q, Q_F), watermark);
	skge_write32(hw, Q_ADDR(q, Q_DA_H), (u32)(base >> 32));
	skge_write32(hw, Q_ADDR(q, Q_DA_L), (u32)base);
}

static int skge_up(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
2530
	u32 chunk, ram_addr;
2531 2532 2533
	size_t rx_size, tx_size;
	int err;

2534 2535 2536
	if (!is_valid_ether_addr(dev->dev_addr))
		return -EINVAL;

2537
	netif_info(skge, ifup, skge->netdev, "enabling interface\n");
2538

2539
	if (dev->mtu > RX_BUF_SIZE)
2540
		skge->rx_buf_size = dev->mtu + ETH_HLEN;
2541 2542 2543 2544
	else
		skge->rx_buf_size = RX_BUF_SIZE;


2545 2546 2547 2548 2549 2550 2551
	rx_size = skge->rx_ring.count * sizeof(struct skge_rx_desc);
	tx_size = skge->tx_ring.count * sizeof(struct skge_tx_desc);
	skge->mem_size = tx_size + rx_size;
	skge->mem = pci_alloc_consistent(hw->pdev, skge->mem_size, &skge->dma);
	if (!skge->mem)
		return -ENOMEM;

2552 2553
	BUG_ON(skge->dma & 7);

S
Stephen Hemminger 已提交
2554
	if (upper_32_bits(skge->dma) != upper_32_bits(skge->dma + skge->mem_size)) {
S
Stephen Hemminger 已提交
2555
		dev_err(&hw->pdev->dev, "pci_alloc_consistent region crosses 4G boundary\n");
2556 2557 2558 2559
		err = -EINVAL;
		goto free_pci_mem;
	}

2560 2561
	memset(skge->mem, 0, skge->mem_size);

2562 2563
	err = skge_ring_alloc(&skge->rx_ring, skge->mem, skge->dma);
	if (err)
2564 2565
		goto free_pci_mem;

2566
	err = skge_rx_fill(dev);
2567
	if (err)
2568 2569
		goto free_rx_ring;

2570 2571 2572
	err = skge_ring_alloc(&skge->tx_ring, skge->mem + rx_size,
			      skge->dma + rx_size);
	if (err)
2573 2574
		goto free_rx_ring;

2575 2576 2577 2578 2579 2580 2581 2582 2583 2584
	if (hw->ports == 1) {
		err = request_irq(hw->pdev->irq, skge_intr, IRQF_SHARED,
				  dev->name, hw);
		if (err) {
			netdev_err(dev, "Unable to allocate interrupt %d error: %d\n",
				   hw->pdev->irq, err);
			goto free_tx_ring;
		}
	}

S
Stephen Hemminger 已提交
2585
	/* Initialize MAC */
2586
	netif_carrier_off(dev);
2587
	spin_lock_bh(&hw->phy_lock);
2588
	if (is_genesis(hw))
2589 2590 2591
		genesis_mac_init(hw, port);
	else
		yukon_mac_init(hw, port);
2592
	spin_unlock_bh(&hw->phy_lock);
2593

2594 2595
	/* Configure RAMbuffers - equally between ports and tx/rx */
	chunk = (hw->ram_size  - hw->ram_offset) / (hw->ports * 2);
2596
	ram_addr = hw->ram_offset + 2 * chunk * port;
2597

2598
	skge_ramset(hw, rxqaddr[port], ram_addr, chunk);
2599
	skge_qset(skge, rxqaddr[port], skge->rx_ring.to_clean);
2600

2601
	BUG_ON(skge->tx_ring.to_use != skge->tx_ring.to_clean);
2602
	skge_ramset(hw, txqaddr[port], ram_addr+chunk, chunk);
2603 2604 2605 2606 2607
	skge_qset(skge, txqaddr[port], skge->tx_ring.to_use);

	/* Start receiver BMU */
	wmb();
	skge_write8(hw, Q_ADDR(rxqaddr[port], Q_CSR), CSR_START | CSR_IRQ_CL_F);
2608
	skge_led(skge, LED_MODE_ON);
2609

2610 2611 2612
	spin_lock_irq(&hw->hw_lock);
	hw->intr_mask |= portmask[port];
	skge_write32(hw, B0_IMSK, hw->intr_mask);
2613
	skge_read32(hw, B0_IMSK);
2614 2615
	spin_unlock_irq(&hw->hw_lock);

2616
	napi_enable(&skge->napi);
2617 2618 2619

	skge_set_multicast(dev);

2620 2621
	return 0;

2622 2623
 free_tx_ring:
	kfree(skge->tx_ring.start);
2624 2625 2626 2627 2628
 free_rx_ring:
	skge_rx_clean(skge);
	kfree(skge->rx_ring.start);
 free_pci_mem:
	pci_free_consistent(hw->pdev, skge->mem_size, skge->mem, skge->dma);
2629
	skge->mem = NULL;
2630 2631 2632 2633

	return err;
}

2634 2635 2636 2637 2638 2639 2640 2641 2642
/* stop receiver */
static void skge_rx_stop(struct skge_hw *hw, int port)
{
	skge_write8(hw, Q_ADDR(rxqaddr[port], Q_CSR), CSR_STOP);
	skge_write32(hw, RB_ADDR(port ? Q_R2 : Q_R1, RB_CTRL),
		     RB_RST_SET|RB_DIS_OP_MD);
	skge_write32(hw, Q_ADDR(rxqaddr[port], Q_CSR), CSR_SET_RESET);
}

2643 2644 2645 2646 2647 2648
static int skge_down(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;

2649 2650 2651
	if (skge->mem == NULL)
		return 0;

2652
	netif_info(skge, ifdown, skge->netdev, "disabling interface\n");
2653

2654
	netif_tx_disable(dev);
S
Stephen Hemminger 已提交
2655

2656
	if (is_genesis(hw) && hw->phy_type == SK_PHY_XMAC)
2657
		del_timer_sync(&skge->link_timer);
2658

2659
	napi_disable(&skge->napi);
S
Stephen Hemminger 已提交
2660
	netif_carrier_off(dev);
2661 2662 2663

	spin_lock_irq(&hw->hw_lock);
	hw->intr_mask &= ~portmask[port];
2664 2665
	skge_write32(hw, B0_IMSK, (hw->ports == 1) ? 0 : hw->intr_mask);
	skge_read32(hw, B0_IMSK);
2666 2667
	spin_unlock_irq(&hw->hw_lock);

2668 2669 2670
	if (hw->ports == 1)
		free_irq(hw->pdev->irq, hw);

2671
	skge_write8(skge->hw, SK_REG(skge->port, LNK_LED_REG), LED_REG_OFF);
2672
	if (is_genesis(hw))
2673 2674 2675 2676
		genesis_stop(skge);
	else
		yukon_stop(skge);

2677 2678 2679 2680 2681 2682 2683
	/* Stop transmitter */
	skge_write8(hw, Q_ADDR(txqaddr[port], Q_CSR), CSR_STOP);
	skge_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL),
		     RB_RST_SET|RB_DIS_OP_MD);


	/* Disable Force Sync bit and Enable Alloc bit */
2684
	skge_write8(hw, SK_REG(port, TXA_CTRL),
2685 2686 2687
		    TXA_DIS_FSYNC | TXA_DIS_ALLOC | TXA_STOP_RC);

	/* Stop Interval Timer and Limit Counter of Tx Arbiter */
2688 2689
	skge_write32(hw, SK_REG(port, TXA_ITI_INI), 0L);
	skge_write32(hw, SK_REG(port, TXA_LIM_INI), 0L);
2690 2691 2692 2693 2694 2695 2696

	/* Reset PCI FIFO */
	skge_write32(hw, Q_ADDR(txqaddr[port], Q_CSR), CSR_SET_RESET);
	skge_write32(hw, RB_ADDR(txqaddr[port], RB_CTRL), RB_RST_SET);

	/* Reset the RAM Buffer async Tx queue */
	skge_write8(hw, RB_ADDR(port == 0 ? Q_XA1 : Q_XA2, RB_CTRL), RB_RST_SET);
2697 2698

	skge_rx_stop(hw, port);
2699

2700
	if (is_genesis(hw)) {
2701 2702
		skge_write8(hw, SK_REG(port, TX_MFF_CTRL2), MFF_RST_SET);
		skge_write8(hw, SK_REG(port, RX_MFF_CTRL2), MFF_RST_SET);
2703
	} else {
2704 2705
		skge_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET);
		skge_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_SET);
2706 2707
	}

2708
	skge_led(skge, LED_MODE_OFF);
2709

S
Stephen Hemminger 已提交
2710
	netif_tx_lock_bh(dev);
2711
	skge_tx_clean(dev);
S
Stephen Hemminger 已提交
2712 2713
	netif_tx_unlock_bh(dev);

2714 2715 2716 2717 2718
	skge_rx_clean(skge);

	kfree(skge->rx_ring.start);
	kfree(skge->tx_ring.start);
	pci_free_consistent(hw->pdev, skge->mem_size, skge->mem, skge->dma);
2719
	skge->mem = NULL;
2720 2721 2722
	return 0;
}

2723 2724
static inline int skge_avail(const struct skge_ring *ring)
{
2725
	smp_mb();
2726 2727 2728 2729
	return ((ring->to_clean > ring->to_use) ? 0 : ring->count)
		+ (ring->to_clean - ring->to_use) - 1;
}

2730 2731
static netdev_tx_t skge_xmit_frame(struct sk_buff *skb,
				   struct net_device *dev)
2732 2733 2734 2735 2736 2737 2738
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	struct skge_element *e;
	struct skge_tx_desc *td;
	int i;
	u32 control, len;
S
stephen hemminger 已提交
2739
	dma_addr_t map;
2740

2741
	if (skb_padto(skb, ETH_ZLEN))
2742 2743
		return NETDEV_TX_OK;

2744
	if (unlikely(skge_avail(&skge->tx_ring) < skb_shinfo(skb)->nr_frags + 1))
2745 2746
		return NETDEV_TX_BUSY;

2747
	e = skge->tx_ring.to_use;
2748
	td = e->desc;
2749
	BUG_ON(td->control & BMU_OWN);
2750 2751 2752
	e->skb = skb;
	len = skb_headlen(skb);
	map = pci_map_single(hw->pdev, skb->data, len, PCI_DMA_TODEVICE);
S
stephen hemminger 已提交
2753 2754 2755
	if (pci_dma_mapping_error(hw->pdev, map))
		goto mapping_error;

2756 2757
	dma_unmap_addr_set(e, mapaddr, map);
	dma_unmap_len_set(e, maplen, len);
2758

S
Stephen Hemminger 已提交
2759 2760
	td->dma_lo = lower_32_bits(map);
	td->dma_hi = upper_32_bits(map);
2761

2762
	if (skb->ip_summed == CHECKSUM_PARTIAL) {
2763
		const int offset = skb_checksum_start_offset(skb);
2764 2765 2766 2767

		/* This seems backwards, but it is what the sk98lin
		 * does.  Looks like hardware is wrong?
		 */
2768
		if (ipip_hdr(skb)->protocol == IPPROTO_UDP &&
2769
		    hw->chip_rev == 0 && hw->chip_id == CHIP_ID_YUKON)
2770 2771 2772 2773 2774 2775
			control = BMU_TCP_CHECK;
		else
			control = BMU_UDP_CHECK;

		td->csum_offs = 0;
		td->csum_start = offset;
A
Al Viro 已提交
2776
		td->csum_write = offset + skb->csum_offset;
2777 2778 2779 2780
	} else
		control = BMU_CHECK;

	if (!skb_shinfo(skb)->nr_frags) /* single buffer i.e. no fragments */
2781
		control |= BMU_EOF | BMU_IRQ_EOF;
2782 2783 2784 2785 2786
	else {
		struct skge_tx_desc *tf = td;

		control |= BMU_STFWD;
		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
E
Eric Dumazet 已提交
2787
			const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2788

2789
			map = skb_frag_dma_map(&hw->pdev->dev, frag, 0,
E
Eric Dumazet 已提交
2790
					       skb_frag_size(frag), DMA_TO_DEVICE);
S
stephen hemminger 已提交
2791 2792
			if (dma_mapping_error(&hw->pdev->dev, map))
				goto mapping_unwind;
2793 2794

			e = e->next;
2795
			e->skb = skb;
2796
			tf = e->desc;
2797 2798
			BUG_ON(tf->control & BMU_OWN);

S
Stephen Hemminger 已提交
2799 2800
			tf->dma_lo = lower_32_bits(map);
			tf->dma_hi = upper_32_bits(map);
2801
			dma_unmap_addr_set(e, mapaddr, map);
E
Eric Dumazet 已提交
2802
			dma_unmap_len_set(e, maplen, skb_frag_size(frag));
2803

E
Eric Dumazet 已提交
2804
			tf->control = BMU_OWN | BMU_SW | control | skb_frag_size(frag);
2805 2806 2807 2808 2809 2810 2811 2812
		}
		tf->control |= BMU_EOF | BMU_IRQ_EOF;
	}
	/* Make sure all the descriptors written */
	wmb();
	td->control = BMU_OWN | BMU_SW | BMU_STF | control | len;
	wmb();

2813 2814
	netdev_sent_queue(dev, skb->len);

2815 2816
	skge_write8(hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_START);

2817 2818 2819
	netif_printk(skge, tx_queued, KERN_DEBUG, skge->netdev,
		     "tx queued, slot %td, len %d\n",
		     e - skge->tx_ring.start, skb->len);
2820

2821
	skge->tx_ring.to_use = e->next;
2822 2823
	smp_wmb();

2824
	if (skge_avail(&skge->tx_ring) <= TX_LOW_WATER) {
2825
		netdev_dbg(dev, "transmit queue full\n");
2826 2827 2828 2829
		netif_stop_queue(dev);
	}

	return NETDEV_TX_OK;
S
stephen hemminger 已提交
2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847

mapping_unwind:
	e = skge->tx_ring.to_use;
	pci_unmap_single(hw->pdev,
			 dma_unmap_addr(e, mapaddr),
			 dma_unmap_len(e, maplen),
			 PCI_DMA_TODEVICE);
	while (i-- > 0) {
		e = e->next;
		pci_unmap_page(hw->pdev,
			       dma_unmap_addr(e, mapaddr),
			       dma_unmap_len(e, maplen),
			       PCI_DMA_TODEVICE);
	}

mapping_error:
	if (net_ratelimit())
		dev_warn(&hw->pdev->dev, "%s: tx mapping error\n", dev->name);
2848
	dev_kfree_skb_any(skb);
S
stephen hemminger 已提交
2849
	return NETDEV_TX_OK;
2850 2851
}

2852 2853

/* Free resources associated with this reing element */
2854 2855
static inline void skge_tx_unmap(struct pci_dev *pdev, struct skge_element *e,
				 u32 control)
2856
{
2857 2858
	/* skb header vs. fragment */
	if (control & BMU_STF)
2859 2860
		pci_unmap_single(pdev, dma_unmap_addr(e, mapaddr),
				 dma_unmap_len(e, maplen),
2861 2862
				 PCI_DMA_TODEVICE);
	else
2863 2864
		pci_unmap_page(pdev, dma_unmap_addr(e, mapaddr),
			       dma_unmap_len(e, maplen),
2865
			       PCI_DMA_TODEVICE);
2866 2867
}

2868
/* Free all buffers in transmit ring */
2869
static void skge_tx_clean(struct net_device *dev)
2870
{
2871
	struct skge_port *skge = netdev_priv(dev);
2872
	struct skge_element *e;
2873

2874 2875
	for (e = skge->tx_ring.to_clean; e != skge->tx_ring.to_use; e = e->next) {
		struct skge_tx_desc *td = e->desc;
2876 2877 2878 2879 2880

		skge_tx_unmap(skge->hw->pdev, e, td->control);

		if (td->control & BMU_EOF)
			dev_kfree_skb(e->skb);
2881 2882 2883
		td->control = 0;
	}

2884
	netdev_reset_queue(dev);
2885
	skge->tx_ring.to_clean = e;
2886 2887 2888 2889 2890 2891
}

static void skge_tx_timeout(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);

2892
	netif_printk(skge, timer, KERN_DEBUG, skge->netdev, "tx timeout\n");
2893 2894

	skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_STOP);
2895
	skge_tx_clean(dev);
2896
	netif_wake_queue(dev);
2897 2898 2899 2900
}

static int skge_change_mtu(struct net_device *dev, int new_mtu)
{
2901
	int err;
2902

2903 2904 2905 2906 2907
	if (!netif_running(dev)) {
		dev->mtu = new_mtu;
		return 0;
	}

S
Stephen Hemminger 已提交
2908
	skge_down(dev);
2909

2910
	dev->mtu = new_mtu;
2911

S
Stephen Hemminger 已提交
2912
	err = skge_up(dev);
2913 2914
	if (err)
		dev_close(dev);
2915 2916 2917 2918

	return err;
}

2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929
static const u8 pause_mc_addr[ETH_ALEN] = { 0x1, 0x80, 0xc2, 0x0, 0x0, 0x1 };

static void genesis_add_filter(u8 filter[8], const u8 *addr)
{
	u32 crc, bit;

	crc = ether_crc_le(ETH_ALEN, addr);
	bit = ~crc & 0x3f;
	filter[bit/8] |= 1 << (bit%8);
}

2930 2931 2932 2933 2934
static void genesis_set_multicast(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
2935
	struct netdev_hw_addr *ha;
2936 2937 2938
	u32 mode;
	u8 filter[8];

2939
	mode = xm_read32(hw, port, XM_MODE);
2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
	mode |= XM_MD_ENA_HASH;
	if (dev->flags & IFF_PROMISC)
		mode |= XM_MD_ENA_PROM;
	else
		mode &= ~XM_MD_ENA_PROM;

	if (dev->flags & IFF_ALLMULTI)
		memset(filter, 0xff, sizeof(filter));
	else {
		memset(filter, 0, sizeof(filter));
2950

2951 2952
		if (skge->flow_status == FLOW_STAT_REM_SEND ||
		    skge->flow_status == FLOW_STAT_SYMMETRIC)
2953 2954
			genesis_add_filter(filter, pause_mc_addr);

2955 2956
		netdev_for_each_mc_addr(ha, dev)
			genesis_add_filter(filter, ha->addr);
2957 2958
	}

2959
	xm_write32(hw, port, XM_MODE, mode);
2960
	xm_outhash(hw, port, XM_HSM, filter);
2961 2962
}

2963 2964 2965 2966 2967 2968
static void yukon_add_filter(u8 filter[8], const u8 *addr)
{
	 u32 bit = ether_crc(ETH_ALEN, addr) & 0x3f;
	 filter[bit/8] |= 1 << (bit%8);
}

2969 2970 2971 2972 2973
static void yukon_set_multicast(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);
	struct skge_hw *hw = skge->hw;
	int port = skge->port;
2974
	struct netdev_hw_addr *ha;
2975 2976
	int rx_pause = (skge->flow_status == FLOW_STAT_REM_SEND ||
			skge->flow_status == FLOW_STAT_SYMMETRIC);
2977 2978 2979 2980 2981
	u16 reg;
	u8 filter[8];

	memset(filter, 0, sizeof(filter));

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

S
Stephen Hemminger 已提交
2985
	if (dev->flags & IFF_PROMISC) 		/* promiscuous */
2986 2987 2988
		reg &= ~(GM_RXCR_UCF_ENA | GM_RXCR_MCF_ENA);
	else if (dev->flags & IFF_ALLMULTI)	/* all multicast */
		memset(filter, 0xff, sizeof(filter));
2989
	else if (netdev_mc_empty(dev) && !rx_pause)/* no multicast */
2990 2991 2992 2993
		reg &= ~GM_RXCR_MCF_ENA;
	else {
		reg |= GM_RXCR_MCF_ENA;

2994 2995 2996
		if (rx_pause)
			yukon_add_filter(filter, pause_mc_addr);

2997 2998
		netdev_for_each_mc_addr(ha, dev)
			yukon_add_filter(filter, ha->addr);
2999 3000 3001
	}


3002
	gma_write16(hw, port, GM_MC_ADDR_H1,
3003
			 (u16)filter[0] | ((u16)filter[1] << 8));
3004
	gma_write16(hw, port, GM_MC_ADDR_H2,
3005
			 (u16)filter[2] | ((u16)filter[3] << 8));
3006
	gma_write16(hw, port, GM_MC_ADDR_H3,
3007
			 (u16)filter[4] | ((u16)filter[5] << 8));
3008
	gma_write16(hw, port, GM_MC_ADDR_H4,
3009 3010
			 (u16)filter[6] | ((u16)filter[7] << 8));

3011
	gma_write16(hw, port, GM_RX_CTRL, reg);
3012 3013
}

3014 3015
static inline u16 phy_length(const struct skge_hw *hw, u32 status)
{
3016
	if (is_genesis(hw))
3017 3018 3019 3020 3021
		return status >> XMR_FS_LEN_SHIFT;
	else
		return status >> GMR_FS_LEN_SHIFT;
}

3022 3023
static inline int bad_phy_status(const struct skge_hw *hw, u32 status)
{
3024
	if (is_genesis(hw))
3025 3026 3027 3028 3029 3030
		return (status & (XMR_FS_ERR | XMR_FS_2L_VLAN)) != 0;
	else
		return (status & GMR_FS_ANY_ERR) ||
			(status & GMR_FS_RX_OK) == 0;
}

3031 3032 3033 3034
static void skge_set_multicast(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);

3035
	if (is_genesis(skge->hw))
3036 3037 3038 3039 3040 3041
		genesis_set_multicast(dev);
	else
		yukon_set_multicast(dev);

}

3042 3043 3044 3045

/* Get receive buffer from descriptor.
 * Handles copy of small buffers and reallocation failures
 */
3046 3047 3048
static struct sk_buff *skge_rx_get(struct net_device *dev,
				   struct skge_element *e,
				   u32 control, u32 status, u16 csum)
3049
{
3050
	struct skge_port *skge = netdev_priv(dev);
3051 3052 3053
	struct sk_buff *skb;
	u16 len = control & BMU_BBC;

3054 3055 3056
	netif_printk(skge, rx_status, KERN_DEBUG, skge->netdev,
		     "rx slot %td status 0x%x len %d\n",
		     e - skge->rx_ring.start, status, len);
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068

	if (len > skge->rx_buf_size)
		goto error;

	if ((control & (BMU_EOF|BMU_STF)) != (BMU_STF|BMU_EOF))
		goto error;

	if (bad_phy_status(skge->hw, status))
		goto error;

	if (phy_length(skge->hw, status) != len)
		goto error;
3069 3070

	if (len < RX_COPY_THRESHOLD) {
3071
		skb = netdev_alloc_skb_ip_align(dev, len);
3072 3073
		if (!skb)
			goto resubmit;
3074 3075

		pci_dma_sync_single_for_cpu(skge->hw->pdev,
3076
					    dma_unmap_addr(e, mapaddr),
3077 3078
					    dma_unmap_len(e, maplen),
					    PCI_DMA_FROMDEVICE);
3079
		skb_copy_from_linear_data(e->skb, skb->data, len);
3080
		pci_dma_sync_single_for_device(skge->hw->pdev,
3081
					       dma_unmap_addr(e, mapaddr),
3082 3083
					       dma_unmap_len(e, maplen),
					       PCI_DMA_FROMDEVICE);
3084 3085
		skge_rx_reuse(e, skge->rx_buf_size);
	} else {
3086
		struct skge_element ee;
3087
		struct sk_buff *nskb;
3088 3089

		nskb = netdev_alloc_skb_ip_align(dev, skge->rx_buf_size);
3090 3091
		if (!nskb)
			goto resubmit;
3092

3093 3094 3095
		ee = *e;

		skb = ee.skb;
M
Mikulas Patocka 已提交
3096 3097
		prefetch(skb->data);

S
stephen hemminger 已提交
3098 3099 3100 3101 3102
		if (skge_rx_setup(skge, e, nskb, skge->rx_buf_size) < 0) {
			dev_kfree_skb(nskb);
			goto resubmit;
		}

3103
		pci_unmap_single(skge->hw->pdev,
3104 3105
				 dma_unmap_addr(&ee, mapaddr),
				 dma_unmap_len(&ee, maplen),
3106
				 PCI_DMA_FROMDEVICE);
3107
	}
3108 3109

	skb_put(skb, len);
M
Michał Mirosław 已提交
3110 3111

	if (dev->features & NETIF_F_RXCSUM) {
3112
		skb->csum = csum;
3113
		skb->ip_summed = CHECKSUM_COMPLETE;
3114 3115
	}

3116
	skb->protocol = eth_type_trans(skb, dev);
3117 3118 3119 3120

	return skb;
error:

3121 3122 3123
	netif_printk(skge, rx_err, KERN_DEBUG, skge->netdev,
		     "rx err, slot %td control 0x%x status 0x%x\n",
		     e - skge->rx_ring.start, control, status);
3124

3125
	if (is_genesis(skge->hw)) {
3126
		if (status & (XMR_FS_RUNT|XMR_FS_LNG_ERR))
S
Stephen Hemminger 已提交
3127
			dev->stats.rx_length_errors++;
3128
		if (status & XMR_FS_FRA_ERR)
S
Stephen Hemminger 已提交
3129
			dev->stats.rx_frame_errors++;
3130
		if (status & XMR_FS_FCS_ERR)
S
Stephen Hemminger 已提交
3131
			dev->stats.rx_crc_errors++;
3132 3133
	} else {
		if (status & (GMR_FS_LONG_ERR|GMR_FS_UN_SIZE))
S
Stephen Hemminger 已提交
3134
			dev->stats.rx_length_errors++;
3135
		if (status & GMR_FS_FRAGMENT)
S
Stephen Hemminger 已提交
3136
			dev->stats.rx_frame_errors++;
3137
		if (status & GMR_FS_CRC_ERR)
S
Stephen Hemminger 已提交
3138
			dev->stats.rx_crc_errors++;
3139 3140 3141 3142 3143
	}

resubmit:
	skge_rx_reuse(e, skge->rx_buf_size);
	return NULL;
3144 3145
}

3146
/* Free all buffers in Tx ring which are no longer owned by device */
3147
static void skge_tx_done(struct net_device *dev)
3148
{
3149
	struct skge_port *skge = netdev_priv(dev);
3150
	struct skge_ring *ring = &skge->tx_ring;
3151
	struct skge_element *e;
3152
	unsigned int bytes_compl = 0, pkts_compl = 0;
3153

3154
	skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_IRQ_CL_F);
3155

3156
	for (e = ring->to_clean; e != ring->to_use; e = e->next) {
3157
		u32 control = ((const struct skge_tx_desc *) e->desc)->control;
3158

3159
		if (control & BMU_OWN)
3160 3161
			break;

3162 3163 3164 3165 3166 3167 3168 3169 3170 3171
		skge_tx_unmap(skge->hw->pdev, e, control);

		if (control & BMU_EOF) {
			netif_printk(skge, tx_done, KERN_DEBUG, skge->netdev,
				     "tx done slot %td\n",
				     e - skge->tx_ring.start);

			pkts_compl++;
			bytes_compl += e->skb->len;

3172
			dev_consume_skb_any(e->skb);
3173
		}
3174
	}
3175
	netdev_completed_queue(dev, pkts_compl, bytes_compl);
3176
	skge->tx_ring.to_clean = e;
3177

3178 3179 3180 3181 3182 3183 3184 3185 3186
	/* Can run lockless until we need to synchronize to restart queue. */
	smp_mb();

	if (unlikely(netif_queue_stopped(dev) &&
		     skge_avail(&skge->tx_ring) > TX_LOW_WATER)) {
		netif_tx_lock(dev);
		if (unlikely(netif_queue_stopped(dev) &&
			     skge_avail(&skge->tx_ring) > TX_LOW_WATER)) {
			netif_wake_queue(dev);
3187

3188 3189 3190
		}
		netif_tx_unlock(dev);
	}
3191
}
3192

3193
static int skge_poll(struct napi_struct *napi, int to_do)
3194
{
3195 3196
	struct skge_port *skge = container_of(napi, struct skge_port, napi);
	struct net_device *dev = skge->netdev;
3197 3198 3199
	struct skge_hw *hw = skge->hw;
	struct skge_ring *ring = &skge->rx_ring;
	struct skge_element *e;
3200 3201
	int work_done = 0;

3202 3203 3204 3205
	skge_tx_done(dev);

	skge_write8(hw, Q_ADDR(rxqaddr[skge->port], Q_CSR), CSR_IRQ_CL_F);

3206
	for (e = ring->to_clean; prefetch(e->next), work_done < to_do; e = e->next) {
3207
		struct skge_rx_desc *rd = e->desc;
3208
		struct sk_buff *skb;
3209
		u32 control;
3210 3211 3212 3213 3214 3215

		rmb();
		control = rd->control;
		if (control & BMU_OWN)
			break;

3216
		skb = skge_rx_get(dev, e, control, rd->status, rd->csum2);
3217
		if (likely(skb)) {
E
Eric Dumazet 已提交
3218
			napi_gro_receive(napi, skb);
3219
			++work_done;
3220
		}
3221 3222 3223 3224 3225
	}
	ring->to_clean = e;

	/* restart receiver */
	wmb();
S
Stephen Hemminger 已提交
3226
	skge_write8(hw, Q_ADDR(rxqaddr[skge->port], Q_CSR), CSR_START);
3227

3228
	if (work_done < to_do) {
M
Marin Mitov 已提交
3229
		unsigned long flags;
3230

3231
		napi_gro_flush(napi, false);
M
Marin Mitov 已提交
3232
		spin_lock_irqsave(&hw->hw_lock, flags);
3233
		__napi_complete(napi);
3234 3235 3236
		hw->intr_mask |= napimask[skge->port];
		skge_write32(hw, B0_IMSK, hw->intr_mask);
		skge_read32(hw, B0_IMSK);
M
Marin Mitov 已提交
3237
		spin_unlock_irqrestore(&hw->hw_lock, flags);
3238
	}
3239

3240
	return work_done;
3241 3242
}

3243 3244 3245
/* Parity errors seem to happen when Genesis is connected to a switch
 * with no other ports present. Heartbeat error??
 */
3246 3247
static void skge_mac_parity(struct skge_hw *hw, int port)
{
3248 3249
	struct net_device *dev = hw->dev[port];

S
Stephen Hemminger 已提交
3250
	++dev->stats.tx_heartbeat_errors;
3251

3252
	if (is_genesis(hw))
3253
		skge_write16(hw, SK_REG(port, TX_MFF_CTRL1),
3254 3255 3256
			     MFF_CLR_PERR);
	else
		/* HW-Bug #8: cleared by GMF_CLI_TX_FC instead of GMF_CLI_TX_PE */
3257
		skge_write8(hw, SK_REG(port, TX_GMF_CTRL_T),
3258
			    (hw->chip_id == CHIP_ID_YUKON && hw->chip_rev == 0)
3259 3260 3261 3262 3263
			    ? GMF_CLI_TX_FC : GMF_CLI_TX_PE);
}

static void skge_mac_intr(struct skge_hw *hw, int port)
{
3264
	if (is_genesis(hw))
3265 3266 3267 3268 3269 3270 3271 3272
		genesis_mac_intr(hw, port);
	else
		yukon_mac_intr(hw, port);
}

/* Handle device specific framing and timeout interrupts */
static void skge_error_irq(struct skge_hw *hw)
{
S
Stephen Hemminger 已提交
3273
	struct pci_dev *pdev = hw->pdev;
3274 3275
	u32 hwstatus = skge_read32(hw, B0_HWE_ISRC);

3276
	if (is_genesis(hw)) {
3277 3278
		/* clear xmac errors */
		if (hwstatus & (IS_NO_STAT_M1|IS_NO_TIST_M1))
3279
			skge_write16(hw, RX_MFF_CTRL1, MFF_CLR_INSTAT);
3280
		if (hwstatus & (IS_NO_STAT_M2|IS_NO_TIST_M2))
3281
			skge_write16(hw, RX_MFF_CTRL2, MFF_CLR_INSTAT);
3282 3283 3284 3285 3286 3287 3288
	} else {
		/* Timestamp (unused) overflow */
		if (hwstatus & IS_IRQ_TIST_OV)
			skge_write8(hw, GMAC_TI_ST_CTRL, GMT_ST_CLR_IRQ);
	}

	if (hwstatus & IS_RAM_RD_PAR) {
S
Stephen Hemminger 已提交
3289
		dev_err(&pdev->dev, "Ram read data parity error\n");
3290 3291 3292 3293
		skge_write16(hw, B3_RI_CTRL, RI_CLR_RD_PERR);
	}

	if (hwstatus & IS_RAM_WR_PAR) {
S
Stephen Hemminger 已提交
3294
		dev_err(&pdev->dev, "Ram write data parity error\n");
3295 3296 3297 3298 3299 3300 3301 3302 3303
		skge_write16(hw, B3_RI_CTRL, RI_CLR_WR_PERR);
	}

	if (hwstatus & IS_M1_PAR_ERR)
		skge_mac_parity(hw, 0);

	if (hwstatus & IS_M2_PAR_ERR)
		skge_mac_parity(hw, 1);

3304
	if (hwstatus & IS_R1_PAR_ERR) {
S
Stephen Hemminger 已提交
3305 3306
		dev_err(&pdev->dev, "%s: receive queue parity error\n",
			hw->dev[0]->name);
3307
		skge_write32(hw, B0_R1_CSR, CSR_IRQ_CL_P);
3308
	}
3309

3310
	if (hwstatus & IS_R2_PAR_ERR) {
S
Stephen Hemminger 已提交
3311 3312
		dev_err(&pdev->dev, "%s: receive queue parity error\n",
			hw->dev[1]->name);
3313
		skge_write32(hw, B0_R2_CSR, CSR_IRQ_CL_P);
3314
	}
3315 3316

	if (hwstatus & (IS_IRQ_MST_ERR|IS_IRQ_STAT)) {
3317 3318
		u16 pci_status, pci_cmd;

S
Stephen Hemminger 已提交
3319 3320
		pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
		pci_read_config_word(pdev, PCI_STATUS, &pci_status);
3321

S
Stephen Hemminger 已提交
3322 3323
		dev_err(&pdev->dev, "PCI error cmd=%#x status=%#x\n",
			pci_cmd, pci_status);
3324 3325 3326 3327

		/* Write the error bits back to clear them. */
		pci_status &= PCI_STATUS_ERROR_BITS;
		skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
S
Stephen Hemminger 已提交
3328
		pci_write_config_word(pdev, PCI_COMMAND,
3329
				      pci_cmd | PCI_COMMAND_SERR | PCI_COMMAND_PARITY);
S
Stephen Hemminger 已提交
3330
		pci_write_config_word(pdev, PCI_STATUS, pci_status);
3331
		skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
3332

3333
		/* if error still set then just ignore it */
3334 3335
		hwstatus = skge_read32(hw, B0_HWE_ISRC);
		if (hwstatus & IS_IRQ_STAT) {
S
Stephen Hemminger 已提交
3336
			dev_warn(&hw->pdev->dev, "unable to clear error (so ignoring them)\n");
3337 3338 3339 3340 3341 3342
			hw->intr_mask &= ~IS_HW_ERR;
		}
	}
}

/*
3343
 * Interrupt from PHY are handled in tasklet (softirq)
3344 3345 3346
 * because accessing phy registers requires spin wait which might
 * cause excess interrupt latency.
 */
3347
static void skge_extirq(unsigned long arg)
3348
{
3349
	struct skge_hw *hw = (struct skge_hw *) arg;
3350 3351
	int port;

3352
	for (port = 0; port < hw->ports; port++) {
3353 3354
		struct net_device *dev = hw->dev[port];

3355
		if (netif_running(dev)) {
3356 3357 3358
			struct skge_port *skge = netdev_priv(dev);

			spin_lock(&hw->phy_lock);
3359
			if (!is_genesis(hw))
3360
				yukon_phy_intr(skge);
S
Stephen Hemminger 已提交
3361
			else if (hw->phy_type == SK_PHY_BCOM)
3362
				bcom_phy_intr(skge);
3363
			spin_unlock(&hw->phy_lock);
3364 3365 3366
		}
	}

3367
	spin_lock_irq(&hw->hw_lock);
3368 3369
	hw->intr_mask |= IS_EXT_REG;
	skge_write32(hw, B0_IMSK, hw->intr_mask);
3370
	skge_read32(hw, B0_IMSK);
3371
	spin_unlock_irq(&hw->hw_lock);
3372 3373
}

3374
static irqreturn_t skge_intr(int irq, void *dev_id)
3375 3376
{
	struct skge_hw *hw = dev_id;
3377
	u32 status;
S
Stephen Hemminger 已提交
3378
	int handled = 0;
3379

S
Stephen Hemminger 已提交
3380
	spin_lock(&hw->hw_lock);
3381 3382
	/* Reading this register masks IRQ */
	status = skge_read32(hw, B0_SP_ISRC);
3383
	if (status == 0 || status == ~0)
S
Stephen Hemminger 已提交
3384
		goto out;
3385

S
Stephen Hemminger 已提交
3386
	handled = 1;
3387
	status &= hw->intr_mask;
3388 3389
	if (status & IS_EXT_REG) {
		hw->intr_mask &= ~IS_EXT_REG;
3390
		tasklet_schedule(&hw->phy_task);
3391 3392
	}

3393
	if (status & (IS_XA1_F|IS_R1_F)) {
3394
		struct skge_port *skge = netdev_priv(hw->dev[0]);
3395
		hw->intr_mask &= ~(IS_XA1_F|IS_R1_F);
3396
		napi_schedule(&skge->napi);
3397 3398
	}

3399 3400
	if (status & IS_PA_TO_TX1)
		skge_write16(hw, B3_PA_CTRL, PA_CLR_TO_TX1);
3401

3402
	if (status & IS_PA_TO_RX1) {
S
Stephen Hemminger 已提交
3403
		++hw->dev[0]->stats.rx_over_errors;
3404
		skge_write16(hw, B3_PA_CTRL, PA_CLR_TO_RX1);
3405 3406 3407
	}


3408 3409
	if (status & IS_MAC1)
		skge_mac_intr(hw, 0);
3410

3411
	if (hw->dev[1]) {
3412 3413
		struct skge_port *skge = netdev_priv(hw->dev[1]);

3414 3415
		if (status & (IS_XA2_F|IS_R2_F)) {
			hw->intr_mask &= ~(IS_XA2_F|IS_R2_F);
3416
			napi_schedule(&skge->napi);
3417 3418 3419
		}

		if (status & IS_PA_TO_RX2) {
S
Stephen Hemminger 已提交
3420
			++hw->dev[1]->stats.rx_over_errors;
3421 3422 3423 3424 3425 3426 3427 3428 3429
			skge_write16(hw, B3_PA_CTRL, PA_CLR_TO_RX2);
		}

		if (status & IS_PA_TO_TX2)
			skge_write16(hw, B3_PA_CTRL, PA_CLR_TO_TX2);

		if (status & IS_MAC2)
			skge_mac_intr(hw, 1);
	}
3430 3431 3432

	if (status & IS_HW_ERR)
		skge_error_irq(hw);
3433
out:
3434
	skge_write32(hw, B0_IMSK, hw->intr_mask);
3435
	skge_read32(hw, B0_IMSK);
3436
	spin_unlock(&hw->hw_lock);
3437

S
Stephen Hemminger 已提交
3438
	return IRQ_RETVAL(handled);
3439 3440 3441 3442 3443 3444 3445 3446
}

#ifdef CONFIG_NET_POLL_CONTROLLER
static void skge_netpoll(struct net_device *dev)
{
	struct skge_port *skge = netdev_priv(dev);

	disable_irq(dev->irq);
3447
	skge_intr(dev->irq, skge->hw);
3448 3449 3450 3451 3452 3453 3454
	enable_irq(dev->irq);
}
#endif

static int skge_set_mac_address(struct net_device *dev, void *p)
{
	struct skge_port *skge = netdev_priv(dev);
3455 3456 3457
	struct skge_hw *hw = skge->hw;
	unsigned port = skge->port;
	const struct sockaddr *addr = p;
3458
	u16 ctrl;
3459 3460 3461 3462 3463

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

	memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
3464

3465 3466 3467 3468 3469 3470 3471 3472
	if (!netif_running(dev)) {
		memcpy_toio(hw->regs + B2_MAC_1 + port*8, dev->dev_addr, ETH_ALEN);
		memcpy_toio(hw->regs + B2_MAC_2 + port*8, dev->dev_addr, ETH_ALEN);
	} else {
		/* disable Rx */
		spin_lock_bh(&hw->phy_lock);
		ctrl = gma_read16(hw, port, GM_GP_CTRL);
		gma_write16(hw, port, GM_GP_CTRL, ctrl & ~GM_GPCR_RX_ENA);
3473

3474 3475
		memcpy_toio(hw->regs + B2_MAC_1 + port*8, dev->dev_addr, ETH_ALEN);
		memcpy_toio(hw->regs + B2_MAC_2 + port*8, dev->dev_addr, ETH_ALEN);
3476

3477
		if (is_genesis(hw))
3478 3479 3480 3481 3482 3483
			xm_outaddr(hw, port, XM_SA, dev->dev_addr);
		else {
			gma_set_addr(hw, port, GM_SRC_ADDR_1L, dev->dev_addr);
			gma_set_addr(hw, port, GM_SRC_ADDR_2L, dev->dev_addr);
		}

3484 3485 3486
		gma_write16(hw, port, GM_GP_CTRL, ctrl);
		spin_unlock_bh(&hw->phy_lock);
	}
3487 3488

	return 0;
3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520
}

static const struct {
	u8 id;
	const char *name;
} skge_chips[] = {
	{ CHIP_ID_GENESIS,	"Genesis" },
	{ CHIP_ID_YUKON,	 "Yukon" },
	{ CHIP_ID_YUKON_LITE,	 "Yukon-Lite"},
	{ CHIP_ID_YUKON_LP,	 "Yukon-LP"},
};

static const char *skge_board_name(const struct skge_hw *hw)
{
	int i;
	static char buf[16];

	for (i = 0; i < ARRAY_SIZE(skge_chips); i++)
		if (skge_chips[i].id == hw->chip_id)
			return skge_chips[i].name;

	snprintf(buf, sizeof buf, "chipid 0x%x", hw->chip_id);
	return buf;
}


/*
 * Setup the board data structure, but don't bring up
 * the port(s)
 */
static int skge_reset(struct skge_hw *hw)
{
3521
	u32 reg;
3522
	u16 ctst, pci_status;
S
Stephen Hemminger 已提交
3523
	u8 t8, mac_cfg, pmd_type;
3524
	int i;
3525 3526 3527 3528 3529 3530 3531 3532

	ctst = skge_read16(hw, B0_CTST);

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

	/* clear PCI errors, if any */
3533 3534
	skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
	skge_write8(hw, B2_TST_CTRL2, 0);
3535

3536 3537 3538 3539
	pci_read_config_word(hw->pdev, PCI_STATUS, &pci_status);
	pci_write_config_word(hw->pdev, PCI_STATUS,
			      pci_status | PCI_STATUS_ERROR_BITS);
	skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
3540 3541 3542 3543 3544 3545 3546
	skge_write8(hw, B0_CTST, CS_MRST_CLR);

	/* restore CLK_RUN bits (for Yukon-Lite) */
	skge_write16(hw, B0_CTST,
		     ctst & (CS_CLK_RUN_HOT|CS_CLK_RUN_RST|CS_CLK_RUN_ENA));

	hw->chip_id = skge_read8(hw, B2_CHIP_ID);
S
Stephen Hemminger 已提交
3547
	hw->phy_type = skge_read8(hw, B2_E_1) & 0xf;
3548 3549
	pmd_type = skge_read8(hw, B2_PMD_TYP);
	hw->copper = (pmd_type == 'T' || pmd_type == '1');
3550

3551
	switch (hw->chip_id) {
3552
	case CHIP_ID_GENESIS:
3553
#ifdef CONFIG_SKGE_GENESIS
S
Stephen Hemminger 已提交
3554 3555 3556 3557
		switch (hw->phy_type) {
		case SK_PHY_XMAC:
			hw->phy_addr = PHY_ADDR_XMAC;
			break;
3558 3559 3560 3561
		case SK_PHY_BCOM:
			hw->phy_addr = PHY_ADDR_BCOM;
			break;
		default:
S
Stephen Hemminger 已提交
3562 3563
			dev_err(&hw->pdev->dev, "unsupported phy type 0x%x\n",
			       hw->phy_type);
3564 3565 3566
			return -EOPNOTSUPP;
		}
		break;
3567 3568 3569 3570
#else
		dev_err(&hw->pdev->dev, "Genesis chip detected but not configured\n");
		return -EOPNOTSUPP;
#endif
3571 3572 3573 3574

	case CHIP_ID_YUKON:
	case CHIP_ID_YUKON_LITE:
	case CHIP_ID_YUKON_LP:
S
Stephen Hemminger 已提交
3575
		if (hw->phy_type < SK_PHY_MARV_COPPER && pmd_type != 'S')
3576
			hw->copper = 1;
3577 3578 3579 3580 3581

		hw->phy_addr = PHY_ADDR_MARV;
		break;

	default:
S
Stephen Hemminger 已提交
3582 3583
		dev_err(&hw->pdev->dev, "unsupported chip type 0x%x\n",
		       hw->chip_id);
3584 3585 3586
		return -EOPNOTSUPP;
	}

3587 3588 3589
	mac_cfg = skge_read8(hw, B2_MAC_CFG);
	hw->ports = (mac_cfg & CFG_SNG_MAC) ? 1 : 2;
	hw->chip_rev = (mac_cfg & CFG_CHIP_R_MSK) >> 4;
3590 3591 3592

	/* read the adapters RAM size */
	t8 = skge_read8(hw, B2_E_0);
3593
	if (is_genesis(hw)) {
3594 3595
		if (t8 == 3) {
			/* special case: 4 x 64k x 36, offset = 0x80000 */
3596 3597
			hw->ram_size = 0x100000;
			hw->ram_offset = 0x80000;
3598 3599
		} else
			hw->ram_size = t8 * 512;
3600
	} else if (t8 == 0)
3601 3602 3603
		hw->ram_size = 0x20000;
	else
		hw->ram_size = t8 * 4096;
3604

3605
	hw->intr_mask = IS_HW_ERR;
3606

3607
	/* Use PHY IRQ for all but fiber based Genesis board */
3608
	if (!(is_genesis(hw) && hw->phy_type == SK_PHY_XMAC))
S
Stephen Hemminger 已提交
3609 3610
		hw->intr_mask |= IS_EXT_REG;

3611
	if (is_genesis(hw))
3612 3613 3614 3615 3616
		genesis_init(hw);
	else {
		/* switch power to VCC (WA for VAUX problem) */
		skge_write8(hw, B0_POWER_CTRL,
			    PC_VAUX_ENA | PC_VCC_ENA | PC_VAUX_OFF | PC_VCC_ON);
3617

3618 3619 3620
		/* avoid boards with stuck Hardware error bits */
		if ((skge_read32(hw, B0_ISRC) & IS_HW_ERR) &&
		    (skge_read32(hw, B0_HWE_ISRC) & IS_IRQ_SENSOR)) {
S
Stephen Hemminger 已提交
3621
			dev_warn(&hw->pdev->dev, "stuck hardware sensor bit\n");
3622 3623 3624
			hw->intr_mask &= ~IS_HW_ERR;
		}

3625 3626 3627 3628 3629 3630 3631 3632
		/* Clear PHY COMA */
		skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
		pci_read_config_dword(hw->pdev, PCI_DEV_REG1, &reg);
		reg &= ~PCI_PHY_COMA;
		pci_write_config_dword(hw->pdev, PCI_DEV_REG1, reg);
		skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);


3633
		for (i = 0; i < hw->ports; i++) {
3634 3635
			skge_write16(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
			skge_write16(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_CLR);
3636 3637 3638 3639 3640 3641 3642 3643 3644
		}
	}

	/* turn off hardware timer (unused) */
	skge_write8(hw, B2_TI_CTRL, TIM_STOP);
	skge_write8(hw, B2_TI_CTRL, TIM_CLR_IRQ);
	skge_write8(hw, B0_LED, LED_STAT_ON);

	/* enable the Tx Arbiters */
3645
	for (i = 0; i < hw->ports; i++)
3646
		skge_write8(hw, SK_REG(i, TXA_CTRL), TXA_ENA_ARB);
3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672

	/* Initialize ram interface */
	skge_write16(hw, B3_RI_CTRL, RI_RST_CLR);

	skge_write8(hw, B3_RI_WTO_R1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_WTO_XA1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_WTO_XS1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_R1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_XA1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_XS1, SK_RI_TO_53);
	skge_write8(hw, B3_RI_WTO_R2, SK_RI_TO_53);
	skge_write8(hw, B3_RI_WTO_XA2, SK_RI_TO_53);
	skge_write8(hw, B3_RI_WTO_XS2, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_R2, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_XA2, SK_RI_TO_53);
	skge_write8(hw, B3_RI_RTO_XS2, SK_RI_TO_53);

	skge_write32(hw, B0_HWE_IMSK, IS_ERR_MSK);

	/* Set interrupt moderation for Transmit only
	 * Receive interrupts avoided by NAPI
	 */
	skge_write32(hw, B2_IRQM_MSK, IS_XA1_F|IS_XA2_F);
	skge_write32(hw, B2_IRQM_INI, skge_usecs2clk(hw, 100));
	skge_write32(hw, B2_IRQM_CTRL, TIM_START);

3673 3674
	/* Leave irq disabled until first port is brought up. */
	skge_write32(hw, B0_IMSK, 0);
3675

3676
	for (i = 0; i < hw->ports; i++) {
3677
		if (is_genesis(hw))
3678 3679 3680 3681 3682 3683 3684 3685
			genesis_reset(hw, i);
		else
			yukon_reset(hw, i);
	}

	return 0;
}

S
Stephen Hemminger 已提交
3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711

#ifdef CONFIG_SKGE_DEBUG

static struct dentry *skge_debug;

static int skge_debug_show(struct seq_file *seq, void *v)
{
	struct net_device *dev = seq->private;
	const struct skge_port *skge = netdev_priv(dev);
	const struct skge_hw *hw = skge->hw;
	const struct skge_element *e;

	if (!netif_running(dev))
		return -ENETDOWN;

	seq_printf(seq, "IRQ src=%x mask=%x\n", skge_read32(hw, B0_ISRC),
		   skge_read32(hw, B0_IMSK));

	seq_printf(seq, "Tx Ring: (%d)\n", skge_avail(&skge->tx_ring));
	for (e = skge->tx_ring.to_clean; e != skge->tx_ring.to_use; e = e->next) {
		const struct skge_tx_desc *t = e->desc;
		seq_printf(seq, "%#x dma=%#x%08x %#x csum=%#x/%x/%x\n",
			   t->control, t->dma_hi, t->dma_lo, t->status,
			   t->csum_offs, t->csum_write, t->csum_start);
	}

3712
	seq_printf(seq, "\nRx Ring:\n");
S
Stephen Hemminger 已提交
3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746
	for (e = skge->rx_ring.to_clean; ; e = e->next) {
		const struct skge_rx_desc *r = e->desc;

		if (r->control & BMU_OWN)
			break;

		seq_printf(seq, "%#x dma=%#x%08x %#x %#x csum=%#x/%x\n",
			   r->control, r->dma_hi, r->dma_lo, r->status,
			   r->timestamp, r->csum1, r->csum1_start);
	}

	return 0;
}

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

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

/*
 * Use network device events to create/remove/rename
 * debugfs file entries
 */
static int skge_device_event(struct notifier_block *unused,
			     unsigned long event, void *ptr)
{
3747
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
S
Stephen Hemminger 已提交
3748 3749 3750
	struct skge_port *skge;
	struct dentry *d;

3751
	if (dev->netdev_ops->ndo_open != &skge_up || !skge_debug)
S
Stephen Hemminger 已提交
3752 3753 3754
		goto done;

	skge = netdev_priv(dev);
3755
	switch (event) {
S
Stephen Hemminger 已提交
3756 3757 3758 3759 3760 3761 3762
	case NETDEV_CHANGENAME:
		if (skge->debugfs) {
			d = debugfs_rename(skge_debug, skge->debugfs,
					   skge_debug, dev->name);
			if (d)
				skge->debugfs = d;
			else {
3763
				netdev_info(dev, "rename failed\n");
S
Stephen Hemminger 已提交
3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780
				debugfs_remove(skge->debugfs);
			}
		}
		break;

	case NETDEV_GOING_DOWN:
		if (skge->debugfs) {
			debugfs_remove(skge->debugfs);
			skge->debugfs = NULL;
		}
		break;

	case NETDEV_UP:
		d = debugfs_create_file(dev->name, S_IRUGO,
					skge_debug, dev,
					&skge_debug_fops);
		if (!d || IS_ERR(d))
3781
			netdev_info(dev, "debugfs create failed\n");
S
Stephen Hemminger 已提交
3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801
		else
			skge->debugfs = d;
		break;
	}

done:
	return NOTIFY_DONE;
}

static struct notifier_block skge_notifier = {
	.notifier_call = skge_device_event,
};


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

	ent = debugfs_create_dir("skge", NULL);
	if (!ent || IS_ERR(ent)) {
3802
		pr_info("debugfs create directory failed\n");
S
Stephen Hemminger 已提交
3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823
		return;
	}

	skge_debug = ent;
	register_netdevice_notifier(&skge_notifier);
}

static __exit void skge_debug_cleanup(void)
{
	if (skge_debug) {
		unregister_netdevice_notifier(&skge_notifier);
		debugfs_remove(skge_debug);
		skge_debug = NULL;
	}
}

#else
#define skge_debug_init()
#define skge_debug_cleanup()
#endif

3824 3825 3826
static const struct net_device_ops skge_netdev_ops = {
	.ndo_open		= skge_up,
	.ndo_stop		= skge_down,
3827
	.ndo_start_xmit		= skge_xmit_frame,
3828 3829 3830 3831 3832
	.ndo_do_ioctl		= skge_ioctl,
	.ndo_get_stats		= skge_get_stats,
	.ndo_tx_timeout		= skge_tx_timeout,
	.ndo_change_mtu		= skge_change_mtu,
	.ndo_validate_addr	= eth_validate_addr,
3833
	.ndo_set_rx_mode	= skge_set_multicast,
3834 3835 3836 3837 3838 3839 3840
	.ndo_set_mac_address	= skge_set_mac_address,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= skge_netpoll,
#endif
};


3841
/* Initialize network device */
3842 3843
static struct net_device *skge_devinit(struct skge_hw *hw, int port,
				       int highmem)
3844 3845 3846 3847
{
	struct skge_port *skge;
	struct net_device *dev = alloc_etherdev(sizeof(*skge));

3848
	if (!dev)
3849 3850 3851
		return NULL;

	SET_NETDEV_DEV(dev, &hw->pdev->dev);
3852 3853
	dev->netdev_ops = &skge_netdev_ops;
	dev->ethtool_ops = &skge_ethtool_ops;
3854 3855
	dev->watchdog_timeo = TX_WATCHDOG;
	dev->irq = hw->pdev->irq;
3856

3857 3858 3859 3860
	/* MTU range: 60 - 9000 */
	dev->min_mtu = ETH_ZLEN;
	dev->max_mtu = ETH_JUMBO_MTU;

3861 3862
	if (highmem)
		dev->features |= NETIF_F_HIGHDMA;
3863 3864

	skge = netdev_priv(dev);
3865
	netif_napi_add(dev, &skge->napi, skge_poll, NAPI_WEIGHT);
3866 3867 3868
	skge->netdev = dev;
	skge->hw = hw;
	skge->msg_enable = netif_msg_init(debug, default_msg);
3869

3870 3871 3872 3873 3874
	skge->tx_ring.count = DEFAULT_TX_RING_SIZE;
	skge->rx_ring.count = DEFAULT_RX_RING_SIZE;

	/* Auto speed and flow control */
	skge->autoneg = AUTONEG_ENABLE;
3875
	skge->flow_control = FLOW_MODE_SYM_OR_REM;
3876 3877
	skge->duplex = -1;
	skge->speed = -1;
3878
	skge->advertising = skge_supported_modes(hw);
3879

3880
	if (device_can_wakeup(&hw->pdev->dev)) {
3881
		skge->wol = wol_supported(hw) & WAKE_MAGIC;
3882 3883
		device_set_wakeup_enable(&hw->pdev->dev, skge->wol);
	}
3884 3885 3886 3887 3888

	hw->dev[port] = dev;

	skge->port = port;

S
Stephen Hemminger 已提交
3889
	/* Only used for Genesis XMAC */
3890 3891 3892
	if (is_genesis(hw))
	    setup_timer(&skge->link_timer, xm_link_timer, (unsigned long) skge);
	else {
M
Michał Mirosław 已提交
3893 3894 3895
		dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
		                   NETIF_F_RXCSUM;
		dev->features |= dev->hw_features;
3896 3897 3898 3899 3900 3901 3902 3903
	}

	/* read the mac address */
	memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port*8, ETH_ALEN);

	return dev;
}

B
Bill Pemberton 已提交
3904
static void skge_show_addr(struct net_device *dev)
3905 3906 3907
{
	const struct skge_port *skge = netdev_priv(dev);

3908
	netif_info(skge, probe, skge->netdev, "addr %pM\n", dev->dev_addr);
3909 3910
}

S
Stanislaw Gruszka 已提交
3911 3912
static int only_32bit_dma;

3913
static int skge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3914 3915 3916 3917 3918
{
	struct net_device *dev, *dev1;
	struct skge_hw *hw;
	int err, using_dac = 0;

3919 3920
	err = pci_enable_device(pdev);
	if (err) {
S
Stephen Hemminger 已提交
3921
		dev_err(&pdev->dev, "cannot enable PCI device\n");
3922 3923 3924
		goto err_out;
	}

3925 3926
	err = pci_request_regions(pdev, DRV_NAME);
	if (err) {
S
Stephen Hemminger 已提交
3927
		dev_err(&pdev->dev, "cannot obtain PCI resources\n");
3928 3929 3930 3931 3932
		goto err_out_disable_pdev;
	}

	pci_set_master(pdev);

S
Stanislaw Gruszka 已提交
3933
	if (!only_32bit_dma && !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
3934
		using_dac = 1;
3935
		err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
3936
	} else if (!(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))) {
3937
		using_dac = 0;
3938
		err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
3939 3940 3941
	}

	if (err) {
S
Stephen Hemminger 已提交
3942
		dev_err(&pdev->dev, "no usable DMA configuration\n");
3943
		goto err_out_free_regions;
3944 3945 3946
	}

#ifdef __BIG_ENDIAN
S
Stephen Hemminger 已提交
3947
	/* byte swap descriptors in hardware */
3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
	{
		u32 reg;

		pci_read_config_dword(pdev, PCI_DEV_REG2, &reg);
		reg |= PCI_REV_DESC;
		pci_write_config_dword(pdev, PCI_DEV_REG2, reg);
	}
#endif

	err = -ENOMEM;
M
Michal Schmidt 已提交
3958
	/* space for skge@pci:0000:04:00.0 */
3959
	hw = kzalloc(sizeof(*hw) + strlen(DRV_NAME "@pci:")
M
Michal Schmidt 已提交
3960
		     + strlen(pci_name(pdev)) + 1, GFP_KERNEL);
3961
	if (!hw)
3962
		goto err_out_free_regions;
3963

M
Michal Schmidt 已提交
3964
	sprintf(hw->irq_name, DRV_NAME "@pci:%s", pci_name(pdev));
3965 3966

	hw->pdev = pdev;
3967
	spin_lock_init(&hw->hw_lock);
3968
	spin_lock_init(&hw->phy_lock);
3969
	tasklet_init(&hw->phy_task, skge_extirq, (unsigned long) hw);
3970 3971 3972

	hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);
	if (!hw->regs) {
S
Stephen Hemminger 已提交
3973
		dev_err(&pdev->dev, "cannot map device registers\n");
3974 3975 3976 3977 3978
		goto err_out_free_hw;
	}

	err = skge_reset(hw);
	if (err)
3979
		goto err_out_iounmap;
3980

3981 3982 3983 3984
	pr_info("%s addr 0x%llx irq %d chip %s rev %d\n",
		DRV_VERSION,
		(unsigned long long)pci_resource_start(pdev, 0), pdev->irq,
		skge_board_name(hw), hw->chip_rev);
3985

3986
	dev = skge_devinit(hw, 0, using_dac);
3987 3988
	if (!dev) {
		err = -ENOMEM;
3989
		goto err_out_led_off;
3990
	}
3991

3992
	/* Some motherboards are broken and has zero in ROM. */
S
Stephen Hemminger 已提交
3993 3994
	if (!is_valid_ether_addr(dev->dev_addr))
		dev_warn(&pdev->dev, "bad (zero?) ethernet address in rom\n");
3995

3996 3997
	err = register_netdev(dev);
	if (err) {
S
Stephen Hemminger 已提交
3998
		dev_err(&pdev->dev, "cannot register net device\n");
3999 4000 4001 4002 4003
		goto err_out_free_netdev;
	}

	skge_show_addr(dev);

4004 4005
	if (hw->ports > 1) {
		dev1 = skge_devinit(hw, 1, using_dac);
4006 4007 4008
		if (!dev1) {
			err = -ENOMEM;
			goto err_out_unregister;
4009
		}
4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025

		err = register_netdev(dev1);
		if (err) {
			dev_err(&pdev->dev, "cannot register second net device\n");
			goto err_out_free_dev1;
		}

		err = request_irq(pdev->irq, skge_intr, IRQF_SHARED,
				  hw->irq_name, hw);
		if (err) {
			dev_err(&pdev->dev, "cannot assign irq %d\n",
				pdev->irq);
			goto err_out_unregister_dev1;
		}

		skge_show_addr(dev1);
4026
	}
4027
	pci_set_drvdata(pdev, hw);
4028 4029 4030

	return 0;

4031 4032 4033 4034
err_out_unregister_dev1:
	unregister_netdev(dev1);
err_out_free_dev1:
	free_netdev(dev1);
4035 4036
err_out_unregister:
	unregister_netdev(dev);
4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052
err_out_free_netdev:
	free_netdev(dev);
err_out_led_off:
	skge_write16(hw, B0_LED, LED_STAT_OFF);
err_out_iounmap:
	iounmap(hw->regs);
err_out_free_hw:
	kfree(hw);
err_out_free_regions:
	pci_release_regions(pdev);
err_out_disable_pdev:
	pci_disable_device(pdev);
err_out:
	return err;
}

B
Bill Pemberton 已提交
4053
static void skge_remove(struct pci_dev *pdev)
4054 4055 4056 4057
{
	struct skge_hw *hw  = pci_get_drvdata(pdev);
	struct net_device *dev0, *dev1;

4058
	if (!hw)
4059 4060
		return;

4061 4062
	dev1 = hw->dev[1];
	if (dev1)
4063 4064 4065 4066
		unregister_netdev(dev1);
	dev0 = hw->dev[0];
	unregister_netdev(dev0);

4067
	tasklet_kill(&hw->phy_task);
4068

4069 4070
	spin_lock_irq(&hw->hw_lock);
	hw->intr_mask = 0;
4071 4072 4073 4074 4075 4076

	if (hw->ports > 1) {
		skge_write32(hw, B0_IMSK, 0);
		skge_read32(hw, B0_IMSK);
		free_irq(pdev->irq, hw);
	}
4077 4078
	spin_unlock_irq(&hw->hw_lock);

4079 4080 4081
	skge_write16(hw, B0_LED, LED_STAT_OFF);
	skge_write8(hw, B0_CTST, CS_RST_SET);

4082 4083
	if (hw->ports > 1)
		free_irq(pdev->irq, hw);
4084 4085 4086 4087 4088
	pci_release_regions(pdev);
	pci_disable_device(pdev);
	if (dev1)
		free_netdev(dev1);
	free_netdev(dev0);
4089

4090 4091 4092 4093
	iounmap(hw->regs);
	kfree(hw);
}

4094
#ifdef CONFIG_PM_SLEEP
4095
static int skge_suspend(struct device *dev)
4096
{
4097
	struct pci_dev *pdev = to_pci_dev(dev);
4098
	struct skge_hw *hw  = pci_get_drvdata(pdev);
4099
	int i;
S
Stephen Hemminger 已提交
4100

4101 4102 4103
	if (!hw)
		return 0;

4104
	for (i = 0; i < hw->ports; i++) {
4105
		struct net_device *dev = hw->dev[i];
S
Stephen Hemminger 已提交
4106
		struct skge_port *skge = netdev_priv(dev);
4107

S
Stephen Hemminger 已提交
4108 4109
		if (netif_running(dev))
			skge_down(dev);
4110

S
Stephen Hemminger 已提交
4111 4112
		if (skge->wol)
			skge_wol_init(skge);
4113 4114
	}

4115
	skge_write32(hw, B0_IMSK, 0);
4116

4117 4118 4119
	return 0;
}

4120
static int skge_resume(struct device *dev)
4121
{
4122
	struct pci_dev *pdev = to_pci_dev(dev);
4123
	struct skge_hw *hw  = pci_get_drvdata(pdev);
4124
	int i, err;
4125

4126 4127 4128
	if (!hw)
		return 0;

4129 4130 4131
	err = skge_reset(hw);
	if (err)
		goto out;
4132

4133
	for (i = 0; i < hw->ports; i++) {
4134
		struct net_device *dev = hw->dev[i];
4135 4136 4137 4138 4139

		if (netif_running(dev)) {
			err = skge_up(dev);

			if (err) {
4140
				netdev_err(dev, "could not up: %d\n", err);
4141
				dev_close(dev);
4142 4143
				goto out;
			}
4144 4145
		}
	}
4146 4147
out:
	return err;
4148
}
4149 4150 4151 4152 4153 4154 4155

static SIMPLE_DEV_PM_OPS(skge_pm_ops, skge_suspend, skge_resume);
#define SKGE_PM_OPS (&skge_pm_ops)

#else

#define SKGE_PM_OPS NULL
4156
#endif /* CONFIG_PM_SLEEP */
4157

S
Stephen Hemminger 已提交
4158 4159 4160
static void skge_shutdown(struct pci_dev *pdev)
{
	struct skge_hw *hw  = pci_get_drvdata(pdev);
4161
	int i;
S
Stephen Hemminger 已提交
4162

4163 4164 4165
	if (!hw)
		return;

S
Stephen Hemminger 已提交
4166 4167 4168 4169 4170 4171 4172 4173
	for (i = 0; i < hw->ports; i++) {
		struct net_device *dev = hw->dev[i];
		struct skge_port *skge = netdev_priv(dev);

		if (skge->wol)
			skge_wol_init(skge);
	}

4174
	pci_wake_from_d3(pdev, device_may_wakeup(&pdev->dev));
S
Stephen Hemminger 已提交
4175 4176 4177
	pci_set_power_state(pdev, PCI_D3hot);
}

4178 4179 4180 4181
static struct pci_driver skge_driver = {
	.name =         DRV_NAME,
	.id_table =     skge_id_table,
	.probe =        skge_probe,
B
Bill Pemberton 已提交
4182
	.remove =       skge_remove,
S
Stephen Hemminger 已提交
4183
	.shutdown =	skge_shutdown,
4184
	.driver.pm =	SKGE_PM_OPS,
4185 4186
};

S
Stanislaw Gruszka 已提交
4187 4188 4189 4190 4191 4192 4193 4194
static struct dmi_system_id skge_32bit_dma_boards[] = {
	{
		.ident = "Gigabyte nForce boards",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co"),
			DMI_MATCH(DMI_BOARD_NAME, "nForce"),
		},
	},
4195 4196 4197 4198 4199 4200 4201
	{
		.ident = "ASUS P5NSLI",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
			DMI_MATCH(DMI_BOARD_NAME, "P5NSLI")
		},
	},
4202 4203 4204 4205 4206 4207 4208
	{
		.ident = "FUJITSU SIEMENS A8NE-FM",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."),
			DMI_MATCH(DMI_BOARD_NAME, "A8NE-FM")
		},
	},
S
Stanislaw Gruszka 已提交
4209 4210 4211
	{}
};

4212 4213
static int __init skge_init_module(void)
{
S
Stanislaw Gruszka 已提交
4214 4215
	if (dmi_check_system(skge_32bit_dma_boards))
		only_32bit_dma = 1;
S
Stephen Hemminger 已提交
4216
	skge_debug_init();
4217
	return pci_register_driver(&skge_driver);
4218 4219 4220 4221 4222
}

static void __exit skge_cleanup_module(void)
{
	pci_unregister_driver(&skge_driver);
S
Stephen Hemminger 已提交
4223
	skge_debug_cleanup();
4224 4225 4226 4227
}

module_init(skge_init_module);
module_exit(skge_cleanup_module);