smsc95xx.c 50.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 /***************************************************************************
 *
 * Copyright (C) 2007-2008 SMSC
 *
 * 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 the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 *****************************************************************************/

#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/mii.h>
#include <linux/usb.h>
29 30
#include <linux/bitrev.h>
#include <linux/crc16.h>
31 32
#include <linux/crc32.h>
#include <linux/usb/usbnet.h>
33
#include <linux/slab.h>
34 35 36
#include "smsc95xx.h"

#define SMSC_CHIPNAME			"smsc95xx"
37
#define SMSC_DRIVER_VERSION		"1.0.4"
38 39 40 41 42 43 44 45
#define HS_USB_PKT_SIZE			(512)
#define FS_USB_PKT_SIZE			(64)
#define DEFAULT_HS_BURST_CAP_SIZE	(16 * 1024 + 5 * HS_USB_PKT_SIZE)
#define DEFAULT_FS_BURST_CAP_SIZE	(6 * 1024 + 33 * FS_USB_PKT_SIZE)
#define DEFAULT_BULK_IN_DELAY		(0x00002000)
#define MAX_SINGLE_PACKET_SIZE		(2048)
#define LAN95XX_EEPROM_MAGIC		(0x9500)
#define EEPROM_MAC_OFFSET		(0x01)
46
#define DEFAULT_TX_CSUM_ENABLE		(true)
47 48 49
#define DEFAULT_RX_CSUM_ENABLE		(true)
#define SMSC95XX_INTERNAL_PHY_ID	(1)
#define SMSC95XX_TX_OVERHEAD		(8)
50
#define SMSC95XX_TX_OVERHEAD_CSUM	(12)
51
#define SUPPORTED_WAKE			(WAKE_PHY | WAKE_UCAST | WAKE_BCAST | \
52
					 WAKE_MCAST | WAKE_ARP | WAKE_MAGIC)
53

54 55 56 57
#define FEATURE_8_WAKEUP_FILTERS	(0x01)
#define FEATURE_PHY_NLP_CROSSOVER	(0x02)
#define FEATURE_AUTOSUSPEND		(0x04)

58 59
struct smsc95xx_priv {
	u32 mac_cr;
60 61
	u32 hash_hi;
	u32 hash_lo;
62
	u32 wolopts;
63
	spinlock_t mac_cr_lock;
64
	u8 features;
65 66
};

67
static bool turbo_mode = true;
68 69 70
module_param(turbo_mode, bool, 0644);
MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");

71 72
static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index,
					    u32 *data, int in_pm)
73
{
74
	u32 buf;
75
	int ret;
76
	int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
77 78 79

	BUG_ON(!dev);

80 81 82 83 84 85 86 87
	if (!in_pm)
		fn = usbnet_read_cmd;
	else
		fn = usbnet_read_cmd_nopm;

	ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN
		 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
		 0, index, &buf, 4);
88
	if (unlikely(ret < 0))
J
Joe Perches 已提交
89 90
		netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n",
			    index, ret);
91

92 93
	le32_to_cpus(&buf);
	*data = buf;
94 95 96 97

	return ret;
}

98 99
static int __must_check __smsc95xx_write_reg(struct usbnet *dev, u32 index,
					     u32 data, int in_pm)
100
{
101
	u32 buf;
102
	int ret;
103
	int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
104 105 106

	BUG_ON(!dev);

107 108 109 110 111
	if (!in_pm)
		fn = usbnet_write_cmd;
	else
		fn = usbnet_write_cmd_nopm;

112 113
	buf = data;
	cpu_to_le32s(&buf);
114

115 116 117
	ret = fn(dev, USB_VENDOR_REQUEST_WRITE_REGISTER, USB_DIR_OUT
		 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
		 0, index, &buf, 4);
118
	if (unlikely(ret < 0))
J
Joe Perches 已提交
119 120
		netdev_warn(dev->net, "Failed to write reg index 0x%08x: %d\n",
			    index, ret);
121 122 123 124

	return ret;
}

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
static int __must_check smsc95xx_read_reg_nopm(struct usbnet *dev, u32 index,
					       u32 *data)
{
	return __smsc95xx_read_reg(dev, index, data, 1);
}

static int __must_check smsc95xx_write_reg_nopm(struct usbnet *dev, u32 index,
						u32 data)
{
	return __smsc95xx_write_reg(dev, index, data, 1);
}

static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
					  u32 *data)
{
	return __smsc95xx_read_reg(dev, index, data, 0);
}

static int __must_check smsc95xx_write_reg(struct usbnet *dev, u32 index,
					   u32 data)
{
	return __smsc95xx_write_reg(dev, index, data, 0);
}
148

149 150
/* Loop until the read is completed with timeout
 * called with phy_mutex held */
151 152
static int __must_check __smsc95xx_phy_wait_not_busy(struct usbnet *dev,
						     int in_pm)
153 154 155
{
	unsigned long start_time = jiffies;
	u32 val;
156
	int ret;
157 158

	do {
159
		ret = __smsc95xx_read_reg(dev, MII_ADDR, &val, in_pm);
S
Steve Glendinning 已提交
160 161 162 163 164
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading MII_ACCESS\n");
			return ret;
		}

165 166 167 168 169 170 171
		if (!(val & MII_BUSY_))
			return 0;
	} while (!time_after(jiffies, start_time + HZ));

	return -EIO;
}

172 173
static int __smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx,
				int in_pm)
174 175 176
{
	struct usbnet *dev = netdev_priv(netdev);
	u32 val, addr;
177
	int ret;
178 179 180 181

	mutex_lock(&dev->phy_mutex);

	/* confirm MII not busy */
182
	ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
S
Steve Glendinning 已提交
183 184 185 186
	if (ret < 0) {
		netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_read\n");
		goto done;
	}
187 188 189 190

	/* set the address, index & direction (read from PHY) */
	phy_id &= dev->mii.phy_id_mask;
	idx &= dev->mii.reg_num_mask;
191
	addr = (phy_id << 11) | (idx << 6) | MII_READ_ | MII_BUSY_;
192
	ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
S
Steve Glendinning 已提交
193 194 195 196
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing MII_ADDR\n");
		goto done;
	}
197

198
	ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
S
Steve Glendinning 已提交
199 200 201 202
	if (ret < 0) {
		netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
		goto done;
	}
203

204
	ret = __smsc95xx_read_reg(dev, MII_DATA, &val, in_pm);
S
Steve Glendinning 已提交
205 206 207 208
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading MII_DATA\n");
		goto done;
	}
209

210
	ret = (u16)(val & 0xFFFF);
211

212 213 214
done:
	mutex_unlock(&dev->phy_mutex);
	return ret;
215 216
}

217 218
static void __smsc95xx_mdio_write(struct net_device *netdev, int phy_id,
				  int idx, int regval, int in_pm)
219 220 221
{
	struct usbnet *dev = netdev_priv(netdev);
	u32 val, addr;
222
	int ret;
223 224 225 226

	mutex_lock(&dev->phy_mutex);

	/* confirm MII not busy */
227
	ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
S
Steve Glendinning 已提交
228 229 230 231
	if (ret < 0) {
		netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_write\n");
		goto done;
	}
232 233

	val = regval;
234
	ret = __smsc95xx_write_reg(dev, MII_DATA, val, in_pm);
S
Steve Glendinning 已提交
235 236 237 238
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing MII_DATA\n");
		goto done;
	}
239 240 241 242

	/* set the address, index & direction (write to PHY) */
	phy_id &= dev->mii.phy_id_mask;
	idx &= dev->mii.reg_num_mask;
243
	addr = (phy_id << 11) | (idx << 6) | MII_WRITE_ | MII_BUSY_;
244
	ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
S
Steve Glendinning 已提交
245 246 247 248
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing MII_ADDR\n");
		goto done;
	}
249

250
	ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
S
Steve Glendinning 已提交
251 252 253 254
	if (ret < 0) {
		netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
		goto done;
	}
255

256
done:
257 258 259
	mutex_unlock(&dev->phy_mutex);
}

