asix_devices.c 36.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
2 3
/*
 * ASIX AX8817X based USB 2.0 Ethernet Devices
4
 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
5
 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
6
 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
7 8 9
 * Copyright (c) 2002-2003 TiVo Inc.
 */

C
Christian Riesch 已提交
10
#include "asix.h"
11 12 13 14 15 16 17 18 19 20 21 22

#define PHY_MODE_MARVELL	0x0000
#define MII_MARVELL_LED_CTRL	0x0018
#define MII_MARVELL_STATUS	0x001b
#define MII_MARVELL_CTRL	0x0014

#define MARVELL_LED_MANUAL	0x0019

#define MARVELL_STATUS_HWCFG	0x0004

#define MARVELL_CTRL_TXDELAY	0x0002
#define MARVELL_CTRL_RXDELAY	0x0080
23

24
#define	PHY_MODE_RTL8211CL	0x000C
25

26 27 28 29 30 31 32 33 34
#define AX88772A_PHY14H		0x14
#define AX88772A_PHY14H_DEFAULT 0x442C

#define AX88772A_PHY15H		0x15
#define AX88772A_PHY15H_DEFAULT 0x03C8

#define AX88772A_PHY16H		0x16
#define AX88772A_PHY16H_DEFAULT 0x4044

35
struct ax88172_int_data {
A
Al Viro 已提交
36
	__le16 res1;
37
	u8 link;
A
Al Viro 已提交
38
	__le16 res2;
39
	u8 status;
A
Al Viro 已提交
40
	__le16 res3;
41
} __packed;
42

43 44 45 46 47 48 49 50 51 52 53
static void asix_status(struct usbnet *dev, struct urb *urb)
{
	struct ax88172_int_data *event;
	int link;

	if (urb->actual_length < 8)
		return;

	event = urb->transfer_buffer;
	link = event->link & 0x01;
	if (netif_carrier_ok(dev->net) != link) {
54
		usbnet_link_change(dev, link, 1);
55
		netdev_dbg(dev->net, "Link Status is: %d\n", link);
56 57 58
	}
}

59 60 61 62 63 64 65 66 67 68
static void asix_set_netdev_dev_addr(struct usbnet *dev, u8 *addr)
{
	if (is_valid_ether_addr(addr)) {
		memcpy(dev->net->dev_addr, addr, ETH_ALEN);
	} else {
		netdev_info(dev->net, "invalid hw address, using random\n");
		eth_hw_addr_random(dev->net);
	}
}

69 70
/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
static u32 asix_get_phyid(struct usbnet *dev)
71
{
72 73
	int phy_reg;
	u32 phy_id;
74
	int i;
75

76 77 78
	/* Poll for the rare case the FW or phy isn't ready yet.  */
	for (i = 0; i < 100; i++) {
		phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
79 80
		if (phy_reg < 0)
			return 0;
81 82 83 84 85 86
		if (phy_reg != 0 && phy_reg != 0xFFFF)
			break;
		mdelay(1);
	}

	if (phy_reg <= 0 || phy_reg == 0xFFFF)
87
		return 0;
88

89
	phy_id = (phy_reg & 0xffff) << 16;
90

91 92 93 94 95 96 97
	phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
	if (phy_reg < 0)
		return 0;

	phy_id |= (phy_reg & 0xffff);

	return phy_id;
98 99
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
static u32 asix_get_link(struct net_device *net)
{
	struct usbnet *dev = netdev_priv(net);

	return mii_link_ok(&dev->mii);
}

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

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

/* We need to override some ethtool_ops so we require our
   own structure so we don't interfere with other usbnet
   devices that may be connected at the same time. */
117
static const struct ethtool_ops ax88172_ethtool_ops = {
118 119 120
	.get_drvinfo		= asix_get_drvinfo,
	.get_link		= asix_get_link,
	.get_msglevel		= usbnet_get_msglevel,
121
	.set_msglevel		= usbnet_set_msglevel,
122 123 124 125
	.get_wol		= asix_get_wol,
	.set_wol		= asix_set_wol,
	.get_eeprom_len		= asix_get_eeprom_len,
	.get_eeprom		= asix_get_eeprom,
126
	.set_eeprom		= asix_set_eeprom,
127
	.nway_reset		= usbnet_nway_reset,
128 129
	.get_link_ksettings	= usbnet_get_link_ksettings_mii,
	.set_link_ksettings	= usbnet_set_link_ksettings_mii,
130 131
};

132
static void ax88172_set_multicast(struct net_device *net)
133 134
{
	struct usbnet *dev = netdev_priv(net);
135 136
	struct asix_data *data = (struct asix_data *)&dev->data;
	u8 rx_ctl = 0x8c;
137

138 139
	if (net->flags & IFF_PROMISC) {
		rx_ctl |= 0x01;
140
	} else if (net->flags & IFF_ALLMULTI ||
141
		   netdev_mc_count(net) > AX_MAX_MCAST) {
142
		rx_ctl |= 0x02;
143
	} else if (netdev_mc_empty(net)) {
144 145 146 147 148 149
		/* just broadcast and directed */
	} else {
		/* We use the 20 byte dev->data
		 * for our 8 byte filter buffer
		 * to avoid allocating memory that
		 * is tricky to free later */
150
		struct netdev_hw_addr *ha;
151 152 153 154 155
		u32 crc_bits;

		memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);

		/* Build the multicast hash filter. */
156 157
		netdev_for_each_mc_addr(ha, net) {
			crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
			data->multi_filter[crc_bits >> 3] |=
			    1 << (crc_bits & 7);
		}

		asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
				   AX_MCAST_FILTER_SIZE, data->multi_filter);

		rx_ctl |= 0x10;
	}

	asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
}

static int ax88172_link_reset(struct usbnet *dev)
{
	u8 mode;
174
	struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
175 176 177 178 179 180 181 182

	mii_check_media(&dev->mii, 1, 1);
	mii_ethtool_gset(&dev->mii, &ecmd);
	mode = AX88172_MEDIUM_DEFAULT;

	if (ecmd.duplex != DUPLEX_FULL)
		mode |= ~AX88172_MEDIUM_FD;

183 184
	netdev_dbg(dev->net, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
		   ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
185

R
Robert Foss 已提交
186
	asix_write_medium_mode(dev, mode, 0);
187 188

	return 0;
189 190
}

191 192 193 194 195 196
static const struct net_device_ops ax88172_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,
197
	.ndo_get_stats64	= dev_get_tstats64,
198 199 200
	.ndo_set_mac_address 	= eth_mac_addr,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_do_ioctl		= asix_ioctl,
201
	.ndo_set_rx_mode	= ax88172_set_multicast,
202 203
};

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
static void asix_phy_reset(struct usbnet *dev, unsigned int reset_bits)
{
	unsigned int timeout = 5000;

	asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, reset_bits);

	/* give phy_id a chance to process reset */
	udelay(500);

	/* See IEEE 802.3 "22.2.4.1.1 Reset": 500ms max */
	while (timeout--) {
		if (asix_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR)
							& BMCR_RESET)
			udelay(100);
		else
			return;
	}

	netdev_err(dev->net, "BMCR_RESET timeout on phy_id %d\n",
		   dev->mii.phy_id);
}

