asix_devices.c 36.9 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
	ret = asix_read_phy_addr(dev, true);
	if (ret < 0)
		return ret;

	priv->phy_addr = ret;
757
	priv->embd_phy = ((priv->phy_addr & 0x1f) == 0x10);
758

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 820 821 822 823 824
static void ax88178_unbind(struct usbnet *dev, struct usb_interface *intf)
{
	asix_rx_fixup_common_free(dev->driver_priv);
	kfree(dev->driver_priv);
}

825
static const struct ethtool_ops ax88178_ethtool_ops = {
826 827 828 829 830 831 832 833
	.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,
834
	.set_eeprom		= asix_set_eeprom,
835
	.nway_reset		= usbnet_nway_reset,
836 837
	.get_link_ksettings	= usbnet_get_link_ksettings_mii,
	.set_link_ksettings	= usbnet_set_link_ksettings_mii,
838 839 840
};

static int marvell_phy_init(struct usbnet *dev)
841
{
842 843
	struct asix_data *data = (struct asix_data *)&dev->data;
	u16 reg;
844

845
	netdev_dbg(dev->net, "marvell_phy_init()\n");
846

847
	reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
848
	netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
849

850 851
	asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
			MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
852

853 854 855
	if (data->ledmode) {
		reg = asix_mdio_read(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL);
856
		netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
857

858 859 860 861
		reg &= 0xf8ff;
		reg |= (1 + 0x0100);
		asix_mdio_write(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL, reg);
862

863 864
		reg = asix_mdio_read(dev->net, dev->mii.phy_id,
			MII_MARVELL_LED_CTRL);
865
		netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
866 867
		reg &= 0xfc0f;
	}
868

869 870 871
	return 0;
}

872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892
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;
}

893 894 895 896
static int marvell_led_status(struct usbnet *dev, u16 speed)
{
	u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);

897
	netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
898 899 900 901 902 903 904 905 906 907 908 909 910

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

913
	netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
914 915 916 917 918
	asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);

	return 0;
}

919 920 921 922 923 924 925
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;
926
	u32 phyid;
927

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

R
Robert Foss 已提交
931 932 933
	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);
934

935
	netdev_dbg(dev->net, "EEPROM index 0x17 is 0x%04x\n", eeprom);
936 937 938 939 940 941

	if (eeprom == cpu_to_le16(0xffff)) {
		data->phymode = PHY_MODE_MARVELL;
		data->ledmode = 0;
		gpio0 = 1;
	} else {
942
		data->phymode = le16_to_cpu(eeprom) & 0x7F;
943 944 945
		data->ledmode = le16_to_cpu(eeprom) >> 8;
		gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
	}
946
	netdev_dbg(dev->net, "GPIO0: %d, PhyMode: %d\n", gpio0, data->phymode);
947

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

961 962
	/* Read PHYID register *AFTER* powering up PHY */
	phyid = asix_get_phyid(dev);
963
	netdev_dbg(dev->net, "PHYID=0x%08x\n", phyid);
964 965

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

R
Robert Foss 已提交
968
	asix_sw_reset(dev, 0, 0);
969 970
	msleep(150);

R
Robert Foss 已提交
971
	asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD, 0);
972 973
	msleep(150);

R
Robert Foss 已提交
974
	asix_write_rx_ctl(dev, 0, 0);
975 976 977 978 979 980 981

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

982
	asix_phy_reset(dev, BMCR_RESET | BMCR_ANENABLE);
983 984 985 986 987
	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);

988
	asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT, 0);
989 990
	mii_nway_restart(&dev->mii);