260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
static int smsc95xx_mdio_read_nopm(struct net_device *netdev, int phy_id,
				   int idx)
{
	return __smsc95xx_mdio_read(netdev, phy_id, idx, 1);
}

static void smsc95xx_mdio_write_nopm(struct net_device *netdev, int phy_id,
				     int idx, int regval)
{
	__smsc95xx_mdio_write(netdev, phy_id, idx, regval, 1);
}

static int smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx)
{
	return __smsc95xx_mdio_read(netdev, phy_id, idx, 0);
}

static void smsc95xx_mdio_write(struct net_device *netdev, int phy_id, int idx,
				int regval)
{
	__smsc95xx_mdio_write(netdev, phy_id, idx, regval, 0);
}

283
static int __must_check smsc95xx_wait_eeprom(struct usbnet *dev)
284 285 286
{
	unsigned long start_time = jiffies;
	u32 val;
287
	int ret;
288 289

	do {
290
		ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
S
Steve Glendinning 已提交
291 292 293 294 295
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading E2P_CMD\n");
			return ret;
		}

296 297 298 299 300 301
		if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
			break;
		udelay(40);
	} while (!time_after(jiffies, start_time + HZ));

	if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
302
		netdev_warn(dev->net, "EEPROM read operation timeout\n");
303 304 305 306 307 308
		return -EIO;
	}

	return 0;
}

309
static int __must_check smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
310 311 312
{
	unsigned long start_time = jiffies;
	u32 val;
313
	int ret;
314 315

	do {
316
		ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
S
Steve Glendinning 已提交
317 318 319 320
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading E2P_CMD\n");
			return ret;
		}
321 322 323 324 325 326 327

		if (!(val & E2P_CMD_BUSY_))
			return 0;

		udelay(40);
	} while (!time_after(jiffies, start_time + HZ));

328
	netdev_warn(dev->net, "EEPROM is busy\n");
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
	return -EIO;
}

static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
				u8 *data)
{
	u32 val;
	int i, ret;

	BUG_ON(!dev);
	BUG_ON(!data);

	ret = smsc95xx_eeprom_confirm_not_busy(dev);
	if (ret)
		return ret;

	for (i = 0; i < length; i++) {
		val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
347
		ret = smsc95xx_write_reg(dev, E2P_CMD, val);
S
Steve Glendinning 已提交
348 349 350 351
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing E2P_CMD\n");
			return ret;
		}
352 353 354 355 356

		ret = smsc95xx_wait_eeprom(dev);
		if (ret < 0)
			return ret;

357
		ret = smsc95xx_read_reg(dev, E2P_DATA, &val);
S
Steve Glendinning 已提交
358 359 360 361
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading E2P_DATA\n");
			return ret;
		}
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384

		data[i] = val & 0xFF;
		offset++;
	}

	return 0;
}

static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
				 u8 *data)
{
	u32 val;
	int i, ret;

	BUG_ON(!dev);
	BUG_ON(!data);

	ret = smsc95xx_eeprom_confirm_not_busy(dev);
	if (ret)
		return ret;

	/* Issue write/erase enable command */
	val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
385
	ret = smsc95xx_write_reg(dev, E2P_CMD, val);
S
Steve Glendinning 已提交
386 387 388 389
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing E2P_DATA\n");
		return ret;
	}
390 391 392 393 394 395 396 397 398

	ret = smsc95xx_wait_eeprom(dev);
	if (ret < 0)
		return ret;

	for (i = 0; i < length; i++) {

		/* Fill data register */
		val = data[i];
399
		ret = smsc95xx_write_reg(dev, E2P_DATA, val);
S
Steve Glendinning 已提交
400 401 402 403
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing E2P_DATA\n");
			return ret;
		}
404 405 406

		/* Send "write" command */
		val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
407
		ret = smsc95xx_write_reg(dev, E2P_CMD, val);
S
Steve Glendinning 已提交
408 409 410 411
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing E2P_CMD\n");
			return ret;
		}
412 413 414 415 416 417 418 419 420 421 422

		ret = smsc95xx_wait_eeprom(dev);
		if (ret < 0)
			return ret;

		offset++;
	}

	return 0;
}

423 424
static int __must_check smsc95xx_write_reg_async(struct usbnet *dev, u16 index,
						 u32 *data)
425
{
426
	const u16 size = 4;
427
	int ret;
428

429 430 431 432 433 434 435 436
	ret = usbnet_write_cmd_async(dev, USB_VENDOR_REQUEST_WRITE_REGISTER,
				     USB_DIR_OUT | USB_TYPE_VENDOR |
				     USB_RECIP_DEVICE,
				     0, index, data, size);
	if (ret < 0)
		netdev_warn(dev->net, "Error write async cmd, sts=%d\n",
			    ret);
	return ret;
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
}

/* returns hash bit number for given MAC address
 * example:
 * 01 00 5E 00 00 01 -> returns bit number 31 */
static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
{
	return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
}

static void smsc95xx_set_multicast(struct net_device *netdev)
{
	struct usbnet *dev = netdev_priv(netdev);
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	unsigned long flags;
452
	int ret;
453

454 455 456
	pdata->hash_hi = 0;
	pdata->hash_lo = 0;

457 458 459
	spin_lock_irqsave(&pdata->mac_cr_lock, flags);

	if (dev->net->flags & IFF_PROMISC) {
460
		netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
461 462 463
		pdata->mac_cr |= MAC_CR_PRMS_;
		pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
	} else if (dev->net->flags & IFF_ALLMULTI) {
464
		netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
465 466
		pdata->mac_cr |= MAC_CR_MCPAS_;
		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
467
	} else if (!netdev_mc_empty(dev->net)) {
468
		struct netdev_hw_addr *ha;
469 470 471 472

		pdata->mac_cr |= MAC_CR_HPFILT_;
		pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);

473 474
		netdev_for_each_mc_addr(ha, netdev) {
			u32 bitnum = smsc95xx_hash(ha->addr);
475 476
			u32 mask = 0x01 << (bitnum & 0x1F);
			if (bitnum & 0x20)
477
				pdata->hash_hi |= mask;
478
			else
479
				pdata->hash_lo |= mask;
480 481
		}

482
		netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
483
				   pdata->hash_hi, pdata->hash_lo);
484
	} else {
485
		netif_dbg(dev, drv, dev->net, "receive own packets only\n");
486 487 488 489 490 491 492
		pdata->mac_cr &=
			~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
	}

	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);

	/* Initiate async writes, as we can't wait for completion here */
493
	ret = smsc95xx_write_reg_async(dev, HASHH, &pdata->hash_hi);
S
Steve Glendinning 已提交
494 495
	if (ret < 0)
		netdev_warn(dev->net, "failed to initiate async write to HASHH\n");
496 497

	ret = smsc95xx_write_reg_async(dev, HASHL, &pdata->hash_lo);
S
Steve Glendinning 已提交
498 499
	if (ret < 0)
		netdev_warn(dev->net, "failed to initiate async write to HASHL\n");
500 501

	ret = smsc95xx_write_reg_async(dev, MAC_CR, &pdata->mac_cr);
S
Steve Glendinning 已提交
502 503
	if (ret < 0)
		netdev_warn(dev->net, "failed to initiate async write to MAC_CR\n");
504 505
}

506 507
static int smsc95xx_phy_update_flowcontrol(struct usbnet *dev, u8 duplex,
					   u16 lcladv, u16 rmtadv)
508 509 510 511
{
	u32 flow, afc_cfg = 0;

	int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
S
Steve Glendinning 已提交
512 513 514 515
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading AFC_CFG\n");
		return ret;
	}
516 517

	if (duplex == DUPLEX_FULL) {
518
		u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
519 520 521 522 523 524 525 526 527 528 529

		if (cap & FLOW_CTRL_RX)
			flow = 0xFFFF0002;
		else
			flow = 0;

		if (cap & FLOW_CTRL_TX)
			afc_cfg |= 0xF;
		else
			afc_cfg &= ~0xF;

530
		netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
531 532
				   cap & FLOW_CTRL_RX ? "enabled" : "disabled",
				   cap & FLOW_CTRL_TX ? "enabled" : "disabled");