226
static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
227 228
{
	int ret = 0;
229
	u8 buf[ETH_ALEN] = {0};
230 231 232 233 234 235 236
	int i;
	unsigned long gpio_bits = dev->driver_info->data;

	usbnet_get_endpoints(dev,intf);

	/* Toggle the GPIOs in a manufacturer/model specific way */
	for (i = 2; i >= 0; i--) {
237
		ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
R
Robert Foss 已提交
238
				(gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL, 0);
239
		if (ret < 0)
A
Al Viro 已提交
240
			goto out;
241 242 243
		msleep(5);
	}

R
Robert Foss 已提交
244
	ret = asix_write_rx_ctl(dev, 0x80, 0);
245
	if (ret < 0)
A
Al Viro 已提交
246
		goto out;
247 248

	/* Get the MAC address */
R
Robert Foss 已提交
249 250
	ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID,
			    0, 0, ETH_ALEN, buf, 0);
251
	if (ret < 0) {
252 253
		netdev_dbg(dev->net, "read AX_CMD_READ_NODE_ID failed: %d\n",
			   ret);
A
Al Viro 已提交
254
		goto out;
255
	}
256 257

	asix_set_netdev_dev_addr(dev, buf);
258 259 260

	/* Initialize MII structure */
	dev->mii.dev = dev->net;
261 262
	dev->mii.mdio_read = asix_mdio_read;
	dev->mii.mdio_write = asix_mdio_write;
263 264
	dev->mii.phy_id_mask = 0x3f;
	dev->mii.reg_num_mask = 0x1f;
265 266 267 268

	dev->mii.phy_id = asix_read_phy_addr(dev, true);
	if (dev->mii.phy_id < 0)
		return dev->mii.phy_id;
269

270
	dev->net->netdev_ops = &ax88172_netdev_ops;
271
	dev->net->ethtool_ops = &ax88172_ethtool_ops;
E
Eric Dumazet 已提交
272 273
	dev->net->needed_headroom = 4; /* cf asix_tx_fixup() */
	dev->net->needed_tailroom = 4; /* cf asix_tx_fixup() */
274

275
	asix_phy_reset(dev, BMCR_RESET);
276
	asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
277 278 279 280
		ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
	mii_nway_restart(&dev->mii);

	return 0;
A
Al Viro 已提交
281 282

out:
283 284 285
	return ret;
}

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
static void ax88772_ethtool_get_strings(struct net_device *netdev, u32 sset,
					u8 *data)
{
	switch (sset) {
	case ETH_SS_TEST:
		net_selftest_get_strings(data);
		break;
	}
}

static int ax88772_ethtool_get_sset_count(struct net_device *ndev, int sset)
{
	switch (sset) {
	case ETH_SS_TEST:
		return net_selftest_get_count();
	default:
		return -EOPNOTSUPP;
	}
}

306
static const struct ethtool_ops ax88772_ethtool_ops = {
307
	.get_drvinfo		= asix_get_drvinfo,
308
	.get_link		= usbnet_get_link,
309 310
	.get_msglevel		= usbnet_get_msglevel,
	.set_msglevel		= usbnet_set_msglevel,
311 312 313 314
	.get_wol		= asix_get_wol,
	.set_wol		= asix_set_wol,
	.get_eeprom_len		= asix_get_eeprom_len,
	.get_eeprom		= asix_get_eeprom,
315
	.set_eeprom		= asix_set_eeprom,
316 317 318
	.nway_reset		= phy_ethtool_nway_reset,
	.get_link_ksettings	= phy_ethtool_get_link_ksettings,
	.set_link_ksettings	= phy_ethtool_set_link_ksettings,
319 320 321
	.self_test		= net_selftest,
	.get_strings		= ax88772_ethtool_get_strings,
	.get_sset_count		= ax88772_ethtool_get_sset_count,
322 323
};

324
static int ax88772_reset(struct usbnet *dev)
R
Robert Foss 已提交
325 326
{
	struct asix_data *data = (struct asix_data *)&dev->data;
327
	struct asix_common_private *priv = dev->driver_priv;
R
Robert Foss 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341
	int ret;

	/* Rewrite MAC address */
	ether_addr_copy(data->mac_addr, dev->net->dev_addr);
	ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0,
			     ETH_ALEN, data->mac_addr, 0);
	if (ret < 0)
		goto out;

	/* Set RX_CTL to default values with 2k buffer, and enable cactus */
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, 0);
	if (ret < 0)
		goto out;

342
	ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT, 0);
R
Robert Foss 已提交
343 344 345
	if (ret < 0)
		goto out;

346 347
	phy_start(priv->phydev);

R
Robert Foss 已提交
348 349 350 351 352 353 354
	return 0;

out:
	return ret;
}

static int ax88772_hw_reset(struct usbnet *dev, int in_pm)
355
{
356
	struct asix_data *data = (struct asix_data *)&dev->data;
357
	struct asix_common_private *priv = dev->driver_priv;
358
	u16 rx_ctl;
359
	int ret;
360

R
Robert Foss 已提交
361 362
	ret = asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_2 |
			      AX_GPIO_GPO2EN, 5, in_pm);
363
	if (ret < 0)
A
Al Viro 已提交
364
		goto out;
365

366
	ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, priv->embd_phy,
R
Robert Foss 已提交
367
			     0, 0, NULL, in_pm);
368
	if (ret < 0) {
369
		netdev_dbg(dev->net, "Select PHY #1 failed: %d\n", ret);
A
Al Viro 已提交
370
		goto out;
371 372
	}

373
	if (priv->embd_phy) {
R
Robert Foss 已提交
374 375 376
		ret = asix_sw_reset(dev, AX_SWRESET_IPPD, in_pm);
		if (ret < 0)
			goto out;
377

R
Robert Foss 已提交
378
		usleep_range(10000, 11000);
379

R
Robert Foss 已提交
380 381 382
		ret = asix_sw_reset(dev, AX_SWRESET_CLEAR, in_pm);
		if (ret < 0)
			goto out;
383

R
Robert Foss 已提交
384
		msleep(60);
385

R
Robert Foss 已提交
386 387
		ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL,
				    in_pm);