991 992 993
	/* 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 已提交
994
							data->mac_addr, 0);
995 996 997
	if (ret < 0)
		return ret;

R
Robert Foss 已提交
998
	ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL, 0);
999 1000
	if (ret < 0)
		return ret;
1001 1002 1003 1004

	return 0;
}

1005 1006 1007
static int ax88178_link_reset(struct usbnet *dev)
{
	u16 mode;
1008
	struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
1009
	struct asix_data *data = (struct asix_data *)&dev->data;
1010
	u32 speed;
1011

1012
	netdev_dbg(dev->net, "ax88178_link_reset()\n");
1013 1014 1015 1016

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

1019
	if (speed == SPEED_1000)
1020
		mode |= AX_MEDIUM_GM;
1021
	else if (speed == SPEED_100)
1022 1023 1024 1025
		mode |= AX_MEDIUM_PS;
	else
		mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);

1026 1027
	mode |= AX_MEDIUM_ENCK;

1028 1029 1030 1031 1032
	if (ecmd.duplex == DUPLEX_FULL)
		mode |= AX_MEDIUM_FD;
	else
		mode &= ~AX_MEDIUM_FD;

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

R
Robert Foss 已提交
1036
	asix_write_medium_mode(dev, mode, 0);
1037 1038

	if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1039
		marvell_led_status(dev, speed);
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062

	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;
1063
	}
1064

R
Robert Foss 已提交
1065 1066
	rxctl = asix_read_rx_ctl(dev, 0);
	asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb, 0);
1067

R
Robert Foss 已提交
1068
	medium = asix_read_medium_status(dev, 0);
1069 1070 1071 1072
	if (dev->net->mtu > 1500)
		medium |= AX_MEDIUM_JFE;
	else
		medium &= ~AX_MEDIUM_JFE;
R
Robert Foss 已提交
1073
	asix_write_medium_mode(dev, medium, 0);
1074 1075 1076

	if (dev->rx_urb_size > old_rx_urb_size)
		usbnet_unlink_rx_urbs(dev);
1077 1078
}

1079
static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1080
{
1081 1082
	struct usbnet *dev = netdev_priv(net);
	int ll_mtu = new_mtu + net->hard_header_len + 4;
1083

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

1086 1087 1088 1089 1090 1091 1092
	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);

1093 1094 1095
	/* max qlen depend on hard_mtu and rx_urb_size */
	usbnet_update_max_qlen(dev);

1096 1097 1098
	return 0;
}

1099 1100 1101 1102 1103
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,
1104
	.ndo_get_stats64	= dev_get_tstats64,
1105
	.ndo_set_mac_address 	= asix_set_mac_address,
1106
	.ndo_validate_addr	= eth_validate_addr,
1107
	.ndo_set_rx_mode	= asix_set_multicast,
1108 1109 1110 1111
	.ndo_do_ioctl 		= asix_ioctl,
	.ndo_change_mtu 	= ax88178_change_mtu,
};

1112 1113 1114
static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
{
	int ret;
1115
	u8 buf[ETH_ALEN] = {0};
1116 1117 1118 1119

	usbnet_get_endpoints(dev,intf);

	/* Get the MAC address */
R
Robert Foss 已提交
1120
	ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf, 0);
1121
	if (ret < 0) {
1122
		netdev_dbg(dev->net, "Failed to read MAC address: %d\n", ret);
1123
		return ret;
1124
	}
1125 1126

	asix_set_netdev_dev_addr(dev, buf);
1127

1128 1129 1130 1131 1132 1133 1134
	/* 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;
1135 1136 1137 1138

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

	dev->net->netdev_ops = &ax88178_netdev_ops;
1141
	dev->net->ethtool_ops = &ax88178_ethtool_ops;
1142
	dev->net->max_mtu = 16384 - (dev->net->hard_header_len + 4);
1143

1144
	/* Blink LEDS so users know driver saw dongle */
R
Robert Foss 已提交
1145
	asix_sw_reset(dev, 0, 0);
1146
	msleep(150);
1147

R
Robert Foss 已提交
1148
	asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD, 0);
1149
	msleep(150);
1150 1151 1152 1153 1154 1155 1156 1157

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

1158 1159 1160 1161
	dev->driver_priv = kzalloc(sizeof(struct asix_common_private), GFP_KERNEL);
	if (!dev->driver_priv)
			return -ENOMEM;

1162
	return 0;
1163 1164 1165 1166
}

static const struct driver_info ax8817x_info = {
	.description = "ASIX AX8817x USB 2.0 Ethernet",
1167 1168
	.bind = ax88172_bind,
	.status = asix_status,
1169 1170
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1171
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1172 1173 1174 1175 1176
	.data = 0x00130103,
};

static const struct driver_info dlink_dub_e100_info = {
	.description = "DLink DUB-E100 USB Ethernet",
1177 1178
	.bind = ax88172_bind,
	.status = asix_status,
1179 1180
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1181
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1182 1183 1184 1185 1186
	.data = 0x009f9d9f,
};