533
	} else {
534
		netif_dbg(dev, link, dev->net, "half duplex\n");
535 536 537 538
		flow = 0;
		afc_cfg |= 0xF;
	}

539
	ret = smsc95xx_write_reg(dev, FLOW, flow);
S
Steve Glendinning 已提交
540 541 542 543
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing FLOW\n");
		return ret;
	}
544 545

	ret = smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
S
Steve Glendinning 已提交
546 547
	if (ret < 0)
		netdev_warn(dev->net, "Error writing AFC_CFG\n");
548

S
Steve Glendinning 已提交
549
	return ret;
550 551 552 553 554 555
}

static int smsc95xx_link_reset(struct usbnet *dev)
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	struct mii_if_info *mii = &dev->mii;
556
	struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
557 558
	unsigned long flags;
	u16 lcladv, rmtadv;
559
	int ret;
560 561

	/* clear interrupt status */
562
	ret = smsc95xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC);
S
Steve Glendinning 已提交
563 564 565 566
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PHY_INT_SRC\n");
		return ret;
	}
567 568

	ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
S
Steve Glendinning 已提交
569 570 571 572
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing INT_STS\n");
		return ret;
	}
573 574 575 576 577 578

	mii_check_media(mii, 1, 1);
	mii_ethtool_gset(&dev->mii, &ecmd);
	lcladv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE);
	rmtadv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_LPA);

579 580 581
	netif_dbg(dev, link, dev->net,
		  "speed: %u duplex: %d lcladv: %04x rmtadv: %04x\n",
		  ethtool_cmd_speed(&ecmd), ecmd.duplex, lcladv, rmtadv);
582 583 584 585 586 587 588 589 590 591 592

	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
	if (ecmd.duplex != DUPLEX_FULL) {
		pdata->mac_cr &= ~MAC_CR_FDPX_;
		pdata->mac_cr |= MAC_CR_RCVOWN_;
	} else {
		pdata->mac_cr &= ~MAC_CR_RCVOWN_;
		pdata->mac_cr |= MAC_CR_FDPX_;
	}
	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);

593
	ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
S
Steve Glendinning 已提交
594 595 596 597
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing MAC_CR\n");
		return ret;
	}
598

599
	ret = smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
S
Steve Glendinning 已提交
600 601
	if (ret < 0)
		netdev_warn(dev->net, "Error updating PHY flow control\n");
602

S
Steve Glendinning 已提交
603
	return ret;
604 605 606 607 608 609 610
}

static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
{
	u32 intdata;

	if (urb->actual_length != 4) {
611 612
		netdev_warn(dev->net, "unexpected urb length %d\n",
			    urb->actual_length);
613 614 615 616
		return;
	}

	memcpy(&intdata, urb->transfer_buffer, 4);
617
	le32_to_cpus(&intdata);
618

619
	netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
620 621 622 623

	if (intdata & INT_ENP_PHY_INT_)
		usbnet_defer_kevent(dev, EVENT_LINK_RESET);
	else
624 625
		netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
			    intdata);
626 627
}

628
/* Enable or disable Tx & Rx checksum offload engines */
629 630
static int smsc95xx_set_features(struct net_device *netdev,
	netdev_features_t features)
631
{
632
	struct usbnet *dev = netdev_priv(netdev);
633
	u32 read_buf;
634 635 636
	int ret;

	ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
S
Steve Glendinning 已提交
637 638 639 640
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read COE_CR: %d\n", ret);
		return ret;
	}
641

642
	if (features & NETIF_F_HW_CSUM)
643 644 645 646
		read_buf |= Tx_COE_EN_;
	else
		read_buf &= ~Tx_COE_EN_;

647
	if (features & NETIF_F_RXCSUM)
648 649 650 651 652
		read_buf |= Rx_COE_EN_;
	else
		read_buf &= ~Rx_COE_EN_;

	ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
S
Steve Glendinning 已提交
653 654 655 656
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write COE_CR: %d\n", ret);
		return ret;
	}
657

658
	netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
	return 0;
}

static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
{
	return MAX_EEPROM_SIZE;
}

static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
				       struct ethtool_eeprom *ee, u8 *data)
{
	struct usbnet *dev = netdev_priv(netdev);

	ee->magic = LAN95XX_EEPROM_MAGIC;

	return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
}

static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
				       struct ethtool_eeprom *ee, u8 *data)
{
	struct usbnet *dev = netdev_priv(netdev);

	if (ee->magic != LAN95XX_EEPROM_MAGIC) {
683 684
		netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
			    ee->magic);
685 686 687 688 689 690
		return -EINVAL;
	}

	return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
}

691 692 693
static int smsc95xx_ethtool_getregslen(struct net_device *netdev)
{
	/* all smsc95xx registers */
694
	return COE_CR - ID_REV + sizeof(u32);
695 696 697 698 699 700 701
}

static void
smsc95xx_ethtool_getregs(struct net_device *netdev, struct ethtool_regs *regs,
			 void *buf)
{
	struct usbnet *dev = netdev_priv(netdev);
702 703
	unsigned int i, j;
	int retval;
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
	u32 *data = buf;

	retval = smsc95xx_read_reg(dev, ID_REV, &regs->version);
	if (retval < 0) {
		netdev_warn(netdev, "REGS: cannot read ID_REV\n");
		return;
	}

	for (i = ID_REV, j = 0; i <= COE_CR; i += (sizeof(u32)), j++) {
		retval = smsc95xx_read_reg(dev, i, &data[j]);
		if (retval < 0) {
			netdev_warn(netdev, "REGS: cannot read reg[%x]\n", i);
			return;
		}
	}
}

721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
static void smsc95xx_ethtool_get_wol(struct net_device *net,
				     struct ethtool_wolinfo *wolinfo)
{
	struct usbnet *dev = netdev_priv(net);
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);

	wolinfo->supported = SUPPORTED_WAKE;
	wolinfo->wolopts = pdata->wolopts;
}

static int smsc95xx_ethtool_set_wol(struct net_device *net,
				    struct ethtool_wolinfo *wolinfo)
{
	struct usbnet *dev = netdev_priv(net);
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
736
	int ret;
737 738

	pdata->wolopts = wolinfo->wolopts & SUPPORTED_WAKE;
739 740

	ret = device_set_wakeup_enable(&dev->udev->dev, pdata->wolopts);
S
Steve Glendinning 已提交
741 742
	if (ret < 0)
		netdev_warn(dev->net, "device_set_wakeup_enable error %d\n", ret);
743

S
Steve Glendinning 已提交
744
	return ret;
745 746
}

747
static const struct ethtool_ops smsc95xx_ethtool_ops = {
748 749 750 751 752 753 754 755 756 757
	.get_link	= usbnet_get_link,
	.nway_reset	= usbnet_nway_reset,
	.get_drvinfo	= usbnet_get_drvinfo,
	.get_msglevel	= usbnet_get_msglevel,
	.set_msglevel	= usbnet_set_msglevel,
	.get_settings	= usbnet_get_settings,
	.set_settings	= usbnet_set_settings,
	.get_eeprom_len	= smsc95xx_ethtool_get_eeprom_len,
	.get_eeprom	= smsc95xx_ethtool_get_eeprom,
	.set_eeprom	= smsc95xx_ethtool_set_eeprom,
758 759
	.get_regs_len	= smsc95xx_ethtool_getregslen,
	.get_regs	= smsc95xx_ethtool_getregs,
760 761
	.get_wol	= smsc95xx_ethtool_get_wol,
	.set_wol	= smsc95xx_ethtool_set_wol,
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
};

static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
{
	struct usbnet *dev = netdev_priv(netdev);

	if (!netif_running(netdev))
		return -EINVAL;

	return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
}

static void smsc95xx_init_mac_address(struct usbnet *dev)
{
	/* try reading mac address from EEPROM */
	if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
			dev->net->dev_addr) == 0) {
		if (is_valid_ether_addr(dev->net->dev_addr)) {
			/* eeprom values are valid so use them */
781
			netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
782 783 784 785 786
			return;
		}
	}

	/* no eeprom, or eeprom values are invalid. generate random MAC */