388
		if (ret < 0)
A
Al Viro 已提交
389
			goto out;
390
	} else {
R
Robert Foss 已提交
391 392
		ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL,
				    in_pm);
393
		if (ret < 0)
A
Al Viro 已提交
394
			goto out;
395
	}
396 397

	msleep(150);
R
Robert Foss 已提交
398 399 400 401 402 403 404 405 406 407 408 409

	if (in_pm && (!asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
					   MII_PHYSID1))){
		ret = -EIO;
		goto out;
	}

	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, in_pm);
	if (ret < 0)
		goto out;

	ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT, in_pm);
410
	if (ret < 0)
A
Al Viro 已提交
411
		goto out;
412

R
Robert Foss 已提交
413 414 415 416 417 418 419
	ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
			     AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
			     AX88772_IPG2_DEFAULT, 0, NULL, in_pm);
	if (ret < 0) {
		netdev_dbg(dev->net, "Write IPG,IPG1,IPG2 failed: %d\n", ret);
		goto out;
	}
420

R
Robert Foss 已提交
421 422 423 424
	/* Rewrite MAC address */
	ether_addr_copy(data->mac_addr, dev->net->dev_addr);
	ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0,
			     ETH_ALEN, data->mac_addr, in_pm);
425
	if (ret < 0)
A
Al Viro 已提交
426
		goto out;
427

R
Robert Foss 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
	/* Set RX_CTL to default values with 2k buffer, and enable cactus */
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, in_pm);
	if (ret < 0)
		goto out;

	rx_ctl = asix_read_rx_ctl(dev, in_pm);
	netdev_dbg(dev->net, "RX_CTL is 0x%04x after all initializations\n",
		   rx_ctl);

	rx_ctl = asix_read_medium_status(dev, in_pm);
	netdev_dbg(dev->net,
		   "Medium Status is 0x%04x after all initializations\n",
		   rx_ctl);

	return 0;

out:
	return ret;
}

static int ax88772a_hw_reset(struct usbnet *dev, int in_pm)
{
	struct asix_data *data = (struct asix_data *)&dev->data;
451
	struct asix_common_private *priv = dev->driver_priv;
452
	u16 rx_ctl, phy14h, phy15h, phy16h;
R
Robert Foss 已提交
453
	u8 chipcode = 0;
454
	int ret;
455

R
Robert Foss 已提交
456
	ret = asix_write_gpio(dev, AX_GPIO_RSE, 5, in_pm);
457
	if (ret < 0)
A
Al Viro 已提交
458
		goto out;
459

460
	ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, priv->embd_phy |
R
Robert Foss 已提交
461 462 463 464 465 466
			     AX_PHYSEL_SSEN, 0, 0, NULL, in_pm);
	if (ret < 0) {
		netdev_dbg(dev->net, "Select PHY #1 failed: %d\n", ret);
		goto out;
	}
	usleep_range(10000, 11000);
467

R
Robert Foss 已提交
468
	ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_IPRL, in_pm);
469
	if (ret < 0)
A
Al Viro 已提交
470
		goto out;
471

R
Robert Foss 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
	usleep_range(10000, 11000);

	ret = asix_sw_reset(dev, AX_SWRESET_IPRL, in_pm);
	if (ret < 0)
		goto out;

	msleep(160);

	ret = asix_sw_reset(dev, AX_SWRESET_CLEAR, in_pm);
	if (ret < 0)
		goto out;

	ret = asix_sw_reset(dev, AX_SWRESET_IPRL, in_pm);
	if (ret < 0)
		goto out;

	msleep(200);

	if (in_pm && (!asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
					   MII_PHYSID1))) {
		ret = -1;
		goto out;
	}

	ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0,
			    0, 1, &chipcode, in_pm);
	if (ret < 0)
		goto out;

	if ((chipcode & AX_CHIPCODE_MASK) == AX_AX88772B_CHIPCODE) {
		ret = asix_write_cmd(dev, AX_QCTCTRL, 0x8000, 0x8001,
				     0, NULL, in_pm);
		if (ret < 0) {
			netdev_dbg(dev->net, "Write BQ setting failed: %d\n",
				   ret);
			goto out;
		}
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
	} else if ((chipcode & AX_CHIPCODE_MASK) == AX_AX88772A_CHIPCODE) {
		/* Check if the PHY registers have default settings */
		phy14h = asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY14H);
		phy15h = asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY15H);
		phy16h = asix_mdio_read_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY16H);

		netdev_dbg(dev->net,
			   "772a_hw_reset: MR20=0x%x MR21=0x%x MR22=0x%x\n",
			   phy14h, phy15h, phy16h);

		/* Restore PHY registers default setting if not */
		if (phy14h != AX88772A_PHY14H_DEFAULT)
			asix_mdio_write_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY14H,
					     AX88772A_PHY14H_DEFAULT);
		if (phy15h != AX88772A_PHY15H_DEFAULT)
			asix_mdio_write_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY15H,
					     AX88772A_PHY15H_DEFAULT);
		if (phy16h != AX88772A_PHY16H_DEFAULT)
			asix_mdio_write_nopm(dev->net, dev->mii.phy_id,
					     AX88772A_PHY16H,
					     AX88772A_PHY16H_DEFAULT);
R
Robert Foss 已提交
535 536
	}

537
	ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
538
				AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
R
Robert Foss 已提交
539
				AX88772_IPG2_DEFAULT, 0, NULL, in_pm);
540
	if (ret < 0) {
541
		netdev_dbg(dev->net, "Write IPG,IPG1,IPG2 failed: %d\n", ret);
A
Al Viro 已提交
542
		goto out;
543 544
	}

545 546 547
	/* Rewrite MAC address */
	memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
	ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
R
Robert Foss 已提交
548 549 550 551 552 553
							data->mac_addr, in_pm);
	if (ret < 0)
		goto out;

	/* Set RX_CTL to default values with 2k buffer, and enable cactus */
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, in_pm);
554 555 556
	if (ret < 0)
		goto out;

R
Robert Foss 已提交
557 558 559 560
	ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT, in_pm);
	if (ret < 0)
		return ret;

561
	/* Set RX_CTL to default values with 2k buffer, and enable cactus */
R
Robert Foss 已提交
562
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, in_pm);
563
	if (ret < 0)
A
Al Viro 已提交
564
		goto out;
565

R
Robert Foss 已提交
566
	rx_ctl = asix_read_rx_ctl(dev, in_pm);
567 568
	netdev_dbg(dev->net, "RX_CTL is 0x%04x after all initializations\n",
		   rx_ctl);
569

R
Robert Foss 已提交
570
	rx_ctl = asix_read_medium_status(dev, in_pm);