static const struct driver_info netgear_fa120_info = {
	.description = "Netgear FA-120 USB Ethernet",
1187 1188
	.bind = ax88172_bind,
	.status = asix_status,
1189 1190
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1191
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1192 1193 1194 1195 1196
	.data = 0x00130103,
};

static const struct driver_info hawking_uf200_info = {
	.description = "Hawking UF200 USB Ethernet",
1197 1198
	.bind = ax88172_bind,
	.status = asix_status,
1199 1200
	.link_reset = ax88172_link_reset,
	.reset = ax88172_link_reset,
1201
	.flags =  FLAG_ETHER | FLAG_LINK_INTR,
1202 1203 1204 1205 1206 1207
	.data = 0x001f1d1f,
};

static const struct driver_info ax88772_info = {
	.description = "ASIX AX88772 USB 2.0 Ethernet",
	.bind = ax88772_bind,
1208
	.unbind = ax88772_unbind,
1209
	.status = asix_status,
R
Robert Foss 已提交
1210
	.reset = ax88772_reset,
1211
	.stop = ax88772_stop,
1212
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET,
1213
	.rx_fixup = asix_rx_fixup_common,
1214 1215 1216
	.tx_fixup = asix_tx_fixup,
};

1217 1218 1219
static const struct driver_info ax88772b_info = {
	.description = "ASIX AX88772B USB 2.0 Ethernet",
	.bind = ax88772_bind,
1220
	.unbind = ax88772_unbind,
1221 1222 1223 1224
	.status = asix_status,
	.reset = ax88772_reset,
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
	         FLAG_MULTI_PACKET,
1225
	.rx_fixup = asix_rx_fixup_common,
1226 1227 1228 1229
	.tx_fixup = asix_tx_fixup,
	.data = FLAG_EEPROM_MAC,
};

1230 1231 1232
static const struct driver_info ax88178_info = {
	.description = "ASIX AX88178 USB 2.0 Ethernet",
	.bind = ax88178_bind,
1233
	.unbind = ax88178_unbind,
1234 1235
	.status = asix_status,
	.link_reset = ax88178_link_reset,
1236
	.reset = ax88178_reset,
1237 1238
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
		 FLAG_MULTI_PACKET,
1239
	.rx_fixup = asix_rx_fixup_common,
1240
	.tx_fixup = asix_tx_fixup,
1241 1242
};