787
	eth_hw_addr_random(dev->net);
J
Joe Perches 已提交
788
	netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
789 790 791 792 793 794 795 796 797 798
}

static int smsc95xx_set_mac_address(struct usbnet *dev)
{
	u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
		dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
	u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
	int ret;

	ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
S
Steve Glendinning 已提交
799 800 801 802
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write ADDRL: %d\n", ret);
		return ret;
	}
803 804

	ret = smsc95xx_write_reg(dev, ADDRH, addr_hi);
S
Steve Glendinning 已提交
805 806
	if (ret < 0)
		netdev_warn(dev->net, "Failed to write ADDRH: %d\n", ret);
807

S
Steve Glendinning 已提交
808
	return ret;
809 810 811
}

/* starts the TX path */
812
static int smsc95xx_start_tx_path(struct usbnet *dev)
813 814 815
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	unsigned long flags;
816
	int ret;
817 818 819 820 821 822

	/* Enable Tx at MAC */
	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
	pdata->mac_cr |= MAC_CR_TXEN_;
	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);

823
	ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
S
Steve Glendinning 已提交
824 825 826 827
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write MAC_CR: %d\n", ret);
		return ret;
	}
828 829

	/* Enable Tx at SCSRs */
830
	ret = smsc95xx_write_reg(dev, TX_CFG, TX_CFG_ON_);
S
Steve Glendinning 已提交
831 832
	if (ret < 0)
		netdev_warn(dev->net, "Failed to write TX_CFG: %d\n", ret);
833

S
Steve Glendinning 已提交
834
	return ret;
835 836 837
}

/* Starts the Receive path */
838
static int smsc95xx_start_rx_path(struct usbnet *dev, int in_pm)
839 840 841
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	unsigned long flags;
842
	int ret;
843 844 845 846 847

	spin_lock_irqsave(&pdata->mac_cr_lock, flags);
	pdata->mac_cr |= MAC_CR_RXEN_;
	spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);

848
	ret = __smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr, in_pm);
S
Steve Glendinning 已提交
849 850
	if (ret < 0)
		netdev_warn(dev->net, "Failed to write MAC_CR: %d\n", ret);
851

S
Steve Glendinning 已提交
852
	return ret;
853 854 855 856
}

static int smsc95xx_phy_initialize(struct usbnet *dev)
{
857
	int bmcr, ret, timeout = 0;
858

859 860 861 862 863 864 865 866
	/* Initialize MII structure */
	dev->mii.dev = dev->net;
	dev->mii.mdio_read = smsc95xx_mdio_read;
	dev->mii.mdio_write = smsc95xx_mdio_write;
	dev->mii.phy_id_mask = 0x1f;
	dev->mii.reg_num_mask = 0x1f;
	dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;

867
	/* reset phy and wait for reset to complete */
868
	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
869 870 871 872 873

	do {
		msleep(10);
		bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
		timeout++;
R
Rabin Vincent 已提交
874
	} while ((bmcr & BMCR_RESET) && (timeout < 100));
875 876 877 878 879 880

	if (timeout >= 100) {
		netdev_warn(dev->net, "timeout on PHY Reset");
		return -EIO;
	}

881 882 883 884 885
	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
		ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
		ADVERTISE_PAUSE_ASYM);

	/* read to clear */
886
	ret = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
S
Steve Glendinning 已提交
887 888 889 890
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read PHY_INT_SRC during init\n");
		return ret;
	}
891 892 893 894 895

	smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
		PHY_INT_MASK_DEFAULT_);
	mii_nway_restart(&dev->mii);

896
	netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
897 898 899 900 901 902 903 904 905
	return 0;
}

static int smsc95xx_reset(struct usbnet *dev)
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	u32 read_buf, write_buf, burst_cap;
	int ret = 0, timeout;

906
	netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
907

908
	ret = smsc95xx_write_reg(dev, HW_CFG, HW_CFG_LRST_);
S
Steve Glendinning 已提交
909 910 911 912
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write HW_CFG_LRST_ bit in HW_CFG\n");
		return ret;
	}
913 914 915

	timeout = 0;
	do {
916
		msleep(10);
917
		ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
S
Steve Glendinning 已提交
918 919 920 921
		if (ret < 0) {
			netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
			return ret;
		}
922 923 924 925
		timeout++;
	} while ((read_buf & HW_CFG_LRST_) && (timeout < 100));

	if (timeout >= 100) {
926
		netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
927 928 929
		return ret;
	}

930
	ret = smsc95xx_write_reg(dev, PM_CTRL, PM_CTL_PHY_RST_);
S
Steve Glendinning 已提交
931 932 933 934
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write PM_CTRL: %d\n", ret);
		return ret;
	}
935 936 937

	timeout = 0;
	do {
938
		msleep(10);
939
		ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
S
Steve Glendinning 已提交
940 941 942 943
		if (ret < 0) {
			netdev_warn(dev->net, "Failed to read PM_CTRL: %d\n", ret);
			return ret;
		}
944 945 946 947
		timeout++;
	} while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));

	if (timeout >= 100) {
948
		netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
949 950 951 952 953 954 955
		return ret;
	}

	ret = smsc95xx_set_mac_address(dev);
	if (ret < 0)
		return ret;

J
Joe Perches 已提交
956 957
	netif_dbg(dev, ifup, dev->net, "MAC Address: %pM\n",
		  dev->net->dev_addr);
958 959

	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
S
Steve Glendinning 已提交
960 961 962 963
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
		return ret;
	}
964

J
Joe Perches 已提交
965 966
	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x\n",
		  read_buf);
967 968 969 970

	read_buf |= HW_CFG_BIR_;

	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
S
Steve Glendinning 已提交
971 972 973 974
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write HW_CFG_BIR_ bit in HW_CFG\n");
		return ret;
	}
975 976

	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
S
Steve Glendinning 已提交
977 978 979 980 981
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
		return ret;
	}

982 983 984
	netif_dbg(dev, ifup, dev->net,
		  "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
		  read_buf);
985 986 987 988 989 990 991 992 993 994 995 996

	if (!turbo_mode) {
		burst_cap = 0;
		dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
	} else if (dev->udev->speed == USB_SPEED_HIGH) {
		burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
		dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
	} else {
		burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
		dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
	}

J
Joe Perches 已提交
997 998
	netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
		  (ulong)dev->rx_urb_size);
999 1000

	ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
S
Steve Glendinning 已提交
1001 1002 1003 1004
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write BURST_CAP: %d\n", ret);
		return ret;
	}
1005 1006

	ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
S
Steve Glendinning 已提交
1007 1008 1009 1010
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read BURST_CAP: %d\n", ret);
		return ret;
	}
1011

1012 1013 1014
	netif_dbg(dev, ifup, dev->net,
		  "Read Value from BURST_CAP after writing: 0x%08x\n",
		  read_buf);
1015

1016
	ret = smsc95xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY);
S
Steve Glendinning 已提交
1017 1018 1019 1020
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write BULK_IN_DLY: %d\n", ret);
		return ret;
	}
1021 1022

	ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
S
Steve Glendinning 已提交
1023 1024 1025 1026
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read BULK_IN_DLY: %d\n", ret);
		return ret;
	}
1027

1028 1029 1030
	netif_dbg(dev, ifup, dev->net,
		  "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
		  read_buf);
1031 1032

	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
S
Steve Glendinning 已提交
1033 1034 1035 1036
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
		return ret;
	}
1037

J
Joe Perches 已提交
1038 1039
	netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG: 0x%08x\n",
		  read_buf);
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049

	if (turbo_mode)
		read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);

	read_buf &= ~HW_CFG_RXDOFF_;

	/* set Rx data offset=2, Make IP header aligns on word boundary. */
	read_buf |= NET_IP_ALIGN << 9;

	ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
S
Steve Glendinning 已提交
1050 1051 1052 1053
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write HW_CFG: %d\n", ret);
		return ret;
	}