571 572 573
	netdev_dbg(dev->net,
		   "Medium Status is 0x%04x after all initializations\n",
		   rx_ctl);
574

575 576 577 578 579 580 581 582 583 584 585 586
	return 0;

out:
	return ret;
}

static const struct net_device_ops ax88772_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,
587
	.ndo_get_stats64	= dev_get_tstats64,
588 589
	.ndo_set_mac_address 	= asix_set_mac_address,
	.ndo_validate_addr	= eth_validate_addr,
590
	.ndo_do_ioctl		= phy_do_ioctl_running,
591 592 593
	.ndo_set_rx_mode        = asix_set_multicast,
};

R
Robert Foss 已提交
594 595 596
static void ax88772_suspend(struct usbnet *dev)
{
	struct asix_common_private *priv = dev->driver_priv;
597 598
	u16 medium;

599 600 601
	if (netif_running(dev->net))
		phy_stop(priv->phydev);

602
	/* Stop MAC operation */
603
	medium = asix_read_medium_status(dev, 1);
604
	medium &= ~AX_MEDIUM_RE;
605
	asix_write_medium_mode(dev, medium, 1);
606 607

	netdev_dbg(dev->net, "ax88772_suspend: medium=0x%04x\n",
608
		   asix_read_medium_status(dev, 1));
R
Robert Foss 已提交
609 610 611 612 613 614 615
}

static int asix_suspend(struct usb_interface *intf, pm_message_t message)
{
	struct usbnet *dev = usb_get_intfdata(intf);
	struct asix_common_private *priv = dev->driver_priv;

616
	if (priv && priv->suspend)
R
Robert Foss 已提交
617 618 619 620 621 622 623
		priv->suspend(dev);

	return usbnet_suspend(intf, message);
}

static void ax88772_resume(struct usbnet *dev)
{
624
	struct asix_common_private *priv = dev->driver_priv;
R
Robert Foss 已提交
625 626 627 628 629
	int i;

	for (i = 0; i < 3; i++)
		if (!ax88772_hw_reset(dev, 1))
			break;
630 631 632

	if (netif_running(dev->net))
		phy_start(priv->phydev);
R
Robert Foss 已提交
633 634 635 636
}

static void ax88772a_resume(struct usbnet *dev)
{
637
	struct asix_common_private *priv = dev->driver_priv;
R
Robert Foss 已提交
638 639 640 641 642 643 644
	int i;

	for (i = 0; i < 3; i++) {
		if (!ax88772a_hw_reset(dev, 1))
			break;
	}

645 646
	if (netif_running(dev->net))
		phy_start(priv->phydev);
R
Robert Foss 已提交
647 648 649 650 651 652 653
}

static int asix_resume(struct usb_interface *intf)
{
	struct usbnet *dev = usb_get_intfdata(intf);
	struct asix_common_private *priv = dev->driver_priv;

654
	if (priv && priv->resume)
R
Robert Foss 已提交
655 656 657 658 659
		priv->resume(dev);

	return usbnet_resume(intf);
}

660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
static int ax88772_init_mdio(struct usbnet *dev)
{
	struct asix_common_private *priv = dev->driver_priv;

	priv->mdio = devm_mdiobus_alloc(&dev->udev->dev);
	if (!priv->mdio)
		return -ENOMEM;

	priv->mdio->priv = dev;
	priv->mdio->read = &asix_mdio_bus_read;
	priv->mdio->write = &asix_mdio_bus_write;
	priv->mdio->name = "Asix MDIO Bus";
	/* mii bus name is usb-<usb bus number>-<usb device number> */
	snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "usb-%03d:%03d",
		 dev->udev->bus->busnum, dev->udev->devnum);

	return devm_mdiobus_register(&dev->udev->dev, priv->mdio);
}

static int ax88772_init_phy(struct usbnet *dev)
{
	struct asix_common_private *priv = dev->driver_priv;
	int ret;

	snprintf(priv->phy_name, sizeof(priv->phy_name), PHY_ID_FMT,
		 priv->mdio->id, priv->phy_addr);

	priv->phydev = phy_connect(dev->net, priv->phy_name, &asix_adjust_link,
				   PHY_INTERFACE_MODE_INTERNAL);
	if (IS_ERR(priv->phydev)) {
		netdev_err(dev->net, "Could not connect to PHY device %s\n",
			   priv->phy_name);
		ret = PTR_ERR(priv->phydev);
		return ret;
	}

696
	phy_suspend(priv->phydev);
697 698
	priv->phydev->mac_managed_pm = 1;

699 700 701 702 703
	phy_attached_info(priv->phydev);

	return 0;
}

704 705
static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
{
706
	u8 buf[ETH_ALEN] = {0}, chipcode = 0;
R
Robert Foss 已提交
707
	struct asix_common_private *priv;
708 709
	int ret, i;
	u32 phyid;
710

711 712 713 714 715 716
	priv = devm_kzalloc(&dev->udev->dev, sizeof(*priv), GFP_KERNEL);
	if (!priv)
		return -ENOMEM;

	dev->driver_priv = priv;

717
	usbnet_get_endpoints(dev, intf);
718

719 720 721 722
	/* Maybe the boot loader passed the MAC address via device tree */
	if (!eth_platform_get_mac_address(&dev->udev->dev, buf)) {
		netif_dbg(dev, ifup, dev->net,
			  "MAC address read from device tree");
723
	} else {
724 725 726 727 728 729 730 731 732 733 734 735 736
		/* Try getting the MAC address from EEPROM */
		if (dev->driver_info->data & FLAG_EEPROM_MAC) {
			for (i = 0; i < (ETH_ALEN >> 1); i++) {
				ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM,
						    0x04 + i, 0, 2, buf + i * 2,
						    0);
				if (ret < 0)
					break;
			}
		} else {
			ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
					    0, 0, ETH_ALEN, buf, 0);
		}
737

738 739 740 741 742
		if (ret < 0) {
			netdev_dbg(dev->net, "Failed to read MAC address: %d\n",
				   ret);
			return ret;
		}
743
	}
744 745

	asix_set_netdev_dev_addr(dev, buf);
746 747 748

	dev->net->netdev_ops = &ax88772_netdev_ops;
	dev->net->ethtool_ops = &ax88772_ethtool_ops;
E
Eric Dumazet 已提交
749 750
	dev->net->needed_headroom = 4; /* cf asix_tx_fixup() */
	dev->net->needed_tailroom = 4; /* cf asix_tx_fixup() */
751

752 753 754 755 756 757 758
	ret = asix_read_phy_addr(dev, true);
	if (ret < 0)
		return ret;

	priv->phy_addr = ret;
	priv->embd_phy = ((priv->phy_addr & 0x1f) == 0x10 ? true : false);