1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
/*
 * 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,
};

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
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 已提交
1287 1288 1289
	// Billionton Systems, USB2AR
	USB_DEVICE (0x08dd, 0x90ff),
	.driver_info =  (unsigned long) &ax8817x_info,
1290 1291 1292 1293
}, {
	// Billionton Systems, GUSB2AM-1G-B
	USB_DEVICE(0x08dd, 0x0114),
	.driver_info =  (unsigned long) &ax88178_info,
1294 1295 1296 1297 1298 1299 1300 1301
}, {
	// 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,
1302 1303 1304 1305
}, {
	// Buffalo LUA-U2-GT 10/100/1000
	USB_DEVICE (0x0411, 0x006e),
	.driver_info =  (unsigned long) &ax88178_info,
1306 1307 1308 1309
}, {
	// Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
	USB_DEVICE (0x6189, 0x182d),
	.driver_info =  (unsigned long) &ax8817x_info,
1310 1311 1312 1313
}, {
	// Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
	USB_DEVICE (0x0df6, 0x0056),
	.driver_info =  (unsigned long) &ax88178_info,
1314 1315 1316 1317
}, {
	// Sitecom LN-028 "USB 2.0 10/100/1000 Ethernet adapter"
	USB_DEVICE (0x0df6, 0x061c),
	.driver_info =  (unsigned long) &ax88178_info,
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
}, {
	// 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 已提交
1330 1331 1332 1333
}, {
	// JVC MP-PRX1 Port Replicator
	USB_DEVICE (0x04f1, 0x3008),
	.driver_info = (unsigned long) &ax8817x_info,
1334 1335 1336
}, {
	// Lenovo U2L100P 10/100
	USB_DEVICE (0x17ef, 0x7203),
R
Robert Foss 已提交
1337
	.driver_info = (unsigned long)&ax88772b_info,
M
Marek Vasut 已提交
1338 1339 1340
}, {
	// ASIX AX88772B 10/100
	USB_DEVICE (0x0b95, 0x772b),
1341
	.driver_info = (unsigned long) &ax88772b_info,
1342 1343
}, {
	// ASIX AX88772 10/100
D
David Hollis 已提交
1344 1345
	USB_DEVICE (0x0b95, 0x7720),
	.driver_info = (unsigned long) &ax88772_info,
1346 1347 1348
}, {
	// ASIX AX88178 10/100/1000
	USB_DEVICE (0x0b95, 0x1780),
1349
	.driver_info = (unsigned long) &ax88178_info,
1350 1351 1352 1353
}, {
	// Logitec LAN-GTJ/U2A
	USB_DEVICE (0x0789, 0x0160),
	.driver_info = (unsigned long) &ax88178_info,
1354 1355 1356 1357
}, {
	// Linksys USB200M Rev 2
	USB_DEVICE (0x13b1, 0x0018),
	.driver_info = (unsigned long) &ax88772_info,
1358 1359 1360 1361
}, {
	// 0Q0 cable ethernet
	USB_DEVICE (0x1557, 0x7720),
	.driver_info = (unsigned long) &ax88772_info,
1362 1363 1364 1365
}, {
	// DLink DUB-E100 H/W Ver B1
	USB_DEVICE (0x07d1, 0x3c05),
	.driver_info = (unsigned long) &ax88772_info,
1366 1367 1368 1369
}, {
	// DLink DUB-E100 H/W Ver B1 Alternate
	USB_DEVICE (0x2001, 0x3c05),
	.driver_info = (unsigned long) &ax88772_info,
1370 1371 1372 1373
}, {
       // DLink DUB-E100 H/W Ver C1
       USB_DEVICE (0x2001, 0x1a02),
       .driver_info = (unsigned long) &ax88772_info,
1374 1375 1376 1377
}, {
	// Linksys USB1000
	USB_DEVICE (0x1737, 0x0039),
	.driver_info = (unsigned long) &ax88178_info,
1378 1379 1380 1381
}, {
	// IO-DATA ETG-US2
	USB_DEVICE (0x04bb, 0x0930),
	.driver_info = (unsigned long) &ax88178_info,
D
David Hollis 已提交
1382 1383 1384 1385
}, {
	// Belkin F5D5055
	USB_DEVICE(0x050d, 0x5055),
	.driver_info = (unsigned long) &ax88178_info,
1386 1387 1388 1389
}, {
	// Apple USB Ethernet Adapter
	USB_DEVICE(0x05ac, 0x1402),
	.driver_info = (unsigned long) &ax88772_info,
1390 1391 1392 1393
}, {
	// Cables-to-Go USB Ethernet Adapter
	USB_DEVICE(0x0b95, 0x772a),
	.driver_info = (unsigned long) &ax88772_info,
G
Greg Kroah-Hartman 已提交
1394 1395 1396 1397 1398 1399 1400 1401
}, {
	// 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 已提交
1402 1403 1404
}, {
	// Asus USB Ethernet Adapter
	USB_DEVICE (0x0b95, 0x7e2b),
R
Robert Foss 已提交
1405
	.driver_info = (unsigned long)&ax88772b_info,
1406 1407 1408 1409
}, {
	/* ASIX 88172a demo board */
	USB_DEVICE(0x0b95, 0x172a),
	.driver_info = (unsigned long) &ax88172a_info,
1410 1411 1412 1413 1414 1415 1416 1417
}, {
	/*
	 * 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,
1418 1419 1420 1421 1422 1423
},
	{ },		// END
};
MODULE_DEVICE_TABLE(usb, products);

static struct usb_driver asix_driver = {
1424
	.name =		DRIVER_NAME,
1425 1426
	.id_table =	products,
	.probe =	usbnet_probe,
R
Robert Foss 已提交
1427 1428
	.suspend =	asix_suspend,
	.resume =	asix_resume,
1429
	.reset_resume =	asix_resume,
1430
	.disconnect =	usbnet_disconnect,
1431
	.supports_autosuspend = 1,
1432
	.disable_hub_initiated_lpm = 1,
1433 1434
};

1435
module_usb_driver(asix_driver);
1436 1437

MODULE_AUTHOR("David Hollis");
1438
MODULE_VERSION(DRIVER_VERSION);
1439 1440 1441
MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
MODULE_LICENSE("GPL");