1054 1055

	ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
S
Steve Glendinning 已提交
1056 1057 1058 1059
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
		return ret;
	}
1060

1061 1062
	netif_dbg(dev, ifup, dev->net,
		  "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
1063

1064
	ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
S
Steve Glendinning 已提交
1065 1066 1067 1068
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write INT_STS: %d\n", ret);
		return ret;
	}
1069 1070

	ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
S
Steve Glendinning 已提交
1071 1072 1073 1074
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read ID_REV: %d\n", ret);
		return ret;
	}
1075
	netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
1076

1077 1078 1079 1080
	/* Configure GPIO pins as LED outputs */
	write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
		LED_GPIO_CFG_FDX_LED;
	ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
S
Steve Glendinning 已提交
1081 1082 1083 1084
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write LED_GPIO_CFG: %d\n", ret);
		return ret;
	}
1085

1086
	/* Init Tx */
1087
	ret = smsc95xx_write_reg(dev, FLOW, 0);
S
Steve Glendinning 已提交
1088 1089 1090 1091
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write FLOW: %d\n", ret);
		return ret;
	}
1092

1093
	ret = smsc95xx_write_reg(dev, AFC_CFG, AFC_CFG_DEFAULT);
S
Steve Glendinning 已提交
1094 1095 1096 1097
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write AFC_CFG: %d\n", ret);
		return ret;
	}
1098 1099 1100

	/* Don't need mac_cr_lock during initialisation */
	ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
S
Steve Glendinning 已提交
1101 1102 1103 1104
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read MAC_CR: %d\n", ret);
		return ret;
	}
1105 1106 1107

	/* Init Rx */
	/* Set Vlan */
1108
	ret = smsc95xx_write_reg(dev, VLAN1, (u32)ETH_P_8021Q);
S
Steve Glendinning 已提交
1109 1110 1111 1112
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write VLAN1: %d\n", ret);
		return ret;
	}
1113

1114
	/* Enable or disable checksum offload engines */
1115
	ret = smsc95xx_set_features(dev->net, dev->net->features);
S
Steve Glendinning 已提交
1116 1117 1118 1119
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to set checksum offload features\n");
		return ret;
	}
1120 1121 1122

	smsc95xx_set_multicast(dev->net);

1123
	ret = smsc95xx_phy_initialize(dev);
S
Steve Glendinning 已提交
1124 1125 1126 1127
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to init PHY\n");
		return ret;
	}
1128 1129

	ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
S
Steve Glendinning 已提交
1130 1131 1132 1133
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read INT_EP_CTL: %d\n", ret);
		return ret;
	}
1134 1135 1136 1137 1138

	/* enable PHY interrupts */
	read_buf |= INT_EP_CTL_PHY_INT_;

	ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
S
Steve Glendinning 已提交
1139 1140 1141 1142
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to write INT_EP_CTL: %d\n", ret);
		return ret;
	}
1143

1144
	ret = smsc95xx_start_tx_path(dev);
S
Steve Glendinning 已提交
1145 1146 1147 1148
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to start TX path\n");
		return ret;
	}
1149

1150
	ret = smsc95xx_start_rx_path(dev, 0);
S
Steve Glendinning 已提交
1151 1152 1153 1154
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to start RX path\n");
		return ret;
	}
1155

1156
	netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
1157 1158 1159
	return 0;
}

1160 1161 1162 1163 1164 1165 1166 1167 1168
static const struct net_device_ops smsc95xx_netdev_ops = {
	.ndo_open		= usbnet_open,
	.ndo_stop		= usbnet_stop,
	.ndo_start_xmit		= usbnet_start_xmit,
	.ndo_tx_timeout		= usbnet_tx_timeout,
	.ndo_change_mtu		= usbnet_change_mtu,
	.ndo_set_mac_address 	= eth_mac_addr,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_do_ioctl 		= smsc95xx_ioctl,
1169
	.ndo_set_rx_mode	= smsc95xx_set_multicast,
1170
	.ndo_set_features	= smsc95xx_set_features,
1171 1172
};

1173 1174 1175
static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
{
	struct smsc95xx_priv *pdata = NULL;
1176
	u32 val;
1177 1178 1179 1180 1181
	int ret;

	printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");

	ret = usbnet_get_endpoints(dev, intf);
S
Steve Glendinning 已提交
1182 1183 1184 1185
	if (ret < 0) {
		netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
		return ret;
	}
1186 1187 1188 1189 1190 1191

	dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
		GFP_KERNEL);

	pdata = (struct smsc95xx_priv *)(dev->data[0]);
	if (!pdata) {
1192
		netdev_warn(dev->net, "Unable to allocate struct smsc95xx_priv\n");
1193 1194 1195 1196 1197
		return -ENOMEM;
	}

	spin_lock_init(&pdata->mac_cr_lock);

1198 1199 1200 1201 1202 1203
	if (DEFAULT_TX_CSUM_ENABLE)
		dev->net->features |= NETIF_F_HW_CSUM;
	if (DEFAULT_RX_CSUM_ENABLE)
		dev->net->features |= NETIF_F_RXCSUM;

	dev->net->hw_features = NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1204

1205 1206
	smsc95xx_init_mac_address(dev);

1207 1208 1209
	/* Init all registers */
	ret = smsc95xx_reset(dev);

1210 1211
	/* detect device revision as different features may be available */
	ret = smsc95xx_read_reg(dev, ID_REV, &val);
S
Steve Glendinning 已提交
1212 1213 1214 1215
	if (ret < 0) {
		netdev_warn(dev->net, "Failed to read ID_REV: %d\n", ret);
		return ret;
	}
1216
	val >>= 16;
1217 1218 1219 1220 1221 1222 1223 1224

	if ((val == ID_REV_CHIP_ID_9500A_) || (val == ID_REV_CHIP_ID_9530_) ||
	    (val == ID_REV_CHIP_ID_89530_) || (val == ID_REV_CHIP_ID_9730_))
		pdata->features = (FEATURE_8_WAKEUP_FILTERS |
			FEATURE_PHY_NLP_CROSSOVER |
			FEATURE_AUTOSUSPEND);
	else if (val == ID_REV_CHIP_ID_9512_)
		pdata->features = FEATURE_8_WAKEUP_FILTERS;
1225

1226
	dev->net->netdev_ops = &smsc95xx_netdev_ops;
1227 1228
	dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
	dev->net->flags |= IFF_MULTICAST;
1229
	dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
S
Stephane Fillod 已提交
1230
	dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
1231 1232 1233 1234 1235 1236 1237
	return 0;
}

static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	if (pdata) {
1238
		netif_dbg(dev, ifdown, dev->net, "free pdata\n");
1239 1240 1241 1242 1243 1244
		kfree(pdata);
		pdata = NULL;
		dev->data[0] = 0;
	}
}

1245
static u32 smsc_crc(const u8 *buffer, size_t len, int filter)
1246
{
1247 1248
	u32 crc = bitrev16(crc16(0xFFFF, buffer, len));
	return crc << ((filter % 2) * 16);
1249 1250
}

1251 1252 1253 1254 1255
static int smsc95xx_enable_phy_wakeup_interrupts(struct usbnet *dev, u16 mask)
{
	struct mii_if_info *mii = &dev->mii;
	int ret;

J
Joe Perches 已提交
1256
	netdev_dbg(dev->net, "enabling PHY wakeup interrupts\n");
1257 1258 1259

	/* read to clear */
	ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_SRC);
S
Steve Glendinning 已提交
1260 1261 1262 1263
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PHY_INT_SRC\n");
		return ret;
	}
1264 1265 1266

	/* enable interrupt source */
	ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_MASK);
S
Steve Glendinning 已提交
1267 1268 1269 1270
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PHY_INT_MASK\n");
		return ret;
	}
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285

	ret |= mask;

	smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_INT_MASK, ret);

	return 0;
}

static int smsc95xx_link_ok_nopm(struct usbnet *dev)
{
	struct mii_if_info *mii = &dev->mii;
	int ret;

	/* first, a dummy read, needed to latch some MII phys */
	ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
S
Steve Glendinning 已提交
1286 1287 1288 1289
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading MII_BMSR\n");
		return ret;
	}