R
Robert Foss 已提交
759 760
	asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, 0, 1, &chipcode, 0);
	chipcode &= AX_CHIPCODE_MASK;
761

762 763 764 765 766 767 768
	ret = (chipcode == AX_AX88772_CHIPCODE) ? ax88772_hw_reset(dev, 0) :
						  ax88772a_hw_reset(dev, 0);

	if (ret < 0) {
		netdev_dbg(dev->net, "Failed to reset AX88772: %d\n", ret);
		return ret;
	}
769 770 771

	/* Read PHYID register *AFTER* the PHY was reset properly */
	phyid = asix_get_phyid(dev);
772
	netdev_dbg(dev->net, "PHYID=0x%08x\n", phyid);
773

774 775 776 777 778 779
	/* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
	if (dev->driver_info->flags & FLAG_FRAMING_AX) {
		/* hard_mtu  is still the default - the device does not support
		   jumbo eth frames */
		dev->rx_urb_size = 2048;
	}
780

R
Robert Foss 已提交
781 782 783 784 785 786 787 788 789 790
	priv->presvd_phy_bmcr = 0;
	priv->presvd_phy_advertise = 0;
	if (chipcode == AX_AX88772_CHIPCODE) {
		priv->resume = ax88772_resume;
		priv->suspend = ax88772_suspend;
	} else {
		priv->resume = ax88772a_resume;
		priv->suspend = ax88772_suspend;
	}

791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
	ret = ax88772_init_mdio(dev);
	if (ret)
		return ret;

	return ax88772_init_phy(dev);
}

static int ax88772_stop(struct usbnet *dev)
{
	struct asix_common_private *priv = dev->driver_priv;

	/* On unplugged USB, we will get MDIO communication errors and the
	 * PHY will be set in to PHY_HALTED state.
	 */
	if (priv->phydev->state != PHY_HALTED)
		phy_stop(priv->phydev);

808 809 810
	return 0;
}

811
static void ax88772_unbind(struct usbnet *dev, struct usb_interface *intf)
812
{
813 814 815
	struct asix_common_private *priv = dev->driver_priv;

	phy_disconnect(priv->phydev);
816
	asix_rx_fixup_common_free(dev->driver_priv);
817 818
}

819
static const struct ethtool_ops ax88178_ethtool_ops = {
820 821 822 823 824 825 826 827
	.get_drvinfo		= asix_get_drvinfo,
	.get_link		= asix_get_link,
	.get_msglevel		= usbnet_get_msglevel,
	.set_msglevel		= usbnet_set_msglevel,
	.get_wol		= asix_get_wol,
	.set_wol		= asix_set_wol,
	.get_eeprom_len		= asix_get_eeprom_len,
	.get_eeprom		= asix_get_eeprom,
828
	.set_eeprom		= asix_set_eeprom,
829
	.nway_reset		= usbnet_nway_reset,
830 831
	.get_link_ksettings	= usbnet_get_link_ksettings_mii,
	.set_link_ksettings	= usbnet_set_link_ksettings_mii,
832 833 834
};

static int marvell_phy_init(struct usbnet *dev)
835
{
836 837
	struct asix_data *data = (struct asix_data *)&dev->data;
	u16 reg;
838

839
	netdev_dbg(dev->net, "marvell_phy_init()\n");
840

841
	reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
842
	netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
843

844 845
	asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
			MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
846

847 848 849
	if (data->ledmode) {
		reg = asix_mdio_read(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL);
850
		netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
851

852 853 854 855
		reg &= 0xf8ff;
		reg |= (1 + 0x0100);
		asix_mdio_write(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL, reg);
856

857 858
		reg = asix_mdio_read(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL);
859
		netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
860 861
		reg &= 0xfc0f;
	}
862

863 864 865
	return 0;
}

866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
static int rtl8211cl_phy_init(struct usbnet *dev)
{
	struct asix_data *data = (struct asix_data *)&dev->data;

	netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");

	asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
	asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
	asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
		asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
	asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);

	if (data->ledmode == 12) {
		asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
		asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
		asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
	}

	return 0;
}

887 888 889 890
static int marvell_led_status(struct usbnet *dev, u16 speed)
{
	u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);

891
	netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
892 893 894 895 896 897 898 899 900 901 902 903 904

	/* Clear out the center LED bits - 0x03F0 */
	reg &= 0xfc0f;

	switch (speed) {
		case SPEED_1000:
			reg |= 0x03e0;
			break;
		case SPEED_100:
			reg |= 0x03b0;
			break;
		default:
			reg |= 0x02f0;
905 906
	}

907
	netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
908 909 910 911 912
	asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);

	return 0;
}

913 914 915 916 917 918 919
static int ax88178_reset(struct usbnet *dev)
{
	struct asix_data *data = (struct asix_data *)&dev->data;
	int ret;
	__le16 eeprom;
	u8 status;
	int gpio0 = 0;
920
	u32 phyid;
921

R
Robert Foss 已提交
922
	asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status, 0);
923
	netdev_dbg(dev->net, "GPIO Status: 0x%04x\n", status);
924

R
Robert Foss 已提交
925 926 927
	asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL, 0);
	asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom, 0);
	asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL, 0);
928

929
	netdev_dbg(dev->net, "EEPROM index 0x17 is 0x%04x\n", eeprom);
930 931 932 933 934 935

	if (eeprom == cpu_to_le16(0xffff)) {
		data->phymode = PHY_MODE_MARVELL;
		data->ledmode = 0;
		gpio0 = 1;
	} else {
936
		data->phymode = le16_to_cpu(eeprom) & 0x7F;
937 938 939
		data->ledmode = le16_to_cpu(eeprom) >> 8;
		gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
	}
940
	netdev_dbg(dev->net, "GPIO0: %d, PhyMode: %d\n", gpio0, data->phymode);
941

942
	/* Power up external GigaPHY through AX88178 GPIO pin */
R
Robert Foss 已提交
943 944
	asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 |
			AX_GPIO_GPO1EN, 40, 0);
945
	if ((le16_to_cpu(eeprom) >> 8) != 1) {
R
Robert Foss 已提交
946 947 948
		asix_write_gpio(dev, 0x003c, 30, 0);
		asix_write_gpio(dev, 0x001c, 300, 0);
		asix_write_gpio(dev, 0x003c, 30, 0);
949
	} else {
950
		netdev_dbg(dev->net, "gpio phymode == 1 path\n");
R
Robert Foss 已提交
951 952
		asix_write_gpio(dev, AX_GPIO_GPO1EN, 30, 0);
		asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30, 0);
953 954
	}

