blob: cebe2dc15c3f0de8b8b6775bef7979f3d89ea568 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
hayeswangac718b62013-05-02 16:01:25 +00002/*
hayeswangc7de7de2014-01-15 10:42:16 +08003 * Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved.
hayeswangac718b62013-05-02 16:01:25 +00004 */
5
hayeswangac718b62013-05-02 16:01:25 +00006#include <linux/signal.h>
7#include <linux/slab.h>
8#include <linux/module.h>
hayeswangac718b62013-05-02 16:01:25 +00009#include <linux/netdevice.h>
10#include <linux/etherdevice.h>
11#include <linux/mii.h>
12#include <linux/ethtool.h>
13#include <linux/usb.h>
14#include <linux/crc32.h>
15#include <linux/if_vlan.h>
16#include <linux/uaccess.h>
hayeswangebc2ec482013-08-14 20:54:38 +080017#include <linux/list.h>
hayeswang5bd23882013-08-14 20:54:39 +080018#include <linux/ip.h>
19#include <linux/ipv6.h>
hayeswang6128d1bb2014-03-07 11:04:40 +080020#include <net/ip6_checksum.h>
hayeswang4c4a6b12014-09-25 20:54:00 +080021#include <uapi/linux/mdio.h>
22#include <linux/mdio.h>
hayeswangd9a28c52014-12-04 10:43:11 +080023#include <linux/usb/cdc.h>
hayeswang5ee3c602016-01-07 17:12:17 +080024#include <linux/suspend.h>
Hayes Wang252df8b2019-08-13 11:42:06 +080025#include <linux/atomic.h>
Mario Limonciello34ee32c2016-07-11 19:58:04 -050026#include <linux/acpi.h>
Hayes Wang9370f2d2019-10-16 11:02:42 +080027#include <linux/firmware.h>
28#include <crypto/hash.h>
hayeswangac718b62013-05-02 16:01:25 +000029
hayeswangd0942472015-09-07 11:57:43 +080030/* Information for net-next */
Hayes Wang9370f2d2019-10-16 11:02:42 +080031#define NETNEXT_VERSION "11"
hayeswangd0942472015-09-07 11:57:43 +080032
33/* Information for net */
Hayes Wangaa475d92020-01-22 16:02:13 +080034#define NET_VERSION "11"
hayeswangd0942472015-09-07 11:57:43 +080035
36#define DRIVER_VERSION "v1." NETNEXT_VERSION "." NET_VERSION
hayeswangac718b62013-05-02 16:01:25 +000037#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
hayeswang44d942a2014-01-15 10:42:14 +080038#define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters"
hayeswangac718b62013-05-02 16:01:25 +000039#define MODULENAME "r8152"
40
41#define R8152_PHY_ID 32
42
43#define PLA_IDR 0xc000
44#define PLA_RCR 0xc010
45#define PLA_RMS 0xc016
46#define PLA_RXFIFO_CTRL0 0xc0a0
47#define PLA_RXFIFO_CTRL1 0xc0a4
48#define PLA_RXFIFO_CTRL2 0xc0a8
hayeswang65bab842015-02-12 16:20:46 +080049#define PLA_DMY_REG0 0xc0b0
hayeswangac718b62013-05-02 16:01:25 +000050#define PLA_FMC 0xc0b4
51#define PLA_CFG_WOL 0xc0b6
hayeswang43779f82014-01-02 11:25:10 +080052#define PLA_TEREDO_CFG 0xc0bc
hayeswang65b82d62017-06-15 14:44:03 +080053#define PLA_TEREDO_WAKE_BASE 0xc0c4
hayeswangac718b62013-05-02 16:01:25 +000054#define PLA_MAR 0xcd00
hayeswang43779f82014-01-02 11:25:10 +080055#define PLA_BACKUP 0xd000
Kevin Lo59c0b472019-08-01 11:29:38 +080056#define PLA_BDC_CR 0xd1a0
hayeswang43779f82014-01-02 11:25:10 +080057#define PLA_TEREDO_TIMER 0xd2cc
58#define PLA_REALWOW_TIMER 0xd2e8
Hayes Wang9370f2d2019-10-16 11:02:42 +080059#define PLA_UPHY_TIMER 0xd388
Hayes Wang13e04fbf2019-07-01 15:53:19 +080060#define PLA_SUSPEND_FLAG 0xd38a
61#define PLA_INDICATE_FALG 0xd38c
Hayes Wang9370f2d2019-10-16 11:02:42 +080062#define PLA_MACDBG_PRE 0xd38c /* RTL_VER_04 only */
63#define PLA_MACDBG_POST 0xd38e /* RTL_VER_04 only */
Hayes Wang13e04fbf2019-07-01 15:53:19 +080064#define PLA_EXTRA_STATUS 0xd398
hayeswang65b82d62017-06-15 14:44:03 +080065#define PLA_EFUSE_DATA 0xdd00
66#define PLA_EFUSE_CMD 0xdd02
hayeswangac718b62013-05-02 16:01:25 +000067#define PLA_LEDSEL 0xdd90
68#define PLA_LED_FEATURE 0xdd92
69#define PLA_PHYAR 0xde00
hayeswang43779f82014-01-02 11:25:10 +080070#define PLA_BOOT_CTRL 0xe004
Hayes Wang19813162020-01-22 16:02:12 +080071#define PLA_LWAKE_CTRL_REG 0xe007
hayeswangac718b62013-05-02 16:01:25 +000072#define PLA_GPHY_INTR_IMR 0xe022
73#define PLA_EEE_CR 0xe040
74#define PLA_EEEP_CR 0xe080
75#define PLA_MAC_PWR_CTRL 0xe0c0
hayeswang43779f82014-01-02 11:25:10 +080076#define PLA_MAC_PWR_CTRL2 0xe0ca
77#define PLA_MAC_PWR_CTRL3 0xe0cc
78#define PLA_MAC_PWR_CTRL4 0xe0ce
79#define PLA_WDT6_CTRL 0xe428
hayeswangac718b62013-05-02 16:01:25 +000080#define PLA_TCR0 0xe610
81#define PLA_TCR1 0xe612
hayeswang69b4b7a2014-07-10 10:58:54 +080082#define PLA_MTPS 0xe615
hayeswangac718b62013-05-02 16:01:25 +000083#define PLA_TXFIFO_CTRL 0xe618
hayeswang4f1d4d52014-03-11 16:24:19 +080084#define PLA_RSTTALLY 0xe800
hayeswangac718b62013-05-02 16:01:25 +000085#define PLA_CR 0xe813
86#define PLA_CRWECR 0xe81c
hayeswang21ff2e82014-02-18 21:49:06 +080087#define PLA_CONFIG12 0xe81e /* CONFIG1, CONFIG2 */
88#define PLA_CONFIG34 0xe820 /* CONFIG3, CONFIG4 */
hayeswangac718b62013-05-02 16:01:25 +000089#define PLA_CONFIG5 0xe822
90#define PLA_PHY_PWR 0xe84c
91#define PLA_OOB_CTRL 0xe84f
92#define PLA_CPCR 0xe854
93#define PLA_MISC_0 0xe858
94#define PLA_MISC_1 0xe85a
95#define PLA_OCP_GPHY_BASE 0xe86c
hayeswang4f1d4d52014-03-11 16:24:19 +080096#define PLA_TALLYCNT 0xe890
hayeswangac718b62013-05-02 16:01:25 +000097#define PLA_SFF_STS_7 0xe8de
98#define PLA_PHYSTATUS 0xe908
Hayes Wang19813162020-01-22 16:02:12 +080099#define PLA_CONFIG6 0xe90a /* CONFIG6 */
hayeswangac718b62013-05-02 16:01:25 +0000100#define PLA_BP_BA 0xfc26
101#define PLA_BP_0 0xfc28
102#define PLA_BP_1 0xfc2a
103#define PLA_BP_2 0xfc2c
104#define PLA_BP_3 0xfc2e
105#define PLA_BP_4 0xfc30
106#define PLA_BP_5 0xfc32
107#define PLA_BP_6 0xfc34
108#define PLA_BP_7 0xfc36
hayeswang43779f82014-01-02 11:25:10 +0800109#define PLA_BP_EN 0xfc38
hayeswangac718b62013-05-02 16:01:25 +0000110
hayeswang65bab842015-02-12 16:20:46 +0800111#define USB_USB2PHY 0xb41e
Hayes Wangaa475d92020-01-22 16:02:13 +0800112#define USB_SSPHYLINK1 0xb426
hayeswang65bab842015-02-12 16:20:46 +0800113#define USB_SSPHYLINK2 0xb428
hayeswang43779f82014-01-02 11:25:10 +0800114#define USB_U2P3_CTRL 0xb460
hayeswang65bab842015-02-12 16:20:46 +0800115#define USB_CSR_DUMMY1 0xb464
116#define USB_CSR_DUMMY2 0xb466
hayeswangac718b62013-05-02 16:01:25 +0000117#define USB_DEV_STAT 0xb808
hayeswang65bab842015-02-12 16:20:46 +0800118#define USB_CONNECT_TIMER 0xcbf8
hayeswang65b82d62017-06-15 14:44:03 +0800119#define USB_MSC_TIMER 0xcbfc
hayeswang65bab842015-02-12 16:20:46 +0800120#define USB_BURST_SIZE 0xcfc0
Hayes Wang9370f2d2019-10-16 11:02:42 +0800121#define USB_FW_FIX_EN0 0xcfca
122#define USB_FW_FIX_EN1 0xcfcc
hayeswang65b82d62017-06-15 14:44:03 +0800123#define USB_LPM_CONFIG 0xcfd8
Hayes Wang9370f2d2019-10-16 11:02:42 +0800124#define USB_CSTMR 0xcfef /* RTL8153A */
125#define USB_FW_CTRL 0xd334 /* RTL8153B */
126#define USB_FC_TIMER 0xd340
hayeswangac718b62013-05-02 16:01:25 +0000127#define USB_USB_CTRL 0xd406
128#define USB_PHY_CTRL 0xd408
129#define USB_TX_AGG 0xd40a
130#define USB_RX_BUF_TH 0xd40c
131#define USB_USB_TIMER 0xd428
hayeswang464ec102015-02-12 14:33:46 +0800132#define USB_RX_EARLY_TIMEOUT 0xd42c
133#define USB_RX_EARLY_SIZE 0xd42e
hayeswang65b82d62017-06-15 14:44:03 +0800134#define USB_PM_CTRL_STATUS 0xd432 /* RTL8153A */
135#define USB_RX_EXTRA_AGGR_TMR 0xd432 /* RTL8153B */
hayeswangac718b62013-05-02 16:01:25 +0000136#define USB_TX_DMA 0xd434
hayeswang65b82d62017-06-15 14:44:03 +0800137#define USB_UPT_RXDMA_OWN 0xd437
hayeswang43779f82014-01-02 11:25:10 +0800138#define USB_TOLERANCE 0xd490
139#define USB_LPM_CTRL 0xd41a
hayeswang93fe9b12016-06-16 10:55:18 +0800140#define USB_BMU_RESET 0xd4b0
hayeswang65b82d62017-06-15 14:44:03 +0800141#define USB_U1U2_TIMER 0xd4da
Hayes Wang9370f2d2019-10-16 11:02:42 +0800142#define USB_FW_TASK 0xd4e8 /* RTL8153B */
hayeswangac718b62013-05-02 16:01:25 +0000143#define USB_UPS_CTRL 0xd800
hayeswang43779f82014-01-02 11:25:10 +0800144#define USB_POWER_CUT 0xd80a
hayeswang65b82d62017-06-15 14:44:03 +0800145#define USB_MISC_0 0xd81a
Mario Limonciello9c273692018-12-11 08:16:14 -0600146#define USB_MISC_1 0xd81f
hayeswang43779f82014-01-02 11:25:10 +0800147#define USB_AFE_CTRL2 0xd824
hayeswang65b82d62017-06-15 14:44:03 +0800148#define USB_UPS_CFG 0xd842
149#define USB_UPS_FLAGS 0xd848
Hayes Wang9370f2d2019-10-16 11:02:42 +0800150#define USB_WDT1_CTRL 0xe404
hayeswang43779f82014-01-02 11:25:10 +0800151#define USB_WDT11_CTRL 0xe43c
Hayes Wang9370f2d2019-10-16 11:02:42 +0800152#define USB_BP_BA PLA_BP_BA
153#define USB_BP_0 PLA_BP_0
154#define USB_BP_1 PLA_BP_1
155#define USB_BP_2 PLA_BP_2
156#define USB_BP_3 PLA_BP_3
157#define USB_BP_4 PLA_BP_4
158#define USB_BP_5 PLA_BP_5
159#define USB_BP_6 PLA_BP_6
160#define USB_BP_7 PLA_BP_7
161#define USB_BP_EN PLA_BP_EN /* RTL8153A */
162#define USB_BP_8 0xfc38 /* RTL8153B */
hayeswang65b82d62017-06-15 14:44:03 +0800163#define USB_BP_9 0xfc3a
164#define USB_BP_10 0xfc3c
165#define USB_BP_11 0xfc3e
166#define USB_BP_12 0xfc40
167#define USB_BP_13 0xfc42
168#define USB_BP_14 0xfc44
169#define USB_BP_15 0xfc46
170#define USB_BP2_EN 0xfc48
hayeswangac718b62013-05-02 16:01:25 +0000171
172/* OCP Registers */
173#define OCP_ALDPS_CONFIG 0x2010
174#define OCP_EEE_CONFIG1 0x2080
175#define OCP_EEE_CONFIG2 0x2092
176#define OCP_EEE_CONFIG3 0x2094
hayeswangac244d32014-01-02 11:22:40 +0800177#define OCP_BASE_MII 0xa400
hayeswangac718b62013-05-02 16:01:25 +0000178#define OCP_EEE_AR 0xa41a
179#define OCP_EEE_DATA 0xa41c
hayeswang43779f82014-01-02 11:25:10 +0800180#define OCP_PHY_STATUS 0xa420
hayeswang65b82d62017-06-15 14:44:03 +0800181#define OCP_NCTL_CFG 0xa42c
hayeswang43779f82014-01-02 11:25:10 +0800182#define OCP_POWER_CFG 0xa430
183#define OCP_EEE_CFG 0xa432
184#define OCP_SRAM_ADDR 0xa436
185#define OCP_SRAM_DATA 0xa438
186#define OCP_DOWN_SPEED 0xa442
hayeswangdf35d282014-09-25 20:54:02 +0800187#define OCP_EEE_ABLE 0xa5c4
hayeswang4c4a6b12014-09-25 20:54:00 +0800188#define OCP_EEE_ADV 0xa5d0
hayeswangdf35d282014-09-25 20:54:02 +0800189#define OCP_EEE_LPABLE 0xa5d2
hayeswang2dd49e02015-09-07 11:57:44 +0800190#define OCP_PHY_STATE 0xa708 /* nway state for 8153 */
hayeswang65b82d62017-06-15 14:44:03 +0800191#define OCP_PHY_PATCH_STAT 0xb800
192#define OCP_PHY_PATCH_CMD 0xb820
Hayes Wangaf142882019-10-21 11:41:13 +0800193#define OCP_PHY_LOCK 0xb82e
hayeswang65b82d62017-06-15 14:44:03 +0800194#define OCP_ADC_IOFFSET 0xbcfc
hayeswang43779f82014-01-02 11:25:10 +0800195#define OCP_ADC_CFG 0xbc06
hayeswang65b82d62017-06-15 14:44:03 +0800196#define OCP_SYSCLK_CFG 0xc416
hayeswang43779f82014-01-02 11:25:10 +0800197
198/* SRAM Register */
hayeswang65b82d62017-06-15 14:44:03 +0800199#define SRAM_GREEN_CFG 0x8011
hayeswang43779f82014-01-02 11:25:10 +0800200#define SRAM_LPF_CFG 0x8012
201#define SRAM_10M_AMP1 0x8080
202#define SRAM_10M_AMP2 0x8082
203#define SRAM_IMPEDANCE 0x8084
Hayes Wangaf142882019-10-21 11:41:13 +0800204#define SRAM_PHY_LOCK 0xb82e
hayeswangac718b62013-05-02 16:01:25 +0000205
206/* PLA_RCR */
207#define RCR_AAP 0x00000001
208#define RCR_APM 0x00000002
209#define RCR_AM 0x00000004
210#define RCR_AB 0x00000008
211#define RCR_ACPT_ALL (RCR_AAP | RCR_APM | RCR_AM | RCR_AB)
212
213/* PLA_RXFIFO_CTRL0 */
214#define RXFIFO_THR1_NORMAL 0x00080002
215#define RXFIFO_THR1_OOB 0x01800003
216
217/* PLA_RXFIFO_CTRL1 */
218#define RXFIFO_THR2_FULL 0x00000060
219#define RXFIFO_THR2_HIGH 0x00000038
220#define RXFIFO_THR2_OOB 0x0000004a
hayeswang43779f82014-01-02 11:25:10 +0800221#define RXFIFO_THR2_NORMAL 0x00a0
hayeswangac718b62013-05-02 16:01:25 +0000222
223/* PLA_RXFIFO_CTRL2 */
224#define RXFIFO_THR3_FULL 0x00000078
225#define RXFIFO_THR3_HIGH 0x00000048
226#define RXFIFO_THR3_OOB 0x0000005a
hayeswang43779f82014-01-02 11:25:10 +0800227#define RXFIFO_THR3_NORMAL 0x0110
hayeswangac718b62013-05-02 16:01:25 +0000228
229/* PLA_TXFIFO_CTRL */
230#define TXFIFO_THR_NORMAL 0x00400008
hayeswang43779f82014-01-02 11:25:10 +0800231#define TXFIFO_THR_NORMAL2 0x01000008
hayeswangac718b62013-05-02 16:01:25 +0000232
hayeswang65bab842015-02-12 16:20:46 +0800233/* PLA_DMY_REG0 */
234#define ECM_ALDPS 0x0002
235
hayeswangac718b62013-05-02 16:01:25 +0000236/* PLA_FMC */
237#define FMC_FCR_MCU_EN 0x0001
238
239/* PLA_EEEP_CR */
240#define EEEP_CR_EEEP_TX 0x0002
241
hayeswang43779f82014-01-02 11:25:10 +0800242/* PLA_WDT6_CTRL */
243#define WDT6_SET_MODE 0x0010
244
hayeswangac718b62013-05-02 16:01:25 +0000245/* PLA_TCR0 */
246#define TCR0_TX_EMPTY 0x0800
247#define TCR0_AUTO_FIFO 0x0080
248
249/* PLA_TCR1 */
250#define VERSION_MASK 0x7cf0
251
hayeswang69b4b7a2014-07-10 10:58:54 +0800252/* PLA_MTPS */
253#define MTPS_JUMBO (12 * 1024 / 64)
254#define MTPS_DEFAULT (6 * 1024 / 64)
255
hayeswang4f1d4d52014-03-11 16:24:19 +0800256/* PLA_RSTTALLY */
257#define TALLY_RESET 0x0001
258
hayeswangac718b62013-05-02 16:01:25 +0000259/* PLA_CR */
260#define CR_RST 0x10
261#define CR_RE 0x08
262#define CR_TE 0x04
263
264/* PLA_CRWECR */
265#define CRWECR_NORAML 0x00
266#define CRWECR_CONFIG 0xc0
267
268/* PLA_OOB_CTRL */
269#define NOW_IS_OOB 0x80
270#define TXFIFO_EMPTY 0x20
271#define RXFIFO_EMPTY 0x10
272#define LINK_LIST_READY 0x02
273#define DIS_MCU_CLROOB 0x01
274#define FIFO_EMPTY (TXFIFO_EMPTY | RXFIFO_EMPTY)
275
276/* PLA_MISC_1 */
277#define RXDY_GATED_EN 0x0008
278
279/* PLA_SFF_STS_7 */
280#define RE_INIT_LL 0x8000
281#define MCU_BORW_EN 0x4000
282
283/* PLA_CPCR */
284#define CPCR_RX_VLAN 0x0040
285
286/* PLA_CFG_WOL */
287#define MAGIC_EN 0x0001
288
hayeswang43779f82014-01-02 11:25:10 +0800289/* PLA_TEREDO_CFG */
290#define TEREDO_SEL 0x8000
291#define TEREDO_WAKE_MASK 0x7f00
292#define TEREDO_RS_EVENT_MASK 0x00fe
293#define OOB_TEREDO_EN 0x0001
294
Kevin Lo59c0b472019-08-01 11:29:38 +0800295/* PLA_BDC_CR */
hayeswangac718b62013-05-02 16:01:25 +0000296#define ALDPS_PROXY_MODE 0x0001
297
hayeswang65b82d62017-06-15 14:44:03 +0800298/* PLA_EFUSE_CMD */
299#define EFUSE_READ_CMD BIT(15)
300#define EFUSE_DATA_BIT16 BIT(7)
301
hayeswang21ff2e82014-02-18 21:49:06 +0800302/* PLA_CONFIG34 */
303#define LINK_ON_WAKE_EN 0x0010
304#define LINK_OFF_WAKE_EN 0x0008
305
Hayes Wang19813162020-01-22 16:02:12 +0800306/* PLA_CONFIG6 */
307#define LANWAKE_CLR_EN BIT(0)
308
hayeswangac718b62013-05-02 16:01:25 +0000309/* PLA_CONFIG5 */
hayeswang21ff2e82014-02-18 21:49:06 +0800310#define BWF_EN 0x0040
311#define MWF_EN 0x0020
312#define UWF_EN 0x0010
hayeswangac718b62013-05-02 16:01:25 +0000313#define LAN_WAKE_EN 0x0002
314
315/* PLA_LED_FEATURE */
316#define LED_MODE_MASK 0x0700
317
318/* PLA_PHY_PWR */
319#define TX_10M_IDLE_EN 0x0080
320#define PFM_PWM_SWITCH 0x0040
Hayes Wangd7f1b592020-01-22 16:02:10 +0800321#define TEST_IO_OFF BIT(4)
hayeswangac718b62013-05-02 16:01:25 +0000322
323/* PLA_MAC_PWR_CTRL */
324#define D3_CLK_GATED_EN 0x00004000
325#define MCU_CLK_RATIO 0x07010f07
326#define MCU_CLK_RATIO_MASK 0x0f0f0f0f
hayeswang43779f82014-01-02 11:25:10 +0800327#define ALDPS_SPDWN_RATIO 0x0f87
328
329/* PLA_MAC_PWR_CTRL2 */
330#define EEE_SPDWN_RATIO 0x8007
hayeswang65b82d62017-06-15 14:44:03 +0800331#define MAC_CLK_SPDWN_EN BIT(15)
hayeswang43779f82014-01-02 11:25:10 +0800332
333/* PLA_MAC_PWR_CTRL3 */
Hayes Wang08997b52020-01-22 16:02:09 +0800334#define PLA_MCU_SPDWN_EN BIT(14)
hayeswang43779f82014-01-02 11:25:10 +0800335#define PKT_AVAIL_SPDWN_EN 0x0100
336#define SUSPEND_SPDWN_EN 0x0004
337#define U1U2_SPDWN_EN 0x0002
338#define L1_SPDWN_EN 0x0001
339
340/* PLA_MAC_PWR_CTRL4 */
341#define PWRSAVE_SPDWN_EN 0x1000
342#define RXDV_SPDWN_EN 0x0800
343#define TX10MIDLE_EN 0x0100
344#define TP100_SPDWN_EN 0x0020
345#define TP500_SPDWN_EN 0x0010
346#define TP1000_SPDWN_EN 0x0008
347#define EEE_SPDWN_EN 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000348
349/* PLA_GPHY_INTR_IMR */
350#define GPHY_STS_MSK 0x0001
351#define SPEED_DOWN_MSK 0x0002
352#define SPDWN_RXDV_MSK 0x0004
353#define SPDWN_LINKCHG_MSK 0x0008
354
355/* PLA_PHYAR */
356#define PHYAR_FLAG 0x80000000
357
358/* PLA_EEE_CR */
359#define EEE_RX_EN 0x0001
360#define EEE_TX_EN 0x0002
361
hayeswang43779f82014-01-02 11:25:10 +0800362/* PLA_BOOT_CTRL */
363#define AUTOLOAD_DONE 0x0002
364
Hayes Wang19813162020-01-22 16:02:12 +0800365/* PLA_LWAKE_CTRL_REG */
366#define LANWAKE_PIN BIT(7)
367
Hayes Wang13e04fbf2019-07-01 15:53:19 +0800368/* PLA_SUSPEND_FLAG */
369#define LINK_CHG_EVENT BIT(0)
370
371/* PLA_INDICATE_FALG */
372#define UPCOMING_RUNTIME_D3 BIT(0)
373
Hayes Wang9370f2d2019-10-16 11:02:42 +0800374/* PLA_MACDBG_PRE and PLA_MACDBG_POST */
375#define DEBUG_OE BIT(0)
376#define DEBUG_LTSSM 0x0082
377
Hayes Wang13e04fbf2019-07-01 15:53:19 +0800378/* PLA_EXTRA_STATUS */
Hayes Wanga3914272020-01-22 16:02:05 +0800379#define CUR_LINK_OK BIT(15)
Hayes Wang9370f2d2019-10-16 11:02:42 +0800380#define U3P3_CHECK_EN BIT(7) /* RTL_VER_05 only */
Hayes Wang13e04fbf2019-07-01 15:53:19 +0800381#define LINK_CHANGE_FLAG BIT(8)
Hayes Wanga3914272020-01-22 16:02:05 +0800382#define POLL_LINK_CHG BIT(0)
Hayes Wang13e04fbf2019-07-01 15:53:19 +0800383
hayeswang65bab842015-02-12 16:20:46 +0800384/* USB_USB2PHY */
385#define USB2PHY_SUSPEND 0x0001
386#define USB2PHY_L1 0x0002
387
Hayes Wangaa475d92020-01-22 16:02:13 +0800388/* USB_SSPHYLINK1 */
389#define DELAY_PHY_PWR_CHG BIT(1)
390
hayeswang65bab842015-02-12 16:20:46 +0800391/* USB_SSPHYLINK2 */
392#define pwd_dn_scale_mask 0x3ffe
393#define pwd_dn_scale(x) ((x) << 1)
394
395/* USB_CSR_DUMMY1 */
396#define DYNAMIC_BURST 0x0001
397
398/* USB_CSR_DUMMY2 */
399#define EP4_FULL_FC 0x0001
400
hayeswangac718b62013-05-02 16:01:25 +0000401/* USB_DEV_STAT */
402#define STAT_SPEED_MASK 0x0006
403#define STAT_SPEED_HIGH 0x0000
hayeswanga3cc4652014-07-24 16:37:43 +0800404#define STAT_SPEED_FULL 0x0002
hayeswangac718b62013-05-02 16:01:25 +0000405
Hayes Wang9370f2d2019-10-16 11:02:42 +0800406/* USB_FW_FIX_EN0 */
407#define FW_FIX_SUSPEND BIT(14)
408
409/* USB_FW_FIX_EN1 */
410#define FW_IP_RESET_EN BIT(9)
411
hayeswang65b82d62017-06-15 14:44:03 +0800412/* USB_LPM_CONFIG */
413#define LPM_U1U2_EN BIT(0)
414
hayeswangac718b62013-05-02 16:01:25 +0000415/* USB_TX_AGG */
416#define TX_AGG_MAX_THRESHOLD 0x03
417
418/* USB_RX_BUF_TH */
hayeswang43779f82014-01-02 11:25:10 +0800419#define RX_THR_SUPPER 0x0c350180
hayeswang8e1f51b2014-01-02 11:22:41 +0800420#define RX_THR_HIGH 0x7a120180
hayeswang43779f82014-01-02 11:25:10 +0800421#define RX_THR_SLOW 0xffff0180
hayeswang65b82d62017-06-15 14:44:03 +0800422#define RX_THR_B 0x00010001
hayeswangac718b62013-05-02 16:01:25 +0000423
424/* USB_TX_DMA */
425#define TEST_MODE_DISABLE 0x00000001
426#define TX_SIZE_ADJUST1 0x00000100
427
hayeswang93fe9b12016-06-16 10:55:18 +0800428/* USB_BMU_RESET */
429#define BMU_RESET_EP_IN 0x01
430#define BMU_RESET_EP_OUT 0x02
431
hayeswang65b82d62017-06-15 14:44:03 +0800432/* USB_UPT_RXDMA_OWN */
433#define OWN_UPDATE BIT(0)
434#define OWN_CLEAR BIT(1)
435
Hayes Wang9370f2d2019-10-16 11:02:42 +0800436/* USB_FW_TASK */
437#define FC_PATCH_TASK BIT(1)
438
hayeswangac718b62013-05-02 16:01:25 +0000439/* USB_UPS_CTRL */
440#define POWER_CUT 0x0100
441
442/* USB_PM_CTRL_STATUS */
hayeswang8e1f51b2014-01-02 11:22:41 +0800443#define RESUME_INDICATE 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000444
Hayes Wang9370f2d2019-10-16 11:02:42 +0800445/* USB_CSTMR */
446#define FORCE_SUPER BIT(0)
447
448/* USB_FW_CTRL */
449#define FLOW_CTRL_PATCH_OPT BIT(1)
450
451/* USB_FC_TIMER */
452#define CTRL_TIMER_EN BIT(15)
453
hayeswangac718b62013-05-02 16:01:25 +0000454/* USB_USB_CTRL */
455#define RX_AGG_DISABLE 0x0010
hayeswange90fba82015-07-31 11:23:39 +0800456#define RX_ZERO_EN 0x0080
hayeswangac718b62013-05-02 16:01:25 +0000457
hayeswang43779f82014-01-02 11:25:10 +0800458/* USB_U2P3_CTRL */
459#define U2P3_ENABLE 0x0001
460
461/* USB_POWER_CUT */
462#define PWR_EN 0x0001
463#define PHASE2_EN 0x0008
hayeswang65b82d62017-06-15 14:44:03 +0800464#define UPS_EN BIT(4)
465#define USP_PREWAKE BIT(5)
hayeswang43779f82014-01-02 11:25:10 +0800466
467/* USB_MISC_0 */
468#define PCUT_STATUS 0x0001
469
hayeswang464ec102015-02-12 14:33:46 +0800470/* USB_RX_EARLY_TIMEOUT */
471#define COALESCE_SUPER 85000U
472#define COALESCE_HIGH 250000U
473#define COALESCE_SLOW 524280U
hayeswang43779f82014-01-02 11:25:10 +0800474
Hayes Wang9370f2d2019-10-16 11:02:42 +0800475/* USB_WDT1_CTRL */
476#define WTD1_EN BIT(0)
477
hayeswang43779f82014-01-02 11:25:10 +0800478/* USB_WDT11_CTRL */
479#define TIMER11_EN 0x0001
480
481/* USB_LPM_CTRL */
hayeswang65bab842015-02-12 16:20:46 +0800482/* bit 4 ~ 5: fifo empty boundary */
483#define FIFO_EMPTY_1FB 0x30 /* 0x1fb * 64 = 32448 bytes */
484/* bit 2 ~ 3: LMP timer */
hayeswang43779f82014-01-02 11:25:10 +0800485#define LPM_TIMER_MASK 0x0c
486#define LPM_TIMER_500MS 0x04 /* 500 ms */
487#define LPM_TIMER_500US 0x0c /* 500 us */
hayeswang65bab842015-02-12 16:20:46 +0800488#define ROK_EXIT_LPM 0x02
hayeswang43779f82014-01-02 11:25:10 +0800489
490/* USB_AFE_CTRL2 */
491#define SEN_VAL_MASK 0xf800
492#define SEN_VAL_NORMAL 0xa000
493#define SEL_RXIDLE 0x0100
494
hayeswang65b82d62017-06-15 14:44:03 +0800495/* USB_UPS_CFG */
496#define SAW_CNT_1MS_MASK 0x0fff
497
498/* USB_UPS_FLAGS */
499#define UPS_FLAGS_R_TUNE BIT(0)
500#define UPS_FLAGS_EN_10M_CKDIV BIT(1)
501#define UPS_FLAGS_250M_CKDIV BIT(2)
502#define UPS_FLAGS_EN_ALDPS BIT(3)
503#define UPS_FLAGS_CTAP_SHORT_DIS BIT(4)
hayeswang65b82d62017-06-15 14:44:03 +0800504#define ups_flags_speed(x) ((x) << 16)
505#define UPS_FLAGS_EN_EEE BIT(20)
506#define UPS_FLAGS_EN_500M_EEE BIT(21)
507#define UPS_FLAGS_EN_EEE_CKDIV BIT(22)
Hayes Wang0e5b36b2019-09-05 10:46:20 +0800508#define UPS_FLAGS_EEE_PLLOFF_100 BIT(23)
hayeswang65b82d62017-06-15 14:44:03 +0800509#define UPS_FLAGS_EEE_PLLOFF_GIGA BIT(24)
510#define UPS_FLAGS_EEE_CMOD_LV_EN BIT(25)
511#define UPS_FLAGS_EN_GREEN BIT(26)
512#define UPS_FLAGS_EN_FLOW_CTR BIT(27)
513
514enum spd_duplex {
Hayes Wang0e5b36b2019-09-05 10:46:20 +0800515 NWAY_10M_HALF,
hayeswang65b82d62017-06-15 14:44:03 +0800516 NWAY_10M_FULL,
517 NWAY_100M_HALF,
518 NWAY_100M_FULL,
519 NWAY_1000M_FULL,
520 FORCE_10M_HALF,
521 FORCE_10M_FULL,
522 FORCE_100M_HALF,
523 FORCE_100M_FULL,
524};
525
hayeswangac718b62013-05-02 16:01:25 +0000526/* OCP_ALDPS_CONFIG */
527#define ENPWRSAVE 0x8000
528#define ENPDNPS 0x0200
529#define LINKENA 0x0100
530#define DIS_SDSAVE 0x0010
531
hayeswang43779f82014-01-02 11:25:10 +0800532/* OCP_PHY_STATUS */
533#define PHY_STAT_MASK 0x0007
hayeswangc564b872017-06-09 17:11:38 +0800534#define PHY_STAT_EXT_INIT 2
hayeswang43779f82014-01-02 11:25:10 +0800535#define PHY_STAT_LAN_ON 3
536#define PHY_STAT_PWRDN 5
537
hayeswang65b82d62017-06-15 14:44:03 +0800538/* OCP_NCTL_CFG */
539#define PGA_RETURN_EN BIT(1)
540
hayeswang43779f82014-01-02 11:25:10 +0800541/* OCP_POWER_CFG */
542#define EEE_CLKDIV_EN 0x8000
543#define EN_ALDPS 0x0004
544#define EN_10M_PLLOFF 0x0001
545
hayeswangac718b62013-05-02 16:01:25 +0000546/* OCP_EEE_CONFIG1 */
547#define RG_TXLPI_MSK_HFDUP 0x8000
548#define RG_MATCLR_EN 0x4000
549#define EEE_10_CAP 0x2000
550#define EEE_NWAY_EN 0x1000
551#define TX_QUIET_EN 0x0200
552#define RX_QUIET_EN 0x0100
hayeswangd24f6132014-09-25 20:54:01 +0800553#define sd_rise_time_mask 0x0070
hayeswang4c4a6b12014-09-25 20:54:00 +0800554#define sd_rise_time(x) (min(x, 7) << 4) /* bit 4 ~ 6 */
hayeswangac718b62013-05-02 16:01:25 +0000555#define RG_RXLPI_MSK_HFDUP 0x0008
556#define SDFALLTIME 0x0007 /* bit 0 ~ 2 */
557
558/* OCP_EEE_CONFIG2 */
559#define RG_LPIHYS_NUM 0x7000 /* bit 12 ~ 15 */
560#define RG_DACQUIET_EN 0x0400
561#define RG_LDVQUIET_EN 0x0200
562#define RG_CKRSEL 0x0020
563#define RG_EEEPRG_EN 0x0010
564
565/* OCP_EEE_CONFIG3 */
hayeswangd24f6132014-09-25 20:54:01 +0800566#define fast_snr_mask 0xff80
hayeswang4c4a6b12014-09-25 20:54:00 +0800567#define fast_snr(x) (min(x, 0x1ff) << 7) /* bit 7 ~ 15 */
hayeswangac718b62013-05-02 16:01:25 +0000568#define RG_LFS_SEL 0x0060 /* bit 6 ~ 5 */
569#define MSK_PH 0x0006 /* bit 0 ~ 3 */
570
571/* OCP_EEE_AR */
572/* bit[15:14] function */
573#define FUN_ADDR 0x0000
574#define FUN_DATA 0x4000
575/* bit[4:0] device addr */
hayeswangac718b62013-05-02 16:01:25 +0000576
hayeswang43779f82014-01-02 11:25:10 +0800577/* OCP_EEE_CFG */
578#define CTAP_SHORT_EN 0x0040
579#define EEE10_EN 0x0010
580
581/* OCP_DOWN_SPEED */
hayeswang65b82d62017-06-15 14:44:03 +0800582#define EN_EEE_CMODE BIT(14)
583#define EN_EEE_1000 BIT(13)
584#define EN_EEE_100 BIT(12)
585#define EN_10M_CLKDIV BIT(11)
hayeswang43779f82014-01-02 11:25:10 +0800586#define EN_10M_BGOFF 0x0080
587
hayeswang2dd49e02015-09-07 11:57:44 +0800588/* OCP_PHY_STATE */
589#define TXDIS_STATE 0x01
590#define ABD_STATE 0x02
591
hayeswang65b82d62017-06-15 14:44:03 +0800592/* OCP_PHY_PATCH_STAT */
593#define PATCH_READY BIT(6)
594
595/* OCP_PHY_PATCH_CMD */
596#define PATCH_REQUEST BIT(4)
597
Hayes Wangaf142882019-10-21 11:41:13 +0800598/* OCP_PHY_LOCK */
599#define PATCH_LOCK BIT(0)
600
hayeswang43779f82014-01-02 11:25:10 +0800601/* OCP_ADC_CFG */
602#define CKADSEL_L 0x0100
603#define ADC_EN 0x0080
604#define EN_EMI_L 0x0040
605
hayeswang65b82d62017-06-15 14:44:03 +0800606/* OCP_SYSCLK_CFG */
607#define clk_div_expo(x) (min(x, 5) << 8)
608
609/* SRAM_GREEN_CFG */
610#define GREEN_ETH_EN BIT(15)
611#define R_TUNE_EN BIT(11)
612
hayeswang43779f82014-01-02 11:25:10 +0800613/* SRAM_LPF_CFG */
614#define LPF_AUTO_TUNE 0x8000
615
616/* SRAM_10M_AMP1 */
617#define GDAC_IB_UPALL 0x0008
618
619/* SRAM_10M_AMP2 */
620#define AMP_DN 0x0200
621
622/* SRAM_IMPEDANCE */
623#define RX_DRIVING_MASK 0x6000
624
Hayes Wangaf142882019-10-21 11:41:13 +0800625/* SRAM_PHY_LOCK */
626#define PHY_PATCH_LOCK 0x0001
627
Mario Limonciello34ee32c2016-07-11 19:58:04 -0500628/* MAC PASSTHRU */
629#define AD_MASK 0xfee0
Mario Limonciello9c273692018-12-11 08:16:14 -0600630#define BND_MASK 0x0004
David Chen8e29d232019-02-16 17:16:42 +0800631#define BD_MASK 0x0001
Mario Limonciello34ee32c2016-07-11 19:58:04 -0500632#define EFUSE 0xcfdb
633#define PASS_THRU_MASK 0x1
634
Hayes Wang9370f2d2019-10-16 11:02:42 +0800635#define BP4_SUPER_ONLY 0x1578 /* RTL_VER_04 only */
636
hayeswangac718b62013-05-02 16:01:25 +0000637enum rtl_register_content {
hayeswang43779f82014-01-02 11:25:10 +0800638 _1000bps = 0x10,
hayeswangac718b62013-05-02 16:01:25 +0000639 _100bps = 0x08,
640 _10bps = 0x04,
641 LINK_STATUS = 0x02,
642 FULL_DUP = 0x01,
643};
644
hayeswang1764bcd2014-08-28 10:24:18 +0800645#define RTL8152_MAX_TX 4
hayeswangebc2ec482013-08-14 20:54:38 +0800646#define RTL8152_MAX_RX 10
hayeswang40a82912013-08-14 20:54:40 +0800647#define INTBUFSIZE 2
hayeswang8e1f51b2014-01-02 11:22:41 +0800648#define TX_ALIGN 4
649#define RX_ALIGN 8
hayeswang40a82912013-08-14 20:54:40 +0800650
Hayes Wange4a50172019-08-13 11:42:09 +0800651#define RTL8152_RX_MAX_PENDING 4096
Hayes Wang47922fc2019-08-13 11:42:08 +0800652#define RTL8152_RXFG_HEADSZ 256
653
hayeswang40a82912013-08-14 20:54:40 +0800654#define INTR_LINK 0x0004
hayeswangebc2ec482013-08-14 20:54:38 +0800655
hayeswangac718b62013-05-02 16:01:25 +0000656#define RTL8152_REQT_READ 0xc0
657#define RTL8152_REQT_WRITE 0x40
658#define RTL8152_REQ_GET_REGS 0x05
659#define RTL8152_REQ_SET_REGS 0x05
660
661#define BYTE_EN_DWORD 0xff
662#define BYTE_EN_WORD 0x33
663#define BYTE_EN_BYTE 0x11
664#define BYTE_EN_SIX_BYTES 0x3f
665#define BYTE_EN_START_MASK 0x0f
666#define BYTE_EN_END_MASK 0xf0
667
hayeswang69b4b7a2014-07-10 10:58:54 +0800668#define RTL8153_MAX_PACKET 9216 /* 9K */
hayeswangb65c0c92017-06-21 11:25:18 +0800669#define RTL8153_MAX_MTU (RTL8153_MAX_PACKET - VLAN_ETH_HLEN - \
670 ETH_FCS_LEN)
671#define RTL8152_RMS (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
hayeswang69b4b7a2014-07-10 10:58:54 +0800672#define RTL8153_RMS RTL8153_MAX_PACKET
hayeswangb8125402014-07-03 11:55:48 +0800673#define RTL8152_TX_TIMEOUT (5 * HZ)
hayeswangd823ab62015-01-12 12:06:23 +0800674#define RTL8152_NAPI_WEIGHT 64
hayeswangb65c0c92017-06-21 11:25:18 +0800675#define rx_reserved_size(x) ((x) + VLAN_ETH_HLEN + ETH_FCS_LEN + \
hayeswangb20cb602017-03-20 16:13:45 +0800676 sizeof(struct rx_desc) + RX_ALIGN)
hayeswangac718b62013-05-02 16:01:25 +0000677
678/* rtl8152 flags */
679enum rtl8152_flags {
680 RTL8152_UNPLUG = 0,
hayeswangac718b62013-05-02 16:01:25 +0000681 RTL8152_SET_RX_MODE,
hayeswang40a82912013-08-14 20:54:40 +0800682 WORK_ENABLE,
683 RTL8152_LINK_CHG,
hayeswang9a4be1b2014-02-18 21:49:07 +0800684 SELECTIVE_SUSPEND,
hayeswangaa66a5f2014-02-18 21:49:04 +0800685 PHY_RESET,
Hayes Wangd2187f82019-08-19 14:40:36 +0800686 SCHEDULE_TASKLET,
hayeswang65b82d62017-06-15 14:44:03 +0800687 GREEN_ETHERNET,
Kai-Heng Feng0b165512018-01-16 16:46:27 +0800688 DELL_TB_RX_AGG_BUG,
Kai-Heng Feng96477222019-11-05 19:24:52 +0800689 LENOVO_MACPASSTHRU,
hayeswangac718b62013-05-02 16:01:25 +0000690};
691
692/* Define these values to match your device */
693#define VENDOR_ID_REALTEK 0x0bda
René Rebed5b07cc2017-03-28 07:56:51 +0200694#define VENDOR_ID_MICROSOFT 0x045e
hayeswang43779f82014-01-02 11:25:10 +0800695#define VENDOR_ID_SAMSUNG 0x04e8
Christian Hesse347eec32015-03-31 14:10:07 +0200696#define VENDOR_ID_LENOVO 0x17ef
Grant Grundler90841042017-09-28 11:35:00 -0700697#define VENDOR_ID_LINKSYS 0x13b1
Zheng Liud065c3c12015-07-07 13:54:12 -0700698#define VENDOR_ID_NVIDIA 0x0955
Ran Wang9d11b062017-10-23 18:10:23 +0800699#define VENDOR_ID_TPLINK 0x2357
hayeswangac718b62013-05-02 16:01:25 +0000700
Kai-Heng Fengb4b771f2020-02-04 13:33:13 +0800701#define DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2 0x3082
702#define DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2 0xa387
703
hayeswangac718b62013-05-02 16:01:25 +0000704#define MCU_TYPE_PLA 0x0100
705#define MCU_TYPE_USB 0x0000
706
hayeswang4f1d4d52014-03-11 16:24:19 +0800707struct tally_counter {
708 __le64 tx_packets;
709 __le64 rx_packets;
710 __le64 tx_errors;
711 __le32 rx_errors;
712 __le16 rx_missed;
713 __le16 align_errors;
714 __le32 tx_one_collision;
715 __le32 tx_multi_collision;
716 __le64 rx_unicast;
717 __le64 rx_broadcast;
718 __le32 rx_multicast;
719 __le16 tx_aborted;
hayeswangf37119c2014-10-28 14:05:51 +0800720 __le16 tx_underrun;
hayeswang4f1d4d52014-03-11 16:24:19 +0800721};
722
hayeswangac718b62013-05-02 16:01:25 +0000723struct rx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800724 __le32 opts1;
hayeswangac718b62013-05-02 16:01:25 +0000725#define RX_LEN_MASK 0x7fff
hayeswang565cab02014-03-07 11:04:38 +0800726
hayeswang500b6d72013-11-20 17:30:57 +0800727 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800728#define RD_UDP_CS BIT(23)
729#define RD_TCP_CS BIT(22)
730#define RD_IPV6_CS BIT(20)
731#define RD_IPV4_CS BIT(19)
hayeswang565cab02014-03-07 11:04:38 +0800732
hayeswang500b6d72013-11-20 17:30:57 +0800733 __le32 opts3;
hayeswangf5aaaa62015-02-06 11:30:51 +0800734#define IPF BIT(23) /* IP checksum fail */
735#define UDPF BIT(22) /* UDP checksum fail */
736#define TCPF BIT(21) /* TCP checksum fail */
737#define RX_VLAN_TAG BIT(16)
hayeswang565cab02014-03-07 11:04:38 +0800738
hayeswang500b6d72013-11-20 17:30:57 +0800739 __le32 opts4;
740 __le32 opts5;
741 __le32 opts6;
hayeswangac718b62013-05-02 16:01:25 +0000742};
743
744struct tx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800745 __le32 opts1;
hayeswangf5aaaa62015-02-06 11:30:51 +0800746#define TX_FS BIT(31) /* First segment of a packet */
747#define TX_LS BIT(30) /* Final segment of a packet */
748#define GTSENDV4 BIT(28)
749#define GTSENDV6 BIT(27)
hayeswang60c89072014-03-07 11:04:39 +0800750#define GTTCPHO_SHIFT 18
hayeswang6128d1bb2014-03-07 11:04:40 +0800751#define GTTCPHO_MAX 0x7fU
hayeswang60c89072014-03-07 11:04:39 +0800752#define TX_LEN_MAX 0x3ffffU
hayeswang5bd23882013-08-14 20:54:39 +0800753
hayeswang500b6d72013-11-20 17:30:57 +0800754 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800755#define UDP_CS BIT(31) /* Calculate UDP/IP checksum */
756#define TCP_CS BIT(30) /* Calculate TCP/IP checksum */
757#define IPV4_CS BIT(29) /* Calculate IPv4 checksum */
758#define IPV6_CS BIT(28) /* Calculate IPv6 checksum */
hayeswang60c89072014-03-07 11:04:39 +0800759#define MSS_SHIFT 17
760#define MSS_MAX 0x7ffU
761#define TCPHO_SHIFT 17
hayeswang6128d1bb2014-03-07 11:04:40 +0800762#define TCPHO_MAX 0x7ffU
hayeswangf5aaaa62015-02-06 11:30:51 +0800763#define TX_VLAN_TAG BIT(16)
hayeswangac718b62013-05-02 16:01:25 +0000764};
765
hayeswangdff4e8a2013-08-16 16:09:33 +0800766struct r8152;
767
hayeswangebc2ec482013-08-14 20:54:38 +0800768struct rx_agg {
Hayes Wang252df8b2019-08-13 11:42:06 +0800769 struct list_head list, info_list;
hayeswangebc2ec482013-08-14 20:54:38 +0800770 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800771 struct r8152 *context;
Hayes Wangd55d7082019-08-13 11:42:07 +0800772 struct page *page;
hayeswangebc2ec482013-08-14 20:54:38 +0800773 void *buffer;
hayeswangebc2ec482013-08-14 20:54:38 +0800774};
775
776struct tx_agg {
777 struct list_head list;
778 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800779 struct r8152 *context;
hayeswangebc2ec482013-08-14 20:54:38 +0800780 void *buffer;
781 void *head;
782 u32 skb_num;
783 u32 skb_len;
784};
785
hayeswangac718b62013-05-02 16:01:25 +0000786struct r8152 {
787 unsigned long flags;
788 struct usb_device *udev;
hayeswangd823ab62015-01-12 12:06:23 +0800789 struct napi_struct napi;
hayeswang40a82912013-08-14 20:54:40 +0800790 struct usb_interface *intf;
hayeswangac718b62013-05-02 16:01:25 +0000791 struct net_device *netdev;
hayeswang40a82912013-08-14 20:54:40 +0800792 struct urb *intr_urb;
hayeswangebc2ec482013-08-14 20:54:38 +0800793 struct tx_agg tx_info[RTL8152_MAX_TX];
Hayes Wang47922fc2019-08-13 11:42:08 +0800794 struct list_head rx_info, rx_used;
hayeswangebc2ec482013-08-14 20:54:38 +0800795 struct list_head rx_done, tx_free;
hayeswangd823ab62015-01-12 12:06:23 +0800796 struct sk_buff_head tx_queue, rx_queue;
hayeswangebc2ec482013-08-14 20:54:38 +0800797 spinlock_t rx_lock, tx_lock;
hayeswanga028a9e2016-06-13 17:49:36 +0800798 struct delayed_work schedule, hw_phy_work;
hayeswangac718b62013-05-02 16:01:25 +0000799 struct mii_if_info mii;
hayeswangb5403272014-10-09 18:00:26 +0800800 struct mutex control; /* use for hw setting */
hayeswang5ee3c602016-01-07 17:12:17 +0800801#ifdef CONFIG_PM_SLEEP
802 struct notifier_block pm_notifier;
803#endif
Hayes Wangd2187f82019-08-19 14:40:36 +0800804 struct tasklet_struct tx_tl;
hayeswangc81229c2014-01-02 11:22:42 +0800805
806 struct rtl_ops {
Prashant Malani151ea092019-10-02 14:09:33 -0700807 void (*init)(struct r8152 *tp);
808 int (*enable)(struct r8152 *tp);
809 void (*disable)(struct r8152 *tp);
810 void (*up)(struct r8152 *tp);
811 void (*down)(struct r8152 *tp);
812 void (*unload)(struct r8152 *tp);
813 int (*eee_get)(struct r8152 *tp, struct ethtool_eee *eee);
814 int (*eee_set)(struct r8152 *tp, struct ethtool_eee *eee);
815 bool (*in_nway)(struct r8152 *tp);
816 void (*hw_phy_cfg)(struct r8152 *tp);
hayeswang2609af12016-07-05 16:11:46 +0800817 void (*autosuspend_en)(struct r8152 *tp, bool enable);
hayeswangc81229c2014-01-02 11:22:42 +0800818 } rtl_ops;
819
Hayes Wang0e5b36b2019-09-05 10:46:20 +0800820 struct ups_info {
821 u32 _10m_ckdiv:1;
822 u32 _250m_ckdiv:1;
823 u32 aldps:1;
824 u32 lite_mode:2;
825 u32 speed_duplex:4;
826 u32 eee:1;
827 u32 eee_lite:1;
828 u32 eee_ckdiv:1;
829 u32 eee_plloff_100:1;
830 u32 eee_plloff_giga:1;
831 u32 eee_cmod_lv:1;
832 u32 green:1;
833 u32 flow_control:1;
834 u32 ctap_short_off:1;
835 } ups_info;
836
Hayes Wang9370f2d2019-10-16 11:02:42 +0800837#define RTL_VER_SIZE 32
838
839 struct rtl_fw {
840 const char *fw_name;
841 const struct firmware *fw;
842
843 char version[RTL_VER_SIZE];
844 int (*pre_fw)(struct r8152 *tp);
845 int (*post_fw)(struct r8152 *tp);
846
847 bool retry;
848 } rtl_fw;
849
Hayes Wang252df8b2019-08-13 11:42:06 +0800850 atomic_t rx_count;
851
Hayes Wangf4a93be2019-08-23 15:33:40 +0800852 bool eee_en;
hayeswang40a82912013-08-14 20:54:40 +0800853 int intr_interval;
hayeswang21ff2e82014-02-18 21:49:06 +0800854 u32 saved_wolopts;
hayeswangac718b62013-05-02 16:01:25 +0000855 u32 msg_enable;
hayeswangdd1b1192013-11-20 17:30:56 +0800856 u32 tx_qlen;
hayeswang464ec102015-02-12 14:33:46 +0800857 u32 coalesce;
Hayes Wang771efed2019-09-02 19:52:28 +0800858 u32 advertising;
Hayes Wangec5791c2019-08-13 11:42:05 +0800859 u32 rx_buf_sz;
Hayes Wange4a50172019-08-13 11:42:09 +0800860 u32 rx_copybreak;
861 u32 rx_pending;
862
hayeswangac718b62013-05-02 16:01:25 +0000863 u16 ocp_base;
hayeswangaa7e26b2016-06-13 17:49:38 +0800864 u16 speed;
Hayes Wangf4a93be2019-08-23 15:33:40 +0800865 u16 eee_adv;
hayeswang40a82912013-08-14 20:54:40 +0800866 u8 *intr_buff;
hayeswangac718b62013-05-02 16:01:25 +0000867 u8 version;
hayeswangaa7e26b2016-06-13 17:49:38 +0800868 u8 duplex;
869 u8 autoneg;
hayeswangac718b62013-05-02 16:01:25 +0000870};
871
Hayes Wang9370f2d2019-10-16 11:02:42 +0800872/**
873 * struct fw_block - block type and total length
874 * @type: type of the current block, such as RTL_FW_END, RTL_FW_PLA,
875 * RTL_FW_USB and so on.
876 * @length: total length of the current block.
877 */
878struct fw_block {
879 __le32 type;
880 __le32 length;
881} __packed;
882
883/**
884 * struct fw_header - header of the firmware file
885 * @checksum: checksum of sha256 which is calculated from the whole file
886 * except the checksum field of the file. That is, calculate sha256
887 * from the version field to the end of the file.
888 * @version: version of this firmware.
889 * @blocks: the first firmware block of the file
890 */
891struct fw_header {
892 u8 checksum[32];
893 char version[RTL_VER_SIZE];
Gustavo A. R. Silvaee3bc9c2020-03-02 06:23:05 -0600894 struct fw_block blocks[];
Hayes Wang9370f2d2019-10-16 11:02:42 +0800895} __packed;
896
897/**
Hayes Wanga66edaa2019-10-21 11:41:10 +0800898 * struct fw_mac - a firmware block used by RTL_FW_PLA and RTL_FW_USB.
Hayes Wang9370f2d2019-10-16 11:02:42 +0800899 * The layout of the firmware block is:
Hayes Wanga66edaa2019-10-21 11:41:10 +0800900 * <struct fw_mac> + <info> + <firmware data>.
Lee Jones34e653e2020-11-02 11:45:04 +0000901 * @blk_hdr: firmware descriptor (type, length)
Hayes Wang9370f2d2019-10-16 11:02:42 +0800902 * @fw_offset: offset of the firmware binary data. The start address of
Hayes Wanga66edaa2019-10-21 11:41:10 +0800903 * the data would be the address of struct fw_mac + @fw_offset.
Hayes Wang9370f2d2019-10-16 11:02:42 +0800904 * @fw_reg: the register to load the firmware. Depends on chip.
905 * @bp_ba_addr: the register to write break point base address. Depends on
906 * chip.
907 * @bp_ba_value: break point base address. Depends on chip.
908 * @bp_en_addr: the register to write break point enabled mask. Depends
909 * on chip.
910 * @bp_en_value: break point enabled mask. Depends on the firmware.
911 * @bp_start: the start register of break points. Depends on chip.
912 * @bp_num: the break point number which needs to be set for this firmware.
913 * Depends on the firmware.
914 * @bp: break points. Depends on firmware.
Lee Jones34e653e2020-11-02 11:45:04 +0000915 * @reserved: reserved space (unused)
Hayes Wang9370f2d2019-10-16 11:02:42 +0800916 * @fw_ver_reg: the register to store the fw version.
917 * @fw_ver_data: the firmware version of the current type.
918 * @info: additional information for debugging, and is followed by the
919 * binary data of firmware.
920 */
Hayes Wanga66edaa2019-10-21 11:41:10 +0800921struct fw_mac {
Hayes Wang9370f2d2019-10-16 11:02:42 +0800922 struct fw_block blk_hdr;
923 __le16 fw_offset;
924 __le16 fw_reg;
925 __le16 bp_ba_addr;
926 __le16 bp_ba_value;
927 __le16 bp_en_addr;
928 __le16 bp_en_value;
929 __le16 bp_start;
930 __le16 bp_num;
931 __le16 bp[16]; /* any value determined by firmware */
932 __le32 reserved;
933 __le16 fw_ver_reg;
934 u8 fw_ver_data;
Gustavo A. R. Silvaee3bc9c2020-03-02 06:23:05 -0600935 char info[];
Hayes Wang9370f2d2019-10-16 11:02:42 +0800936} __packed;
937
Hayes Wangaf142882019-10-21 11:41:13 +0800938/**
939 * struct fw_phy_patch_key - a firmware block used by RTL_FW_PHY_START.
940 * This is used to set patch key when loading the firmware of PHY.
Lee Jones34e653e2020-11-02 11:45:04 +0000941 * @blk_hdr: firmware descriptor (type, length)
Hayes Wangaf142882019-10-21 11:41:13 +0800942 * @key_reg: the register to write the patch key.
943 * @key_data: patch key.
Lee Jones34e653e2020-11-02 11:45:04 +0000944 * @reserved: reserved space (unused)
Hayes Wangaf142882019-10-21 11:41:13 +0800945 */
946struct fw_phy_patch_key {
947 struct fw_block blk_hdr;
948 __le16 key_reg;
949 __le16 key_data;
950 __le32 reserved;
951} __packed;
952
953/**
954 * struct fw_phy_nc - a firmware block used by RTL_FW_PHY_NC.
955 * The layout of the firmware block is:
956 * <struct fw_phy_nc> + <info> + <firmware data>.
Lee Jones34e653e2020-11-02 11:45:04 +0000957 * @blk_hdr: firmware descriptor (type, length)
Hayes Wangaf142882019-10-21 11:41:13 +0800958 * @fw_offset: offset of the firmware binary data. The start address of
959 * the data would be the address of struct fw_phy_nc + @fw_offset.
960 * @fw_reg: the register to load the firmware. Depends on chip.
961 * @ba_reg: the register to write the base address. Depends on chip.
962 * @ba_data: base address. Depends on chip.
963 * @patch_en_addr: the register of enabling patch mode. Depends on chip.
964 * @patch_en_value: patch mode enabled mask. Depends on the firmware.
965 * @mode_reg: the regitster of switching the mode.
966 * @mod_pre: the mode needing to be set before loading the firmware.
967 * @mod_post: the mode to be set when finishing to load the firmware.
Lee Jones34e653e2020-11-02 11:45:04 +0000968 * @reserved: reserved space (unused)
Hayes Wangaf142882019-10-21 11:41:13 +0800969 * @bp_start: the start register of break points. Depends on chip.
970 * @bp_num: the break point number which needs to be set for this firmware.
971 * Depends on the firmware.
972 * @bp: break points. Depends on firmware.
973 * @info: additional information for debugging, and is followed by the
974 * binary data of firmware.
975 */
976struct fw_phy_nc {
977 struct fw_block blk_hdr;
978 __le16 fw_offset;
979 __le16 fw_reg;
980 __le16 ba_reg;
981 __le16 ba_data;
982 __le16 patch_en_addr;
983 __le16 patch_en_value;
984 __le16 mode_reg;
985 __le16 mode_pre;
986 __le16 mode_post;
987 __le16 reserved;
988 __le16 bp_start;
989 __le16 bp_num;
990 __le16 bp[4];
Gustavo A. R. Silvaee3bc9c2020-03-02 06:23:05 -0600991 char info[];
Hayes Wangaf142882019-10-21 11:41:13 +0800992} __packed;
993
Hayes Wang9370f2d2019-10-16 11:02:42 +0800994enum rtl_fw_type {
995 RTL_FW_END = 0,
996 RTL_FW_PLA,
997 RTL_FW_USB,
Hayes Wangaf142882019-10-21 11:41:13 +0800998 RTL_FW_PHY_START,
999 RTL_FW_PHY_STOP,
1000 RTL_FW_PHY_NC,
Hayes Wang9370f2d2019-10-16 11:02:42 +08001001};
1002
hayeswangac718b62013-05-02 16:01:25 +00001003enum rtl_version {
1004 RTL_VER_UNKNOWN = 0,
1005 RTL_VER_01,
hayeswang43779f82014-01-02 11:25:10 +08001006 RTL_VER_02,
1007 RTL_VER_03,
1008 RTL_VER_04,
1009 RTL_VER_05,
hayeswangfb02eb42015-07-22 15:27:41 +08001010 RTL_VER_06,
hayeswangc27b32c2017-06-15 14:44:02 +08001011 RTL_VER_07,
hayeswang65b82d62017-06-15 14:44:03 +08001012 RTL_VER_08,
1013 RTL_VER_09,
hayeswang43779f82014-01-02 11:25:10 +08001014 RTL_VER_MAX
hayeswangac718b62013-05-02 16:01:25 +00001015};
1016
hayeswang60c89072014-03-07 11:04:39 +08001017enum tx_csum_stat {
1018 TX_CSUM_SUCCESS = 0,
1019 TX_CSUM_TSO,
1020 TX_CSUM_NONE
1021};
1022
Hayes Wang771efed2019-09-02 19:52:28 +08001023#define RTL_ADVERTISED_10_HALF BIT(0)
1024#define RTL_ADVERTISED_10_FULL BIT(1)
1025#define RTL_ADVERTISED_100_HALF BIT(2)
1026#define RTL_ADVERTISED_100_FULL BIT(3)
1027#define RTL_ADVERTISED_1000_HALF BIT(4)
1028#define RTL_ADVERTISED_1000_FULL BIT(5)
1029
hayeswangac718b62013-05-02 16:01:25 +00001030/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
1031 * The RTL chips use a 64 element hash table based on the Ethernet CRC.
1032 */
1033static const int multicast_filter_limit = 32;
hayeswang52aec122014-09-02 10:27:52 +08001034static unsigned int agg_buf_sz = 16384;
hayeswangac718b62013-05-02 16:01:25 +00001035
hayeswang52aec122014-09-02 10:27:52 +08001036#define RTL_LIMITED_TSO_SIZE (agg_buf_sz - sizeof(struct tx_desc) - \
hayeswangb65c0c92017-06-21 11:25:18 +08001037 VLAN_ETH_HLEN - ETH_FCS_LEN)
hayeswang60c89072014-03-07 11:04:39 +08001038
hayeswangac718b62013-05-02 16:01:25 +00001039static
1040int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
1041{
hayeswang31787f52013-07-31 17:21:25 +08001042 int ret;
1043 void *tmp;
1044
1045 tmp = kmalloc(size, GFP_KERNEL);
1046 if (!tmp)
1047 return -ENOMEM;
1048
1049 ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +08001050 RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
1051 value, index, tmp, size, 500);
Prashant Malanif53a7ad2019-08-24 01:36:19 -07001052 if (ret < 0)
1053 memset(data, 0xff, size);
1054 else
1055 memcpy(data, tmp, size);
hayeswang31787f52013-07-31 17:21:25 +08001056
hayeswang31787f52013-07-31 17:21:25 +08001057 kfree(tmp);
1058
1059 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001060}
1061
1062static
1063int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
1064{
hayeswang31787f52013-07-31 17:21:25 +08001065 int ret;
1066 void *tmp;
1067
Benoit Tainec4438f02014-05-26 17:21:23 +02001068 tmp = kmemdup(data, size, GFP_KERNEL);
hayeswang31787f52013-07-31 17:21:25 +08001069 if (!tmp)
1070 return -ENOMEM;
1071
hayeswang31787f52013-07-31 17:21:25 +08001072 ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +08001073 RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
1074 value, index, tmp, size, 500);
hayeswang31787f52013-07-31 17:21:25 +08001075
1076 kfree(tmp);
hayeswangdb8515e2014-03-06 15:07:16 +08001077
hayeswang31787f52013-07-31 17:21:25 +08001078 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001079}
1080
Hayes Wangffa9fec2019-07-04 17:36:32 +08001081static void rtl_set_unplug(struct r8152 *tp)
1082{
1083 if (tp->udev->state == USB_STATE_NOTATTACHED) {
1084 set_bit(RTL8152_UNPLUG, &tp->flags);
1085 smp_mb__after_atomic();
1086 }
1087}
1088
hayeswangac718b62013-05-02 16:01:25 +00001089static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
hayeswangb209af92014-08-25 15:53:00 +08001090 void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +00001091{
hayeswang45f4a192014-01-06 17:08:41 +08001092 u16 limit = 64;
1093 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +00001094
1095 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1096 return -ENODEV;
1097
1098 /* both size and indix must be 4 bytes align */
1099 if ((size & 3) || !size || (index & 3) || !data)
1100 return -EPERM;
1101
1102 if ((u32)index + (u32)size > 0xffff)
1103 return -EPERM;
1104
1105 while (size) {
1106 if (size > limit) {
1107 ret = get_registers(tp, index, type, limit, data);
1108 if (ret < 0)
1109 break;
1110
1111 index += limit;
1112 data += limit;
1113 size -= limit;
1114 } else {
1115 ret = get_registers(tp, index, type, size, data);
1116 if (ret < 0)
1117 break;
1118
1119 index += size;
1120 data += size;
1121 size = 0;
1122 break;
1123 }
1124 }
1125
hayeswang67610492014-10-30 11:46:40 +08001126 if (ret == -ENODEV)
Hayes Wangffa9fec2019-07-04 17:36:32 +08001127 rtl_set_unplug(tp);
hayeswang67610492014-10-30 11:46:40 +08001128
hayeswangac718b62013-05-02 16:01:25 +00001129 return ret;
1130}
1131
1132static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen,
hayeswangb209af92014-08-25 15:53:00 +08001133 u16 size, void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +00001134{
hayeswang45f4a192014-01-06 17:08:41 +08001135 int ret;
1136 u16 byteen_start, byteen_end, byen;
1137 u16 limit = 512;
hayeswangac718b62013-05-02 16:01:25 +00001138
1139 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1140 return -ENODEV;
1141
1142 /* both size and indix must be 4 bytes align */
1143 if ((size & 3) || !size || (index & 3) || !data)
1144 return -EPERM;
1145
1146 if ((u32)index + (u32)size > 0xffff)
1147 return -EPERM;
1148
1149 byteen_start = byteen & BYTE_EN_START_MASK;
1150 byteen_end = byteen & BYTE_EN_END_MASK;
1151
1152 byen = byteen_start | (byteen_start << 4);
1153 ret = set_registers(tp, index, type | byen, 4, data);
1154 if (ret < 0)
1155 goto error1;
1156
1157 index += 4;
1158 data += 4;
1159 size -= 4;
1160
1161 if (size) {
1162 size -= 4;
1163
1164 while (size) {
1165 if (size > limit) {
1166 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +08001167 type | BYTE_EN_DWORD,
1168 limit, data);
hayeswangac718b62013-05-02 16:01:25 +00001169 if (ret < 0)
1170 goto error1;
1171
1172 index += limit;
1173 data += limit;
1174 size -= limit;
1175 } else {
1176 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +08001177 type | BYTE_EN_DWORD,
1178 size, data);
hayeswangac718b62013-05-02 16:01:25 +00001179 if (ret < 0)
1180 goto error1;
1181
1182 index += size;
1183 data += size;
1184 size = 0;
1185 break;
1186 }
1187 }
1188
1189 byen = byteen_end | (byteen_end >> 4);
1190 ret = set_registers(tp, index, type | byen, 4, data);
1191 if (ret < 0)
1192 goto error1;
1193 }
1194
1195error1:
hayeswang67610492014-10-30 11:46:40 +08001196 if (ret == -ENODEV)
Hayes Wangffa9fec2019-07-04 17:36:32 +08001197 rtl_set_unplug(tp);
hayeswang67610492014-10-30 11:46:40 +08001198
hayeswangac718b62013-05-02 16:01:25 +00001199 return ret;
1200}
1201
1202static inline
1203int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
1204{
1205 return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA);
1206}
1207
1208static inline
1209int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
1210{
1211 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA);
1212}
1213
1214static inline
hayeswangac718b62013-05-02 16:01:25 +00001215int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
1216{
1217 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB);
1218}
1219
1220static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index)
1221{
hayeswangc8826de2013-07-31 17:21:26 +08001222 __le32 data;
hayeswangac718b62013-05-02 16:01:25 +00001223
hayeswangc8826de2013-07-31 17:21:26 +08001224 generic_ocp_read(tp, index, sizeof(data), &data, type);
hayeswangac718b62013-05-02 16:01:25 +00001225
1226 return __le32_to_cpu(data);
1227}
1228
1229static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data)
1230{
hayeswangc8826de2013-07-31 17:21:26 +08001231 __le32 tmp = __cpu_to_le32(data);
1232
1233 generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +00001234}
1235
1236static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index)
1237{
1238 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +08001239 __le32 tmp;
hayeswangd8fbd272017-06-15 14:44:04 +08001240 u16 byen = BYTE_EN_WORD;
hayeswangac718b62013-05-02 16:01:25 +00001241 u8 shift = index & 2;
1242
1243 index &= ~3;
hayeswangd8fbd272017-06-15 14:44:04 +08001244 byen <<= shift;
hayeswangac718b62013-05-02 16:01:25 +00001245
hayeswangd8fbd272017-06-15 14:44:04 +08001246 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type | byen);
hayeswangac718b62013-05-02 16:01:25 +00001247
hayeswangc8826de2013-07-31 17:21:26 +08001248 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +00001249 data >>= (shift * 8);
1250 data &= 0xffff;
1251
1252 return (u16)data;
1253}
1254
1255static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data)
1256{
hayeswangc8826de2013-07-31 17:21:26 +08001257 u32 mask = 0xffff;
1258 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +00001259 u16 byen = BYTE_EN_WORD;
1260 u8 shift = index & 2;
1261
1262 data &= mask;
1263
1264 if (index & 2) {
1265 byen <<= shift;
1266 mask <<= (shift * 8);
1267 data <<= (shift * 8);
1268 index &= ~3;
1269 }
1270
hayeswangc8826de2013-07-31 17:21:26 +08001271 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +00001272
hayeswangc8826de2013-07-31 17:21:26 +08001273 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +00001274}
1275
1276static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index)
1277{
1278 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +08001279 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +00001280 u8 shift = index & 3;
1281
1282 index &= ~3;
1283
hayeswangc8826de2013-07-31 17:21:26 +08001284 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +00001285
hayeswangc8826de2013-07-31 17:21:26 +08001286 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +00001287 data >>= (shift * 8);
1288 data &= 0xff;
1289
1290 return (u8)data;
1291}
1292
1293static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data)
1294{
hayeswangc8826de2013-07-31 17:21:26 +08001295 u32 mask = 0xff;
1296 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +00001297 u16 byen = BYTE_EN_BYTE;
1298 u8 shift = index & 3;
1299
1300 data &= mask;
1301
1302 if (index & 3) {
1303 byen <<= shift;
1304 mask <<= (shift * 8);
1305 data <<= (shift * 8);
1306 index &= ~3;
1307 }
1308
hayeswangc8826de2013-07-31 17:21:26 +08001309 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +00001310
hayeswangc8826de2013-07-31 17:21:26 +08001311 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +00001312}
1313
hayeswangac244d32014-01-02 11:22:40 +08001314static u16 ocp_reg_read(struct r8152 *tp, u16 addr)
1315{
1316 u16 ocp_base, ocp_index;
1317
1318 ocp_base = addr & 0xf000;
1319 if (ocp_base != tp->ocp_base) {
1320 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
1321 tp->ocp_base = ocp_base;
1322 }
1323
1324 ocp_index = (addr & 0x0fff) | 0xb000;
1325 return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index);
1326}
1327
hayeswange3fe0b12014-01-02 11:22:39 +08001328static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data)
1329{
1330 u16 ocp_base, ocp_index;
1331
1332 ocp_base = addr & 0xf000;
1333 if (ocp_base != tp->ocp_base) {
1334 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
1335 tp->ocp_base = ocp_base;
1336 }
1337
1338 ocp_index = (addr & 0x0fff) | 0xb000;
1339 ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data);
1340}
1341
hayeswangac244d32014-01-02 11:22:40 +08001342static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value)
hayeswangac718b62013-05-02 16:01:25 +00001343{
hayeswangac244d32014-01-02 11:22:40 +08001344 ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value);
hayeswangac718b62013-05-02 16:01:25 +00001345}
1346
hayeswangac244d32014-01-02 11:22:40 +08001347static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr)
hayeswangac718b62013-05-02 16:01:25 +00001348{
hayeswangac244d32014-01-02 11:22:40 +08001349 return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2);
hayeswangac718b62013-05-02 16:01:25 +00001350}
1351
hayeswang43779f82014-01-02 11:25:10 +08001352static void sram_write(struct r8152 *tp, u16 addr, u16 data)
1353{
1354 ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
1355 ocp_reg_write(tp, OCP_SRAM_DATA, data);
1356}
1357
hayeswang65b82d62017-06-15 14:44:03 +08001358static u16 sram_read(struct r8152 *tp, u16 addr)
1359{
1360 ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
1361 return ocp_reg_read(tp, OCP_SRAM_DATA);
1362}
1363
hayeswangac718b62013-05-02 16:01:25 +00001364static int read_mii_word(struct net_device *netdev, int phy_id, int reg)
1365{
1366 struct r8152 *tp = netdev_priv(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08001367 int ret;
hayeswangac718b62013-05-02 16:01:25 +00001368
hayeswang68714382014-04-11 17:54:31 +08001369 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1370 return -ENODEV;
1371
hayeswangac718b62013-05-02 16:01:25 +00001372 if (phy_id != R8152_PHY_ID)
1373 return -EINVAL;
1374
hayeswang9a4be1b2014-02-18 21:49:07 +08001375 ret = r8152_mdio_read(tp, reg);
1376
hayeswang9a4be1b2014-02-18 21:49:07 +08001377 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001378}
1379
1380static
1381void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val)
1382{
1383 struct r8152 *tp = netdev_priv(netdev);
1384
hayeswang68714382014-04-11 17:54:31 +08001385 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1386 return;
1387
hayeswangac718b62013-05-02 16:01:25 +00001388 if (phy_id != R8152_PHY_ID)
1389 return;
1390
1391 r8152_mdio_write(tp, reg, val);
1392}
1393
hayeswangb209af92014-08-25 15:53:00 +08001394static int
1395r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001396
hayeswang8ba789a2014-09-04 16:15:41 +08001397static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
1398{
1399 struct r8152 *tp = netdev_priv(netdev);
1400 struct sockaddr *addr = p;
hayeswangea6a7112014-10-02 17:03:12 +08001401 int ret = -EADDRNOTAVAIL;
hayeswang8ba789a2014-09-04 16:15:41 +08001402
1403 if (!is_valid_ether_addr(addr->sa_data))
hayeswangea6a7112014-10-02 17:03:12 +08001404 goto out1;
1405
1406 ret = usb_autopm_get_interface(tp->intf);
1407 if (ret < 0)
1408 goto out1;
hayeswang8ba789a2014-09-04 16:15:41 +08001409
hayeswangb5403272014-10-09 18:00:26 +08001410 mutex_lock(&tp->control);
1411
hayeswang8ba789a2014-09-04 16:15:41 +08001412 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1413
1414 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
1415 pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data);
1416 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
1417
hayeswangb5403272014-10-09 18:00:26 +08001418 mutex_unlock(&tp->control);
1419
hayeswangea6a7112014-10-02 17:03:12 +08001420 usb_autopm_put_interface(tp->intf);
1421out1:
1422 return ret;
hayeswang8ba789a2014-09-04 16:15:41 +08001423}
1424
Mario Limonciello9c273692018-12-11 08:16:14 -06001425/* Devices containing proper chips can support a persistent
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001426 * host system provided MAC address.
1427 * Examples of this are Dell TB15 and Dell WD15 docks
1428 */
1429static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa)
1430{
1431 acpi_status status;
1432 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1433 union acpi_object *obj;
1434 int ret = -EINVAL;
1435 u32 ocp_data;
1436 unsigned char buf[6];
Kai-Heng Feng96477222019-11-05 19:24:52 +08001437 char *mac_obj_name;
1438 acpi_object_type mac_obj_type;
1439 int mac_strlen;
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001440
Kai-Heng Feng96477222019-11-05 19:24:52 +08001441 if (test_bit(LENOVO_MACPASSTHRU, &tp->flags)) {
1442 mac_obj_name = "\\MACA";
1443 mac_obj_type = ACPI_TYPE_STRING;
1444 mac_strlen = 0x16;
Mario Limonciello9c273692018-12-11 08:16:14 -06001445 } else {
Kai-Heng Feng96477222019-11-05 19:24:52 +08001446 /* test for -AD variant of RTL8153 */
1447 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
1448 if ((ocp_data & AD_MASK) == 0x1000) {
1449 /* test for MAC address pass-through bit */
1450 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, EFUSE);
1451 if ((ocp_data & PASS_THRU_MASK) != 1) {
1452 netif_dbg(tp, probe, tp->netdev,
1453 "No efuse for RTL8153-AD MAC pass through\n");
1454 return -ENODEV;
1455 }
1456 } else {
1457 /* test for RTL8153-BND and RTL8153-BD */
1458 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1);
1459 if ((ocp_data & BND_MASK) == 0 && (ocp_data & BD_MASK) == 0) {
1460 netif_dbg(tp, probe, tp->netdev,
1461 "Invalid variant for MAC pass through\n");
1462 return -ENODEV;
1463 }
Mario Limonciello9c273692018-12-11 08:16:14 -06001464 }
Kai-Heng Feng96477222019-11-05 19:24:52 +08001465
1466 mac_obj_name = "\\_SB.AMAC";
1467 mac_obj_type = ACPI_TYPE_BUFFER;
1468 mac_strlen = 0x17;
Mario Limonciello9c273692018-12-11 08:16:14 -06001469 }
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001470
1471 /* returns _AUXMAC_#AABBCCDDEEFF# */
Kai-Heng Feng96477222019-11-05 19:24:52 +08001472 status = acpi_evaluate_object(NULL, mac_obj_name, NULL, &buffer);
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001473 obj = (union acpi_object *)buffer.pointer;
1474 if (!ACPI_SUCCESS(status))
1475 return -ENODEV;
Kai-Heng Feng96477222019-11-05 19:24:52 +08001476 if (obj->type != mac_obj_type || obj->string.length != mac_strlen) {
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001477 netif_warn(tp, probe, tp->netdev,
hayeswang53700f02016-09-01 17:01:42 +08001478 "Invalid buffer for pass-thru MAC addr: (%d, %d)\n",
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001479 obj->type, obj->string.length);
1480 goto amacout;
1481 }
Kai-Heng Feng96477222019-11-05 19:24:52 +08001482
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001483 if (strncmp(obj->string.pointer, "_AUXMAC_#", 9) != 0 ||
1484 strncmp(obj->string.pointer + 0x15, "#", 1) != 0) {
1485 netif_warn(tp, probe, tp->netdev,
1486 "Invalid header when reading pass-thru MAC addr\n");
1487 goto amacout;
1488 }
1489 ret = hex2bin(buf, obj->string.pointer + 9, 6);
1490 if (!(ret == 0 && is_valid_ether_addr(buf))) {
1491 netif_warn(tp, probe, tp->netdev,
hayeswang53700f02016-09-01 17:01:42 +08001492 "Invalid MAC for pass-thru MAC addr: %d, %pM\n",
1493 ret, buf);
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001494 ret = -EINVAL;
1495 goto amacout;
1496 }
1497 memcpy(sa->sa_data, buf, 6);
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001498 netif_info(tp, probe, tp->netdev,
1499 "Using pass-thru MAC addr %pM\n", sa->sa_data);
1500
1501amacout:
1502 kfree(obj);
1503 return ret;
1504}
1505
Mario Limonciello25766272019-04-04 13:46:53 -05001506static int determine_ethernet_addr(struct r8152 *tp, struct sockaddr *sa)
1507{
1508 struct net_device *dev = tp->netdev;
1509 int ret;
1510
Crag.Wanga6cbcb72019-04-22 13:03:43 +08001511 sa->sa_family = dev->type;
1512
Thierry Redingb9b40ee2020-08-07 09:36:32 +02001513 ret = eth_platform_get_mac_address(&tp->udev->dev, sa->sa_data);
Thierry Redingacb6d372020-05-14 14:38:48 +02001514 if (ret < 0) {
1515 if (tp->version == RTL_VER_01) {
1516 ret = pla_ocp_read(tp, PLA_IDR, 8, sa->sa_data);
1517 } else {
1518 /* if device doesn't support MAC pass through this will
1519 * be expected to be non-zero
1520 */
1521 ret = vendor_mac_passthru_addr_read(tp, sa);
1522 if (ret < 0)
1523 ret = pla_ocp_read(tp, PLA_BACKUP, 8,
1524 sa->sa_data);
1525 }
Mario Limonciello25766272019-04-04 13:46:53 -05001526 }
1527
1528 if (ret < 0) {
1529 netif_err(tp, probe, dev, "Get ether addr fail\n");
1530 } else if (!is_valid_ether_addr(sa->sa_data)) {
1531 netif_err(tp, probe, dev, "Invalid ether addr %pM\n",
1532 sa->sa_data);
1533 eth_hw_addr_random(dev);
1534 ether_addr_copy(sa->sa_data, dev->dev_addr);
1535 netif_info(tp, probe, dev, "Random ether addr %pM\n",
1536 sa->sa_data);
1537 return 0;
1538 }
1539
1540 return ret;
1541}
1542
hayeswang179bb6d2014-09-04 16:15:42 +08001543static int set_ethernet_addr(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00001544{
1545 struct net_device *dev = tp->netdev;
hayeswang179bb6d2014-09-04 16:15:42 +08001546 struct sockaddr sa;
hayeswang8a91c822014-02-18 21:49:01 +08001547 int ret;
hayeswangac718b62013-05-02 16:01:25 +00001548
Mario Limonciello25766272019-04-04 13:46:53 -05001549 ret = determine_ethernet_addr(tp, &sa);
1550 if (ret < 0)
1551 return ret;
hayeswang8a91c822014-02-18 21:49:01 +08001552
Mario Limonciello25766272019-04-04 13:46:53 -05001553 if (tp->version == RTL_VER_01)
1554 ether_addr_copy(dev->dev_addr, sa.sa_data);
1555 else
hayeswang179bb6d2014-09-04 16:15:42 +08001556 ret = rtl8152_set_mac_address(dev, &sa);
hayeswang179bb6d2014-09-04 16:15:42 +08001557
1558 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001559}
1560
hayeswangac718b62013-05-02 16:01:25 +00001561static void read_bulk_callback(struct urb *urb)
1562{
hayeswangac718b62013-05-02 16:01:25 +00001563 struct net_device *netdev;
hayeswangac718b62013-05-02 16:01:25 +00001564 int status = urb->status;
hayeswangebc2ec482013-08-14 20:54:38 +08001565 struct rx_agg *agg;
1566 struct r8152 *tp;
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001567 unsigned long flags;
hayeswangac718b62013-05-02 16:01:25 +00001568
hayeswangebc2ec482013-08-14 20:54:38 +08001569 agg = urb->context;
1570 if (!agg)
1571 return;
1572
1573 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001574 if (!tp)
1575 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001576
hayeswangac718b62013-05-02 16:01:25 +00001577 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1578 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001579
1580 if (!test_bit(WORK_ENABLE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00001581 return;
1582
hayeswangebc2ec482013-08-14 20:54:38 +08001583 netdev = tp->netdev;
hayeswang7559fb2f2013-08-16 16:09:38 +08001584
1585 /* When link down, the driver would cancel all bulks. */
1586 /* This avoid the re-submitting bulk */
hayeswangebc2ec482013-08-14 20:54:38 +08001587 if (!netif_carrier_ok(netdev))
1588 return;
1589
hayeswang9a4be1b2014-02-18 21:49:07 +08001590 usb_mark_last_busy(tp->udev);
1591
hayeswangac718b62013-05-02 16:01:25 +00001592 switch (status) {
1593 case 0:
hayeswangebc2ec482013-08-14 20:54:38 +08001594 if (urb->actual_length < ETH_ZLEN)
1595 break;
1596
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001597 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001598 list_add_tail(&agg->list, &tp->rx_done);
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001599 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangd823ab62015-01-12 12:06:23 +08001600 napi_schedule(&tp->napi);
hayeswangebc2ec482013-08-14 20:54:38 +08001601 return;
hayeswangac718b62013-05-02 16:01:25 +00001602 case -ESHUTDOWN:
Hayes Wangffa9fec2019-07-04 17:36:32 +08001603 rtl_set_unplug(tp);
hayeswangac718b62013-05-02 16:01:25 +00001604 netif_device_detach(tp->netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08001605 return;
hayeswangac718b62013-05-02 16:01:25 +00001606 case -ENOENT:
1607 return; /* the urb is in unlink state */
1608 case -ETIME:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001609 if (net_ratelimit())
1610 netdev_warn(netdev, "maybe reset is needed?\n");
hayeswangebc2ec482013-08-14 20:54:38 +08001611 break;
hayeswangac718b62013-05-02 16:01:25 +00001612 default:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001613 if (net_ratelimit())
1614 netdev_warn(netdev, "Rx status %d\n", status);
hayeswangebc2ec482013-08-14 20:54:38 +08001615 break;
hayeswangac718b62013-05-02 16:01:25 +00001616 }
1617
hayeswanga0fccd42014-11-20 10:29:05 +08001618 r8152_submit_rx(tp, agg, GFP_ATOMIC);
hayeswangac718b62013-05-02 16:01:25 +00001619}
1620
1621static void write_bulk_callback(struct urb *urb)
1622{
hayeswangebc2ec482013-08-14 20:54:38 +08001623 struct net_device_stats *stats;
hayeswangd104eaf2014-03-06 15:07:17 +08001624 struct net_device *netdev;
hayeswangebc2ec482013-08-14 20:54:38 +08001625 struct tx_agg *agg;
hayeswangac718b62013-05-02 16:01:25 +00001626 struct r8152 *tp;
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001627 unsigned long flags;
hayeswangac718b62013-05-02 16:01:25 +00001628 int status = urb->status;
1629
hayeswangebc2ec482013-08-14 20:54:38 +08001630 agg = urb->context;
1631 if (!agg)
1632 return;
1633
1634 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001635 if (!tp)
1636 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001637
hayeswangd104eaf2014-03-06 15:07:17 +08001638 netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08001639 stats = &netdev->stats;
hayeswangebc2ec482013-08-14 20:54:38 +08001640 if (status) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08001641 if (net_ratelimit())
hayeswangd104eaf2014-03-06 15:07:17 +08001642 netdev_warn(netdev, "Tx status %d\n", status);
hayeswangebc2ec482013-08-14 20:54:38 +08001643 stats->tx_errors += agg->skb_num;
1644 } else {
1645 stats->tx_packets += agg->skb_num;
1646 stats->tx_bytes += agg->skb_len;
1647 }
1648
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001649 spin_lock_irqsave(&tp->tx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001650 list_add_tail(&agg->list, &tp->tx_free);
Sebastian Andrzej Siewiored7aa302018-06-20 21:31:20 +02001651 spin_unlock_irqrestore(&tp->tx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001652
hayeswang9a4be1b2014-02-18 21:49:07 +08001653 usb_autopm_put_interface_async(tp->intf);
1654
hayeswangd104eaf2014-03-06 15:07:17 +08001655 if (!netif_carrier_ok(netdev))
hayeswangac718b62013-05-02 16:01:25 +00001656 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001657
1658 if (!test_bit(WORK_ENABLE, &tp->flags))
1659 return;
1660
1661 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1662 return;
1663
1664 if (!skb_queue_empty(&tp->tx_queue))
Hayes Wangd2187f82019-08-19 14:40:36 +08001665 tasklet_schedule(&tp->tx_tl);
hayeswangebc2ec482013-08-14 20:54:38 +08001666}
1667
hayeswang40a82912013-08-14 20:54:40 +08001668static void intr_callback(struct urb *urb)
1669{
1670 struct r8152 *tp;
hayeswang500b6d72013-11-20 17:30:57 +08001671 __le16 *d;
hayeswang40a82912013-08-14 20:54:40 +08001672 int status = urb->status;
1673 int res;
1674
1675 tp = urb->context;
1676 if (!tp)
1677 return;
1678
1679 if (!test_bit(WORK_ENABLE, &tp->flags))
1680 return;
1681
1682 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1683 return;
1684
1685 switch (status) {
1686 case 0: /* success */
1687 break;
1688 case -ECONNRESET: /* unlink */
1689 case -ESHUTDOWN:
1690 netif_device_detach(tp->netdev);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001691 fallthrough;
hayeswang40a82912013-08-14 20:54:40 +08001692 case -ENOENT:
hayeswangd59c8762014-10-31 13:35:57 +08001693 case -EPROTO:
1694 netif_info(tp, intr, tp->netdev,
1695 "Stop submitting intr, status %d\n", status);
hayeswang40a82912013-08-14 20:54:40 +08001696 return;
1697 case -EOVERFLOW:
1698 netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n");
1699 goto resubmit;
1700 /* -EPIPE: should clear the halt */
1701 default:
1702 netif_info(tp, intr, tp->netdev, "intr status %d\n", status);
1703 goto resubmit;
1704 }
1705
1706 d = urb->transfer_buffer;
1707 if (INTR_LINK & __le16_to_cpu(d[0])) {
hayeswang51d979f2015-02-06 11:30:47 +08001708 if (!netif_carrier_ok(tp->netdev)) {
hayeswang40a82912013-08-14 20:54:40 +08001709 set_bit(RTL8152_LINK_CHG, &tp->flags);
1710 schedule_delayed_work(&tp->schedule, 0);
1711 }
1712 } else {
hayeswang51d979f2015-02-06 11:30:47 +08001713 if (netif_carrier_ok(tp->netdev)) {
hayeswang2f25abe2017-03-23 19:14:19 +08001714 netif_stop_queue(tp->netdev);
hayeswang40a82912013-08-14 20:54:40 +08001715 set_bit(RTL8152_LINK_CHG, &tp->flags);
1716 schedule_delayed_work(&tp->schedule, 0);
1717 }
1718 }
1719
1720resubmit:
1721 res = usb_submit_urb(urb, GFP_ATOMIC);
hayeswang67610492014-10-30 11:46:40 +08001722 if (res == -ENODEV) {
Hayes Wangffa9fec2019-07-04 17:36:32 +08001723 rtl_set_unplug(tp);
hayeswang40a82912013-08-14 20:54:40 +08001724 netif_device_detach(tp->netdev);
hayeswang67610492014-10-30 11:46:40 +08001725 } else if (res) {
hayeswang40a82912013-08-14 20:54:40 +08001726 netif_err(tp, intr, tp->netdev,
Hayes Wang4a8deae2014-01-07 11:18:22 +08001727 "can't resubmit intr, status %d\n", res);
hayeswang67610492014-10-30 11:46:40 +08001728 }
hayeswang40a82912013-08-14 20:54:40 +08001729}
1730
hayeswangebc2ec482013-08-14 20:54:38 +08001731static inline void *rx_agg_align(void *data)
1732{
hayeswang8e1f51b2014-01-02 11:22:41 +08001733 return (void *)ALIGN((uintptr_t)data, RX_ALIGN);
hayeswangebc2ec482013-08-14 20:54:38 +08001734}
1735
1736static inline void *tx_agg_align(void *data)
1737{
hayeswang8e1f51b2014-01-02 11:22:41 +08001738 return (void *)ALIGN((uintptr_t)data, TX_ALIGN);
hayeswangebc2ec482013-08-14 20:54:38 +08001739}
1740
Hayes Wang252df8b2019-08-13 11:42:06 +08001741static void free_rx_agg(struct r8152 *tp, struct rx_agg *agg)
1742{
1743 list_del(&agg->info_list);
1744
1745 usb_free_urb(agg->urb);
Hayes Wang47922fc2019-08-13 11:42:08 +08001746 put_page(agg->page);
Hayes Wang252df8b2019-08-13 11:42:06 +08001747 kfree(agg);
1748
1749 atomic_dec(&tp->rx_count);
1750}
1751
1752static struct rx_agg *alloc_rx_agg(struct r8152 *tp, gfp_t mflags)
1753{
1754 struct net_device *netdev = tp->netdev;
1755 int node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
Hayes Wangd55d7082019-08-13 11:42:07 +08001756 unsigned int order = get_order(tp->rx_buf_sz);
Hayes Wang252df8b2019-08-13 11:42:06 +08001757 struct rx_agg *rx_agg;
1758 unsigned long flags;
Hayes Wang252df8b2019-08-13 11:42:06 +08001759
1760 rx_agg = kmalloc_node(sizeof(*rx_agg), mflags, node);
1761 if (!rx_agg)
1762 return NULL;
1763
Hayes Wang47922fc2019-08-13 11:42:08 +08001764 rx_agg->page = alloc_pages(mflags | __GFP_COMP, order);
Hayes Wangd55d7082019-08-13 11:42:07 +08001765 if (!rx_agg->page)
Hayes Wang252df8b2019-08-13 11:42:06 +08001766 goto free_rx;
1767
Hayes Wangd55d7082019-08-13 11:42:07 +08001768 rx_agg->buffer = page_address(rx_agg->page);
Hayes Wang252df8b2019-08-13 11:42:06 +08001769
1770 rx_agg->urb = usb_alloc_urb(0, mflags);
1771 if (!rx_agg->urb)
1772 goto free_buf;
1773
1774 rx_agg->context = tp;
1775
1776 INIT_LIST_HEAD(&rx_agg->list);
1777 INIT_LIST_HEAD(&rx_agg->info_list);
1778 spin_lock_irqsave(&tp->rx_lock, flags);
1779 list_add_tail(&rx_agg->info_list, &tp->rx_info);
1780 spin_unlock_irqrestore(&tp->rx_lock, flags);
1781
1782 atomic_inc(&tp->rx_count);
1783
1784 return rx_agg;
1785
1786free_buf:
Hayes Wangd55d7082019-08-13 11:42:07 +08001787 __free_pages(rx_agg->page, order);
Hayes Wang252df8b2019-08-13 11:42:06 +08001788free_rx:
1789 kfree(rx_agg);
1790 return NULL;
1791}
1792
hayeswangebc2ec482013-08-14 20:54:38 +08001793static void free_all_mem(struct r8152 *tp)
1794{
Hayes Wang252df8b2019-08-13 11:42:06 +08001795 struct rx_agg *agg, *agg_next;
1796 unsigned long flags;
hayeswangebc2ec482013-08-14 20:54:38 +08001797 int i;
1798
Hayes Wang252df8b2019-08-13 11:42:06 +08001799 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001800
Hayes Wang252df8b2019-08-13 11:42:06 +08001801 list_for_each_entry_safe(agg, agg_next, &tp->rx_info, info_list)
1802 free_rx_agg(tp, agg);
1803
1804 spin_unlock_irqrestore(&tp->rx_lock, flags);
1805
1806 WARN_ON(atomic_read(&tp->rx_count));
hayeswangebc2ec482013-08-14 20:54:38 +08001807
1808 for (i = 0; i < RTL8152_MAX_TX; i++) {
hayeswang9629e3c2014-01-15 10:42:15 +08001809 usb_free_urb(tp->tx_info[i].urb);
1810 tp->tx_info[i].urb = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001811
hayeswang9629e3c2014-01-15 10:42:15 +08001812 kfree(tp->tx_info[i].buffer);
1813 tp->tx_info[i].buffer = NULL;
1814 tp->tx_info[i].head = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001815 }
hayeswang40a82912013-08-14 20:54:40 +08001816
hayeswang9629e3c2014-01-15 10:42:15 +08001817 usb_free_urb(tp->intr_urb);
1818 tp->intr_urb = NULL;
hayeswang40a82912013-08-14 20:54:40 +08001819
hayeswang9629e3c2014-01-15 10:42:15 +08001820 kfree(tp->intr_buff);
1821 tp->intr_buff = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001822}
1823
1824static int alloc_all_mem(struct r8152 *tp)
1825{
1826 struct net_device *netdev = tp->netdev;
hayeswang40a82912013-08-14 20:54:40 +08001827 struct usb_interface *intf = tp->intf;
1828 struct usb_host_interface *alt = intf->cur_altsetting;
1829 struct usb_host_endpoint *ep_intr = alt->endpoint + 2;
hayeswangebc2ec482013-08-14 20:54:38 +08001830 int node, i;
hayeswangebc2ec482013-08-14 20:54:38 +08001831
1832 node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1833
1834 spin_lock_init(&tp->rx_lock);
1835 spin_lock_init(&tp->tx_lock);
Hayes Wang252df8b2019-08-13 11:42:06 +08001836 INIT_LIST_HEAD(&tp->rx_info);
hayeswangebc2ec482013-08-14 20:54:38 +08001837 INIT_LIST_HEAD(&tp->tx_free);
hayeswang98d068a2017-03-14 14:15:20 +08001838 INIT_LIST_HEAD(&tp->rx_done);
hayeswangebc2ec482013-08-14 20:54:38 +08001839 skb_queue_head_init(&tp->tx_queue);
hayeswangd823ab62015-01-12 12:06:23 +08001840 skb_queue_head_init(&tp->rx_queue);
Hayes Wang252df8b2019-08-13 11:42:06 +08001841 atomic_set(&tp->rx_count, 0);
hayeswangebc2ec482013-08-14 20:54:38 +08001842
1843 for (i = 0; i < RTL8152_MAX_RX; i++) {
Hayes Wang252df8b2019-08-13 11:42:06 +08001844 if (!alloc_rx_agg(tp, GFP_KERNEL))
hayeswangebc2ec482013-08-14 20:54:38 +08001845 goto err1;
hayeswangebc2ec482013-08-14 20:54:38 +08001846 }
1847
1848 for (i = 0; i < RTL8152_MAX_TX; i++) {
Hayes Wang252df8b2019-08-13 11:42:06 +08001849 struct urb *urb;
1850 u8 *buf;
1851
hayeswang52aec122014-09-02 10:27:52 +08001852 buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
hayeswangebc2ec482013-08-14 20:54:38 +08001853 if (!buf)
1854 goto err1;
1855
1856 if (buf != tx_agg_align(buf)) {
1857 kfree(buf);
hayeswang52aec122014-09-02 10:27:52 +08001858 buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL,
hayeswang8e1f51b2014-01-02 11:22:41 +08001859 node);
hayeswangebc2ec482013-08-14 20:54:38 +08001860 if (!buf)
1861 goto err1;
1862 }
1863
1864 urb = usb_alloc_urb(0, GFP_KERNEL);
1865 if (!urb) {
1866 kfree(buf);
1867 goto err1;
1868 }
1869
1870 INIT_LIST_HEAD(&tp->tx_info[i].list);
1871 tp->tx_info[i].context = tp;
1872 tp->tx_info[i].urb = urb;
1873 tp->tx_info[i].buffer = buf;
1874 tp->tx_info[i].head = tx_agg_align(buf);
1875
1876 list_add_tail(&tp->tx_info[i].list, &tp->tx_free);
1877 }
1878
hayeswang40a82912013-08-14 20:54:40 +08001879 tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
1880 if (!tp->intr_urb)
1881 goto err1;
1882
1883 tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
1884 if (!tp->intr_buff)
1885 goto err1;
1886
1887 tp->intr_interval = (int)ep_intr->desc.bInterval;
1888 usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
hayeswangb209af92014-08-25 15:53:00 +08001889 tp->intr_buff, INTBUFSIZE, intr_callback,
1890 tp, tp->intr_interval);
hayeswang40a82912013-08-14 20:54:40 +08001891
hayeswangebc2ec482013-08-14 20:54:38 +08001892 return 0;
1893
1894err1:
1895 free_all_mem(tp);
1896 return -ENOMEM;
1897}
1898
hayeswang0de98f62013-08-16 16:09:35 +08001899static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp)
1900{
1901 struct tx_agg *agg = NULL;
1902 unsigned long flags;
1903
hayeswang21949ab2014-03-07 11:04:35 +08001904 if (list_empty(&tp->tx_free))
1905 return NULL;
1906
hayeswang0de98f62013-08-16 16:09:35 +08001907 spin_lock_irqsave(&tp->tx_lock, flags);
1908 if (!list_empty(&tp->tx_free)) {
1909 struct list_head *cursor;
1910
1911 cursor = tp->tx_free.next;
1912 list_del_init(cursor);
1913 agg = list_entry(cursor, struct tx_agg, list);
1914 }
1915 spin_unlock_irqrestore(&tp->tx_lock, flags);
1916
1917 return agg;
1918}
1919
hayeswangb209af92014-08-25 15:53:00 +08001920/* r8152_csum_workaround()
Prashant Malanic01ebd62019-09-30 12:38:18 -07001921 * The hw limits the value of the transport offset. When the offset is out of
hayeswang6128d1bb2014-03-07 11:04:40 +08001922 * range, calculate the checksum by sw.
1923 */
1924static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb,
1925 struct sk_buff_head *list)
1926{
1927 if (skb_shinfo(skb)->gso_size) {
1928 netdev_features_t features = tp->netdev->features;
Jason A. Donenfeld1d7a7432020-01-08 16:59:04 -05001929 struct sk_buff *segs, *seg, *next;
hayeswang6128d1bb2014-03-07 11:04:40 +08001930 struct sk_buff_head seg_list;
hayeswang6128d1bb2014-03-07 11:04:40 +08001931
hayeswanga91d45f2014-07-11 16:48:27 +08001932 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
hayeswang6128d1bb2014-03-07 11:04:40 +08001933 segs = skb_gso_segment(skb, features);
1934 if (IS_ERR(segs) || !segs)
1935 goto drop;
1936
1937 __skb_queue_head_init(&seg_list);
1938
Jason A. Donenfeld1d7a7432020-01-08 16:59:04 -05001939 skb_list_walk_safe(segs, seg, next) {
1940 skb_mark_not_on_list(seg);
1941 __skb_queue_tail(&seg_list, seg);
1942 }
hayeswang6128d1bb2014-03-07 11:04:40 +08001943
1944 skb_queue_splice(&seg_list, list);
1945 dev_kfree_skb(skb);
1946 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1947 if (skb_checksum_help(skb) < 0)
1948 goto drop;
1949
1950 __skb_queue_head(list, skb);
1951 } else {
1952 struct net_device_stats *stats;
1953
1954drop:
1955 stats = &tp->netdev->stats;
1956 stats->tx_dropped++;
1957 dev_kfree_skb(skb);
1958 }
1959}
1960
hayeswangc5554292014-09-12 10:43:11 +08001961static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb)
1962{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001963 if (skb_vlan_tag_present(skb)) {
hayeswangc5554292014-09-12 10:43:11 +08001964 u32 opts2;
1965
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001966 opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb));
hayeswangc5554292014-09-12 10:43:11 +08001967 desc->opts2 |= cpu_to_le32(opts2);
1968 }
1969}
1970
1971static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb)
1972{
1973 u32 opts2 = le32_to_cpu(desc->opts2);
1974
1975 if (opts2 & RX_VLAN_TAG)
1976 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1977 swab16(opts2 & 0xffff));
1978}
1979
hayeswang60c89072014-03-07 11:04:39 +08001980static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc,
1981 struct sk_buff *skb, u32 len, u32 transport_offset)
1982{
1983 u32 mss = skb_shinfo(skb)->gso_size;
1984 u32 opts1, opts2 = 0;
1985 int ret = TX_CSUM_SUCCESS;
1986
1987 WARN_ON_ONCE(len > TX_LEN_MAX);
1988
1989 opts1 = len | TX_FS | TX_LS;
1990
1991 if (mss) {
hayeswang6128d1bb2014-03-07 11:04:40 +08001992 if (transport_offset > GTTCPHO_MAX) {
1993 netif_warn(tp, tx_err, tp->netdev,
1994 "Invalid transport offset 0x%x for TSO\n",
1995 transport_offset);
1996 ret = TX_CSUM_TSO;
1997 goto unavailable;
1998 }
1999
hayeswang6e74d172015-02-06 11:30:50 +08002000 switch (vlan_get_protocol(skb)) {
hayeswang60c89072014-03-07 11:04:39 +08002001 case htons(ETH_P_IP):
2002 opts1 |= GTSENDV4;
2003 break;
2004
hayeswang6128d1bb2014-03-07 11:04:40 +08002005 case htons(ETH_P_IPV6):
Heiner Kallweit23441202020-02-18 21:12:52 +01002006 if (skb_cow_head(skb, 0)) {
hayeswangfcb308d2014-03-11 10:20:32 +08002007 ret = TX_CSUM_TSO;
2008 goto unavailable;
2009 }
Heiner Kallweit23441202020-02-18 21:12:52 +01002010 tcp_v6_gso_csum_prep(skb);
hayeswang6128d1bb2014-03-07 11:04:40 +08002011 opts1 |= GTSENDV6;
hayeswang6128d1bb2014-03-07 11:04:40 +08002012 break;
2013
hayeswang60c89072014-03-07 11:04:39 +08002014 default:
2015 WARN_ON_ONCE(1);
2016 break;
2017 }
2018
2019 opts1 |= transport_offset << GTTCPHO_SHIFT;
2020 opts2 |= min(mss, MSS_MAX) << MSS_SHIFT;
2021 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswang5bd23882013-08-14 20:54:39 +08002022 u8 ip_protocol;
hayeswang5bd23882013-08-14 20:54:39 +08002023
hayeswang6128d1bb2014-03-07 11:04:40 +08002024 if (transport_offset > TCPHO_MAX) {
2025 netif_warn(tp, tx_err, tp->netdev,
2026 "Invalid transport offset 0x%x\n",
2027 transport_offset);
2028 ret = TX_CSUM_NONE;
2029 goto unavailable;
2030 }
2031
hayeswang6e74d172015-02-06 11:30:50 +08002032 switch (vlan_get_protocol(skb)) {
hayeswang5bd23882013-08-14 20:54:39 +08002033 case htons(ETH_P_IP):
2034 opts2 |= IPV4_CS;
2035 ip_protocol = ip_hdr(skb)->protocol;
2036 break;
2037
2038 case htons(ETH_P_IPV6):
2039 opts2 |= IPV6_CS;
2040 ip_protocol = ipv6_hdr(skb)->nexthdr;
2041 break;
2042
2043 default:
2044 ip_protocol = IPPROTO_RAW;
2045 break;
2046 }
2047
hayeswang60c89072014-03-07 11:04:39 +08002048 if (ip_protocol == IPPROTO_TCP)
hayeswang5bd23882013-08-14 20:54:39 +08002049 opts2 |= TCP_CS;
hayeswang60c89072014-03-07 11:04:39 +08002050 else if (ip_protocol == IPPROTO_UDP)
hayeswang5bd23882013-08-14 20:54:39 +08002051 opts2 |= UDP_CS;
hayeswang60c89072014-03-07 11:04:39 +08002052 else
hayeswang5bd23882013-08-14 20:54:39 +08002053 WARN_ON_ONCE(1);
hayeswang5bd23882013-08-14 20:54:39 +08002054
hayeswang60c89072014-03-07 11:04:39 +08002055 opts2 |= transport_offset << TCPHO_SHIFT;
hayeswang5bd23882013-08-14 20:54:39 +08002056 }
hayeswang60c89072014-03-07 11:04:39 +08002057
2058 desc->opts2 = cpu_to_le32(opts2);
2059 desc->opts1 = cpu_to_le32(opts1);
2060
hayeswang6128d1bb2014-03-07 11:04:40 +08002061unavailable:
hayeswang60c89072014-03-07 11:04:39 +08002062 return ret;
hayeswang5bd23882013-08-14 20:54:39 +08002063}
2064
hayeswangb1379d92013-08-16 16:09:37 +08002065static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
2066{
hayeswangd84130a2014-02-18 21:49:02 +08002067 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang9a4be1b2014-02-18 21:49:07 +08002068 int remain, ret;
hayeswangb1379d92013-08-16 16:09:37 +08002069 u8 *tx_data;
2070
hayeswangd84130a2014-02-18 21:49:02 +08002071 __skb_queue_head_init(&skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08002072 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002073 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08002074 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002075
hayeswangb1379d92013-08-16 16:09:37 +08002076 tx_data = agg->head;
hayeswangb209af92014-08-25 15:53:00 +08002077 agg->skb_num = 0;
2078 agg->skb_len = 0;
hayeswang52aec122014-09-02 10:27:52 +08002079 remain = agg_buf_sz;
hayeswangb1379d92013-08-16 16:09:37 +08002080
hayeswang7937f9e2013-11-20 17:30:54 +08002081 while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) {
hayeswangb1379d92013-08-16 16:09:37 +08002082 struct tx_desc *tx_desc;
2083 struct sk_buff *skb;
2084 unsigned int len;
hayeswang60c89072014-03-07 11:04:39 +08002085 u32 offset;
hayeswangb1379d92013-08-16 16:09:37 +08002086
hayeswangd84130a2014-02-18 21:49:02 +08002087 skb = __skb_dequeue(&skb_head);
hayeswangb1379d92013-08-16 16:09:37 +08002088 if (!skb)
2089 break;
2090
hayeswang60c89072014-03-07 11:04:39 +08002091 len = skb->len + sizeof(*tx_desc);
2092
2093 if (len > remain) {
hayeswangd84130a2014-02-18 21:49:02 +08002094 __skb_queue_head(&skb_head, skb);
hayeswangb1379d92013-08-16 16:09:37 +08002095 break;
2096 }
2097
hayeswang7937f9e2013-11-20 17:30:54 +08002098 tx_data = tx_agg_align(tx_data);
hayeswangb1379d92013-08-16 16:09:37 +08002099 tx_desc = (struct tx_desc *)tx_data;
hayeswang60c89072014-03-07 11:04:39 +08002100
2101 offset = (u32)skb_transport_offset(skb);
2102
hayeswang6128d1bb2014-03-07 11:04:40 +08002103 if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) {
2104 r8152_csum_workaround(tp, skb, &skb_head);
2105 continue;
2106 }
hayeswang60c89072014-03-07 11:04:39 +08002107
hayeswangc5554292014-09-12 10:43:11 +08002108 rtl_tx_vlan_tag(tx_desc, skb);
2109
hayeswangb1379d92013-08-16 16:09:37 +08002110 tx_data += sizeof(*tx_desc);
2111
hayeswang60c89072014-03-07 11:04:39 +08002112 len = skb->len;
2113 if (skb_copy_bits(skb, 0, tx_data, len) < 0) {
2114 struct net_device_stats *stats = &tp->netdev->stats;
2115
2116 stats->tx_dropped++;
2117 dev_kfree_skb_any(skb);
2118 tx_data -= sizeof(*tx_desc);
2119 continue;
2120 }
hayeswangb1379d92013-08-16 16:09:37 +08002121
hayeswang7937f9e2013-11-20 17:30:54 +08002122 tx_data += len;
hayeswang60c89072014-03-07 11:04:39 +08002123 agg->skb_len += len;
Eric Dumazet4c27bf32018-02-25 19:12:10 -08002124 agg->skb_num += skb_shinfo(skb)->gso_segs ?: 1;
hayeswang60c89072014-03-07 11:04:39 +08002125
2126 dev_kfree_skb_any(skb);
2127
hayeswang52aec122014-09-02 10:27:52 +08002128 remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head);
Kai-Heng Feng0b165512018-01-16 16:46:27 +08002129
2130 if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags))
2131 break;
hayeswangb1379d92013-08-16 16:09:37 +08002132 }
2133
hayeswangd84130a2014-02-18 21:49:02 +08002134 if (!skb_queue_empty(&skb_head)) {
hayeswang0c3121f2014-03-07 11:04:36 +08002135 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002136 skb_queue_splice(&skb_head, tx_queue);
hayeswang0c3121f2014-03-07 11:04:36 +08002137 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002138 }
2139
hayeswang0c3121f2014-03-07 11:04:36 +08002140 netif_tx_lock(tp->netdev);
hayeswangdd1b1192013-11-20 17:30:56 +08002141
2142 if (netif_queue_stopped(tp->netdev) &&
2143 skb_queue_len(&tp->tx_queue) < tp->tx_qlen)
2144 netif_wake_queue(tp->netdev);
2145
hayeswang0c3121f2014-03-07 11:04:36 +08002146 netif_tx_unlock(tp->netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08002147
hayeswang0c3121f2014-03-07 11:04:36 +08002148 ret = usb_autopm_get_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08002149 if (ret < 0)
2150 goto out_tx_fill;
hayeswangdd1b1192013-11-20 17:30:56 +08002151
hayeswangb1379d92013-08-16 16:09:37 +08002152 usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
2153 agg->head, (int)(tx_data - (u8 *)agg->head),
2154 (usb_complete_t)write_bulk_callback, agg);
2155
hayeswang0c3121f2014-03-07 11:04:36 +08002156 ret = usb_submit_urb(agg->urb, GFP_ATOMIC);
hayeswang9a4be1b2014-02-18 21:49:07 +08002157 if (ret < 0)
hayeswang0c3121f2014-03-07 11:04:36 +08002158 usb_autopm_put_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08002159
2160out_tx_fill:
2161 return ret;
hayeswangb1379d92013-08-16 16:09:37 +08002162}
2163
hayeswang565cab02014-03-07 11:04:38 +08002164static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc)
2165{
2166 u8 checksum = CHECKSUM_NONE;
2167 u32 opts2, opts3;
2168
hayeswang19c0f402017-01-11 16:25:34 +08002169 if (!(tp->netdev->features & NETIF_F_RXCSUM))
hayeswang565cab02014-03-07 11:04:38 +08002170 goto return_result;
2171
2172 opts2 = le32_to_cpu(rx_desc->opts2);
2173 opts3 = le32_to_cpu(rx_desc->opts3);
2174
2175 if (opts2 & RD_IPV4_CS) {
2176 if (opts3 & IPF)
2177 checksum = CHECKSUM_NONE;
Hayes Wangea6499e2018-02-02 16:43:35 +08002178 else if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
2179 checksum = CHECKSUM_UNNECESSARY;
2180 else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
hayeswang565cab02014-03-07 11:04:38 +08002181 checksum = CHECKSUM_UNNECESSARY;
Mark Lordb9a321b2016-10-30 19:28:27 -04002182 } else if (opts2 & RD_IPV6_CS) {
hayeswang6128d1bb2014-03-07 11:04:40 +08002183 if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
2184 checksum = CHECKSUM_UNNECESSARY;
2185 else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
2186 checksum = CHECKSUM_UNNECESSARY;
hayeswang565cab02014-03-07 11:04:38 +08002187 }
2188
2189return_result:
2190 return checksum;
2191}
2192
Hayes Wang47922fc2019-08-13 11:42:08 +08002193static inline bool rx_count_exceed(struct r8152 *tp)
2194{
2195 return atomic_read(&tp->rx_count) > RTL8152_MAX_RX;
2196}
2197
2198static inline int agg_offset(struct rx_agg *agg, void *addr)
2199{
2200 return (int)(addr - agg->buffer);
2201}
2202
2203static struct rx_agg *rtl_get_free_rx(struct r8152 *tp, gfp_t mflags)
2204{
2205 struct rx_agg *agg, *agg_next, *agg_free = NULL;
2206 unsigned long flags;
2207
2208 spin_lock_irqsave(&tp->rx_lock, flags);
2209
2210 list_for_each_entry_safe(agg, agg_next, &tp->rx_used, list) {
2211 if (page_count(agg->page) == 1) {
2212 if (!agg_free) {
2213 list_del_init(&agg->list);
2214 agg_free = agg;
2215 continue;
2216 }
2217 if (rx_count_exceed(tp)) {
2218 list_del_init(&agg->list);
2219 free_rx_agg(tp, agg);
2220 }
2221 break;
2222 }
2223 }
2224
2225 spin_unlock_irqrestore(&tp->rx_lock, flags);
2226
Hayes Wange4a50172019-08-13 11:42:09 +08002227 if (!agg_free && atomic_read(&tp->rx_count) < tp->rx_pending)
Hayes Wang47922fc2019-08-13 11:42:08 +08002228 agg_free = alloc_rx_agg(tp, mflags);
2229
2230 return agg_free;
2231}
2232
hayeswangd823ab62015-01-12 12:06:23 +08002233static int rx_bottom(struct r8152 *tp, int budget)
hayeswangebc2ec482013-08-14 20:54:38 +08002234{
hayeswanga5a4f462013-08-16 16:09:34 +08002235 unsigned long flags;
hayeswangd84130a2014-02-18 21:49:02 +08002236 struct list_head *cursor, *next, rx_queue;
hayeswange1a2ca92015-02-06 11:30:45 +08002237 int ret = 0, work_done = 0;
hayeswangce594e92017-03-16 14:32:22 +08002238 struct napi_struct *napi = &tp->napi;
hayeswangd823ab62015-01-12 12:06:23 +08002239
2240 if (!skb_queue_empty(&tp->rx_queue)) {
2241 while (work_done < budget) {
2242 struct sk_buff *skb = __skb_dequeue(&tp->rx_queue);
2243 struct net_device *netdev = tp->netdev;
2244 struct net_device_stats *stats = &netdev->stats;
2245 unsigned int pkt_len;
2246
2247 if (!skb)
2248 break;
2249
2250 pkt_len = skb->len;
hayeswangce594e92017-03-16 14:32:22 +08002251 napi_gro_receive(napi, skb);
hayeswangd823ab62015-01-12 12:06:23 +08002252 work_done++;
2253 stats->rx_packets++;
2254 stats->rx_bytes += pkt_len;
2255 }
2256 }
hayeswangebc2ec482013-08-14 20:54:38 +08002257
hayeswangd84130a2014-02-18 21:49:02 +08002258 if (list_empty(&tp->rx_done))
hayeswangd823ab62015-01-12 12:06:23 +08002259 goto out1;
hayeswangd84130a2014-02-18 21:49:02 +08002260
2261 INIT_LIST_HEAD(&rx_queue);
hayeswanga5a4f462013-08-16 16:09:34 +08002262 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswangd84130a2014-02-18 21:49:02 +08002263 list_splice_init(&tp->rx_done, &rx_queue);
2264 spin_unlock_irqrestore(&tp->rx_lock, flags);
2265
2266 list_for_each_safe(cursor, next, &rx_queue) {
hayeswang43a44782013-08-16 16:09:36 +08002267 struct rx_desc *rx_desc;
Hayes Wang47922fc2019-08-13 11:42:08 +08002268 struct rx_agg *agg, *agg_free;
hayeswang43a44782013-08-16 16:09:36 +08002269 int len_used = 0;
2270 struct urb *urb;
2271 u8 *rx_data;
hayeswang43a44782013-08-16 16:09:36 +08002272
hayeswangebc2ec482013-08-14 20:54:38 +08002273 list_del_init(cursor);
hayeswangebc2ec482013-08-14 20:54:38 +08002274
2275 agg = list_entry(cursor, struct rx_agg, list);
2276 urb = agg->urb;
hayeswang0de98f62013-08-16 16:09:35 +08002277 if (urb->actual_length < ETH_ZLEN)
2278 goto submit;
hayeswangebc2ec482013-08-14 20:54:38 +08002279
Hayes Wang47922fc2019-08-13 11:42:08 +08002280 agg_free = rtl_get_free_rx(tp, GFP_ATOMIC);
2281
Hayes Wangd55d7082019-08-13 11:42:07 +08002282 rx_desc = agg->buffer;
2283 rx_data = agg->buffer;
hayeswang7937f9e2013-11-20 17:30:54 +08002284 len_used += sizeof(struct rx_desc);
hayeswangebc2ec482013-08-14 20:54:38 +08002285
hayeswang7937f9e2013-11-20 17:30:54 +08002286 while (urb->actual_length > len_used) {
hayeswang43a44782013-08-16 16:09:36 +08002287 struct net_device *netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08002288 struct net_device_stats *stats = &netdev->stats;
Hayes Wang47922fc2019-08-13 11:42:08 +08002289 unsigned int pkt_len, rx_frag_head_sz;
hayeswang43a44782013-08-16 16:09:36 +08002290 struct sk_buff *skb;
2291
hayeswang74544452017-06-09 17:11:47 +08002292 /* limite the skb numbers for rx_queue */
2293 if (unlikely(skb_queue_len(&tp->rx_queue) >= 1000))
2294 break;
2295
hayeswang7937f9e2013-11-20 17:30:54 +08002296 pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK;
hayeswangebc2ec482013-08-14 20:54:38 +08002297 if (pkt_len < ETH_ZLEN)
2298 break;
2299
hayeswang7937f9e2013-11-20 17:30:54 +08002300 len_used += pkt_len;
2301 if (urb->actual_length < len_used)
2302 break;
2303
hayeswangb65c0c92017-06-21 11:25:18 +08002304 pkt_len -= ETH_FCS_LEN;
hayeswangebc2ec482013-08-14 20:54:38 +08002305 rx_data += sizeof(struct rx_desc);
2306
Hayes Wange4a50172019-08-13 11:42:09 +08002307 if (!agg_free || tp->rx_copybreak > pkt_len)
Hayes Wang47922fc2019-08-13 11:42:08 +08002308 rx_frag_head_sz = pkt_len;
2309 else
Hayes Wange4a50172019-08-13 11:42:09 +08002310 rx_frag_head_sz = tp->rx_copybreak;
Hayes Wang47922fc2019-08-13 11:42:08 +08002311
2312 skb = napi_alloc_skb(napi, rx_frag_head_sz);
hayeswangebc2ec482013-08-14 20:54:38 +08002313 if (!skb) {
2314 stats->rx_dropped++;
hayeswang5e2f7482014-03-07 11:04:37 +08002315 goto find_next_rx;
hayeswangebc2ec482013-08-14 20:54:38 +08002316 }
hayeswang565cab02014-03-07 11:04:38 +08002317
2318 skb->ip_summed = r8152_rx_csum(tp, rx_desc);
Hayes Wang47922fc2019-08-13 11:42:08 +08002319 memcpy(skb->data, rx_data, rx_frag_head_sz);
2320 skb_put(skb, rx_frag_head_sz);
2321 pkt_len -= rx_frag_head_sz;
2322 rx_data += rx_frag_head_sz;
2323 if (pkt_len) {
2324 skb_add_rx_frag(skb, 0, agg->page,
2325 agg_offset(agg, rx_data),
2326 pkt_len,
2327 SKB_DATA_ALIGN(pkt_len));
2328 get_page(agg->page);
2329 }
2330
hayeswangebc2ec482013-08-14 20:54:38 +08002331 skb->protocol = eth_type_trans(skb, netdev);
hayeswangc5554292014-09-12 10:43:11 +08002332 rtl_rx_vlan_tag(rx_desc, skb);
hayeswangd823ab62015-01-12 12:06:23 +08002333 if (work_done < budget) {
hayeswangd823ab62015-01-12 12:06:23 +08002334 work_done++;
2335 stats->rx_packets++;
Hayes Wang47922fc2019-08-13 11:42:08 +08002336 stats->rx_bytes += skb->len;
Hayes Wang6636fb32019-08-19 11:15:19 +08002337 napi_gro_receive(napi, skb);
hayeswangd823ab62015-01-12 12:06:23 +08002338 } else {
2339 __skb_queue_tail(&tp->rx_queue, skb);
2340 }
hayeswangebc2ec482013-08-14 20:54:38 +08002341
hayeswang5e2f7482014-03-07 11:04:37 +08002342find_next_rx:
hayeswangb65c0c92017-06-21 11:25:18 +08002343 rx_data = rx_agg_align(rx_data + pkt_len + ETH_FCS_LEN);
hayeswangebc2ec482013-08-14 20:54:38 +08002344 rx_desc = (struct rx_desc *)rx_data;
Hayes Wang47922fc2019-08-13 11:42:08 +08002345 len_used = agg_offset(agg, rx_data);
hayeswang7937f9e2013-11-20 17:30:54 +08002346 len_used += sizeof(struct rx_desc);
hayeswangebc2ec482013-08-14 20:54:38 +08002347 }
2348
Hayes Wang47922fc2019-08-13 11:42:08 +08002349 WARN_ON(!agg_free && page_count(agg->page) > 1);
2350
2351 if (agg_free) {
2352 spin_lock_irqsave(&tp->rx_lock, flags);
2353 if (page_count(agg->page) == 1) {
2354 list_add(&agg_free->list, &tp->rx_used);
2355 } else {
2356 list_add_tail(&agg->list, &tp->rx_used);
2357 agg = agg_free;
2358 urb = agg->urb;
2359 }
2360 spin_unlock_irqrestore(&tp->rx_lock, flags);
2361 }
2362
hayeswang0de98f62013-08-16 16:09:35 +08002363submit:
hayeswange1a2ca92015-02-06 11:30:45 +08002364 if (!ret) {
2365 ret = r8152_submit_rx(tp, agg, GFP_ATOMIC);
2366 } else {
2367 urb->actual_length = 0;
2368 list_add_tail(&agg->list, next);
2369 }
2370 }
2371
2372 if (!list_empty(&rx_queue)) {
2373 spin_lock_irqsave(&tp->rx_lock, flags);
2374 list_splice_tail(&rx_queue, &tp->rx_done);
2375 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08002376 }
hayeswangd823ab62015-01-12 12:06:23 +08002377
2378out1:
2379 return work_done;
hayeswangebc2ec482013-08-14 20:54:38 +08002380}
2381
2382static void tx_bottom(struct r8152 *tp)
2383{
hayeswangebc2ec482013-08-14 20:54:38 +08002384 int res;
2385
hayeswangb1379d92013-08-16 16:09:37 +08002386 do {
Prashant Malanic01ebd62019-09-30 12:38:18 -07002387 struct net_device *netdev = tp->netdev;
hayeswangb1379d92013-08-16 16:09:37 +08002388 struct tx_agg *agg;
hayeswangebc2ec482013-08-14 20:54:38 +08002389
hayeswangb1379d92013-08-16 16:09:37 +08002390 if (skb_queue_empty(&tp->tx_queue))
hayeswangebc2ec482013-08-14 20:54:38 +08002391 break;
2392
hayeswangb1379d92013-08-16 16:09:37 +08002393 agg = r8152_get_tx_agg(tp);
2394 if (!agg)
hayeswangebc2ec482013-08-14 20:54:38 +08002395 break;
hayeswangb1379d92013-08-16 16:09:37 +08002396
2397 res = r8152_tx_agg_fill(tp, agg);
Prashant Malanic01ebd62019-09-30 12:38:18 -07002398 if (!res)
2399 continue;
hayeswangb1379d92013-08-16 16:09:37 +08002400
Prashant Malanic01ebd62019-09-30 12:38:18 -07002401 if (res == -ENODEV) {
2402 rtl_set_unplug(tp);
2403 netif_device_detach(netdev);
2404 } else {
2405 struct net_device_stats *stats = &netdev->stats;
2406 unsigned long flags;
hayeswang05e0f1a2014-03-06 15:07:18 +08002407
Prashant Malanic01ebd62019-09-30 12:38:18 -07002408 netif_warn(tp, tx_err, netdev,
2409 "failed tx_urb %d\n", res);
2410 stats->tx_dropped += agg->skb_num;
hayeswangdb8515e2014-03-06 15:07:16 +08002411
Prashant Malanic01ebd62019-09-30 12:38:18 -07002412 spin_lock_irqsave(&tp->tx_lock, flags);
2413 list_add_tail(&agg->list, &tp->tx_free);
2414 spin_unlock_irqrestore(&tp->tx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08002415 }
hayeswangb1379d92013-08-16 16:09:37 +08002416 } while (res == 0);
hayeswangebc2ec482013-08-14 20:54:38 +08002417}
2418
Hayes Wangd2187f82019-08-19 14:40:36 +08002419static void bottom_half(unsigned long data)
hayeswangebc2ec482013-08-14 20:54:38 +08002420{
Hayes Wangd2187f82019-08-19 14:40:36 +08002421 struct r8152 *tp;
2422
2423 tp = (struct r8152 *)data;
2424
hayeswangebc2ec482013-08-14 20:54:38 +08002425 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2426 return;
2427
2428 if (!test_bit(WORK_ENABLE, &tp->flags))
2429 return;
2430
hayeswang7559fb2f2013-08-16 16:09:38 +08002431 /* When link down, the driver would cancel all bulks. */
2432 /* This avoid the re-submitting bulk */
hayeswangebc2ec482013-08-14 20:54:38 +08002433 if (!netif_carrier_ok(tp->netdev))
2434 return;
2435
Hayes Wangd2187f82019-08-19 14:40:36 +08002436 clear_bit(SCHEDULE_TASKLET, &tp->flags);
hayeswang9451a112014-11-12 10:05:04 +08002437
hayeswang0c3121f2014-03-07 11:04:36 +08002438 tx_bottom(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08002439}
2440
hayeswangd823ab62015-01-12 12:06:23 +08002441static int r8152_poll(struct napi_struct *napi, int budget)
2442{
2443 struct r8152 *tp = container_of(napi, struct r8152, napi);
2444 int work_done;
2445
2446 work_done = rx_bottom(tp, budget);
hayeswangd823ab62015-01-12 12:06:23 +08002447
2448 if (work_done < budget) {
hayeswanga3307f92017-06-09 17:11:48 +08002449 if (!napi_complete_done(napi, work_done))
2450 goto out;
hayeswangd823ab62015-01-12 12:06:23 +08002451 if (!list_empty(&tp->rx_done))
2452 napi_schedule(napi);
2453 }
2454
hayeswanga3307f92017-06-09 17:11:48 +08002455out:
hayeswangd823ab62015-01-12 12:06:23 +08002456 return work_done;
2457}
2458
hayeswangebc2ec482013-08-14 20:54:38 +08002459static
2460int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
2461{
hayeswanga0fccd42014-11-20 10:29:05 +08002462 int ret;
2463
hayeswangef827a52015-01-09 10:26:36 +08002464 /* The rx would be stopped, so skip submitting */
2465 if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
2466 !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
2467 return 0;
2468
hayeswangebc2ec482013-08-14 20:54:38 +08002469 usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
Hayes Wangd55d7082019-08-13 11:42:07 +08002470 agg->buffer, tp->rx_buf_sz,
hayeswangb209af92014-08-25 15:53:00 +08002471 (usb_complete_t)read_bulk_callback, agg);
hayeswangebc2ec482013-08-14 20:54:38 +08002472
hayeswanga0fccd42014-11-20 10:29:05 +08002473 ret = usb_submit_urb(agg->urb, mem_flags);
2474 if (ret == -ENODEV) {
Hayes Wangffa9fec2019-07-04 17:36:32 +08002475 rtl_set_unplug(tp);
hayeswanga0fccd42014-11-20 10:29:05 +08002476 netif_device_detach(tp->netdev);
2477 } else if (ret) {
2478 struct urb *urb = agg->urb;
2479 unsigned long flags;
2480
2481 urb->actual_length = 0;
2482 spin_lock_irqsave(&tp->rx_lock, flags);
2483 list_add_tail(&agg->list, &tp->rx_done);
2484 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangd823ab62015-01-12 12:06:23 +08002485
2486 netif_err(tp, rx_err, tp->netdev,
2487 "Couldn't submit rx[%p], ret = %d\n", agg, ret);
2488
2489 napi_schedule(&tp->napi);
hayeswanga0fccd42014-11-20 10:29:05 +08002490 }
2491
2492 return ret;
hayeswangac718b62013-05-02 16:01:25 +00002493}
2494
hayeswang00a5e362014-02-18 21:48:59 +08002495static void rtl_drop_queued_tx(struct r8152 *tp)
2496{
2497 struct net_device_stats *stats = &tp->netdev->stats;
hayeswangd84130a2014-02-18 21:49:02 +08002498 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang00a5e362014-02-18 21:48:59 +08002499 struct sk_buff *skb;
2500
hayeswangd84130a2014-02-18 21:49:02 +08002501 if (skb_queue_empty(tx_queue))
2502 return;
2503
2504 __skb_queue_head_init(&skb_head);
hayeswang2685d412014-03-07 11:04:34 +08002505 spin_lock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002506 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang2685d412014-03-07 11:04:34 +08002507 spin_unlock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002508
2509 while ((skb = __skb_dequeue(&skb_head))) {
hayeswang00a5e362014-02-18 21:48:59 +08002510 dev_kfree_skb(skb);
2511 stats->tx_dropped++;
2512 }
2513}
2514
Michael S. Tsirkin0290bd22019-12-10 09:23:51 -05002515static void rtl8152_tx_timeout(struct net_device *netdev, unsigned int txqueue)
hayeswangac718b62013-05-02 16:01:25 +00002516{
2517 struct r8152 *tp = netdev_priv(netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08002518
Hayes Wang4a8deae2014-01-07 11:18:22 +08002519 netif_warn(tp, tx_err, netdev, "Tx timeout\n");
hayeswang37608f32015-07-29 20:39:09 +08002520
2521 usb_queue_reset_device(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00002522}
2523
2524static void rtl8152_set_rx_mode(struct net_device *netdev)
2525{
2526 struct r8152 *tp = netdev_priv(netdev);
2527
hayeswang51d979f2015-02-06 11:30:47 +08002528 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00002529 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08002530 schedule_delayed_work(&tp->schedule, 0);
2531 }
hayeswangac718b62013-05-02 16:01:25 +00002532}
2533
2534static void _rtl8152_set_rx_mode(struct net_device *netdev)
2535{
2536 struct r8152 *tp = netdev_priv(netdev);
hayeswang31787f52013-07-31 17:21:25 +08002537 u32 mc_filter[2]; /* Multicast hash filter */
2538 __le32 tmp[2];
hayeswangac718b62013-05-02 16:01:25 +00002539 u32 ocp_data;
2540
hayeswangac718b62013-05-02 16:01:25 +00002541 netif_stop_queue(netdev);
2542 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2543 ocp_data &= ~RCR_ACPT_ALL;
2544 ocp_data |= RCR_AB | RCR_APM;
2545
2546 if (netdev->flags & IFF_PROMISC) {
2547 /* Unconditionally log net taps. */
2548 netif_notice(tp, link, netdev, "Promiscuous mode enabled\n");
2549 ocp_data |= RCR_AM | RCR_AAP;
hayeswangb209af92014-08-25 15:53:00 +08002550 mc_filter[1] = 0xffffffff;
2551 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00002552 } else if ((netdev_mc_count(netdev) > multicast_filter_limit) ||
2553 (netdev->flags & IFF_ALLMULTI)) {
2554 /* Too many to filter perfectly -- accept all multicasts. */
2555 ocp_data |= RCR_AM;
hayeswangb209af92014-08-25 15:53:00 +08002556 mc_filter[1] = 0xffffffff;
2557 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00002558 } else {
2559 struct netdev_hw_addr *ha;
2560
hayeswangb209af92014-08-25 15:53:00 +08002561 mc_filter[1] = 0;
2562 mc_filter[0] = 0;
hayeswangac718b62013-05-02 16:01:25 +00002563 netdev_for_each_mc_addr(ha, netdev) {
2564 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
hayeswangb209af92014-08-25 15:53:00 +08002565
hayeswangac718b62013-05-02 16:01:25 +00002566 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2567 ocp_data |= RCR_AM;
2568 }
2569 }
2570
hayeswang31787f52013-07-31 17:21:25 +08002571 tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
2572 tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
hayeswangac718b62013-05-02 16:01:25 +00002573
hayeswang31787f52013-07-31 17:21:25 +08002574 pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
hayeswangac718b62013-05-02 16:01:25 +00002575 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2576 netif_wake_queue(netdev);
hayeswangac718b62013-05-02 16:01:25 +00002577}
2578
hayeswanga5e31252015-01-06 17:41:58 +08002579static netdev_features_t
2580rtl8152_features_check(struct sk_buff *skb, struct net_device *dev,
2581 netdev_features_t features)
2582{
2583 u32 mss = skb_shinfo(skb)->gso_size;
2584 int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX;
2585 int offset = skb_transport_offset(skb);
2586
2587 if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset)
Tom Herberta1882222015-12-14 11:19:43 -08002588 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
hayeswanga5e31252015-01-06 17:41:58 +08002589 else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz)
2590 features &= ~NETIF_F_GSO_MASK;
2591
2592 return features;
2593}
2594
hayeswangac718b62013-05-02 16:01:25 +00002595static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb,
hayeswangb209af92014-08-25 15:53:00 +08002596 struct net_device *netdev)
hayeswangac718b62013-05-02 16:01:25 +00002597{
2598 struct r8152 *tp = netdev_priv(netdev);
hayeswangac718b62013-05-02 16:01:25 +00002599
hayeswangac718b62013-05-02 16:01:25 +00002600 skb_tx_timestamp(skb);
hayeswangebc2ec482013-08-14 20:54:38 +08002601
hayeswang61598782013-11-20 17:30:55 +08002602 skb_queue_tail(&tp->tx_queue, skb);
hayeswangebc2ec482013-08-14 20:54:38 +08002603
hayeswang0c3121f2014-03-07 11:04:36 +08002604 if (!list_empty(&tp->tx_free)) {
2605 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
Hayes Wangd2187f82019-08-19 14:40:36 +08002606 set_bit(SCHEDULE_TASKLET, &tp->flags);
hayeswang0c3121f2014-03-07 11:04:36 +08002607 schedule_delayed_work(&tp->schedule, 0);
2608 } else {
2609 usb_mark_last_busy(tp->udev);
Hayes Wangd2187f82019-08-19 14:40:36 +08002610 tasklet_schedule(&tp->tx_tl);
hayeswang0c3121f2014-03-07 11:04:36 +08002611 }
hayeswangb209af92014-08-25 15:53:00 +08002612 } else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) {
hayeswangdd1b1192013-11-20 17:30:56 +08002613 netif_stop_queue(netdev);
hayeswangb209af92014-08-25 15:53:00 +08002614 }
hayeswangdd1b1192013-11-20 17:30:56 +08002615
hayeswangac718b62013-05-02 16:01:25 +00002616 return NETDEV_TX_OK;
2617}
2618
2619static void r8152b_reset_packet_filter(struct r8152 *tp)
2620{
2621 u32 ocp_data;
2622
2623 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC);
2624 ocp_data &= ~FMC_FCR_MCU_EN;
2625 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2626 ocp_data |= FMC_FCR_MCU_EN;
2627 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2628}
2629
2630static void rtl8152_nic_reset(struct r8152 *tp)
2631{
2632 int i;
2633
2634 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST);
2635
2636 for (i = 0; i < 1000; i++) {
2637 if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST))
2638 break;
hayeswangb209af92014-08-25 15:53:00 +08002639 usleep_range(100, 400);
hayeswangac718b62013-05-02 16:01:25 +00002640 }
2641}
2642
hayeswangdd1b1192013-11-20 17:30:56 +08002643static void set_tx_qlen(struct r8152 *tp)
2644{
2645 struct net_device *netdev = tp->netdev;
2646
hayeswangb65c0c92017-06-21 11:25:18 +08002647 tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN +
hayeswang52aec122014-09-02 10:27:52 +08002648 sizeof(struct tx_desc));
hayeswangdd1b1192013-11-20 17:30:56 +08002649}
2650
hayeswangac718b62013-05-02 16:01:25 +00002651static inline u8 rtl8152_get_speed(struct r8152 *tp)
2652{
2653 return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS);
2654}
2655
hayeswang507605a2014-01-02 11:22:43 +08002656static void rtl_set_eee_plus(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002657{
hayeswangebc2ec482013-08-14 20:54:38 +08002658 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002659 u8 speed;
2660
2661 speed = rtl8152_get_speed(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08002662 if (speed & _10bps) {
hayeswangac718b62013-05-02 16:01:25 +00002663 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec482013-08-14 20:54:38 +08002664 ocp_data |= EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002665 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2666 } else {
2667 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec482013-08-14 20:54:38 +08002668 ocp_data &= ~EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002669 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2670 }
hayeswang507605a2014-01-02 11:22:43 +08002671}
2672
hayeswang00a5e362014-02-18 21:48:59 +08002673static void rxdy_gated_en(struct r8152 *tp, bool enable)
2674{
2675 u32 ocp_data;
2676
2677 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1);
2678 if (enable)
2679 ocp_data |= RXDY_GATED_EN;
2680 else
2681 ocp_data &= ~RXDY_GATED_EN;
2682 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data);
2683}
2684
hayeswang445f7f42014-09-23 16:31:47 +08002685static int rtl_start_rx(struct r8152 *tp)
2686{
Hayes Wang252df8b2019-08-13 11:42:06 +08002687 struct rx_agg *agg, *agg_next;
2688 struct list_head tmp_list;
2689 unsigned long flags;
Hayes Wang47922fc2019-08-13 11:42:08 +08002690 int ret = 0, i = 0;
Hayes Wang252df8b2019-08-13 11:42:06 +08002691
2692 INIT_LIST_HEAD(&tmp_list);
2693
2694 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswang445f7f42014-09-23 16:31:47 +08002695
2696 INIT_LIST_HEAD(&tp->rx_done);
Hayes Wang47922fc2019-08-13 11:42:08 +08002697 INIT_LIST_HEAD(&tp->rx_used);
Hayes Wang252df8b2019-08-13 11:42:06 +08002698
2699 list_splice_init(&tp->rx_info, &tmp_list);
2700
2701 spin_unlock_irqrestore(&tp->rx_lock, flags);
2702
2703 list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) {
2704 INIT_LIST_HEAD(&agg->list);
2705
Hayes Wang47922fc2019-08-13 11:42:08 +08002706 /* Only RTL8152_MAX_RX rx_agg need to be submitted. */
2707 if (++i > RTL8152_MAX_RX) {
2708 spin_lock_irqsave(&tp->rx_lock, flags);
2709 list_add_tail(&agg->list, &tp->rx_used);
2710 spin_unlock_irqrestore(&tp->rx_lock, flags);
2711 } else if (unlikely(ret < 0)) {
2712 spin_lock_irqsave(&tp->rx_lock, flags);
Hayes Wang252df8b2019-08-13 11:42:06 +08002713 list_add_tail(&agg->list, &tp->rx_done);
Hayes Wang47922fc2019-08-13 11:42:08 +08002714 spin_unlock_irqrestore(&tp->rx_lock, flags);
2715 } else {
Hayes Wang252df8b2019-08-13 11:42:06 +08002716 ret = r8152_submit_rx(tp, agg, GFP_KERNEL);
Hayes Wang47922fc2019-08-13 11:42:08 +08002717 }
hayeswang445f7f42014-09-23 16:31:47 +08002718 }
2719
Hayes Wang252df8b2019-08-13 11:42:06 +08002720 spin_lock_irqsave(&tp->rx_lock, flags);
2721 WARN_ON(!list_empty(&tp->rx_info));
2722 list_splice(&tmp_list, &tp->rx_info);
2723 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswang7bcf4f62014-11-20 10:29:06 +08002724
hayeswang445f7f42014-09-23 16:31:47 +08002725 return ret;
2726}
2727
2728static int rtl_stop_rx(struct r8152 *tp)
2729{
Hayes Wang252df8b2019-08-13 11:42:06 +08002730 struct rx_agg *agg, *agg_next;
2731 struct list_head tmp_list;
2732 unsigned long flags;
hayeswang445f7f42014-09-23 16:31:47 +08002733
Hayes Wang252df8b2019-08-13 11:42:06 +08002734 INIT_LIST_HEAD(&tmp_list);
2735
2736 /* The usb_kill_urb() couldn't be used in atomic.
2737 * Therefore, move the list of rx_info to a tmp one.
2738 * Then, list_for_each_entry_safe could be used without
2739 * spin lock.
2740 */
2741
2742 spin_lock_irqsave(&tp->rx_lock, flags);
2743 list_splice_init(&tp->rx_info, &tmp_list);
2744 spin_unlock_irqrestore(&tp->rx_lock, flags);
2745
Hayes Wang47922fc2019-08-13 11:42:08 +08002746 list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) {
2747 /* At least RTL8152_MAX_RX rx_agg have the page_count being
2748 * equal to 1, so the other ones could be freed safely.
2749 */
2750 if (page_count(agg->page) > 1)
2751 free_rx_agg(tp, agg);
2752 else
2753 usb_kill_urb(agg->urb);
2754 }
Hayes Wang252df8b2019-08-13 11:42:06 +08002755
2756 /* Move back the list of temp to the rx_info */
2757 spin_lock_irqsave(&tp->rx_lock, flags);
2758 WARN_ON(!list_empty(&tp->rx_info));
2759 list_splice(&tmp_list, &tp->rx_info);
2760 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswang445f7f42014-09-23 16:31:47 +08002761
hayeswangd823ab62015-01-12 12:06:23 +08002762 while (!skb_queue_empty(&tp->rx_queue))
2763 dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2764
hayeswang445f7f42014-09-23 16:31:47 +08002765 return 0;
2766}
2767
Hayes Wang9fae5412019-07-03 15:11:56 +08002768static inline void r8153b_rx_agg_chg_indicate(struct r8152 *tp)
2769{
2770 ocp_write_byte(tp, MCU_TYPE_USB, USB_UPT_RXDMA_OWN,
2771 OWN_UPDATE | OWN_CLEAR);
2772}
2773
hayeswang507605a2014-01-02 11:22:43 +08002774static int rtl_enable(struct r8152 *tp)
2775{
2776 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002777
2778 r8152b_reset_packet_filter(tp);
2779
2780 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2781 ocp_data |= CR_RE | CR_TE;
2782 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2783
Hayes Wang9fae5412019-07-03 15:11:56 +08002784 switch (tp->version) {
2785 case RTL_VER_08:
2786 case RTL_VER_09:
2787 r8153b_rx_agg_chg_indicate(tp);
2788 break;
2789 default:
2790 break;
2791 }
2792
hayeswang00a5e362014-02-18 21:48:59 +08002793 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002794
hayeswangaa2e0922015-01-09 10:26:35 +08002795 return 0;
hayeswangac718b62013-05-02 16:01:25 +00002796}
2797
hayeswang507605a2014-01-02 11:22:43 +08002798static int rtl8152_enable(struct r8152 *tp)
2799{
hayeswang68714382014-04-11 17:54:31 +08002800 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2801 return -ENODEV;
2802
hayeswang507605a2014-01-02 11:22:43 +08002803 set_tx_qlen(tp);
2804 rtl_set_eee_plus(tp);
2805
2806 return rtl_enable(tp);
2807}
2808
hayeswang464ec102015-02-12 14:33:46 +08002809static void r8153_set_rx_early_timeout(struct r8152 *tp)
hayeswang43779f82014-01-02 11:25:10 +08002810{
hayeswang464ec102015-02-12 14:33:46 +08002811 u32 ocp_data = tp->coalesce / 8;
hayeswang43779f82014-01-02 11:25:10 +08002812
hayeswang65b82d62017-06-15 14:44:03 +08002813 switch (tp->version) {
2814 case RTL_VER_03:
2815 case RTL_VER_04:
2816 case RTL_VER_05:
2817 case RTL_VER_06:
2818 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT,
2819 ocp_data);
2820 break;
2821
2822 case RTL_VER_08:
2823 case RTL_VER_09:
2824 /* The RTL8153B uses USB_RX_EXTRA_AGGR_TMR for rx timeout
2825 * primarily. For USB_RX_EARLY_TIMEOUT, we fix it to 128ns.
2826 */
2827 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT,
2828 128 / 8);
2829 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EXTRA_AGGR_TMR,
2830 ocp_data);
hayeswang65b82d62017-06-15 14:44:03 +08002831 break;
2832
2833 default:
2834 break;
2835 }
hayeswang464ec102015-02-12 14:33:46 +08002836}
2837
2838static void r8153_set_rx_early_size(struct r8152 *tp)
2839{
Hayes Wangec5791c2019-08-13 11:42:05 +08002840 u32 ocp_data = tp->rx_buf_sz - rx_reserved_size(tp->netdev->mtu);
hayeswang464ec102015-02-12 14:33:46 +08002841
hayeswang65b82d62017-06-15 14:44:03 +08002842 switch (tp->version) {
2843 case RTL_VER_03:
2844 case RTL_VER_04:
2845 case RTL_VER_05:
2846 case RTL_VER_06:
2847 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE,
2848 ocp_data / 4);
2849 break;
2850 case RTL_VER_08:
2851 case RTL_VER_09:
2852 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE,
2853 ocp_data / 8);
hayeswang65b82d62017-06-15 14:44:03 +08002854 break;
2855 default:
2856 WARN_ON_ONCE(1);
2857 break;
2858 }
hayeswang43779f82014-01-02 11:25:10 +08002859}
2860
2861static int rtl8153_enable(struct r8152 *tp)
2862{
hayeswang68714382014-04-11 17:54:31 +08002863 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2864 return -ENODEV;
2865
hayeswang43779f82014-01-02 11:25:10 +08002866 set_tx_qlen(tp);
2867 rtl_set_eee_plus(tp);
hayeswang464ec102015-02-12 14:33:46 +08002868 r8153_set_rx_early_timeout(tp);
2869 r8153_set_rx_early_size(tp);
hayeswang43779f82014-01-02 11:25:10 +08002870
Hayes Wangf99cd202020-01-22 16:02:06 +08002871 if (tp->version == RTL_VER_09) {
2872 u32 ocp_data;
2873
2874 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK);
2875 ocp_data &= ~FC_PATCH_TASK;
2876 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
2877 usleep_range(1000, 2000);
2878 ocp_data |= FC_PATCH_TASK;
2879 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
2880 }
2881
hayeswang43779f82014-01-02 11:25:10 +08002882 return rtl_enable(tp);
2883}
2884
hayeswangd70b1132014-09-19 15:17:18 +08002885static void rtl_disable(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002886{
hayeswangebc2ec482013-08-14 20:54:38 +08002887 u32 ocp_data;
2888 int i;
hayeswangac718b62013-05-02 16:01:25 +00002889
hayeswang68714382014-04-11 17:54:31 +08002890 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2891 rtl_drop_queued_tx(tp);
2892 return;
2893 }
2894
hayeswangac718b62013-05-02 16:01:25 +00002895 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2896 ocp_data &= ~RCR_ACPT_ALL;
2897 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2898
hayeswang00a5e362014-02-18 21:48:59 +08002899 rtl_drop_queued_tx(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08002900
2901 for (i = 0; i < RTL8152_MAX_TX; i++)
2902 usb_kill_urb(tp->tx_info[i].urb);
hayeswangac718b62013-05-02 16:01:25 +00002903
hayeswang00a5e362014-02-18 21:48:59 +08002904 rxdy_gated_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002905
2906 for (i = 0; i < 1000; i++) {
2907 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2908 if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2909 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002910 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002911 }
2912
2913 for (i = 0; i < 1000; i++) {
2914 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2915 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002916 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002917 }
2918
hayeswang445f7f42014-09-23 16:31:47 +08002919 rtl_stop_rx(tp);
hayeswangac718b62013-05-02 16:01:25 +00002920
2921 rtl8152_nic_reset(tp);
2922}
2923
hayeswang00a5e362014-02-18 21:48:59 +08002924static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2925{
2926 u32 ocp_data;
2927
2928 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2929 if (enable)
2930 ocp_data |= POWER_CUT;
2931 else
2932 ocp_data &= ~POWER_CUT;
2933 ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2934
2935 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2936 ocp_data &= ~RESUME_INDICATE;
2937 ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
hayeswang00a5e362014-02-18 21:48:59 +08002938}
2939
hayeswangc5554292014-09-12 10:43:11 +08002940static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2941{
2942 u32 ocp_data;
2943
2944 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2945 if (enable)
2946 ocp_data |= CPCR_RX_VLAN;
2947 else
2948 ocp_data &= ~CPCR_RX_VLAN;
2949 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2950}
2951
2952static int rtl8152_set_features(struct net_device *dev,
2953 netdev_features_t features)
2954{
2955 netdev_features_t changed = features ^ dev->features;
2956 struct r8152 *tp = netdev_priv(dev);
hayeswang405f8a02014-10-09 18:00:24 +08002957 int ret;
2958
2959 ret = usb_autopm_get_interface(tp->intf);
2960 if (ret < 0)
2961 goto out;
hayeswangc5554292014-09-12 10:43:11 +08002962
hayeswangb5403272014-10-09 18:00:26 +08002963 mutex_lock(&tp->control);
2964
hayeswangc5554292014-09-12 10:43:11 +08002965 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2966 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2967 rtl_rx_vlan_en(tp, true);
2968 else
2969 rtl_rx_vlan_en(tp, false);
2970 }
2971
hayeswangb5403272014-10-09 18:00:26 +08002972 mutex_unlock(&tp->control);
2973
hayeswang405f8a02014-10-09 18:00:24 +08002974 usb_autopm_put_interface(tp->intf);
2975
2976out:
2977 return ret;
hayeswangc5554292014-09-12 10:43:11 +08002978}
2979
hayeswang21ff2e82014-02-18 21:49:06 +08002980#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2981
2982static u32 __rtl_get_wol(struct r8152 *tp)
2983{
2984 u32 ocp_data;
2985 u32 wolopts = 0;
2986
hayeswang21ff2e82014-02-18 21:49:06 +08002987 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2988 if (ocp_data & LINK_ON_WAKE_EN)
2989 wolopts |= WAKE_PHY;
2990
2991 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2992 if (ocp_data & UWF_EN)
2993 wolopts |= WAKE_UCAST;
2994 if (ocp_data & BWF_EN)
2995 wolopts |= WAKE_BCAST;
2996 if (ocp_data & MWF_EN)
2997 wolopts |= WAKE_MCAST;
2998
2999 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
3000 if (ocp_data & MAGIC_EN)
3001 wolopts |= WAKE_MAGIC;
3002
3003 return wolopts;
3004}
3005
3006static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
3007{
3008 u32 ocp_data;
3009
3010 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3011
3012 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3013 ocp_data &= ~LINK_ON_WAKE_EN;
3014 if (wolopts & WAKE_PHY)
3015 ocp_data |= LINK_ON_WAKE_EN;
3016 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3017
3018 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
hayeswang92f7d072016-07-06 17:35:59 +08003019 ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN);
hayeswang21ff2e82014-02-18 21:49:06 +08003020 if (wolopts & WAKE_UCAST)
3021 ocp_data |= UWF_EN;
3022 if (wolopts & WAKE_BCAST)
3023 ocp_data |= BWF_EN;
3024 if (wolopts & WAKE_MCAST)
3025 ocp_data |= MWF_EN;
hayeswang21ff2e82014-02-18 21:49:06 +08003026 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
3027
3028 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
3029
3030 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
3031 ocp_data &= ~MAGIC_EN;
3032 if (wolopts & WAKE_MAGIC)
3033 ocp_data |= MAGIC_EN;
3034 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
3035
3036 if (wolopts & WAKE_ANY)
3037 device_set_wakeup_enable(&tp->udev->dev, true);
3038 else
3039 device_set_wakeup_enable(&tp->udev->dev, false);
3040}
3041
hayeswang134f98b2017-06-09 17:11:40 +08003042static void r8153_mac_clk_spd(struct r8152 *tp, bool enable)
3043{
3044 /* MAC clock speed down */
3045 if (enable) {
3046 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL,
3047 ALDPS_SPDWN_RATIO);
3048 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2,
3049 EEE_SPDWN_RATIO);
3050 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3,
3051 PKT_AVAIL_SPDWN_EN | SUSPEND_SPDWN_EN |
3052 U1U2_SPDWN_EN | L1_SPDWN_EN);
3053 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4,
3054 PWRSAVE_SPDWN_EN | RXDV_SPDWN_EN | TX10MIDLE_EN |
3055 TP100_SPDWN_EN | TP500_SPDWN_EN | EEE_SPDWN_EN |
3056 TP1000_SPDWN_EN);
3057 } else {
3058 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, 0);
3059 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, 0);
3060 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, 0);
3061 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4, 0);
3062 }
3063}
3064
hayeswangb2143962015-07-24 13:54:23 +08003065static void r8153_u1u2en(struct r8152 *tp, bool enable)
3066{
3067 u8 u1u2[8];
3068
3069 if (enable)
3070 memset(u1u2, 0xff, sizeof(u1u2));
3071 else
3072 memset(u1u2, 0x00, sizeof(u1u2));
3073
3074 usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
3075}
3076
hayeswang65b82d62017-06-15 14:44:03 +08003077static void r8153b_u1u2en(struct r8152 *tp, bool enable)
3078{
3079 u32 ocp_data;
3080
3081 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG);
3082 if (enable)
3083 ocp_data |= LPM_U1U2_EN;
3084 else
3085 ocp_data &= ~LPM_U1U2_EN;
3086
3087 ocp_write_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG, ocp_data);
3088}
3089
hayeswangb2143962015-07-24 13:54:23 +08003090static void r8153_u2p3en(struct r8152 *tp, bool enable)
3091{
3092 u32 ocp_data;
3093
3094 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
hayeswang3cb32342017-06-09 17:11:43 +08003095 if (enable)
hayeswangb2143962015-07-24 13:54:23 +08003096 ocp_data |= U2P3_ENABLE;
3097 else
3098 ocp_data &= ~U2P3_ENABLE;
3099 ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
3100}
3101
Hayes Wang0e5b36b2019-09-05 10:46:20 +08003102static void r8153b_ups_flags(struct r8152 *tp)
hayeswang65b82d62017-06-15 14:44:03 +08003103{
Hayes Wang0e5b36b2019-09-05 10:46:20 +08003104 u32 ups_flags = 0;
hayeswang65b82d62017-06-15 14:44:03 +08003105
Hayes Wang0e5b36b2019-09-05 10:46:20 +08003106 if (tp->ups_info.green)
3107 ups_flags |= UPS_FLAGS_EN_GREEN;
3108
3109 if (tp->ups_info.aldps)
3110 ups_flags |= UPS_FLAGS_EN_ALDPS;
3111
3112 if (tp->ups_info.eee)
3113 ups_flags |= UPS_FLAGS_EN_EEE;
3114
3115 if (tp->ups_info.flow_control)
3116 ups_flags |= UPS_FLAGS_EN_FLOW_CTR;
3117
3118 if (tp->ups_info.eee_ckdiv)
3119 ups_flags |= UPS_FLAGS_EN_EEE_CKDIV;
3120
3121 if (tp->ups_info.eee_cmod_lv)
3122 ups_flags |= UPS_FLAGS_EEE_CMOD_LV_EN;
3123
3124 if (tp->ups_info._10m_ckdiv)
3125 ups_flags |= UPS_FLAGS_EN_10M_CKDIV;
3126
3127 if (tp->ups_info.eee_plloff_100)
3128 ups_flags |= UPS_FLAGS_EEE_PLLOFF_100;
3129
3130 if (tp->ups_info.eee_plloff_giga)
3131 ups_flags |= UPS_FLAGS_EEE_PLLOFF_GIGA;
3132
3133 if (tp->ups_info._250m_ckdiv)
3134 ups_flags |= UPS_FLAGS_250M_CKDIV;
3135
3136 if (tp->ups_info.ctap_short_off)
3137 ups_flags |= UPS_FLAGS_CTAP_SHORT_DIS;
3138
3139 switch (tp->ups_info.speed_duplex) {
3140 case NWAY_10M_HALF:
3141 ups_flags |= ups_flags_speed(1);
3142 break;
3143 case NWAY_10M_FULL:
3144 ups_flags |= ups_flags_speed(2);
3145 break;
3146 case NWAY_100M_HALF:
3147 ups_flags |= ups_flags_speed(3);
3148 break;
3149 case NWAY_100M_FULL:
3150 ups_flags |= ups_flags_speed(4);
3151 break;
3152 case NWAY_1000M_FULL:
3153 ups_flags |= ups_flags_speed(5);
3154 break;
3155 case FORCE_10M_HALF:
3156 ups_flags |= ups_flags_speed(6);
3157 break;
3158 case FORCE_10M_FULL:
3159 ups_flags |= ups_flags_speed(7);
3160 break;
3161 case FORCE_100M_HALF:
3162 ups_flags |= ups_flags_speed(8);
3163 break;
3164 case FORCE_100M_FULL:
3165 ups_flags |= ups_flags_speed(9);
3166 break;
3167 default:
3168 break;
3169 }
3170
3171 ocp_write_dword(tp, MCU_TYPE_USB, USB_UPS_FLAGS, ups_flags);
hayeswang65b82d62017-06-15 14:44:03 +08003172}
3173
3174static void r8153b_green_en(struct r8152 *tp, bool enable)
3175{
3176 u16 data;
3177
3178 if (enable) {
3179 sram_write(tp, 0x8045, 0); /* 10M abiq&ldvbias */
3180 sram_write(tp, 0x804d, 0x1222); /* 100M short abiq&ldvbias */
3181 sram_write(tp, 0x805d, 0x0022); /* 1000M short abiq&ldvbias */
3182 } else {
3183 sram_write(tp, 0x8045, 0x2444); /* 10M abiq&ldvbias */
3184 sram_write(tp, 0x804d, 0x2444); /* 100M short abiq&ldvbias */
3185 sram_write(tp, 0x805d, 0x2444); /* 1000M short abiq&ldvbias */
3186 }
3187
3188 data = sram_read(tp, SRAM_GREEN_CFG);
3189 data |= GREEN_ETH_EN;
3190 sram_write(tp, SRAM_GREEN_CFG, data);
3191
Hayes Wang0e5b36b2019-09-05 10:46:20 +08003192 tp->ups_info.green = enable;
hayeswang65b82d62017-06-15 14:44:03 +08003193}
3194
hayeswangc564b872017-06-09 17:11:38 +08003195static u16 r8153_phy_status(struct r8152 *tp, u16 desired)
3196{
3197 u16 data;
3198 int i;
3199
3200 for (i = 0; i < 500; i++) {
3201 data = ocp_reg_read(tp, OCP_PHY_STATUS);
3202 data &= PHY_STAT_MASK;
3203 if (desired) {
3204 if (data == desired)
3205 break;
3206 } else if (data == PHY_STAT_LAN_ON || data == PHY_STAT_PWRDN ||
3207 data == PHY_STAT_EXT_INIT) {
3208 break;
3209 }
3210
3211 msleep(20);
You-Sheng Yangd64c7a02020-02-26 23:37:10 +08003212 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3213 break;
hayeswangc564b872017-06-09 17:11:38 +08003214 }
3215
3216 return data;
3217}
3218
hayeswang65b82d62017-06-15 14:44:03 +08003219static void r8153b_ups_en(struct r8152 *tp, bool enable)
3220{
3221 u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_POWER_CUT);
3222
3223 if (enable) {
Hayes Wang0e5b36b2019-09-05 10:46:20 +08003224 r8153b_ups_flags(tp);
3225
hayeswang65b82d62017-06-15 14:44:03 +08003226 ocp_data |= UPS_EN | USP_PREWAKE | PHASE2_EN;
3227 ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3228
3229 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff);
3230 ocp_data |= BIT(0);
3231 ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data);
3232 } else {
3233 u16 data;
3234
3235 ocp_data &= ~(UPS_EN | USP_PREWAKE);
3236 ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3237
3238 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff);
3239 ocp_data &= ~BIT(0);
3240 ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data);
3241
3242 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3243 ocp_data &= ~PCUT_STATUS;
3244 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3245
3246 data = r8153_phy_status(tp, 0);
3247
3248 switch (data) {
3249 case PHY_STAT_PWRDN:
3250 case PHY_STAT_EXT_INIT:
3251 r8153b_green_en(tp,
3252 test_bit(GREEN_ETHERNET, &tp->flags));
3253
3254 data = r8152_mdio_read(tp, MII_BMCR);
3255 data &= ~BMCR_PDOWN;
3256 data |= BMCR_RESET;
3257 r8152_mdio_write(tp, MII_BMCR, data);
3258
3259 data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003260 fallthrough;
hayeswang65b82d62017-06-15 14:44:03 +08003261
3262 default:
3263 if (data != PHY_STAT_LAN_ON)
3264 netif_warn(tp, link, tp->netdev,
3265 "PHY not ready");
3266 break;
3267 }
3268 }
3269}
3270
hayeswangb2143962015-07-24 13:54:23 +08003271static void r8153_power_cut_en(struct r8152 *tp, bool enable)
3272{
3273 u32 ocp_data;
3274
3275 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
3276 if (enable)
3277 ocp_data |= PWR_EN | PHASE2_EN;
3278 else
3279 ocp_data &= ~(PWR_EN | PHASE2_EN);
3280 ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3281
3282 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3283 ocp_data &= ~PCUT_STATUS;
3284 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3285}
3286
hayeswang65b82d62017-06-15 14:44:03 +08003287static void r8153b_power_cut_en(struct r8152 *tp, bool enable)
3288{
3289 u32 ocp_data;
3290
3291 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
3292 if (enable)
3293 ocp_data |= PWR_EN | PHASE2_EN;
3294 else
3295 ocp_data &= ~PWR_EN;
3296 ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3297
3298 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3299 ocp_data &= ~PCUT_STATUS;
3300 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3301}
3302
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003303static void r8153_queue_wake(struct r8152 *tp, bool enable)
hayeswang65b82d62017-06-15 14:44:03 +08003304{
3305 u32 ocp_data;
3306
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003307 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG);
hayeswang65b82d62017-06-15 14:44:03 +08003308 if (enable)
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003309 ocp_data |= UPCOMING_RUNTIME_D3;
hayeswang65b82d62017-06-15 14:44:03 +08003310 else
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003311 ocp_data &= ~UPCOMING_RUNTIME_D3;
3312 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG, ocp_data);
hayeswang65b82d62017-06-15 14:44:03 +08003313
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003314 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG);
3315 ocp_data &= ~LINK_CHG_EVENT;
3316 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG, ocp_data);
3317
3318 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
3319 ocp_data &= ~LINK_CHANGE_FLAG;
3320 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
hayeswang65b82d62017-06-15 14:44:03 +08003321}
3322
hayeswang7daed8d2015-07-24 13:54:24 +08003323static bool rtl_can_wakeup(struct r8152 *tp)
3324{
3325 struct usb_device *udev = tp->udev;
3326
3327 return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP);
3328}
3329
hayeswang9a4be1b2014-02-18 21:49:07 +08003330static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
3331{
3332 if (enable) {
3333 u32 ocp_data;
3334
3335 __rtl_set_wol(tp, WAKE_ANY);
3336
3337 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3338
3339 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3340 ocp_data |= LINK_OFF_WAKE_EN;
3341 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3342
3343 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
3344 } else {
hayeswangf95ae8a2016-06-30 15:33:35 +08003345 u32 ocp_data;
3346
hayeswang9a4be1b2014-02-18 21:49:07 +08003347 __rtl_set_wol(tp, tp->saved_wolopts);
hayeswangf95ae8a2016-06-30 15:33:35 +08003348
3349 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3350
3351 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3352 ocp_data &= ~LINK_OFF_WAKE_EN;
3353 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3354
3355 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
hayeswang2609af12016-07-05 16:11:46 +08003356 }
3357}
hayeswangf95ae8a2016-06-30 15:33:35 +08003358
hayeswang2609af12016-07-05 16:11:46 +08003359static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
3360{
hayeswang2609af12016-07-05 16:11:46 +08003361 if (enable) {
3362 r8153_u1u2en(tp, false);
3363 r8153_u2p3en(tp, false);
hayeswang134f98b2017-06-09 17:11:40 +08003364 r8153_mac_clk_spd(tp, true);
hayeswang02552752017-06-09 17:11:42 +08003365 rtl_runtime_suspend_enable(tp, true);
hayeswang2609af12016-07-05 16:11:46 +08003366 } else {
hayeswang02552752017-06-09 17:11:42 +08003367 rtl_runtime_suspend_enable(tp, false);
hayeswang134f98b2017-06-09 17:11:40 +08003368 r8153_mac_clk_spd(tp, false);
hayeswang3cb32342017-06-09 17:11:43 +08003369
3370 switch (tp->version) {
3371 case RTL_VER_03:
3372 case RTL_VER_04:
3373 break;
3374 case RTL_VER_05:
3375 case RTL_VER_06:
3376 default:
3377 r8153_u2p3en(tp, true);
3378 break;
3379 }
3380
hayeswangb2143962015-07-24 13:54:23 +08003381 r8153_u1u2en(tp, true);
hayeswang9a4be1b2014-02-18 21:49:07 +08003382 }
3383}
3384
hayeswang65b82d62017-06-15 14:44:03 +08003385static void rtl8153b_runtime_enable(struct r8152 *tp, bool enable)
3386{
3387 if (enable) {
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003388 r8153_queue_wake(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08003389 r8153b_u1u2en(tp, false);
3390 r8153_u2p3en(tp, false);
3391 rtl_runtime_suspend_enable(tp, true);
3392 r8153b_ups_en(tp, true);
3393 } else {
3394 r8153b_ups_en(tp, false);
Hayes Wang13e04fbf2019-07-01 15:53:19 +08003395 r8153_queue_wake(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08003396 rtl_runtime_suspend_enable(tp, false);
Hayes Wanga0246da2020-01-22 16:02:11 +08003397 if (tp->udev->speed != USB_SPEED_HIGH)
3398 r8153b_u1u2en(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08003399 }
3400}
3401
hayeswang43499682014-02-18 21:48:58 +08003402static void r8153_teredo_off(struct r8152 *tp)
3403{
3404 u32 ocp_data;
3405
hayeswang65b82d62017-06-15 14:44:03 +08003406 switch (tp->version) {
3407 case RTL_VER_01:
3408 case RTL_VER_02:
3409 case RTL_VER_03:
3410 case RTL_VER_04:
3411 case RTL_VER_05:
3412 case RTL_VER_06:
3413 case RTL_VER_07:
3414 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
3415 ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK |
3416 OOB_TEREDO_EN);
3417 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
3418 break;
3419
3420 case RTL_VER_08:
3421 case RTL_VER_09:
3422 /* The bit 0 ~ 7 are relative with teredo settings. They are
3423 * W1C (write 1 to clear), so set all 1 to disable it.
3424 */
3425 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, 0xff);
3426 break;
3427
3428 default:
3429 break;
3430 }
hayeswang43499682014-02-18 21:48:58 +08003431
3432 ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
3433 ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
3434 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
3435}
3436
hayeswang93fe9b12016-06-16 10:55:18 +08003437static void rtl_reset_bmu(struct r8152 *tp)
3438{
3439 u32 ocp_data;
3440
3441 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_BMU_RESET);
3442 ocp_data &= ~(BMU_RESET_EP_IN | BMU_RESET_EP_OUT);
3443 ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
3444 ocp_data |= BMU_RESET_EP_IN | BMU_RESET_EP_OUT;
3445 ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
3446}
3447
Hayes Wang9370f2d2019-10-16 11:02:42 +08003448/* Clear the bp to stop the firmware before loading a new one */
3449static void rtl_clear_bp(struct r8152 *tp, u16 type)
3450{
3451 switch (tp->version) {
3452 case RTL_VER_01:
3453 case RTL_VER_02:
3454 case RTL_VER_07:
3455 break;
3456 case RTL_VER_03:
3457 case RTL_VER_04:
3458 case RTL_VER_05:
3459 case RTL_VER_06:
3460 ocp_write_byte(tp, type, PLA_BP_EN, 0);
3461 break;
3462 case RTL_VER_08:
3463 case RTL_VER_09:
3464 default:
3465 if (type == MCU_TYPE_USB) {
3466 ocp_write_byte(tp, MCU_TYPE_USB, USB_BP2_EN, 0);
3467
3468 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_8, 0);
3469 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_9, 0);
3470 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_10, 0);
3471 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_11, 0);
3472 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_12, 0);
3473 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_13, 0);
3474 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_14, 0);
3475 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_15, 0);
3476 } else {
3477 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_BP_EN, 0);
3478 }
3479 break;
3480 }
3481
3482 ocp_write_word(tp, type, PLA_BP_0, 0);
3483 ocp_write_word(tp, type, PLA_BP_1, 0);
3484 ocp_write_word(tp, type, PLA_BP_2, 0);
3485 ocp_write_word(tp, type, PLA_BP_3, 0);
3486 ocp_write_word(tp, type, PLA_BP_4, 0);
3487 ocp_write_word(tp, type, PLA_BP_5, 0);
3488 ocp_write_word(tp, type, PLA_BP_6, 0);
3489 ocp_write_word(tp, type, PLA_BP_7, 0);
3490
3491 /* wait 3 ms to make sure the firmware is stopped */
3492 usleep_range(3000, 6000);
3493 ocp_write_word(tp, type, PLA_BP_BA, 0);
3494}
3495
Hayes Wang470e3912019-10-21 11:41:12 +08003496static int r8153_patch_request(struct r8152 *tp, bool request)
3497{
3498 u16 data;
3499 int i;
3500
3501 data = ocp_reg_read(tp, OCP_PHY_PATCH_CMD);
3502 if (request)
3503 data |= PATCH_REQUEST;
3504 else
3505 data &= ~PATCH_REQUEST;
3506 ocp_reg_write(tp, OCP_PHY_PATCH_CMD, data);
3507
3508 for (i = 0; request && i < 5000; i++) {
3509 usleep_range(1000, 2000);
3510 if (ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY)
3511 break;
3512 }
3513
3514 if (request && !(ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY)) {
3515 netif_err(tp, drv, tp->netdev, "patch request fail\n");
3516 r8153_patch_request(tp, false);
3517 return -ETIME;
3518 } else {
3519 return 0;
3520 }
3521}
3522
Hayes Wangaf142882019-10-21 11:41:13 +08003523static int r8153_pre_ram_code(struct r8152 *tp, u16 key_addr, u16 patch_key)
3524{
3525 if (r8153_patch_request(tp, true)) {
3526 dev_err(&tp->intf->dev, "patch request fail\n");
3527 return -ETIME;
3528 }
3529
3530 sram_write(tp, key_addr, patch_key);
3531 sram_write(tp, SRAM_PHY_LOCK, PHY_PATCH_LOCK);
3532
3533 return 0;
3534}
3535
3536static int r8153_post_ram_code(struct r8152 *tp, u16 key_addr)
3537{
3538 u16 data;
3539
3540 sram_write(tp, 0x0000, 0x0000);
3541
3542 data = ocp_reg_read(tp, OCP_PHY_LOCK);
3543 data &= ~PATCH_LOCK;
3544 ocp_reg_write(tp, OCP_PHY_LOCK, data);
3545
3546 sram_write(tp, key_addr, 0x0000);
3547
3548 r8153_patch_request(tp, false);
3549
3550 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, tp->ocp_base);
3551
3552 return 0;
3553}
3554
3555static bool rtl8152_is_fw_phy_nc_ok(struct r8152 *tp, struct fw_phy_nc *phy)
3556{
3557 u32 length;
3558 u16 fw_offset, fw_reg, ba_reg, patch_en_addr, mode_reg, bp_start;
3559 bool rc = false;
3560
3561 switch (tp->version) {
3562 case RTL_VER_04:
3563 case RTL_VER_05:
3564 case RTL_VER_06:
3565 fw_reg = 0xa014;
3566 ba_reg = 0xa012;
3567 patch_en_addr = 0xa01a;
3568 mode_reg = 0xb820;
3569 bp_start = 0xa000;
3570 break;
3571 default:
3572 goto out;
3573 }
3574
3575 fw_offset = __le16_to_cpu(phy->fw_offset);
3576 if (fw_offset < sizeof(*phy)) {
3577 dev_err(&tp->intf->dev, "fw_offset too small\n");
3578 goto out;
3579 }
3580
3581 length = __le32_to_cpu(phy->blk_hdr.length);
3582 if (length < fw_offset) {
3583 dev_err(&tp->intf->dev, "invalid fw_offset\n");
3584 goto out;
3585 }
3586
3587 length -= __le16_to_cpu(phy->fw_offset);
3588 if (!length || (length & 1)) {
3589 dev_err(&tp->intf->dev, "invalid block length\n");
3590 goto out;
3591 }
3592
3593 if (__le16_to_cpu(phy->fw_reg) != fw_reg) {
3594 dev_err(&tp->intf->dev, "invalid register to load firmware\n");
3595 goto out;
3596 }
3597
3598 if (__le16_to_cpu(phy->ba_reg) != ba_reg) {
3599 dev_err(&tp->intf->dev, "invalid base address register\n");
3600 goto out;
3601 }
3602
3603 if (__le16_to_cpu(phy->patch_en_addr) != patch_en_addr) {
3604 dev_err(&tp->intf->dev,
3605 "invalid patch mode enabled register\n");
3606 goto out;
3607 }
3608
3609 if (__le16_to_cpu(phy->mode_reg) != mode_reg) {
3610 dev_err(&tp->intf->dev,
3611 "invalid register to switch the mode\n");
3612 goto out;
3613 }
3614
3615 if (__le16_to_cpu(phy->bp_start) != bp_start) {
3616 dev_err(&tp->intf->dev,
3617 "invalid start register of break point\n");
3618 goto out;
3619 }
3620
3621 if (__le16_to_cpu(phy->bp_num) > 4) {
3622 dev_err(&tp->intf->dev, "invalid break point number\n");
3623 goto out;
3624 }
3625
3626 rc = true;
3627out:
3628 return rc;
3629}
3630
Hayes Wanga66edaa2019-10-21 11:41:10 +08003631static bool rtl8152_is_fw_mac_ok(struct r8152 *tp, struct fw_mac *mac)
Hayes Wang9370f2d2019-10-16 11:02:42 +08003632{
Hayes Wang5a16a3d2019-10-21 11:41:11 +08003633 u16 fw_reg, bp_ba_addr, bp_en_addr, bp_start, fw_offset;
Hayes Wang9370f2d2019-10-16 11:02:42 +08003634 bool rc = false;
3635 u32 length, type;
3636 int i, max_bp;
3637
Hayes Wanga66edaa2019-10-21 11:41:10 +08003638 type = __le32_to_cpu(mac->blk_hdr.type);
Hayes Wang9370f2d2019-10-16 11:02:42 +08003639 if (type == RTL_FW_PLA) {
3640 switch (tp->version) {
3641 case RTL_VER_01:
3642 case RTL_VER_02:
3643 case RTL_VER_07:
3644 fw_reg = 0xf800;
3645 bp_ba_addr = PLA_BP_BA;
3646 bp_en_addr = 0;
3647 bp_start = PLA_BP_0;
3648 max_bp = 8;
3649 break;
3650 case RTL_VER_03:
3651 case RTL_VER_04:
3652 case RTL_VER_05:
3653 case RTL_VER_06:
3654 case RTL_VER_08:
3655 case RTL_VER_09:
3656 fw_reg = 0xf800;
3657 bp_ba_addr = PLA_BP_BA;
3658 bp_en_addr = PLA_BP_EN;
3659 bp_start = PLA_BP_0;
3660 max_bp = 8;
3661 break;
3662 default:
3663 goto out;
3664 }
3665 } else if (type == RTL_FW_USB) {
3666 switch (tp->version) {
3667 case RTL_VER_03:
3668 case RTL_VER_04:
3669 case RTL_VER_05:
3670 case RTL_VER_06:
3671 fw_reg = 0xf800;
3672 bp_ba_addr = USB_BP_BA;
3673 bp_en_addr = USB_BP_EN;
3674 bp_start = USB_BP_0;
3675 max_bp = 8;
3676 break;
3677 case RTL_VER_08:
3678 case RTL_VER_09:
3679 fw_reg = 0xe600;
3680 bp_ba_addr = USB_BP_BA;
3681 bp_en_addr = USB_BP2_EN;
3682 bp_start = USB_BP_0;
3683 max_bp = 16;
3684 break;
3685 case RTL_VER_01:
3686 case RTL_VER_02:
3687 case RTL_VER_07:
3688 default:
3689 goto out;
3690 }
3691 } else {
3692 goto out;
3693 }
3694
Hayes Wang5a16a3d2019-10-21 11:41:11 +08003695 fw_offset = __le16_to_cpu(mac->fw_offset);
3696 if (fw_offset < sizeof(*mac)) {
3697 dev_err(&tp->intf->dev, "fw_offset too small\n");
3698 goto out;
3699 }
3700
Hayes Wanga66edaa2019-10-21 11:41:10 +08003701 length = __le32_to_cpu(mac->blk_hdr.length);
Hayes Wang5a16a3d2019-10-21 11:41:11 +08003702 if (length < fw_offset) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003703 dev_err(&tp->intf->dev, "invalid fw_offset\n");
3704 goto out;
3705 }
3706
Hayes Wang5a16a3d2019-10-21 11:41:11 +08003707 length -= fw_offset;
Hayes Wang9370f2d2019-10-16 11:02:42 +08003708 if (length < 4 || (length & 3)) {
3709 dev_err(&tp->intf->dev, "invalid block length\n");
3710 goto out;
3711 }
3712
Hayes Wanga66edaa2019-10-21 11:41:10 +08003713 if (__le16_to_cpu(mac->fw_reg) != fw_reg) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003714 dev_err(&tp->intf->dev, "invalid register to load firmware\n");
3715 goto out;
3716 }
3717
Hayes Wanga66edaa2019-10-21 11:41:10 +08003718 if (__le16_to_cpu(mac->bp_ba_addr) != bp_ba_addr) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003719 dev_err(&tp->intf->dev, "invalid base address register\n");
3720 goto out;
3721 }
3722
Hayes Wanga66edaa2019-10-21 11:41:10 +08003723 if (__le16_to_cpu(mac->bp_en_addr) != bp_en_addr) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003724 dev_err(&tp->intf->dev, "invalid enabled mask register\n");
3725 goto out;
3726 }
3727
Hayes Wanga66edaa2019-10-21 11:41:10 +08003728 if (__le16_to_cpu(mac->bp_start) != bp_start) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003729 dev_err(&tp->intf->dev,
3730 "invalid start register of break point\n");
3731 goto out;
3732 }
3733
Hayes Wanga66edaa2019-10-21 11:41:10 +08003734 if (__le16_to_cpu(mac->bp_num) > max_bp) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003735 dev_err(&tp->intf->dev, "invalid break point number\n");
3736 goto out;
3737 }
3738
Hayes Wanga66edaa2019-10-21 11:41:10 +08003739 for (i = __le16_to_cpu(mac->bp_num); i < max_bp; i++) {
3740 if (mac->bp[i]) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003741 dev_err(&tp->intf->dev, "unused bp%u is not zero\n", i);
3742 goto out;
3743 }
3744 }
3745
3746 rc = true;
3747out:
3748 return rc;
3749}
3750
3751/* Verify the checksum for the firmware file. It is calculated from the version
3752 * field to the end of the file. Compare the result with the checksum field to
3753 * make sure the file is correct.
3754 */
3755static long rtl8152_fw_verify_checksum(struct r8152 *tp,
3756 struct fw_header *fw_hdr, size_t size)
3757{
3758 unsigned char checksum[sizeof(fw_hdr->checksum)];
3759 struct crypto_shash *alg;
3760 struct shash_desc *sdesc;
3761 size_t len;
3762 long rc;
3763
3764 alg = crypto_alloc_shash("sha256", 0, 0);
3765 if (IS_ERR(alg)) {
3766 rc = PTR_ERR(alg);
3767 goto out;
3768 }
3769
3770 if (crypto_shash_digestsize(alg) != sizeof(fw_hdr->checksum)) {
3771 rc = -EFAULT;
3772 dev_err(&tp->intf->dev, "digestsize incorrect (%u)\n",
3773 crypto_shash_digestsize(alg));
3774 goto free_shash;
3775 }
3776
3777 len = sizeof(*sdesc) + crypto_shash_descsize(alg);
3778 sdesc = kmalloc(len, GFP_KERNEL);
3779 if (!sdesc) {
3780 rc = -ENOMEM;
3781 goto free_shash;
3782 }
3783 sdesc->tfm = alg;
3784
3785 len = size - sizeof(fw_hdr->checksum);
3786 rc = crypto_shash_digest(sdesc, fw_hdr->version, len, checksum);
3787 kfree(sdesc);
3788 if (rc)
3789 goto free_shash;
3790
3791 if (memcmp(fw_hdr->checksum, checksum, sizeof(fw_hdr->checksum))) {
3792 dev_err(&tp->intf->dev, "checksum fail\n");
3793 rc = -EFAULT;
3794 }
3795
3796free_shash:
3797 crypto_free_shash(alg);
3798out:
3799 return rc;
3800}
3801
3802static long rtl8152_check_firmware(struct r8152 *tp, struct rtl_fw *rtl_fw)
3803{
3804 const struct firmware *fw = rtl_fw->fw;
3805 struct fw_header *fw_hdr = (struct fw_header *)fw->data;
Hayes Wanga66edaa2019-10-21 11:41:10 +08003806 struct fw_mac *pla = NULL, *usb = NULL;
Hayes Wangaf142882019-10-21 11:41:13 +08003807 struct fw_phy_patch_key *start = NULL;
3808 struct fw_phy_nc *phy_nc = NULL;
3809 struct fw_block *stop = NULL;
Hayes Wang9370f2d2019-10-16 11:02:42 +08003810 long ret = -EFAULT;
3811 int i;
3812
3813 if (fw->size < sizeof(*fw_hdr)) {
3814 dev_err(&tp->intf->dev, "file too small\n");
3815 goto fail;
3816 }
3817
3818 ret = rtl8152_fw_verify_checksum(tp, fw_hdr, fw->size);
3819 if (ret)
3820 goto fail;
3821
3822 ret = -EFAULT;
3823
3824 for (i = sizeof(*fw_hdr); i < fw->size;) {
3825 struct fw_block *block = (struct fw_block *)&fw->data[i];
3826 u32 type;
3827
3828 if ((i + sizeof(*block)) > fw->size)
3829 goto fail;
3830
3831 type = __le32_to_cpu(block->type);
3832 switch (type) {
3833 case RTL_FW_END:
3834 if (__le32_to_cpu(block->length) != sizeof(*block))
3835 goto fail;
Hayes Wangaf142882019-10-21 11:41:13 +08003836 goto fw_end;
Hayes Wang9370f2d2019-10-16 11:02:42 +08003837 case RTL_FW_PLA:
3838 if (pla) {
3839 dev_err(&tp->intf->dev,
3840 "multiple PLA firmware encountered");
3841 goto fail;
3842 }
3843
Hayes Wanga66edaa2019-10-21 11:41:10 +08003844 pla = (struct fw_mac *)block;
3845 if (!rtl8152_is_fw_mac_ok(tp, pla)) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003846 dev_err(&tp->intf->dev,
Hayes Wanga66edaa2019-10-21 11:41:10 +08003847 "check PLA firmware failed\n");
Hayes Wang9370f2d2019-10-16 11:02:42 +08003848 goto fail;
3849 }
3850 break;
3851 case RTL_FW_USB:
3852 if (usb) {
3853 dev_err(&tp->intf->dev,
3854 "multiple USB firmware encountered");
3855 goto fail;
3856 }
3857
Hayes Wanga66edaa2019-10-21 11:41:10 +08003858 usb = (struct fw_mac *)block;
3859 if (!rtl8152_is_fw_mac_ok(tp, usb)) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003860 dev_err(&tp->intf->dev,
Hayes Wanga66edaa2019-10-21 11:41:10 +08003861 "check USB firmware failed\n");
Hayes Wang9370f2d2019-10-16 11:02:42 +08003862 goto fail;
3863 }
3864 break;
Hayes Wangaf142882019-10-21 11:41:13 +08003865 case RTL_FW_PHY_START:
3866 if (start || phy_nc || stop) {
3867 dev_err(&tp->intf->dev,
3868 "check PHY_START fail\n");
3869 goto fail;
3870 }
3871
3872 if (__le32_to_cpu(block->length) != sizeof(*start)) {
3873 dev_err(&tp->intf->dev,
3874 "Invalid length for PHY_START\n");
3875 goto fail;
3876 }
3877
3878 start = (struct fw_phy_patch_key *)block;
3879 break;
3880 case RTL_FW_PHY_STOP:
3881 if (stop || !start) {
3882 dev_err(&tp->intf->dev,
3883 "Check PHY_STOP fail\n");
3884 goto fail;
3885 }
3886
3887 if (__le32_to_cpu(block->length) != sizeof(*block)) {
3888 dev_err(&tp->intf->dev,
3889 "Invalid length for PHY_STOP\n");
3890 goto fail;
3891 }
3892
3893 stop = block;
3894 break;
3895 case RTL_FW_PHY_NC:
3896 if (!start || stop) {
3897 dev_err(&tp->intf->dev,
3898 "check PHY_NC fail\n");
3899 goto fail;
3900 }
3901
3902 if (phy_nc) {
3903 dev_err(&tp->intf->dev,
3904 "multiple PHY NC encountered\n");
3905 goto fail;
3906 }
3907
3908 phy_nc = (struct fw_phy_nc *)block;
3909 if (!rtl8152_is_fw_phy_nc_ok(tp, phy_nc)) {
3910 dev_err(&tp->intf->dev,
3911 "check PHY NC firmware failed\n");
3912 goto fail;
3913 }
3914
3915 break;
Hayes Wang9370f2d2019-10-16 11:02:42 +08003916 default:
3917 dev_warn(&tp->intf->dev, "Unknown type %u is found\n",
3918 type);
3919 break;
3920 }
3921
3922 /* next block */
3923 i += ALIGN(__le32_to_cpu(block->length), 8);
3924 }
3925
Hayes Wangaf142882019-10-21 11:41:13 +08003926fw_end:
3927 if ((phy_nc || start) && !stop) {
3928 dev_err(&tp->intf->dev, "without PHY_STOP\n");
3929 goto fail;
3930 }
3931
Hayes Wang9370f2d2019-10-16 11:02:42 +08003932 return 0;
3933fail:
3934 return ret;
3935}
3936
Hayes Wangaf142882019-10-21 11:41:13 +08003937static void rtl8152_fw_phy_nc_apply(struct r8152 *tp, struct fw_phy_nc *phy)
3938{
3939 u16 mode_reg, bp_index;
3940 u32 length, i, num;
3941 __le16 *data;
3942
3943 mode_reg = __le16_to_cpu(phy->mode_reg);
3944 sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_pre));
3945 sram_write(tp, __le16_to_cpu(phy->ba_reg),
3946 __le16_to_cpu(phy->ba_data));
3947
3948 length = __le32_to_cpu(phy->blk_hdr.length);
3949 length -= __le16_to_cpu(phy->fw_offset);
3950 num = length / 2;
3951 data = (__le16 *)((u8 *)phy + __le16_to_cpu(phy->fw_offset));
3952
3953 ocp_reg_write(tp, OCP_SRAM_ADDR, __le16_to_cpu(phy->fw_reg));
3954 for (i = 0; i < num; i++)
3955 ocp_reg_write(tp, OCP_SRAM_DATA, __le16_to_cpu(data[i]));
3956
3957 sram_write(tp, __le16_to_cpu(phy->patch_en_addr),
3958 __le16_to_cpu(phy->patch_en_value));
3959
3960 bp_index = __le16_to_cpu(phy->bp_start);
3961 num = __le16_to_cpu(phy->bp_num);
3962 for (i = 0; i < num; i++) {
3963 sram_write(tp, bp_index, __le16_to_cpu(phy->bp[i]));
3964 bp_index += 2;
3965 }
3966
3967 sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_post));
3968
3969 dev_dbg(&tp->intf->dev, "successfully applied %s\n", phy->info);
3970}
3971
Hayes Wanga66edaa2019-10-21 11:41:10 +08003972static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac)
Hayes Wang9370f2d2019-10-16 11:02:42 +08003973{
3974 u16 bp_en_addr, bp_index, type, bp_num, fw_ver_reg;
3975 u32 length;
3976 u8 *data;
3977 int i;
3978
Hayes Wanga66edaa2019-10-21 11:41:10 +08003979 switch (__le32_to_cpu(mac->blk_hdr.type)) {
Hayes Wang9370f2d2019-10-16 11:02:42 +08003980 case RTL_FW_PLA:
3981 type = MCU_TYPE_PLA;
3982 break;
3983 case RTL_FW_USB:
3984 type = MCU_TYPE_USB;
3985 break;
3986 default:
3987 return;
3988 }
3989
3990 rtl_clear_bp(tp, type);
3991
3992 /* Enable backup/restore of MACDBG. This is required after clearing PLA
3993 * break points and before applying the PLA firmware.
3994 */
3995 if (tp->version == RTL_VER_04 && type == MCU_TYPE_PLA &&
3996 !(ocp_read_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST) & DEBUG_OE)) {
3997 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_PRE, DEBUG_LTSSM);
3998 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST, DEBUG_LTSSM);
3999 }
4000
Hayes Wanga66edaa2019-10-21 11:41:10 +08004001 length = __le32_to_cpu(mac->blk_hdr.length);
4002 length -= __le16_to_cpu(mac->fw_offset);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004003
Hayes Wanga66edaa2019-10-21 11:41:10 +08004004 data = (u8 *)mac;
4005 data += __le16_to_cpu(mac->fw_offset);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004006
Hayes Wanga66edaa2019-10-21 11:41:10 +08004007 generic_ocp_write(tp, __le16_to_cpu(mac->fw_reg), 0xff, length, data,
Hayes Wang9370f2d2019-10-16 11:02:42 +08004008 type);
4009
Hayes Wanga66edaa2019-10-21 11:41:10 +08004010 ocp_write_word(tp, type, __le16_to_cpu(mac->bp_ba_addr),
4011 __le16_to_cpu(mac->bp_ba_value));
Hayes Wang9370f2d2019-10-16 11:02:42 +08004012
Hayes Wanga66edaa2019-10-21 11:41:10 +08004013 bp_index = __le16_to_cpu(mac->bp_start);
4014 bp_num = __le16_to_cpu(mac->bp_num);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004015 for (i = 0; i < bp_num; i++) {
Hayes Wanga66edaa2019-10-21 11:41:10 +08004016 ocp_write_word(tp, type, bp_index, __le16_to_cpu(mac->bp[i]));
Hayes Wang9370f2d2019-10-16 11:02:42 +08004017 bp_index += 2;
4018 }
4019
Hayes Wanga66edaa2019-10-21 11:41:10 +08004020 bp_en_addr = __le16_to_cpu(mac->bp_en_addr);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004021 if (bp_en_addr)
4022 ocp_write_word(tp, type, bp_en_addr,
Hayes Wanga66edaa2019-10-21 11:41:10 +08004023 __le16_to_cpu(mac->bp_en_value));
Hayes Wang9370f2d2019-10-16 11:02:42 +08004024
Hayes Wanga66edaa2019-10-21 11:41:10 +08004025 fw_ver_reg = __le16_to_cpu(mac->fw_ver_reg);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004026 if (fw_ver_reg)
4027 ocp_write_byte(tp, MCU_TYPE_USB, fw_ver_reg,
Hayes Wanga66edaa2019-10-21 11:41:10 +08004028 mac->fw_ver_data);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004029
Hayes Wanga66edaa2019-10-21 11:41:10 +08004030 dev_dbg(&tp->intf->dev, "successfully applied %s\n", mac->info);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004031}
4032
4033static void rtl8152_apply_firmware(struct r8152 *tp)
4034{
4035 struct rtl_fw *rtl_fw = &tp->rtl_fw;
Hayes Wang8e484eb2019-10-23 21:24:44 +08004036 const struct firmware *fw;
4037 struct fw_header *fw_hdr;
Hayes Wangaf142882019-10-21 11:41:13 +08004038 struct fw_phy_patch_key *key;
4039 u16 key_addr = 0;
Hayes Wang9370f2d2019-10-16 11:02:42 +08004040 int i;
4041
4042 if (IS_ERR_OR_NULL(rtl_fw->fw))
4043 return;
4044
Hayes Wang8e484eb2019-10-23 21:24:44 +08004045 fw = rtl_fw->fw;
4046 fw_hdr = (struct fw_header *)fw->data;
4047
Hayes Wang9370f2d2019-10-16 11:02:42 +08004048 if (rtl_fw->pre_fw)
4049 rtl_fw->pre_fw(tp);
4050
4051 for (i = offsetof(struct fw_header, blocks); i < fw->size;) {
4052 struct fw_block *block = (struct fw_block *)&fw->data[i];
4053
4054 switch (__le32_to_cpu(block->type)) {
4055 case RTL_FW_END:
4056 goto post_fw;
4057 case RTL_FW_PLA:
4058 case RTL_FW_USB:
Hayes Wanga66edaa2019-10-21 11:41:10 +08004059 rtl8152_fw_mac_apply(tp, (struct fw_mac *)block);
Hayes Wang9370f2d2019-10-16 11:02:42 +08004060 break;
Hayes Wangaf142882019-10-21 11:41:13 +08004061 case RTL_FW_PHY_START:
4062 key = (struct fw_phy_patch_key *)block;
4063 key_addr = __le16_to_cpu(key->key_reg);
4064 r8153_pre_ram_code(tp, key_addr,
4065 __le16_to_cpu(key->key_data));
4066 break;
4067 case RTL_FW_PHY_STOP:
4068 WARN_ON(!key_addr);
4069 r8153_post_ram_code(tp, key_addr);
4070 break;
4071 case RTL_FW_PHY_NC:
4072 rtl8152_fw_phy_nc_apply(tp, (struct fw_phy_nc *)block);
4073 break;
Hayes Wang9370f2d2019-10-16 11:02:42 +08004074 default:
4075 break;
4076 }
4077
4078 i += ALIGN(__le32_to_cpu(block->length), 8);
4079 }
4080
4081post_fw:
4082 if (rtl_fw->post_fw)
4083 rtl_fw->post_fw(tp);
4084
4085 strscpy(rtl_fw->version, fw_hdr->version, RTL_VER_SIZE);
4086 dev_info(&tp->intf->dev, "load %s successfully\n", rtl_fw->version);
4087}
4088
4089static void rtl8152_release_firmware(struct r8152 *tp)
4090{
4091 struct rtl_fw *rtl_fw = &tp->rtl_fw;
4092
4093 if (!IS_ERR_OR_NULL(rtl_fw->fw)) {
4094 release_firmware(rtl_fw->fw);
4095 rtl_fw->fw = NULL;
4096 }
4097}
4098
4099static int rtl8152_request_firmware(struct r8152 *tp)
4100{
4101 struct rtl_fw *rtl_fw = &tp->rtl_fw;
4102 long rc;
4103
4104 if (rtl_fw->fw || !rtl_fw->fw_name) {
4105 dev_info(&tp->intf->dev, "skip request firmware\n");
4106 rc = 0;
4107 goto result;
4108 }
4109
4110 rc = request_firmware(&rtl_fw->fw, rtl_fw->fw_name, &tp->intf->dev);
4111 if (rc < 0)
4112 goto result;
4113
4114 rc = rtl8152_check_firmware(tp, rtl_fw);
4115 if (rc < 0)
4116 release_firmware(rtl_fw->fw);
4117
4118result:
4119 if (rc) {
4120 rtl_fw->fw = ERR_PTR(rc);
4121
4122 dev_warn(&tp->intf->dev,
4123 "unable to load firmware patch %s (%ld)\n",
4124 rtl_fw->fw_name, rc);
4125 }
4126
4127 return rc;
4128}
4129
hayeswangcda9fb02016-01-07 17:51:12 +08004130static void r8152_aldps_en(struct r8152 *tp, bool enable)
hayeswang43499682014-02-18 21:48:58 +08004131{
hayeswangcda9fb02016-01-07 17:51:12 +08004132 if (enable) {
4133 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
4134 LINKENA | DIS_SDSAVE);
4135 } else {
4136 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA |
4137 DIS_SDSAVE);
4138 msleep(20);
4139 }
hayeswang43499682014-02-18 21:48:58 +08004140}
4141
hayeswange6449532016-09-20 16:22:05 +08004142static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
4143{
4144 ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
4145 ocp_reg_write(tp, OCP_EEE_DATA, reg);
4146 ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
4147}
4148
4149static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
4150{
4151 u16 data;
4152
4153 r8152_mmd_indirect(tp, dev, reg);
4154 data = ocp_reg_read(tp, OCP_EEE_DATA);
4155 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
4156
4157 return data;
4158}
4159
4160static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
4161{
4162 r8152_mmd_indirect(tp, dev, reg);
4163 ocp_reg_write(tp, OCP_EEE_DATA, data);
4164 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
4165}
4166
4167static void r8152_eee_en(struct r8152 *tp, bool enable)
4168{
4169 u16 config1, config2, config3;
4170 u32 ocp_data;
4171
4172 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
4173 config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
4174 config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
4175 config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
4176
4177 if (enable) {
4178 ocp_data |= EEE_RX_EN | EEE_TX_EN;
4179 config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
4180 config1 |= sd_rise_time(1);
4181 config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
4182 config3 |= fast_snr(42);
4183 } else {
4184 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
4185 config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
4186 RX_QUIET_EN);
4187 config1 |= sd_rise_time(7);
4188 config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
4189 config3 |= fast_snr(511);
4190 }
4191
4192 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
4193 ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
4194 ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
4195 ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
4196}
4197
Hayes Wange7bde562019-08-23 15:33:41 +08004198static void r8153_eee_en(struct r8152 *tp, bool enable)
hayeswange6449532016-09-20 16:22:05 +08004199{
Hayes Wange7bde562019-08-23 15:33:41 +08004200 u32 ocp_data;
4201 u16 config;
4202
4203 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
4204 config = ocp_reg_read(tp, OCP_EEE_CFG);
4205
4206 if (enable) {
4207 ocp_data |= EEE_RX_EN | EEE_TX_EN;
4208 config |= EEE10_EN;
Hayes Wangf4a93be2019-08-23 15:33:40 +08004209 } else {
Hayes Wange7bde562019-08-23 15:33:41 +08004210 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
4211 config &= ~EEE10_EN;
4212 }
4213
4214 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
4215 ocp_reg_write(tp, OCP_EEE_CFG, config);
Hayes Wange7bde562019-08-23 15:33:41 +08004216
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004217 tp->ups_info.eee = enable;
Hayes Wange7bde562019-08-23 15:33:41 +08004218}
4219
4220static void rtl_eee_enable(struct r8152 *tp, bool enable)
4221{
4222 switch (tp->version) {
4223 case RTL_VER_01:
4224 case RTL_VER_02:
4225 case RTL_VER_07:
4226 if (enable) {
4227 r8152_eee_en(tp, true);
4228 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
4229 tp->eee_adv);
4230 } else {
4231 r8152_eee_en(tp, false);
4232 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0);
4233 }
4234 break;
4235 case RTL_VER_03:
4236 case RTL_VER_04:
4237 case RTL_VER_05:
4238 case RTL_VER_06:
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004239 case RTL_VER_08:
4240 case RTL_VER_09:
Hayes Wange7bde562019-08-23 15:33:41 +08004241 if (enable) {
4242 r8153_eee_en(tp, true);
4243 ocp_reg_write(tp, OCP_EEE_ADV, tp->eee_adv);
4244 } else {
4245 r8153_eee_en(tp, false);
4246 ocp_reg_write(tp, OCP_EEE_ADV, 0);
4247 }
4248 break;
Hayes Wange7bde562019-08-23 15:33:41 +08004249 default:
4250 break;
Hayes Wangf4a93be2019-08-23 15:33:40 +08004251 }
hayeswange6449532016-09-20 16:22:05 +08004252}
4253
4254static void r8152b_enable_fc(struct r8152 *tp)
4255{
4256 u16 anar;
4257
4258 anar = r8152_mdio_read(tp, MII_ADVERTISE);
4259 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4260 r8152_mdio_write(tp, MII_ADVERTISE, anar);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004261
4262 tp->ups_info.flow_control = true;
hayeswange6449532016-09-20 16:22:05 +08004263}
4264
hayeswangd70b1132014-09-19 15:17:18 +08004265static void rtl8152_disable(struct r8152 *tp)
4266{
hayeswangcda9fb02016-01-07 17:51:12 +08004267 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08004268 rtl_disable(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08004269 r8152_aldps_en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08004270}
4271
hayeswang43499682014-02-18 21:48:58 +08004272static void r8152b_hw_phy_cfg(struct r8152 *tp)
4273{
Hayes Wang9370f2d2019-10-16 11:02:42 +08004274 rtl8152_apply_firmware(tp);
Hayes Wange7bde562019-08-23 15:33:41 +08004275 rtl_eee_enable(tp, tp->eee_en);
hayeswangef39df82016-09-20 16:22:07 +08004276 r8152_aldps_en(tp, true);
4277 r8152b_enable_fc(tp);
hayeswangf0cbe0a2014-02-18 21:49:03 +08004278
hayeswangaa66a5f2014-02-18 21:49:04 +08004279 set_bit(PHY_RESET, &tp->flags);
hayeswang43499682014-02-18 21:48:58 +08004280}
4281
Prashant Malani5f71c842019-10-01 01:35:57 -07004282static void wait_oob_link_list_ready(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00004283{
hayeswangdb8515e2014-03-06 15:07:16 +08004284 u32 ocp_data;
4285 int i;
hayeswangac718b62013-05-02 16:01:25 +00004286
Prashant Malani5f71c842019-10-01 01:35:57 -07004287 for (i = 0; i < 1000; i++) {
4288 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4289 if (ocp_data & LINK_LIST_READY)
4290 break;
4291 usleep_range(1000, 2000);
4292 }
4293}
4294
4295static void r8152b_exit_oob(struct r8152 *tp)
4296{
4297 u32 ocp_data;
4298
hayeswangac718b62013-05-02 16:01:25 +00004299 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4300 ocp_data &= ~RCR_ACPT_ALL;
4301 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4302
hayeswang00a5e362014-02-18 21:48:59 +08004303 rxdy_gated_en(tp, true);
hayeswangda9bd112014-02-18 21:49:08 +08004304 r8153_teredo_off(tp);
hayeswangac718b62013-05-02 16:01:25 +00004305 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
4306 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
4307
4308 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4309 ocp_data &= ~NOW_IS_OOB;
4310 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4311
4312 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4313 ocp_data &= ~MCU_BORW_EN;
4314 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4315
Prashant Malani5f71c842019-10-01 01:35:57 -07004316 wait_oob_link_list_ready(tp);
hayeswangac718b62013-05-02 16:01:25 +00004317
4318 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4319 ocp_data |= RE_INIT_LL;
4320 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4321
Prashant Malani5f71c842019-10-01 01:35:57 -07004322 wait_oob_link_list_ready(tp);
hayeswangac718b62013-05-02 16:01:25 +00004323
4324 rtl8152_nic_reset(tp);
4325
4326 /* rx share fifo credit full threshold */
4327 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
4328
hayeswanga3cc4652014-07-24 16:37:43 +08004329 if (tp->udev->speed == USB_SPEED_FULL ||
4330 tp->udev->speed == USB_SPEED_LOW) {
hayeswangac718b62013-05-02 16:01:25 +00004331 /* rx share fifo credit near full threshold */
4332 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
4333 RXFIFO_THR2_FULL);
4334 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
4335 RXFIFO_THR3_FULL);
4336 } else {
4337 /* rx share fifo credit near full threshold */
4338 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
4339 RXFIFO_THR2_HIGH);
4340 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
4341 RXFIFO_THR3_HIGH);
4342 }
4343
4344 /* TX share fifo free credit full threshold */
4345 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
4346
4347 ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
hayeswang8e1f51b2014-01-02 11:22:41 +08004348 ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
hayeswangac718b62013-05-02 16:01:25 +00004349 ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
4350 TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
4351
hayeswangc5554292014-09-12 10:43:11 +08004352 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswangac718b62013-05-02 16:01:25 +00004353
4354 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
4355
4356 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
4357 ocp_data |= TCR0_AUTO_FIFO;
4358 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
4359}
4360
4361static void r8152b_enter_oob(struct r8152 *tp)
4362{
hayeswang45f4a192014-01-06 17:08:41 +08004363 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00004364
4365 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4366 ocp_data &= ~NOW_IS_OOB;
4367 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4368
4369 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
4370 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
4371 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
4372
hayeswangd70b1132014-09-19 15:17:18 +08004373 rtl_disable(tp);
hayeswangac718b62013-05-02 16:01:25 +00004374
Prashant Malani5f71c842019-10-01 01:35:57 -07004375 wait_oob_link_list_ready(tp);
hayeswangac718b62013-05-02 16:01:25 +00004376
4377 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4378 ocp_data |= RE_INIT_LL;
4379 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4380
Prashant Malani5f71c842019-10-01 01:35:57 -07004381 wait_oob_link_list_ready(tp);
hayeswangac718b62013-05-02 16:01:25 +00004382
4383 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
4384
hayeswangc5554292014-09-12 10:43:11 +08004385 rtl_rx_vlan_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00004386
Kevin Lo59c0b472019-08-01 11:29:38 +08004387 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR);
hayeswangac718b62013-05-02 16:01:25 +00004388 ocp_data |= ALDPS_PROXY_MODE;
Kevin Lo59c0b472019-08-01 11:29:38 +08004389 ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data);
hayeswangac718b62013-05-02 16:01:25 +00004390
4391 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4392 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
4393 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4394
hayeswang00a5e362014-02-18 21:48:59 +08004395 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00004396
4397 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4398 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
4399 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4400}
4401
Hayes Wang9370f2d2019-10-16 11:02:42 +08004402static int r8153_pre_firmware_1(struct r8152 *tp)
4403{
4404 int i;
4405
4406 /* Wait till the WTD timer is ready. It would take at most 104 ms. */
4407 for (i = 0; i < 104; i++) {
4408 u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_WDT1_CTRL);
4409
4410 if (!(ocp_data & WTD1_EN))
4411 break;
4412 usleep_range(1000, 2000);
4413 }
4414
4415 return 0;
4416}
4417
4418static int r8153_post_firmware_1(struct r8152 *tp)
4419{
4420 /* set USB_BP_4 to support USB_SPEED_SUPER only */
4421 if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER)
4422 ocp_write_word(tp, MCU_TYPE_USB, USB_BP_4, BP4_SUPER_ONLY);
4423
4424 /* reset UPHY timer to 36 ms */
4425 ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16);
4426
4427 return 0;
4428}
4429
4430static int r8153_pre_firmware_2(struct r8152 *tp)
4431{
4432 u32 ocp_data;
4433
4434 r8153_pre_firmware_1(tp);
4435
4436 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0);
4437 ocp_data &= ~FW_FIX_SUSPEND;
4438 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data);
4439
4440 return 0;
4441}
4442
4443static int r8153_post_firmware_2(struct r8152 *tp)
4444{
4445 u32 ocp_data;
4446
4447 /* enable bp0 if support USB_SPEED_SUPER only */
4448 if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER) {
4449 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN);
4450 ocp_data |= BIT(0);
4451 ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data);
4452 }
4453
4454 /* reset UPHY timer to 36 ms */
4455 ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16);
4456
4457 /* enable U3P3 check, set the counter to 4 */
4458 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, U3P3_CHECK_EN | 4);
4459
4460 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0);
4461 ocp_data |= FW_FIX_SUSPEND;
4462 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data);
4463
4464 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
4465 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
4466 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
4467
4468 return 0;
4469}
4470
4471static int r8153_post_firmware_3(struct r8152 *tp)
4472{
4473 u32 ocp_data;
4474
4475 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
4476 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
4477 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
4478
4479 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1);
4480 ocp_data |= FW_IP_RESET_EN;
4481 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data);
4482
4483 return 0;
4484}
4485
4486static int r8153b_pre_firmware_1(struct r8152 *tp)
4487{
4488 /* enable fc timer and set timer to 1 second. */
4489 ocp_write_word(tp, MCU_TYPE_USB, USB_FC_TIMER,
4490 CTRL_TIMER_EN | (1000 / 8));
4491
4492 return 0;
4493}
4494
4495static int r8153b_post_firmware_1(struct r8152 *tp)
4496{
4497 u32 ocp_data;
4498
4499 /* enable bp0 for RTL8153-BND */
4500 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1);
4501 if (ocp_data & BND_MASK) {
4502 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN);
4503 ocp_data |= BIT(0);
4504 ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data);
4505 }
4506
4507 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_CTRL);
4508 ocp_data |= FLOW_CTRL_PATCH_OPT;
4509 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_CTRL, ocp_data);
4510
4511 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK);
4512 ocp_data |= FC_PATCH_TASK;
4513 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
4514
4515 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1);
4516 ocp_data |= FW_IP_RESET_EN;
4517 ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data);
4518
4519 return 0;
4520}
4521
hayeswange6449532016-09-20 16:22:05 +08004522static void r8153_aldps_en(struct r8152 *tp, bool enable)
4523{
4524 u16 data;
4525
4526 data = ocp_reg_read(tp, OCP_POWER_CFG);
4527 if (enable) {
4528 data |= EN_ALDPS;
4529 ocp_reg_write(tp, OCP_POWER_CFG, data);
4530 } else {
hayeswang4214cc52017-06-09 17:11:46 +08004531 int i;
4532
hayeswange6449532016-09-20 16:22:05 +08004533 data &= ~EN_ALDPS;
4534 ocp_reg_write(tp, OCP_POWER_CFG, data);
hayeswang4214cc52017-06-09 17:11:46 +08004535 for (i = 0; i < 20; i++) {
4536 usleep_range(1000, 2000);
4537 if (ocp_read_word(tp, MCU_TYPE_PLA, 0xe000) & 0x0100)
4538 break;
4539 }
hayeswange6449532016-09-20 16:22:05 +08004540 }
hayeswange6449532016-09-20 16:22:05 +08004541
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004542 tp->ups_info.aldps = enable;
hayeswang65b82d62017-06-15 14:44:03 +08004543}
4544
hayeswang43779f82014-01-02 11:25:10 +08004545static void r8153_hw_phy_cfg(struct r8152 *tp)
4546{
4547 u32 ocp_data;
4548 u16 data;
4549
hayeswangd768c612016-09-20 16:22:09 +08004550 /* disable ALDPS before updating the PHY parameters */
4551 r8153_aldps_en(tp, false);
hayeswangfb02eb42015-07-22 15:27:41 +08004552
hayeswangd768c612016-09-20 16:22:09 +08004553 /* disable EEE before updating the PHY parameters */
Hayes Wange7bde562019-08-23 15:33:41 +08004554 rtl_eee_enable(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08004555
Hayes Wang9370f2d2019-10-16 11:02:42 +08004556 rtl8152_apply_firmware(tp);
4557
hayeswang43779f82014-01-02 11:25:10 +08004558 if (tp->version == RTL_VER_03) {
4559 data = ocp_reg_read(tp, OCP_EEE_CFG);
4560 data &= ~CTAP_SHORT_EN;
4561 ocp_reg_write(tp, OCP_EEE_CFG, data);
4562 }
4563
4564 data = ocp_reg_read(tp, OCP_POWER_CFG);
4565 data |= EEE_CLKDIV_EN;
4566 ocp_reg_write(tp, OCP_POWER_CFG, data);
4567
4568 data = ocp_reg_read(tp, OCP_DOWN_SPEED);
4569 data |= EN_10M_BGOFF;
4570 ocp_reg_write(tp, OCP_DOWN_SPEED, data);
4571 data = ocp_reg_read(tp, OCP_POWER_CFG);
4572 data |= EN_10M_PLLOFF;
4573 ocp_reg_write(tp, OCP_POWER_CFG, data);
hayeswangb4d99de2015-01-19 17:02:46 +08004574 sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
hayeswang43779f82014-01-02 11:25:10 +08004575
4576 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
4577 ocp_data |= PFM_PWM_SWITCH;
4578 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
4579
hayeswangb4d99de2015-01-19 17:02:46 +08004580 /* Enable LPF corner auto tune */
4581 sram_write(tp, SRAM_LPF_CFG, 0xf70f);
hayeswang43779f82014-01-02 11:25:10 +08004582
hayeswangb4d99de2015-01-19 17:02:46 +08004583 /* Adjust 10M Amplitude */
4584 sram_write(tp, SRAM_10M_AMP1, 0x00af);
4585 sram_write(tp, SRAM_10M_AMP2, 0x0208);
hayeswangaa66a5f2014-02-18 21:49:04 +08004586
Hayes Wange7bde562019-08-23 15:33:41 +08004587 if (tp->eee_en)
4588 rtl_eee_enable(tp, true);
hayeswangaf0287e2016-09-20 16:22:08 +08004589
hayeswangef39df82016-09-20 16:22:07 +08004590 r8153_aldps_en(tp, true);
4591 r8152b_enable_fc(tp);
4592
hayeswang3cb32342017-06-09 17:11:43 +08004593 switch (tp->version) {
4594 case RTL_VER_03:
4595 case RTL_VER_04:
4596 break;
4597 case RTL_VER_05:
4598 case RTL_VER_06:
4599 default:
4600 r8153_u2p3en(tp, true);
4601 break;
4602 }
4603
hayeswangaa66a5f2014-02-18 21:49:04 +08004604 set_bit(PHY_RESET, &tp->flags);
hayeswang43779f82014-01-02 11:25:10 +08004605}
4606
hayeswang65b82d62017-06-15 14:44:03 +08004607static u32 r8152_efuse_read(struct r8152 *tp, u8 addr)
4608{
4609 u32 ocp_data;
4610
4611 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD, EFUSE_READ_CMD | addr);
4612 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD);
4613 ocp_data = (ocp_data & EFUSE_DATA_BIT16) << 9; /* data of bit16 */
4614 ocp_data |= ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_DATA);
4615
4616 return ocp_data;
4617}
4618
4619static void r8153b_hw_phy_cfg(struct r8152 *tp)
4620{
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004621 u32 ocp_data;
hayeswang65b82d62017-06-15 14:44:03 +08004622 u16 data;
4623
4624 /* disable ALDPS before updating the PHY parameters */
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004625 r8153_aldps_en(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08004626
4627 /* disable EEE before updating the PHY parameters */
Hayes Wange7bde562019-08-23 15:33:41 +08004628 rtl_eee_enable(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08004629
Hayes Wang9370f2d2019-10-16 11:02:42 +08004630 rtl8152_apply_firmware(tp);
4631
hayeswang65b82d62017-06-15 14:44:03 +08004632 r8153b_green_en(tp, test_bit(GREEN_ETHERNET, &tp->flags));
4633
4634 data = sram_read(tp, SRAM_GREEN_CFG);
4635 data |= R_TUNE_EN;
4636 sram_write(tp, SRAM_GREEN_CFG, data);
4637 data = ocp_reg_read(tp, OCP_NCTL_CFG);
4638 data |= PGA_RETURN_EN;
4639 ocp_reg_write(tp, OCP_NCTL_CFG, data);
4640
4641 /* ADC Bias Calibration:
4642 * read efuse offset 0x7d to get a 17-bit data. Remove the dummy/fake
4643 * bit (bit3) to rebuild the real 16-bit data. Write the data to the
4644 * ADC ioffset.
4645 */
4646 ocp_data = r8152_efuse_read(tp, 0x7d);
4647 data = (u16)(((ocp_data & 0x1fff0) >> 1) | (ocp_data & 0x7));
4648 if (data != 0xffff)
4649 ocp_reg_write(tp, OCP_ADC_IOFFSET, data);
4650
4651 /* ups mode tx-link-pulse timing adjustment:
4652 * rg_saw_cnt = OCP reg 0xC426 Bit[13:0]
4653 * swr_cnt_1ms_ini = 16000000 / rg_saw_cnt
4654 */
4655 ocp_data = ocp_reg_read(tp, 0xc426);
4656 ocp_data &= 0x3fff;
4657 if (ocp_data) {
4658 u32 swr_cnt_1ms_ini;
4659
4660 swr_cnt_1ms_ini = (16000000 / ocp_data) & SAW_CNT_1MS_MASK;
4661 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CFG);
4662 ocp_data = (ocp_data & ~SAW_CNT_1MS_MASK) | swr_cnt_1ms_ini;
4663 ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CFG, ocp_data);
4664 }
4665
4666 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
4667 ocp_data |= PFM_PWM_SWITCH;
4668 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
4669
4670 /* Advnace EEE */
4671 if (!r8153_patch_request(tp, true)) {
4672 data = ocp_reg_read(tp, OCP_POWER_CFG);
4673 data |= EEE_CLKDIV_EN;
4674 ocp_reg_write(tp, OCP_POWER_CFG, data);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004675 tp->ups_info.eee_ckdiv = true;
hayeswang65b82d62017-06-15 14:44:03 +08004676
4677 data = ocp_reg_read(tp, OCP_DOWN_SPEED);
4678 data |= EN_EEE_CMODE | EN_EEE_1000 | EN_10M_CLKDIV;
4679 ocp_reg_write(tp, OCP_DOWN_SPEED, data);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004680 tp->ups_info.eee_cmod_lv = true;
4681 tp->ups_info._10m_ckdiv = true;
4682 tp->ups_info.eee_plloff_giga = true;
hayeswang65b82d62017-06-15 14:44:03 +08004683
4684 ocp_reg_write(tp, OCP_SYSCLK_CFG, 0);
4685 ocp_reg_write(tp, OCP_SYSCLK_CFG, clk_div_expo(5));
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004686 tp->ups_info._250m_ckdiv = true;
hayeswang65b82d62017-06-15 14:44:03 +08004687
4688 r8153_patch_request(tp, false);
4689 }
4690
Hayes Wange7bde562019-08-23 15:33:41 +08004691 if (tp->eee_en)
4692 rtl_eee_enable(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08004693
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004694 r8153_aldps_en(tp, true);
4695 r8152b_enable_fc(tp);
hayeswang65b82d62017-06-15 14:44:03 +08004696
4697 set_bit(PHY_RESET, &tp->flags);
4698}
4699
hayeswang43779f82014-01-02 11:25:10 +08004700static void r8153_first_init(struct r8152 *tp)
4701{
4702 u32 ocp_data;
hayeswang43779f82014-01-02 11:25:10 +08004703
hayeswang134f98b2017-06-09 17:11:40 +08004704 r8153_mac_clk_spd(tp, false);
hayeswang00a5e362014-02-18 21:48:59 +08004705 rxdy_gated_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08004706 r8153_teredo_off(tp);
4707
4708 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4709 ocp_data &= ~RCR_ACPT_ALL;
4710 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4711
hayeswang43779f82014-01-02 11:25:10 +08004712 rtl8152_nic_reset(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08004713 rtl_reset_bmu(tp);
hayeswang43779f82014-01-02 11:25:10 +08004714
4715 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4716 ocp_data &= ~NOW_IS_OOB;
4717 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4718
4719 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4720 ocp_data &= ~MCU_BORW_EN;
4721 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4722
Prashant Malani5f71c842019-10-01 01:35:57 -07004723 wait_oob_link_list_ready(tp);
hayeswang43779f82014-01-02 11:25:10 +08004724
4725 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4726 ocp_data |= RE_INIT_LL;
4727 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4728
Prashant Malani5f71c842019-10-01 01:35:57 -07004729 wait_oob_link_list_ready(tp);
hayeswang43779f82014-01-02 11:25:10 +08004730
hayeswangc5554292014-09-12 10:43:11 +08004731 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswang43779f82014-01-02 11:25:10 +08004732
hayeswangb65c0c92017-06-21 11:25:18 +08004733 ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
hayeswang210c4f72017-03-20 16:13:44 +08004734 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data);
hayeswang69b4b7a2014-07-10 10:58:54 +08004735 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
hayeswang43779f82014-01-02 11:25:10 +08004736
4737 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
4738 ocp_data |= TCR0_AUTO_FIFO;
4739 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
4740
4741 rtl8152_nic_reset(tp);
4742
4743 /* rx share fifo credit full threshold */
4744 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
4745 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
4746 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
4747 /* TX share fifo free credit full threshold */
4748 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
hayeswang43779f82014-01-02 11:25:10 +08004749}
4750
4751static void r8153_enter_oob(struct r8152 *tp)
4752{
4753 u32 ocp_data;
hayeswang43779f82014-01-02 11:25:10 +08004754
hayeswang134f98b2017-06-09 17:11:40 +08004755 r8153_mac_clk_spd(tp, true);
4756
hayeswang43779f82014-01-02 11:25:10 +08004757 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4758 ocp_data &= ~NOW_IS_OOB;
4759 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4760
hayeswangd70b1132014-09-19 15:17:18 +08004761 rtl_disable(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08004762 rtl_reset_bmu(tp);
hayeswang43779f82014-01-02 11:25:10 +08004763
Prashant Malani5f71c842019-10-01 01:35:57 -07004764 wait_oob_link_list_ready(tp);
hayeswang43779f82014-01-02 11:25:10 +08004765
4766 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4767 ocp_data |= RE_INIT_LL;
4768 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4769
Prashant Malani5f71c842019-10-01 01:35:57 -07004770 wait_oob_link_list_ready(tp);
hayeswang43779f82014-01-02 11:25:10 +08004771
hayeswangb65c0c92017-06-21 11:25:18 +08004772 ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
hayeswang210c4f72017-03-20 16:13:44 +08004773 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08004774
hayeswang65b82d62017-06-15 14:44:03 +08004775 switch (tp->version) {
4776 case RTL_VER_03:
4777 case RTL_VER_04:
4778 case RTL_VER_05:
4779 case RTL_VER_06:
4780 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
4781 ocp_data &= ~TEREDO_WAKE_MASK;
4782 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
4783 break;
4784
4785 case RTL_VER_08:
4786 case RTL_VER_09:
4787 /* Clear teredo wake event. bit[15:8] is the teredo wakeup
4788 * type. Set it to zero. bits[7:0] are the W1C bits about
4789 * the events. Set them to all 1 to clear them.
4790 */
4791 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_WAKE_BASE, 0x00ff);
4792 break;
4793
4794 default:
4795 break;
4796 }
hayeswang43779f82014-01-02 11:25:10 +08004797
hayeswangc5554292014-09-12 10:43:11 +08004798 rtl_rx_vlan_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08004799
Kevin Lo59c0b472019-08-01 11:29:38 +08004800 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR);
hayeswang43779f82014-01-02 11:25:10 +08004801 ocp_data |= ALDPS_PROXY_MODE;
Kevin Lo59c0b472019-08-01 11:29:38 +08004802 ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08004803
4804 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4805 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
4806 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4807
hayeswang00a5e362014-02-18 21:48:59 +08004808 rxdy_gated_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08004809
4810 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4811 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
4812 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4813}
4814
hayeswangd70b1132014-09-19 15:17:18 +08004815static void rtl8153_disable(struct r8152 *tp)
4816{
hayeswangcda9fb02016-01-07 17:51:12 +08004817 r8153_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08004818 rtl_disable(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08004819 rtl_reset_bmu(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08004820 r8153_aldps_en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08004821}
4822
Hayes Wang771efed2019-09-02 19:52:28 +08004823static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex,
4824 u32 advertising)
hayeswangac718b62013-05-02 16:01:25 +00004825{
Hayes Wang771efed2019-09-02 19:52:28 +08004826 u16 bmcr;
hayeswangac718b62013-05-02 16:01:25 +00004827 int ret = 0;
4828
hayeswangac718b62013-05-02 16:01:25 +00004829 if (autoneg == AUTONEG_DISABLE) {
Hayes Wang771efed2019-09-02 19:52:28 +08004830 if (duplex != DUPLEX_HALF && duplex != DUPLEX_FULL)
4831 return -EINVAL;
4832
4833 switch (speed) {
4834 case SPEED_10:
4835 bmcr = BMCR_SPEED10;
4836 if (duplex == DUPLEX_FULL) {
4837 bmcr |= BMCR_FULLDPLX;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004838 tp->ups_info.speed_duplex = FORCE_10M_FULL;
Hayes Wang771efed2019-09-02 19:52:28 +08004839 } else {
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004840 tp->ups_info.speed_duplex = FORCE_10M_HALF;
Hayes Wang771efed2019-09-02 19:52:28 +08004841 }
4842 break;
4843 case SPEED_100:
hayeswangac718b62013-05-02 16:01:25 +00004844 bmcr = BMCR_SPEED100;
Hayes Wang771efed2019-09-02 19:52:28 +08004845 if (duplex == DUPLEX_FULL) {
4846 bmcr |= BMCR_FULLDPLX;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004847 tp->ups_info.speed_duplex = FORCE_100M_FULL;
Hayes Wang771efed2019-09-02 19:52:28 +08004848 } else {
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004849 tp->ups_info.speed_duplex = FORCE_100M_HALF;
Hayes Wang771efed2019-09-02 19:52:28 +08004850 }
4851 break;
4852 case SPEED_1000:
4853 if (tp->mii.supports_gmii) {
4854 bmcr = BMCR_SPEED1000 | BMCR_FULLDPLX;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004855 tp->ups_info.speed_duplex = NWAY_1000M_FULL;
Hayes Wang771efed2019-09-02 19:52:28 +08004856 break;
4857 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004858 fallthrough;
Hayes Wang771efed2019-09-02 19:52:28 +08004859 default:
hayeswangac718b62013-05-02 16:01:25 +00004860 ret = -EINVAL;
4861 goto out;
4862 }
4863
Hayes Wang771efed2019-09-02 19:52:28 +08004864 if (duplex == DUPLEX_FULL)
4865 tp->mii.full_duplex = 1;
4866 else
4867 tp->mii.full_duplex = 0;
4868
4869 tp->mii.force_media = 1;
hayeswangac718b62013-05-02 16:01:25 +00004870 } else {
Hayes Wang771efed2019-09-02 19:52:28 +08004871 u16 anar, tmp1;
4872 u32 support;
4873
4874 support = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL |
4875 RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL;
4876
4877 if (tp->mii.supports_gmii)
4878 support |= RTL_ADVERTISED_1000_FULL;
4879
4880 if (!(advertising & support))
4881 return -EINVAL;
4882
4883 anar = r8152_mdio_read(tp, MII_ADVERTISE);
4884 tmp1 = anar & ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
4885 ADVERTISE_100HALF | ADVERTISE_100FULL);
4886 if (advertising & RTL_ADVERTISED_10_HALF) {
4887 tmp1 |= ADVERTISE_10HALF;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004888 tp->ups_info.speed_duplex = NWAY_10M_HALF;
Hayes Wang771efed2019-09-02 19:52:28 +08004889 }
4890 if (advertising & RTL_ADVERTISED_10_FULL) {
4891 tmp1 |= ADVERTISE_10FULL;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004892 tp->ups_info.speed_duplex = NWAY_10M_FULL;
Hayes Wang771efed2019-09-02 19:52:28 +08004893 }
4894
4895 if (advertising & RTL_ADVERTISED_100_HALF) {
4896 tmp1 |= ADVERTISE_100HALF;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004897 tp->ups_info.speed_duplex = NWAY_100M_HALF;
Hayes Wang771efed2019-09-02 19:52:28 +08004898 }
4899 if (advertising & RTL_ADVERTISED_100_FULL) {
4900 tmp1 |= ADVERTISE_100FULL;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004901 tp->ups_info.speed_duplex = NWAY_100M_FULL;
Hayes Wang771efed2019-09-02 19:52:28 +08004902 }
4903
4904 if (anar != tmp1) {
4905 r8152_mdio_write(tp, MII_ADVERTISE, tmp1);
4906 tp->mii.advertising = tmp1;
4907 }
4908
4909 if (tp->mii.supports_gmii) {
4910 u16 gbcr;
4911
4912 gbcr = r8152_mdio_read(tp, MII_CTRL1000);
4913 tmp1 = gbcr & ~(ADVERTISE_1000FULL |
4914 ADVERTISE_1000HALF);
4915
4916 if (advertising & RTL_ADVERTISED_1000_FULL) {
4917 tmp1 |= ADVERTISE_1000FULL;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08004918 tp->ups_info.speed_duplex = NWAY_1000M_FULL;
hayeswang65b82d62017-06-15 14:44:03 +08004919 }
Hayes Wang771efed2019-09-02 19:52:28 +08004920
4921 if (gbcr != tmp1)
4922 r8152_mdio_write(tp, MII_CTRL1000, tmp1);
hayeswangac718b62013-05-02 16:01:25 +00004923 }
4924
4925 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Hayes Wang771efed2019-09-02 19:52:28 +08004926
4927 tp->mii.force_media = 0;
hayeswangac718b62013-05-02 16:01:25 +00004928 }
4929
hayeswangfae56172016-06-16 14:08:29 +08004930 if (test_and_clear_bit(PHY_RESET, &tp->flags))
hayeswangaa66a5f2014-02-18 21:49:04 +08004931 bmcr |= BMCR_RESET;
4932
hayeswangac718b62013-05-02 16:01:25 +00004933 r8152_mdio_write(tp, MII_BMCR, bmcr);
4934
hayeswangfae56172016-06-16 14:08:29 +08004935 if (bmcr & BMCR_RESET) {
hayeswangaa66a5f2014-02-18 21:49:04 +08004936 int i;
4937
hayeswangaa66a5f2014-02-18 21:49:04 +08004938 for (i = 0; i < 50; i++) {
4939 msleep(20);
4940 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
4941 break;
4942 }
4943 }
4944
hayeswangac718b62013-05-02 16:01:25 +00004945out:
hayeswangac718b62013-05-02 16:01:25 +00004946 return ret;
4947}
4948
hayeswangd70b1132014-09-19 15:17:18 +08004949static void rtl8152_up(struct r8152 *tp)
4950{
4951 if (test_bit(RTL8152_UNPLUG, &tp->flags))
4952 return;
4953
hayeswangcda9fb02016-01-07 17:51:12 +08004954 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08004955 r8152b_exit_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08004956 r8152_aldps_en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08004957}
4958
hayeswangac718b62013-05-02 16:01:25 +00004959static void rtl8152_down(struct r8152 *tp)
4960{
hayeswang68714382014-04-11 17:54:31 +08004961 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
4962 rtl_drop_queued_tx(tp);
4963 return;
4964 }
4965
hayeswang00a5e362014-02-18 21:48:59 +08004966 r8152_power_cut_en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08004967 r8152_aldps_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00004968 r8152b_enter_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08004969 r8152_aldps_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00004970}
4971
hayeswangd70b1132014-09-19 15:17:18 +08004972static void rtl8153_up(struct r8152 *tp)
4973{
Hayes Wang19813162020-01-22 16:02:12 +08004974 u32 ocp_data;
4975
hayeswangd70b1132014-09-19 15:17:18 +08004976 if (test_bit(RTL8152_UNPLUG, &tp->flags))
4977 return;
4978
hayeswangb2143962015-07-24 13:54:23 +08004979 r8153_u1u2en(tp, false);
hayeswang3cb32342017-06-09 17:11:43 +08004980 r8153_u2p3en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08004981 r8153_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08004982 r8153_first_init(tp);
Hayes Wang19813162020-01-22 16:02:12 +08004983
4984 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
4985 ocp_data |= LANWAKE_CLR_EN;
4986 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
4987
4988 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG);
4989 ocp_data &= ~LANWAKE_PIN;
4990 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data);
4991
Hayes Wangaa475d92020-01-22 16:02:13 +08004992 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1);
4993 ocp_data &= ~DELAY_PHY_PWR_CHG;
4994 ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1, ocp_data);
4995
hayeswangcda9fb02016-01-07 17:51:12 +08004996 r8153_aldps_en(tp, true);
hayeswang3cb32342017-06-09 17:11:43 +08004997
4998 switch (tp->version) {
4999 case RTL_VER_03:
5000 case RTL_VER_04:
5001 break;
5002 case RTL_VER_05:
5003 case RTL_VER_06:
5004 default:
5005 r8153_u2p3en(tp, true);
5006 break;
5007 }
5008
hayeswangb2143962015-07-24 13:54:23 +08005009 r8153_u1u2en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08005010}
5011
hayeswang43779f82014-01-02 11:25:10 +08005012static void rtl8153_down(struct r8152 *tp)
5013{
Hayes Wang19813162020-01-22 16:02:12 +08005014 u32 ocp_data;
5015
hayeswang68714382014-04-11 17:54:31 +08005016 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
5017 rtl_drop_queued_tx(tp);
5018 return;
5019 }
5020
Hayes Wang19813162020-01-22 16:02:12 +08005021 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
5022 ocp_data &= ~LANWAKE_CLR_EN;
5023 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
5024
hayeswangb9702722014-02-18 21:49:00 +08005025 r8153_u1u2en(tp, false);
hayeswangb2143962015-07-24 13:54:23 +08005026 r8153_u2p3en(tp, false);
hayeswangb9702722014-02-18 21:49:00 +08005027 r8153_power_cut_en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08005028 r8153_aldps_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08005029 r8153_enter_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08005030 r8153_aldps_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08005031}
5032
hayeswang65b82d62017-06-15 14:44:03 +08005033static void rtl8153b_up(struct r8152 *tp)
5034{
Hayes Wang08997b52020-01-22 16:02:09 +08005035 u32 ocp_data;
5036
hayeswang65b82d62017-06-15 14:44:03 +08005037 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5038 return;
5039
5040 r8153b_u1u2en(tp, false);
5041 r8153_u2p3en(tp, false);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08005042 r8153_aldps_en(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08005043
5044 r8153_first_init(tp);
5045 ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_B);
5046
Hayes Wang08997b52020-01-22 16:02:09 +08005047 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5048 ocp_data &= ~PLA_MCU_SPDWN_EN;
5049 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5050
Hayes Wang0e5b36b2019-09-05 10:46:20 +08005051 r8153_aldps_en(tp, true);
Hayes Wanga0246da2020-01-22 16:02:11 +08005052
5053 if (tp->udev->speed != USB_SPEED_HIGH)
5054 r8153b_u1u2en(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08005055}
5056
5057static void rtl8153b_down(struct r8152 *tp)
5058{
Hayes Wang08997b52020-01-22 16:02:09 +08005059 u32 ocp_data;
5060
hayeswang65b82d62017-06-15 14:44:03 +08005061 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
5062 rtl_drop_queued_tx(tp);
5063 return;
5064 }
5065
Hayes Wang08997b52020-01-22 16:02:09 +08005066 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5067 ocp_data |= PLA_MCU_SPDWN_EN;
5068 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5069
hayeswang65b82d62017-06-15 14:44:03 +08005070 r8153b_u1u2en(tp, false);
5071 r8153_u2p3en(tp, false);
5072 r8153b_power_cut_en(tp, false);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08005073 r8153_aldps_en(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08005074 r8153_enter_oob(tp);
Hayes Wang0e5b36b2019-09-05 10:46:20 +08005075 r8153_aldps_en(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08005076}
5077
hayeswang2dd49e02015-09-07 11:57:44 +08005078static bool rtl8152_in_nway(struct r8152 *tp)
5079{
5080 u16 nway_state;
5081
5082 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, 0x2000);
5083 tp->ocp_base = 0x2000;
5084 ocp_write_byte(tp, MCU_TYPE_PLA, 0xb014, 0x4c); /* phy state */
5085 nway_state = ocp_read_word(tp, MCU_TYPE_PLA, 0xb01a);
5086
5087 /* bit 15: TXDIS_STATE, bit 14: ABD_STATE */
5088 if (nway_state & 0xc000)
5089 return false;
5090 else
5091 return true;
5092}
5093
5094static bool rtl8153_in_nway(struct r8152 *tp)
5095{
5096 u16 phy_state = ocp_reg_read(tp, OCP_PHY_STATE) & 0xff;
5097
5098 if (phy_state == TXDIS_STATE || phy_state == ABD_STATE)
5099 return false;
5100 else
5101 return true;
5102}
5103
hayeswangac718b62013-05-02 16:01:25 +00005104static void set_carrier(struct r8152 *tp)
5105{
5106 struct net_device *netdev = tp->netdev;
hayeswangce594e92017-03-16 14:32:22 +08005107 struct napi_struct *napi = &tp->napi;
hayeswangac718b62013-05-02 16:01:25 +00005108 u8 speed;
5109
5110 speed = rtl8152_get_speed(tp);
5111
5112 if (speed & LINK_STATUS) {
hayeswang51d979f2015-02-06 11:30:47 +08005113 if (!netif_carrier_ok(netdev)) {
hayeswangc81229c2014-01-02 11:22:42 +08005114 tp->rtl_ops.enable(tp);
hayeswangde9bf292017-01-26 09:38:32 +08005115 netif_stop_queue(netdev);
hayeswangce594e92017-03-16 14:32:22 +08005116 napi_disable(napi);
hayeswangac718b62013-05-02 16:01:25 +00005117 netif_carrier_on(netdev);
hayeswangaa2e0922015-01-09 10:26:35 +08005118 rtl_start_rx(tp);
Hayes Wangaece4772018-02-02 16:43:36 +08005119 clear_bit(RTL8152_SET_RX_MODE, &tp->flags);
5120 _rtl8152_set_rx_mode(netdev);
hayeswang41cec842015-07-24 13:54:25 +08005121 napi_enable(&tp->napi);
hayeswangde9bf292017-01-26 09:38:32 +08005122 netif_wake_queue(netdev);
5123 netif_info(tp, link, netdev, "carrier on\n");
hayeswang2f25abe2017-03-23 19:14:19 +08005124 } else if (netif_queue_stopped(netdev) &&
5125 skb_queue_len(&tp->tx_queue) < tp->tx_qlen) {
5126 netif_wake_queue(netdev);
hayeswangac718b62013-05-02 16:01:25 +00005127 }
5128 } else {
hayeswang51d979f2015-02-06 11:30:47 +08005129 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00005130 netif_carrier_off(netdev);
Hayes Wangd2187f82019-08-19 14:40:36 +08005131 tasklet_disable(&tp->tx_tl);
hayeswangce594e92017-03-16 14:32:22 +08005132 napi_disable(napi);
hayeswangc81229c2014-01-02 11:22:42 +08005133 tp->rtl_ops.disable(tp);
hayeswangce594e92017-03-16 14:32:22 +08005134 napi_enable(napi);
Hayes Wangd2187f82019-08-19 14:40:36 +08005135 tasklet_enable(&tp->tx_tl);
hayeswangde9bf292017-01-26 09:38:32 +08005136 netif_info(tp, link, netdev, "carrier off\n");
hayeswangac718b62013-05-02 16:01:25 +00005137 }
5138 }
hayeswangac718b62013-05-02 16:01:25 +00005139}
5140
5141static void rtl_work_func_t(struct work_struct *work)
5142{
5143 struct r8152 *tp = container_of(work, struct r8152, schedule.work);
5144
hayeswanga1f83fe2014-11-12 10:05:05 +08005145 /* If the device is unplugged or !netif_running(), the workqueue
5146 * doesn't need to wake the device, and could return directly.
5147 */
5148 if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
5149 return;
5150
hayeswang9a4be1b2014-02-18 21:49:07 +08005151 if (usb_autopm_get_interface(tp->intf) < 0)
5152 return;
5153
hayeswangac718b62013-05-02 16:01:25 +00005154 if (!test_bit(WORK_ENABLE, &tp->flags))
5155 goto out1;
5156
hayeswangb5403272014-10-09 18:00:26 +08005157 if (!mutex_trylock(&tp->control)) {
5158 schedule_delayed_work(&tp->schedule, 0);
5159 goto out1;
5160 }
5161
hayeswang216a8342016-01-07 17:51:11 +08005162 if (test_and_clear_bit(RTL8152_LINK_CHG, &tp->flags))
hayeswang40a82912013-08-14 20:54:40 +08005163 set_carrier(tp);
hayeswangac718b62013-05-02 16:01:25 +00005164
hayeswang216a8342016-01-07 17:51:11 +08005165 if (test_and_clear_bit(RTL8152_SET_RX_MODE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00005166 _rtl8152_set_rx_mode(tp->netdev);
5167
Hayes Wangd2187f82019-08-19 14:40:36 +08005168 /* don't schedule tasket before linking */
5169 if (test_and_clear_bit(SCHEDULE_TASKLET, &tp->flags) &&
hayeswang216a8342016-01-07 17:51:11 +08005170 netif_carrier_ok(tp->netdev))
Hayes Wangd2187f82019-08-19 14:40:36 +08005171 tasklet_schedule(&tp->tx_tl);
hayeswangaa66a5f2014-02-18 21:49:04 +08005172
hayeswangb5403272014-10-09 18:00:26 +08005173 mutex_unlock(&tp->control);
5174
hayeswangac718b62013-05-02 16:01:25 +00005175out1:
hayeswang9a4be1b2014-02-18 21:49:07 +08005176 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00005177}
5178
hayeswanga028a9e2016-06-13 17:49:36 +08005179static void rtl_hw_phy_work_func_t(struct work_struct *work)
5180{
5181 struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work);
5182
5183 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5184 return;
5185
5186 if (usb_autopm_get_interface(tp->intf) < 0)
5187 return;
5188
5189 mutex_lock(&tp->control);
5190
Hayes Wang9370f2d2019-10-16 11:02:42 +08005191 if (rtl8152_request_firmware(tp) == -ENODEV && tp->rtl_fw.retry) {
5192 tp->rtl_fw.retry = false;
5193 tp->rtl_fw.fw = NULL;
5194
5195 /* Delay execution in case request_firmware() is not ready yet.
5196 */
5197 queue_delayed_work(system_long_wq, &tp->hw_phy_work, HZ * 10);
5198 goto ignore_once;
5199 }
5200
hayeswanga028a9e2016-06-13 17:49:36 +08005201 tp->rtl_ops.hw_phy_cfg(tp);
5202
Hayes Wang771efed2019-09-02 19:52:28 +08005203 rtl8152_set_speed(tp, tp->autoneg, tp->speed, tp->duplex,
5204 tp->advertising);
hayeswang9d21c0d2016-06-13 17:49:37 +08005205
Hayes Wang9370f2d2019-10-16 11:02:42 +08005206ignore_once:
hayeswanga028a9e2016-06-13 17:49:36 +08005207 mutex_unlock(&tp->control);
5208
5209 usb_autopm_put_interface(tp->intf);
5210}
5211
hayeswang5ee3c602016-01-07 17:12:17 +08005212#ifdef CONFIG_PM_SLEEP
5213static int rtl_notifier(struct notifier_block *nb, unsigned long action,
5214 void *data)
5215{
5216 struct r8152 *tp = container_of(nb, struct r8152, pm_notifier);
5217
5218 switch (action) {
5219 case PM_HIBERNATION_PREPARE:
5220 case PM_SUSPEND_PREPARE:
5221 usb_autopm_get_interface(tp->intf);
5222 break;
5223
5224 case PM_POST_HIBERNATION:
5225 case PM_POST_SUSPEND:
5226 usb_autopm_put_interface(tp->intf);
5227 break;
5228
5229 case PM_POST_RESTORE:
5230 case PM_RESTORE_PREPARE:
5231 default:
5232 break;
5233 }
5234
5235 return NOTIFY_DONE;
5236}
5237#endif
5238
hayeswangac718b62013-05-02 16:01:25 +00005239static int rtl8152_open(struct net_device *netdev)
5240{
5241 struct r8152 *tp = netdev_priv(netdev);
5242 int res = 0;
5243
Hayes Wang9370f2d2019-10-16 11:02:42 +08005244 if (work_busy(&tp->hw_phy_work.work) & WORK_BUSY_PENDING) {
5245 cancel_delayed_work_sync(&tp->hw_phy_work);
5246 rtl_hw_phy_work_func_t(&tp->hw_phy_work.work);
5247 }
5248
hayeswang7e9da482014-02-18 21:49:05 +08005249 res = alloc_all_mem(tp);
5250 if (res)
5251 goto out;
5252
hayeswang9a4be1b2014-02-18 21:49:07 +08005253 res = usb_autopm_get_interface(tp->intf);
Guenter Roeckca0a7532016-11-09 19:51:25 -08005254 if (res < 0)
5255 goto out_free;
hayeswang9a4be1b2014-02-18 21:49:07 +08005256
hayeswangb5403272014-10-09 18:00:26 +08005257 mutex_lock(&tp->control);
5258
hayeswang7e9da482014-02-18 21:49:05 +08005259 tp->rtl_ops.up(tp);
5260
hayeswang40a82912013-08-14 20:54:40 +08005261 netif_carrier_off(netdev);
hayeswangac718b62013-05-02 16:01:25 +00005262 netif_start_queue(netdev);
5263 set_bit(WORK_ENABLE, &tp->flags);
hayeswangdb8515e2014-03-06 15:07:16 +08005264
hayeswang3d55f442014-02-06 11:55:48 +08005265 res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
5266 if (res) {
5267 if (res == -ENODEV)
5268 netif_device_detach(tp->netdev);
5269 netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
5270 res);
Guenter Roeckca0a7532016-11-09 19:51:25 -08005271 goto out_unlock;
hayeswang3d55f442014-02-06 11:55:48 +08005272 }
Guenter Roeckca0a7532016-11-09 19:51:25 -08005273 napi_enable(&tp->napi);
Hayes Wangd2187f82019-08-19 14:40:36 +08005274 tasklet_enable(&tp->tx_tl);
hayeswang3d55f442014-02-06 11:55:48 +08005275
hayeswangb5403272014-10-09 18:00:26 +08005276 mutex_unlock(&tp->control);
5277
hayeswang9a4be1b2014-02-18 21:49:07 +08005278 usb_autopm_put_interface(tp->intf);
hayeswang5ee3c602016-01-07 17:12:17 +08005279#ifdef CONFIG_PM_SLEEP
5280 tp->pm_notifier.notifier_call = rtl_notifier;
5281 register_pm_notifier(&tp->pm_notifier);
5282#endif
Guenter Roeckca0a7532016-11-09 19:51:25 -08005283 return 0;
hayeswangac718b62013-05-02 16:01:25 +00005284
Guenter Roeckca0a7532016-11-09 19:51:25 -08005285out_unlock:
5286 mutex_unlock(&tp->control);
5287 usb_autopm_put_interface(tp->intf);
5288out_free:
5289 free_all_mem(tp);
hayeswang7e9da482014-02-18 21:49:05 +08005290out:
hayeswangac718b62013-05-02 16:01:25 +00005291 return res;
5292}
5293
5294static int rtl8152_close(struct net_device *netdev)
5295{
5296 struct r8152 *tp = netdev_priv(netdev);
5297 int res = 0;
5298
hayeswang5ee3c602016-01-07 17:12:17 +08005299#ifdef CONFIG_PM_SLEEP
5300 unregister_pm_notifier(&tp->pm_notifier);
5301#endif
Hayes Wangd2187f82019-08-19 14:40:36 +08005302 tasklet_disable(&tp->tx_tl);
hayeswangac718b62013-05-02 16:01:25 +00005303 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang3d55f442014-02-06 11:55:48 +08005304 usb_kill_urb(tp->intr_urb);
hayeswangac718b62013-05-02 16:01:25 +00005305 cancel_delayed_work_sync(&tp->schedule);
Prashant Malani84811412019-11-20 11:40:21 -08005306 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00005307 netif_stop_queue(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08005308
5309 res = usb_autopm_get_interface(tp->intf);
hayeswang53543db2015-02-06 11:30:48 +08005310 if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08005311 rtl_drop_queued_tx(tp);
hayeswangd823ab62015-01-12 12:06:23 +08005312 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08005313 } else {
hayeswangb5403272014-10-09 18:00:26 +08005314 mutex_lock(&tp->control);
5315
hayeswang9a4be1b2014-02-18 21:49:07 +08005316 tp->rtl_ops.down(tp);
hayeswangb5403272014-10-09 18:00:26 +08005317
5318 mutex_unlock(&tp->control);
5319
hayeswang9a4be1b2014-02-18 21:49:07 +08005320 usb_autopm_put_interface(tp->intf);
5321 }
hayeswangac718b62013-05-02 16:01:25 +00005322
hayeswang7e9da482014-02-18 21:49:05 +08005323 free_all_mem(tp);
5324
hayeswangac718b62013-05-02 16:01:25 +00005325 return res;
5326}
5327
hayeswang4f1d4d52014-03-11 16:24:19 +08005328static void rtl_tally_reset(struct r8152 *tp)
5329{
5330 u32 ocp_data;
5331
5332 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
5333 ocp_data |= TALLY_RESET;
5334 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
5335}
5336
hayeswangac718b62013-05-02 16:01:25 +00005337static void r8152b_init(struct r8152 *tp)
5338{
hayeswangebc2ec482013-08-14 20:54:38 +08005339 u32 ocp_data;
hayeswang2dd436d2016-09-20 16:22:06 +08005340 u16 data;
hayeswangac718b62013-05-02 16:01:25 +00005341
hayeswang68714382014-04-11 17:54:31 +08005342 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5343 return;
5344
hayeswang2dd436d2016-09-20 16:22:06 +08005345 data = r8152_mdio_read(tp, MII_BMCR);
5346 if (data & BMCR_PDOWN) {
5347 data &= ~BMCR_PDOWN;
5348 r8152_mdio_write(tp, MII_BMCR, data);
5349 }
5350
hayeswangcda9fb02016-01-07 17:51:12 +08005351 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08005352
hayeswangac718b62013-05-02 16:01:25 +00005353 if (tp->version == RTL_VER_01) {
5354 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
5355 ocp_data &= ~LED_MODE_MASK;
5356 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
5357 }
5358
hayeswang00a5e362014-02-18 21:48:59 +08005359 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00005360
hayeswangac718b62013-05-02 16:01:25 +00005361 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
5362 ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
5363 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
5364 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
5365 ocp_data &= ~MCU_CLK_RATIO_MASK;
5366 ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
5367 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
5368 ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
5369 SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
5370 ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
5371
hayeswang4f1d4d52014-03-11 16:24:19 +08005372 rtl_tally_reset(tp);
hayeswangac718b62013-05-02 16:01:25 +00005373
hayeswangebc2ec482013-08-14 20:54:38 +08005374 /* enable rx aggregation */
hayeswangac718b62013-05-02 16:01:25 +00005375 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
hayeswange90fba82015-07-31 11:23:39 +08005376 ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
hayeswangac718b62013-05-02 16:01:25 +00005377 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
5378}
5379
hayeswang43779f82014-01-02 11:25:10 +08005380static void r8153_init(struct r8152 *tp)
5381{
5382 u32 ocp_data;
hayeswang2dd436d2016-09-20 16:22:06 +08005383 u16 data;
hayeswang43779f82014-01-02 11:25:10 +08005384 int i;
5385
hayeswang68714382014-04-11 17:54:31 +08005386 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5387 return;
5388
hayeswangb9702722014-02-18 21:49:00 +08005389 r8153_u1u2en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08005390
5391 for (i = 0; i < 500; i++) {
5392 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
5393 AUTOLOAD_DONE)
5394 break;
You-Sheng Yangd64c7a02020-02-26 23:37:10 +08005395
hayeswang43779f82014-01-02 11:25:10 +08005396 msleep(20);
You-Sheng Yangd64c7a02020-02-26 23:37:10 +08005397 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5398 break;
hayeswang43779f82014-01-02 11:25:10 +08005399 }
5400
hayeswangc564b872017-06-09 17:11:38 +08005401 data = r8153_phy_status(tp, 0);
hayeswang43779f82014-01-02 11:25:10 +08005402
hayeswang2dd436d2016-09-20 16:22:06 +08005403 if (tp->version == RTL_VER_03 || tp->version == RTL_VER_04 ||
5404 tp->version == RTL_VER_05)
5405 ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
5406
5407 data = r8152_mdio_read(tp, MII_BMCR);
5408 if (data & BMCR_PDOWN) {
5409 data &= ~BMCR_PDOWN;
5410 r8152_mdio_write(tp, MII_BMCR, data);
5411 }
5412
hayeswangc564b872017-06-09 17:11:38 +08005413 data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
hayeswang2dd436d2016-09-20 16:22:06 +08005414
hayeswangb9702722014-02-18 21:49:00 +08005415 r8153_u2p3en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08005416
hayeswang65bab842015-02-12 16:20:46 +08005417 if (tp->version == RTL_VER_04) {
5418 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
5419 ocp_data &= ~pwd_dn_scale_mask;
5420 ocp_data |= pwd_dn_scale(96);
5421 ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
5422
5423 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
5424 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
5425 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
5426 } else if (tp->version == RTL_VER_05) {
5427 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
5428 ocp_data &= ~ECM_ALDPS;
5429 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
5430
5431 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
5432 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
5433 ocp_data &= ~DYNAMIC_BURST;
5434 else
5435 ocp_data |= DYNAMIC_BURST;
5436 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
hayeswangfb02eb42015-07-22 15:27:41 +08005437 } else if (tp->version == RTL_VER_06) {
5438 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
5439 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
5440 ocp_data &= ~DYNAMIC_BURST;
5441 else
5442 ocp_data |= DYNAMIC_BURST;
5443 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
Hayes Wanga3914272020-01-22 16:02:05 +08005444
5445 r8153_queue_wake(tp, false);
5446
5447 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
5448 if (rtl8152_get_speed(tp) & LINK_STATUS)
5449 ocp_data |= CUR_LINK_OK;
5450 else
5451 ocp_data &= ~CUR_LINK_OK;
5452 ocp_data |= POLL_LINK_CHG;
5453 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
hayeswang65bab842015-02-12 16:20:46 +08005454 }
5455
5456 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
5457 ocp_data |= EP4_FULL_FC;
5458 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
5459
hayeswang43779f82014-01-02 11:25:10 +08005460 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
5461 ocp_data &= ~TIMER11_EN;
5462 ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
5463
hayeswang43779f82014-01-02 11:25:10 +08005464 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
5465 ocp_data &= ~LED_MODE_MASK;
5466 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
5467
hayeswang65bab842015-02-12 16:20:46 +08005468 ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
Oliver Neukum2b84af94a2016-05-02 13:06:14 +02005469 if (tp->version == RTL_VER_04 && tp->udev->speed < USB_SPEED_SUPER)
hayeswang43779f82014-01-02 11:25:10 +08005470 ocp_data |= LPM_TIMER_500MS;
hayeswang34203e22015-02-06 11:30:46 +08005471 else
5472 ocp_data |= LPM_TIMER_500US;
hayeswang43779f82014-01-02 11:25:10 +08005473 ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
5474
5475 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
5476 ocp_data &= ~SEN_VAL_MASK;
5477 ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
5478 ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
5479
hayeswang65bab842015-02-12 16:20:46 +08005480 ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
5481
hayeswangb9702722014-02-18 21:49:00 +08005482 r8153_power_cut_en(tp, false);
Hayes Wanga3914272020-01-22 16:02:05 +08005483 rtl_runtime_suspend_enable(tp, false);
hayeswangb9702722014-02-18 21:49:00 +08005484 r8153_u1u2en(tp, true);
hayeswang134f98b2017-06-09 17:11:40 +08005485 r8153_mac_clk_spd(tp, false);
hayeswangee4761c2017-06-09 17:11:39 +08005486 usb_enable_lpm(tp->udev);
hayeswang43779f82014-01-02 11:25:10 +08005487
Hayes Wang19813162020-01-22 16:02:12 +08005488 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
5489 ocp_data |= LANWAKE_CLR_EN;
5490 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
5491
5492 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG);
5493 ocp_data &= ~LANWAKE_PIN;
5494 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data);
5495
hayeswange31f6362017-06-09 17:11:41 +08005496 /* rx aggregation */
5497 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
5498 ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
Kai-Heng Feng0b165512018-01-16 16:46:27 +08005499 if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags))
5500 ocp_data |= RX_AGG_DISABLE;
5501
hayeswange31f6362017-06-09 17:11:41 +08005502 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08005503
hayeswang4f1d4d52014-03-11 16:24:19 +08005504 rtl_tally_reset(tp);
hayeswang49d10342017-06-09 17:11:44 +08005505
5506 switch (tp->udev->speed) {
5507 case USB_SPEED_SUPER:
5508 case USB_SPEED_SUPER_PLUS:
5509 tp->coalesce = COALESCE_SUPER;
5510 break;
5511 case USB_SPEED_HIGH:
5512 tp->coalesce = COALESCE_HIGH;
5513 break;
5514 default:
5515 tp->coalesce = COALESCE_SLOW;
5516 break;
5517 }
hayeswang43779f82014-01-02 11:25:10 +08005518}
5519
hayeswang65b82d62017-06-15 14:44:03 +08005520static void r8153b_init(struct r8152 *tp)
5521{
5522 u32 ocp_data;
5523 u16 data;
5524 int i;
5525
5526 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5527 return;
5528
5529 r8153b_u1u2en(tp, false);
5530
5531 for (i = 0; i < 500; i++) {
5532 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
5533 AUTOLOAD_DONE)
5534 break;
You-Sheng Yangd64c7a02020-02-26 23:37:10 +08005535
hayeswang65b82d62017-06-15 14:44:03 +08005536 msleep(20);
You-Sheng Yangd64c7a02020-02-26 23:37:10 +08005537 if (test_bit(RTL8152_UNPLUG, &tp->flags))
5538 break;
hayeswang65b82d62017-06-15 14:44:03 +08005539 }
5540
5541 data = r8153_phy_status(tp, 0);
5542
5543 data = r8152_mdio_read(tp, MII_BMCR);
5544 if (data & BMCR_PDOWN) {
5545 data &= ~BMCR_PDOWN;
5546 r8152_mdio_write(tp, MII_BMCR, data);
5547 }
5548
5549 data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
5550
5551 r8153_u2p3en(tp, false);
5552
5553 /* MSC timer = 0xfff * 8ms = 32760 ms */
5554 ocp_write_word(tp, MCU_TYPE_USB, USB_MSC_TIMER, 0x0fff);
5555
5556 /* U1/U2/L1 idle timer. 500 us */
5557 ocp_write_word(tp, MCU_TYPE_USB, USB_U1U2_TIMER, 500);
5558
5559 r8153b_power_cut_en(tp, false);
5560 r8153b_ups_en(tp, false);
Hayes Wang13e04fbf2019-07-01 15:53:19 +08005561 r8153_queue_wake(tp, false);
hayeswang65b82d62017-06-15 14:44:03 +08005562 rtl_runtime_suspend_enable(tp, false);
Hayes Wanga3914272020-01-22 16:02:05 +08005563
5564 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
5565 if (rtl8152_get_speed(tp) & LINK_STATUS)
5566 ocp_data |= CUR_LINK_OK;
5567 else
5568 ocp_data &= ~CUR_LINK_OK;
5569 ocp_data |= POLL_LINK_CHG;
5570 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
Hayes Wanga0246da2020-01-22 16:02:11 +08005571
5572 if (tp->udev->speed != USB_SPEED_HIGH)
5573 r8153b_u1u2en(tp, true);
hayeswang65b82d62017-06-15 14:44:03 +08005574 usb_enable_lpm(tp->udev);
5575
5576 /* MAC clock speed down */
5577 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2);
5578 ocp_data |= MAC_CLK_SPDWN_EN;
5579 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, ocp_data);
5580
Hayes Wang08997b52020-01-22 16:02:09 +08005581 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5582 ocp_data &= ~PLA_MCU_SPDWN_EN;
5583 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5584
Hayes Wangd7f1b592020-01-22 16:02:10 +08005585 if (tp->version == RTL_VER_09) {
5586 /* Disable Test IO for 32QFN */
5587 if (ocp_read_byte(tp, MCU_TYPE_PLA, 0xdc00) & BIT(5)) {
5588 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
5589 ocp_data |= TEST_IO_OFF;
5590 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
5591 }
5592 }
5593
hayeswang65b82d62017-06-15 14:44:03 +08005594 set_bit(GREEN_ETHERNET, &tp->flags);
5595
5596 /* rx aggregation */
5597 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
5598 ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
5599 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
5600
5601 rtl_tally_reset(tp);
5602
5603 tp->coalesce = 15000; /* 15 us */
5604}
5605
hayeswange5011392015-07-29 20:39:08 +08005606static int rtl8152_pre_reset(struct usb_interface *intf)
5607{
5608 struct r8152 *tp = usb_get_intfdata(intf);
5609 struct net_device *netdev;
5610
5611 if (!tp)
5612 return 0;
5613
5614 netdev = tp->netdev;
5615 if (!netif_running(netdev))
5616 return 0;
5617
hayeswangde9bf292017-01-26 09:38:32 +08005618 netif_stop_queue(netdev);
Hayes Wangd2187f82019-08-19 14:40:36 +08005619 tasklet_disable(&tp->tx_tl);
hayeswange5011392015-07-29 20:39:08 +08005620 clear_bit(WORK_ENABLE, &tp->flags);
5621 usb_kill_urb(tp->intr_urb);
5622 cancel_delayed_work_sync(&tp->schedule);
Hayes Wang5b1d9c12019-11-22 16:21:09 +08005623 napi_disable(&tp->napi);
hayeswange5011392015-07-29 20:39:08 +08005624 if (netif_carrier_ok(netdev)) {
hayeswange5011392015-07-29 20:39:08 +08005625 mutex_lock(&tp->control);
5626 tp->rtl_ops.disable(tp);
5627 mutex_unlock(&tp->control);
5628 }
5629
5630 return 0;
5631}
5632
5633static int rtl8152_post_reset(struct usb_interface *intf)
5634{
5635 struct r8152 *tp = usb_get_intfdata(intf);
5636 struct net_device *netdev;
Mario Limonciello25766272019-04-04 13:46:53 -05005637 struct sockaddr sa;
hayeswange5011392015-07-29 20:39:08 +08005638
5639 if (!tp)
5640 return 0;
5641
Mario Limonciello25766272019-04-04 13:46:53 -05005642 /* reset the MAC adddress in case of policy change */
5643 if (determine_ethernet_addr(tp, &sa) >= 0) {
5644 rtnl_lock();
5645 dev_set_mac_address (tp->netdev, &sa, NULL);
5646 rtnl_unlock();
5647 }
5648
hayeswange5011392015-07-29 20:39:08 +08005649 netdev = tp->netdev;
5650 if (!netif_running(netdev))
5651 return 0;
5652
5653 set_bit(WORK_ENABLE, &tp->flags);
5654 if (netif_carrier_ok(netdev)) {
5655 mutex_lock(&tp->control);
5656 tp->rtl_ops.enable(tp);
hayeswang2c561b22017-01-20 14:33:55 +08005657 rtl_start_rx(tp);
Hayes Wangaece4772018-02-02 16:43:36 +08005658 _rtl8152_set_rx_mode(netdev);
hayeswange5011392015-07-29 20:39:08 +08005659 mutex_unlock(&tp->control);
hayeswange5011392015-07-29 20:39:08 +08005660 }
5661
5662 napi_enable(&tp->napi);
Hayes Wangd2187f82019-08-19 14:40:36 +08005663 tasklet_enable(&tp->tx_tl);
hayeswangde9bf292017-01-26 09:38:32 +08005664 netif_wake_queue(netdev);
hayeswang2c561b22017-01-20 14:33:55 +08005665 usb_submit_urb(tp->intr_urb, GFP_KERNEL);
hayeswange5011392015-07-29 20:39:08 +08005666
hayeswang7489bda2017-01-26 09:38:34 +08005667 if (!list_empty(&tp->rx_done))
5668 napi_schedule(&tp->napi);
hayeswange5011392015-07-29 20:39:08 +08005669
5670 return 0;
hayeswangac718b62013-05-02 16:01:25 +00005671}
5672
hayeswang2dd49e02015-09-07 11:57:44 +08005673static bool delay_autosuspend(struct r8152 *tp)
5674{
5675 bool sw_linking = !!netif_carrier_ok(tp->netdev);
5676 bool hw_linking = !!(rtl8152_get_speed(tp) & LINK_STATUS);
5677
5678 /* This means a linking change occurs and the driver doesn't detect it,
5679 * yet. If the driver has disabled tx/rx and hw is linking on, the
5680 * device wouldn't wake up by receiving any packet.
5681 */
5682 if (work_busy(&tp->schedule.work) || sw_linking != hw_linking)
5683 return true;
5684
5685 /* If the linking down is occurred by nway, the device may miss the
5686 * linking change event. And it wouldn't wake when linking on.
5687 */
5688 if (!sw_linking && tp->rtl_ops.in_nway(tp))
5689 return true;
hayeswang6a0b76c2017-01-23 14:18:43 +08005690 else if (!skb_queue_empty(&tp->tx_queue))
5691 return true;
hayeswang2dd49e02015-09-07 11:57:44 +08005692 else
5693 return false;
5694}
5695
hayeswang21cbd0e2017-06-13 15:14:39 +08005696static int rtl8152_runtime_resume(struct r8152 *tp)
5697{
5698 struct net_device *netdev = tp->netdev;
5699
5700 if (netif_running(netdev) && netdev->flags & IFF_UP) {
5701 struct napi_struct *napi = &tp->napi;
5702
5703 tp->rtl_ops.autosuspend_en(tp, false);
5704 napi_disable(napi);
5705 set_bit(WORK_ENABLE, &tp->flags);
5706
5707 if (netif_carrier_ok(netdev)) {
5708 if (rtl8152_get_speed(tp) & LINK_STATUS) {
5709 rtl_start_rx(tp);
5710 } else {
5711 netif_carrier_off(netdev);
5712 tp->rtl_ops.disable(tp);
5713 netif_info(tp, link, netdev, "linking down\n");
5714 }
5715 }
5716
5717 napi_enable(napi);
5718 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5719 smp_mb__after_atomic();
5720
5721 if (!list_empty(&tp->rx_done))
5722 napi_schedule(&tp->napi);
5723
5724 usb_submit_urb(tp->intr_urb, GFP_NOIO);
5725 } else {
5726 if (netdev->flags & IFF_UP)
5727 tp->rtl_ops.autosuspend_en(tp, false);
5728
5729 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5730 }
5731
5732 return 0;
5733}
5734
5735static int rtl8152_system_resume(struct r8152 *tp)
5736{
5737 struct net_device *netdev = tp->netdev;
5738
5739 netif_device_attach(netdev);
5740
Hayes Wang5b1d9c12019-11-22 16:21:09 +08005741 if (netif_running(netdev) && (netdev->flags & IFF_UP)) {
hayeswang21cbd0e2017-06-13 15:14:39 +08005742 tp->rtl_ops.up(tp);
5743 netif_carrier_off(netdev);
5744 set_bit(WORK_ENABLE, &tp->flags);
5745 usb_submit_urb(tp->intr_urb, GFP_NOIO);
5746 }
5747
5748 return 0;
5749}
5750
hayeswanga9c54ad2017-01-25 13:41:45 +08005751static int rtl8152_runtime_suspend(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00005752{
hayeswang6cc69f22014-10-17 16:55:08 +08005753 struct net_device *netdev = tp->netdev;
5754 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +00005755
hayeswang26afec32017-01-26 09:38:31 +08005756 set_bit(SELECTIVE_SUSPEND, &tp->flags);
5757 smp_mb__after_atomic();
5758
hayeswang8fb28062017-01-10 17:04:06 +08005759 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswang75dc6922017-01-10 17:04:07 +08005760 u32 rcr = 0;
5761
hayeswang75dc6922017-01-10 17:04:07 +08005762 if (netif_carrier_ok(netdev)) {
5763 u32 ocp_data;
5764
5765 rcr = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
5766 ocp_data = rcr & ~RCR_ACPT_ALL;
5767 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
5768 rxdy_gated_en(tp, true);
5769 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA,
5770 PLA_OOB_CTRL);
5771 if (!(ocp_data & RXFIFO_EMPTY)) {
5772 rxdy_gated_en(tp, false);
5773 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
hayeswang26afec32017-01-26 09:38:31 +08005774 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5775 smp_mb__after_atomic();
hayeswang75dc6922017-01-10 17:04:07 +08005776 ret = -EBUSY;
5777 goto out1;
5778 }
5779 }
5780
hayeswang8fb28062017-01-10 17:04:06 +08005781 clear_bit(WORK_ENABLE, &tp->flags);
5782 usb_kill_urb(tp->intr_urb);
hayeswang75dc6922017-01-10 17:04:07 +08005783
hayeswang8fb28062017-01-10 17:04:06 +08005784 tp->rtl_ops.autosuspend_en(tp, true);
hayeswang75dc6922017-01-10 17:04:07 +08005785
5786 if (netif_carrier_ok(netdev)) {
hayeswangce594e92017-03-16 14:32:22 +08005787 struct napi_struct *napi = &tp->napi;
5788
5789 napi_disable(napi);
hayeswang75dc6922017-01-10 17:04:07 +08005790 rtl_stop_rx(tp);
5791 rxdy_gated_en(tp, false);
5792 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
hayeswangce594e92017-03-16 14:32:22 +08005793 napi_enable(napi);
hayeswang75dc6922017-01-10 17:04:07 +08005794 }
hayeswangbd882982017-06-13 15:14:40 +08005795
5796 if (delay_autosuspend(tp)) {
5797 rtl8152_runtime_resume(tp);
5798 ret = -EBUSY;
5799 }
hayeswang6cc69f22014-10-17 16:55:08 +08005800 }
5801
hayeswang8fb28062017-01-10 17:04:06 +08005802out1:
5803 return ret;
5804}
5805
5806static int rtl8152_system_suspend(struct r8152 *tp)
5807{
5808 struct net_device *netdev = tp->netdev;
hayeswang8fb28062017-01-10 17:04:06 +08005809
5810 netif_device_detach(netdev);
5811
hayeswange3bd1a82014-10-29 11:12:17 +08005812 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswangce594e92017-03-16 14:32:22 +08005813 struct napi_struct *napi = &tp->napi;
5814
hayeswangac718b62013-05-02 16:01:25 +00005815 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08005816 usb_kill_urb(tp->intr_urb);
Hayes Wangd2187f82019-08-19 14:40:36 +08005817 tasklet_disable(&tp->tx_tl);
hayeswangce594e92017-03-16 14:32:22 +08005818 napi_disable(napi);
hayeswang8fb28062017-01-10 17:04:06 +08005819 cancel_delayed_work_sync(&tp->schedule);
5820 tp->rtl_ops.down(tp);
hayeswangce594e92017-03-16 14:32:22 +08005821 napi_enable(napi);
Hayes Wangd2187f82019-08-19 14:40:36 +08005822 tasklet_enable(&tp->tx_tl);
hayeswangac718b62013-05-02 16:01:25 +00005823 }
hayeswang8fb28062017-01-10 17:04:06 +08005824
zhong jiangf7419172018-08-09 09:39:13 +08005825 return 0;
hayeswang8fb28062017-01-10 17:04:06 +08005826}
5827
5828static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
5829{
5830 struct r8152 *tp = usb_get_intfdata(intf);
5831 int ret;
5832
5833 mutex_lock(&tp->control);
5834
5835 if (PMSG_IS_AUTO(message))
hayeswanga9c54ad2017-01-25 13:41:45 +08005836 ret = rtl8152_runtime_suspend(tp);
hayeswang8fb28062017-01-10 17:04:06 +08005837 else
5838 ret = rtl8152_system_suspend(tp);
5839
hayeswangb5403272014-10-09 18:00:26 +08005840 mutex_unlock(&tp->control);
5841
hayeswang6cc69f22014-10-17 16:55:08 +08005842 return ret;
hayeswangac718b62013-05-02 16:01:25 +00005843}
5844
5845static int rtl8152_resume(struct usb_interface *intf)
5846{
5847 struct r8152 *tp = usb_get_intfdata(intf);
hayeswang21cbd0e2017-06-13 15:14:39 +08005848 int ret;
hayeswangac718b62013-05-02 16:01:25 +00005849
hayeswangb5403272014-10-09 18:00:26 +08005850 mutex_lock(&tp->control);
5851
hayeswang21cbd0e2017-06-13 15:14:39 +08005852 if (test_bit(SELECTIVE_SUSPEND, &tp->flags))
5853 ret = rtl8152_runtime_resume(tp);
5854 else
5855 ret = rtl8152_system_resume(tp);
hayeswangac718b62013-05-02 16:01:25 +00005856
hayeswangb5403272014-10-09 18:00:26 +08005857 mutex_unlock(&tp->control);
5858
hayeswang21cbd0e2017-06-13 15:14:39 +08005859 return ret;
hayeswangac718b62013-05-02 16:01:25 +00005860}
5861
hayeswang7ec25412016-01-04 14:38:46 +08005862static int rtl8152_reset_resume(struct usb_interface *intf)
5863{
5864 struct r8152 *tp = usb_get_intfdata(intf);
5865
5866 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswangbefb2de2017-06-09 17:11:45 +08005867 tp->rtl_ops.init(tp);
5868 queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
Kai-Heng Fenga54cdee2019-10-04 20:51:04 +08005869 set_ethernet_addr(tp);
hayeswang7ec25412016-01-04 14:38:46 +08005870 return rtl8152_resume(intf);
5871}
5872
hayeswang21ff2e82014-02-18 21:49:06 +08005873static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
5874{
5875 struct r8152 *tp = netdev_priv(dev);
5876
hayeswang9a4be1b2014-02-18 21:49:07 +08005877 if (usb_autopm_get_interface(tp->intf) < 0)
5878 return;
5879
hayeswang7daed8d2015-07-24 13:54:24 +08005880 if (!rtl_can_wakeup(tp)) {
5881 wol->supported = 0;
5882 wol->wolopts = 0;
5883 } else {
5884 mutex_lock(&tp->control);
5885 wol->supported = WAKE_ANY;
5886 wol->wolopts = __rtl_get_wol(tp);
5887 mutex_unlock(&tp->control);
5888 }
hayeswangb5403272014-10-09 18:00:26 +08005889
hayeswang9a4be1b2014-02-18 21:49:07 +08005890 usb_autopm_put_interface(tp->intf);
hayeswang21ff2e82014-02-18 21:49:06 +08005891}
5892
5893static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
5894{
5895 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08005896 int ret;
5897
hayeswang7daed8d2015-07-24 13:54:24 +08005898 if (!rtl_can_wakeup(tp))
5899 return -EOPNOTSUPP;
5900
Florian Fainellif2750df2018-09-28 16:18:54 -07005901 if (wol->wolopts & ~WAKE_ANY)
5902 return -EINVAL;
5903
hayeswang9a4be1b2014-02-18 21:49:07 +08005904 ret = usb_autopm_get_interface(tp->intf);
5905 if (ret < 0)
5906 goto out_set_wol;
hayeswang21ff2e82014-02-18 21:49:06 +08005907
hayeswangb5403272014-10-09 18:00:26 +08005908 mutex_lock(&tp->control);
5909
hayeswang21ff2e82014-02-18 21:49:06 +08005910 __rtl_set_wol(tp, wol->wolopts);
5911 tp->saved_wolopts = wol->wolopts & WAKE_ANY;
5912
hayeswangb5403272014-10-09 18:00:26 +08005913 mutex_unlock(&tp->control);
5914
hayeswang9a4be1b2014-02-18 21:49:07 +08005915 usb_autopm_put_interface(tp->intf);
5916
5917out_set_wol:
5918 return ret;
hayeswang21ff2e82014-02-18 21:49:06 +08005919}
5920
hayeswanga5ec27c2014-02-18 21:49:11 +08005921static u32 rtl8152_get_msglevel(struct net_device *dev)
5922{
5923 struct r8152 *tp = netdev_priv(dev);
5924
5925 return tp->msg_enable;
5926}
5927
5928static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
5929{
5930 struct r8152 *tp = netdev_priv(dev);
5931
5932 tp->msg_enable = value;
5933}
5934
hayeswangac718b62013-05-02 16:01:25 +00005935static void rtl8152_get_drvinfo(struct net_device *netdev,
5936 struct ethtool_drvinfo *info)
5937{
5938 struct r8152 *tp = netdev_priv(netdev);
5939
hayeswangb0b46c72014-08-26 10:08:23 +08005940 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
5941 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
hayeswangac718b62013-05-02 16:01:25 +00005942 usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
Hayes Wang9370f2d2019-10-16 11:02:42 +08005943 if (!IS_ERR_OR_NULL(tp->rtl_fw.fw))
5944 strlcpy(info->fw_version, tp->rtl_fw.version,
5945 sizeof(info->fw_version));
hayeswangac718b62013-05-02 16:01:25 +00005946}
5947
5948static
Philippe Reynes06144dc2017-03-12 22:41:58 +01005949int rtl8152_get_link_ksettings(struct net_device *netdev,
5950 struct ethtool_link_ksettings *cmd)
hayeswangac718b62013-05-02 16:01:25 +00005951{
5952 struct r8152 *tp = netdev_priv(netdev);
hayeswang8d4a4d72014-10-09 18:00:25 +08005953 int ret;
hayeswangac718b62013-05-02 16:01:25 +00005954
5955 if (!tp->mii.mdio_read)
5956 return -EOPNOTSUPP;
5957
hayeswang8d4a4d72014-10-09 18:00:25 +08005958 ret = usb_autopm_get_interface(tp->intf);
5959 if (ret < 0)
5960 goto out;
5961
hayeswangb5403272014-10-09 18:00:26 +08005962 mutex_lock(&tp->control);
5963
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +03005964 mii_ethtool_get_link_ksettings(&tp->mii, cmd);
hayeswang8d4a4d72014-10-09 18:00:25 +08005965
hayeswangb5403272014-10-09 18:00:26 +08005966 mutex_unlock(&tp->control);
5967
hayeswang8d4a4d72014-10-09 18:00:25 +08005968 usb_autopm_put_interface(tp->intf);
5969
5970out:
5971 return ret;
hayeswangac718b62013-05-02 16:01:25 +00005972}
5973
Philippe Reynes06144dc2017-03-12 22:41:58 +01005974static int rtl8152_set_link_ksettings(struct net_device *dev,
5975 const struct ethtool_link_ksettings *cmd)
hayeswangac718b62013-05-02 16:01:25 +00005976{
5977 struct r8152 *tp = netdev_priv(dev);
Hayes Wang771efed2019-09-02 19:52:28 +08005978 u32 advertising = 0;
hayeswang9a4be1b2014-02-18 21:49:07 +08005979 int ret;
hayeswangac718b62013-05-02 16:01:25 +00005980
hayeswang9a4be1b2014-02-18 21:49:07 +08005981 ret = usb_autopm_get_interface(tp->intf);
5982 if (ret < 0)
5983 goto out;
5984
Hayes Wang771efed2019-09-02 19:52:28 +08005985 if (test_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT,
5986 cmd->link_modes.advertising))
5987 advertising |= RTL_ADVERTISED_10_HALF;
5988
5989 if (test_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT,
5990 cmd->link_modes.advertising))
5991 advertising |= RTL_ADVERTISED_10_FULL;
5992
5993 if (test_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT,
5994 cmd->link_modes.advertising))
5995 advertising |= RTL_ADVERTISED_100_HALF;
5996
5997 if (test_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
5998 cmd->link_modes.advertising))
5999 advertising |= RTL_ADVERTISED_100_FULL;
6000
6001 if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
6002 cmd->link_modes.advertising))
6003 advertising |= RTL_ADVERTISED_1000_HALF;
6004
6005 if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
6006 cmd->link_modes.advertising))
6007 advertising |= RTL_ADVERTISED_1000_FULL;
6008
hayeswangb5403272014-10-09 18:00:26 +08006009 mutex_lock(&tp->control);
6010
Philippe Reynes06144dc2017-03-12 22:41:58 +01006011 ret = rtl8152_set_speed(tp, cmd->base.autoneg, cmd->base.speed,
Hayes Wang771efed2019-09-02 19:52:28 +08006012 cmd->base.duplex, advertising);
hayeswangaa7e26b2016-06-13 17:49:38 +08006013 if (!ret) {
Philippe Reynes06144dc2017-03-12 22:41:58 +01006014 tp->autoneg = cmd->base.autoneg;
6015 tp->speed = cmd->base.speed;
6016 tp->duplex = cmd->base.duplex;
Hayes Wang771efed2019-09-02 19:52:28 +08006017 tp->advertising = advertising;
hayeswangaa7e26b2016-06-13 17:49:38 +08006018 }
hayeswang9a4be1b2014-02-18 21:49:07 +08006019
hayeswangb5403272014-10-09 18:00:26 +08006020 mutex_unlock(&tp->control);
6021
hayeswang9a4be1b2014-02-18 21:49:07 +08006022 usb_autopm_put_interface(tp->intf);
6023
6024out:
6025 return ret;
hayeswangac718b62013-05-02 16:01:25 +00006026}
6027
hayeswang4f1d4d52014-03-11 16:24:19 +08006028static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
6029 "tx_packets",
6030 "rx_packets",
6031 "tx_errors",
6032 "rx_errors",
6033 "rx_missed",
6034 "align_errors",
6035 "tx_single_collisions",
6036 "tx_multi_collisions",
6037 "rx_unicast",
6038 "rx_broadcast",
6039 "rx_multicast",
6040 "tx_aborted",
6041 "tx_underrun",
6042};
6043
6044static int rtl8152_get_sset_count(struct net_device *dev, int sset)
6045{
6046 switch (sset) {
6047 case ETH_SS_STATS:
6048 return ARRAY_SIZE(rtl8152_gstrings);
6049 default:
6050 return -EOPNOTSUPP;
6051 }
6052}
6053
6054static void rtl8152_get_ethtool_stats(struct net_device *dev,
6055 struct ethtool_stats *stats, u64 *data)
6056{
6057 struct r8152 *tp = netdev_priv(dev);
6058 struct tally_counter tally;
6059
hayeswang0b030242014-07-08 14:49:28 +08006060 if (usb_autopm_get_interface(tp->intf) < 0)
6061 return;
6062
hayeswang4f1d4d52014-03-11 16:24:19 +08006063 generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
6064
hayeswang0b030242014-07-08 14:49:28 +08006065 usb_autopm_put_interface(tp->intf);
6066
hayeswang4f1d4d52014-03-11 16:24:19 +08006067 data[0] = le64_to_cpu(tally.tx_packets);
6068 data[1] = le64_to_cpu(tally.rx_packets);
6069 data[2] = le64_to_cpu(tally.tx_errors);
6070 data[3] = le32_to_cpu(tally.rx_errors);
6071 data[4] = le16_to_cpu(tally.rx_missed);
6072 data[5] = le16_to_cpu(tally.align_errors);
6073 data[6] = le32_to_cpu(tally.tx_one_collision);
6074 data[7] = le32_to_cpu(tally.tx_multi_collision);
6075 data[8] = le64_to_cpu(tally.rx_unicast);
6076 data[9] = le64_to_cpu(tally.rx_broadcast);
6077 data[10] = le32_to_cpu(tally.rx_multicast);
6078 data[11] = le16_to_cpu(tally.tx_aborted);
hayeswangf37119c2014-10-28 14:05:51 +08006079 data[12] = le16_to_cpu(tally.tx_underrun);
hayeswang4f1d4d52014-03-11 16:24:19 +08006080}
6081
6082static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
6083{
6084 switch (stringset) {
6085 case ETH_SS_STATS:
6086 memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
6087 break;
6088 }
6089}
6090
hayeswangdf35d282014-09-25 20:54:02 +08006091static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
6092{
Hayes Wangf4a93be2019-08-23 15:33:40 +08006093 u32 lp, adv, supported = 0;
hayeswangdf35d282014-09-25 20:54:02 +08006094 u16 val;
6095
6096 val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
6097 supported = mmd_eee_cap_to_ethtool_sup_t(val);
6098
6099 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
6100 adv = mmd_eee_adv_to_ethtool_adv_t(val);
6101
6102 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
6103 lp = mmd_eee_adv_to_ethtool_adv_t(val);
6104
Hayes Wangf4a93be2019-08-23 15:33:40 +08006105 eee->eee_enabled = tp->eee_en;
hayeswangdf35d282014-09-25 20:54:02 +08006106 eee->eee_active = !!(supported & adv & lp);
6107 eee->supported = supported;
Hayes Wangf4a93be2019-08-23 15:33:40 +08006108 eee->advertised = tp->eee_adv;
hayeswangdf35d282014-09-25 20:54:02 +08006109 eee->lp_advertised = lp;
6110
6111 return 0;
6112}
6113
6114static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
6115{
6116 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
6117
Hayes Wangf4a93be2019-08-23 15:33:40 +08006118 tp->eee_en = eee->eee_enabled;
6119 tp->eee_adv = val;
6120
Hayes Wange7bde562019-08-23 15:33:41 +08006121 rtl_eee_enable(tp, tp->eee_en);
hayeswangdf35d282014-09-25 20:54:02 +08006122
6123 return 0;
6124}
6125
6126static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
6127{
Hayes Wangf4a93be2019-08-23 15:33:40 +08006128 u32 lp, adv, supported = 0;
hayeswangdf35d282014-09-25 20:54:02 +08006129 u16 val;
6130
6131 val = ocp_reg_read(tp, OCP_EEE_ABLE);
6132 supported = mmd_eee_cap_to_ethtool_sup_t(val);
6133
6134 val = ocp_reg_read(tp, OCP_EEE_ADV);
6135 adv = mmd_eee_adv_to_ethtool_adv_t(val);
6136
6137 val = ocp_reg_read(tp, OCP_EEE_LPABLE);
6138 lp = mmd_eee_adv_to_ethtool_adv_t(val);
6139
Hayes Wangf4a93be2019-08-23 15:33:40 +08006140 eee->eee_enabled = tp->eee_en;
hayeswangdf35d282014-09-25 20:54:02 +08006141 eee->eee_active = !!(supported & adv & lp);
6142 eee->supported = supported;
Hayes Wangf4a93be2019-08-23 15:33:40 +08006143 eee->advertised = tp->eee_adv;
hayeswangdf35d282014-09-25 20:54:02 +08006144 eee->lp_advertised = lp;
6145
6146 return 0;
6147}
6148
hayeswangdf35d282014-09-25 20:54:02 +08006149static int
6150rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
6151{
6152 struct r8152 *tp = netdev_priv(net);
6153 int ret;
6154
6155 ret = usb_autopm_get_interface(tp->intf);
6156 if (ret < 0)
6157 goto out;
6158
hayeswangb5403272014-10-09 18:00:26 +08006159 mutex_lock(&tp->control);
6160
hayeswangdf35d282014-09-25 20:54:02 +08006161 ret = tp->rtl_ops.eee_get(tp, edata);
6162
hayeswangb5403272014-10-09 18:00:26 +08006163 mutex_unlock(&tp->control);
6164
hayeswangdf35d282014-09-25 20:54:02 +08006165 usb_autopm_put_interface(tp->intf);
6166
6167out:
6168 return ret;
6169}
6170
6171static int
6172rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
6173{
6174 struct r8152 *tp = netdev_priv(net);
6175 int ret;
6176
6177 ret = usb_autopm_get_interface(tp->intf);
6178 if (ret < 0)
6179 goto out;
6180
hayeswangb5403272014-10-09 18:00:26 +08006181 mutex_lock(&tp->control);
6182
hayeswangdf35d282014-09-25 20:54:02 +08006183 ret = tp->rtl_ops.eee_set(tp, edata);
hayeswang9d31a7b2014-10-06 10:36:04 +08006184 if (!ret)
6185 ret = mii_nway_restart(&tp->mii);
hayeswangdf35d282014-09-25 20:54:02 +08006186
hayeswangb5403272014-10-09 18:00:26 +08006187 mutex_unlock(&tp->control);
6188
hayeswangdf35d282014-09-25 20:54:02 +08006189 usb_autopm_put_interface(tp->intf);
6190
6191out:
6192 return ret;
6193}
6194
hayeswang8884f502014-10-28 14:05:52 +08006195static int rtl8152_nway_reset(struct net_device *dev)
6196{
6197 struct r8152 *tp = netdev_priv(dev);
6198 int ret;
6199
6200 ret = usb_autopm_get_interface(tp->intf);
6201 if (ret < 0)
6202 goto out;
6203
6204 mutex_lock(&tp->control);
6205
6206 ret = mii_nway_restart(&tp->mii);
6207
6208 mutex_unlock(&tp->control);
6209
6210 usb_autopm_put_interface(tp->intf);
6211
6212out:
6213 return ret;
6214}
6215
hayeswangefb3dd82015-02-12 14:33:48 +08006216static int rtl8152_get_coalesce(struct net_device *netdev,
6217 struct ethtool_coalesce *coalesce)
6218{
6219 struct r8152 *tp = netdev_priv(netdev);
6220
6221 switch (tp->version) {
6222 case RTL_VER_01:
6223 case RTL_VER_02:
hayeswangc27b32c2017-06-15 14:44:02 +08006224 case RTL_VER_07:
hayeswangefb3dd82015-02-12 14:33:48 +08006225 return -EOPNOTSUPP;
6226 default:
6227 break;
6228 }
6229
6230 coalesce->rx_coalesce_usecs = tp->coalesce;
6231
6232 return 0;
6233}
6234
6235static int rtl8152_set_coalesce(struct net_device *netdev,
6236 struct ethtool_coalesce *coalesce)
6237{
6238 struct r8152 *tp = netdev_priv(netdev);
6239 int ret;
6240
6241 switch (tp->version) {
6242 case RTL_VER_01:
6243 case RTL_VER_02:
hayeswangc27b32c2017-06-15 14:44:02 +08006244 case RTL_VER_07:
hayeswangefb3dd82015-02-12 14:33:48 +08006245 return -EOPNOTSUPP;
6246 default:
6247 break;
6248 }
6249
6250 if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
6251 return -EINVAL;
6252
6253 ret = usb_autopm_get_interface(tp->intf);
6254 if (ret < 0)
6255 return ret;
6256
6257 mutex_lock(&tp->control);
6258
6259 if (tp->coalesce != coalesce->rx_coalesce_usecs) {
6260 tp->coalesce = coalesce->rx_coalesce_usecs;
6261
Hayes Wang9fae5412019-07-03 15:11:56 +08006262 if (netif_running(netdev) && netif_carrier_ok(netdev)) {
6263 netif_stop_queue(netdev);
6264 napi_disable(&tp->napi);
6265 tp->rtl_ops.disable(tp);
6266 tp->rtl_ops.enable(tp);
6267 rtl_start_rx(tp);
6268 clear_bit(RTL8152_SET_RX_MODE, &tp->flags);
6269 _rtl8152_set_rx_mode(netdev);
6270 napi_enable(&tp->napi);
6271 netif_wake_queue(netdev);
6272 }
hayeswangefb3dd82015-02-12 14:33:48 +08006273 }
6274
6275 mutex_unlock(&tp->control);
6276
6277 usb_autopm_put_interface(tp->intf);
6278
6279 return ret;
6280}
6281
Hayes Wange4a50172019-08-13 11:42:09 +08006282static int rtl8152_get_tunable(struct net_device *netdev,
6283 const struct ethtool_tunable *tunable, void *d)
6284{
6285 struct r8152 *tp = netdev_priv(netdev);
6286
6287 switch (tunable->id) {
6288 case ETHTOOL_RX_COPYBREAK:
6289 *(u32 *)d = tp->rx_copybreak;
6290 break;
6291 default:
6292 return -EOPNOTSUPP;
6293 }
6294
6295 return 0;
6296}
6297
6298static int rtl8152_set_tunable(struct net_device *netdev,
6299 const struct ethtool_tunable *tunable,
6300 const void *d)
6301{
6302 struct r8152 *tp = netdev_priv(netdev);
6303 u32 val;
6304
6305 switch (tunable->id) {
6306 case ETHTOOL_RX_COPYBREAK:
6307 val = *(u32 *)d;
6308 if (val < ETH_ZLEN) {
6309 netif_err(tp, rx_err, netdev,
6310 "Invalid rx copy break value\n");
6311 return -EINVAL;
6312 }
6313
6314 if (tp->rx_copybreak != val) {
Hayes Wang5b1d9c12019-11-22 16:21:09 +08006315 if (netdev->flags & IFF_UP) {
6316 mutex_lock(&tp->control);
6317 napi_disable(&tp->napi);
6318 tp->rx_copybreak = val;
6319 napi_enable(&tp->napi);
6320 mutex_unlock(&tp->control);
6321 } else {
6322 tp->rx_copybreak = val;
6323 }
Hayes Wange4a50172019-08-13 11:42:09 +08006324 }
6325 break;
6326 default:
6327 return -EOPNOTSUPP;
6328 }
6329
6330 return 0;
6331}
6332
6333static void rtl8152_get_ringparam(struct net_device *netdev,
6334 struct ethtool_ringparam *ring)
6335{
6336 struct r8152 *tp = netdev_priv(netdev);
6337
6338 ring->rx_max_pending = RTL8152_RX_MAX_PENDING;
6339 ring->rx_pending = tp->rx_pending;
6340}
6341
6342static int rtl8152_set_ringparam(struct net_device *netdev,
6343 struct ethtool_ringparam *ring)
6344{
6345 struct r8152 *tp = netdev_priv(netdev);
6346
6347 if (ring->rx_pending < (RTL8152_MAX_RX * 2))
6348 return -EINVAL;
6349
6350 if (tp->rx_pending != ring->rx_pending) {
Hayes Wang5b1d9c12019-11-22 16:21:09 +08006351 if (netdev->flags & IFF_UP) {
6352 mutex_lock(&tp->control);
6353 napi_disable(&tp->napi);
6354 tp->rx_pending = ring->rx_pending;
6355 napi_enable(&tp->napi);
6356 mutex_unlock(&tp->control);
6357 } else {
6358 tp->rx_pending = ring->rx_pending;
6359 }
Hayes Wange4a50172019-08-13 11:42:09 +08006360 }
6361
6362 return 0;
6363}
6364
Julia Lawall407a4712016-09-01 00:21:22 +02006365static const struct ethtool_ops ops = {
Jakub Kicinskie52a6462020-03-05 17:05:59 -08006366 .supported_coalesce_params = ETHTOOL_COALESCE_USECS,
hayeswangac718b62013-05-02 16:01:25 +00006367 .get_drvinfo = rtl8152_get_drvinfo,
hayeswangac718b62013-05-02 16:01:25 +00006368 .get_link = ethtool_op_get_link,
hayeswang8884f502014-10-28 14:05:52 +08006369 .nway_reset = rtl8152_nway_reset,
hayeswanga5ec27c2014-02-18 21:49:11 +08006370 .get_msglevel = rtl8152_get_msglevel,
6371 .set_msglevel = rtl8152_set_msglevel,
hayeswang21ff2e82014-02-18 21:49:06 +08006372 .get_wol = rtl8152_get_wol,
6373 .set_wol = rtl8152_set_wol,
hayeswang4f1d4d52014-03-11 16:24:19 +08006374 .get_strings = rtl8152_get_strings,
6375 .get_sset_count = rtl8152_get_sset_count,
6376 .get_ethtool_stats = rtl8152_get_ethtool_stats,
hayeswangefb3dd82015-02-12 14:33:48 +08006377 .get_coalesce = rtl8152_get_coalesce,
6378 .set_coalesce = rtl8152_set_coalesce,
hayeswangdf35d282014-09-25 20:54:02 +08006379 .get_eee = rtl_ethtool_get_eee,
6380 .set_eee = rtl_ethtool_set_eee,
Philippe Reynes06144dc2017-03-12 22:41:58 +01006381 .get_link_ksettings = rtl8152_get_link_ksettings,
6382 .set_link_ksettings = rtl8152_set_link_ksettings,
Hayes Wange4a50172019-08-13 11:42:09 +08006383 .get_tunable = rtl8152_get_tunable,
6384 .set_tunable = rtl8152_set_tunable,
6385 .get_ringparam = rtl8152_get_ringparam,
6386 .set_ringparam = rtl8152_set_ringparam,
hayeswangac718b62013-05-02 16:01:25 +00006387};
6388
6389static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
6390{
6391 struct r8152 *tp = netdev_priv(netdev);
6392 struct mii_ioctl_data *data = if_mii(rq);
hayeswang9a4be1b2014-02-18 21:49:07 +08006393 int res;
6394
hayeswang68714382014-04-11 17:54:31 +08006395 if (test_bit(RTL8152_UNPLUG, &tp->flags))
6396 return -ENODEV;
6397
hayeswang9a4be1b2014-02-18 21:49:07 +08006398 res = usb_autopm_get_interface(tp->intf);
6399 if (res < 0)
6400 goto out;
hayeswangac718b62013-05-02 16:01:25 +00006401
6402 switch (cmd) {
6403 case SIOCGMIIPHY:
6404 data->phy_id = R8152_PHY_ID; /* Internal PHY */
6405 break;
6406
6407 case SIOCGMIIREG:
hayeswangb5403272014-10-09 18:00:26 +08006408 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00006409 data->val_out = r8152_mdio_read(tp, data->reg_num);
hayeswangb5403272014-10-09 18:00:26 +08006410 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00006411 break;
6412
6413 case SIOCSMIIREG:
6414 if (!capable(CAP_NET_ADMIN)) {
6415 res = -EPERM;
6416 break;
6417 }
hayeswangb5403272014-10-09 18:00:26 +08006418 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00006419 r8152_mdio_write(tp, data->reg_num, data->val_in);
hayeswangb5403272014-10-09 18:00:26 +08006420 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00006421 break;
6422
6423 default:
6424 res = -EOPNOTSUPP;
6425 }
6426
hayeswang9a4be1b2014-02-18 21:49:07 +08006427 usb_autopm_put_interface(tp->intf);
6428
6429out:
hayeswangac718b62013-05-02 16:01:25 +00006430 return res;
6431}
6432
hayeswang69b4b7a2014-07-10 10:58:54 +08006433static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
6434{
6435 struct r8152 *tp = netdev_priv(dev);
hayeswang396e2e22015-02-12 14:33:47 +08006436 int ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08006437
6438 switch (tp->version) {
6439 case RTL_VER_01:
6440 case RTL_VER_02:
hayeswangc27b32c2017-06-15 14:44:02 +08006441 case RTL_VER_07:
Jarod Wilsona52ad512016-10-07 22:04:34 -04006442 dev->mtu = new_mtu;
6443 return 0;
hayeswang69b4b7a2014-07-10 10:58:54 +08006444 default:
6445 break;
6446 }
6447
hayeswang396e2e22015-02-12 14:33:47 +08006448 ret = usb_autopm_get_interface(tp->intf);
6449 if (ret < 0)
6450 return ret;
6451
6452 mutex_lock(&tp->control);
6453
hayeswang69b4b7a2014-07-10 10:58:54 +08006454 dev->mtu = new_mtu;
6455
hayeswang210c4f72017-03-20 16:13:44 +08006456 if (netif_running(dev)) {
hayeswangb65c0c92017-06-21 11:25:18 +08006457 u32 rms = new_mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
hayeswang210c4f72017-03-20 16:13:44 +08006458
6459 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, rms);
6460
6461 if (netif_carrier_ok(dev))
6462 r8153_set_rx_early_size(tp);
6463 }
hayeswang396e2e22015-02-12 14:33:47 +08006464
6465 mutex_unlock(&tp->control);
6466
6467 usb_autopm_put_interface(tp->intf);
6468
6469 return ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08006470}
6471
hayeswangac718b62013-05-02 16:01:25 +00006472static const struct net_device_ops rtl8152_netdev_ops = {
6473 .ndo_open = rtl8152_open,
6474 .ndo_stop = rtl8152_close,
6475 .ndo_do_ioctl = rtl8152_ioctl,
6476 .ndo_start_xmit = rtl8152_start_xmit,
6477 .ndo_tx_timeout = rtl8152_tx_timeout,
hayeswangc5554292014-09-12 10:43:11 +08006478 .ndo_set_features = rtl8152_set_features,
hayeswangac718b62013-05-02 16:01:25 +00006479 .ndo_set_rx_mode = rtl8152_set_rx_mode,
6480 .ndo_set_mac_address = rtl8152_set_mac_address,
hayeswang69b4b7a2014-07-10 10:58:54 +08006481 .ndo_change_mtu = rtl8152_change_mtu,
hayeswangac718b62013-05-02 16:01:25 +00006482 .ndo_validate_addr = eth_validate_addr,
hayeswanga5e31252015-01-06 17:41:58 +08006483 .ndo_features_check = rtl8152_features_check,
hayeswangac718b62013-05-02 16:01:25 +00006484};
6485
hayeswange3fe0b12014-01-02 11:22:39 +08006486static void rtl8152_unload(struct r8152 *tp)
6487{
hayeswang68714382014-04-11 17:54:31 +08006488 if (test_bit(RTL8152_UNPLUG, &tp->flags))
6489 return;
6490
hayeswang00a5e362014-02-18 21:48:59 +08006491 if (tp->version != RTL_VER_01)
6492 r8152_power_cut_en(tp, true);
hayeswange3fe0b12014-01-02 11:22:39 +08006493}
6494
hayeswang43779f82014-01-02 11:25:10 +08006495static void rtl8153_unload(struct r8152 *tp)
6496{
hayeswang68714382014-04-11 17:54:31 +08006497 if (test_bit(RTL8152_UNPLUG, &tp->flags))
6498 return;
6499
hayeswang49be1722014-10-01 13:25:11 +08006500 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08006501}
6502
hayeswang65b82d62017-06-15 14:44:03 +08006503static void rtl8153b_unload(struct r8152 *tp)
6504{
6505 if (test_bit(RTL8152_UNPLUG, &tp->flags))
6506 return;
6507
6508 r8153b_power_cut_en(tp, false);
6509}
6510
hayeswang55b65472014-11-06 12:47:39 +08006511static int rtl_ops_init(struct r8152 *tp)
hayeswangc81229c2014-01-02 11:22:42 +08006512{
6513 struct rtl_ops *ops = &tp->rtl_ops;
hayeswang55b65472014-11-06 12:47:39 +08006514 int ret = 0;
hayeswangc81229c2014-01-02 11:22:42 +08006515
hayeswang55b65472014-11-06 12:47:39 +08006516 switch (tp->version) {
6517 case RTL_VER_01:
6518 case RTL_VER_02:
hayeswangc27b32c2017-06-15 14:44:02 +08006519 case RTL_VER_07:
hayeswang55b65472014-11-06 12:47:39 +08006520 ops->init = r8152b_init;
6521 ops->enable = rtl8152_enable;
6522 ops->disable = rtl8152_disable;
6523 ops->up = rtl8152_up;
6524 ops->down = rtl8152_down;
6525 ops->unload = rtl8152_unload;
6526 ops->eee_get = r8152_get_eee;
6527 ops->eee_set = r8152_set_eee;
hayeswang2dd49e02015-09-07 11:57:44 +08006528 ops->in_nway = rtl8152_in_nway;
hayeswanga028a9e2016-06-13 17:49:36 +08006529 ops->hw_phy_cfg = r8152b_hw_phy_cfg;
hayeswang2609af12016-07-05 16:11:46 +08006530 ops->autosuspend_en = rtl_runtime_suspend_enable;
Hayes Wangec5791c2019-08-13 11:42:05 +08006531 tp->rx_buf_sz = 16 * 1024;
Hayes Wangf4a93be2019-08-23 15:33:40 +08006532 tp->eee_en = true;
6533 tp->eee_adv = MDIO_EEE_100TX;
hayeswang43779f82014-01-02 11:25:10 +08006534 break;
6535
hayeswang55b65472014-11-06 12:47:39 +08006536 case RTL_VER_03:
6537 case RTL_VER_04:
6538 case RTL_VER_05:
hayeswangfb02eb42015-07-22 15:27:41 +08006539 case RTL_VER_06:
hayeswang55b65472014-11-06 12:47:39 +08006540 ops->init = r8153_init;
6541 ops->enable = rtl8153_enable;
6542 ops->disable = rtl8153_disable;
6543 ops->up = rtl8153_up;
6544 ops->down = rtl8153_down;
6545 ops->unload = rtl8153_unload;
6546 ops->eee_get = r8153_get_eee;
Hayes Wange7bde562019-08-23 15:33:41 +08006547 ops->eee_set = r8152_set_eee;
hayeswang2dd49e02015-09-07 11:57:44 +08006548 ops->in_nway = rtl8153_in_nway;
hayeswanga028a9e2016-06-13 17:49:36 +08006549 ops->hw_phy_cfg = r8153_hw_phy_cfg;
hayeswang2609af12016-07-05 16:11:46 +08006550 ops->autosuspend_en = rtl8153_runtime_enable;
Hayes Wangec5791c2019-08-13 11:42:05 +08006551 tp->rx_buf_sz = 32 * 1024;
Hayes Wangf4a93be2019-08-23 15:33:40 +08006552 tp->eee_en = true;
6553 tp->eee_adv = MDIO_EEE_1000T | MDIO_EEE_100TX;
hayeswangc81229c2014-01-02 11:22:42 +08006554 break;
6555
hayeswang65b82d62017-06-15 14:44:03 +08006556 case RTL_VER_08:
6557 case RTL_VER_09:
6558 ops->init = r8153b_init;
6559 ops->enable = rtl8153_enable;
Hayes Wang0e5b36b2019-09-05 10:46:20 +08006560 ops->disable = rtl8153_disable;
hayeswang65b82d62017-06-15 14:44:03 +08006561 ops->up = rtl8153b_up;
6562 ops->down = rtl8153b_down;
6563 ops->unload = rtl8153b_unload;
6564 ops->eee_get = r8153_get_eee;
Hayes Wange7bde562019-08-23 15:33:41 +08006565 ops->eee_set = r8152_set_eee;
hayeswang65b82d62017-06-15 14:44:03 +08006566 ops->in_nway = rtl8153_in_nway;
6567 ops->hw_phy_cfg = r8153b_hw_phy_cfg;
6568 ops->autosuspend_en = rtl8153b_runtime_enable;
Hayes Wangec5791c2019-08-13 11:42:05 +08006569 tp->rx_buf_sz = 32 * 1024;
Hayes Wangf4a93be2019-08-23 15:33:40 +08006570 tp->eee_en = true;
6571 tp->eee_adv = MDIO_EEE_1000T | MDIO_EEE_100TX;
hayeswang65b82d62017-06-15 14:44:03 +08006572 break;
6573
hayeswangc81229c2014-01-02 11:22:42 +08006574 default:
hayeswang55b65472014-11-06 12:47:39 +08006575 ret = -ENODEV;
6576 netif_err(tp, probe, tp->netdev, "Unknown Device\n");
hayeswangc81229c2014-01-02 11:22:42 +08006577 break;
6578 }
6579
6580 return ret;
6581}
6582
Hayes Wang9370f2d2019-10-16 11:02:42 +08006583#define FIRMWARE_8153A_2 "rtl_nic/rtl8153a-2.fw"
6584#define FIRMWARE_8153A_3 "rtl_nic/rtl8153a-3.fw"
6585#define FIRMWARE_8153A_4 "rtl_nic/rtl8153a-4.fw"
6586#define FIRMWARE_8153B_2 "rtl_nic/rtl8153b-2.fw"
6587
6588MODULE_FIRMWARE(FIRMWARE_8153A_2);
6589MODULE_FIRMWARE(FIRMWARE_8153A_3);
6590MODULE_FIRMWARE(FIRMWARE_8153A_4);
6591MODULE_FIRMWARE(FIRMWARE_8153B_2);
6592
6593static int rtl_fw_init(struct r8152 *tp)
6594{
6595 struct rtl_fw *rtl_fw = &tp->rtl_fw;
6596
6597 switch (tp->version) {
6598 case RTL_VER_04:
6599 rtl_fw->fw_name = FIRMWARE_8153A_2;
6600 rtl_fw->pre_fw = r8153_pre_firmware_1;
6601 rtl_fw->post_fw = r8153_post_firmware_1;
6602 break;
6603 case RTL_VER_05:
6604 rtl_fw->fw_name = FIRMWARE_8153A_3;
6605 rtl_fw->pre_fw = r8153_pre_firmware_2;
6606 rtl_fw->post_fw = r8153_post_firmware_2;
6607 break;
6608 case RTL_VER_06:
6609 rtl_fw->fw_name = FIRMWARE_8153A_4;
6610 rtl_fw->post_fw = r8153_post_firmware_3;
6611 break;
6612 case RTL_VER_09:
6613 rtl_fw->fw_name = FIRMWARE_8153B_2;
6614 rtl_fw->pre_fw = r8153b_pre_firmware_1;
6615 rtl_fw->post_fw = r8153b_post_firmware_1;
6616 break;
6617 default:
6618 break;
6619 }
6620
6621 return 0;
6622}
6623
hayeswang33928ee2017-03-17 11:20:13 +08006624static u8 rtl_get_version(struct usb_interface *intf)
6625{
6626 struct usb_device *udev = interface_to_usbdev(intf);
6627 u32 ocp_data = 0;
6628 __le32 *tmp;
6629 u8 version;
6630 int ret;
6631
6632 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
6633 if (!tmp)
6634 return 0;
6635
6636 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
6637 RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
6638 PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp), 500);
6639 if (ret > 0)
6640 ocp_data = (__le32_to_cpu(*tmp) >> 16) & VERSION_MASK;
6641
6642 kfree(tmp);
6643
6644 switch (ocp_data) {
6645 case 0x4c00:
6646 version = RTL_VER_01;
6647 break;
6648 case 0x4c10:
6649 version = RTL_VER_02;
6650 break;
6651 case 0x5c00:
6652 version = RTL_VER_03;
6653 break;
6654 case 0x5c10:
6655 version = RTL_VER_04;
6656 break;
6657 case 0x5c20:
6658 version = RTL_VER_05;
6659 break;
6660 case 0x5c30:
6661 version = RTL_VER_06;
6662 break;
hayeswangc27b32c2017-06-15 14:44:02 +08006663 case 0x4800:
6664 version = RTL_VER_07;
6665 break;
hayeswang65b82d62017-06-15 14:44:03 +08006666 case 0x6000:
6667 version = RTL_VER_08;
6668 break;
6669 case 0x6010:
6670 version = RTL_VER_09;
6671 break;
hayeswang33928ee2017-03-17 11:20:13 +08006672 default:
6673 version = RTL_VER_UNKNOWN;
6674 dev_info(&intf->dev, "Unknown version 0x%04x\n", ocp_data);
6675 break;
6676 }
6677
Oliver Neukumeb3c28c2017-06-12 13:56:51 +02006678 dev_dbg(&intf->dev, "Detected version 0x%04x\n", version);
6679
hayeswang33928ee2017-03-17 11:20:13 +08006680 return version;
6681}
6682
hayeswangac718b62013-05-02 16:01:25 +00006683static int rtl8152_probe(struct usb_interface *intf,
6684 const struct usb_device_id *id)
6685{
6686 struct usb_device *udev = interface_to_usbdev(intf);
hayeswang33928ee2017-03-17 11:20:13 +08006687 u8 version = rtl_get_version(intf);
hayeswangac718b62013-05-02 16:01:25 +00006688 struct r8152 *tp;
6689 struct net_device *netdev;
hayeswangebc2ec482013-08-14 20:54:38 +08006690 int ret;
hayeswangac718b62013-05-02 16:01:25 +00006691
hayeswang33928ee2017-03-17 11:20:13 +08006692 if (version == RTL_VER_UNKNOWN)
6693 return -ENODEV;
6694
hayeswang10c32712014-03-04 20:47:48 +08006695 if (udev->actconfig->desc.bConfigurationValue != 1) {
6696 usb_driver_set_configuration(udev, 1);
6697 return -ENODEV;
6698 }
6699
Johan Hovold86f3f4c2020-01-14 09:27:29 +01006700 if (intf->cur_altsetting->desc.bNumEndpoints < 3)
6701 return -ENODEV;
6702
hayeswang10c32712014-03-04 20:47:48 +08006703 usb_reset_device(udev);
hayeswangac718b62013-05-02 16:01:25 +00006704 netdev = alloc_etherdev(sizeof(struct r8152));
6705 if (!netdev) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08006706 dev_err(&intf->dev, "Out of memory\n");
hayeswangac718b62013-05-02 16:01:25 +00006707 return -ENOMEM;
6708 }
6709
hayeswangebc2ec482013-08-14 20:54:38 +08006710 SET_NETDEV_DEV(netdev, &intf->dev);
hayeswangac718b62013-05-02 16:01:25 +00006711 tp = netdev_priv(netdev);
6712 tp->msg_enable = 0x7FFF;
6713
hayeswange3ad4122014-01-06 17:08:42 +08006714 tp->udev = udev;
6715 tp->netdev = netdev;
6716 tp->intf = intf;
hayeswang33928ee2017-03-17 11:20:13 +08006717 tp->version = version;
hayeswange3ad4122014-01-06 17:08:42 +08006718
hayeswang33928ee2017-03-17 11:20:13 +08006719 switch (version) {
6720 case RTL_VER_01:
6721 case RTL_VER_02:
hayeswangc27b32c2017-06-15 14:44:02 +08006722 case RTL_VER_07:
hayeswang33928ee2017-03-17 11:20:13 +08006723 tp->mii.supports_gmii = 0;
6724 break;
6725 default:
6726 tp->mii.supports_gmii = 1;
6727 break;
6728 }
6729
hayeswang55b65472014-11-06 12:47:39 +08006730 ret = rtl_ops_init(tp);
hayeswang31ca1de2014-01-06 17:08:43 +08006731 if (ret)
6732 goto out;
hayeswangc81229c2014-01-02 11:22:42 +08006733
Hayes Wang9370f2d2019-10-16 11:02:42 +08006734 rtl_fw_init(tp);
6735
hayeswangb5403272014-10-09 18:00:26 +08006736 mutex_init(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00006737 INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
hayeswanga028a9e2016-06-13 17:49:36 +08006738 INIT_DELAYED_WORK(&tp->hw_phy_work, rtl_hw_phy_work_func_t);
Hayes Wangd2187f82019-08-19 14:40:36 +08006739 tasklet_init(&tp->tx_tl, bottom_half, (unsigned long)tp);
6740 tasklet_disable(&tp->tx_tl);
hayeswangac718b62013-05-02 16:01:25 +00006741
hayeswangac718b62013-05-02 16:01:25 +00006742 netdev->netdev_ops = &rtl8152_netdev_ops;
6743 netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
hayeswang5bd23882013-08-14 20:54:39 +08006744
hayeswang60c89072014-03-07 11:04:39 +08006745 netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1bb2014-03-07 11:04:40 +08006746 NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
hayeswangc5554292014-09-12 10:43:11 +08006747 NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
6748 NETIF_F_HW_VLAN_CTAG_TX;
hayeswang60c89072014-03-07 11:04:39 +08006749 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1bb2014-03-07 11:04:40 +08006750 NETIF_F_TSO | NETIF_F_FRAGLIST |
hayeswangc5554292014-09-12 10:43:11 +08006751 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
hayeswangccc39fa2015-02-06 11:30:49 +08006752 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
hayeswangc5554292014-09-12 10:43:11 +08006753 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6754 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
6755 NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
hayeswangdb8515e2014-03-06 15:07:16 +08006756
hayeswang19c0f402017-01-11 16:25:34 +08006757 if (tp->version == RTL_VER_01) {
6758 netdev->features &= ~NETIF_F_RXCSUM;
6759 netdev->hw_features &= ~NETIF_F_RXCSUM;
6760 }
6761
Kai-Heng Fengb4b771f2020-02-04 13:33:13 +08006762 if (le16_to_cpu(udev->descriptor.idVendor) == VENDOR_ID_LENOVO) {
6763 switch (le16_to_cpu(udev->descriptor.idProduct)) {
6764 case DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2:
6765 case DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2:
6766 set_bit(LENOVO_MACPASSTHRU, &tp->flags);
6767 }
6768 }
Kai-Heng Feng96477222019-11-05 19:24:52 +08006769
Kai-Heng Feng176eb612018-08-20 12:43:51 +08006770 if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x3011 && udev->serial &&
Prashant Malani151ea092019-10-02 14:09:33 -07006771 (!strcmp(udev->serial, "000001000000") ||
6772 !strcmp(udev->serial, "000002000000"))) {
Kai-Heng Feng0b165512018-01-16 16:46:27 +08006773 dev_info(&udev->dev, "Dell TB16 Dock, disable RX aggregation");
6774 set_bit(DELL_TB_RX_AGG_BUG, &tp->flags);
6775 }
6776
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00006777 netdev->ethtool_ops = &ops;
hayeswang60c89072014-03-07 11:04:39 +08006778 netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
hayeswangac718b62013-05-02 16:01:25 +00006779
Jarod Wilsonf77f0ae2016-10-20 13:55:17 -04006780 /* MTU range: 68 - 1500 or 9194 */
6781 netdev->min_mtu = ETH_MIN_MTU;
6782 switch (tp->version) {
6783 case RTL_VER_01:
6784 case RTL_VER_02:
6785 netdev->max_mtu = ETH_DATA_LEN;
6786 break;
6787 default:
6788 netdev->max_mtu = RTL8153_MAX_MTU;
6789 break;
6790 }
6791
hayeswangac718b62013-05-02 16:01:25 +00006792 tp->mii.dev = netdev;
6793 tp->mii.mdio_read = read_mii_word;
6794 tp->mii.mdio_write = write_mii_word;
6795 tp->mii.phy_id_mask = 0x3f;
6796 tp->mii.reg_num_mask = 0x1f;
6797 tp->mii.phy_id = R8152_PHY_ID;
hayeswangac718b62013-05-02 16:01:25 +00006798
hayeswangaa7e26b2016-06-13 17:49:38 +08006799 tp->autoneg = AUTONEG_ENABLE;
Hayes Wang771efed2019-09-02 19:52:28 +08006800 tp->speed = SPEED_100;
6801 tp->advertising = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL |
6802 RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL;
6803 if (tp->mii.supports_gmii) {
6804 tp->speed = SPEED_1000;
6805 tp->advertising |= RTL_ADVERTISED_1000_FULL;
6806 }
hayeswangaa7e26b2016-06-13 17:49:38 +08006807 tp->duplex = DUPLEX_FULL;
6808
Hayes Wange4a50172019-08-13 11:42:09 +08006809 tp->rx_copybreak = RTL8152_RXFG_HEADSZ;
6810 tp->rx_pending = 10 * RTL8152_MAX_RX;
6811
hayeswang9a4be1b2014-02-18 21:49:07 +08006812 intf->needs_remote_wakeup = 1;
6813
Hayes Wang9583a362020-01-22 16:02:07 +08006814 if (!rtl_can_wakeup(tp))
6815 __rtl_set_wol(tp, 0);
6816 else
6817 tp->saved_wolopts = __rtl_get_wol(tp);
6818
hayeswangc81229c2014-01-02 11:22:42 +08006819 tp->rtl_ops.init(tp);
Hayes Wang9370f2d2019-10-16 11:02:42 +08006820#if IS_BUILTIN(CONFIG_USB_RTL8152)
6821 /* Retry in case request_firmware() is not ready yet. */
6822 tp->rtl_fw.retry = true;
6823#endif
hayeswanga028a9e2016-06-13 17:49:36 +08006824 queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
hayeswangac718b62013-05-02 16:01:25 +00006825 set_ethernet_addr(tp);
6826
hayeswangac718b62013-05-02 16:01:25 +00006827 usb_set_intfdata(intf, tp);
hayeswangd823ab62015-01-12 12:06:23 +08006828 netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
hayeswangac718b62013-05-02 16:01:25 +00006829
hayeswangebc2ec482013-08-14 20:54:38 +08006830 ret = register_netdev(netdev);
6831 if (ret != 0) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08006832 netif_err(tp, probe, netdev, "couldn't register the device\n");
hayeswangebc2ec482013-08-14 20:54:38 +08006833 goto out1;
hayeswangac718b62013-05-02 16:01:25 +00006834 }
6835
hayeswang21ff2e82014-02-18 21:49:06 +08006836 if (tp->saved_wolopts)
6837 device_set_wakeup_enable(&udev->dev, true);
6838 else
6839 device_set_wakeup_enable(&udev->dev, false);
6840
Hayes Wang4a8deae2014-01-07 11:18:22 +08006841 netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
hayeswangac718b62013-05-02 16:01:25 +00006842
6843 return 0;
6844
hayeswangac718b62013-05-02 16:01:25 +00006845out1:
Hayes Wangd2187f82019-08-19 14:40:36 +08006846 tasklet_kill(&tp->tx_tl);
hayeswangebc2ec482013-08-14 20:54:38 +08006847 usb_set_intfdata(intf, NULL);
hayeswangac718b62013-05-02 16:01:25 +00006848out:
6849 free_netdev(netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08006850 return ret;
hayeswangac718b62013-05-02 16:01:25 +00006851}
6852
hayeswangac718b62013-05-02 16:01:25 +00006853static void rtl8152_disconnect(struct usb_interface *intf)
6854{
6855 struct r8152 *tp = usb_get_intfdata(intf);
6856
6857 usb_set_intfdata(intf, NULL);
6858 if (tp) {
Hayes Wangffa9fec2019-07-04 17:36:32 +08006859 rtl_set_unplug(tp);
hayeswangf561de32014-09-30 16:48:01 +08006860
hayeswangac718b62013-05-02 16:01:25 +00006861 unregister_netdev(tp->netdev);
Hayes Wangd2187f82019-08-19 14:40:36 +08006862 tasklet_kill(&tp->tx_tl);
hayeswanga028a9e2016-06-13 17:49:36 +08006863 cancel_delayed_work_sync(&tp->hw_phy_work);
hayeswangc81229c2014-01-02 11:22:42 +08006864 tp->rtl_ops.unload(tp);
Hayes Wang9370f2d2019-10-16 11:02:42 +08006865 rtl8152_release_firmware(tp);
hayeswangac718b62013-05-02 16:01:25 +00006866 free_netdev(tp->netdev);
6867 }
6868}
6869
hayeswangd9a28c52014-12-04 10:43:11 +08006870#define REALTEK_USB_DEVICE(vend, prod) \
6871 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
6872 USB_DEVICE_ID_MATCH_INT_CLASS, \
6873 .idVendor = (vend), \
6874 .idProduct = (prod), \
6875 .bInterfaceClass = USB_CLASS_VENDOR_SPEC \
6876}, \
6877{ \
6878 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
6879 USB_DEVICE_ID_MATCH_DEVICE, \
6880 .idVendor = (vend), \
6881 .idProduct = (prod), \
6882 .bInterfaceClass = USB_CLASS_COMM, \
6883 .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
6884 .bInterfaceProtocol = USB_CDC_PROTO_NONE
6885
hayeswangac718b62013-05-02 16:01:25 +00006886/* table of devices that work with this driver */
Arvind Yadav9b4355f2017-08-08 21:28:05 +05306887static const struct usb_device_id rtl8152_table[] = {
hayeswangc27b32c2017-06-15 14:44:02 +08006888 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8050)},
hayeswangd9a28c52014-12-04 10:43:11 +08006889 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
6890 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
René Rebed5b07cc2017-03-28 07:56:51 +02006891 {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab)},
6892 {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6)},
Marc Paynec27a20432020-05-19 19:01:46 +01006893 {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927)},
hayeswangd9a28c52014-12-04 10:43:11 +08006894 {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
Vasily Titskiy1006da12015-05-06 10:31:21 -04006895 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)},
hayeswangd248caf2016-10-18 11:41:48 +08006896 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3062)},
6897 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3069)},
Kai-Heng Feng96477222019-11-05 19:24:52 +08006898 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3082)},
hayeswangd248caf2016-10-18 11:41:48 +08006899 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205)},
6900 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x720c)},
6901 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7214)},
Kazutoshi Noguchib3060532019-10-21 00:03:07 +09006902 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0xa387)},
Grant Grundler90841042017-09-28 11:35:00 -07006903 {REALTEK_USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041)},
Zheng Liud065c3c12015-07-07 13:54:12 -07006904 {REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff)},
Ran Wang9d11b062017-10-23 18:10:23 +08006905 {REALTEK_USB_DEVICE(VENDOR_ID_TPLINK, 0x0601)},
hayeswangac718b62013-05-02 16:01:25 +00006906 {}
6907};
6908
6909MODULE_DEVICE_TABLE(usb, rtl8152_table);
6910
6911static struct usb_driver rtl8152_driver = {
6912 .name = MODULENAME,
hayeswangebc2ec482013-08-14 20:54:38 +08006913 .id_table = rtl8152_table,
hayeswangac718b62013-05-02 16:01:25 +00006914 .probe = rtl8152_probe,
6915 .disconnect = rtl8152_disconnect,
hayeswangac718b62013-05-02 16:01:25 +00006916 .suspend = rtl8152_suspend,
hayeswangebc2ec482013-08-14 20:54:38 +08006917 .resume = rtl8152_resume,
hayeswang7ec25412016-01-04 14:38:46 +08006918 .reset_resume = rtl8152_reset_resume,
hayeswange5011392015-07-29 20:39:08 +08006919 .pre_reset = rtl8152_pre_reset,
6920 .post_reset = rtl8152_post_reset,
hayeswang9a4be1b2014-02-18 21:49:07 +08006921 .supports_autosuspend = 1,
hayeswanga6347822014-02-18 21:49:10 +08006922 .disable_hub_initiated_lpm = 1,
hayeswangac718b62013-05-02 16:01:25 +00006923};
6924
Sachin Kamatb4236daa2013-05-16 17:48:08 +00006925module_usb_driver(rtl8152_driver);
hayeswangac718b62013-05-02 16:01:25 +00006926
6927MODULE_AUTHOR(DRIVER_AUTHOR);
6928MODULE_DESCRIPTION(DRIVER_DESC);
6929MODULE_LICENSE("GPL");
Grant Grundlerc961e872016-07-14 11:27:16 -07006930MODULE_VERSION(DRIVER_VERSION);