1290 1291

	ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
S
Steve Glendinning 已提交
1292 1293 1294 1295
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading MII_BMSR\n");
		return ret;
	}
1296 1297 1298 1299

	return !!(ret & BMSR_LSTATUS);
}

1300 1301 1302 1303 1304 1305 1306
static int smsc95xx_enter_suspend0(struct usbnet *dev)
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	u32 val;
	int ret;

	ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1307 1308 1309 1310
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PM_CTRL\n");
		return ret;
	}
1311 1312 1313 1314 1315

	val &= (~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_));
	val |= PM_CTL_SUS_MODE_0;

	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1316 1317 1318 1319
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
		return ret;
	}
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329

	/* clear wol status */
	val &= ~PM_CTL_WUPS_;
	val |= PM_CTL_WUPS_WOL_;

	/* enable energy detection */
	if (pdata->wolopts & WAKE_PHY)
		val |= PM_CTL_WUPS_ED_;

	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1330 1331 1332 1333
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
		return ret;
	}
1334 1335 1336

	/* read back PM_CTRL */
	ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1337 1338
	if (ret < 0)
		netdev_warn(dev->net, "Error reading PM_CTRL\n");
1339

S
Steve Glendinning 已提交
1340
	return ret;
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
}

static int smsc95xx_enter_suspend1(struct usbnet *dev)
{
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	struct mii_if_info *mii = &dev->mii;
	u32 val;
	int ret;

	/* reconfigure link pulse detection timing for
	 * compatibility with non-standard link partners
	 */
	if (pdata->features & FEATURE_PHY_NLP_CROSSOVER)
		smsc95xx_mdio_write_nopm(dev->net, mii->phy_id,	PHY_EDPD_CONFIG,
			PHY_EDPD_CONFIG_DEFAULT);

	/* enable energy detect power-down mode */
	ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS);
S
Steve Glendinning 已提交
1359 1360 1361 1362
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PHY_MODE_CTRL_STS\n");
		return ret;
	}
1363 1364 1365 1366 1367 1368 1369

	ret |= MODE_CTRL_STS_EDPWRDOWN_;

	smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS, ret);

	/* enter SUSPEND1 mode */
	ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1370 1371 1372 1373
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PM_CTRL\n");
		return ret;
	}
1374 1375 1376 1377 1378

	val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
	val |= PM_CTL_SUS_MODE_1;

	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1379 1380 1381 1382
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
		return ret;
	}
1383 1384 1385 1386 1387 1388

	/* clear wol status, enable energy detection */
	val &= ~PM_CTL_WUPS_;
	val |= (PM_CTL_WUPS_ED_ | PM_CTL_ED_EN_);

	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1389 1390
	if (ret < 0)
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
1391

S
Steve Glendinning 已提交
1392
	return ret;
1393 1394 1395 1396 1397 1398 1399 1400
}

static int smsc95xx_enter_suspend2(struct usbnet *dev)
{
	u32 val;
	int ret;

	ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1401 1402 1403 1404
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PM_CTRL\n");
		return ret;
	}
1405 1406 1407 1408 1409

	val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
	val |= PM_CTL_SUS_MODE_2;

	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1410 1411
	if (ret < 0)
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
1412

S
Steve Glendinning 已提交
1413
	return ret;
1414 1415
}

1416 1417 1418
static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
{
	struct usbnet *dev = usb_get_intfdata(intf);
1419
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1420
	u32 val, link_up;
1421 1422 1423
	int ret;

	ret = usbnet_suspend(intf, message);
S
Steve Glendinning 已提交
1424 1425 1426 1427
	if (ret < 0) {
		netdev_warn(dev->net, "usbnet_suspend error\n");
		return ret;
	}
1428

1429 1430 1431 1432 1433 1434 1435 1436
	/* determine if link is up using only _nopm functions */
	link_up = smsc95xx_link_ok_nopm(dev);

	/* if no wol options set, or if link is down and we're not waking on
	 * PHY activity, enter lowest power SUSPEND2 mode
	 */
	if (!(pdata->wolopts & SUPPORTED_WAKE) ||
		!(link_up || (pdata->wolopts & WAKE_PHY))) {
J
Joe Perches 已提交
1437
		netdev_info(dev->net, "entering SUSPEND2 mode\n");
1438 1439

		/* disable energy detect (link up) & wake up events */
1440
		ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
S
Steve Glendinning 已提交
1441 1442 1443 1444
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading WUCSR\n");
			goto done;
		}
1445 1446 1447

		val &= ~(WUCSR_MPEN_ | WUCSR_WAKE_EN_);

1448
		ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
S
Steve Glendinning 已提交
1449 1450 1451 1452
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing WUCSR\n");
			goto done;
		}
1453

1454
		ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1455 1456 1457 1458
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading PM_CTRL\n");
			goto done;
		}
1459 1460 1461

		val &= ~(PM_CTL_ED_EN_ | PM_CTL_WOL_EN_);

1462
		ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1463 1464 1465 1466
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing PM_CTRL\n");
			goto done;
		}
1467

1468 1469
		ret = smsc95xx_enter_suspend2(dev);
		goto done;
1470 1471
	}

1472 1473 1474
	if (pdata->wolopts & WAKE_PHY) {
		ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
			(PHY_INT_MASK_ANEG_COMP_ | PHY_INT_MASK_LINK_DOWN_));
S
Steve Glendinning 已提交
1475 1476 1477 1478
		if (ret < 0) {
			netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
			goto done;
		}
1479 1480 1481 1482 1483

		/* if link is down then configure EDPD and enter SUSPEND1,
		 * otherwise enter SUSPEND0 below
		 */
		if (!link_up) {
J
Joe Perches 已提交
1484
			netdev_info(dev->net, "entering SUSPEND1 mode\n");
1485 1486
			ret = smsc95xx_enter_suspend1(dev);
			goto done;
1487 1488 1489
		}
	}

1490
	if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
1491
		u32 *filter_mask = kzalloc(sizeof(u32) * 32, GFP_KERNEL);
1492 1493 1494
		u32 command[2];
		u32 offset[2];
		u32 crc[4];
1495 1496 1497
		int wuff_filter_count =
			(pdata->features & FEATURE_8_WAKEUP_FILTERS) ?
			LAN9500A_WUFF_NUM : LAN9500_WUFF_NUM;
1498 1499
		int i, filter = 0;

1500 1501
		if (!filter_mask) {
			netdev_warn(dev->net, "Unable to allocate filter_mask\n");
1502 1503
			ret = -ENOMEM;
			goto done;
1504 1505
		}

1506 1507 1508 1509
		memset(command, 0, sizeof(command));
		memset(offset, 0, sizeof(offset));
		memset(crc, 0, sizeof(crc));