955 956
	/* Read PHYID register *AFTER* powering up PHY */
	phyid = asix_get_phyid(dev);
957
	netdev_dbg(dev->net, "PHYID=0x%08x\n", phyid);
958 959

	/* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
R
Robert Foss 已提交
960
	asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL, 0);
961

R
Robert Foss 已提交
962
	asix_sw_reset(dev, 0, 0);
963 964
	msleep(150);

R
Robert Foss 已提交
965
	asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD, 0);
966 967
	msleep(150);

R
Robert Foss 已提交
968
	asix_write_rx_ctl(dev, 0, 0);
969 970 971 972 973 974 975

	if (data->phymode == PHY_MODE_MARVELL) {
		marvell_phy_init(dev);
		msleep(60);
	} else if (data->phymode == PHY_MODE_RTL8211CL)
		rtl8211cl_phy_init(dev);

976
	asix_phy_reset(dev, BMCR_RESET | BMCR_ANENABLE);
977 978 979 980 981
	asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
			ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
	asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
			ADVERTISE_1000FULL);

982
	asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT, 0);
983 984
	mii_nway_restart(&dev->mii);

985 986 987
	/* Rewrite MAC address */
	memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
	ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
R
Robert Foss 已提交
988
							data->mac_addr, 0);
989 990 991
	if (ret < 0)
		return ret;

R
Robert Foss 已提交
992
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, 0);
993 994
	if (ret < 0)
		return ret;
995 996 997 998

	return 0;
}

999 1000 1001
static int ax88178_link_reset(struct usbnet *dev)
{
	u16 mode;
1002
	struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
1003
	struct asix_data *data = (struct asix_data *)&dev->data;
1004
	u32 speed;
1005

1006
	netdev_dbg(dev->net, "ax88178_link_reset()\n");
1007 1008 1009 1010

	mii_check_media(&dev->mii, 1, 1);
	mii_ethtool_gset(&dev->mii, &ecmd);
	mode = AX88178_MEDIUM_DEFAULT;
1011
	speed = ethtool_cmd_speed(&ecmd);
1012

1013
	if (speed == SPEED_1000)
1014
		mode |= AX_MEDIUM_GM;
1015
	else if (speed == SPEED_100)
1016 1017 1018 1019
		mode |= AX_MEDIUM_PS;
	else
		mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);

1020 1021
	mode |= AX_MEDIUM_ENCK;

1022 1023 1024 1025 1026
	if (ecmd.duplex == DUPLEX_FULL)
		mode |= AX_MEDIUM_FD;
	else
		mode &= ~AX_MEDIUM_FD;

1027 1028
	netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
		   speed, ecmd.duplex, mode);
1029

R
Robert Foss 已提交
1030
	asix_write_medium_mode(dev, mode, 0);
1031 1032

	if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1033
		marvell_led_status(dev, speed);
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056

	return 0;
}

static void ax88178_set_mfb(struct usbnet *dev)
{
	u16 mfb = AX_RX_CTL_MFB_16384;
	u16 rxctl;
	u16 medium;
	int old_rx_urb_size = dev->rx_urb_size;

	if (dev->hard_mtu < 2048) {
		dev->rx_urb_size = 2048;
		mfb = AX_RX_CTL_MFB_2048;
	} else if (dev->hard_mtu < 4096) {
		dev->rx_urb_size = 4096;
		mfb = AX_RX_CTL_MFB_4096;
	} else if (dev->hard_mtu < 8192) {
		dev->rx_urb_size = 8192;
		mfb = AX_RX_CTL_MFB_8192;
	} else if (dev->hard_mtu < 16384) {
		dev->rx_urb_size = 16384;
		mfb = AX_RX_CTL_MFB_16384;
1057
	}
1058

R
Robert Foss 已提交
1059 1060
	rxctl = asix_read_rx_ctl(dev, 0);
	asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb, 0);
1061

R
Robert Foss 已提交
1062
	medium = asix_read_medium_status(dev, 0);
1063 1064 1065 1066
	if (dev->net->mtu > 1500)
		medium |= AX_MEDIUM_JFE;
	else
		medium &= ~AX_MEDIUM_JFE;
R
Robert Foss 已提交
1067
	asix_write_medium_mode(dev, medium, 0);
1068 1069 1070

	if (dev->rx_urb_size > old_rx_urb_size)
		usbnet_unlink_rx_urbs(dev);
1071 1072
}

1073
static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1074
{
1075 1076
	struct usbnet *dev = netdev_priv(net);
	int ll_mtu = new_mtu + net->hard_header_len + 4;
1077

1078
	netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
1079

1080 1081 1082 1083 1084 1085 1086
	if ((ll_mtu % dev->maxpacket) == 0)
		return -EDOM;

	net->mtu = new_mtu;
	dev->hard_mtu = net->mtu + net->hard_header_len;
	ax88178_set_mfb(dev);

1087 1088 1089
	/* max qlen depend on hard_mtu and rx_urb_size */
	usbnet_update_max_qlen(dev);

1090 1091 1092
	return 0;
}

1093 1094 1095 1096 1097
static const struct net_device_ops ax88178_netdev_ops = {
	.ndo_open		= usbnet_open,
	.ndo_stop		= usbnet_stop,
	.ndo_start_xmit		= usbnet_start_xmit,
	.ndo_tx_timeout		= usbnet_tx_timeout,
1098
	.ndo_get_stats64	= dev_get_tstats64,
1099
	.ndo_set_mac_address 	= asix_set_mac_address,
1100
	.ndo_validate_addr	= eth_validate_addr,
1101
	.ndo_set_rx_mode	= asix_set_multicast,
1102 1103 1104 1105
	.ndo_do_ioctl 		= asix_ioctl,
	.ndo_change_mtu 	= ax88178_change_mtu,
};

1106 1107 1108
static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
{
	int ret;
1109
	u8 buf[ETH_ALEN] = {0};
1110 1111 1112 1113

	usbnet_get_endpoints(dev,intf);

	/* Get the MAC address */
R
Robert Foss 已提交
1114
	ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf, 0);
1115
	if (ret < 0) {
1116
		netdev_dbg(dev->net, "Failed to read MAC address: %d\n", ret);
1117
		return ret;
1118
	}
1119 1120

	asix_set_netdev_dev_addr(dev, buf);
1121

1122 1123 1124 1125 1126 1127 1128
	/* Initialize MII structure */
	dev->mii.dev = dev->net;
	dev->mii.mdio_read = asix_mdio_read;
	dev->mii.mdio_write = asix_mdio_write;
	dev->mii.phy_id_mask = 0x1f;
	dev->mii.reg_num_mask = 0xff;
	dev->mii.supports_gmii = 1;
