Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
   1/*
   2 *  Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved.
   3 *
   4 * This program is free software; you can redistribute it and/or
   5 * modify it under the terms of the GNU General Public License
   6 * version 2 as published by the Free Software Foundation.
   7 *
   8 */
   9
  10#include <linux/signal.h>
  11#include <linux/slab.h>
  12#include <linux/module.h>
  13#include <linux/netdevice.h>
  14#include <linux/etherdevice.h>
  15#include <linux/mii.h>
  16#include <linux/ethtool.h>
  17#include <linux/usb.h>
  18#include <linux/crc32.h>
  19#include <linux/if_vlan.h>
  20#include <linux/uaccess.h>
  21#include <linux/list.h>
  22#include <linux/ip.h>
  23#include <linux/ipv6.h>
  24#include <net/ip6_checksum.h>
  25#include <uapi/linux/mdio.h>
  26#include <linux/mdio.h>
  27#include <linux/usb/cdc.h>
  28#include <linux/suspend.h>
  29#include <linux/acpi.h>
  30
  31/* Information for net-next */
  32#define NETNEXT_VERSION		"08"
  33
  34/* Information for net */
  35#define NET_VERSION		"8"
  36
  37#define DRIVER_VERSION		"v1." NETNEXT_VERSION "." NET_VERSION
  38#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
  39#define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters"
  40#define MODULENAME "r8152"
  41
  42#define R8152_PHY_ID		32
  43
  44#define PLA_IDR			0xc000
  45#define PLA_RCR			0xc010
  46#define PLA_RMS			0xc016
  47#define PLA_RXFIFO_CTRL0	0xc0a0
  48#define PLA_RXFIFO_CTRL1	0xc0a4
  49#define PLA_RXFIFO_CTRL2	0xc0a8
  50#define PLA_DMY_REG0		0xc0b0
  51#define PLA_FMC			0xc0b4
  52#define PLA_CFG_WOL		0xc0b6
  53#define PLA_TEREDO_CFG		0xc0bc
  54#define PLA_MAR			0xcd00
  55#define PLA_BACKUP		0xd000
  56#define PAL_BDC_CR		0xd1a0
  57#define PLA_TEREDO_TIMER	0xd2cc
  58#define PLA_REALWOW_TIMER	0xd2e8
  59#define PLA_LEDSEL		0xdd90
  60#define PLA_LED_FEATURE		0xdd92
  61#define PLA_PHYAR		0xde00
  62#define PLA_BOOT_CTRL		0xe004
  63#define PLA_GPHY_INTR_IMR	0xe022
  64#define PLA_EEE_CR		0xe040
  65#define PLA_EEEP_CR		0xe080
  66#define PLA_MAC_PWR_CTRL	0xe0c0
  67#define PLA_MAC_PWR_CTRL2	0xe0ca
  68#define PLA_MAC_PWR_CTRL3	0xe0cc
  69#define PLA_MAC_PWR_CTRL4	0xe0ce
  70#define PLA_WDT6_CTRL		0xe428
  71#define PLA_TCR0		0xe610
  72#define PLA_TCR1		0xe612
  73#define PLA_MTPS		0xe615
  74#define PLA_TXFIFO_CTRL		0xe618
  75#define PLA_RSTTALLY		0xe800
  76#define PLA_CR			0xe813
  77#define PLA_CRWECR		0xe81c
  78#define PLA_CONFIG12		0xe81e	/* CONFIG1, CONFIG2 */
  79#define PLA_CONFIG34		0xe820	/* CONFIG3, CONFIG4 */
  80#define PLA_CONFIG5		0xe822
  81#define PLA_PHY_PWR		0xe84c
  82#define PLA_OOB_CTRL		0xe84f
  83#define PLA_CPCR		0xe854
  84#define PLA_MISC_0		0xe858
  85#define PLA_MISC_1		0xe85a
  86#define PLA_OCP_GPHY_BASE	0xe86c
  87#define PLA_TALLYCNT		0xe890
  88#define PLA_SFF_STS_7		0xe8de
  89#define PLA_PHYSTATUS		0xe908
  90#define PLA_BP_BA		0xfc26
  91#define PLA_BP_0		0xfc28
  92#define PLA_BP_1		0xfc2a
  93#define PLA_BP_2		0xfc2c
  94#define PLA_BP_3		0xfc2e
  95#define PLA_BP_4		0xfc30
  96#define PLA_BP_5		0xfc32
  97#define PLA_BP_6		0xfc34
  98#define PLA_BP_7		0xfc36
  99#define PLA_BP_EN		0xfc38
 100
 101#define USB_USB2PHY		0xb41e
 102#define USB_SSPHYLINK2		0xb428
 103#define USB_U2P3_CTRL		0xb460
 104#define USB_CSR_DUMMY1		0xb464
 105#define USB_CSR_DUMMY2		0xb466
 106#define USB_DEV_STAT		0xb808
 107#define USB_CONNECT_TIMER	0xcbf8
 108#define USB_BURST_SIZE		0xcfc0
 109#define USB_USB_CTRL		0xd406
 110#define USB_PHY_CTRL		0xd408
 111#define USB_TX_AGG		0xd40a
 112#define USB_RX_BUF_TH		0xd40c
 113#define USB_USB_TIMER		0xd428
 114#define USB_RX_EARLY_TIMEOUT	0xd42c
 115#define USB_RX_EARLY_SIZE	0xd42e
 116#define USB_PM_CTRL_STATUS	0xd432
 117#define USB_TX_DMA		0xd434
 118#define USB_TOLERANCE		0xd490
 119#define USB_LPM_CTRL		0xd41a
 120#define USB_BMU_RESET		0xd4b0
 121#define USB_UPS_CTRL		0xd800
 122#define USB_MISC_0		0xd81a
 123#define USB_POWER_CUT		0xd80a
 124#define USB_AFE_CTRL2		0xd824
 125#define USB_WDT11_CTRL		0xe43c
 126#define USB_BP_BA		0xfc26
 127#define USB_BP_0		0xfc28
 128#define USB_BP_1		0xfc2a
 129#define USB_BP_2		0xfc2c
 130#define USB_BP_3		0xfc2e
 131#define USB_BP_4		0xfc30
 132#define USB_BP_5		0xfc32
 133#define USB_BP_6		0xfc34
 134#define USB_BP_7		0xfc36
 135#define USB_BP_EN		0xfc38
 136
 137/* OCP Registers */
 138#define OCP_ALDPS_CONFIG	0x2010
 139#define OCP_EEE_CONFIG1		0x2080
 140#define OCP_EEE_CONFIG2		0x2092
 141#define OCP_EEE_CONFIG3		0x2094
 142#define OCP_BASE_MII		0xa400
 143#define OCP_EEE_AR		0xa41a
 144#define OCP_EEE_DATA		0xa41c
 145#define OCP_PHY_STATUS		0xa420
 146#define OCP_POWER_CFG		0xa430
 147#define OCP_EEE_CFG		0xa432
 148#define OCP_SRAM_ADDR		0xa436
 149#define OCP_SRAM_DATA		0xa438
 150#define OCP_DOWN_SPEED		0xa442
 151#define OCP_EEE_ABLE		0xa5c4
 152#define OCP_EEE_ADV		0xa5d0
 153#define OCP_EEE_LPABLE		0xa5d2
 154#define OCP_PHY_STATE		0xa708		/* nway state for 8153 */
 155#define OCP_ADC_CFG		0xbc06
 156
 157/* SRAM Register */
 158#define SRAM_LPF_CFG		0x8012
 159#define SRAM_10M_AMP1		0x8080
 160#define SRAM_10M_AMP2		0x8082
 161#define SRAM_IMPEDANCE		0x8084
 162
 163/* PLA_RCR */
 164#define RCR_AAP			0x00000001
 165#define RCR_APM			0x00000002
 166#define RCR_AM			0x00000004
 167#define RCR_AB			0x00000008
 168#define RCR_ACPT_ALL		(RCR_AAP | RCR_APM | RCR_AM | RCR_AB)
 169
 170/* PLA_RXFIFO_CTRL0 */
 171#define RXFIFO_THR1_NORMAL	0x00080002
 172#define RXFIFO_THR1_OOB		0x01800003
 173
 174/* PLA_RXFIFO_CTRL1 */
 175#define RXFIFO_THR2_FULL	0x00000060
 176#define RXFIFO_THR2_HIGH	0x00000038
 177#define RXFIFO_THR2_OOB		0x0000004a
 178#define RXFIFO_THR2_NORMAL	0x00a0
 179
 180/* PLA_RXFIFO_CTRL2 */
 181#define RXFIFO_THR3_FULL	0x00000078
 182#define RXFIFO_THR3_HIGH	0x00000048
 183#define RXFIFO_THR3_OOB		0x0000005a
 184#define RXFIFO_THR3_NORMAL	0x0110
 185
 186/* PLA_TXFIFO_CTRL */
 187#define TXFIFO_THR_NORMAL	0x00400008
 188#define TXFIFO_THR_NORMAL2	0x01000008
 189
 190/* PLA_DMY_REG0 */
 191#define ECM_ALDPS		0x0002
 192
 193/* PLA_FMC */
 194#define FMC_FCR_MCU_EN		0x0001
 195
 196/* PLA_EEEP_CR */
 197#define EEEP_CR_EEEP_TX		0x0002
 198
 199/* PLA_WDT6_CTRL */
 200#define WDT6_SET_MODE		0x0010
 201
 202/* PLA_TCR0 */
 203#define TCR0_TX_EMPTY		0x0800
 204#define TCR0_AUTO_FIFO		0x0080
 205
 206/* PLA_TCR1 */
 207#define VERSION_MASK		0x7cf0
 208
 209/* PLA_MTPS */
 210#define MTPS_JUMBO		(12 * 1024 / 64)
 211#define MTPS_DEFAULT		(6 * 1024 / 64)
 212
 213/* PLA_RSTTALLY */
 214#define TALLY_RESET		0x0001
 215
 216/* PLA_CR */
 217#define CR_RST			0x10
 218#define CR_RE			0x08
 219#define CR_TE			0x04
 220
 221/* PLA_CRWECR */
 222#define CRWECR_NORAML		0x00
 223#define CRWECR_CONFIG		0xc0
 224
 225/* PLA_OOB_CTRL */
 226#define NOW_IS_OOB		0x80
 227#define TXFIFO_EMPTY		0x20
 228#define RXFIFO_EMPTY		0x10
 229#define LINK_LIST_READY		0x02
 230#define DIS_MCU_CLROOB		0x01
 231#define FIFO_EMPTY		(TXFIFO_EMPTY | RXFIFO_EMPTY)
 232
 233/* PLA_MISC_1 */
 234#define RXDY_GATED_EN		0x0008
 235
 236/* PLA_SFF_STS_7 */
 237#define RE_INIT_LL		0x8000
 238#define MCU_BORW_EN		0x4000
 239
 240/* PLA_CPCR */
 241#define CPCR_RX_VLAN		0x0040
 242
 243/* PLA_CFG_WOL */
 244#define MAGIC_EN		0x0001
 245
 246/* PLA_TEREDO_CFG */
 247#define TEREDO_SEL		0x8000
 248#define TEREDO_WAKE_MASK	0x7f00
 249#define TEREDO_RS_EVENT_MASK	0x00fe
 250#define OOB_TEREDO_EN		0x0001
 251
 252/* PAL_BDC_CR */
 253#define ALDPS_PROXY_MODE	0x0001
 254
 255/* PLA_CONFIG34 */
 256#define LINK_ON_WAKE_EN		0x0010
 257#define LINK_OFF_WAKE_EN	0x0008
 258
 259/* PLA_CONFIG5 */
 260#define BWF_EN			0x0040
 261#define MWF_EN			0x0020
 262#define UWF_EN			0x0010
 263#define LAN_WAKE_EN		0x0002
 264
 265/* PLA_LED_FEATURE */
 266#define LED_MODE_MASK		0x0700
 267
 268/* PLA_PHY_PWR */
 269#define TX_10M_IDLE_EN		0x0080
 270#define PFM_PWM_SWITCH		0x0040
 271
 272/* PLA_MAC_PWR_CTRL */
 273#define D3_CLK_GATED_EN		0x00004000
 274#define MCU_CLK_RATIO		0x07010f07
 275#define MCU_CLK_RATIO_MASK	0x0f0f0f0f
 276#define ALDPS_SPDWN_RATIO	0x0f87
 277
 278/* PLA_MAC_PWR_CTRL2 */
 279#define EEE_SPDWN_RATIO		0x8007
 280
 281/* PLA_MAC_PWR_CTRL3 */
 282#define PKT_AVAIL_SPDWN_EN	0x0100
 283#define SUSPEND_SPDWN_EN	0x0004
 284#define U1U2_SPDWN_EN		0x0002
 285#define L1_SPDWN_EN		0x0001
 286
 287/* PLA_MAC_PWR_CTRL4 */
 288#define PWRSAVE_SPDWN_EN	0x1000
 289#define RXDV_SPDWN_EN		0x0800
 290#define TX10MIDLE_EN		0x0100
 291#define TP100_SPDWN_EN		0x0020
 292#define TP500_SPDWN_EN		0x0010
 293#define TP1000_SPDWN_EN		0x0008
 294#define EEE_SPDWN_EN		0x0001
 295
 296/* PLA_GPHY_INTR_IMR */
 297#define GPHY_STS_MSK		0x0001
 298#define SPEED_DOWN_MSK		0x0002
 299#define SPDWN_RXDV_MSK		0x0004
 300#define SPDWN_LINKCHG_MSK	0x0008
 301
 302/* PLA_PHYAR */
 303#define PHYAR_FLAG		0x80000000
 304
 305/* PLA_EEE_CR */
 306#define EEE_RX_EN		0x0001
 307#define EEE_TX_EN		0x0002
 308
 309/* PLA_BOOT_CTRL */
 310#define AUTOLOAD_DONE		0x0002
 311
 312/* USB_USB2PHY */
 313#define USB2PHY_SUSPEND		0x0001
 314#define USB2PHY_L1		0x0002
 315
 316/* USB_SSPHYLINK2 */
 317#define pwd_dn_scale_mask	0x3ffe
 318#define pwd_dn_scale(x)		((x) << 1)
 319
 320/* USB_CSR_DUMMY1 */
 321#define DYNAMIC_BURST		0x0001
 322
 323/* USB_CSR_DUMMY2 */
 324#define EP4_FULL_FC		0x0001
 325
 326/* USB_DEV_STAT */
 327#define STAT_SPEED_MASK		0x0006
 328#define STAT_SPEED_HIGH		0x0000
 329#define STAT_SPEED_FULL		0x0002
 330
 331/* USB_TX_AGG */
 332#define TX_AGG_MAX_THRESHOLD	0x03
 333
 334/* USB_RX_BUF_TH */
 335#define RX_THR_SUPPER		0x0c350180
 336#define RX_THR_HIGH		0x7a120180
 337#define RX_THR_SLOW		0xffff0180
 338
 339/* USB_TX_DMA */
 340#define TEST_MODE_DISABLE	0x00000001
 341#define TX_SIZE_ADJUST1		0x00000100
 342
 343/* USB_BMU_RESET */
 344#define BMU_RESET_EP_IN		0x01
 345#define BMU_RESET_EP_OUT	0x02
 346
 347/* USB_UPS_CTRL */
 348#define POWER_CUT		0x0100
 349
 350/* USB_PM_CTRL_STATUS */
 351#define RESUME_INDICATE		0x0001
 352
 353/* USB_USB_CTRL */
 354#define RX_AGG_DISABLE		0x0010
 355#define RX_ZERO_EN		0x0080
 356
 357/* USB_U2P3_CTRL */
 358#define U2P3_ENABLE		0x0001
 359
 360/* USB_POWER_CUT */
 361#define PWR_EN			0x0001
 362#define PHASE2_EN		0x0008
 363
 364/* USB_MISC_0 */
 365#define PCUT_STATUS		0x0001
 366
 367/* USB_RX_EARLY_TIMEOUT */
 368#define COALESCE_SUPER		 85000U
 369#define COALESCE_HIGH		250000U
 370#define COALESCE_SLOW		524280U
 371
 372/* USB_WDT11_CTRL */
 373#define TIMER11_EN		0x0001
 374
 375/* USB_LPM_CTRL */
 376/* bit 4 ~ 5: fifo empty boundary */
 377#define FIFO_EMPTY_1FB		0x30	/* 0x1fb * 64 = 32448 bytes */
 378/* bit 2 ~ 3: LMP timer */
 379#define LPM_TIMER_MASK		0x0c
 380#define LPM_TIMER_500MS		0x04	/* 500 ms */
 381#define LPM_TIMER_500US		0x0c	/* 500 us */
 382#define ROK_EXIT_LPM		0x02
 383
 384/* USB_AFE_CTRL2 */
 385#define SEN_VAL_MASK		0xf800
 386#define SEN_VAL_NORMAL		0xa000
 387#define SEL_RXIDLE		0x0100
 388
 389/* OCP_ALDPS_CONFIG */
 390#define ENPWRSAVE		0x8000
 391#define ENPDNPS			0x0200
 392#define LINKENA			0x0100
 393#define DIS_SDSAVE		0x0010
 394
 395/* OCP_PHY_STATUS */
 396#define PHY_STAT_MASK		0x0007
 397#define PHY_STAT_LAN_ON		3
 398#define PHY_STAT_PWRDN		5
 399
 400/* OCP_POWER_CFG */
 401#define EEE_CLKDIV_EN		0x8000
 402#define EN_ALDPS		0x0004
 403#define EN_10M_PLLOFF		0x0001
 404
 405/* OCP_EEE_CONFIG1 */
 406#define RG_TXLPI_MSK_HFDUP	0x8000
 407#define RG_MATCLR_EN		0x4000
 408#define EEE_10_CAP		0x2000
 409#define EEE_NWAY_EN		0x1000
 410#define TX_QUIET_EN		0x0200
 411#define RX_QUIET_EN		0x0100
 412#define sd_rise_time_mask	0x0070
 413#define sd_rise_time(x)		(min(x, 7) << 4)	/* bit 4 ~ 6 */
 414#define RG_RXLPI_MSK_HFDUP	0x0008
 415#define SDFALLTIME		0x0007	/* bit 0 ~ 2 */
 416
 417/* OCP_EEE_CONFIG2 */
 418#define RG_LPIHYS_NUM		0x7000	/* bit 12 ~ 15 */
 419#define RG_DACQUIET_EN		0x0400
 420#define RG_LDVQUIET_EN		0x0200
 421#define RG_CKRSEL		0x0020
 422#define RG_EEEPRG_EN		0x0010
 423
 424/* OCP_EEE_CONFIG3 */
 425#define fast_snr_mask		0xff80
 426#define fast_snr(x)		(min(x, 0x1ff) << 7)	/* bit 7 ~ 15 */
 427#define RG_LFS_SEL		0x0060	/* bit 6 ~ 5 */
 428#define MSK_PH			0x0006	/* bit 0 ~ 3 */
 429
 430/* OCP_EEE_AR */
 431/* bit[15:14] function */
 432#define FUN_ADDR		0x0000
 433#define FUN_DATA		0x4000
 434/* bit[4:0] device addr */
 435
 436/* OCP_EEE_CFG */
 437#define CTAP_SHORT_EN		0x0040
 438#define EEE10_EN		0x0010
 439
 440/* OCP_DOWN_SPEED */
 441#define EN_10M_BGOFF		0x0080
 442
 443/* OCP_PHY_STATE */
 444#define TXDIS_STATE		0x01
 445#define ABD_STATE		0x02
 446
 447/* OCP_ADC_CFG */
 448#define CKADSEL_L		0x0100
 449#define ADC_EN			0x0080
 450#define EN_EMI_L		0x0040
 451
 452/* SRAM_LPF_CFG */
 453#define LPF_AUTO_TUNE		0x8000
 454
 455/* SRAM_10M_AMP1 */
 456#define GDAC_IB_UPALL		0x0008
 457
 458/* SRAM_10M_AMP2 */
 459#define AMP_DN			0x0200
 460
 461/* SRAM_IMPEDANCE */
 462#define RX_DRIVING_MASK		0x6000
 463
 464/* MAC PASSTHRU */
 465#define AD_MASK			0xfee0
 466#define EFUSE			0xcfdb
 467#define PASS_THRU_MASK		0x1
 468
 469enum rtl_register_content {
 470	_1000bps	= 0x10,
 471	_100bps		= 0x08,
 472	_10bps		= 0x04,
 473	LINK_STATUS	= 0x02,
 474	FULL_DUP	= 0x01,
 475};
 476
 477#define RTL8152_MAX_TX		4
 478#define RTL8152_MAX_RX		10
 479#define INTBUFSIZE		2
 480#define CRC_SIZE		4
 481#define TX_ALIGN		4
 482#define RX_ALIGN		8
 483
 484#define INTR_LINK		0x0004
 485
 486#define RTL8152_REQT_READ	0xc0
 487#define RTL8152_REQT_WRITE	0x40
 488#define RTL8152_REQ_GET_REGS	0x05
 489#define RTL8152_REQ_SET_REGS	0x05
 490
 491#define BYTE_EN_DWORD		0xff
 492#define BYTE_EN_WORD		0x33
 493#define BYTE_EN_BYTE		0x11
 494#define BYTE_EN_SIX_BYTES	0x3f
 495#define BYTE_EN_START_MASK	0x0f
 496#define BYTE_EN_END_MASK	0xf0
 497
 498#define RTL8153_MAX_PACKET	9216 /* 9K */
 499#define RTL8153_MAX_MTU		(RTL8153_MAX_PACKET - VLAN_ETH_HLEN - VLAN_HLEN)
 500#define RTL8152_RMS		(VLAN_ETH_FRAME_LEN + VLAN_HLEN)
 501#define RTL8153_RMS		RTL8153_MAX_PACKET
 502#define RTL8152_TX_TIMEOUT	(5 * HZ)
 503#define RTL8152_NAPI_WEIGHT	64
 504
 505/* rtl8152 flags */
 506enum rtl8152_flags {
 507	RTL8152_UNPLUG = 0,
 508	RTL8152_SET_RX_MODE,
 509	WORK_ENABLE,
 510	RTL8152_LINK_CHG,
 511	SELECTIVE_SUSPEND,
 512	PHY_RESET,
 513	SCHEDULE_NAPI,
 514};
 515
 516/* Define these values to match your device */
 517#define VENDOR_ID_REALTEK		0x0bda
 518#define VENDOR_ID_SAMSUNG		0x04e8
 519#define VENDOR_ID_LENOVO		0x17ef
 520#define VENDOR_ID_NVIDIA		0x0955
 521
 522#define MCU_TYPE_PLA			0x0100
 523#define MCU_TYPE_USB			0x0000
 524
 525struct tally_counter {
 526	__le64	tx_packets;
 527	__le64	rx_packets;
 528	__le64	tx_errors;
 529	__le32	rx_errors;
 530	__le16	rx_missed;
 531	__le16	align_errors;
 532	__le32	tx_one_collision;
 533	__le32	tx_multi_collision;
 534	__le64	rx_unicast;
 535	__le64	rx_broadcast;
 536	__le32	rx_multicast;
 537	__le16	tx_aborted;
 538	__le16	tx_underrun;
 539};
 540
 541struct rx_desc {
 542	__le32 opts1;
 543#define RX_LEN_MASK			0x7fff
 544
 545	__le32 opts2;
 546#define RD_UDP_CS			BIT(23)
 547#define RD_TCP_CS			BIT(22)
 548#define RD_IPV6_CS			BIT(20)
 549#define RD_IPV4_CS			BIT(19)
 550
 551	__le32 opts3;
 552#define IPF				BIT(23) /* IP checksum fail */
 553#define UDPF				BIT(22) /* UDP checksum fail */
 554#define TCPF				BIT(21) /* TCP checksum fail */
 555#define RX_VLAN_TAG			BIT(16)
 556
 557	__le32 opts4;
 558	__le32 opts5;
 559	__le32 opts6;
 560};
 561
 562struct tx_desc {
 563	__le32 opts1;
 564#define TX_FS			BIT(31) /* First segment of a packet */
 565#define TX_LS			BIT(30) /* Final segment of a packet */
 566#define GTSENDV4		BIT(28)
 567#define GTSENDV6		BIT(27)
 568#define GTTCPHO_SHIFT		18
 569#define GTTCPHO_MAX		0x7fU
 570#define TX_LEN_MAX		0x3ffffU
 571
 572	__le32 opts2;
 573#define UDP_CS			BIT(31) /* Calculate UDP/IP checksum */
 574#define TCP_CS			BIT(30) /* Calculate TCP/IP checksum */
 575#define IPV4_CS			BIT(29) /* Calculate IPv4 checksum */
 576#define IPV6_CS			BIT(28) /* Calculate IPv6 checksum */
 577#define MSS_SHIFT		17
 578#define MSS_MAX			0x7ffU
 579#define TCPHO_SHIFT		17
 580#define TCPHO_MAX		0x7ffU
 581#define TX_VLAN_TAG		BIT(16)
 582};
 583
 584struct r8152;
 585
 586struct rx_agg {
 587	struct list_head list;
 588	struct urb *urb;
 589	struct r8152 *context;
 590	void *buffer;
 591	void *head;
 592};
 593
 594struct tx_agg {
 595	struct list_head list;
 596	struct urb *urb;
 597	struct r8152 *context;
 598	void *buffer;
 599	void *head;
 600	u32 skb_num;
 601	u32 skb_len;
 602};
 603
 604struct r8152 {
 605	unsigned long flags;
 606	struct usb_device *udev;
 607	struct napi_struct napi;
 608	struct usb_interface *intf;
 609	struct net_device *netdev;
 610	struct urb *intr_urb;
 611	struct tx_agg tx_info[RTL8152_MAX_TX];
 612	struct rx_agg rx_info[RTL8152_MAX_RX];
 613	struct list_head rx_done, tx_free;
 614	struct sk_buff_head tx_queue, rx_queue;
 615	spinlock_t rx_lock, tx_lock;
 616	struct delayed_work schedule, hw_phy_work;
 617	struct mii_if_info mii;
 618	struct mutex control;	/* use for hw setting */
 619#ifdef CONFIG_PM_SLEEP
 620	struct notifier_block pm_notifier;
 621#endif
 622
 623	struct rtl_ops {
 624		void (*init)(struct r8152 *);
 625		int (*enable)(struct r8152 *);
 626		void (*disable)(struct r8152 *);
 627		void (*up)(struct r8152 *);
 628		void (*down)(struct r8152 *);
 629		void (*unload)(struct r8152 *);
 630		int (*eee_get)(struct r8152 *, struct ethtool_eee *);
 631		int (*eee_set)(struct r8152 *, struct ethtool_eee *);
 632		bool (*in_nway)(struct r8152 *);
 633		void (*hw_phy_cfg)(struct r8152 *);
 634		void (*autosuspend_en)(struct r8152 *tp, bool enable);
 635	} rtl_ops;
 636
 637	int intr_interval;
 638	u32 saved_wolopts;
 639	u32 msg_enable;
 640	u32 tx_qlen;
 641	u32 coalesce;
 642	u16 ocp_base;
 643	u16 speed;
 644	u8 *intr_buff;
 645	u8 version;
 646	u8 duplex;
 647	u8 autoneg;
 648};
 649
 650enum rtl_version {
 651	RTL_VER_UNKNOWN = 0,
 652	RTL_VER_01,
 653	RTL_VER_02,
 654	RTL_VER_03,
 655	RTL_VER_04,
 656	RTL_VER_05,
 657	RTL_VER_06,
 658	RTL_VER_MAX
 659};
 660
 661enum tx_csum_stat {
 662	TX_CSUM_SUCCESS = 0,
 663	TX_CSUM_TSO,
 664	TX_CSUM_NONE
 665};
 666
 667/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
 668 * The RTL chips use a 64 element hash table based on the Ethernet CRC.
 669 */
 670static const int multicast_filter_limit = 32;
 671static unsigned int agg_buf_sz = 16384;
 672
 673#define RTL_LIMITED_TSO_SIZE	(agg_buf_sz - sizeof(struct tx_desc) - \
 674				 VLAN_ETH_HLEN - VLAN_HLEN)
 675
 676static
 677int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
 678{
 679	int ret;
 680	void *tmp;
 681
 682	tmp = kmalloc(size, GFP_KERNEL);
 683	if (!tmp)
 684		return -ENOMEM;
 685
 686	ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
 687			      RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
 688			      value, index, tmp, size, 500);
 689
 690	memcpy(data, tmp, size);
 691	kfree(tmp);
 692
 693	return ret;
 694}
 695
 696static
 697int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
 698{
 699	int ret;
 700	void *tmp;
 701
 702	tmp = kmemdup(data, size, GFP_KERNEL);
 703	if (!tmp)
 704		return -ENOMEM;
 705
 706	ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
 707			      RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
 708			      value, index, tmp, size, 500);
 709
 710	kfree(tmp);
 711
 712	return ret;
 713}
 714
 715static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
 716			    void *data, u16 type)
 717{
 718	u16 limit = 64;
 719	int ret = 0;
 720
 721	if (test_bit(RTL8152_UNPLUG, &tp->flags))
 722		return -ENODEV;
 723
 724	/* both size and indix must be 4 bytes align */
 725	if ((size & 3) || !size || (index & 3) || !data)
 726		return -EPERM;
 727
 728	if ((u32)index + (u32)size > 0xffff)
 729		return -EPERM;
 730
 731	while (size) {
 732		if (size > limit) {
 733			ret = get_registers(tp, index, type, limit, data);
 734			if (ret < 0)
 735				break;
 736
 737			index += limit;
 738			data += limit;
 739			size -= limit;
 740		} else {
 741			ret = get_registers(tp, index, type, size, data);
 742			if (ret < 0)
 743				break;
 744
 745			index += size;
 746			data += size;
 747			size = 0;
 748			break;
 749		}
 750	}
 751
 752	if (ret == -ENODEV)
 753		set_bit(RTL8152_UNPLUG, &tp->flags);
 754
 755	return ret;
 756}
 757
 758static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen,
 759			     u16 size, void *data, u16 type)
 760{
 761	int ret;
 762	u16 byteen_start, byteen_end, byen;
 763	u16 limit = 512;
 764
 765	if (test_bit(RTL8152_UNPLUG, &tp->flags))
 766		return -ENODEV;
 767
 768	/* both size and indix must be 4 bytes align */
 769	if ((size & 3) || !size || (index & 3) || !data)
 770		return -EPERM;
 771
 772	if ((u32)index + (u32)size > 0xffff)
 773		return -EPERM;
 774
 775	byteen_start = byteen & BYTE_EN_START_MASK;
 776	byteen_end = byteen & BYTE_EN_END_MASK;
 777
 778	byen = byteen_start | (byteen_start << 4);
 779	ret = set_registers(tp, index, type | byen, 4, data);
 780	if (ret < 0)
 781		goto error1;
 782
 783	index += 4;
 784	data += 4;
 785	size -= 4;
 786
 787	if (size) {
 788		size -= 4;
 789
 790		while (size) {
 791			if (size > limit) {
 792				ret = set_registers(tp, index,
 793						    type | BYTE_EN_DWORD,
 794						    limit, data);
 795				if (ret < 0)
 796					goto error1;
 797
 798				index += limit;
 799				data += limit;
 800				size -= limit;
 801			} else {
 802				ret = set_registers(tp, index,
 803						    type | BYTE_EN_DWORD,
 804						    size, data);
 805				if (ret < 0)
 806					goto error1;
 807
 808				index += size;
 809				data += size;
 810				size = 0;
 811				break;
 812			}
 813		}
 814
 815		byen = byteen_end | (byteen_end >> 4);
 816		ret = set_registers(tp, index, type | byen, 4, data);
 817		if (ret < 0)
 818			goto error1;
 819	}
 820
 821error1:
 822	if (ret == -ENODEV)
 823		set_bit(RTL8152_UNPLUG, &tp->flags);
 824
 825	return ret;
 826}
 827
 828static inline
 829int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
 830{
 831	return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA);
 832}
 833
 834static inline
 835int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
 836{
 837	return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA);
 838}
 839
 840static inline
 841int usb_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
 842{
 843	return generic_ocp_read(tp, index, size, data, MCU_TYPE_USB);
 844}
 845
 846static inline
 847int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
 848{
 849	return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB);
 850}
 851
 852static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index)
 853{
 854	__le32 data;
 855
 856	generic_ocp_read(tp, index, sizeof(data), &data, type);
 857
 858	return __le32_to_cpu(data);
 859}
 860
 861static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data)
 862{
 863	__le32 tmp = __cpu_to_le32(data);
 864
 865	generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
 866}
 867
 868static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index)
 869{
 870	u32 data;
 871	__le32 tmp;
 872	u8 shift = index & 2;
 873
 874	index &= ~3;
 875
 876	generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
 877
 878	data = __le32_to_cpu(tmp);
 879	data >>= (shift * 8);
 880	data &= 0xffff;
 881
 882	return (u16)data;
 883}
 884
 885static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data)
 886{
 887	u32 mask = 0xffff;
 888	__le32 tmp;
 889	u16 byen = BYTE_EN_WORD;
 890	u8 shift = index & 2;
 891
 892	data &= mask;
 893
 894	if (index & 2) {
 895		byen <<= shift;
 896		mask <<= (shift * 8);
 897		data <<= (shift * 8);
 898		index &= ~3;
 899	}
 900
 901	tmp = __cpu_to_le32(data);
 902
 903	generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
 904}
 905
 906static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index)
 907{
 908	u32 data;
 909	__le32 tmp;
 910	u8 shift = index & 3;
 911
 912	index &= ~3;
 913
 914	generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
 915
 916	data = __le32_to_cpu(tmp);
 917	data >>= (shift * 8);
 918	data &= 0xff;
 919
 920	return (u8)data;
 921}
 922
 923static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data)
 924{
 925	u32 mask = 0xff;
 926	__le32 tmp;
 927	u16 byen = BYTE_EN_BYTE;
 928	u8 shift = index & 3;
 929
 930	data &= mask;
 931
 932	if (index & 3) {
 933		byen <<= shift;
 934		mask <<= (shift * 8);
 935		data <<= (shift * 8);
 936		index &= ~3;
 937	}
 938
 939	tmp = __cpu_to_le32(data);
 940
 941	generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
 942}
 943
 944static u16 ocp_reg_read(struct r8152 *tp, u16 addr)
 945{
 946	u16 ocp_base, ocp_index;
 947
 948	ocp_base = addr & 0xf000;
 949	if (ocp_base != tp->ocp_base) {
 950		ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
 951		tp->ocp_base = ocp_base;
 952	}
 953
 954	ocp_index = (addr & 0x0fff) | 0xb000;
 955	return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index);
 956}
 957
 958static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data)
 959{
 960	u16 ocp_base, ocp_index;
 961
 962	ocp_base = addr & 0xf000;
 963	if (ocp_base != tp->ocp_base) {
 964		ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
 965		tp->ocp_base = ocp_base;
 966	}
 967
 968	ocp_index = (addr & 0x0fff) | 0xb000;
 969	ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data);
 970}
 971
 972static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value)
 973{
 974	ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value);
 975}
 976
 977static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr)
 978{
 979	return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2);
 980}
 981
 982static void sram_write(struct r8152 *tp, u16 addr, u16 data)
 983{
 984	ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
 985	ocp_reg_write(tp, OCP_SRAM_DATA, data);
 986}
 987
 988static int read_mii_word(struct net_device *netdev, int phy_id, int reg)
 989{
 990	struct r8152 *tp = netdev_priv(netdev);
 991	int ret;
 992
 993	if (test_bit(RTL8152_UNPLUG, &tp->flags))
 994		return -ENODEV;
 995
 996	if (phy_id != R8152_PHY_ID)
 997		return -EINVAL;
 998
 999	ret = r8152_mdio_read(tp, reg);
1000
1001	return ret;
1002}
1003
1004static
1005void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val)
1006{
1007	struct r8152 *tp = netdev_priv(netdev);
1008
1009	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1010		return;
1011
1012	if (phy_id != R8152_PHY_ID)
1013		return;
1014
1015	r8152_mdio_write(tp, reg, val);
1016}
1017
1018static int
1019r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
1020
1021static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
1022{
1023	struct r8152 *tp = netdev_priv(netdev);
1024	struct sockaddr *addr = p;
1025	int ret = -EADDRNOTAVAIL;
1026
1027	if (!is_valid_ether_addr(addr->sa_data))
1028		goto out1;
1029
1030	ret = usb_autopm_get_interface(tp->intf);
1031	if (ret < 0)
1032		goto out1;
1033
1034	mutex_lock(&tp->control);
1035
1036	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1037
1038	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
1039	pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data);
1040	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
1041
1042	mutex_unlock(&tp->control);
1043
1044	usb_autopm_put_interface(tp->intf);
1045out1:
1046	return ret;
1047}
1048
1049/* Devices containing RTL8153-AD can support a persistent
1050 * host system provided MAC address.
1051 * Examples of this are Dell TB15 and Dell WD15 docks
1052 */
1053static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa)
1054{
1055	acpi_status status;
1056	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1057	union acpi_object *obj;
1058	int ret = -EINVAL;
1059	u32 ocp_data;
1060	unsigned char buf[6];
1061
1062	/* test for -AD variant of RTL8153 */
1063	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
1064	if ((ocp_data & AD_MASK) != 0x1000)
1065		return -ENODEV;
1066
1067	/* test for MAC address pass-through bit */
1068	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, EFUSE);
1069	if ((ocp_data & PASS_THRU_MASK) != 1)
1070		return -ENODEV;
1071
1072	/* returns _AUXMAC_#AABBCCDDEEFF# */
1073	status = acpi_evaluate_object(NULL, "\\_SB.AMAC", NULL, &buffer);
1074	obj = (union acpi_object *)buffer.pointer;
1075	if (!ACPI_SUCCESS(status))
1076		return -ENODEV;
1077	if (obj->type != ACPI_TYPE_BUFFER || obj->string.length != 0x17) {
1078		netif_warn(tp, probe, tp->netdev,
1079			   "Invalid buffer for pass-thru MAC addr: (%d, %d)\n",
1080			   obj->type, obj->string.length);
1081		goto amacout;
1082	}
1083	if (strncmp(obj->string.pointer, "_AUXMAC_#", 9) != 0 ||
1084	    strncmp(obj->string.pointer + 0x15, "#", 1) != 0) {
1085		netif_warn(tp, probe, tp->netdev,
1086			   "Invalid header when reading pass-thru MAC addr\n");
1087		goto amacout;
1088	}
1089	ret = hex2bin(buf, obj->string.pointer + 9, 6);
1090	if (!(ret == 0 && is_valid_ether_addr(buf))) {
1091		netif_warn(tp, probe, tp->netdev,
1092			   "Invalid MAC for pass-thru MAC addr: %d, %pM\n",
1093			   ret, buf);
1094		ret = -EINVAL;
1095		goto amacout;
1096	}
1097	memcpy(sa->sa_data, buf, 6);
1098	ether_addr_copy(tp->netdev->dev_addr, sa->sa_data);
1099	netif_info(tp, probe, tp->netdev,
1100		   "Using pass-thru MAC addr %pM\n", sa->sa_data);
1101
1102amacout:
1103	kfree(obj);
1104	return ret;
1105}
1106
1107static int set_ethernet_addr(struct r8152 *tp)
1108{
1109	struct net_device *dev = tp->netdev;
1110	struct sockaddr sa;
1111	int ret;
1112
1113	if (tp->version == RTL_VER_01) {
1114		ret = pla_ocp_read(tp, PLA_IDR, 8, sa.sa_data);
1115	} else {
1116		/* if this is not an RTL8153-AD, no eFuse mac pass thru set,
1117		 * or system doesn't provide valid _SB.AMAC this will be
1118		 * be expected to non-zero
1119		 */
1120		ret = vendor_mac_passthru_addr_read(tp, &sa);
1121		if (ret < 0)
1122			ret = pla_ocp_read(tp, PLA_BACKUP, 8, sa.sa_data);
1123	}
1124
1125	if (ret < 0) {
1126		netif_err(tp, probe, dev, "Get ether addr fail\n");
1127	} else if (!is_valid_ether_addr(sa.sa_data)) {
1128		netif_err(tp, probe, dev, "Invalid ether addr %pM\n",
1129			  sa.sa_data);
1130		eth_hw_addr_random(dev);
1131		ether_addr_copy(sa.sa_data, dev->dev_addr);
1132		ret = rtl8152_set_mac_address(dev, &sa);
1133		netif_info(tp, probe, dev, "Random ether addr %pM\n",
1134			   sa.sa_data);
1135	} else {
1136		if (tp->version == RTL_VER_01)
1137			ether_addr_copy(dev->dev_addr, sa.sa_data);
1138		else
1139			ret = rtl8152_set_mac_address(dev, &sa);
1140	}
1141
1142	return ret;
1143}
1144
1145static void read_bulk_callback(struct urb *urb)
1146{
1147	struct net_device *netdev;
1148	int status = urb->status;
1149	struct rx_agg *agg;
1150	struct r8152 *tp;
1151
1152	agg = urb->context;
1153	if (!agg)
1154		return;
1155
1156	tp = agg->context;
1157	if (!tp)
1158		return;
1159
1160	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1161		return;
1162
1163	if (!test_bit(WORK_ENABLE, &tp->flags))
1164		return;
1165
1166	netdev = tp->netdev;
1167
1168	/* When link down, the driver would cancel all bulks. */
1169	/* This avoid the re-submitting bulk */
1170	if (!netif_carrier_ok(netdev))
1171		return;
1172
1173	usb_mark_last_busy(tp->udev);
1174
1175	switch (status) {
1176	case 0:
1177		if (urb->actual_length < ETH_ZLEN)
1178			break;
1179
1180		spin_lock(&tp->rx_lock);
1181		list_add_tail(&agg->list, &tp->rx_done);
1182		spin_unlock(&tp->rx_lock);
1183		napi_schedule(&tp->napi);
1184		return;
1185	case -ESHUTDOWN:
1186		set_bit(RTL8152_UNPLUG, &tp->flags);
1187		netif_device_detach(tp->netdev);
1188		return;
1189	case -ENOENT:
1190		return;	/* the urb is in unlink state */
1191	case -ETIME:
1192		if (net_ratelimit())
1193			netdev_warn(netdev, "maybe reset is needed?\n");
1194		break;
1195	default:
1196		if (net_ratelimit())
1197			netdev_warn(netdev, "Rx status %d\n", status);
1198		break;
1199	}
1200
1201	r8152_submit_rx(tp, agg, GFP_ATOMIC);
1202}
1203
1204static void write_bulk_callback(struct urb *urb)
1205{
1206	struct net_device_stats *stats;
1207	struct net_device *netdev;
1208	struct tx_agg *agg;
1209	struct r8152 *tp;
1210	int status = urb->status;
1211
1212	agg = urb->context;
1213	if (!agg)
1214		return;
1215
1216	tp = agg->context;
1217	if (!tp)
1218		return;
1219
1220	netdev = tp->netdev;
1221	stats = &netdev->stats;
1222	if (status) {
1223		if (net_ratelimit())
1224			netdev_warn(netdev, "Tx status %d\n", status);
1225		stats->tx_errors += agg->skb_num;
1226	} else {
1227		stats->tx_packets += agg->skb_num;
1228		stats->tx_bytes += agg->skb_len;
1229	}
1230
1231	spin_lock(&tp->tx_lock);
1232	list_add_tail(&agg->list, &tp->tx_free);
1233	spin_unlock(&tp->tx_lock);
1234
1235	usb_autopm_put_interface_async(tp->intf);
1236
1237	if (!netif_carrier_ok(netdev))
1238		return;
1239
1240	if (!test_bit(WORK_ENABLE, &tp->flags))
1241		return;
1242
1243	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1244		return;
1245
1246	if (!skb_queue_empty(&tp->tx_queue))
1247		napi_schedule(&tp->napi);
1248}
1249
1250static void intr_callback(struct urb *urb)
1251{
1252	struct r8152 *tp;
1253	__le16 *d;
1254	int status = urb->status;
1255	int res;
1256
1257	tp = urb->context;
1258	if (!tp)
1259		return;
1260
1261	if (!test_bit(WORK_ENABLE, &tp->flags))
1262		return;
1263
1264	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1265		return;
1266
1267	switch (status) {
1268	case 0:			/* success */
1269		break;
1270	case -ECONNRESET:	/* unlink */
1271	case -ESHUTDOWN:
1272		netif_device_detach(tp->netdev);
1273	case -ENOENT:
1274	case -EPROTO:
1275		netif_info(tp, intr, tp->netdev,
1276			   "Stop submitting intr, status %d\n", status);
1277		return;
1278	case -EOVERFLOW:
1279		netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n");
1280		goto resubmit;
1281	/* -EPIPE:  should clear the halt */
1282	default:
1283		netif_info(tp, intr, tp->netdev, "intr status %d\n", status);
1284		goto resubmit;
1285	}
1286
1287	d = urb->transfer_buffer;
1288	if (INTR_LINK & __le16_to_cpu(d[0])) {
1289		if (!netif_carrier_ok(tp->netdev)) {
1290			set_bit(RTL8152_LINK_CHG, &tp->flags);
1291			schedule_delayed_work(&tp->schedule, 0);
1292		}
1293	} else {
1294		if (netif_carrier_ok(tp->netdev)) {
1295			set_bit(RTL8152_LINK_CHG, &tp->flags);
1296			schedule_delayed_work(&tp->schedule, 0);
1297		}
1298	}
1299
1300resubmit:
1301	res = usb_submit_urb(urb, GFP_ATOMIC);
1302	if (res == -ENODEV) {
1303		set_bit(RTL8152_UNPLUG, &tp->flags);
1304		netif_device_detach(tp->netdev);
1305	} else if (res) {
1306		netif_err(tp, intr, tp->netdev,
1307			  "can't resubmit intr, status %d\n", res);
1308	}
1309}
1310
1311static inline void *rx_agg_align(void *data)
1312{
1313	return (void *)ALIGN((uintptr_t)data, RX_ALIGN);
1314}
1315
1316static inline void *tx_agg_align(void *data)
1317{
1318	return (void *)ALIGN((uintptr_t)data, TX_ALIGN);
1319}
1320
1321static void free_all_mem(struct r8152 *tp)
1322{
1323	int i;
1324
1325	for (i = 0; i < RTL8152_MAX_RX; i++) {
1326		usb_free_urb(tp->rx_info[i].urb);
1327		tp->rx_info[i].urb = NULL;
1328
1329		kfree(tp->rx_info[i].buffer);
1330		tp->rx_info[i].buffer = NULL;
1331		tp->rx_info[i].head = NULL;
1332	}
1333
1334	for (i = 0; i < RTL8152_MAX_TX; i++) {
1335		usb_free_urb(tp->tx_info[i].urb);
1336		tp->tx_info[i].urb = NULL;
1337
1338		kfree(tp->tx_info[i].buffer);
1339		tp->tx_info[i].buffer = NULL;
1340		tp->tx_info[i].head = NULL;
1341	}
1342
1343	usb_free_urb(tp->intr_urb);
1344	tp->intr_urb = NULL;
1345
1346	kfree(tp->intr_buff);
1347	tp->intr_buff = NULL;
1348}
1349
1350static int alloc_all_mem(struct r8152 *tp)
1351{
1352	struct net_device *netdev = tp->netdev;
1353	struct usb_interface *intf = tp->intf;
1354	struct usb_host_interface *alt = intf->cur_altsetting;
1355	struct usb_host_endpoint *ep_intr = alt->endpoint + 2;
1356	struct urb *urb;
1357	int node, i;
1358	u8 *buf;
1359
1360	node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1361
1362	spin_lock_init(&tp->rx_lock);
1363	spin_lock_init(&tp->tx_lock);
1364	INIT_LIST_HEAD(&tp->tx_free);
1365	skb_queue_head_init(&tp->tx_queue);
1366	skb_queue_head_init(&tp->rx_queue);
1367
1368	for (i = 0; i < RTL8152_MAX_RX; i++) {
1369		buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
1370		if (!buf)
1371			goto err1;
1372
1373		if (buf != rx_agg_align(buf)) {
1374			kfree(buf);
1375			buf = kmalloc_node(agg_buf_sz + RX_ALIGN, GFP_KERNEL,
1376					   node);
1377			if (!buf)
1378				goto err1;
1379		}
1380
1381		urb = usb_alloc_urb(0, GFP_KERNEL);
1382		if (!urb) {
1383			kfree(buf);
1384			goto err1;
1385		}
1386
1387		INIT_LIST_HEAD(&tp->rx_info[i].list);
1388		tp->rx_info[i].context = tp;
1389		tp->rx_info[i].urb = urb;
1390		tp->rx_info[i].buffer = buf;
1391		tp->rx_info[i].head = rx_agg_align(buf);
1392	}
1393
1394	for (i = 0; i < RTL8152_MAX_TX; i++) {
1395		buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
1396		if (!buf)
1397			goto err1;
1398
1399		if (buf != tx_agg_align(buf)) {
1400			kfree(buf);
1401			buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL,
1402					   node);
1403			if (!buf)
1404				goto err1;
1405		}
1406
1407		urb = usb_alloc_urb(0, GFP_KERNEL);
1408		if (!urb) {
1409			kfree(buf);
1410			goto err1;
1411		}
1412
1413		INIT_LIST_HEAD(&tp->tx_info[i].list);
1414		tp->tx_info[i].context = tp;
1415		tp->tx_info[i].urb = urb;
1416		tp->tx_info[i].buffer = buf;
1417		tp->tx_info[i].head = tx_agg_align(buf);
1418
1419		list_add_tail(&tp->tx_info[i].list, &tp->tx_free);
1420	}
1421
1422	tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
1423	if (!tp->intr_urb)
1424		goto err1;
1425
1426	tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
1427	if (!tp->intr_buff)
1428		goto err1;
1429
1430	tp->intr_interval = (int)ep_intr->desc.bInterval;
1431	usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
1432			 tp->intr_buff, INTBUFSIZE, intr_callback,
1433			 tp, tp->intr_interval);
1434
1435	return 0;
1436
1437err1:
1438	free_all_mem(tp);
1439	return -ENOMEM;
1440}
1441
1442static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp)
1443{
1444	struct tx_agg *agg = NULL;
1445	unsigned long flags;
1446
1447	if (list_empty(&tp->tx_free))
1448		return NULL;
1449
1450	spin_lock_irqsave(&tp->tx_lock, flags);
1451	if (!list_empty(&tp->tx_free)) {
1452		struct list_head *cursor;
1453
1454		cursor = tp->tx_free.next;
1455		list_del_init(cursor);
1456		agg = list_entry(cursor, struct tx_agg, list);
1457	}
1458	spin_unlock_irqrestore(&tp->tx_lock, flags);
1459
1460	return agg;
1461}
1462
1463/* r8152_csum_workaround()
1464 * The hw limites the value the transport offset. When the offset is out of the
1465 * range, calculate the checksum by sw.
1466 */
1467static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb,
1468				  struct sk_buff_head *list)
1469{
1470	if (skb_shinfo(skb)->gso_size) {
1471		netdev_features_t features = tp->netdev->features;
1472		struct sk_buff_head seg_list;
1473		struct sk_buff *segs, *nskb;
1474
1475		features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
1476		segs = skb_gso_segment(skb, features);
1477		if (IS_ERR(segs) || !segs)
1478			goto drop;
1479
1480		__skb_queue_head_init(&seg_list);
1481
1482		do {
1483			nskb = segs;
1484			segs = segs->next;
1485			nskb->next = NULL;
1486			__skb_queue_tail(&seg_list, nskb);
1487		} while (segs);
1488
1489		skb_queue_splice(&seg_list, list);
1490		dev_kfree_skb(skb);
1491	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1492		if (skb_checksum_help(skb) < 0)
1493			goto drop;
1494
1495		__skb_queue_head(list, skb);
1496	} else {
1497		struct net_device_stats *stats;
1498
1499drop:
1500		stats = &tp->netdev->stats;
1501		stats->tx_dropped++;
1502		dev_kfree_skb(skb);
1503	}
1504}
1505
1506/* msdn_giant_send_check()
1507 * According to the document of microsoft, the TCP Pseudo Header excludes the
1508 * packet length for IPv6 TCP large packets.
1509 */
1510static int msdn_giant_send_check(struct sk_buff *skb)
1511{
1512	const struct ipv6hdr *ipv6h;
1513	struct tcphdr *th;
1514	int ret;
1515
1516	ret = skb_cow_head(skb, 0);
1517	if (ret)
1518		return ret;
1519
1520	ipv6h = ipv6_hdr(skb);
1521	th = tcp_hdr(skb);
1522
1523	th->check = 0;
1524	th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
1525
1526	return ret;
1527}
1528
1529static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb)
1530{
1531	if (skb_vlan_tag_present(skb)) {
1532		u32 opts2;
1533
1534		opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb));
1535		desc->opts2 |= cpu_to_le32(opts2);
1536	}
1537}
1538
1539static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb)
1540{
1541	u32 opts2 = le32_to_cpu(desc->opts2);
1542
1543	if (opts2 & RX_VLAN_TAG)
1544		__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1545				       swab16(opts2 & 0xffff));
1546}
1547
1548static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc,
1549			 struct sk_buff *skb, u32 len, u32 transport_offset)
1550{
1551	u32 mss = skb_shinfo(skb)->gso_size;
1552	u32 opts1, opts2 = 0;
1553	int ret = TX_CSUM_SUCCESS;
1554
1555	WARN_ON_ONCE(len > TX_LEN_MAX);
1556
1557	opts1 = len | TX_FS | TX_LS;
1558
1559	if (mss) {
1560		if (transport_offset > GTTCPHO_MAX) {
1561			netif_warn(tp, tx_err, tp->netdev,
1562				   "Invalid transport offset 0x%x for TSO\n",
1563				   transport_offset);
1564			ret = TX_CSUM_TSO;
1565			goto unavailable;
1566		}
1567
1568		switch (vlan_get_protocol(skb)) {
1569		case htons(ETH_P_IP):
1570			opts1 |= GTSENDV4;
1571			break;
1572
1573		case htons(ETH_P_IPV6):
1574			if (msdn_giant_send_check(skb)) {
1575				ret = TX_CSUM_TSO;
1576				goto unavailable;
1577			}
1578			opts1 |= GTSENDV6;
1579			break;
1580
1581		default:
1582			WARN_ON_ONCE(1);
1583			break;
1584		}
1585
1586		opts1 |= transport_offset << GTTCPHO_SHIFT;
1587		opts2 |= min(mss, MSS_MAX) << MSS_SHIFT;
1588	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1589		u8 ip_protocol;
1590
1591		if (transport_offset > TCPHO_MAX) {
1592			netif_warn(tp, tx_err, tp->netdev,
1593				   "Invalid transport offset 0x%x\n",
1594				   transport_offset);
1595			ret = TX_CSUM_NONE;
1596			goto unavailable;
1597		}
1598
1599		switch (vlan_get_protocol(skb)) {
1600		case htons(ETH_P_IP):
1601			opts2 |= IPV4_CS;
1602			ip_protocol = ip_hdr(skb)->protocol;
1603			break;
1604
1605		case htons(ETH_P_IPV6):
1606			opts2 |= IPV6_CS;
1607			ip_protocol = ipv6_hdr(skb)->nexthdr;
1608			break;
1609
1610		default:
1611			ip_protocol = IPPROTO_RAW;
1612			break;
1613		}
1614
1615		if (ip_protocol == IPPROTO_TCP)
1616			opts2 |= TCP_CS;
1617		else if (ip_protocol == IPPROTO_UDP)
1618			opts2 |= UDP_CS;
1619		else
1620			WARN_ON_ONCE(1);
1621
1622		opts2 |= transport_offset << TCPHO_SHIFT;
1623	}
1624
1625	desc->opts2 = cpu_to_le32(opts2);
1626	desc->opts1 = cpu_to_le32(opts1);
1627
1628unavailable:
1629	return ret;
1630}
1631
1632static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
1633{
1634	struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
1635	int remain, ret;
1636	u8 *tx_data;
1637
1638	__skb_queue_head_init(&skb_head);
1639	spin_lock(&tx_queue->lock);
1640	skb_queue_splice_init(tx_queue, &skb_head);
1641	spin_unlock(&tx_queue->lock);
1642
1643	tx_data = agg->head;
1644	agg->skb_num = 0;
1645	agg->skb_len = 0;
1646	remain = agg_buf_sz;
1647
1648	while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) {
1649		struct tx_desc *tx_desc;
1650		struct sk_buff *skb;
1651		unsigned int len;
1652		u32 offset;
1653
1654		skb = __skb_dequeue(&skb_head);
1655		if (!skb)
1656			break;
1657
1658		len = skb->len + sizeof(*tx_desc);
1659
1660		if (len > remain) {
1661			__skb_queue_head(&skb_head, skb);
1662			break;
1663		}
1664
1665		tx_data = tx_agg_align(tx_data);
1666		tx_desc = (struct tx_desc *)tx_data;
1667
1668		offset = (u32)skb_transport_offset(skb);
1669
1670		if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) {
1671			r8152_csum_workaround(tp, skb, &skb_head);
1672			continue;
1673		}
1674
1675		rtl_tx_vlan_tag(tx_desc, skb);
1676
1677		tx_data += sizeof(*tx_desc);
1678
1679		len = skb->len;
1680		if (skb_copy_bits(skb, 0, tx_data, len) < 0) {
1681			struct net_device_stats *stats = &tp->netdev->stats;
1682
1683			stats->tx_dropped++;
1684			dev_kfree_skb_any(skb);
1685			tx_data -= sizeof(*tx_desc);
1686			continue;
1687		}
1688
1689		tx_data += len;
1690		agg->skb_len += len;
1691		agg->skb_num++;
1692
1693		dev_kfree_skb_any(skb);
1694
1695		remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head);
1696	}
1697
1698	if (!skb_queue_empty(&skb_head)) {
1699		spin_lock(&tx_queue->lock);
1700		skb_queue_splice(&skb_head, tx_queue);
1701		spin_unlock(&tx_queue->lock);
1702	}
1703
1704	netif_tx_lock(tp->netdev);
1705
1706	if (netif_queue_stopped(tp->netdev) &&
1707	    skb_queue_len(&tp->tx_queue) < tp->tx_qlen)
1708		netif_wake_queue(tp->netdev);
1709
1710	netif_tx_unlock(tp->netdev);
1711
1712	ret = usb_autopm_get_interface_async(tp->intf);
1713	if (ret < 0)
1714		goto out_tx_fill;
1715
1716	usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
1717			  agg->head, (int)(tx_data - (u8 *)agg->head),
1718			  (usb_complete_t)write_bulk_callback, agg);
1719
1720	ret = usb_submit_urb(agg->urb, GFP_ATOMIC);
1721	if (ret < 0)
1722		usb_autopm_put_interface_async(tp->intf);
1723
1724out_tx_fill:
1725	return ret;
1726}
1727
1728static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc)
1729{
1730	u8 checksum = CHECKSUM_NONE;
1731	u32 opts2, opts3;
1732
1733	if (!(tp->netdev->features & NETIF_F_RXCSUM))
1734		goto return_result;
1735
1736	opts2 = le32_to_cpu(rx_desc->opts2);
1737	opts3 = le32_to_cpu(rx_desc->opts3);
1738
1739	if (opts2 & RD_IPV4_CS) {
1740		if (opts3 & IPF)
1741			checksum = CHECKSUM_NONE;
1742		else if ((opts2 & RD_UDP_CS) && (opts3 & UDPF))
1743			checksum = CHECKSUM_NONE;
1744		else if ((opts2 & RD_TCP_CS) && (opts3 & TCPF))
1745			checksum = CHECKSUM_NONE;
1746		else
1747			checksum = CHECKSUM_UNNECESSARY;
1748	} else if (opts2 & RD_IPV6_CS) {
1749		if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
1750			checksum = CHECKSUM_UNNECESSARY;
1751		else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
1752			checksum = CHECKSUM_UNNECESSARY;
1753	}
1754
1755return_result:
1756	return checksum;
1757}
1758
1759static int rx_bottom(struct r8152 *tp, int budget)
1760{
1761	unsigned long flags;
1762	struct list_head *cursor, *next, rx_queue;
1763	int ret = 0, work_done = 0;
1764
1765	if (!skb_queue_empty(&tp->rx_queue)) {
1766		while (work_done < budget) {
1767			struct sk_buff *skb = __skb_dequeue(&tp->rx_queue);
1768			struct net_device *netdev = tp->netdev;
1769			struct net_device_stats *stats = &netdev->stats;
1770			unsigned int pkt_len;
1771
1772			if (!skb)
1773				break;
1774
1775			pkt_len = skb->len;
1776			napi_gro_receive(&tp->napi, skb);
1777			work_done++;
1778			stats->rx_packets++;
1779			stats->rx_bytes += pkt_len;
1780		}
1781	}
1782
1783	if (list_empty(&tp->rx_done))
1784		goto out1;
1785
1786	INIT_LIST_HEAD(&rx_queue);
1787	spin_lock_irqsave(&tp->rx_lock, flags);
1788	list_splice_init(&tp->rx_done, &rx_queue);
1789	spin_unlock_irqrestore(&tp->rx_lock, flags);
1790
1791	list_for_each_safe(cursor, next, &rx_queue) {
1792		struct rx_desc *rx_desc;
1793		struct rx_agg *agg;
1794		int len_used = 0;
1795		struct urb *urb;
1796		u8 *rx_data;
1797
1798		list_del_init(cursor);
1799
1800		agg = list_entry(cursor, struct rx_agg, list);
1801		urb = agg->urb;
1802		if (urb->actual_length < ETH_ZLEN)
1803			goto submit;
1804
1805		rx_desc = agg->head;
1806		rx_data = agg->head;
1807		len_used += sizeof(struct rx_desc);
1808
1809		while (urb->actual_length > len_used) {
1810			struct net_device *netdev = tp->netdev;
1811			struct net_device_stats *stats = &netdev->stats;
1812			unsigned int pkt_len;
1813			struct sk_buff *skb;
1814
1815			pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK;
1816			if (pkt_len < ETH_ZLEN)
1817				break;
1818
1819			len_used += pkt_len;
1820			if (urb->actual_length < len_used)
1821				break;
1822
1823			pkt_len -= CRC_SIZE;
1824			rx_data += sizeof(struct rx_desc);
1825
1826			skb = napi_alloc_skb(&tp->napi, pkt_len);
1827			if (!skb) {
1828				stats->rx_dropped++;
1829				goto find_next_rx;
1830			}
1831
1832			skb->ip_summed = r8152_rx_csum(tp, rx_desc);
1833			memcpy(skb->data, rx_data, pkt_len);
1834			skb_put(skb, pkt_len);
1835			skb->protocol = eth_type_trans(skb, netdev);
1836			rtl_rx_vlan_tag(rx_desc, skb);
1837			if (work_done < budget) {
1838				napi_gro_receive(&tp->napi, skb);
1839				work_done++;
1840				stats->rx_packets++;
1841				stats->rx_bytes += pkt_len;
1842			} else {
1843				__skb_queue_tail(&tp->rx_queue, skb);
1844			}
1845
1846find_next_rx:
1847			rx_data = rx_agg_align(rx_data + pkt_len + CRC_SIZE);
1848			rx_desc = (struct rx_desc *)rx_data;
1849			len_used = (int)(rx_data - (u8 *)agg->head);
1850			len_used += sizeof(struct rx_desc);
1851		}
1852
1853submit:
1854		if (!ret) {
1855			ret = r8152_submit_rx(tp, agg, GFP_ATOMIC);
1856		} else {
1857			urb->actual_length = 0;
1858			list_add_tail(&agg->list, next);
1859		}
1860	}
1861
1862	if (!list_empty(&rx_queue)) {
1863		spin_lock_irqsave(&tp->rx_lock, flags);
1864		list_splice_tail(&rx_queue, &tp->rx_done);
1865		spin_unlock_irqrestore(&tp->rx_lock, flags);
1866	}
1867
1868out1:
1869	return work_done;
1870}
1871
1872static void tx_bottom(struct r8152 *tp)
1873{
1874	int res;
1875
1876	do {
1877		struct tx_agg *agg;
1878
1879		if (skb_queue_empty(&tp->tx_queue))
1880			break;
1881
1882		agg = r8152_get_tx_agg(tp);
1883		if (!agg)
1884			break;
1885
1886		res = r8152_tx_agg_fill(tp, agg);
1887		if (res) {
1888			struct net_device *netdev = tp->netdev;
1889
1890			if (res == -ENODEV) {
1891				set_bit(RTL8152_UNPLUG, &tp->flags);
1892				netif_device_detach(netdev);
1893			} else {
1894				struct net_device_stats *stats = &netdev->stats;
1895				unsigned long flags;
1896
1897				netif_warn(tp, tx_err, netdev,
1898					   "failed tx_urb %d\n", res);
1899				stats->tx_dropped += agg->skb_num;
1900
1901				spin_lock_irqsave(&tp->tx_lock, flags);
1902				list_add_tail(&agg->list, &tp->tx_free);
1903				spin_unlock_irqrestore(&tp->tx_lock, flags);
1904			}
1905		}
1906	} while (res == 0);
1907}
1908
1909static void bottom_half(struct r8152 *tp)
1910{
1911	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1912		return;
1913
1914	if (!test_bit(WORK_ENABLE, &tp->flags))
1915		return;
1916
1917	/* When link down, the driver would cancel all bulks. */
1918	/* This avoid the re-submitting bulk */
1919	if (!netif_carrier_ok(tp->netdev))
1920		return;
1921
1922	clear_bit(SCHEDULE_NAPI, &tp->flags);
1923
1924	tx_bottom(tp);
1925}
1926
1927static int r8152_poll(struct napi_struct *napi, int budget)
1928{
1929	struct r8152 *tp = container_of(napi, struct r8152, napi);
1930	int work_done;
1931
1932	work_done = rx_bottom(tp, budget);
1933	bottom_half(tp);
1934
1935	if (work_done < budget) {
1936		napi_complete(napi);
1937		if (!list_empty(&tp->rx_done))
1938			napi_schedule(napi);
1939		else if (!skb_queue_empty(&tp->tx_queue) &&
1940			 !list_empty(&tp->tx_free))
1941			napi_schedule(napi);
1942	}
1943
1944	return work_done;
1945}
1946
1947static
1948int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
1949{
1950	int ret;
1951
1952	/* The rx would be stopped, so skip submitting */
1953	if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
1954	    !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
1955		return 0;
1956
1957	usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
1958			  agg->head, agg_buf_sz,
1959			  (usb_complete_t)read_bulk_callback, agg);
1960
1961	ret = usb_submit_urb(agg->urb, mem_flags);
1962	if (ret == -ENODEV) {
1963		set_bit(RTL8152_UNPLUG, &tp->flags);
1964		netif_device_detach(tp->netdev);
1965	} else if (ret) {
1966		struct urb *urb = agg->urb;
1967		unsigned long flags;
1968
1969		urb->actual_length = 0;
1970		spin_lock_irqsave(&tp->rx_lock, flags);
1971		list_add_tail(&agg->list, &tp->rx_done);
1972		spin_unlock_irqrestore(&tp->rx_lock, flags);
1973
1974		netif_err(tp, rx_err, tp->netdev,
1975			  "Couldn't submit rx[%p], ret = %d\n", agg, ret);
1976
1977		napi_schedule(&tp->napi);
1978	}
1979
1980	return ret;
1981}
1982
1983static void rtl_drop_queued_tx(struct r8152 *tp)
1984{
1985	struct net_device_stats *stats = &tp->netdev->stats;
1986	struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
1987	struct sk_buff *skb;
1988
1989	if (skb_queue_empty(tx_queue))
1990		return;
1991
1992	__skb_queue_head_init(&skb_head);
1993	spin_lock_bh(&tx_queue->lock);
1994	skb_queue_splice_init(tx_queue, &skb_head);
1995	spin_unlock_bh(&tx_queue->lock);
1996
1997	while ((skb = __skb_dequeue(&skb_head))) {
1998		dev_kfree_skb(skb);
1999		stats->tx_dropped++;
2000	}
2001}
2002
2003static void rtl8152_tx_timeout(struct net_device *netdev)
2004{
2005	struct r8152 *tp = netdev_priv(netdev);
2006
2007	netif_warn(tp, tx_err, netdev, "Tx timeout\n");
2008
2009	usb_queue_reset_device(tp->intf);
2010}
2011
2012static void rtl8152_set_rx_mode(struct net_device *netdev)
2013{
2014	struct r8152 *tp = netdev_priv(netdev);
2015
2016	if (netif_carrier_ok(netdev)) {
2017		set_bit(RTL8152_SET_RX_MODE, &tp->flags);
2018		schedule_delayed_work(&tp->schedule, 0);
2019	}
2020}
2021
2022static void _rtl8152_set_rx_mode(struct net_device *netdev)
2023{
2024	struct r8152 *tp = netdev_priv(netdev);
2025	u32 mc_filter[2];	/* Multicast hash filter */
2026	__le32 tmp[2];
2027	u32 ocp_data;
2028
2029	netif_stop_queue(netdev);
2030	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2031	ocp_data &= ~RCR_ACPT_ALL;
2032	ocp_data |= RCR_AB | RCR_APM;
2033
2034	if (netdev->flags & IFF_PROMISC) {
2035		/* Unconditionally log net taps. */
2036		netif_notice(tp, link, netdev, "Promiscuous mode enabled\n");
2037		ocp_data |= RCR_AM | RCR_AAP;
2038		mc_filter[1] = 0xffffffff;
2039		mc_filter[0] = 0xffffffff;
2040	} else if ((netdev_mc_count(netdev) > multicast_filter_limit) ||
2041		   (netdev->flags & IFF_ALLMULTI)) {
2042		/* Too many to filter perfectly -- accept all multicasts. */
2043		ocp_data |= RCR_AM;
2044		mc_filter[1] = 0xffffffff;
2045		mc_filter[0] = 0xffffffff;
2046	} else {
2047		struct netdev_hw_addr *ha;
2048
2049		mc_filter[1] = 0;
2050		mc_filter[0] = 0;
2051		netdev_for_each_mc_addr(ha, netdev) {
2052			int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
2053
2054			mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2055			ocp_data |= RCR_AM;
2056		}
2057	}
2058
2059	tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
2060	tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
2061
2062	pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
2063	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2064	netif_wake_queue(netdev);
2065}
2066
2067static netdev_features_t
2068rtl8152_features_check(struct sk_buff *skb, struct net_device *dev,
2069		       netdev_features_t features)
2070{
2071	u32 mss = skb_shinfo(skb)->gso_size;
2072	int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX;
2073	int offset = skb_transport_offset(skb);
2074
2075	if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset)
2076		features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
2077	else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz)
2078		features &= ~NETIF_F_GSO_MASK;
2079
2080	return features;
2081}
2082
2083static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb,
2084				      struct net_device *netdev)
2085{
2086	struct r8152 *tp = netdev_priv(netdev);
2087
2088	skb_tx_timestamp(skb);
2089
2090	skb_queue_tail(&tp->tx_queue, skb);
2091
2092	if (!list_empty(&tp->tx_free)) {
2093		if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
2094			set_bit(SCHEDULE_NAPI, &tp->flags);
2095			schedule_delayed_work(&tp->schedule, 0);
2096		} else {
2097			usb_mark_last_busy(tp->udev);
2098			napi_schedule(&tp->napi);
2099		}
2100	} else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) {
2101		netif_stop_queue(netdev);
2102	}
2103
2104	return NETDEV_TX_OK;
2105}
2106
2107static void r8152b_reset_packet_filter(struct r8152 *tp)
2108{
2109	u32	ocp_data;
2110
2111	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC);
2112	ocp_data &= ~FMC_FCR_MCU_EN;
2113	ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2114	ocp_data |= FMC_FCR_MCU_EN;
2115	ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2116}
2117
2118static void rtl8152_nic_reset(struct r8152 *tp)
2119{
2120	int	i;
2121
2122	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST);
2123
2124	for (i = 0; i < 1000; i++) {
2125		if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST))
2126			break;
2127		usleep_range(100, 400);
2128	}
2129}
2130
2131static void set_tx_qlen(struct r8152 *tp)
2132{
2133	struct net_device *netdev = tp->netdev;
2134
2135	tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + VLAN_HLEN +
2136				    sizeof(struct tx_desc));
2137}
2138
2139static inline u8 rtl8152_get_speed(struct r8152 *tp)
2140{
2141	return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS);
2142}
2143
2144static void rtl_set_eee_plus(struct r8152 *tp)
2145{
2146	u32 ocp_data;
2147	u8 speed;
2148
2149	speed = rtl8152_get_speed(tp);
2150	if (speed & _10bps) {
2151		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
2152		ocp_data |= EEEP_CR_EEEP_TX;
2153		ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2154	} else {
2155		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
2156		ocp_data &= ~EEEP_CR_EEEP_TX;
2157		ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2158	}
2159}
2160
2161static void rxdy_gated_en(struct r8152 *tp, bool enable)
2162{
2163	u32 ocp_data;
2164
2165	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1);
2166	if (enable)
2167		ocp_data |= RXDY_GATED_EN;
2168	else
2169		ocp_data &= ~RXDY_GATED_EN;
2170	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data);
2171}
2172
2173static int rtl_start_rx(struct r8152 *tp)
2174{
2175	int i, ret = 0;
2176
2177	INIT_LIST_HEAD(&tp->rx_done);
2178	for (i = 0; i < RTL8152_MAX_RX; i++) {
2179		INIT_LIST_HEAD(&tp->rx_info[i].list);
2180		ret = r8152_submit_rx(tp, &tp->rx_info[i], GFP_KERNEL);
2181		if (ret)
2182			break;
2183	}
2184
2185	if (ret && ++i < RTL8152_MAX_RX) {
2186		struct list_head rx_queue;
2187		unsigned long flags;
2188
2189		INIT_LIST_HEAD(&rx_queue);
2190
2191		do {
2192			struct rx_agg *agg = &tp->rx_info[i++];
2193			struct urb *urb = agg->urb;
2194
2195			urb->actual_length = 0;
2196			list_add_tail(&agg->list, &rx_queue);
2197		} while (i < RTL8152_MAX_RX);
2198
2199		spin_lock_irqsave(&tp->rx_lock, flags);
2200		list_splice_tail(&rx_queue, &tp->rx_done);
2201		spin_unlock_irqrestore(&tp->rx_lock, flags);
2202	}
2203
2204	return ret;
2205}
2206
2207static int rtl_stop_rx(struct r8152 *tp)
2208{
2209	int i;
2210
2211	for (i = 0; i < RTL8152_MAX_RX; i++)
2212		usb_kill_urb(tp->rx_info[i].urb);
2213
2214	while (!skb_queue_empty(&tp->rx_queue))
2215		dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2216
2217	return 0;
2218}
2219
2220static int rtl_enable(struct r8152 *tp)
2221{
2222	u32 ocp_data;
2223
2224	r8152b_reset_packet_filter(tp);
2225
2226	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2227	ocp_data |= CR_RE | CR_TE;
2228	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2229
2230	rxdy_gated_en(tp, false);
2231
2232	return 0;
2233}
2234
2235static int rtl8152_enable(struct r8152 *tp)
2236{
2237	if (test_bit(RTL8152_UNPLUG, &tp->flags))
2238		return -ENODEV;
2239
2240	set_tx_qlen(tp);
2241	rtl_set_eee_plus(tp);
2242
2243	return rtl_enable(tp);
2244}
2245
2246static void r8153_set_rx_early_timeout(struct r8152 *tp)
2247{
2248	u32 ocp_data = tp->coalesce / 8;
2249
2250	ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, ocp_data);
2251}
2252
2253static void r8153_set_rx_early_size(struct r8152 *tp)
2254{
2255	u32 mtu = tp->netdev->mtu;
2256	u32 ocp_data = (agg_buf_sz - mtu - VLAN_ETH_HLEN - VLAN_HLEN) / 8;
2257
2258	ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data);
2259}
2260
2261static int rtl8153_enable(struct r8152 *tp)
2262{
2263	if (test_bit(RTL8152_UNPLUG, &tp->flags))
2264		return -ENODEV;
2265
2266	usb_disable_lpm(tp->udev);
2267	set_tx_qlen(tp);
2268	rtl_set_eee_plus(tp);
2269	r8153_set_rx_early_timeout(tp);
2270	r8153_set_rx_early_size(tp);
2271
2272	return rtl_enable(tp);
2273}
2274
2275static void rtl_disable(struct r8152 *tp)
2276{
2277	u32 ocp_data;
2278	int i;
2279
2280	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2281		rtl_drop_queued_tx(tp);
2282		return;
2283	}
2284
2285	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2286	ocp_data &= ~RCR_ACPT_ALL;
2287	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2288
2289	rtl_drop_queued_tx(tp);
2290
2291	for (i = 0; i < RTL8152_MAX_TX; i++)
2292		usb_kill_urb(tp->tx_info[i].urb);
2293
2294	rxdy_gated_en(tp, true);
2295
2296	for (i = 0; i < 1000; i++) {
2297		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2298		if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2299			break;
2300		usleep_range(1000, 2000);
2301	}
2302
2303	for (i = 0; i < 1000; i++) {
2304		if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2305			break;
2306		usleep_range(1000, 2000);
2307	}
2308
2309	rtl_stop_rx(tp);
2310
2311	rtl8152_nic_reset(tp);
2312}
2313
2314static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2315{
2316	u32 ocp_data;
2317
2318	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2319	if (enable)
2320		ocp_data |= POWER_CUT;
2321	else
2322		ocp_data &= ~POWER_CUT;
2323	ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2324
2325	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2326	ocp_data &= ~RESUME_INDICATE;
2327	ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
2328}
2329
2330static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2331{
2332	u32 ocp_data;
2333
2334	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2335	if (enable)
2336		ocp_data |= CPCR_RX_VLAN;
2337	else
2338		ocp_data &= ~CPCR_RX_VLAN;
2339	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2340}
2341
2342static int rtl8152_set_features(struct net_device *dev,
2343				netdev_features_t features)
2344{
2345	netdev_features_t changed = features ^ dev->features;
2346	struct r8152 *tp = netdev_priv(dev);
2347	int ret;
2348
2349	ret = usb_autopm_get_interface(tp->intf);
2350	if (ret < 0)
2351		goto out;
2352
2353	mutex_lock(&tp->control);
2354
2355	if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2356		if (features & NETIF_F_HW_VLAN_CTAG_RX)
2357			rtl_rx_vlan_en(tp, true);
2358		else
2359			rtl_rx_vlan_en(tp, false);
2360	}
2361
2362	mutex_unlock(&tp->control);
2363
2364	usb_autopm_put_interface(tp->intf);
2365
2366out:
2367	return ret;
2368}
2369
2370#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2371
2372static u32 __rtl_get_wol(struct r8152 *tp)
2373{
2374	u32 ocp_data;
2375	u32 wolopts = 0;
2376
2377	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2378	if (ocp_data & LINK_ON_WAKE_EN)
2379		wolopts |= WAKE_PHY;
2380
2381	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2382	if (ocp_data & UWF_EN)
2383		wolopts |= WAKE_UCAST;
2384	if (ocp_data & BWF_EN)
2385		wolopts |= WAKE_BCAST;
2386	if (ocp_data & MWF_EN)
2387		wolopts |= WAKE_MCAST;
2388
2389	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2390	if (ocp_data & MAGIC_EN)
2391		wolopts |= WAKE_MAGIC;
2392
2393	return wolopts;
2394}
2395
2396static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
2397{
2398	u32 ocp_data;
2399
2400	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2401
2402	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2403	ocp_data &= ~LINK_ON_WAKE_EN;
2404	if (wolopts & WAKE_PHY)
2405		ocp_data |= LINK_ON_WAKE_EN;
2406	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2407
2408	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2409	ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN);
2410	if (wolopts & WAKE_UCAST)
2411		ocp_data |= UWF_EN;
2412	if (wolopts & WAKE_BCAST)
2413		ocp_data |= BWF_EN;
2414	if (wolopts & WAKE_MCAST)
2415		ocp_data |= MWF_EN;
2416	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
2417
2418	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2419
2420	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2421	ocp_data &= ~MAGIC_EN;
2422	if (wolopts & WAKE_MAGIC)
2423		ocp_data |= MAGIC_EN;
2424	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
2425
2426	if (wolopts & WAKE_ANY)
2427		device_set_wakeup_enable(&tp->udev->dev, true);
2428	else
2429		device_set_wakeup_enable(&tp->udev->dev, false);
2430}
2431
2432static void r8153_u1u2en(struct r8152 *tp, bool enable)
2433{
2434	u8 u1u2[8];
2435
2436	if (enable)
2437		memset(u1u2, 0xff, sizeof(u1u2));
2438	else
2439		memset(u1u2, 0x00, sizeof(u1u2));
2440
2441	usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
2442}
2443
2444static void r8153_u2p3en(struct r8152 *tp, bool enable)
2445{
2446	u32 ocp_data;
2447
2448	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
2449	if (enable && tp->version != RTL_VER_03 && tp->version != RTL_VER_04)
2450		ocp_data |= U2P3_ENABLE;
2451	else
2452		ocp_data &= ~U2P3_ENABLE;
2453	ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
2454}
2455
2456static void r8153_power_cut_en(struct r8152 *tp, bool enable)
2457{
2458	u32 ocp_data;
2459
2460	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
2461	if (enable)
2462		ocp_data |= PWR_EN | PHASE2_EN;
2463	else
2464		ocp_data &= ~(PWR_EN | PHASE2_EN);
2465	ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
2466
2467	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
2468	ocp_data &= ~PCUT_STATUS;
2469	ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
2470}
2471
2472static bool rtl_can_wakeup(struct r8152 *tp)
2473{
2474	struct usb_device *udev = tp->udev;
2475
2476	return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP);
2477}
2478
2479static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
2480{
2481	if (enable) {
2482		u32 ocp_data;
2483
2484		__rtl_set_wol(tp, WAKE_ANY);
2485
2486		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2487
2488		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2489		ocp_data |= LINK_OFF_WAKE_EN;
2490		ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2491
2492		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2493	} else {
2494		u32 ocp_data;
2495
2496		__rtl_set_wol(tp, tp->saved_wolopts);
2497
2498		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2499
2500		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2501		ocp_data &= ~LINK_OFF_WAKE_EN;
2502		ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2503
2504		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2505	}
2506}
2507
2508static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
2509{
2510	rtl_runtime_suspend_enable(tp, enable);
2511
2512	if (enable) {
2513		r8153_u1u2en(tp, false);
2514		r8153_u2p3en(tp, false);
2515	} else {
2516		r8153_u2p3en(tp, true);
2517		r8153_u1u2en(tp, true);
2518	}
2519}
2520
2521static void r8153_teredo_off(struct r8152 *tp)
2522{
2523	u32 ocp_data;
2524
2525	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2526	ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK | OOB_TEREDO_EN);
2527	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2528
2529	ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
2530	ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
2531	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
2532}
2533
2534static void rtl_reset_bmu(struct r8152 *tp)
2535{
2536	u32 ocp_data;
2537
2538	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_BMU_RESET);
2539	ocp_data &= ~(BMU_RESET_EP_IN | BMU_RESET_EP_OUT);
2540	ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
2541	ocp_data |= BMU_RESET_EP_IN | BMU_RESET_EP_OUT;
2542	ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
2543}
2544
2545static void r8152_aldps_en(struct r8152 *tp, bool enable)
2546{
2547	if (enable) {
2548		ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
2549						    LINKENA | DIS_SDSAVE);
2550	} else {
2551		ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA |
2552						    DIS_SDSAVE);
2553		msleep(20);
2554	}
2555}
2556
2557static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
2558{
2559	ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
2560	ocp_reg_write(tp, OCP_EEE_DATA, reg);
2561	ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
2562}
2563
2564static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
2565{
2566	u16 data;
2567
2568	r8152_mmd_indirect(tp, dev, reg);
2569	data = ocp_reg_read(tp, OCP_EEE_DATA);
2570	ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
2571
2572	return data;
2573}
2574
2575static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
2576{
2577	r8152_mmd_indirect(tp, dev, reg);
2578	ocp_reg_write(tp, OCP_EEE_DATA, data);
2579	ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
2580}
2581
2582static void r8152_eee_en(struct r8152 *tp, bool enable)
2583{
2584	u16 config1, config2, config3;
2585	u32 ocp_data;
2586
2587	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
2588	config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
2589	config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
2590	config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
2591
2592	if (enable) {
2593		ocp_data |= EEE_RX_EN | EEE_TX_EN;
2594		config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
2595		config1 |= sd_rise_time(1);
2596		config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
2597		config3 |= fast_snr(42);
2598	} else {
2599		ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
2600		config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
2601			     RX_QUIET_EN);
2602		config1 |= sd_rise_time(7);
2603		config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
2604		config3 |= fast_snr(511);
2605	}
2606
2607	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
2608	ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
2609	ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
2610	ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
2611}
2612
2613static void r8152b_enable_eee(struct r8152 *tp)
2614{
2615	r8152_eee_en(tp, true);
2616	r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, MDIO_EEE_100TX);
2617}
2618
2619static void r8152b_enable_fc(struct r8152 *tp)
2620{
2621	u16 anar;
2622
2623	anar = r8152_mdio_read(tp, MII_ADVERTISE);
2624	anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
2625	r8152_mdio_write(tp, MII_ADVERTISE, anar);
2626}
2627
2628static void rtl8152_disable(struct r8152 *tp)
2629{
2630	r8152_aldps_en(tp, false);
2631	rtl_disable(tp);
2632	r8152_aldps_en(tp, true);
2633}
2634
2635static void r8152b_hw_phy_cfg(struct r8152 *tp)
2636{
2637	r8152b_enable_eee(tp);
2638	r8152_aldps_en(tp, true);
2639	r8152b_enable_fc(tp);
2640
2641	set_bit(PHY_RESET, &tp->flags);
2642}
2643
2644static void r8152b_exit_oob(struct r8152 *tp)
2645{
2646	u32 ocp_data;
2647	int i;
2648
2649	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2650	ocp_data &= ~RCR_ACPT_ALL;
2651	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2652
2653	rxdy_gated_en(tp, true);
2654	r8153_teredo_off(tp);
2655	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2656	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
2657
2658	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2659	ocp_data &= ~NOW_IS_OOB;
2660	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2661
2662	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2663	ocp_data &= ~MCU_BORW_EN;
2664	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2665
2666	for (i = 0; i < 1000; i++) {
2667		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2668		if (ocp_data & LINK_LIST_READY)
2669			break;
2670		usleep_range(1000, 2000);
2671	}
2672
2673	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2674	ocp_data |= RE_INIT_LL;
2675	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2676
2677	for (i = 0; i < 1000; i++) {
2678		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2679		if (ocp_data & LINK_LIST_READY)
2680			break;
2681		usleep_range(1000, 2000);
2682	}
2683
2684	rtl8152_nic_reset(tp);
2685
2686	/* rx share fifo credit full threshold */
2687	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2688
2689	if (tp->udev->speed == USB_SPEED_FULL ||
2690	    tp->udev->speed == USB_SPEED_LOW) {
2691		/* rx share fifo credit near full threshold */
2692		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2693				RXFIFO_THR2_FULL);
2694		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2695				RXFIFO_THR3_FULL);
2696	} else {
2697		/* rx share fifo credit near full threshold */
2698		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2699				RXFIFO_THR2_HIGH);
2700		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2701				RXFIFO_THR3_HIGH);
2702	}
2703
2704	/* TX share fifo free credit full threshold */
2705	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
2706
2707	ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
2708	ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
2709	ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
2710			TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
2711
2712	rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
2713
2714	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2715
2716	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2717	ocp_data |= TCR0_AUTO_FIFO;
2718	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2719}
2720
2721static void r8152b_enter_oob(struct r8152 *tp)
2722{
2723	u32 ocp_data;
2724	int i;
2725
2726	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2727	ocp_data &= ~NOW_IS_OOB;
2728	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2729
2730	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
2731	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
2732	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
2733
2734	rtl_disable(tp);
2735
2736	for (i = 0; i < 1000; i++) {
2737		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2738		if (ocp_data & LINK_LIST_READY)
2739			break;
2740		usleep_range(1000, 2000);
2741	}
2742
2743	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2744	ocp_data |= RE_INIT_LL;
2745	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2746
2747	for (i = 0; i < 1000; i++) {
2748		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2749		if (ocp_data & LINK_LIST_READY)
2750			break;
2751		usleep_range(1000, 2000);
2752	}
2753
2754	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2755
2756	rtl_rx_vlan_en(tp, true);
2757
2758	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2759	ocp_data |= ALDPS_PROXY_MODE;
2760	ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2761
2762	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2763	ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2764	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2765
2766	rxdy_gated_en(tp, false);
2767
2768	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2769	ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2770	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2771}
2772
2773static void r8153_aldps_en(struct r8152 *tp, bool enable)
2774{
2775	u16 data;
2776
2777	data = ocp_reg_read(tp, OCP_POWER_CFG);
2778	if (enable) {
2779		data |= EN_ALDPS;
2780		ocp_reg_write(tp, OCP_POWER_CFG, data);
2781	} else {
2782		data &= ~EN_ALDPS;
2783		ocp_reg_write(tp, OCP_POWER_CFG, data);
2784		msleep(20);
2785	}
2786}
2787
2788static void r8153_eee_en(struct r8152 *tp, bool enable)
2789{
2790	u32 ocp_data;
2791	u16 config;
2792
2793	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
2794	config = ocp_reg_read(tp, OCP_EEE_CFG);
2795
2796	if (enable) {
2797		ocp_data |= EEE_RX_EN | EEE_TX_EN;
2798		config |= EEE10_EN;
2799	} else {
2800		ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
2801		config &= ~EEE10_EN;
2802	}
2803
2804	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
2805	ocp_reg_write(tp, OCP_EEE_CFG, config);
2806}
2807
2808static void r8153_hw_phy_cfg(struct r8152 *tp)
2809{
2810	u32 ocp_data;
2811	u16 data;
2812
2813	/* disable ALDPS before updating the PHY parameters */
2814	r8153_aldps_en(tp, false);
2815
2816	/* disable EEE before updating the PHY parameters */
2817	r8153_eee_en(tp, false);
2818	ocp_reg_write(tp, OCP_EEE_ADV, 0);
2819
2820	if (tp->version == RTL_VER_03) {
2821		data = ocp_reg_read(tp, OCP_EEE_CFG);
2822		data &= ~CTAP_SHORT_EN;
2823		ocp_reg_write(tp, OCP_EEE_CFG, data);
2824	}
2825
2826	data = ocp_reg_read(tp, OCP_POWER_CFG);
2827	data |= EEE_CLKDIV_EN;
2828	ocp_reg_write(tp, OCP_POWER_CFG, data);
2829
2830	data = ocp_reg_read(tp, OCP_DOWN_SPEED);
2831	data |= EN_10M_BGOFF;
2832	ocp_reg_write(tp, OCP_DOWN_SPEED, data);
2833	data = ocp_reg_read(tp, OCP_POWER_CFG);
2834	data |= EN_10M_PLLOFF;
2835	ocp_reg_write(tp, OCP_POWER_CFG, data);
2836	sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
2837
2838	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
2839	ocp_data |= PFM_PWM_SWITCH;
2840	ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
2841
2842	/* Enable LPF corner auto tune */
2843	sram_write(tp, SRAM_LPF_CFG, 0xf70f);
2844
2845	/* Adjust 10M Amplitude */
2846	sram_write(tp, SRAM_10M_AMP1, 0x00af);
2847	sram_write(tp, SRAM_10M_AMP2, 0x0208);
2848
2849	r8153_eee_en(tp, true);
2850	ocp_reg_write(tp, OCP_EEE_ADV, MDIO_EEE_1000T | MDIO_EEE_100TX);
2851
2852	r8153_aldps_en(tp, true);
2853	r8152b_enable_fc(tp);
2854
2855	set_bit(PHY_RESET, &tp->flags);
2856}
2857
2858static void r8153_first_init(struct r8152 *tp)
2859{
2860	u32 ocp_data;
2861	int i;
2862
2863	rxdy_gated_en(tp, true);
2864	r8153_teredo_off(tp);
2865
2866	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2867	ocp_data &= ~RCR_ACPT_ALL;
2868	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2869
2870	rtl8152_nic_reset(tp);
2871	rtl_reset_bmu(tp);
2872
2873	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2874	ocp_data &= ~NOW_IS_OOB;
2875	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2876
2877	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2878	ocp_data &= ~MCU_BORW_EN;
2879	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2880
2881	for (i = 0; i < 1000; i++) {
2882		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2883		if (ocp_data & LINK_LIST_READY)
2884			break;
2885		usleep_range(1000, 2000);
2886	}
2887
2888	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2889	ocp_data |= RE_INIT_LL;
2890	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2891
2892	for (i = 0; i < 1000; i++) {
2893		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2894		if (ocp_data & LINK_LIST_READY)
2895			break;
2896		usleep_range(1000, 2000);
2897	}
2898
2899	rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
2900
2901	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
2902	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
2903
2904	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2905	ocp_data |= TCR0_AUTO_FIFO;
2906	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2907
2908	rtl8152_nic_reset(tp);
2909
2910	/* rx share fifo credit full threshold */
2911	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2912	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
2913	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
2914	/* TX share fifo free credit full threshold */
2915	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
2916
2917	/* rx aggregation */
2918	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
2919	ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
2920	ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
2921}
2922
2923static void r8153_enter_oob(struct r8152 *tp)
2924{
2925	u32 ocp_data;
2926	int i;
2927
2928	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2929	ocp_data &= ~NOW_IS_OOB;
2930	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2931
2932	rtl_disable(tp);
2933	rtl_reset_bmu(tp);
2934
2935	for (i = 0; i < 1000; i++) {
2936		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2937		if (ocp_data & LINK_LIST_READY)
2938			break;
2939		usleep_range(1000, 2000);
2940	}
2941
2942	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2943	ocp_data |= RE_INIT_LL;
2944	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2945
2946	for (i = 0; i < 1000; i++) {
2947		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2948		if (ocp_data & LINK_LIST_READY)
2949			break;
2950		usleep_range(1000, 2000);
2951	}
2952
2953	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
2954
2955	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2956	ocp_data &= ~TEREDO_WAKE_MASK;
2957	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2958
2959	rtl_rx_vlan_en(tp, true);
2960
2961	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2962	ocp_data |= ALDPS_PROXY_MODE;
2963	ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2964
2965	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2966	ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2967	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2968
2969	rxdy_gated_en(tp, false);
2970
2971	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2972	ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2973	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2974}
2975
2976static void rtl8153_disable(struct r8152 *tp)
2977{
2978	r8153_aldps_en(tp, false);
2979	rtl_disable(tp);
2980	rtl_reset_bmu(tp);
2981	r8153_aldps_en(tp, true);
2982	usb_enable_lpm(tp->udev);
2983}
2984
2985static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
2986{
2987	u16 bmcr, anar, gbcr;
2988	int ret = 0;
2989
2990	anar = r8152_mdio_read(tp, MII_ADVERTISE);
2991	anar &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
2992		  ADVERTISE_100HALF | ADVERTISE_100FULL);
2993	if (tp->mii.supports_gmii) {
2994		gbcr = r8152_mdio_read(tp, MII_CTRL1000);
2995		gbcr &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
2996	} else {
2997		gbcr = 0;
2998	}
2999
3000	if (autoneg == AUTONEG_DISABLE) {
3001		if (speed == SPEED_10) {
3002			bmcr = 0;
3003			anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3004		} else if (speed == SPEED_100) {
3005			bmcr = BMCR_SPEED100;
3006			anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
3007		} else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
3008			bmcr = BMCR_SPEED1000;
3009			gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
3010		} else {
3011			ret = -EINVAL;
3012			goto out;
3013		}
3014
3015		if (duplex == DUPLEX_FULL)
3016			bmcr |= BMCR_FULLDPLX;
3017	} else {
3018		if (speed == SPEED_10) {
3019			if (duplex == DUPLEX_FULL)
3020				anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3021			else
3022				anar |= ADVERTISE_10HALF;
3023		} else if (speed == SPEED_100) {
3024			if (duplex == DUPLEX_FULL) {
3025				anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3026				anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
3027			} else {
3028				anar |= ADVERTISE_10HALF;
3029				anar |= ADVERTISE_100HALF;
3030			}
3031		} else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
3032			if (duplex == DUPLEX_FULL) {
3033				anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3034				anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
3035				gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
3036			} else {
3037				anar |= ADVERTISE_10HALF;
3038				anar |= ADVERTISE_100HALF;
3039				gbcr |= ADVERTISE_1000HALF;
3040			}
3041		} else {
3042			ret = -EINVAL;
3043			goto out;
3044		}
3045
3046		bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
3047	}
3048
3049	if (test_and_clear_bit(PHY_RESET, &tp->flags))
3050		bmcr |= BMCR_RESET;
3051
3052	if (tp->mii.supports_gmii)
3053		r8152_mdio_write(tp, MII_CTRL1000, gbcr);
3054
3055	r8152_mdio_write(tp, MII_ADVERTISE, anar);
3056	r8152_mdio_write(tp, MII_BMCR, bmcr);
3057
3058	if (bmcr & BMCR_RESET) {
3059		int i;
3060
3061		for (i = 0; i < 50; i++) {
3062			msleep(20);
3063			if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
3064				break;
3065		}
3066	}
3067
3068out:
3069	return ret;
3070}
3071
3072static void rtl8152_up(struct r8152 *tp)
3073{
3074	if (test_bit(RTL8152_UNPLUG, &tp->flags))
3075		return;
3076
3077	r8152_aldps_en(tp, false);
3078	r8152b_exit_oob(tp);
3079	r8152_aldps_en(tp, true);
3080}
3081
3082static void rtl8152_down(struct r8152 *tp)
3083{
3084	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
3085		rtl_drop_queued_tx(tp);
3086		return;
3087	}
3088
3089	r8152_power_cut_en(tp, false);
3090	r8152_aldps_en(tp, false);
3091	r8152b_enter_oob(tp);
3092	r8152_aldps_en(tp, true);
3093}
3094
3095static void rtl8153_up(struct r8152 *tp)
3096{
3097	if (test_bit(RTL8152_UNPLUG, &tp->flags))
3098		return;
3099
3100	r8153_u1u2en(tp, false);
3101	r8153_aldps_en(tp, false);
3102	r8153_first_init(tp);
3103	r8153_aldps_en(tp, true);
3104	r8153_u2p3en(tp, true);
3105	r8153_u1u2en(tp, true);
3106	usb_enable_lpm(tp->udev);
3107}
3108
3109static void rtl8153_down(struct r8152 *tp)
3110{
3111	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
3112		rtl_drop_queued_tx(tp);
3113		return;
3114	}
3115
3116	r8153_u1u2en(tp, false);
3117	r8153_u2p3en(tp, false);
3118	r8153_power_cut_en(tp, false);
3119	r8153_aldps_en(tp, false);
3120	r8153_enter_oob(tp);
3121	r8153_aldps_en(tp, true);
3122}
3123
3124static bool rtl8152_in_nway(struct r8152 *tp)
3125{
3126	u16 nway_state;
3127
3128	ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, 0x2000);
3129	tp->ocp_base = 0x2000;
3130	ocp_write_byte(tp, MCU_TYPE_PLA, 0xb014, 0x4c);		/* phy state */
3131	nway_state = ocp_read_word(tp, MCU_TYPE_PLA, 0xb01a);
3132
3133	/* bit 15: TXDIS_STATE, bit 14: ABD_STATE */
3134	if (nway_state & 0xc000)
3135		return false;
3136	else
3137		return true;
3138}
3139
3140static bool rtl8153_in_nway(struct r8152 *tp)
3141{
3142	u16 phy_state = ocp_reg_read(tp, OCP_PHY_STATE) & 0xff;
3143
3144	if (phy_state == TXDIS_STATE || phy_state == ABD_STATE)
3145		return false;
3146	else
3147		return true;
3148}
3149
3150static void set_carrier(struct r8152 *tp)
3151{
3152	struct net_device *netdev = tp->netdev;
3153	u8 speed;
3154
3155	speed = rtl8152_get_speed(tp);
3156
3157	if (speed & LINK_STATUS) {
3158		if (!netif_carrier_ok(netdev)) {
3159			tp->rtl_ops.enable(tp);
3160			set_bit(RTL8152_SET_RX_MODE, &tp->flags);
3161			netif_stop_queue(netdev);
3162			napi_disable(&tp->napi);
3163			netif_carrier_on(netdev);
3164			rtl_start_rx(tp);
3165			napi_enable(&tp->napi);
3166			netif_wake_queue(netdev);
3167			netif_info(tp, link, netdev, "carrier on\n");
3168		}
3169	} else {
3170		if (netif_carrier_ok(netdev)) {
3171			netif_carrier_off(netdev);
3172			napi_disable(&tp->napi);
3173			tp->rtl_ops.disable(tp);
3174			napi_enable(&tp->napi);
3175			netif_info(tp, link, netdev, "carrier off\n");
3176		}
3177	}
3178}
3179
3180static void rtl_work_func_t(struct work_struct *work)
3181{
3182	struct r8152 *tp = container_of(work, struct r8152, schedule.work);
3183
3184	/* If the device is unplugged or !netif_running(), the workqueue
3185	 * doesn't need to wake the device, and could return directly.
3186	 */
3187	if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
3188		return;
3189
3190	if (usb_autopm_get_interface(tp->intf) < 0)
3191		return;
3192
3193	if (!test_bit(WORK_ENABLE, &tp->flags))
3194		goto out1;
3195
3196	if (!mutex_trylock(&tp->control)) {
3197		schedule_delayed_work(&tp->schedule, 0);
3198		goto out1;
3199	}
3200
3201	if (test_and_clear_bit(RTL8152_LINK_CHG, &tp->flags))
3202		set_carrier(tp);
3203
3204	if (test_and_clear_bit(RTL8152_SET_RX_MODE, &tp->flags))
3205		_rtl8152_set_rx_mode(tp->netdev);
3206
3207	/* don't schedule napi before linking */
3208	if (test_and_clear_bit(SCHEDULE_NAPI, &tp->flags) &&
3209	    netif_carrier_ok(tp->netdev))
3210		napi_schedule(&tp->napi);
3211
3212	mutex_unlock(&tp->control);
3213
3214out1:
3215	usb_autopm_put_interface(tp->intf);
3216}
3217
3218static void rtl_hw_phy_work_func_t(struct work_struct *work)
3219{
3220	struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work);
3221
3222	if (test_bit(RTL8152_UNPLUG, &tp->flags))
3223		return;
3224
3225	if (usb_autopm_get_interface(tp->intf) < 0)
3226		return;
3227
3228	mutex_lock(&tp->control);
3229
3230	tp->rtl_ops.hw_phy_cfg(tp);
3231
3232	rtl8152_set_speed(tp, tp->autoneg, tp->speed, tp->duplex);
3233
3234	mutex_unlock(&tp->control);
3235
3236	usb_autopm_put_interface(tp->intf);
3237}
3238
3239#ifdef CONFIG_PM_SLEEP
3240static int rtl_notifier(struct notifier_block *nb, unsigned long action,
3241			void *data)
3242{
3243	struct r8152 *tp = container_of(nb, struct r8152, pm_notifier);
3244
3245	switch (action) {
3246	case PM_HIBERNATION_PREPARE:
3247	case PM_SUSPEND_PREPARE:
3248		usb_autopm_get_interface(tp->intf);
3249		break;
3250
3251	case PM_POST_HIBERNATION:
3252	case PM_POST_SUSPEND:
3253		usb_autopm_put_interface(tp->intf);
3254		break;
3255
3256	case PM_POST_RESTORE:
3257	case PM_RESTORE_PREPARE:
3258	default:
3259		break;
3260	}
3261
3262	return NOTIFY_DONE;
3263}
3264#endif
3265
3266static int rtl8152_open(struct net_device *netdev)
3267{
3268	struct r8152 *tp = netdev_priv(netdev);
3269	int res = 0;
3270
3271	res = alloc_all_mem(tp);
3272	if (res)
3273		goto out;
3274
3275	res = usb_autopm_get_interface(tp->intf);
3276	if (res < 0)
3277		goto out_free;
3278
3279	mutex_lock(&tp->control);
3280
3281	tp->rtl_ops.up(tp);
3282
3283	netif_carrier_off(netdev);
3284	netif_start_queue(netdev);
3285	set_bit(WORK_ENABLE, &tp->flags);
3286
3287	res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3288	if (res) {
3289		if (res == -ENODEV)
3290			netif_device_detach(tp->netdev);
3291		netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
3292			   res);
3293		goto out_unlock;
3294	}
3295	napi_enable(&tp->napi);
3296
3297	mutex_unlock(&tp->control);
3298
3299	usb_autopm_put_interface(tp->intf);
3300#ifdef CONFIG_PM_SLEEP
3301	tp->pm_notifier.notifier_call = rtl_notifier;
3302	register_pm_notifier(&tp->pm_notifier);
3303#endif
3304	return 0;
3305
3306out_unlock:
3307	mutex_unlock(&tp->control);
3308	usb_autopm_put_interface(tp->intf);
3309out_free:
3310	free_all_mem(tp);
3311out:
3312	return res;
3313}
3314
3315static int rtl8152_close(struct net_device *netdev)
3316{
3317	struct r8152 *tp = netdev_priv(netdev);
3318	int res = 0;
3319
3320#ifdef CONFIG_PM_SLEEP
3321	unregister_pm_notifier(&tp->pm_notifier);
3322#endif
3323	napi_disable(&tp->napi);
3324	clear_bit(WORK_ENABLE, &tp->flags);
3325	usb_kill_urb(tp->intr_urb);
3326	cancel_delayed_work_sync(&tp->schedule);
3327	netif_stop_queue(netdev);
3328
3329	res = usb_autopm_get_interface(tp->intf);
3330	if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
3331		rtl_drop_queued_tx(tp);
3332		rtl_stop_rx(tp);
3333	} else {
3334		mutex_lock(&tp->control);
3335
3336		tp->rtl_ops.down(tp);
3337
3338		mutex_unlock(&tp->control);
3339
3340		usb_autopm_put_interface(tp->intf);
3341	}
3342
3343	free_all_mem(tp);
3344
3345	return res;
3346}
3347
3348static void rtl_tally_reset(struct r8152 *tp)
3349{
3350	u32 ocp_data;
3351
3352	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
3353	ocp_data |= TALLY_RESET;
3354	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
3355}
3356
3357static void r8152b_init(struct r8152 *tp)
3358{
3359	u32 ocp_data;
3360	u16 data;
3361
3362	if (test_bit(RTL8152_UNPLUG, &tp->flags))
3363		return;
3364
3365	data = r8152_mdio_read(tp, MII_BMCR);
3366	if (data & BMCR_PDOWN) {
3367		data &= ~BMCR_PDOWN;
3368		r8152_mdio_write(tp, MII_BMCR, data);
3369	}
3370
3371	r8152_aldps_en(tp, false);
3372
3373	if (tp->version == RTL_VER_01) {
3374		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3375		ocp_data &= ~LED_MODE_MASK;
3376		ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3377	}
3378
3379	r8152_power_cut_en(tp, false);
3380
3381	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
3382	ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
3383	ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
3384	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
3385	ocp_data &= ~MCU_CLK_RATIO_MASK;
3386	ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
3387	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
3388	ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
3389		   SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
3390	ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
3391
3392	rtl_tally_reset(tp);
3393
3394	/* enable rx aggregation */
3395	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
3396	ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
3397	ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
3398}
3399
3400static void r8153_init(struct r8152 *tp)
3401{
3402	u32 ocp_data;
3403	u16 data;
3404	int i;
3405
3406	if (test_bit(RTL8152_UNPLUG, &tp->flags))
3407		return;
3408
3409	r8153_u1u2en(tp, false);
3410
3411	for (i = 0; i < 500; i++) {
3412		if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
3413		    AUTOLOAD_DONE)
3414			break;
3415		msleep(20);
3416	}
3417
3418	for (i = 0; i < 500; i++) {
3419		ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3420		if (ocp_data == PHY_STAT_LAN_ON || ocp_data == PHY_STAT_PWRDN)
3421			break;
3422		msleep(20);
3423	}
3424
3425	if (tp->version == RTL_VER_03 || tp->version == RTL_VER_04 ||
3426	    tp->version == RTL_VER_05)
3427		ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
3428
3429	data = r8152_mdio_read(tp, MII_BMCR);
3430	if (data & BMCR_PDOWN) {
3431		data &= ~BMCR_PDOWN;
3432		r8152_mdio_write(tp, MII_BMCR, data);
3433	}
3434
3435	for (i = 0; i < 500; i++) {
3436		ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3437		if (ocp_data == PHY_STAT_LAN_ON)
3438			break;
3439		msleep(20);
3440	}
3441
3442	usb_disable_lpm(tp->udev);
3443	r8153_u2p3en(tp, false);
3444
3445	if (tp->version == RTL_VER_04) {
3446		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
3447		ocp_data &= ~pwd_dn_scale_mask;
3448		ocp_data |= pwd_dn_scale(96);
3449		ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
3450
3451		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
3452		ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
3453		ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
3454	} else if (tp->version == RTL_VER_05) {
3455		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
3456		ocp_data &= ~ECM_ALDPS;
3457		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
3458
3459		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3460		if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3461			ocp_data &= ~DYNAMIC_BURST;
3462		else
3463			ocp_data |= DYNAMIC_BURST;
3464		ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
3465	} else if (tp->version == RTL_VER_06) {
3466		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3467		if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3468			ocp_data &= ~DYNAMIC_BURST;
3469		else
3470			ocp_data |= DYNAMIC_BURST;
3471		ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
3472	}
3473
3474	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
3475	ocp_data |= EP4_FULL_FC;
3476	ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
3477
3478	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
3479	ocp_data &= ~TIMER11_EN;
3480	ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
3481
3482	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3483	ocp_data &= ~LED_MODE_MASK;
3484	ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3485
3486	ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
3487	if (tp->version == RTL_VER_04 && tp->udev->speed < USB_SPEED_SUPER)
3488		ocp_data |= LPM_TIMER_500MS;
3489	else
3490		ocp_data |= LPM_TIMER_500US;
3491	ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
3492
3493	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
3494	ocp_data &= ~SEN_VAL_MASK;
3495	ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
3496	ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
3497
3498	ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
3499
3500	r8153_power_cut_en(tp, false);
3501	r8153_u1u2en(tp, true);
3502
3503	/* MAC clock speed down */
3504	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, 0);
3505	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, 0);
3506	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, 0);
3507	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4, 0);
3508
3509	rtl_tally_reset(tp);
3510	r8153_u2p3en(tp, true);
3511}
3512
3513static int rtl8152_pre_reset(struct usb_interface *intf)
3514{
3515	struct r8152 *tp = usb_get_intfdata(intf);
3516	struct net_device *netdev;
3517
3518	if (!tp)
3519		return 0;
3520
3521	netdev = tp->netdev;
3522	if (!netif_running(netdev))
3523		return 0;
3524
3525	netif_stop_queue(netdev);
3526	napi_disable(&tp->napi);
3527	clear_bit(WORK_ENABLE, &tp->flags);
3528	usb_kill_urb(tp->intr_urb);
3529	cancel_delayed_work_sync(&tp->schedule);
3530	if (netif_carrier_ok(netdev)) {
3531		mutex_lock(&tp->control);
3532		tp->rtl_ops.disable(tp);
3533		mutex_unlock(&tp->control);
3534	}
3535
3536	return 0;
3537}
3538
3539static int rtl8152_post_reset(struct usb_interface *intf)
3540{
3541	struct r8152 *tp = usb_get_intfdata(intf);
3542	struct net_device *netdev;
3543
3544	if (!tp)
3545		return 0;
3546
3547	netdev = tp->netdev;
3548	if (!netif_running(netdev))
3549		return 0;
3550
3551	set_bit(WORK_ENABLE, &tp->flags);
3552	if (netif_carrier_ok(netdev)) {
3553		mutex_lock(&tp->control);
3554		tp->rtl_ops.enable(tp);
3555		rtl_start_rx(tp);
3556		rtl8152_set_rx_mode(netdev);
3557		mutex_unlock(&tp->control);
3558	}
3559
3560	napi_enable(&tp->napi);
3561	netif_wake_queue(netdev);
3562	usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3563
3564	if (!list_empty(&tp->rx_done))
3565		napi_schedule(&tp->napi);
3566
3567	return 0;
3568}
3569
3570static bool delay_autosuspend(struct r8152 *tp)
3571{
3572	bool sw_linking = !!netif_carrier_ok(tp->netdev);
3573	bool hw_linking = !!(rtl8152_get_speed(tp) & LINK_STATUS);
3574
3575	/* This means a linking change occurs and the driver doesn't detect it,
3576	 * yet. If the driver has disabled tx/rx and hw is linking on, the
3577	 * device wouldn't wake up by receiving any packet.
3578	 */
3579	if (work_busy(&tp->schedule.work) || sw_linking != hw_linking)
3580		return true;
3581
3582	/* If the linking down is occurred by nway, the device may miss the
3583	 * linking change event. And it wouldn't wake when linking on.
3584	 */
3585	if (!sw_linking && tp->rtl_ops.in_nway(tp))
3586		return true;
3587	else if (!skb_queue_empty(&tp->tx_queue))
3588		return true;
3589	else
3590		return false;
3591}
3592
3593static int rtl8152_rumtime_suspend(struct r8152 *tp)
3594{
3595	struct net_device *netdev = tp->netdev;
3596	int ret = 0;
3597
3598	set_bit(SELECTIVE_SUSPEND, &tp->flags);
3599	smp_mb__after_atomic();
3600
3601	if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
3602		u32 rcr = 0;
3603
3604		if (delay_autosuspend(tp)) {
3605			clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3606			smp_mb__after_atomic();
3607			ret = -EBUSY;
3608			goto out1;
3609		}
3610
3611		if (netif_carrier_ok(netdev)) {
3612			u32 ocp_data;
3613
3614			rcr = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
3615			ocp_data = rcr & ~RCR_ACPT_ALL;
3616			ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
3617			rxdy_gated_en(tp, true);
3618			ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA,
3619						 PLA_OOB_CTRL);
3620			if (!(ocp_data & RXFIFO_EMPTY)) {
3621				rxdy_gated_en(tp, false);
3622				ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
3623				clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3624				smp_mb__after_atomic();
3625				ret = -EBUSY;
3626				goto out1;
3627			}
3628		}
3629
3630		clear_bit(WORK_ENABLE, &tp->flags);
3631		usb_kill_urb(tp->intr_urb);
3632
3633		tp->rtl_ops.autosuspend_en(tp, true);
3634
3635		if (netif_carrier_ok(netdev)) {
3636			napi_disable(&tp->napi);
3637			rtl_stop_rx(tp);
3638			rxdy_gated_en(tp, false);
3639			ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
3640			napi_enable(&tp->napi);
3641		}
3642	}
3643
3644out1:
3645	return ret;
3646}
3647
3648static int rtl8152_system_suspend(struct r8152 *tp)
3649{
3650	struct net_device *netdev = tp->netdev;
3651	int ret = 0;
3652
3653	netif_device_detach(netdev);
3654
3655	if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
3656		clear_bit(WORK_ENABLE, &tp->flags);
3657		usb_kill_urb(tp->intr_urb);
3658		napi_disable(&tp->napi);
3659		cancel_delayed_work_sync(&tp->schedule);
3660		tp->rtl_ops.down(tp);
3661		napi_enable(&tp->napi);
3662	}
3663
3664	return ret;
3665}
3666
3667static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
3668{
3669	struct r8152 *tp = usb_get_intfdata(intf);
3670	int ret;
3671
3672	mutex_lock(&tp->control);
3673
3674	if (PMSG_IS_AUTO(message))
3675		ret = rtl8152_rumtime_suspend(tp);
3676	else
3677		ret = rtl8152_system_suspend(tp);
3678
3679	mutex_unlock(&tp->control);
3680
3681	return ret;
3682}
3683
3684static int rtl8152_resume(struct usb_interface *intf)
3685{
3686	struct r8152 *tp = usb_get_intfdata(intf);
3687
3688	mutex_lock(&tp->control);
3689
3690	if (!test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3691		tp->rtl_ops.init(tp);
3692		queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
3693		netif_device_attach(tp->netdev);
3694	}
3695
3696	if (netif_running(tp->netdev) && tp->netdev->flags & IFF_UP) {
3697		if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3698			tp->rtl_ops.autosuspend_en(tp, false);
3699			napi_disable(&tp->napi);
3700			set_bit(WORK_ENABLE, &tp->flags);
3701			if (netif_carrier_ok(tp->netdev))
3702				rtl_start_rx(tp);
3703			napi_enable(&tp->napi);
3704			clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3705			smp_mb__after_atomic();
3706			if (!list_empty(&tp->rx_done))
3707				napi_schedule(&tp->napi);
3708		} else {
3709			tp->rtl_ops.up(tp);
3710			netif_carrier_off(tp->netdev);
3711			set_bit(WORK_ENABLE, &tp->flags);
3712		}
3713		usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3714	} else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3715		if (tp->netdev->flags & IFF_UP)
3716			tp->rtl_ops.autosuspend_en(tp, false);
3717		clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3718	}
3719
3720	mutex_unlock(&tp->control);
3721
3722	return 0;
3723}
3724
3725static int rtl8152_reset_resume(struct usb_interface *intf)
3726{
3727	struct r8152 *tp = usb_get_intfdata(intf);
3728
3729	clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3730	return rtl8152_resume(intf);
3731}
3732
3733static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3734{
3735	struct r8152 *tp = netdev_priv(dev);
3736
3737	if (usb_autopm_get_interface(tp->intf) < 0)
3738		return;
3739
3740	if (!rtl_can_wakeup(tp)) {
3741		wol->supported = 0;
3742		wol->wolopts = 0;
3743	} else {
3744		mutex_lock(&tp->control);
3745		wol->supported = WAKE_ANY;
3746		wol->wolopts = __rtl_get_wol(tp);
3747		mutex_unlock(&tp->control);
3748	}
3749
3750	usb_autopm_put_interface(tp->intf);
3751}
3752
3753static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3754{
3755	struct r8152 *tp = netdev_priv(dev);
3756	int ret;
3757
3758	if (!rtl_can_wakeup(tp))
3759		return -EOPNOTSUPP;
3760
3761	ret = usb_autopm_get_interface(tp->intf);
3762	if (ret < 0)
3763		goto out_set_wol;
3764
3765	mutex_lock(&tp->control);
3766
3767	__rtl_set_wol(tp, wol->wolopts);
3768	tp->saved_wolopts = wol->wolopts & WAKE_ANY;
3769
3770	mutex_unlock(&tp->control);
3771
3772	usb_autopm_put_interface(tp->intf);
3773
3774out_set_wol:
3775	return ret;
3776}
3777
3778static u32 rtl8152_get_msglevel(struct net_device *dev)
3779{
3780	struct r8152 *tp = netdev_priv(dev);
3781
3782	return tp->msg_enable;
3783}
3784
3785static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
3786{
3787	struct r8152 *tp = netdev_priv(dev);
3788
3789	tp->msg_enable = value;
3790}
3791
3792static void rtl8152_get_drvinfo(struct net_device *netdev,
3793				struct ethtool_drvinfo *info)
3794{
3795	struct r8152 *tp = netdev_priv(netdev);
3796
3797	strlcpy(info->driver, MODULENAME, sizeof(info->driver));
3798	strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
3799	usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
3800}
3801
3802static
3803int rtl8152_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
3804{
3805	struct r8152 *tp = netdev_priv(netdev);
3806	int ret;
3807
3808	if (!tp->mii.mdio_read)
3809		return -EOPNOTSUPP;
3810
3811	ret = usb_autopm_get_interface(tp->intf);
3812	if (ret < 0)
3813		goto out;
3814
3815	mutex_lock(&tp->control);
3816
3817	ret = mii_ethtool_gset(&tp->mii, cmd);
3818
3819	mutex_unlock(&tp->control);
3820
3821	usb_autopm_put_interface(tp->intf);
3822
3823out:
3824	return ret;
3825}
3826
3827static int rtl8152_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3828{
3829	struct r8152 *tp = netdev_priv(dev);
3830	int ret;
3831
3832	ret = usb_autopm_get_interface(tp->intf);
3833	if (ret < 0)
3834		goto out;
3835
3836	mutex_lock(&tp->control);
3837
3838	ret = rtl8152_set_speed(tp, cmd->autoneg, cmd->speed, cmd->duplex);
3839	if (!ret) {
3840		tp->autoneg = cmd->autoneg;
3841		tp->speed = cmd->speed;
3842		tp->duplex = cmd->duplex;
3843	}
3844
3845	mutex_unlock(&tp->control);
3846
3847	usb_autopm_put_interface(tp->intf);
3848
3849out:
3850	return ret;
3851}
3852
3853static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
3854	"tx_packets",
3855	"rx_packets",
3856	"tx_errors",
3857	"rx_errors",
3858	"rx_missed",
3859	"align_errors",
3860	"tx_single_collisions",
3861	"tx_multi_collisions",
3862	"rx_unicast",
3863	"rx_broadcast",
3864	"rx_multicast",
3865	"tx_aborted",
3866	"tx_underrun",
3867};
3868
3869static int rtl8152_get_sset_count(struct net_device *dev, int sset)
3870{
3871	switch (sset) {
3872	case ETH_SS_STATS:
3873		return ARRAY_SIZE(rtl8152_gstrings);
3874	default:
3875		return -EOPNOTSUPP;
3876	}
3877}
3878
3879static void rtl8152_get_ethtool_stats(struct net_device *dev,
3880				      struct ethtool_stats *stats, u64 *data)
3881{
3882	struct r8152 *tp = netdev_priv(dev);
3883	struct tally_counter tally;
3884
3885	if (usb_autopm_get_interface(tp->intf) < 0)
3886		return;
3887
3888	generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
3889
3890	usb_autopm_put_interface(tp->intf);
3891
3892	data[0] = le64_to_cpu(tally.tx_packets);
3893	data[1] = le64_to_cpu(tally.rx_packets);
3894	data[2] = le64_to_cpu(tally.tx_errors);
3895	data[3] = le32_to_cpu(tally.rx_errors);
3896	data[4] = le16_to_cpu(tally.rx_missed);
3897	data[5] = le16_to_cpu(tally.align_errors);
3898	data[6] = le32_to_cpu(tally.tx_one_collision);
3899	data[7] = le32_to_cpu(tally.tx_multi_collision);
3900	data[8] = le64_to_cpu(tally.rx_unicast);
3901	data[9] = le64_to_cpu(tally.rx_broadcast);
3902	data[10] = le32_to_cpu(tally.rx_multicast);
3903	data[11] = le16_to_cpu(tally.tx_aborted);
3904	data[12] = le16_to_cpu(tally.tx_underrun);
3905}
3906
3907static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3908{
3909	switch (stringset) {
3910	case ETH_SS_STATS:
3911		memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
3912		break;
3913	}
3914}
3915
3916static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3917{
3918	u32 ocp_data, lp, adv, supported = 0;
3919	u16 val;
3920
3921	val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
3922	supported = mmd_eee_cap_to_ethtool_sup_t(val);
3923
3924	val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
3925	adv = mmd_eee_adv_to_ethtool_adv_t(val);
3926
3927	val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
3928	lp = mmd_eee_adv_to_ethtool_adv_t(val);
3929
3930	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3931	ocp_data &= EEE_RX_EN | EEE_TX_EN;
3932
3933	eee->eee_enabled = !!ocp_data;
3934	eee->eee_active = !!(supported & adv & lp);
3935	eee->supported = supported;
3936	eee->advertised = adv;
3937	eee->lp_advertised = lp;
3938
3939	return 0;
3940}
3941
3942static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3943{
3944	u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3945
3946	r8152_eee_en(tp, eee->eee_enabled);
3947
3948	if (!eee->eee_enabled)
3949		val = 0;
3950
3951	r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
3952
3953	return 0;
3954}
3955
3956static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3957{
3958	u32 ocp_data, lp, adv, supported = 0;
3959	u16 val;
3960
3961	val = ocp_reg_read(tp, OCP_EEE_ABLE);
3962	supported = mmd_eee_cap_to_ethtool_sup_t(val);
3963
3964	val = ocp_reg_read(tp, OCP_EEE_ADV);
3965	adv = mmd_eee_adv_to_ethtool_adv_t(val);
3966
3967	val = ocp_reg_read(tp, OCP_EEE_LPABLE);
3968	lp = mmd_eee_adv_to_ethtool_adv_t(val);
3969
3970	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3971	ocp_data &= EEE_RX_EN | EEE_TX_EN;
3972
3973	eee->eee_enabled = !!ocp_data;
3974	eee->eee_active = !!(supported & adv & lp);
3975	eee->supported = supported;
3976	eee->advertised = adv;
3977	eee->lp_advertised = lp;
3978
3979	return 0;
3980}
3981
3982static int r8153_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3983{
3984	u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3985
3986	r8153_eee_en(tp, eee->eee_enabled);
3987
3988	if (!eee->eee_enabled)
3989		val = 0;
3990
3991	ocp_reg_write(tp, OCP_EEE_ADV, val);
3992
3993	return 0;
3994}
3995
3996static int
3997rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
3998{
3999	struct r8152 *tp = netdev_priv(net);
4000	int ret;
4001
4002	ret = usb_autopm_get_interface(tp->intf);
4003	if (ret < 0)
4004		goto out;
4005
4006	mutex_lock(&tp->control);
4007
4008	ret = tp->rtl_ops.eee_get(tp, edata);
4009
4010	mutex_unlock(&tp->control);
4011
4012	usb_autopm_put_interface(tp->intf);
4013
4014out:
4015	return ret;
4016}
4017
4018static int
4019rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
4020{
4021	struct r8152 *tp = netdev_priv(net);
4022	int ret;
4023
4024	ret = usb_autopm_get_interface(tp->intf);
4025	if (ret < 0)
4026		goto out;
4027
4028	mutex_lock(&tp->control);
4029
4030	ret = tp->rtl_ops.eee_set(tp, edata);
4031	if (!ret)
4032		ret = mii_nway_restart(&tp->mii);
4033
4034	mutex_unlock(&tp->control);
4035
4036	usb_autopm_put_interface(tp->intf);
4037
4038out:
4039	return ret;
4040}
4041
4042static int rtl8152_nway_reset(struct net_device *dev)
4043{
4044	struct r8152 *tp = netdev_priv(dev);
4045	int ret;
4046
4047	ret = usb_autopm_get_interface(tp->intf);
4048	if (ret < 0)
4049		goto out;
4050
4051	mutex_lock(&tp->control);
4052
4053	ret = mii_nway_restart(&tp->mii);
4054
4055	mutex_unlock(&tp->control);
4056
4057	usb_autopm_put_interface(tp->intf);
4058
4059out:
4060	return ret;
4061}
4062
4063static int rtl8152_get_coalesce(struct net_device *netdev,
4064				struct ethtool_coalesce *coalesce)
4065{
4066	struct r8152 *tp = netdev_priv(netdev);
4067
4068	switch (tp->version) {
4069	case RTL_VER_01:
4070	case RTL_VER_02:
4071		return -EOPNOTSUPP;
4072	default:
4073		break;
4074	}
4075
4076	coalesce->rx_coalesce_usecs = tp->coalesce;
4077
4078	return 0;
4079}
4080
4081static int rtl8152_set_coalesce(struct net_device *netdev,
4082				struct ethtool_coalesce *coalesce)
4083{
4084	struct r8152 *tp = netdev_priv(netdev);
4085	int ret;
4086
4087	switch (tp->version) {
4088	case RTL_VER_01:
4089	case RTL_VER_02:
4090		return -EOPNOTSUPP;
4091	default:
4092		break;
4093	}
4094
4095	if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
4096		return -EINVAL;
4097
4098	ret = usb_autopm_get_interface(tp->intf);
4099	if (ret < 0)
4100		return ret;
4101
4102	mutex_lock(&tp->control);
4103
4104	if (tp->coalesce != coalesce->rx_coalesce_usecs) {
4105		tp->coalesce = coalesce->rx_coalesce_usecs;
4106
4107		if (netif_running(tp->netdev) && netif_carrier_ok(netdev))
4108			r8153_set_rx_early_timeout(tp);
4109	}
4110
4111	mutex_unlock(&tp->control);
4112
4113	usb_autopm_put_interface(tp->intf);
4114
4115	return ret;
4116}
4117
4118static const struct ethtool_ops ops = {
4119	.get_drvinfo = rtl8152_get_drvinfo,
4120	.get_settings = rtl8152_get_settings,
4121	.set_settings = rtl8152_set_settings,
4122	.get_link = ethtool_op_get_link,
4123	.nway_reset = rtl8152_nway_reset,
4124	.get_msglevel = rtl8152_get_msglevel,
4125	.set_msglevel = rtl8152_set_msglevel,
4126	.get_wol = rtl8152_get_wol,
4127	.set_wol = rtl8152_set_wol,
4128	.get_strings = rtl8152_get_strings,
4129	.get_sset_count = rtl8152_get_sset_count,
4130	.get_ethtool_stats = rtl8152_get_ethtool_stats,
4131	.get_coalesce = rtl8152_get_coalesce,
4132	.set_coalesce = rtl8152_set_coalesce,
4133	.get_eee = rtl_ethtool_get_eee,
4134	.set_eee = rtl_ethtool_set_eee,
4135};
4136
4137static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
4138{
4139	struct r8152 *tp = netdev_priv(netdev);
4140	struct mii_ioctl_data *data = if_mii(rq);
4141	int res;
4142
4143	if (test_bit(RTL8152_UNPLUG, &tp->flags))
4144		return -ENODEV;
4145
4146	res = usb_autopm_get_interface(tp->intf);
4147	if (res < 0)
4148		goto out;
4149
4150	switch (cmd) {
4151	case SIOCGMIIPHY:
4152		data->phy_id = R8152_PHY_ID; /* Internal PHY */
4153		break;
4154
4155	case SIOCGMIIREG:
4156		mutex_lock(&tp->control);
4157		data->val_out = r8152_mdio_read(tp, data->reg_num);
4158		mutex_unlock(&tp->control);
4159		break;
4160
4161	case SIOCSMIIREG:
4162		if (!capable(CAP_NET_ADMIN)) {
4163			res = -EPERM;
4164			break;
4165		}
4166		mutex_lock(&tp->control);
4167		r8152_mdio_write(tp, data->reg_num, data->val_in);
4168		mutex_unlock(&tp->control);
4169		break;
4170
4171	default:
4172		res = -EOPNOTSUPP;
4173	}
4174
4175	usb_autopm_put_interface(tp->intf);
4176
4177out:
4178	return res;
4179}
4180
4181static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
4182{
4183	struct r8152 *tp = netdev_priv(dev);
4184	int ret;
4185
4186	switch (tp->version) {
4187	case RTL_VER_01:
4188	case RTL_VER_02:
4189		dev->mtu = new_mtu;
4190		return 0;
4191	default:
4192		break;
4193	}
4194
4195	ret = usb_autopm_get_interface(tp->intf);
4196	if (ret < 0)
4197		return ret;
4198
4199	mutex_lock(&tp->control);
4200
4201	dev->mtu = new_mtu;
4202
4203	if (netif_running(dev) && netif_carrier_ok(dev))
4204		r8153_set_rx_early_size(tp);
4205
4206	mutex_unlock(&tp->control);
4207
4208	usb_autopm_put_interface(tp->intf);
4209
4210	return ret;
4211}
4212
4213static const struct net_device_ops rtl8152_netdev_ops = {
4214	.ndo_open		= rtl8152_open,
4215	.ndo_stop		= rtl8152_close,
4216	.ndo_do_ioctl		= rtl8152_ioctl,
4217	.ndo_start_xmit		= rtl8152_start_xmit,
4218	.ndo_tx_timeout		= rtl8152_tx_timeout,
4219	.ndo_set_features	= rtl8152_set_features,
4220	.ndo_set_rx_mode	= rtl8152_set_rx_mode,
4221	.ndo_set_mac_address	= rtl8152_set_mac_address,
4222	.ndo_change_mtu		= rtl8152_change_mtu,
4223	.ndo_validate_addr	= eth_validate_addr,
4224	.ndo_features_check	= rtl8152_features_check,
4225};
4226
4227static void r8152b_get_version(struct r8152 *tp)
4228{
4229	u32	ocp_data;
4230	u16	version;
4231
4232	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR1);
4233	version = (u16)(ocp_data & VERSION_MASK);
4234
4235	switch (version) {
4236	case 0x4c00:
4237		tp->version = RTL_VER_01;
4238		break;
4239	case 0x4c10:
4240		tp->version = RTL_VER_02;
4241		break;
4242	case 0x5c00:
4243		tp->version = RTL_VER_03;
4244		tp->mii.supports_gmii = 1;
4245		break;
4246	case 0x5c10:
4247		tp->version = RTL_VER_04;
4248		tp->mii.supports_gmii = 1;
4249		break;
4250	case 0x5c20:
4251		tp->version = RTL_VER_05;
4252		tp->mii.supports_gmii = 1;
4253		break;
4254	case 0x5c30:
4255		tp->version = RTL_VER_06;
4256		tp->mii.supports_gmii = 1;
4257		break;
4258	default:
4259		netif_info(tp, probe, tp->netdev,
4260			   "Unknown version 0x%04x\n", version);
4261		break;
4262	}
4263}
4264
4265static void rtl8152_unload(struct r8152 *tp)
4266{
4267	if (test_bit(RTL8152_UNPLUG, &tp->flags))
4268		return;
4269
4270	if (tp->version != RTL_VER_01)
4271		r8152_power_cut_en(tp, true);
4272}
4273
4274static void rtl8153_unload(struct r8152 *tp)
4275{
4276	if (test_bit(RTL8152_UNPLUG, &tp->flags))
4277		return;
4278
4279	r8153_power_cut_en(tp, false);
4280}
4281
4282static int rtl_ops_init(struct r8152 *tp)
4283{
4284	struct rtl_ops *ops = &tp->rtl_ops;
4285	int ret = 0;
4286
4287	switch (tp->version) {
4288	case RTL_VER_01:
4289	case RTL_VER_02:
4290		ops->init		= r8152b_init;
4291		ops->enable		= rtl8152_enable;
4292		ops->disable		= rtl8152_disable;
4293		ops->up			= rtl8152_up;
4294		ops->down		= rtl8152_down;
4295		ops->unload		= rtl8152_unload;
4296		ops->eee_get		= r8152_get_eee;
4297		ops->eee_set		= r8152_set_eee;
4298		ops->in_nway		= rtl8152_in_nway;
4299		ops->hw_phy_cfg		= r8152b_hw_phy_cfg;
4300		ops->autosuspend_en	= rtl_runtime_suspend_enable;
4301		break;
4302
4303	case RTL_VER_03:
4304	case RTL_VER_04:
4305	case RTL_VER_05:
4306	case RTL_VER_06:
4307		ops->init		= r8153_init;
4308		ops->enable		= rtl8153_enable;
4309		ops->disable		= rtl8153_disable;
4310		ops->up			= rtl8153_up;
4311		ops->down		= rtl8153_down;
4312		ops->unload		= rtl8153_unload;
4313		ops->eee_get		= r8153_get_eee;
4314		ops->eee_set		= r8153_set_eee;
4315		ops->in_nway		= rtl8153_in_nway;
4316		ops->hw_phy_cfg		= r8153_hw_phy_cfg;
4317		ops->autosuspend_en	= rtl8153_runtime_enable;
4318		break;
4319
4320	default:
4321		ret = -ENODEV;
4322		netif_err(tp, probe, tp->netdev, "Unknown Device\n");
4323		break;
4324	}
4325
4326	return ret;
4327}
4328
4329static int rtl8152_probe(struct usb_interface *intf,
4330			 const struct usb_device_id *id)
4331{
4332	struct usb_device *udev = interface_to_usbdev(intf);
4333	struct r8152 *tp;
4334	struct net_device *netdev;
4335	int ret;
4336
4337	if (udev->actconfig->desc.bConfigurationValue != 1) {
4338		usb_driver_set_configuration(udev, 1);
4339		return -ENODEV;
4340	}
4341
4342	usb_reset_device(udev);
4343	netdev = alloc_etherdev(sizeof(struct r8152));
4344	if (!netdev) {
4345		dev_err(&intf->dev, "Out of memory\n");
4346		return -ENOMEM;
4347	}
4348
4349	SET_NETDEV_DEV(netdev, &intf->dev);
4350	tp = netdev_priv(netdev);
4351	tp->msg_enable = 0x7FFF;
4352
4353	tp->udev = udev;
4354	tp->netdev = netdev;
4355	tp->intf = intf;
4356
4357	r8152b_get_version(tp);
4358	ret = rtl_ops_init(tp);
4359	if (ret)
4360		goto out;
4361
4362	mutex_init(&tp->control);
4363	INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
4364	INIT_DELAYED_WORK(&tp->hw_phy_work, rtl_hw_phy_work_func_t);
4365
4366	netdev->netdev_ops = &rtl8152_netdev_ops;
4367	netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
4368
4369	netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
4370			    NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
4371			    NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
4372			    NETIF_F_HW_VLAN_CTAG_TX;
4373	netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
4374			      NETIF_F_TSO | NETIF_F_FRAGLIST |
4375			      NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
4376			      NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
4377	netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4378				NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
4379				NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
4380
4381	if (tp->version == RTL_VER_01) {
4382		netdev->features &= ~NETIF_F_RXCSUM;
4383		netdev->hw_features &= ~NETIF_F_RXCSUM;
4384	}
4385
4386	netdev->ethtool_ops = &ops;
4387	netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
4388
4389	/* MTU range: 68 - 1500 or 9194 */
4390	netdev->min_mtu = ETH_MIN_MTU;
4391	switch (tp->version) {
4392	case RTL_VER_01:
4393	case RTL_VER_02:
4394		netdev->max_mtu = ETH_DATA_LEN;
4395		break;
4396	default:
4397		netdev->max_mtu = RTL8153_MAX_MTU;
4398		break;
4399	}
4400
4401	tp->mii.dev = netdev;
4402	tp->mii.mdio_read = read_mii_word;
4403	tp->mii.mdio_write = write_mii_word;
4404	tp->mii.phy_id_mask = 0x3f;
4405	tp->mii.reg_num_mask = 0x1f;
4406	tp->mii.phy_id = R8152_PHY_ID;
4407
4408	switch (udev->speed) {
4409	case USB_SPEED_SUPER:
4410	case USB_SPEED_SUPER_PLUS:
4411		tp->coalesce = COALESCE_SUPER;
4412		break;
4413	case USB_SPEED_HIGH:
4414		tp->coalesce = COALESCE_HIGH;
4415		break;
4416	default:
4417		tp->coalesce = COALESCE_SLOW;
4418		break;
4419	}
4420
4421	tp->autoneg = AUTONEG_ENABLE;
4422	tp->speed = tp->mii.supports_gmii ? SPEED_1000 : SPEED_100;
4423	tp->duplex = DUPLEX_FULL;
4424
4425	intf->needs_remote_wakeup = 1;
4426
4427	tp->rtl_ops.init(tp);
4428	queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
4429	set_ethernet_addr(tp);
4430
4431	usb_set_intfdata(intf, tp);
4432	netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
4433
4434	ret = register_netdev(netdev);
4435	if (ret != 0) {
4436		netif_err(tp, probe, netdev, "couldn't register the device\n");
4437		goto out1;
4438	}
4439
4440	if (!rtl_can_wakeup(tp))
4441		__rtl_set_wol(tp, 0);
4442
4443	tp->saved_wolopts = __rtl_get_wol(tp);
4444	if (tp->saved_wolopts)
4445		device_set_wakeup_enable(&udev->dev, true);
4446	else
4447		device_set_wakeup_enable(&udev->dev, false);
4448
4449	netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
4450
4451	return 0;
4452
4453out1:
4454	netif_napi_del(&tp->napi);
4455	usb_set_intfdata(intf, NULL);
4456out:
4457	free_netdev(netdev);
4458	return ret;
4459}
4460
4461static void rtl8152_disconnect(struct usb_interface *intf)
4462{
4463	struct r8152 *tp = usb_get_intfdata(intf);
4464
4465	usb_set_intfdata(intf, NULL);
4466	if (tp) {
4467		struct usb_device *udev = tp->udev;
4468
4469		if (udev->state == USB_STATE_NOTATTACHED)
4470			set_bit(RTL8152_UNPLUG, &tp->flags);
4471
4472		netif_napi_del(&tp->napi);
4473		unregister_netdev(tp->netdev);
4474		cancel_delayed_work_sync(&tp->hw_phy_work);
4475		tp->rtl_ops.unload(tp);
4476		free_netdev(tp->netdev);
4477	}
4478}
4479
4480#define REALTEK_USB_DEVICE(vend, prod)	\
4481	.match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
4482		       USB_DEVICE_ID_MATCH_INT_CLASS, \
4483	.idVendor = (vend), \
4484	.idProduct = (prod), \
4485	.bInterfaceClass = USB_CLASS_VENDOR_SPEC \
4486}, \
4487{ \
4488	.match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
4489		       USB_DEVICE_ID_MATCH_DEVICE, \
4490	.idVendor = (vend), \
4491	.idProduct = (prod), \
4492	.bInterfaceClass = USB_CLASS_COMM, \
4493	.bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
4494	.bInterfaceProtocol = USB_CDC_PROTO_NONE
4495
4496/* table of devices that work with this driver */
4497static struct usb_device_id rtl8152_table[] = {
4498	{REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
4499	{REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
4500	{REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
4501	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x304f)},
4502	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x3062)},
4503	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x3069)},
4504	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x7205)},
4505	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x720c)},
4506	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x7214)},
4507	{REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA,  0x09ff)},
4508	{}
4509};
4510
4511MODULE_DEVICE_TABLE(usb, rtl8152_table);
4512
4513static struct usb_driver rtl8152_driver = {
4514	.name =		MODULENAME,
4515	.id_table =	rtl8152_table,
4516	.probe =	rtl8152_probe,
4517	.disconnect =	rtl8152_disconnect,
4518	.suspend =	rtl8152_suspend,
4519	.resume =	rtl8152_resume,
4520	.reset_resume =	rtl8152_reset_resume,
4521	.pre_reset =	rtl8152_pre_reset,
4522	.post_reset =	rtl8152_post_reset,
4523	.supports_autosuspend = 1,
4524	.disable_hub_initiated_lpm = 1,
4525};
4526
4527module_usb_driver(rtl8152_driver);
4528
4529MODULE_AUTHOR(DRIVER_AUTHOR);
4530MODULE_DESCRIPTION(DRIVER_DESC);
4531MODULE_LICENSE("GPL");
4532MODULE_VERSION(DRIVER_VERSION);