1510 1511
		if (pdata->wolopts & WAKE_BCAST) {
			const u8 bcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
J
Joe Perches 已提交
1512
			netdev_info(dev->net, "enabling broadcast detection\n");
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
			filter_mask[filter * 4] = 0x003F;
			filter_mask[filter * 4 + 1] = 0x00;
			filter_mask[filter * 4 + 2] = 0x00;
			filter_mask[filter * 4 + 3] = 0x00;
			command[filter/4] |= 0x05UL << ((filter % 4) * 8);
			offset[filter/4] |= 0x00 << ((filter % 4) * 8);
			crc[filter/2] |= smsc_crc(bcast, 6, filter);
			filter++;
		}

		if (pdata->wolopts & WAKE_MCAST) {
			const u8 mcast[] = {0x01, 0x00, 0x5E};
J
Joe Perches 已提交
1525
			netdev_info(dev->net, "enabling multicast detection\n");
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
			filter_mask[filter * 4] = 0x0007;
			filter_mask[filter * 4 + 1] = 0x00;
			filter_mask[filter * 4 + 2] = 0x00;
			filter_mask[filter * 4 + 3] = 0x00;
			command[filter/4] |= 0x09UL << ((filter % 4) * 8);
			offset[filter/4] |= 0x00  << ((filter % 4) * 8);
			crc[filter/2] |= smsc_crc(mcast, 3, filter);
			filter++;
		}

		if (pdata->wolopts & WAKE_ARP) {
			const u8 arp[] = {0x08, 0x06};
J
Joe Perches 已提交
1538
			netdev_info(dev->net, "enabling ARP detection\n");
1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
			filter_mask[filter * 4] = 0x0003;
			filter_mask[filter * 4 + 1] = 0x00;
			filter_mask[filter * 4 + 2] = 0x00;
			filter_mask[filter * 4 + 3] = 0x00;
			command[filter/4] |= 0x05UL << ((filter % 4) * 8);
			offset[filter/4] |= 0x0C << ((filter % 4) * 8);
			crc[filter/2] |= smsc_crc(arp, 2, filter);
			filter++;
		}

		if (pdata->wolopts & WAKE_UCAST) {
J
Joe Perches 已提交
1550
			netdev_info(dev->net, "enabling unicast detection\n");
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
			filter_mask[filter * 4] = 0x003F;
			filter_mask[filter * 4 + 1] = 0x00;
			filter_mask[filter * 4 + 2] = 0x00;
			filter_mask[filter * 4 + 3] = 0x00;
			command[filter/4] |= 0x01UL << ((filter % 4) * 8);
			offset[filter/4] |= 0x00 << ((filter % 4) * 8);
			crc[filter/2] |= smsc_crc(dev->net->dev_addr, ETH_ALEN, filter);
			filter++;
		}

1561
		for (i = 0; i < (wuff_filter_count * 4); i++) {
1562
			ret = smsc95xx_write_reg_nopm(dev, WUFF, filter_mask[i]);
S
Steve Glendinning 已提交
1563 1564
			if (ret < 0) {
				netdev_warn(dev->net, "Error writing WUFF\n");
1565
				kfree(filter_mask);
S
Steve Glendinning 已提交
1566 1567
				goto done;
			}
1568
		}
1569
		kfree(filter_mask);
1570

1571
		for (i = 0; i < (wuff_filter_count / 4); i++) {
1572
			ret = smsc95xx_write_reg_nopm(dev, WUFF, command[i]);
S
Steve Glendinning 已提交
1573 1574 1575 1576
			if (ret < 0) {
				netdev_warn(dev->net, "Error writing WUFF\n");
				goto done;
			}
1577 1578
		}

1579
		for (i = 0; i < (wuff_filter_count / 4); i++) {
1580
			ret = smsc95xx_write_reg_nopm(dev, WUFF, offset[i]);
S
Steve Glendinning 已提交
1581 1582 1583 1584
			if (ret < 0) {
				netdev_warn(dev->net, "Error writing WUFF\n");
				goto done;
			}
1585 1586
		}

1587
		for (i = 0; i < (wuff_filter_count / 2); i++) {
1588
			ret = smsc95xx_write_reg_nopm(dev, WUFF, crc[i]);
S
Steve Glendinning 已提交
1589 1590 1591 1592
			if (ret < 0) {
				netdev_warn(dev->net, "Error writing WUFF\n");
				goto done;
			}
1593 1594 1595
		}

		/* clear any pending pattern match packet status */
1596
		ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
S
Steve Glendinning 已提交
1597 1598 1599 1600
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading WUCSR\n");
			goto done;
		}
1601 1602 1603

		val |= WUCSR_WUFR_;

1604
		ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
S
Steve Glendinning 已提交
1605 1606 1607 1608
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing WUCSR\n");
			goto done;
		}
1609 1610
	}

1611 1612
	if (pdata->wolopts & WAKE_MAGIC) {
		/* clear any pending magic packet status */
1613
		ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
S
Steve Glendinning 已提交
1614 1615 1616 1617
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading WUCSR\n");
			goto done;
		}
1618 1619 1620

		val |= WUCSR_MPR_;

1621
		ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
S
Steve Glendinning 已提交
1622 1623 1624 1625
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing WUCSR\n");
			goto done;
		}
1626 1627
	}

1628
	/* enable/disable wakeup sources */
1629
	ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
S
Steve Glendinning 已提交
1630 1631 1632 1633
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading WUCSR\n");
		goto done;
	}
1634

1635
	if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
J
Joe Perches 已提交
1636
		netdev_info(dev->net, "enabling pattern match wakeup\n");
1637 1638
		val |= WUCSR_WAKE_EN_;
	} else {
J
Joe Perches 已提交
1639
		netdev_info(dev->net, "disabling pattern match wakeup\n");
1640 1641 1642
		val &= ~WUCSR_WAKE_EN_;
	}

1643
	if (pdata->wolopts & WAKE_MAGIC) {
J
Joe Perches 已提交
1644
		netdev_info(dev->net, "enabling magic packet wakeup\n");
1645 1646
		val |= WUCSR_MPEN_;
	} else {
J
Joe Perches 已提交
1647
		netdev_info(dev->net, "disabling magic packet wakeup\n");
1648 1649 1650
		val &= ~WUCSR_MPEN_;
	}

1651
	ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
S
Steve Glendinning 已提交
1652 1653 1654 1655
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing WUCSR\n");
		goto done;
	}
1656 1657

	/* enable wol wakeup source */
1658
	ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1659 1660 1661 1662
	if (ret < 0) {
		netdev_warn(dev->net, "Error reading PM_CTRL\n");
		goto done;
	}
1663 1664 1665

	val |= PM_CTL_WOL_EN_;

1666 1667 1668 1669
	/* phy energy detect wakeup source */
	if (pdata->wolopts & WAKE_PHY)
		val |= PM_CTL_ED_EN_;

1670
	ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1671 1672 1673 1674
	if (ret < 0) {
		netdev_warn(dev->net, "Error writing PM_CTRL\n");
		goto done;
	}
1675

1676
	/* enable receiver to enable frame reception */
1677
	smsc95xx_start_rx_path(dev, 1);
1678 1679

	/* some wol options are enabled, so enter SUSPEND0 */
J
Joe Perches 已提交
1680
	netdev_info(dev->net, "entering SUSPEND0 mode\n");
1681 1682 1683 1684 1685 1686
	ret = smsc95xx_enter_suspend0(dev);

done:
	if (ret)
		usbnet_resume(intf);
	return ret;
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697
}

static int smsc95xx_resume(struct usb_interface *intf)
{
	struct usbnet *dev = usb_get_intfdata(intf);
	struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
	int ret;
	u32 val;

	BUG_ON(!dev);

1698 1699
	if (pdata->wolopts) {
		/* clear wake-up sources */
1700
		ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
S
Steve Glendinning 已提交
1701 1702 1703 1704
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading WUCSR\n");
			return ret;
		}
1705

1706
		val &= ~(WUCSR_WAKE_EN_ | WUCSR_MPEN_);
1707

1708
		ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
S
Steve Glendinning 已提交
1709 1710 1711 1712
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing WUCSR\n");
			return ret;
		}
1713 1714

		/* clear wake-up status */
1715
		ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
S
Steve Glendinning 已提交
1716 1717 1718 1719
		if (ret < 0) {
			netdev_warn(dev->net, "Error reading PM_CTRL\n");
			return ret;
		}
1720 1721 1722 1723

		val &= ~PM_CTL_WOL_EN_;
		val |= PM_CTL_WUPS_;

1724
		ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
S
Steve Glendinning 已提交
1725 1726 1727 1728
		if (ret < 0) {
			netdev_warn(dev->net, "Error writing PM_CTRL\n");
			return ret;
		}
1729 1730
	}

1731
	ret = usbnet_resume(intf);
S
Steve Glendinning 已提交
1732 1733
	if (ret < 0)
		netdev_warn(dev->net, "usbnet_resume error\n");
1734

S
Steve Glendinning 已提交
1735
	return ret;
1736 1737
}

1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
{
	skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
	skb->ip_summed = CHECKSUM_COMPLETE;
	skb_trim(skb, skb->len - 2);
}