1129 1130 1131 1132

	dev->mii.phy_id = asix_read_phy_addr(dev, true);
	if (dev->mii.phy_id < 0)
		return dev->mii.phy_id;
1133 1134

	dev->net->netdev_ops = &ax88178_netdev_ops;
1135
	dev->net->ethtool_ops = &ax88178_ethtool_ops;
1136
	dev->net->max_mtu = 16384 - (dev->net->hard_header_len + 4);
1137

1138
	/* Blink LEDS so users know driver saw dongle */
R
Robert Foss 已提交
1139
	asix_sw_reset(dev, 0, 0);
1140
	msleep(150);
1141

R
Robert Foss 已提交
1142
	asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD, 0);
1143
	msleep(150);
1144 1145 1146 1147 1148 1149 1150 1151

	/* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
	if (dev->driver_info->flags & FLAG_FRAMING_AX) {
		/* hard_mtu  is still the default - the device does not support
		   jumbo eth frames */
		dev->rx_urb_size = 2048;
	}

1152 1153 1154 1155
	dev->driver_priv = kzalloc(sizeof(struct asix_common_private), GFP_KERNEL);
	if (!dev->driver_priv)
			return -ENOMEM;

1156
	return 0;
1157 1158 1159 1160
}

static const struct driver_info ax8817x_info = {
	.description = "ASIX AX8817x USB 2.0 Ethernet",
1161 1162
	.bind = ax88172_bind,
	.status = asix_status,
1163 1164
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1165
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1166 1167 1168 1169 1170
	.data = 0x00130103,
};

static const struct driver_info dlink_dub_e100_info = {
	.description = "DLink DUB-E100 USB Ethernet",
1171 1172
	.bind = ax88172_bind,
	.status = asix_status,
1173 1174
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1175
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1176 1177 1178 1179 1180
	.data = 0x009f9d9f,
};

static const struct driver_info netgear_fa120_info = {
	.description = "Netgear FA-120 USB Ethernet",
1181 1182
	.bind = ax88172_bind,
	.status = asix_status,
1183 1184
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1185
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1186 1187 1188 1189 1190
	.data = 0x00130103,
};

static const struct driver_info hawking_uf200_info = {
	.description = "Hawking UF200 USB Ethernet",
1191 1192
	.bind = ax88172_bind,
	.status = asix_status,
1193 1194
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1195
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1196 1197 1198 1199 1200 1201
	.data = 0x001f1d1f,
};

static const struct driver_info ax88772_info = {
	.description = "ASIX AX88772 USB 2.0 Ethernet",
	.bind = ax88772_bind,
1202
	.unbind = ax88772_unbind,
1203
	.status = asix_status,
R
Robert Foss 已提交
1204
	.reset = ax88772_reset,
1205
	.stop = ax88772_stop,
1206
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET,
1207
	.rx_fixup = asix_rx_fixup_common,
1208 1209 1210
	.tx_fixup = asix_tx_fixup,
};

1211 1212 1213
static const struct driver_info ax88772b_info = {
	.description = "ASIX AX88772B USB 2.0 Ethernet",
	.bind = ax88772_bind,
1214
	.unbind = ax88772_unbind,
1215 1216 1217 1218
	.status = asix_status,
	.reset = ax88772_reset,
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
	         FLAG_MULTI_PACKET,
1219
	.rx_fixup = asix_rx_fixup_common,
1220 1221 1222 1223
	.tx_fixup = asix_tx_fixup,
	.data = FLAG_EEPROM_MAC,
};

1224 1225 1226
static const struct driver_info ax88178_info = {
	.description = "ASIX AX88178 USB 2.0 Ethernet",
	.bind = ax88178_bind,
1227
	.unbind = ax88772_unbind,
1228 1229
	.status = asix_status,
	.link_reset = ax88178_link_reset,
1230
	.reset = ax88178_reset,
1231 1232
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
		 FLAG_MULTI_PACKET,
1233
	.rx_fixup = asix_rx_fixup_common,
1234
	.tx_fixup = asix_tx_fixup,
1235 1236
};

1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
/*
 * USBLINK 20F9 "USB 2.0 LAN" USB ethernet adapter, typically found in
 * no-name packaging.
 * USB device strings are:
 *   1: Manufacturer: USBLINK
 *   2: Product: HG20F9 USB2.0
 *   3: Serial: 000003
 * Appears to be compatible with Asix 88772B.
 */
static const struct driver_info hg20f9_info = {
	.description = "HG20F9 USB 2.0 Ethernet",
	.bind = ax88772_bind,
	.unbind = ax88772_unbind,
	.status = asix_status,
	.reset = ax88772_reset,
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
	         FLAG_MULTI_PACKET,
	.rx_fixup = asix_rx_fixup_common,
	.tx_fixup = asix_tx_fixup,
	.data = FLAG_EEPROM_MAC,
};

1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
static const struct usb_device_id	products [] = {
{
	// Linksys USB200M
	USB_DEVICE (0x077b, 0x2226),
	.driver_info =	(unsigned long) &ax8817x_info,
}, {
	// Netgear FA120
	USB_DEVICE (0x0846, 0x1040),
	.driver_info =  (unsigned long) &netgear_fa120_info,
}, {
	// DLink DUB-E100
	USB_DEVICE (0x2001, 0x1a00),
	.driver_info =  (unsigned long) &dlink_dub_e100_info,
}, {
	// Intellinet, ST Lab USB Ethernet
	USB_DEVICE (0x0b95, 0x1720),
	.driver_info =  (unsigned long) &ax8817x_info,
}, {
	// Hawking UF200, TrendNet TU2-ET100
	USB_DEVICE (0x07b8, 0x420a),
	.driver_info =  (unsigned long) &hawking_uf200_info,
}, {
D
David Hollis 已提交
1281 1282 1283
	// Billionton Systems, USB2AR
	USB_DEVICE (0x08dd, 0x90ff),
	.driver_info =  (unsigned long) &ax8817x_info,
1284 1285 1286 1287
}, {
	// Billionton Systems, GUSB2AM-1G-B
	USB_DEVICE(0x08dd, 0x0114),
	.driver_info =  (unsigned long) &ax88178_info,
1288 1289 1290 1291 1292 1293 1294 1295
}, {
	// ATEN UC210T
	USB_DEVICE (0x0557, 0x2009),
	.driver_info =  (unsigned long) &ax8817x_info,
}, {
	// Buffalo LUA-U2-KTX
	USB_DEVICE (0x0411, 0x003d),
	.driver_info =  (unsigned long) &ax8817x_info,
1296 1297 1298 1299
}, {
	// Buffalo LUA-U2-GT 10/100/1000
	USB_DEVICE (0x0411, 0x006e),
	.driver_info =  (unsigned long) &ax88178_info,
1300 1301 1302 1303
}, {
	// Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
	USB_DEVICE (0x6189, 0x182d),
	.driver_info =  (unsigned long) &ax8817x_info,
1304 1305 1306 1307
}, {
	// Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
	USB_DEVICE (0x0df6, 0x0056),
	.driver_info =  (unsigned long) &ax88178_info,
1308 1309 1310 1311
}, {
	// Sitecom LN-028 "USB 2.0 10/100/1000 Ethernet adapter"
	USB_DEVICE (0x0df6, 0x061c),
	.driver_info =  (unsigned long) &ax88178_info,
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
}, {
	// corega FEther USB2-TX
	USB_DEVICE (0x07aa, 0x0017),
	.driver_info =  (unsigned long) &ax8817x_info,
}, {
	// Surecom EP-1427X-2
	USB_DEVICE (0x1189, 0x0893),
	.driver_info = (unsigned long) &ax8817x_info,
}, {
	// goodway corp usb gwusb2e
	USB_DEVICE (0x1631, 0x6200),
	.driver_info = (unsigned long) &ax8817x_info,
D
David Hollis 已提交
1324 1325 1326 1327
}, {
	// JVC MP-PRX1 Port Replicator
	USB_DEVICE (0x04f1, 0x3008),
	.driver_info = (unsigned long) &ax8817x_info,
1328 1329 1330
}, {
	// Lenovo U2L100P 10/100
	USB_DEVICE (0x17ef, 0x7203),
R
Robert Foss 已提交
1331
	.driver_info = (unsigned long)&ax88772b_info,
M
Marek Vasut 已提交
1332 1333 1334
}, {
	// ASIX AX88772B 10/100
	USB_DEVICE (0x0b95, 0x772b),
1335
	.driver_info = (unsigned long) &ax88772b_info,
1336 1337
}, {
	// ASIX AX88772 10/100
D
David Hollis 已提交
1338 1339
	USB_DEVICE (0x0b95, 0x7720),
	.driver_info = (unsigned long) &ax88772_info,
1340 1341 1342
}, {
	// ASIX AX88178 10/100/1000
	USB_DEVICE (0x0b95, 0x1780),
1343
	.driver_info = (unsigned long) &ax88178_info,
1344 1345 1346 1347
}, {
	// Logitec LAN-GTJ/U2A
	USB_DEVICE (0x0789, 0x0160),
	.driver_info = (unsigned long) &ax88178_info,
1348 1349 1350 1351
}, {
	// Linksys USB200M Rev 2
	USB_DEVICE (0x13b1, 0x0018),
	.driver_info = (unsigned long) &ax88772_info,
1352 1353 1354 1355
}, {
	// 0Q0 cable ethernet
	USB_DEVICE (0x1557, 0x7720),
	.driver_info = (unsigned long) &ax88772_info,
1356 1357 1358 1359
}, {
	// DLink DUB-E100 H/W Ver B1
	USB_DEVICE (0x07d1, 0x3c05),
	.driver_info = (unsigned long) &ax88772_info,
1360 1361 1362 1363
}, {
	// DLink DUB-E100 H/W Ver B1 Alternate
	USB_DEVICE (0x2001, 0x3c05),
	.driver_info = (unsigned long) &ax88772_info,
1364 1365 1366 1367
}, {
       // DLink DUB-E100 H/W Ver C1
       USB_DEVICE (0x2001, 0x1a02),
       .driver_info = (unsigned long) &ax88772_info,
1368 1369 1370 1371
}, {
	// Linksys USB1000
	USB_DEVICE (0x1737, 0x0039),
	.driver_info = (unsigned long) &ax88178_info,
1372 1373 1374 1375
}, {
	// IO-DATA ETG-US2
	USB_DEVICE (0x04bb, 0x0930),
	.driver_info = (unsigned long) &ax88178_info,
D
David Hollis 已提交
1376 1377 1378 1379
}, {
	// Belkin F5D5055
	USB_DEVICE(0x050d, 0x5055),
	.driver_info = (unsigned long) &ax88178_info,
1380 1381 1382 1383
}, {
	// Apple USB Ethernet Adapter
	USB_DEVICE(0x05ac, 0x1402),
	.driver_info = (unsigned long) &ax88772_info,
1384 1385 1386 1387
}, {
	// Cables-to-Go USB Ethernet Adapter
	USB_DEVICE(0x0b95, 0x772a),
	.driver_info = (unsigned long) &ax88772_info,
G
Greg Kroah-Hartman 已提交
1388 1389 1390 1391 1392 1393 1394 1395
}, {
	// ABOCOM for pci
	USB_DEVICE(0x14ea, 0xab11),
	.driver_info = (unsigned long) &ax88178_info,
}, {
	// ASIX 88772a
	USB_DEVICE(0x0db0, 0xa877),
	.driver_info = (unsigned long) &ax88772_info,
A
Aurelien Jacobs 已提交
1396 1397 1398
}, {
	// Asus USB Ethernet Adapter
	USB_DEVICE (0x0b95, 0x7e2b),
R
Robert Foss 已提交
1399
	.driver_info = (unsigned long)&ax88772b_info,
1400 1401 1402 1403
}, {
	/* ASIX 88172a demo board */
	USB_DEVICE(0x0b95, 0x172a),
	.driver_info = (unsigned long) &ax88172a_info,
1404 1405 1406 1407 1408 1409 1410 1411
}, {
	/*
	 * USBLINK HG20F9 "USB 2.0 LAN"
	 * Appears to have gazumped Linksys's manufacturer ID but
	 * doesn't (yet) conflict with any known Linksys product.
	 */
	USB_DEVICE(0x066b, 0x20f9),
	.driver_info = (unsigned long) &hg20f9_info,
1412 1413 1414 1415 1416 1417
},
	{ },		// END
};
MODULE_DEVICE_TABLE(usb, products);

static struct usb_driver asix_driver = {
1418
	.name =		DRIVER_NAME,
1419 1420
	.id_table =	products,
	.probe =	usbnet_probe,
R
Robert Foss 已提交
1421 1422
	.suspend =	asix_suspend,
	.resume =	asix_resume,
1423
	.reset_resume =	asix_resume,
1424
	.disconnect =	usbnet_disconnect,
1425
	.supports_autosuspend = 1,
1426
	.disable_hub_initiated_lpm = 1,
1427 1428
};

1429
module_usb_driver(asix_driver);
1430 1431

MODULE_AUTHOR("David Hollis");
1432
MODULE_VERSION(DRIVER_VERSION);
1433 1434 1435
MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
MODULE_LICENSE("GPL");