static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
{
	while (skb->len > 0) {
		u32 header, align_count;
		struct sk_buff *ax_skb;
		unsigned char *packet;
		u16 size;

		memcpy(&header, skb->data, sizeof(header));
		le32_to_cpus(&header);
		skb_pull(skb, 4 + NET_IP_ALIGN);
		packet = skb->data;

		/* get the packet length */
		size = (u16)((header & RX_STS_FL_) >> 16);
		align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;

		if (unlikely(header & RX_STS_ES_)) {
1763 1764
			netif_dbg(dev, rx_err, dev->net,
				  "Error header=0x%08x\n", header);
1765 1766
			dev->net->stats.rx_errors++;
			dev->net->stats.rx_dropped++;
1767 1768

			if (header & RX_STS_CRC_) {
1769
				dev->net->stats.rx_crc_errors++;
1770 1771
			} else {
				if (header & (RX_STS_TL_ | RX_STS_RF_))
1772
					dev->net->stats.rx_frame_errors++;
1773 1774 1775

				if ((header & RX_STS_LE_) &&
					(!(header & RX_STS_FT_)))
1776
					dev->net->stats.rx_length_errors++;
1777 1778 1779 1780
			}
		} else {
			/* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
			if (unlikely(size > (ETH_FRAME_LEN + 12))) {
1781 1782
				netif_dbg(dev, rx_err, dev->net,
					  "size err header=0x%08x\n", header);
1783 1784 1785 1786 1787
				return 0;
			}

			/* last frame in this batch */
			if (skb->len == size) {
1788
				if (dev->net->features & NETIF_F_RXCSUM)
1789
					smsc95xx_rx_csum_offload(skb);
1790
				skb_trim(skb, skb->len - 4); /* remove fcs */
1791 1792 1793 1794 1795 1796 1797
				skb->truesize = size + sizeof(struct sk_buff);

				return 1;
			}

			ax_skb = skb_clone(skb, GFP_ATOMIC);
			if (unlikely(!ax_skb)) {
1798
				netdev_warn(dev->net, "Error allocating skb\n");
1799 1800 1801 1802 1803 1804 1805
				return 0;
			}

			ax_skb->len = size;
			ax_skb->data = packet;
			skb_set_tail_pointer(ax_skb, size);

1806
			if (dev->net->features & NETIF_F_RXCSUM)
1807
				smsc95xx_rx_csum_offload(ax_skb);
1808
			skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
			ax_skb->truesize = size + sizeof(struct sk_buff);

			usbnet_skb_return(dev, ax_skb);
		}

		skb_pull(skb, size);

		/* padding bytes before the next frame starts */
		if (skb->len)
			skb_pull(skb, align_count);
	}

	if (unlikely(skb->len < 0)) {
1822
		netdev_warn(dev->net, "invalid rx length<0 %d\n", skb->len);
1823 1824 1825 1826 1827 1828
		return 0;
	}

	return 1;
}

1829 1830
static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
{
1831 1832
	u16 low_16 = (u16)skb_checksum_start_offset(skb);
	u16 high_16 = low_16 + skb->csum_offset;
1833 1834 1835
	return (high_16 << 16) | low_16;
}

1836 1837 1838
static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
					 struct sk_buff *skb, gfp_t flags)
{
1839
	bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
1840
	int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
1841 1842
	u32 tx_cmd_a, tx_cmd_b;

1843 1844 1845 1846
	/* We do not advertise SG, so skbs should be already linearized */
	BUG_ON(skb_shinfo(skb)->nr_frags);

	if (skb_headroom(skb) < overhead) {
1847
		struct sk_buff *skb2 = skb_copy_expand(skb,
1848
			overhead, 0, flags);
1849 1850 1851 1852 1853 1854
		dev_kfree_skb_any(skb);
		skb = skb2;
		if (!skb)
			return NULL;
	}

1855
	if (csum) {
1856 1857 1858
		if (skb->len <= 45) {
			/* workaround - hardware tx checksum does not work
			 * properly with extremely small packets */
1859
			long csstart = skb_checksum_start_offset(skb);
1860 1861 1862 1863 1864 1865 1866 1867 1868
			__wsum calc = csum_partial(skb->data + csstart,
				skb->len - csstart, 0);
			*((__sum16 *)(skb->data + csstart
				+ skb->csum_offset)) = csum_fold(calc);

			csum = false;
		} else {
			u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
			skb_push(skb, 4);
1869
			cpu_to_le32s(&csum_preamble);
1870 1871
			memcpy(skb->data, &csum_preamble, 4);
		}
1872 1873
	}

1874 1875
	skb_push(skb, 4);
	tx_cmd_b = (u32)(skb->len - 4);
1876 1877
	if (csum)
		tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
	cpu_to_le32s(&tx_cmd_b);
	memcpy(skb->data, &tx_cmd_b, 4);

	skb_push(skb, 4);
	tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
		TX_CMD_A_LAST_SEG_;
	cpu_to_le32s(&tx_cmd_a);
	memcpy(skb->data, &tx_cmd_a, 4);

	return skb;
}

static const struct driver_info smsc95xx_info = {
	.description	= "smsc95xx USB 2.0 Ethernet",
	.bind		= smsc95xx_bind,
	.unbind		= smsc95xx_unbind,
	.link_reset	= smsc95xx_link_reset,
	.reset		= smsc95xx_reset,
	.rx_fixup	= smsc95xx_rx_fixup,
	.tx_fixup	= smsc95xx_tx_fixup,
	.status		= smsc95xx_status,
1899
	.flags		= FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
1900 1901 1902 1903 1904 1905 1906 1907
};

static const struct usb_device_id products[] = {
	{
		/* SMSC9500 USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9500),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
	{
		/* SMSC9505 USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9505),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9500A USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9E00),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9505A USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9E01),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
1923 1924 1925 1926 1927
	{
		/* SMSC9512/9514 USB Hub & Ethernet Device */
		USB_DEVICE(0x0424, 0xec00),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977
	{
		/* SMSC9500 USB Ethernet Device (SAL10) */
		USB_DEVICE(0x0424, 0x9900),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9505 USB Ethernet Device (SAL10) */
		USB_DEVICE(0x0424, 0x9901),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9500A USB Ethernet Device (SAL10) */
		USB_DEVICE(0x0424, 0x9902),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9505A USB Ethernet Device (SAL10) */
		USB_DEVICE(0x0424, 0x9903),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
		USB_DEVICE(0x0424, 0x9904),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9500A USB Ethernet Device (HAL) */
		USB_DEVICE(0x0424, 0x9905),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9505A USB Ethernet Device (HAL) */
		USB_DEVICE(0x0424, 0x9906),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9500 USB Ethernet Device (Alternate ID) */
		USB_DEVICE(0x0424, 0x9907),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9500A USB Ethernet Device (Alternate ID) */
		USB_DEVICE(0x0424, 0x9908),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
		USB_DEVICE(0x0424, 0x9909),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
	{
		/* SMSC LAN9530 USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9530),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC LAN9730 USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9730),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
	{
		/* SMSC LAN89530 USB Ethernet Device */
		USB_DEVICE(0x0424, 0x9E08),
		.driver_info = (unsigned long) &smsc95xx_info,
	},
1993 1994 1995 1996 1997 1998 1999 2000
	{ },		/* END */
};
MODULE_DEVICE_TABLE(usb, products);

static struct usb_driver smsc95xx_driver = {
	.name		= "smsc95xx",
	.id_table	= products,
	.probe		= usbnet_probe,
2001
	.suspend	= smsc95xx_suspend,
2002 2003
	.resume		= smsc95xx_resume,
	.reset_resume	= smsc95xx_resume,
2004
	.disconnect	= usbnet_disconnect,
2005
	.disable_hub_initiated_lpm = 1,
2006 2007
};

2008
module_usb_driver(smsc95xx_driver);
2009 2010

MODULE_AUTHOR("Nancy Lin");
2011
MODULE_AUTHOR("Steve Glendinning <steve.glendinning@shawell.net>");
2012 2013
MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
MODULE_LICENSE("GPL");