blob: 6e74965d26a0a34fd68597b137f91f6e24ec6ca2 [file] [log] [blame]
hayeswangac718b62013-05-02 16:01:25 +00001/*
hayeswangc7de7de2014-01-15 10:42:16 +08002 * Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved.
hayeswangac718b62013-05-02 16:01:25 +00003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
7 *
8 */
9
hayeswangac718b62013-05-02 16:01:25 +000010#include <linux/signal.h>
11#include <linux/slab.h>
12#include <linux/module.h>
hayeswangac718b62013-05-02 16:01:25 +000013#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/mii.h>
16#include <linux/ethtool.h>
17#include <linux/usb.h>
18#include <linux/crc32.h>
19#include <linux/if_vlan.h>
20#include <linux/uaccess.h>
hayeswangebc2ec42013-08-14 20:54:38 +080021#include <linux/list.h>
hayeswang5bd23882013-08-14 20:54:39 +080022#include <linux/ip.h>
23#include <linux/ipv6.h>
hayeswang6128d1b2014-03-07 11:04:40 +080024#include <net/ip6_checksum.h>
hayeswang4c4a6b12014-09-25 20:54:00 +080025#include <uapi/linux/mdio.h>
26#include <linux/mdio.h>
hayeswangd9a28c52014-12-04 10:43:11 +080027#include <linux/usb/cdc.h>
hayeswang5ee3c602016-01-07 17:12:17 +080028#include <linux/suspend.h>
Mario Limonciello34ee32c2016-07-11 19:58:04 -050029#include <linux/acpi.h>
hayeswangac718b62013-05-02 16:01:25 +000030
hayeswangd0942472015-09-07 11:57:43 +080031/* Information for net-next */
32#define NETNEXT_VERSION "08"
33
34/* Information for net */
hayeswangbfb38fb2017-03-20 16:13:45 +080035#define NET_VERSION "9"
hayeswangd0942472015-09-07 11:57:43 +080036
37#define DRIVER_VERSION "v1." NETNEXT_VERSION "." NET_VERSION
hayeswangac718b62013-05-02 16:01:25 +000038#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
hayeswang44d942a2014-01-15 10:42:14 +080039#define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters"
hayeswangac718b62013-05-02 16:01:25 +000040#define MODULENAME "r8152"
41
42#define R8152_PHY_ID 32
43
44#define PLA_IDR 0xc000
45#define PLA_RCR 0xc010
46#define PLA_RMS 0xc016
47#define PLA_RXFIFO_CTRL0 0xc0a0
48#define PLA_RXFIFO_CTRL1 0xc0a4
49#define PLA_RXFIFO_CTRL2 0xc0a8
hayeswang65bab842015-02-12 16:20:46 +080050#define PLA_DMY_REG0 0xc0b0
hayeswangac718b62013-05-02 16:01:25 +000051#define PLA_FMC 0xc0b4
52#define PLA_CFG_WOL 0xc0b6
hayeswang43779f82014-01-02 11:25:10 +080053#define PLA_TEREDO_CFG 0xc0bc
hayeswangac718b62013-05-02 16:01:25 +000054#define PLA_MAR 0xcd00
hayeswang43779f82014-01-02 11:25:10 +080055#define PLA_BACKUP 0xd000
hayeswangac718b62013-05-02 16:01:25 +000056#define PAL_BDC_CR 0xd1a0
hayeswang43779f82014-01-02 11:25:10 +080057#define PLA_TEREDO_TIMER 0xd2cc
58#define PLA_REALWOW_TIMER 0xd2e8
hayeswangac718b62013-05-02 16:01:25 +000059#define PLA_LEDSEL 0xdd90
60#define PLA_LED_FEATURE 0xdd92
61#define PLA_PHYAR 0xde00
hayeswang43779f82014-01-02 11:25:10 +080062#define PLA_BOOT_CTRL 0xe004
hayeswangac718b62013-05-02 16:01:25 +000063#define PLA_GPHY_INTR_IMR 0xe022
64#define PLA_EEE_CR 0xe040
65#define PLA_EEEP_CR 0xe080
66#define PLA_MAC_PWR_CTRL 0xe0c0
hayeswang43779f82014-01-02 11:25:10 +080067#define PLA_MAC_PWR_CTRL2 0xe0ca
68#define PLA_MAC_PWR_CTRL3 0xe0cc
69#define PLA_MAC_PWR_CTRL4 0xe0ce
70#define PLA_WDT6_CTRL 0xe428
hayeswangac718b62013-05-02 16:01:25 +000071#define PLA_TCR0 0xe610
72#define PLA_TCR1 0xe612
hayeswang69b4b7a2014-07-10 10:58:54 +080073#define PLA_MTPS 0xe615
hayeswangac718b62013-05-02 16:01:25 +000074#define PLA_TXFIFO_CTRL 0xe618
hayeswang4f1d4d52014-03-11 16:24:19 +080075#define PLA_RSTTALLY 0xe800
hayeswangac718b62013-05-02 16:01:25 +000076#define PLA_CR 0xe813
77#define PLA_CRWECR 0xe81c
hayeswang21ff2e82014-02-18 21:49:06 +080078#define PLA_CONFIG12 0xe81e /* CONFIG1, CONFIG2 */
79#define PLA_CONFIG34 0xe820 /* CONFIG3, CONFIG4 */
hayeswangac718b62013-05-02 16:01:25 +000080#define PLA_CONFIG5 0xe822
81#define PLA_PHY_PWR 0xe84c
82#define PLA_OOB_CTRL 0xe84f
83#define PLA_CPCR 0xe854
84#define PLA_MISC_0 0xe858
85#define PLA_MISC_1 0xe85a
86#define PLA_OCP_GPHY_BASE 0xe86c
hayeswang4f1d4d52014-03-11 16:24:19 +080087#define PLA_TALLYCNT 0xe890
hayeswangac718b62013-05-02 16:01:25 +000088#define PLA_SFF_STS_7 0xe8de
89#define PLA_PHYSTATUS 0xe908
90#define PLA_BP_BA 0xfc26
91#define PLA_BP_0 0xfc28
92#define PLA_BP_1 0xfc2a
93#define PLA_BP_2 0xfc2c
94#define PLA_BP_3 0xfc2e
95#define PLA_BP_4 0xfc30
96#define PLA_BP_5 0xfc32
97#define PLA_BP_6 0xfc34
98#define PLA_BP_7 0xfc36
hayeswang43779f82014-01-02 11:25:10 +080099#define PLA_BP_EN 0xfc38
hayeswangac718b62013-05-02 16:01:25 +0000100
hayeswang65bab842015-02-12 16:20:46 +0800101#define USB_USB2PHY 0xb41e
102#define USB_SSPHYLINK2 0xb428
hayeswang43779f82014-01-02 11:25:10 +0800103#define USB_U2P3_CTRL 0xb460
hayeswang65bab842015-02-12 16:20:46 +0800104#define USB_CSR_DUMMY1 0xb464
105#define USB_CSR_DUMMY2 0xb466
hayeswangac718b62013-05-02 16:01:25 +0000106#define USB_DEV_STAT 0xb808
hayeswang65bab842015-02-12 16:20:46 +0800107#define USB_CONNECT_TIMER 0xcbf8
108#define USB_BURST_SIZE 0xcfc0
hayeswangac718b62013-05-02 16:01:25 +0000109#define USB_USB_CTRL 0xd406
110#define USB_PHY_CTRL 0xd408
111#define USB_TX_AGG 0xd40a
112#define USB_RX_BUF_TH 0xd40c
113#define USB_USB_TIMER 0xd428
hayeswang464ec102015-02-12 14:33:46 +0800114#define USB_RX_EARLY_TIMEOUT 0xd42c
115#define USB_RX_EARLY_SIZE 0xd42e
hayeswangac718b62013-05-02 16:01:25 +0000116#define USB_PM_CTRL_STATUS 0xd432
117#define USB_TX_DMA 0xd434
hayeswang43779f82014-01-02 11:25:10 +0800118#define USB_TOLERANCE 0xd490
119#define USB_LPM_CTRL 0xd41a
hayeswang93fe9b12016-06-16 10:55:18 +0800120#define USB_BMU_RESET 0xd4b0
hayeswangac718b62013-05-02 16:01:25 +0000121#define USB_UPS_CTRL 0xd800
hayeswang43779f82014-01-02 11:25:10 +0800122#define USB_MISC_0 0xd81a
123#define USB_POWER_CUT 0xd80a
124#define USB_AFE_CTRL2 0xd824
125#define USB_WDT11_CTRL 0xe43c
hayeswangac718b62013-05-02 16:01:25 +0000126#define USB_BP_BA 0xfc26
127#define USB_BP_0 0xfc28
128#define USB_BP_1 0xfc2a
129#define USB_BP_2 0xfc2c
130#define USB_BP_3 0xfc2e
131#define USB_BP_4 0xfc30
132#define USB_BP_5 0xfc32
133#define USB_BP_6 0xfc34
134#define USB_BP_7 0xfc36
hayeswang43779f82014-01-02 11:25:10 +0800135#define USB_BP_EN 0xfc38
hayeswangac718b62013-05-02 16:01:25 +0000136
137/* OCP Registers */
138#define OCP_ALDPS_CONFIG 0x2010
139#define OCP_EEE_CONFIG1 0x2080
140#define OCP_EEE_CONFIG2 0x2092
141#define OCP_EEE_CONFIG3 0x2094
hayeswangac244d32014-01-02 11:22:40 +0800142#define OCP_BASE_MII 0xa400
hayeswangac718b62013-05-02 16:01:25 +0000143#define OCP_EEE_AR 0xa41a
144#define OCP_EEE_DATA 0xa41c
hayeswang43779f82014-01-02 11:25:10 +0800145#define OCP_PHY_STATUS 0xa420
146#define OCP_POWER_CFG 0xa430
147#define OCP_EEE_CFG 0xa432
148#define OCP_SRAM_ADDR 0xa436
149#define OCP_SRAM_DATA 0xa438
150#define OCP_DOWN_SPEED 0xa442
hayeswangdf35d282014-09-25 20:54:02 +0800151#define OCP_EEE_ABLE 0xa5c4
hayeswang4c4a6b12014-09-25 20:54:00 +0800152#define OCP_EEE_ADV 0xa5d0
hayeswangdf35d282014-09-25 20:54:02 +0800153#define OCP_EEE_LPABLE 0xa5d2
hayeswang2dd49e02015-09-07 11:57:44 +0800154#define OCP_PHY_STATE 0xa708 /* nway state for 8153 */
hayeswang43779f82014-01-02 11:25:10 +0800155#define OCP_ADC_CFG 0xbc06
156
157/* SRAM Register */
158#define SRAM_LPF_CFG 0x8012
159#define SRAM_10M_AMP1 0x8080
160#define SRAM_10M_AMP2 0x8082
161#define SRAM_IMPEDANCE 0x8084
hayeswangac718b62013-05-02 16:01:25 +0000162
163/* PLA_RCR */
164#define RCR_AAP 0x00000001
165#define RCR_APM 0x00000002
166#define RCR_AM 0x00000004
167#define RCR_AB 0x00000008
168#define RCR_ACPT_ALL (RCR_AAP | RCR_APM | RCR_AM | RCR_AB)
169
170/* PLA_RXFIFO_CTRL0 */
171#define RXFIFO_THR1_NORMAL 0x00080002
172#define RXFIFO_THR1_OOB 0x01800003
173
174/* PLA_RXFIFO_CTRL1 */
175#define RXFIFO_THR2_FULL 0x00000060
176#define RXFIFO_THR2_HIGH 0x00000038
177#define RXFIFO_THR2_OOB 0x0000004a
hayeswang43779f82014-01-02 11:25:10 +0800178#define RXFIFO_THR2_NORMAL 0x00a0
hayeswangac718b62013-05-02 16:01:25 +0000179
180/* PLA_RXFIFO_CTRL2 */
181#define RXFIFO_THR3_FULL 0x00000078
182#define RXFIFO_THR3_HIGH 0x00000048
183#define RXFIFO_THR3_OOB 0x0000005a
hayeswang43779f82014-01-02 11:25:10 +0800184#define RXFIFO_THR3_NORMAL 0x0110
hayeswangac718b62013-05-02 16:01:25 +0000185
186/* PLA_TXFIFO_CTRL */
187#define TXFIFO_THR_NORMAL 0x00400008
hayeswang43779f82014-01-02 11:25:10 +0800188#define TXFIFO_THR_NORMAL2 0x01000008
hayeswangac718b62013-05-02 16:01:25 +0000189
hayeswang65bab842015-02-12 16:20:46 +0800190/* PLA_DMY_REG0 */
191#define ECM_ALDPS 0x0002
192
hayeswangac718b62013-05-02 16:01:25 +0000193/* PLA_FMC */
194#define FMC_FCR_MCU_EN 0x0001
195
196/* PLA_EEEP_CR */
197#define EEEP_CR_EEEP_TX 0x0002
198
hayeswang43779f82014-01-02 11:25:10 +0800199/* PLA_WDT6_CTRL */
200#define WDT6_SET_MODE 0x0010
201
hayeswangac718b62013-05-02 16:01:25 +0000202/* PLA_TCR0 */
203#define TCR0_TX_EMPTY 0x0800
204#define TCR0_AUTO_FIFO 0x0080
205
206/* PLA_TCR1 */
207#define VERSION_MASK 0x7cf0
208
hayeswang69b4b7a2014-07-10 10:58:54 +0800209/* PLA_MTPS */
210#define MTPS_JUMBO (12 * 1024 / 64)
211#define MTPS_DEFAULT (6 * 1024 / 64)
212
hayeswang4f1d4d52014-03-11 16:24:19 +0800213/* PLA_RSTTALLY */
214#define TALLY_RESET 0x0001
215
hayeswangac718b62013-05-02 16:01:25 +0000216/* PLA_CR */
217#define CR_RST 0x10
218#define CR_RE 0x08
219#define CR_TE 0x04
220
221/* PLA_CRWECR */
222#define CRWECR_NORAML 0x00
223#define CRWECR_CONFIG 0xc0
224
225/* PLA_OOB_CTRL */
226#define NOW_IS_OOB 0x80
227#define TXFIFO_EMPTY 0x20
228#define RXFIFO_EMPTY 0x10
229#define LINK_LIST_READY 0x02
230#define DIS_MCU_CLROOB 0x01
231#define FIFO_EMPTY (TXFIFO_EMPTY | RXFIFO_EMPTY)
232
233/* PLA_MISC_1 */
234#define RXDY_GATED_EN 0x0008
235
236/* PLA_SFF_STS_7 */
237#define RE_INIT_LL 0x8000
238#define MCU_BORW_EN 0x4000
239
240/* PLA_CPCR */
241#define CPCR_RX_VLAN 0x0040
242
243/* PLA_CFG_WOL */
244#define MAGIC_EN 0x0001
245
hayeswang43779f82014-01-02 11:25:10 +0800246/* PLA_TEREDO_CFG */
247#define TEREDO_SEL 0x8000
248#define TEREDO_WAKE_MASK 0x7f00
249#define TEREDO_RS_EVENT_MASK 0x00fe
250#define OOB_TEREDO_EN 0x0001
251
hayeswangac718b62013-05-02 16:01:25 +0000252/* PAL_BDC_CR */
253#define ALDPS_PROXY_MODE 0x0001
254
hayeswang21ff2e82014-02-18 21:49:06 +0800255/* PLA_CONFIG34 */
256#define LINK_ON_WAKE_EN 0x0010
257#define LINK_OFF_WAKE_EN 0x0008
258
hayeswangac718b62013-05-02 16:01:25 +0000259/* PLA_CONFIG5 */
hayeswang21ff2e82014-02-18 21:49:06 +0800260#define BWF_EN 0x0040
261#define MWF_EN 0x0020
262#define UWF_EN 0x0010
hayeswangac718b62013-05-02 16:01:25 +0000263#define LAN_WAKE_EN 0x0002
264
265/* PLA_LED_FEATURE */
266#define LED_MODE_MASK 0x0700
267
268/* PLA_PHY_PWR */
269#define TX_10M_IDLE_EN 0x0080
270#define PFM_PWM_SWITCH 0x0040
271
272/* PLA_MAC_PWR_CTRL */
273#define D3_CLK_GATED_EN 0x00004000
274#define MCU_CLK_RATIO 0x07010f07
275#define MCU_CLK_RATIO_MASK 0x0f0f0f0f
hayeswang43779f82014-01-02 11:25:10 +0800276#define ALDPS_SPDWN_RATIO 0x0f87
277
278/* PLA_MAC_PWR_CTRL2 */
279#define EEE_SPDWN_RATIO 0x8007
280
281/* PLA_MAC_PWR_CTRL3 */
282#define PKT_AVAIL_SPDWN_EN 0x0100
283#define SUSPEND_SPDWN_EN 0x0004
284#define U1U2_SPDWN_EN 0x0002
285#define L1_SPDWN_EN 0x0001
286
287/* PLA_MAC_PWR_CTRL4 */
288#define PWRSAVE_SPDWN_EN 0x1000
289#define RXDV_SPDWN_EN 0x0800
290#define TX10MIDLE_EN 0x0100
291#define TP100_SPDWN_EN 0x0020
292#define TP500_SPDWN_EN 0x0010
293#define TP1000_SPDWN_EN 0x0008
294#define EEE_SPDWN_EN 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000295
296/* PLA_GPHY_INTR_IMR */
297#define GPHY_STS_MSK 0x0001
298#define SPEED_DOWN_MSK 0x0002
299#define SPDWN_RXDV_MSK 0x0004
300#define SPDWN_LINKCHG_MSK 0x0008
301
302/* PLA_PHYAR */
303#define PHYAR_FLAG 0x80000000
304
305/* PLA_EEE_CR */
306#define EEE_RX_EN 0x0001
307#define EEE_TX_EN 0x0002
308
hayeswang43779f82014-01-02 11:25:10 +0800309/* PLA_BOOT_CTRL */
310#define AUTOLOAD_DONE 0x0002
311
hayeswang65bab842015-02-12 16:20:46 +0800312/* USB_USB2PHY */
313#define USB2PHY_SUSPEND 0x0001
314#define USB2PHY_L1 0x0002
315
316/* USB_SSPHYLINK2 */
317#define pwd_dn_scale_mask 0x3ffe
318#define pwd_dn_scale(x) ((x) << 1)
319
320/* USB_CSR_DUMMY1 */
321#define DYNAMIC_BURST 0x0001
322
323/* USB_CSR_DUMMY2 */
324#define EP4_FULL_FC 0x0001
325
hayeswangac718b62013-05-02 16:01:25 +0000326/* USB_DEV_STAT */
327#define STAT_SPEED_MASK 0x0006
328#define STAT_SPEED_HIGH 0x0000
hayeswanga3cc4652014-07-24 16:37:43 +0800329#define STAT_SPEED_FULL 0x0002
hayeswangac718b62013-05-02 16:01:25 +0000330
331/* USB_TX_AGG */
332#define TX_AGG_MAX_THRESHOLD 0x03
333
334/* USB_RX_BUF_TH */
hayeswang43779f82014-01-02 11:25:10 +0800335#define RX_THR_SUPPER 0x0c350180
hayeswang8e1f51b2014-01-02 11:22:41 +0800336#define RX_THR_HIGH 0x7a120180
hayeswang43779f82014-01-02 11:25:10 +0800337#define RX_THR_SLOW 0xffff0180
hayeswangac718b62013-05-02 16:01:25 +0000338
339/* USB_TX_DMA */
340#define TEST_MODE_DISABLE 0x00000001
341#define TX_SIZE_ADJUST1 0x00000100
342
hayeswang93fe9b12016-06-16 10:55:18 +0800343/* USB_BMU_RESET */
344#define BMU_RESET_EP_IN 0x01
345#define BMU_RESET_EP_OUT 0x02
346
hayeswangac718b62013-05-02 16:01:25 +0000347/* USB_UPS_CTRL */
348#define POWER_CUT 0x0100
349
350/* USB_PM_CTRL_STATUS */
hayeswang8e1f51b2014-01-02 11:22:41 +0800351#define RESUME_INDICATE 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000352
353/* USB_USB_CTRL */
354#define RX_AGG_DISABLE 0x0010
hayeswange90fba82015-07-31 11:23:39 +0800355#define RX_ZERO_EN 0x0080
hayeswangac718b62013-05-02 16:01:25 +0000356
hayeswang43779f82014-01-02 11:25:10 +0800357/* USB_U2P3_CTRL */
358#define U2P3_ENABLE 0x0001
359
360/* USB_POWER_CUT */
361#define PWR_EN 0x0001
362#define PHASE2_EN 0x0008
363
364/* USB_MISC_0 */
365#define PCUT_STATUS 0x0001
366
hayeswang464ec102015-02-12 14:33:46 +0800367/* USB_RX_EARLY_TIMEOUT */
368#define COALESCE_SUPER 85000U
369#define COALESCE_HIGH 250000U
370#define COALESCE_SLOW 524280U
hayeswang43779f82014-01-02 11:25:10 +0800371
372/* USB_WDT11_CTRL */
373#define TIMER11_EN 0x0001
374
375/* USB_LPM_CTRL */
hayeswang65bab842015-02-12 16:20:46 +0800376/* bit 4 ~ 5: fifo empty boundary */
377#define FIFO_EMPTY_1FB 0x30 /* 0x1fb * 64 = 32448 bytes */
378/* bit 2 ~ 3: LMP timer */
hayeswang43779f82014-01-02 11:25:10 +0800379#define LPM_TIMER_MASK 0x0c
380#define LPM_TIMER_500MS 0x04 /* 500 ms */
381#define LPM_TIMER_500US 0x0c /* 500 us */
hayeswang65bab842015-02-12 16:20:46 +0800382#define ROK_EXIT_LPM 0x02
hayeswang43779f82014-01-02 11:25:10 +0800383
384/* USB_AFE_CTRL2 */
385#define SEN_VAL_MASK 0xf800
386#define SEN_VAL_NORMAL 0xa000
387#define SEL_RXIDLE 0x0100
388
hayeswangac718b62013-05-02 16:01:25 +0000389/* OCP_ALDPS_CONFIG */
390#define ENPWRSAVE 0x8000
391#define ENPDNPS 0x0200
392#define LINKENA 0x0100
393#define DIS_SDSAVE 0x0010
394
hayeswang43779f82014-01-02 11:25:10 +0800395/* OCP_PHY_STATUS */
396#define PHY_STAT_MASK 0x0007
397#define PHY_STAT_LAN_ON 3
398#define PHY_STAT_PWRDN 5
399
400/* OCP_POWER_CFG */
401#define EEE_CLKDIV_EN 0x8000
402#define EN_ALDPS 0x0004
403#define EN_10M_PLLOFF 0x0001
404
hayeswangac718b62013-05-02 16:01:25 +0000405/* OCP_EEE_CONFIG1 */
406#define RG_TXLPI_MSK_HFDUP 0x8000
407#define RG_MATCLR_EN 0x4000
408#define EEE_10_CAP 0x2000
409#define EEE_NWAY_EN 0x1000
410#define TX_QUIET_EN 0x0200
411#define RX_QUIET_EN 0x0100
hayeswangd24f6132014-09-25 20:54:01 +0800412#define sd_rise_time_mask 0x0070
hayeswang4c4a6b12014-09-25 20:54:00 +0800413#define sd_rise_time(x) (min(x, 7) << 4) /* bit 4 ~ 6 */
hayeswangac718b62013-05-02 16:01:25 +0000414#define RG_RXLPI_MSK_HFDUP 0x0008
415#define SDFALLTIME 0x0007 /* bit 0 ~ 2 */
416
417/* OCP_EEE_CONFIG2 */
418#define RG_LPIHYS_NUM 0x7000 /* bit 12 ~ 15 */
419#define RG_DACQUIET_EN 0x0400
420#define RG_LDVQUIET_EN 0x0200
421#define RG_CKRSEL 0x0020
422#define RG_EEEPRG_EN 0x0010
423
424/* OCP_EEE_CONFIG3 */
hayeswangd24f6132014-09-25 20:54:01 +0800425#define fast_snr_mask 0xff80
hayeswang4c4a6b12014-09-25 20:54:00 +0800426#define fast_snr(x) (min(x, 0x1ff) << 7) /* bit 7 ~ 15 */
hayeswangac718b62013-05-02 16:01:25 +0000427#define RG_LFS_SEL 0x0060 /* bit 6 ~ 5 */
428#define MSK_PH 0x0006 /* bit 0 ~ 3 */
429
430/* OCP_EEE_AR */
431/* bit[15:14] function */
432#define FUN_ADDR 0x0000
433#define FUN_DATA 0x4000
434/* bit[4:0] device addr */
hayeswangac718b62013-05-02 16:01:25 +0000435
hayeswang43779f82014-01-02 11:25:10 +0800436/* OCP_EEE_CFG */
437#define CTAP_SHORT_EN 0x0040
438#define EEE10_EN 0x0010
439
440/* OCP_DOWN_SPEED */
441#define EN_10M_BGOFF 0x0080
442
hayeswang2dd49e02015-09-07 11:57:44 +0800443/* OCP_PHY_STATE */
444#define TXDIS_STATE 0x01
445#define ABD_STATE 0x02
446
hayeswang43779f82014-01-02 11:25:10 +0800447/* OCP_ADC_CFG */
448#define CKADSEL_L 0x0100
449#define ADC_EN 0x0080
450#define EN_EMI_L 0x0040
451
452/* SRAM_LPF_CFG */
453#define LPF_AUTO_TUNE 0x8000
454
455/* SRAM_10M_AMP1 */
456#define GDAC_IB_UPALL 0x0008
457
458/* SRAM_10M_AMP2 */
459#define AMP_DN 0x0200
460
461/* SRAM_IMPEDANCE */
462#define RX_DRIVING_MASK 0x6000
463
Mario Limonciello34ee32c2016-07-11 19:58:04 -0500464/* MAC PASSTHRU */
465#define AD_MASK 0xfee0
466#define EFUSE 0xcfdb
467#define PASS_THRU_MASK 0x1
468
hayeswangac718b62013-05-02 16:01:25 +0000469enum rtl_register_content {
hayeswang43779f82014-01-02 11:25:10 +0800470 _1000bps = 0x10,
hayeswangac718b62013-05-02 16:01:25 +0000471 _100bps = 0x08,
472 _10bps = 0x04,
473 LINK_STATUS = 0x02,
474 FULL_DUP = 0x01,
475};
476
hayeswang1764bcd2014-08-28 10:24:18 +0800477#define RTL8152_MAX_TX 4
hayeswangebc2ec42013-08-14 20:54:38 +0800478#define RTL8152_MAX_RX 10
hayeswang40a82912013-08-14 20:54:40 +0800479#define INTBUFSIZE 2
hayeswang8e1f51b2014-01-02 11:22:41 +0800480#define CRC_SIZE 4
481#define TX_ALIGN 4
482#define RX_ALIGN 8
hayeswang40a82912013-08-14 20:54:40 +0800483
484#define INTR_LINK 0x0004
hayeswangebc2ec42013-08-14 20:54:38 +0800485
hayeswangac718b62013-05-02 16:01:25 +0000486#define RTL8152_REQT_READ 0xc0
487#define RTL8152_REQT_WRITE 0x40
488#define RTL8152_REQ_GET_REGS 0x05
489#define RTL8152_REQ_SET_REGS 0x05
490
491#define BYTE_EN_DWORD 0xff
492#define BYTE_EN_WORD 0x33
493#define BYTE_EN_BYTE 0x11
494#define BYTE_EN_SIX_BYTES 0x3f
495#define BYTE_EN_START_MASK 0x0f
496#define BYTE_EN_END_MASK 0xf0
497
hayeswang69b4b7a2014-07-10 10:58:54 +0800498#define RTL8153_MAX_PACKET 9216 /* 9K */
499#define RTL8153_MAX_MTU (RTL8153_MAX_PACKET - VLAN_ETH_HLEN - VLAN_HLEN)
hayeswangac718b62013-05-02 16:01:25 +0000500#define RTL8152_RMS (VLAN_ETH_FRAME_LEN + VLAN_HLEN)
hayeswang69b4b7a2014-07-10 10:58:54 +0800501#define RTL8153_RMS RTL8153_MAX_PACKET
hayeswangb8125402014-07-03 11:55:48 +0800502#define RTL8152_TX_TIMEOUT (5 * HZ)
hayeswangd823ab62015-01-12 12:06:23 +0800503#define RTL8152_NAPI_WEIGHT 64
hayeswangbfb38fb2017-03-20 16:13:45 +0800504#define rx_reserved_size(x) ((x) + VLAN_ETH_HLEN + CRC_SIZE + \
505 sizeof(struct rx_desc) + RX_ALIGN)
hayeswangac718b62013-05-02 16:01:25 +0000506
507/* rtl8152 flags */
508enum rtl8152_flags {
509 RTL8152_UNPLUG = 0,
hayeswangac718b62013-05-02 16:01:25 +0000510 RTL8152_SET_RX_MODE,
hayeswang40a82912013-08-14 20:54:40 +0800511 WORK_ENABLE,
512 RTL8152_LINK_CHG,
hayeswang9a4be1b2014-02-18 21:49:07 +0800513 SELECTIVE_SUSPEND,
hayeswangaa66a5f2014-02-18 21:49:04 +0800514 PHY_RESET,
hayeswangd823ab62015-01-12 12:06:23 +0800515 SCHEDULE_NAPI,
hayeswangac718b62013-05-02 16:01:25 +0000516};
517
518/* Define these values to match your device */
519#define VENDOR_ID_REALTEK 0x0bda
hayeswang43779f82014-01-02 11:25:10 +0800520#define VENDOR_ID_SAMSUNG 0x04e8
Christian Hesse347eec32015-03-31 14:10:07 +0200521#define VENDOR_ID_LENOVO 0x17ef
Grant Grundler403e7bd2017-09-28 11:35:00 -0700522#define VENDOR_ID_LINKSYS 0x13b1
Zheng Liud065c3c2015-07-07 13:54:12 -0700523#define VENDOR_ID_NVIDIA 0x0955
hayeswangac718b62013-05-02 16:01:25 +0000524
525#define MCU_TYPE_PLA 0x0100
526#define MCU_TYPE_USB 0x0000
527
hayeswang4f1d4d52014-03-11 16:24:19 +0800528struct tally_counter {
529 __le64 tx_packets;
530 __le64 rx_packets;
531 __le64 tx_errors;
532 __le32 rx_errors;
533 __le16 rx_missed;
534 __le16 align_errors;
535 __le32 tx_one_collision;
536 __le32 tx_multi_collision;
537 __le64 rx_unicast;
538 __le64 rx_broadcast;
539 __le32 rx_multicast;
540 __le16 tx_aborted;
hayeswangf37119c2014-10-28 14:05:51 +0800541 __le16 tx_underrun;
hayeswang4f1d4d52014-03-11 16:24:19 +0800542};
543
hayeswangac718b62013-05-02 16:01:25 +0000544struct rx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800545 __le32 opts1;
hayeswangac718b62013-05-02 16:01:25 +0000546#define RX_LEN_MASK 0x7fff
hayeswang565cab02014-03-07 11:04:38 +0800547
hayeswang500b6d72013-11-20 17:30:57 +0800548 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800549#define RD_UDP_CS BIT(23)
550#define RD_TCP_CS BIT(22)
551#define RD_IPV6_CS BIT(20)
552#define RD_IPV4_CS BIT(19)
hayeswang565cab02014-03-07 11:04:38 +0800553
hayeswang500b6d72013-11-20 17:30:57 +0800554 __le32 opts3;
hayeswangf5aaaa62015-02-06 11:30:51 +0800555#define IPF BIT(23) /* IP checksum fail */
556#define UDPF BIT(22) /* UDP checksum fail */
557#define TCPF BIT(21) /* TCP checksum fail */
558#define RX_VLAN_TAG BIT(16)
hayeswang565cab02014-03-07 11:04:38 +0800559
hayeswang500b6d72013-11-20 17:30:57 +0800560 __le32 opts4;
561 __le32 opts5;
562 __le32 opts6;
hayeswangac718b62013-05-02 16:01:25 +0000563};
564
565struct tx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800566 __le32 opts1;
hayeswangf5aaaa62015-02-06 11:30:51 +0800567#define TX_FS BIT(31) /* First segment of a packet */
568#define TX_LS BIT(30) /* Final segment of a packet */
569#define GTSENDV4 BIT(28)
570#define GTSENDV6 BIT(27)
hayeswang60c89072014-03-07 11:04:39 +0800571#define GTTCPHO_SHIFT 18
hayeswang6128d1b2014-03-07 11:04:40 +0800572#define GTTCPHO_MAX 0x7fU
hayeswang60c89072014-03-07 11:04:39 +0800573#define TX_LEN_MAX 0x3ffffU
hayeswang5bd23882013-08-14 20:54:39 +0800574
hayeswang500b6d72013-11-20 17:30:57 +0800575 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800576#define UDP_CS BIT(31) /* Calculate UDP/IP checksum */
577#define TCP_CS BIT(30) /* Calculate TCP/IP checksum */
578#define IPV4_CS BIT(29) /* Calculate IPv4 checksum */
579#define IPV6_CS BIT(28) /* Calculate IPv6 checksum */
hayeswang60c89072014-03-07 11:04:39 +0800580#define MSS_SHIFT 17
581#define MSS_MAX 0x7ffU
582#define TCPHO_SHIFT 17
hayeswang6128d1b2014-03-07 11:04:40 +0800583#define TCPHO_MAX 0x7ffU
hayeswangf5aaaa62015-02-06 11:30:51 +0800584#define TX_VLAN_TAG BIT(16)
hayeswangac718b62013-05-02 16:01:25 +0000585};
586
hayeswangdff4e8a2013-08-16 16:09:33 +0800587struct r8152;
588
hayeswangebc2ec42013-08-14 20:54:38 +0800589struct rx_agg {
590 struct list_head list;
591 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800592 struct r8152 *context;
hayeswangebc2ec42013-08-14 20:54:38 +0800593 void *buffer;
594 void *head;
595};
596
597struct tx_agg {
598 struct list_head list;
599 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800600 struct r8152 *context;
hayeswangebc2ec42013-08-14 20:54:38 +0800601 void *buffer;
602 void *head;
603 u32 skb_num;
604 u32 skb_len;
605};
606
hayeswangac718b62013-05-02 16:01:25 +0000607struct r8152 {
608 unsigned long flags;
609 struct usb_device *udev;
hayeswangd823ab62015-01-12 12:06:23 +0800610 struct napi_struct napi;
hayeswang40a82912013-08-14 20:54:40 +0800611 struct usb_interface *intf;
hayeswangac718b62013-05-02 16:01:25 +0000612 struct net_device *netdev;
hayeswang40a82912013-08-14 20:54:40 +0800613 struct urb *intr_urb;
hayeswangebc2ec42013-08-14 20:54:38 +0800614 struct tx_agg tx_info[RTL8152_MAX_TX];
615 struct rx_agg rx_info[RTL8152_MAX_RX];
616 struct list_head rx_done, tx_free;
hayeswangd823ab62015-01-12 12:06:23 +0800617 struct sk_buff_head tx_queue, rx_queue;
hayeswangebc2ec42013-08-14 20:54:38 +0800618 spinlock_t rx_lock, tx_lock;
hayeswanga028a9e2016-06-13 17:49:36 +0800619 struct delayed_work schedule, hw_phy_work;
hayeswangac718b62013-05-02 16:01:25 +0000620 struct mii_if_info mii;
hayeswangb5403272014-10-09 18:00:26 +0800621 struct mutex control; /* use for hw setting */
hayeswang5ee3c602016-01-07 17:12:17 +0800622#ifdef CONFIG_PM_SLEEP
623 struct notifier_block pm_notifier;
624#endif
hayeswangc81229c2014-01-02 11:22:42 +0800625
626 struct rtl_ops {
627 void (*init)(struct r8152 *);
628 int (*enable)(struct r8152 *);
629 void (*disable)(struct r8152 *);
hayeswang7e9da482014-02-18 21:49:05 +0800630 void (*up)(struct r8152 *);
hayeswangc81229c2014-01-02 11:22:42 +0800631 void (*down)(struct r8152 *);
632 void (*unload)(struct r8152 *);
hayeswangdf35d282014-09-25 20:54:02 +0800633 int (*eee_get)(struct r8152 *, struct ethtool_eee *);
634 int (*eee_set)(struct r8152 *, struct ethtool_eee *);
hayeswang2dd49e02015-09-07 11:57:44 +0800635 bool (*in_nway)(struct r8152 *);
hayeswanga028a9e2016-06-13 17:49:36 +0800636 void (*hw_phy_cfg)(struct r8152 *);
hayeswang2609af12016-07-05 16:11:46 +0800637 void (*autosuspend_en)(struct r8152 *tp, bool enable);
hayeswangc81229c2014-01-02 11:22:42 +0800638 } rtl_ops;
639
hayeswang40a82912013-08-14 20:54:40 +0800640 int intr_interval;
hayeswang21ff2e82014-02-18 21:49:06 +0800641 u32 saved_wolopts;
hayeswangac718b62013-05-02 16:01:25 +0000642 u32 msg_enable;
hayeswangdd1b1192013-11-20 17:30:56 +0800643 u32 tx_qlen;
hayeswang464ec102015-02-12 14:33:46 +0800644 u32 coalesce;
hayeswangac718b62013-05-02 16:01:25 +0000645 u16 ocp_base;
hayeswangaa7e26b2016-06-13 17:49:38 +0800646 u16 speed;
hayeswang40a82912013-08-14 20:54:40 +0800647 u8 *intr_buff;
hayeswangac718b62013-05-02 16:01:25 +0000648 u8 version;
hayeswangaa7e26b2016-06-13 17:49:38 +0800649 u8 duplex;
650 u8 autoneg;
hayeswangac718b62013-05-02 16:01:25 +0000651};
652
653enum rtl_version {
654 RTL_VER_UNKNOWN = 0,
655 RTL_VER_01,
hayeswang43779f82014-01-02 11:25:10 +0800656 RTL_VER_02,
657 RTL_VER_03,
658 RTL_VER_04,
659 RTL_VER_05,
hayeswangfb02eb42015-07-22 15:27:41 +0800660 RTL_VER_06,
hayeswang43779f82014-01-02 11:25:10 +0800661 RTL_VER_MAX
hayeswangac718b62013-05-02 16:01:25 +0000662};
663
hayeswang60c89072014-03-07 11:04:39 +0800664enum tx_csum_stat {
665 TX_CSUM_SUCCESS = 0,
666 TX_CSUM_TSO,
667 TX_CSUM_NONE
668};
669
hayeswangac718b62013-05-02 16:01:25 +0000670/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
671 * The RTL chips use a 64 element hash table based on the Ethernet CRC.
672 */
673static const int multicast_filter_limit = 32;
hayeswang52aec122014-09-02 10:27:52 +0800674static unsigned int agg_buf_sz = 16384;
hayeswangac718b62013-05-02 16:01:25 +0000675
hayeswang52aec122014-09-02 10:27:52 +0800676#define RTL_LIMITED_TSO_SIZE (agg_buf_sz - sizeof(struct tx_desc) - \
hayeswang60c89072014-03-07 11:04:39 +0800677 VLAN_ETH_HLEN - VLAN_HLEN)
678
hayeswangac718b62013-05-02 16:01:25 +0000679static
680int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
681{
hayeswang31787f52013-07-31 17:21:25 +0800682 int ret;
683 void *tmp;
684
685 tmp = kmalloc(size, GFP_KERNEL);
686 if (!tmp)
687 return -ENOMEM;
688
689 ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +0800690 RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
691 value, index, tmp, size, 500);
Prashant Malani422abac2019-08-24 01:36:19 -0700692 if (ret < 0)
693 memset(data, 0xff, size);
694 else
695 memcpy(data, tmp, size);
hayeswang31787f52013-07-31 17:21:25 +0800696
hayeswang31787f52013-07-31 17:21:25 +0800697 kfree(tmp);
698
699 return ret;
hayeswangac718b62013-05-02 16:01:25 +0000700}
701
702static
703int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
704{
hayeswang31787f52013-07-31 17:21:25 +0800705 int ret;
706 void *tmp;
707
Benoit Tainec4438f02014-05-26 17:21:23 +0200708 tmp = kmemdup(data, size, GFP_KERNEL);
hayeswang31787f52013-07-31 17:21:25 +0800709 if (!tmp)
710 return -ENOMEM;
711
hayeswang31787f52013-07-31 17:21:25 +0800712 ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +0800713 RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
714 value, index, tmp, size, 500);
hayeswang31787f52013-07-31 17:21:25 +0800715
716 kfree(tmp);
hayeswangdb8515e2014-03-06 15:07:16 +0800717
hayeswang31787f52013-07-31 17:21:25 +0800718 return ret;
hayeswangac718b62013-05-02 16:01:25 +0000719}
720
721static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
hayeswangb209af92014-08-25 15:53:00 +0800722 void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +0000723{
hayeswang45f4a192014-01-06 17:08:41 +0800724 u16 limit = 64;
725 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +0000726
727 if (test_bit(RTL8152_UNPLUG, &tp->flags))
728 return -ENODEV;
729
730 /* both size and indix must be 4 bytes align */
731 if ((size & 3) || !size || (index & 3) || !data)
732 return -EPERM;
733
734 if ((u32)index + (u32)size > 0xffff)
735 return -EPERM;
736
737 while (size) {
738 if (size > limit) {
739 ret = get_registers(tp, index, type, limit, data);
740 if (ret < 0)
741 break;
742
743 index += limit;
744 data += limit;
745 size -= limit;
746 } else {
747 ret = get_registers(tp, index, type, size, data);
748 if (ret < 0)
749 break;
750
751 index += size;
752 data += size;
753 size = 0;
754 break;
755 }
756 }
757
hayeswang67610492014-10-30 11:46:40 +0800758 if (ret == -ENODEV)
759 set_bit(RTL8152_UNPLUG, &tp->flags);
760
hayeswangac718b62013-05-02 16:01:25 +0000761 return ret;
762}
763
764static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen,
hayeswangb209af92014-08-25 15:53:00 +0800765 u16 size, void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +0000766{
hayeswang45f4a192014-01-06 17:08:41 +0800767 int ret;
768 u16 byteen_start, byteen_end, byen;
769 u16 limit = 512;
hayeswangac718b62013-05-02 16:01:25 +0000770
771 if (test_bit(RTL8152_UNPLUG, &tp->flags))
772 return -ENODEV;
773
774 /* both size and indix must be 4 bytes align */
775 if ((size & 3) || !size || (index & 3) || !data)
776 return -EPERM;
777
778 if ((u32)index + (u32)size > 0xffff)
779 return -EPERM;
780
781 byteen_start = byteen & BYTE_EN_START_MASK;
782 byteen_end = byteen & BYTE_EN_END_MASK;
783
784 byen = byteen_start | (byteen_start << 4);
785 ret = set_registers(tp, index, type | byen, 4, data);
786 if (ret < 0)
787 goto error1;
788
789 index += 4;
790 data += 4;
791 size -= 4;
792
793 if (size) {
794 size -= 4;
795
796 while (size) {
797 if (size > limit) {
798 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +0800799 type | BYTE_EN_DWORD,
800 limit, data);
hayeswangac718b62013-05-02 16:01:25 +0000801 if (ret < 0)
802 goto error1;
803
804 index += limit;
805 data += limit;
806 size -= limit;
807 } else {
808 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +0800809 type | BYTE_EN_DWORD,
810 size, data);
hayeswangac718b62013-05-02 16:01:25 +0000811 if (ret < 0)
812 goto error1;
813
814 index += size;
815 data += size;
816 size = 0;
817 break;
818 }
819 }
820
821 byen = byteen_end | (byteen_end >> 4);
822 ret = set_registers(tp, index, type | byen, 4, data);
823 if (ret < 0)
824 goto error1;
825 }
826
827error1:
hayeswang67610492014-10-30 11:46:40 +0800828 if (ret == -ENODEV)
829 set_bit(RTL8152_UNPLUG, &tp->flags);
830
hayeswangac718b62013-05-02 16:01:25 +0000831 return ret;
832}
833
834static inline
835int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
836{
837 return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA);
838}
839
840static inline
841int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
842{
843 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA);
844}
845
846static inline
847int usb_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
848{
849 return generic_ocp_read(tp, index, size, data, MCU_TYPE_USB);
850}
851
852static inline
853int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
854{
855 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB);
856}
857
858static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index)
859{
hayeswangc8826de2013-07-31 17:21:26 +0800860 __le32 data;
hayeswangac718b62013-05-02 16:01:25 +0000861
hayeswangc8826de2013-07-31 17:21:26 +0800862 generic_ocp_read(tp, index, sizeof(data), &data, type);
hayeswangac718b62013-05-02 16:01:25 +0000863
864 return __le32_to_cpu(data);
865}
866
867static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data)
868{
hayeswangc8826de2013-07-31 17:21:26 +0800869 __le32 tmp = __cpu_to_le32(data);
870
871 generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000872}
873
874static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index)
875{
876 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +0800877 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000878 u8 shift = index & 2;
879
880 index &= ~3;
881
hayeswangc8826de2013-07-31 17:21:26 +0800882 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000883
hayeswangc8826de2013-07-31 17:21:26 +0800884 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +0000885 data >>= (shift * 8);
886 data &= 0xffff;
887
888 return (u16)data;
889}
890
891static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data)
892{
hayeswangc8826de2013-07-31 17:21:26 +0800893 u32 mask = 0xffff;
894 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000895 u16 byen = BYTE_EN_WORD;
896 u8 shift = index & 2;
897
898 data &= mask;
899
900 if (index & 2) {
901 byen <<= shift;
902 mask <<= (shift * 8);
903 data <<= (shift * 8);
904 index &= ~3;
905 }
906
hayeswangc8826de2013-07-31 17:21:26 +0800907 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +0000908
hayeswangc8826de2013-07-31 17:21:26 +0800909 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000910}
911
912static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index)
913{
914 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +0800915 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000916 u8 shift = index & 3;
917
918 index &= ~3;
919
hayeswangc8826de2013-07-31 17:21:26 +0800920 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000921
hayeswangc8826de2013-07-31 17:21:26 +0800922 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +0000923 data >>= (shift * 8);
924 data &= 0xff;
925
926 return (u8)data;
927}
928
929static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data)
930{
hayeswangc8826de2013-07-31 17:21:26 +0800931 u32 mask = 0xff;
932 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000933 u16 byen = BYTE_EN_BYTE;
934 u8 shift = index & 3;
935
936 data &= mask;
937
938 if (index & 3) {
939 byen <<= shift;
940 mask <<= (shift * 8);
941 data <<= (shift * 8);
942 index &= ~3;
943 }
944
hayeswangc8826de2013-07-31 17:21:26 +0800945 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +0000946
hayeswangc8826de2013-07-31 17:21:26 +0800947 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000948}
949
hayeswangac244d32014-01-02 11:22:40 +0800950static u16 ocp_reg_read(struct r8152 *tp, u16 addr)
951{
952 u16 ocp_base, ocp_index;
953
954 ocp_base = addr & 0xf000;
955 if (ocp_base != tp->ocp_base) {
956 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
957 tp->ocp_base = ocp_base;
958 }
959
960 ocp_index = (addr & 0x0fff) | 0xb000;
961 return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index);
962}
963
hayeswange3fe0b12014-01-02 11:22:39 +0800964static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data)
965{
966 u16 ocp_base, ocp_index;
967
968 ocp_base = addr & 0xf000;
969 if (ocp_base != tp->ocp_base) {
970 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
971 tp->ocp_base = ocp_base;
972 }
973
974 ocp_index = (addr & 0x0fff) | 0xb000;
975 ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data);
976}
977
hayeswangac244d32014-01-02 11:22:40 +0800978static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value)
hayeswangac718b62013-05-02 16:01:25 +0000979{
hayeswangac244d32014-01-02 11:22:40 +0800980 ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value);
hayeswangac718b62013-05-02 16:01:25 +0000981}
982
hayeswangac244d32014-01-02 11:22:40 +0800983static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr)
hayeswangac718b62013-05-02 16:01:25 +0000984{
hayeswangac244d32014-01-02 11:22:40 +0800985 return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2);
hayeswangac718b62013-05-02 16:01:25 +0000986}
987
hayeswang43779f82014-01-02 11:25:10 +0800988static void sram_write(struct r8152 *tp, u16 addr, u16 data)
989{
990 ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
991 ocp_reg_write(tp, OCP_SRAM_DATA, data);
992}
993
hayeswangac718b62013-05-02 16:01:25 +0000994static int read_mii_word(struct net_device *netdev, int phy_id, int reg)
995{
996 struct r8152 *tp = netdev_priv(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +0800997 int ret;
hayeswangac718b62013-05-02 16:01:25 +0000998
hayeswang68714382014-04-11 17:54:31 +0800999 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1000 return -ENODEV;
1001
hayeswangac718b62013-05-02 16:01:25 +00001002 if (phy_id != R8152_PHY_ID)
1003 return -EINVAL;
1004
hayeswang9a4be1b2014-02-18 21:49:07 +08001005 ret = r8152_mdio_read(tp, reg);
1006
hayeswang9a4be1b2014-02-18 21:49:07 +08001007 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001008}
1009
1010static
1011void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val)
1012{
1013 struct r8152 *tp = netdev_priv(netdev);
1014
hayeswang68714382014-04-11 17:54:31 +08001015 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1016 return;
1017
hayeswangac718b62013-05-02 16:01:25 +00001018 if (phy_id != R8152_PHY_ID)
1019 return;
1020
1021 r8152_mdio_write(tp, reg, val);
1022}
1023
hayeswangb209af92014-08-25 15:53:00 +08001024static int
1025r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
hayeswangebc2ec42013-08-14 20:54:38 +08001026
hayeswang8ba789a2014-09-04 16:15:41 +08001027static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
1028{
1029 struct r8152 *tp = netdev_priv(netdev);
1030 struct sockaddr *addr = p;
hayeswangea6a7112014-10-02 17:03:12 +08001031 int ret = -EADDRNOTAVAIL;
hayeswang8ba789a2014-09-04 16:15:41 +08001032
1033 if (!is_valid_ether_addr(addr->sa_data))
hayeswangea6a7112014-10-02 17:03:12 +08001034 goto out1;
1035
1036 ret = usb_autopm_get_interface(tp->intf);
1037 if (ret < 0)
1038 goto out1;
hayeswang8ba789a2014-09-04 16:15:41 +08001039
hayeswangb5403272014-10-09 18:00:26 +08001040 mutex_lock(&tp->control);
1041
hayeswang8ba789a2014-09-04 16:15:41 +08001042 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1043
1044 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
1045 pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data);
1046 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
1047
hayeswangb5403272014-10-09 18:00:26 +08001048 mutex_unlock(&tp->control);
1049
hayeswangea6a7112014-10-02 17:03:12 +08001050 usb_autopm_put_interface(tp->intf);
1051out1:
1052 return ret;
hayeswang8ba789a2014-09-04 16:15:41 +08001053}
1054
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001055/* Devices containing RTL8153-AD can support a persistent
1056 * host system provided MAC address.
1057 * Examples of this are Dell TB15 and Dell WD15 docks
1058 */
1059static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa)
1060{
1061 acpi_status status;
1062 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1063 union acpi_object *obj;
1064 int ret = -EINVAL;
1065 u32 ocp_data;
1066 unsigned char buf[6];
1067
1068 /* test for -AD variant of RTL8153 */
1069 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
1070 if ((ocp_data & AD_MASK) != 0x1000)
1071 return -ENODEV;
1072
1073 /* test for MAC address pass-through bit */
1074 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, EFUSE);
1075 if ((ocp_data & PASS_THRU_MASK) != 1)
1076 return -ENODEV;
1077
1078 /* returns _AUXMAC_#AABBCCDDEEFF# */
1079 status = acpi_evaluate_object(NULL, "\\_SB.AMAC", NULL, &buffer);
1080 obj = (union acpi_object *)buffer.pointer;
1081 if (!ACPI_SUCCESS(status))
1082 return -ENODEV;
1083 if (obj->type != ACPI_TYPE_BUFFER || obj->string.length != 0x17) {
1084 netif_warn(tp, probe, tp->netdev,
hayeswang53700f02016-09-01 17:01:42 +08001085 "Invalid buffer for pass-thru MAC addr: (%d, %d)\n",
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001086 obj->type, obj->string.length);
1087 goto amacout;
1088 }
1089 if (strncmp(obj->string.pointer, "_AUXMAC_#", 9) != 0 ||
1090 strncmp(obj->string.pointer + 0x15, "#", 1) != 0) {
1091 netif_warn(tp, probe, tp->netdev,
1092 "Invalid header when reading pass-thru MAC addr\n");
1093 goto amacout;
1094 }
1095 ret = hex2bin(buf, obj->string.pointer + 9, 6);
1096 if (!(ret == 0 && is_valid_ether_addr(buf))) {
1097 netif_warn(tp, probe, tp->netdev,
hayeswang53700f02016-09-01 17:01:42 +08001098 "Invalid MAC for pass-thru MAC addr: %d, %pM\n",
1099 ret, buf);
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001100 ret = -EINVAL;
1101 goto amacout;
1102 }
1103 memcpy(sa->sa_data, buf, 6);
1104 ether_addr_copy(tp->netdev->dev_addr, sa->sa_data);
1105 netif_info(tp, probe, tp->netdev,
1106 "Using pass-thru MAC addr %pM\n", sa->sa_data);
1107
1108amacout:
1109 kfree(obj);
1110 return ret;
1111}
1112
hayeswang179bb6d2014-09-04 16:15:42 +08001113static int set_ethernet_addr(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00001114{
1115 struct net_device *dev = tp->netdev;
hayeswang179bb6d2014-09-04 16:15:42 +08001116 struct sockaddr sa;
hayeswang8a91c822014-02-18 21:49:01 +08001117 int ret;
hayeswangac718b62013-05-02 16:01:25 +00001118
hayeswang53700f02016-09-01 17:01:42 +08001119 if (tp->version == RTL_VER_01) {
hayeswang179bb6d2014-09-04 16:15:42 +08001120 ret = pla_ocp_read(tp, PLA_IDR, 8, sa.sa_data);
hayeswang53700f02016-09-01 17:01:42 +08001121 } else {
Mario Limonciello34ee32c2016-07-11 19:58:04 -05001122 /* if this is not an RTL8153-AD, no eFuse mac pass thru set,
1123 * or system doesn't provide valid _SB.AMAC this will be
1124 * be expected to non-zero
1125 */
1126 ret = vendor_mac_passthru_addr_read(tp, &sa);
1127 if (ret < 0)
1128 ret = pla_ocp_read(tp, PLA_BACKUP, 8, sa.sa_data);
1129 }
hayeswang8a91c822014-02-18 21:49:01 +08001130
1131 if (ret < 0) {
hayeswang179bb6d2014-09-04 16:15:42 +08001132 netif_err(tp, probe, dev, "Get ether addr fail\n");
1133 } else if (!is_valid_ether_addr(sa.sa_data)) {
1134 netif_err(tp, probe, dev, "Invalid ether addr %pM\n",
1135 sa.sa_data);
1136 eth_hw_addr_random(dev);
1137 ether_addr_copy(sa.sa_data, dev->dev_addr);
1138 ret = rtl8152_set_mac_address(dev, &sa);
1139 netif_info(tp, probe, dev, "Random ether addr %pM\n",
1140 sa.sa_data);
hayeswang8a91c822014-02-18 21:49:01 +08001141 } else {
hayeswang179bb6d2014-09-04 16:15:42 +08001142 if (tp->version == RTL_VER_01)
1143 ether_addr_copy(dev->dev_addr, sa.sa_data);
1144 else
1145 ret = rtl8152_set_mac_address(dev, &sa);
hayeswangac718b62013-05-02 16:01:25 +00001146 }
hayeswang179bb6d2014-09-04 16:15:42 +08001147
1148 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001149}
1150
hayeswangac718b62013-05-02 16:01:25 +00001151static void read_bulk_callback(struct urb *urb)
1152{
hayeswangac718b62013-05-02 16:01:25 +00001153 struct net_device *netdev;
hayeswangac718b62013-05-02 16:01:25 +00001154 int status = urb->status;
hayeswangebc2ec42013-08-14 20:54:38 +08001155 struct rx_agg *agg;
1156 struct r8152 *tp;
hayeswangac718b62013-05-02 16:01:25 +00001157
hayeswangebc2ec42013-08-14 20:54:38 +08001158 agg = urb->context;
1159 if (!agg)
1160 return;
1161
1162 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001163 if (!tp)
1164 return;
hayeswangebc2ec42013-08-14 20:54:38 +08001165
hayeswangac718b62013-05-02 16:01:25 +00001166 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1167 return;
hayeswangebc2ec42013-08-14 20:54:38 +08001168
1169 if (!test_bit(WORK_ENABLE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00001170 return;
1171
hayeswangebc2ec42013-08-14 20:54:38 +08001172 netdev = tp->netdev;
hayeswang7559fb2f2013-08-16 16:09:38 +08001173
1174 /* When link down, the driver would cancel all bulks. */
1175 /* This avoid the re-submitting bulk */
hayeswangebc2ec42013-08-14 20:54:38 +08001176 if (!netif_carrier_ok(netdev))
1177 return;
1178
hayeswang9a4be1b2014-02-18 21:49:07 +08001179 usb_mark_last_busy(tp->udev);
1180
hayeswangac718b62013-05-02 16:01:25 +00001181 switch (status) {
1182 case 0:
hayeswangebc2ec42013-08-14 20:54:38 +08001183 if (urb->actual_length < ETH_ZLEN)
1184 break;
1185
hayeswang2685d412014-03-07 11:04:34 +08001186 spin_lock(&tp->rx_lock);
hayeswangebc2ec42013-08-14 20:54:38 +08001187 list_add_tail(&agg->list, &tp->rx_done);
hayeswang2685d412014-03-07 11:04:34 +08001188 spin_unlock(&tp->rx_lock);
hayeswangd823ab62015-01-12 12:06:23 +08001189 napi_schedule(&tp->napi);
hayeswangebc2ec42013-08-14 20:54:38 +08001190 return;
hayeswangac718b62013-05-02 16:01:25 +00001191 case -ESHUTDOWN:
1192 set_bit(RTL8152_UNPLUG, &tp->flags);
1193 netif_device_detach(tp->netdev);
hayeswangebc2ec42013-08-14 20:54:38 +08001194 return;
hayeswangac718b62013-05-02 16:01:25 +00001195 case -ENOENT:
1196 return; /* the urb is in unlink state */
1197 case -ETIME:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001198 if (net_ratelimit())
1199 netdev_warn(netdev, "maybe reset is needed?\n");
hayeswangebc2ec42013-08-14 20:54:38 +08001200 break;
hayeswangac718b62013-05-02 16:01:25 +00001201 default:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001202 if (net_ratelimit())
1203 netdev_warn(netdev, "Rx status %d\n", status);
hayeswangebc2ec42013-08-14 20:54:38 +08001204 break;
hayeswangac718b62013-05-02 16:01:25 +00001205 }
1206
hayeswanga0fccd42014-11-20 10:29:05 +08001207 r8152_submit_rx(tp, agg, GFP_ATOMIC);
hayeswangac718b62013-05-02 16:01:25 +00001208}
1209
1210static void write_bulk_callback(struct urb *urb)
1211{
hayeswangebc2ec42013-08-14 20:54:38 +08001212 struct net_device_stats *stats;
hayeswangd104eaf2014-03-06 15:07:17 +08001213 struct net_device *netdev;
hayeswangebc2ec42013-08-14 20:54:38 +08001214 struct tx_agg *agg;
hayeswangac718b62013-05-02 16:01:25 +00001215 struct r8152 *tp;
1216 int status = urb->status;
1217
hayeswangebc2ec42013-08-14 20:54:38 +08001218 agg = urb->context;
1219 if (!agg)
1220 return;
1221
1222 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001223 if (!tp)
1224 return;
hayeswangebc2ec42013-08-14 20:54:38 +08001225
hayeswangd104eaf2014-03-06 15:07:17 +08001226 netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08001227 stats = &netdev->stats;
hayeswangebc2ec42013-08-14 20:54:38 +08001228 if (status) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08001229 if (net_ratelimit())
hayeswangd104eaf2014-03-06 15:07:17 +08001230 netdev_warn(netdev, "Tx status %d\n", status);
hayeswangebc2ec42013-08-14 20:54:38 +08001231 stats->tx_errors += agg->skb_num;
1232 } else {
1233 stats->tx_packets += agg->skb_num;
1234 stats->tx_bytes += agg->skb_len;
1235 }
1236
hayeswang2685d412014-03-07 11:04:34 +08001237 spin_lock(&tp->tx_lock);
hayeswangebc2ec42013-08-14 20:54:38 +08001238 list_add_tail(&agg->list, &tp->tx_free);
hayeswang2685d412014-03-07 11:04:34 +08001239 spin_unlock(&tp->tx_lock);
hayeswangebc2ec42013-08-14 20:54:38 +08001240
hayeswang9a4be1b2014-02-18 21:49:07 +08001241 usb_autopm_put_interface_async(tp->intf);
1242
hayeswangd104eaf2014-03-06 15:07:17 +08001243 if (!netif_carrier_ok(netdev))
hayeswangac718b62013-05-02 16:01:25 +00001244 return;
hayeswangebc2ec42013-08-14 20:54:38 +08001245
1246 if (!test_bit(WORK_ENABLE, &tp->flags))
1247 return;
1248
1249 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1250 return;
1251
1252 if (!skb_queue_empty(&tp->tx_queue))
hayeswangd823ab62015-01-12 12:06:23 +08001253 napi_schedule(&tp->napi);
hayeswangebc2ec42013-08-14 20:54:38 +08001254}
1255
hayeswang40a82912013-08-14 20:54:40 +08001256static void intr_callback(struct urb *urb)
1257{
1258 struct r8152 *tp;
hayeswang500b6d72013-11-20 17:30:57 +08001259 __le16 *d;
hayeswang40a82912013-08-14 20:54:40 +08001260 int status = urb->status;
1261 int res;
1262
1263 tp = urb->context;
1264 if (!tp)
1265 return;
1266
1267 if (!test_bit(WORK_ENABLE, &tp->flags))
1268 return;
1269
1270 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1271 return;
1272
1273 switch (status) {
1274 case 0: /* success */
1275 break;
1276 case -ECONNRESET: /* unlink */
1277 case -ESHUTDOWN:
1278 netif_device_detach(tp->netdev);
1279 case -ENOENT:
hayeswangd59c8762014-10-31 13:35:57 +08001280 case -EPROTO:
1281 netif_info(tp, intr, tp->netdev,
1282 "Stop submitting intr, status %d\n", status);
hayeswang40a82912013-08-14 20:54:40 +08001283 return;
1284 case -EOVERFLOW:
1285 netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n");
1286 goto resubmit;
1287 /* -EPIPE: should clear the halt */
1288 default:
1289 netif_info(tp, intr, tp->netdev, "intr status %d\n", status);
1290 goto resubmit;
1291 }
1292
1293 d = urb->transfer_buffer;
1294 if (INTR_LINK & __le16_to_cpu(d[0])) {
hayeswang51d979f2015-02-06 11:30:47 +08001295 if (!netif_carrier_ok(tp->netdev)) {
hayeswang40a82912013-08-14 20:54:40 +08001296 set_bit(RTL8152_LINK_CHG, &tp->flags);
1297 schedule_delayed_work(&tp->schedule, 0);
1298 }
1299 } else {
hayeswang51d979f2015-02-06 11:30:47 +08001300 if (netif_carrier_ok(tp->netdev)) {
hayeswang60d59822017-03-23 19:14:19 +08001301 netif_stop_queue(tp->netdev);
hayeswang40a82912013-08-14 20:54:40 +08001302 set_bit(RTL8152_LINK_CHG, &tp->flags);
1303 schedule_delayed_work(&tp->schedule, 0);
1304 }
1305 }
1306
1307resubmit:
1308 res = usb_submit_urb(urb, GFP_ATOMIC);
hayeswang67610492014-10-30 11:46:40 +08001309 if (res == -ENODEV) {
1310 set_bit(RTL8152_UNPLUG, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08001311 netif_device_detach(tp->netdev);
hayeswang67610492014-10-30 11:46:40 +08001312 } else if (res) {
hayeswang40a82912013-08-14 20:54:40 +08001313 netif_err(tp, intr, tp->netdev,
Hayes Wang4a8deae2014-01-07 11:18:22 +08001314 "can't resubmit intr, status %d\n", res);
hayeswang67610492014-10-30 11:46:40 +08001315 }
hayeswang40a82912013-08-14 20:54:40 +08001316}
1317
hayeswangebc2ec42013-08-14 20:54:38 +08001318static inline void *rx_agg_align(void *data)
1319{
hayeswang8e1f51b2014-01-02 11:22:41 +08001320 return (void *)ALIGN((uintptr_t)data, RX_ALIGN);
hayeswangebc2ec42013-08-14 20:54:38 +08001321}
1322
1323static inline void *tx_agg_align(void *data)
1324{
hayeswang8e1f51b2014-01-02 11:22:41 +08001325 return (void *)ALIGN((uintptr_t)data, TX_ALIGN);
hayeswangebc2ec42013-08-14 20:54:38 +08001326}
1327
1328static void free_all_mem(struct r8152 *tp)
1329{
1330 int i;
1331
1332 for (i = 0; i < RTL8152_MAX_RX; i++) {
hayeswang9629e3c2014-01-15 10:42:15 +08001333 usb_free_urb(tp->rx_info[i].urb);
1334 tp->rx_info[i].urb = NULL;
hayeswangebc2ec42013-08-14 20:54:38 +08001335
hayeswang9629e3c2014-01-15 10:42:15 +08001336 kfree(tp->rx_info[i].buffer);
1337 tp->rx_info[i].buffer = NULL;
1338 tp->rx_info[i].head = NULL;
hayeswangebc2ec42013-08-14 20:54:38 +08001339 }
1340
1341 for (i = 0; i < RTL8152_MAX_TX; i++) {
hayeswang9629e3c2014-01-15 10:42:15 +08001342 usb_free_urb(tp->tx_info[i].urb);
1343 tp->tx_info[i].urb = NULL;
hayeswangebc2ec42013-08-14 20:54:38 +08001344
hayeswang9629e3c2014-01-15 10:42:15 +08001345 kfree(tp->tx_info[i].buffer);
1346 tp->tx_info[i].buffer = NULL;
1347 tp->tx_info[i].head = NULL;
hayeswangebc2ec42013-08-14 20:54:38 +08001348 }
hayeswang40a82912013-08-14 20:54:40 +08001349
hayeswang9629e3c2014-01-15 10:42:15 +08001350 usb_free_urb(tp->intr_urb);
1351 tp->intr_urb = NULL;
hayeswang40a82912013-08-14 20:54:40 +08001352
hayeswang9629e3c2014-01-15 10:42:15 +08001353 kfree(tp->intr_buff);
1354 tp->intr_buff = NULL;
hayeswangebc2ec42013-08-14 20:54:38 +08001355}
1356
1357static int alloc_all_mem(struct r8152 *tp)
1358{
1359 struct net_device *netdev = tp->netdev;
hayeswang40a82912013-08-14 20:54:40 +08001360 struct usb_interface *intf = tp->intf;
1361 struct usb_host_interface *alt = intf->cur_altsetting;
1362 struct usb_host_endpoint *ep_intr = alt->endpoint + 2;
hayeswangebc2ec42013-08-14 20:54:38 +08001363 struct urb *urb;
1364 int node, i;
1365 u8 *buf;
1366
1367 node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1368
1369 spin_lock_init(&tp->rx_lock);
1370 spin_lock_init(&tp->tx_lock);
hayeswangebc2ec42013-08-14 20:54:38 +08001371 INIT_LIST_HEAD(&tp->tx_free);
hayeswangddfc9f72017-03-14 14:15:20 +08001372 INIT_LIST_HEAD(&tp->rx_done);
hayeswangebc2ec42013-08-14 20:54:38 +08001373 skb_queue_head_init(&tp->tx_queue);
hayeswangd823ab62015-01-12 12:06:23 +08001374 skb_queue_head_init(&tp->rx_queue);
hayeswangebc2ec42013-08-14 20:54:38 +08001375
1376 for (i = 0; i < RTL8152_MAX_RX; i++) {
hayeswang52aec122014-09-02 10:27:52 +08001377 buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
hayeswangebc2ec42013-08-14 20:54:38 +08001378 if (!buf)
1379 goto err1;
1380
1381 if (buf != rx_agg_align(buf)) {
1382 kfree(buf);
hayeswang52aec122014-09-02 10:27:52 +08001383 buf = kmalloc_node(agg_buf_sz + RX_ALIGN, GFP_KERNEL,
hayeswang8e1f51b2014-01-02 11:22:41 +08001384 node);
hayeswangebc2ec42013-08-14 20:54:38 +08001385 if (!buf)
1386 goto err1;
1387 }
1388
1389 urb = usb_alloc_urb(0, GFP_KERNEL);
1390 if (!urb) {
1391 kfree(buf);
1392 goto err1;
1393 }
1394
1395 INIT_LIST_HEAD(&tp->rx_info[i].list);
1396 tp->rx_info[i].context = tp;
1397 tp->rx_info[i].urb = urb;
1398 tp->rx_info[i].buffer = buf;
1399 tp->rx_info[i].head = rx_agg_align(buf);
1400 }
1401
1402 for (i = 0; i < RTL8152_MAX_TX; i++) {
hayeswang52aec122014-09-02 10:27:52 +08001403 buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
hayeswangebc2ec42013-08-14 20:54:38 +08001404 if (!buf)
1405 goto err1;
1406
1407 if (buf != tx_agg_align(buf)) {
1408 kfree(buf);
hayeswang52aec122014-09-02 10:27:52 +08001409 buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL,
hayeswang8e1f51b2014-01-02 11:22:41 +08001410 node);
hayeswangebc2ec42013-08-14 20:54:38 +08001411 if (!buf)
1412 goto err1;
1413 }
1414
1415 urb = usb_alloc_urb(0, GFP_KERNEL);
1416 if (!urb) {
1417 kfree(buf);
1418 goto err1;
1419 }
1420
1421 INIT_LIST_HEAD(&tp->tx_info[i].list);
1422 tp->tx_info[i].context = tp;
1423 tp->tx_info[i].urb = urb;
1424 tp->tx_info[i].buffer = buf;
1425 tp->tx_info[i].head = tx_agg_align(buf);
1426
1427 list_add_tail(&tp->tx_info[i].list, &tp->tx_free);
1428 }
1429
hayeswang40a82912013-08-14 20:54:40 +08001430 tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
1431 if (!tp->intr_urb)
1432 goto err1;
1433
1434 tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
1435 if (!tp->intr_buff)
1436 goto err1;
1437
1438 tp->intr_interval = (int)ep_intr->desc.bInterval;
1439 usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
hayeswangb209af92014-08-25 15:53:00 +08001440 tp->intr_buff, INTBUFSIZE, intr_callback,
1441 tp, tp->intr_interval);
hayeswang40a82912013-08-14 20:54:40 +08001442
hayeswangebc2ec42013-08-14 20:54:38 +08001443 return 0;
1444
1445err1:
1446 free_all_mem(tp);
1447 return -ENOMEM;
1448}
1449
hayeswang0de98f62013-08-16 16:09:35 +08001450static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp)
1451{
1452 struct tx_agg *agg = NULL;
1453 unsigned long flags;
1454
hayeswang21949ab2014-03-07 11:04:35 +08001455 if (list_empty(&tp->tx_free))
1456 return NULL;
1457
hayeswang0de98f62013-08-16 16:09:35 +08001458 spin_lock_irqsave(&tp->tx_lock, flags);
1459 if (!list_empty(&tp->tx_free)) {
1460 struct list_head *cursor;
1461
1462 cursor = tp->tx_free.next;
1463 list_del_init(cursor);
1464 agg = list_entry(cursor, struct tx_agg, list);
1465 }
1466 spin_unlock_irqrestore(&tp->tx_lock, flags);
1467
1468 return agg;
1469}
1470
hayeswangb209af92014-08-25 15:53:00 +08001471/* r8152_csum_workaround()
hayeswang6128d1b2014-03-07 11:04:40 +08001472 * The hw limites the value the transport offset. When the offset is out of the
1473 * range, calculate the checksum by sw.
1474 */
1475static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb,
1476 struct sk_buff_head *list)
1477{
1478 if (skb_shinfo(skb)->gso_size) {
1479 netdev_features_t features = tp->netdev->features;
1480 struct sk_buff_head seg_list;
1481 struct sk_buff *segs, *nskb;
1482
hayeswanga91d45f2014-07-11 16:48:27 +08001483 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
hayeswang6128d1b2014-03-07 11:04:40 +08001484 segs = skb_gso_segment(skb, features);
1485 if (IS_ERR(segs) || !segs)
1486 goto drop;
1487
1488 __skb_queue_head_init(&seg_list);
1489
1490 do {
1491 nskb = segs;
1492 segs = segs->next;
1493 nskb->next = NULL;
1494 __skb_queue_tail(&seg_list, nskb);
1495 } while (segs);
1496
1497 skb_queue_splice(&seg_list, list);
1498 dev_kfree_skb(skb);
1499 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1500 if (skb_checksum_help(skb) < 0)
1501 goto drop;
1502
1503 __skb_queue_head(list, skb);
1504 } else {
1505 struct net_device_stats *stats;
1506
1507drop:
1508 stats = &tp->netdev->stats;
1509 stats->tx_dropped++;
1510 dev_kfree_skb(skb);
1511 }
1512}
1513
hayeswangb209af92014-08-25 15:53:00 +08001514/* msdn_giant_send_check()
hayeswang6128d1b2014-03-07 11:04:40 +08001515 * According to the document of microsoft, the TCP Pseudo Header excludes the
1516 * packet length for IPv6 TCP large packets.
1517 */
1518static int msdn_giant_send_check(struct sk_buff *skb)
1519{
1520 const struct ipv6hdr *ipv6h;
1521 struct tcphdr *th;
hayeswangfcb308d2014-03-11 10:20:32 +08001522 int ret;
1523
1524 ret = skb_cow_head(skb, 0);
1525 if (ret)
1526 return ret;
hayeswang6128d1b2014-03-07 11:04:40 +08001527
1528 ipv6h = ipv6_hdr(skb);
1529 th = tcp_hdr(skb);
1530
1531 th->check = 0;
1532 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
1533
hayeswangfcb308d2014-03-11 10:20:32 +08001534 return ret;
hayeswang6128d1b2014-03-07 11:04:40 +08001535}
1536
hayeswangc5554292014-09-12 10:43:11 +08001537static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb)
1538{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001539 if (skb_vlan_tag_present(skb)) {
hayeswangc5554292014-09-12 10:43:11 +08001540 u32 opts2;
1541
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001542 opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb));
hayeswangc5554292014-09-12 10:43:11 +08001543 desc->opts2 |= cpu_to_le32(opts2);
1544 }
1545}
1546
1547static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb)
1548{
1549 u32 opts2 = le32_to_cpu(desc->opts2);
1550
1551 if (opts2 & RX_VLAN_TAG)
1552 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1553 swab16(opts2 & 0xffff));
1554}
1555
hayeswang60c89072014-03-07 11:04:39 +08001556static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc,
1557 struct sk_buff *skb, u32 len, u32 transport_offset)
1558{
1559 u32 mss = skb_shinfo(skb)->gso_size;
1560 u32 opts1, opts2 = 0;
1561 int ret = TX_CSUM_SUCCESS;
1562
1563 WARN_ON_ONCE(len > TX_LEN_MAX);
1564
1565 opts1 = len | TX_FS | TX_LS;
1566
1567 if (mss) {
hayeswang6128d1b2014-03-07 11:04:40 +08001568 if (transport_offset > GTTCPHO_MAX) {
1569 netif_warn(tp, tx_err, tp->netdev,
1570 "Invalid transport offset 0x%x for TSO\n",
1571 transport_offset);
1572 ret = TX_CSUM_TSO;
1573 goto unavailable;
1574 }
1575
hayeswang6e74d172015-02-06 11:30:50 +08001576 switch (vlan_get_protocol(skb)) {
hayeswang60c89072014-03-07 11:04:39 +08001577 case htons(ETH_P_IP):
1578 opts1 |= GTSENDV4;
1579 break;
1580
hayeswang6128d1b2014-03-07 11:04:40 +08001581 case htons(ETH_P_IPV6):
hayeswangfcb308d2014-03-11 10:20:32 +08001582 if (msdn_giant_send_check(skb)) {
1583 ret = TX_CSUM_TSO;
1584 goto unavailable;
1585 }
hayeswang6128d1b2014-03-07 11:04:40 +08001586 opts1 |= GTSENDV6;
hayeswang6128d1b2014-03-07 11:04:40 +08001587 break;
1588
hayeswang60c89072014-03-07 11:04:39 +08001589 default:
1590 WARN_ON_ONCE(1);
1591 break;
1592 }
1593
1594 opts1 |= transport_offset << GTTCPHO_SHIFT;
1595 opts2 |= min(mss, MSS_MAX) << MSS_SHIFT;
1596 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswang5bd23882013-08-14 20:54:39 +08001597 u8 ip_protocol;
hayeswang5bd23882013-08-14 20:54:39 +08001598
hayeswang6128d1b2014-03-07 11:04:40 +08001599 if (transport_offset > TCPHO_MAX) {
1600 netif_warn(tp, tx_err, tp->netdev,
1601 "Invalid transport offset 0x%x\n",
1602 transport_offset);
1603 ret = TX_CSUM_NONE;
1604 goto unavailable;
1605 }
1606
hayeswang6e74d172015-02-06 11:30:50 +08001607 switch (vlan_get_protocol(skb)) {
hayeswang5bd23882013-08-14 20:54:39 +08001608 case htons(ETH_P_IP):
1609 opts2 |= IPV4_CS;
1610 ip_protocol = ip_hdr(skb)->protocol;
1611 break;
1612
1613 case htons(ETH_P_IPV6):
1614 opts2 |= IPV6_CS;
1615 ip_protocol = ipv6_hdr(skb)->nexthdr;
1616 break;
1617
1618 default:
1619 ip_protocol = IPPROTO_RAW;
1620 break;
1621 }
1622
hayeswang60c89072014-03-07 11:04:39 +08001623 if (ip_protocol == IPPROTO_TCP)
hayeswang5bd23882013-08-14 20:54:39 +08001624 opts2 |= TCP_CS;
hayeswang60c89072014-03-07 11:04:39 +08001625 else if (ip_protocol == IPPROTO_UDP)
hayeswang5bd23882013-08-14 20:54:39 +08001626 opts2 |= UDP_CS;
hayeswang60c89072014-03-07 11:04:39 +08001627 else
hayeswang5bd23882013-08-14 20:54:39 +08001628 WARN_ON_ONCE(1);
hayeswang5bd23882013-08-14 20:54:39 +08001629
hayeswang60c89072014-03-07 11:04:39 +08001630 opts2 |= transport_offset << TCPHO_SHIFT;
hayeswang5bd23882013-08-14 20:54:39 +08001631 }
hayeswang60c89072014-03-07 11:04:39 +08001632
1633 desc->opts2 = cpu_to_le32(opts2);
1634 desc->opts1 = cpu_to_le32(opts1);
1635
hayeswang6128d1b2014-03-07 11:04:40 +08001636unavailable:
hayeswang60c89072014-03-07 11:04:39 +08001637 return ret;
hayeswang5bd23882013-08-14 20:54:39 +08001638}
1639
hayeswangb1379d92013-08-16 16:09:37 +08001640static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
1641{
hayeswangd84130a2014-02-18 21:49:02 +08001642 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang9a4be1b2014-02-18 21:49:07 +08001643 int remain, ret;
hayeswangb1379d92013-08-16 16:09:37 +08001644 u8 *tx_data;
1645
hayeswangd84130a2014-02-18 21:49:02 +08001646 __skb_queue_head_init(&skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08001647 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001648 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08001649 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001650
hayeswangb1379d92013-08-16 16:09:37 +08001651 tx_data = agg->head;
hayeswangb209af92014-08-25 15:53:00 +08001652 agg->skb_num = 0;
1653 agg->skb_len = 0;
hayeswang52aec122014-09-02 10:27:52 +08001654 remain = agg_buf_sz;
hayeswangb1379d92013-08-16 16:09:37 +08001655
hayeswang7937f9e2013-11-20 17:30:54 +08001656 while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) {
hayeswangb1379d92013-08-16 16:09:37 +08001657 struct tx_desc *tx_desc;
1658 struct sk_buff *skb;
1659 unsigned int len;
hayeswang60c89072014-03-07 11:04:39 +08001660 u32 offset;
hayeswangb1379d92013-08-16 16:09:37 +08001661
hayeswangd84130a2014-02-18 21:49:02 +08001662 skb = __skb_dequeue(&skb_head);
hayeswangb1379d92013-08-16 16:09:37 +08001663 if (!skb)
1664 break;
1665
hayeswang60c89072014-03-07 11:04:39 +08001666 len = skb->len + sizeof(*tx_desc);
1667
1668 if (len > remain) {
hayeswangd84130a2014-02-18 21:49:02 +08001669 __skb_queue_head(&skb_head, skb);
hayeswangb1379d92013-08-16 16:09:37 +08001670 break;
1671 }
1672
hayeswang7937f9e2013-11-20 17:30:54 +08001673 tx_data = tx_agg_align(tx_data);
hayeswangb1379d92013-08-16 16:09:37 +08001674 tx_desc = (struct tx_desc *)tx_data;
hayeswang60c89072014-03-07 11:04:39 +08001675
1676 offset = (u32)skb_transport_offset(skb);
1677
hayeswang6128d1b2014-03-07 11:04:40 +08001678 if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) {
1679 r8152_csum_workaround(tp, skb, &skb_head);
1680 continue;
1681 }
hayeswang60c89072014-03-07 11:04:39 +08001682
hayeswangc5554292014-09-12 10:43:11 +08001683 rtl_tx_vlan_tag(tx_desc, skb);
1684
hayeswangb1379d92013-08-16 16:09:37 +08001685 tx_data += sizeof(*tx_desc);
1686
hayeswang60c89072014-03-07 11:04:39 +08001687 len = skb->len;
1688 if (skb_copy_bits(skb, 0, tx_data, len) < 0) {
1689 struct net_device_stats *stats = &tp->netdev->stats;
1690
1691 stats->tx_dropped++;
1692 dev_kfree_skb_any(skb);
1693 tx_data -= sizeof(*tx_desc);
1694 continue;
1695 }
hayeswangb1379d92013-08-16 16:09:37 +08001696
hayeswang7937f9e2013-11-20 17:30:54 +08001697 tx_data += len;
hayeswang60c89072014-03-07 11:04:39 +08001698 agg->skb_len += len;
Eric Dumazet14a61b62018-02-25 19:12:10 -08001699 agg->skb_num += skb_shinfo(skb)->gso_segs ?: 1;
hayeswang60c89072014-03-07 11:04:39 +08001700
1701 dev_kfree_skb_any(skb);
1702
hayeswang52aec122014-09-02 10:27:52 +08001703 remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head);
hayeswangb1379d92013-08-16 16:09:37 +08001704 }
1705
hayeswangd84130a2014-02-18 21:49:02 +08001706 if (!skb_queue_empty(&skb_head)) {
hayeswang0c3121f2014-03-07 11:04:36 +08001707 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001708 skb_queue_splice(&skb_head, tx_queue);
hayeswang0c3121f2014-03-07 11:04:36 +08001709 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001710 }
1711
hayeswang0c3121f2014-03-07 11:04:36 +08001712 netif_tx_lock(tp->netdev);
hayeswangdd1b1192013-11-20 17:30:56 +08001713
1714 if (netif_queue_stopped(tp->netdev) &&
1715 skb_queue_len(&tp->tx_queue) < tp->tx_qlen)
1716 netif_wake_queue(tp->netdev);
1717
hayeswang0c3121f2014-03-07 11:04:36 +08001718 netif_tx_unlock(tp->netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08001719
hayeswang0c3121f2014-03-07 11:04:36 +08001720 ret = usb_autopm_get_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08001721 if (ret < 0)
1722 goto out_tx_fill;
hayeswangdd1b1192013-11-20 17:30:56 +08001723
hayeswangb1379d92013-08-16 16:09:37 +08001724 usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
1725 agg->head, (int)(tx_data - (u8 *)agg->head),
1726 (usb_complete_t)write_bulk_callback, agg);
1727
hayeswang0c3121f2014-03-07 11:04:36 +08001728 ret = usb_submit_urb(agg->urb, GFP_ATOMIC);
hayeswang9a4be1b2014-02-18 21:49:07 +08001729 if (ret < 0)
hayeswang0c3121f2014-03-07 11:04:36 +08001730 usb_autopm_put_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08001731
1732out_tx_fill:
1733 return ret;
hayeswangb1379d92013-08-16 16:09:37 +08001734}
1735
hayeswang565cab02014-03-07 11:04:38 +08001736static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc)
1737{
1738 u8 checksum = CHECKSUM_NONE;
1739 u32 opts2, opts3;
1740
hayeswanga37f2312017-01-11 16:25:34 +08001741 if (!(tp->netdev->features & NETIF_F_RXCSUM))
hayeswang565cab02014-03-07 11:04:38 +08001742 goto return_result;
1743
1744 opts2 = le32_to_cpu(rx_desc->opts2);
1745 opts3 = le32_to_cpu(rx_desc->opts3);
1746
1747 if (opts2 & RD_IPV4_CS) {
1748 if (opts3 & IPF)
1749 checksum = CHECKSUM_NONE;
1750 else if ((opts2 & RD_UDP_CS) && (opts3 & UDPF))
1751 checksum = CHECKSUM_NONE;
1752 else if ((opts2 & RD_TCP_CS) && (opts3 & TCPF))
1753 checksum = CHECKSUM_NONE;
1754 else
1755 checksum = CHECKSUM_UNNECESSARY;
Mark Lordb9a321b2016-10-30 19:28:27 -04001756 } else if (opts2 & RD_IPV6_CS) {
hayeswang6128d1b2014-03-07 11:04:40 +08001757 if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
1758 checksum = CHECKSUM_UNNECESSARY;
1759 else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
1760 checksum = CHECKSUM_UNNECESSARY;
hayeswang565cab02014-03-07 11:04:38 +08001761 }
1762
1763return_result:
1764 return checksum;
1765}
1766
hayeswangd823ab62015-01-12 12:06:23 +08001767static int rx_bottom(struct r8152 *tp, int budget)
hayeswangebc2ec42013-08-14 20:54:38 +08001768{
hayeswanga5a4f462013-08-16 16:09:34 +08001769 unsigned long flags;
hayeswangd84130a2014-02-18 21:49:02 +08001770 struct list_head *cursor, *next, rx_queue;
hayeswange1a2ca92015-02-06 11:30:45 +08001771 int ret = 0, work_done = 0;
hayeswangd823ab62015-01-12 12:06:23 +08001772
1773 if (!skb_queue_empty(&tp->rx_queue)) {
1774 while (work_done < budget) {
1775 struct sk_buff *skb = __skb_dequeue(&tp->rx_queue);
1776 struct net_device *netdev = tp->netdev;
1777 struct net_device_stats *stats = &netdev->stats;
1778 unsigned int pkt_len;
1779
1780 if (!skb)
1781 break;
1782
1783 pkt_len = skb->len;
1784 napi_gro_receive(&tp->napi, skb);
1785 work_done++;
1786 stats->rx_packets++;
1787 stats->rx_bytes += pkt_len;
1788 }
1789 }
hayeswangebc2ec42013-08-14 20:54:38 +08001790
hayeswangd84130a2014-02-18 21:49:02 +08001791 if (list_empty(&tp->rx_done))
hayeswangd823ab62015-01-12 12:06:23 +08001792 goto out1;
hayeswangd84130a2014-02-18 21:49:02 +08001793
1794 INIT_LIST_HEAD(&rx_queue);
hayeswanga5a4f462013-08-16 16:09:34 +08001795 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswangd84130a2014-02-18 21:49:02 +08001796 list_splice_init(&tp->rx_done, &rx_queue);
1797 spin_unlock_irqrestore(&tp->rx_lock, flags);
1798
1799 list_for_each_safe(cursor, next, &rx_queue) {
hayeswang43a44782013-08-16 16:09:36 +08001800 struct rx_desc *rx_desc;
1801 struct rx_agg *agg;
hayeswang43a44782013-08-16 16:09:36 +08001802 int len_used = 0;
1803 struct urb *urb;
1804 u8 *rx_data;
hayeswang43a44782013-08-16 16:09:36 +08001805
hayeswangebc2ec42013-08-14 20:54:38 +08001806 list_del_init(cursor);
hayeswangebc2ec42013-08-14 20:54:38 +08001807
1808 agg = list_entry(cursor, struct rx_agg, list);
1809 urb = agg->urb;
hayeswang0de98f62013-08-16 16:09:35 +08001810 if (urb->actual_length < ETH_ZLEN)
1811 goto submit;
hayeswangebc2ec42013-08-14 20:54:38 +08001812
hayeswangebc2ec42013-08-14 20:54:38 +08001813 rx_desc = agg->head;
1814 rx_data = agg->head;
hayeswang7937f9e2013-11-20 17:30:54 +08001815 len_used += sizeof(struct rx_desc);
hayeswangebc2ec42013-08-14 20:54:38 +08001816
hayeswang7937f9e2013-11-20 17:30:54 +08001817 while (urb->actual_length > len_used) {
hayeswang43a44782013-08-16 16:09:36 +08001818 struct net_device *netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08001819 struct net_device_stats *stats = &netdev->stats;
hayeswang7937f9e2013-11-20 17:30:54 +08001820 unsigned int pkt_len;
hayeswang43a44782013-08-16 16:09:36 +08001821 struct sk_buff *skb;
1822
hayeswang7937f9e2013-11-20 17:30:54 +08001823 pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK;
hayeswangebc2ec42013-08-14 20:54:38 +08001824 if (pkt_len < ETH_ZLEN)
1825 break;
1826
hayeswang7937f9e2013-11-20 17:30:54 +08001827 len_used += pkt_len;
1828 if (urb->actual_length < len_used)
1829 break;
1830
hayeswang8e1f51b2014-01-02 11:22:41 +08001831 pkt_len -= CRC_SIZE;
hayeswangebc2ec42013-08-14 20:54:38 +08001832 rx_data += sizeof(struct rx_desc);
1833
hayeswangc8d83962016-06-08 14:52:33 +08001834 skb = napi_alloc_skb(&tp->napi, pkt_len);
hayeswangebc2ec42013-08-14 20:54:38 +08001835 if (!skb) {
1836 stats->rx_dropped++;
hayeswang5e2f7482014-03-07 11:04:37 +08001837 goto find_next_rx;
hayeswangebc2ec42013-08-14 20:54:38 +08001838 }
hayeswang565cab02014-03-07 11:04:38 +08001839
1840 skb->ip_summed = r8152_rx_csum(tp, rx_desc);
hayeswangebc2ec42013-08-14 20:54:38 +08001841 memcpy(skb->data, rx_data, pkt_len);
1842 skb_put(skb, pkt_len);
1843 skb->protocol = eth_type_trans(skb, netdev);
hayeswangc5554292014-09-12 10:43:11 +08001844 rtl_rx_vlan_tag(rx_desc, skb);
hayeswangd823ab62015-01-12 12:06:23 +08001845 if (work_done < budget) {
1846 napi_gro_receive(&tp->napi, skb);
1847 work_done++;
1848 stats->rx_packets++;
1849 stats->rx_bytes += pkt_len;
1850 } else {
1851 __skb_queue_tail(&tp->rx_queue, skb);
1852 }
hayeswangebc2ec42013-08-14 20:54:38 +08001853
hayeswang5e2f7482014-03-07 11:04:37 +08001854find_next_rx:
hayeswang8e1f51b2014-01-02 11:22:41 +08001855 rx_data = rx_agg_align(rx_data + pkt_len + CRC_SIZE);
hayeswangebc2ec42013-08-14 20:54:38 +08001856 rx_desc = (struct rx_desc *)rx_data;
hayeswangebc2ec42013-08-14 20:54:38 +08001857 len_used = (int)(rx_data - (u8 *)agg->head);
hayeswang7937f9e2013-11-20 17:30:54 +08001858 len_used += sizeof(struct rx_desc);
hayeswangebc2ec42013-08-14 20:54:38 +08001859 }
1860
hayeswang0de98f62013-08-16 16:09:35 +08001861submit:
hayeswange1a2ca92015-02-06 11:30:45 +08001862 if (!ret) {
1863 ret = r8152_submit_rx(tp, agg, GFP_ATOMIC);
1864 } else {
1865 urb->actual_length = 0;
1866 list_add_tail(&agg->list, next);
1867 }
1868 }
1869
1870 if (!list_empty(&rx_queue)) {
1871 spin_lock_irqsave(&tp->rx_lock, flags);
1872 list_splice_tail(&rx_queue, &tp->rx_done);
1873 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangebc2ec42013-08-14 20:54:38 +08001874 }
hayeswangd823ab62015-01-12 12:06:23 +08001875
1876out1:
1877 return work_done;
hayeswangebc2ec42013-08-14 20:54:38 +08001878}
1879
1880static void tx_bottom(struct r8152 *tp)
1881{
hayeswangebc2ec42013-08-14 20:54:38 +08001882 int res;
1883
hayeswangb1379d92013-08-16 16:09:37 +08001884 do {
1885 struct tx_agg *agg;
hayeswangebc2ec42013-08-14 20:54:38 +08001886
hayeswangb1379d92013-08-16 16:09:37 +08001887 if (skb_queue_empty(&tp->tx_queue))
hayeswangebc2ec42013-08-14 20:54:38 +08001888 break;
1889
hayeswangb1379d92013-08-16 16:09:37 +08001890 agg = r8152_get_tx_agg(tp);
1891 if (!agg)
hayeswangebc2ec42013-08-14 20:54:38 +08001892 break;
hayeswangb1379d92013-08-16 16:09:37 +08001893
1894 res = r8152_tx_agg_fill(tp, agg);
1895 if (res) {
hayeswang05e0f1a2014-03-06 15:07:18 +08001896 struct net_device *netdev = tp->netdev;
hayeswangb1379d92013-08-16 16:09:37 +08001897
1898 if (res == -ENODEV) {
hayeswang67610492014-10-30 11:46:40 +08001899 set_bit(RTL8152_UNPLUG, &tp->flags);
hayeswangb1379d92013-08-16 16:09:37 +08001900 netif_device_detach(netdev);
1901 } else {
hayeswang05e0f1a2014-03-06 15:07:18 +08001902 struct net_device_stats *stats = &netdev->stats;
1903 unsigned long flags;
1904
hayeswangb1379d92013-08-16 16:09:37 +08001905 netif_warn(tp, tx_err, netdev,
1906 "failed tx_urb %d\n", res);
1907 stats->tx_dropped += agg->skb_num;
hayeswangdb8515e2014-03-06 15:07:16 +08001908
hayeswangb1379d92013-08-16 16:09:37 +08001909 spin_lock_irqsave(&tp->tx_lock, flags);
1910 list_add_tail(&agg->list, &tp->tx_free);
1911 spin_unlock_irqrestore(&tp->tx_lock, flags);
1912 }
hayeswangebc2ec42013-08-14 20:54:38 +08001913 }
hayeswangb1379d92013-08-16 16:09:37 +08001914 } while (res == 0);
hayeswangebc2ec42013-08-14 20:54:38 +08001915}
1916
hayeswangd823ab62015-01-12 12:06:23 +08001917static void bottom_half(struct r8152 *tp)
hayeswangebc2ec42013-08-14 20:54:38 +08001918{
hayeswangebc2ec42013-08-14 20:54:38 +08001919 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1920 return;
1921
1922 if (!test_bit(WORK_ENABLE, &tp->flags))
1923 return;
1924
hayeswang7559fb2f2013-08-16 16:09:38 +08001925 /* When link down, the driver would cancel all bulks. */
1926 /* This avoid the re-submitting bulk */
hayeswangebc2ec42013-08-14 20:54:38 +08001927 if (!netif_carrier_ok(tp->netdev))
1928 return;
1929
hayeswangd823ab62015-01-12 12:06:23 +08001930 clear_bit(SCHEDULE_NAPI, &tp->flags);
hayeswang9451a112014-11-12 10:05:04 +08001931
hayeswang0c3121f2014-03-07 11:04:36 +08001932 tx_bottom(tp);
hayeswangebc2ec42013-08-14 20:54:38 +08001933}
1934
hayeswangd823ab62015-01-12 12:06:23 +08001935static int r8152_poll(struct napi_struct *napi, int budget)
1936{
1937 struct r8152 *tp = container_of(napi, struct r8152, napi);
1938 int work_done;
1939
1940 work_done = rx_bottom(tp, budget);
1941 bottom_half(tp);
1942
1943 if (work_done < budget) {
1944 napi_complete(napi);
1945 if (!list_empty(&tp->rx_done))
1946 napi_schedule(napi);
hayeswang95079102017-01-26 09:38:33 +08001947 else if (!skb_queue_empty(&tp->tx_queue) &&
1948 !list_empty(&tp->tx_free))
1949 napi_schedule(napi);
hayeswangd823ab62015-01-12 12:06:23 +08001950 }
1951
1952 return work_done;
1953}
1954
hayeswangebc2ec42013-08-14 20:54:38 +08001955static
1956int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
1957{
hayeswanga0fccd42014-11-20 10:29:05 +08001958 int ret;
1959
hayeswangef827a52015-01-09 10:26:36 +08001960 /* The rx would be stopped, so skip submitting */
1961 if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
1962 !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
1963 return 0;
1964
hayeswangebc2ec42013-08-14 20:54:38 +08001965 usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
hayeswang52aec122014-09-02 10:27:52 +08001966 agg->head, agg_buf_sz,
hayeswangb209af92014-08-25 15:53:00 +08001967 (usb_complete_t)read_bulk_callback, agg);
hayeswangebc2ec42013-08-14 20:54:38 +08001968
hayeswanga0fccd42014-11-20 10:29:05 +08001969 ret = usb_submit_urb(agg->urb, mem_flags);
1970 if (ret == -ENODEV) {
1971 set_bit(RTL8152_UNPLUG, &tp->flags);
1972 netif_device_detach(tp->netdev);
1973 } else if (ret) {
1974 struct urb *urb = agg->urb;
1975 unsigned long flags;
1976
1977 urb->actual_length = 0;
1978 spin_lock_irqsave(&tp->rx_lock, flags);
1979 list_add_tail(&agg->list, &tp->rx_done);
1980 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangd823ab62015-01-12 12:06:23 +08001981
1982 netif_err(tp, rx_err, tp->netdev,
1983 "Couldn't submit rx[%p], ret = %d\n", agg, ret);
1984
1985 napi_schedule(&tp->napi);
hayeswanga0fccd42014-11-20 10:29:05 +08001986 }
1987
1988 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001989}
1990
hayeswang00a5e362014-02-18 21:48:59 +08001991static void rtl_drop_queued_tx(struct r8152 *tp)
1992{
1993 struct net_device_stats *stats = &tp->netdev->stats;
hayeswangd84130a2014-02-18 21:49:02 +08001994 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang00a5e362014-02-18 21:48:59 +08001995 struct sk_buff *skb;
1996
hayeswangd84130a2014-02-18 21:49:02 +08001997 if (skb_queue_empty(tx_queue))
1998 return;
1999
2000 __skb_queue_head_init(&skb_head);
hayeswang2685d412014-03-07 11:04:34 +08002001 spin_lock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002002 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang2685d412014-03-07 11:04:34 +08002003 spin_unlock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08002004
2005 while ((skb = __skb_dequeue(&skb_head))) {
hayeswang00a5e362014-02-18 21:48:59 +08002006 dev_kfree_skb(skb);
2007 stats->tx_dropped++;
2008 }
2009}
2010
hayeswangac718b62013-05-02 16:01:25 +00002011static void rtl8152_tx_timeout(struct net_device *netdev)
2012{
2013 struct r8152 *tp = netdev_priv(netdev);
hayeswangebc2ec42013-08-14 20:54:38 +08002014
Hayes Wang4a8deae2014-01-07 11:18:22 +08002015 netif_warn(tp, tx_err, netdev, "Tx timeout\n");
hayeswang37608f32015-07-29 20:39:09 +08002016
2017 usb_queue_reset_device(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00002018}
2019
2020static void rtl8152_set_rx_mode(struct net_device *netdev)
2021{
2022 struct r8152 *tp = netdev_priv(netdev);
2023
hayeswang51d979f2015-02-06 11:30:47 +08002024 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00002025 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08002026 schedule_delayed_work(&tp->schedule, 0);
2027 }
hayeswangac718b62013-05-02 16:01:25 +00002028}
2029
2030static void _rtl8152_set_rx_mode(struct net_device *netdev)
2031{
2032 struct r8152 *tp = netdev_priv(netdev);
hayeswang31787f52013-07-31 17:21:25 +08002033 u32 mc_filter[2]; /* Multicast hash filter */
2034 __le32 tmp[2];
hayeswangac718b62013-05-02 16:01:25 +00002035 u32 ocp_data;
2036
hayeswangac718b62013-05-02 16:01:25 +00002037 netif_stop_queue(netdev);
2038 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2039 ocp_data &= ~RCR_ACPT_ALL;
2040 ocp_data |= RCR_AB | RCR_APM;
2041
2042 if (netdev->flags & IFF_PROMISC) {
2043 /* Unconditionally log net taps. */
2044 netif_notice(tp, link, netdev, "Promiscuous mode enabled\n");
2045 ocp_data |= RCR_AM | RCR_AAP;
hayeswangb209af92014-08-25 15:53:00 +08002046 mc_filter[1] = 0xffffffff;
2047 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00002048 } else if ((netdev_mc_count(netdev) > multicast_filter_limit) ||
2049 (netdev->flags & IFF_ALLMULTI)) {
2050 /* Too many to filter perfectly -- accept all multicasts. */
2051 ocp_data |= RCR_AM;
hayeswangb209af92014-08-25 15:53:00 +08002052 mc_filter[1] = 0xffffffff;
2053 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00002054 } else {
2055 struct netdev_hw_addr *ha;
2056
hayeswangb209af92014-08-25 15:53:00 +08002057 mc_filter[1] = 0;
2058 mc_filter[0] = 0;
hayeswangac718b62013-05-02 16:01:25 +00002059 netdev_for_each_mc_addr(ha, netdev) {
2060 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
hayeswangb209af92014-08-25 15:53:00 +08002061
hayeswangac718b62013-05-02 16:01:25 +00002062 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2063 ocp_data |= RCR_AM;
2064 }
2065 }
2066
hayeswang31787f52013-07-31 17:21:25 +08002067 tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
2068 tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
hayeswangac718b62013-05-02 16:01:25 +00002069
hayeswang31787f52013-07-31 17:21:25 +08002070 pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
hayeswangac718b62013-05-02 16:01:25 +00002071 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2072 netif_wake_queue(netdev);
hayeswangac718b62013-05-02 16:01:25 +00002073}
2074
hayeswanga5e31252015-01-06 17:41:58 +08002075static netdev_features_t
2076rtl8152_features_check(struct sk_buff *skb, struct net_device *dev,
2077 netdev_features_t features)
2078{
2079 u32 mss = skb_shinfo(skb)->gso_size;
2080 int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX;
2081 int offset = skb_transport_offset(skb);
2082
2083 if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset)
Tom Herberta1882222015-12-14 11:19:43 -08002084 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
hayeswanga5e31252015-01-06 17:41:58 +08002085 else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz)
2086 features &= ~NETIF_F_GSO_MASK;
2087
2088 return features;
2089}
2090
hayeswangac718b62013-05-02 16:01:25 +00002091static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb,
hayeswangb209af92014-08-25 15:53:00 +08002092 struct net_device *netdev)
hayeswangac718b62013-05-02 16:01:25 +00002093{
2094 struct r8152 *tp = netdev_priv(netdev);
hayeswangac718b62013-05-02 16:01:25 +00002095
hayeswangac718b62013-05-02 16:01:25 +00002096 skb_tx_timestamp(skb);
hayeswangebc2ec42013-08-14 20:54:38 +08002097
hayeswang61598782013-11-20 17:30:55 +08002098 skb_queue_tail(&tp->tx_queue, skb);
hayeswangebc2ec42013-08-14 20:54:38 +08002099
hayeswang0c3121f2014-03-07 11:04:36 +08002100 if (!list_empty(&tp->tx_free)) {
2101 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
hayeswangd823ab62015-01-12 12:06:23 +08002102 set_bit(SCHEDULE_NAPI, &tp->flags);
hayeswang0c3121f2014-03-07 11:04:36 +08002103 schedule_delayed_work(&tp->schedule, 0);
2104 } else {
2105 usb_mark_last_busy(tp->udev);
hayeswangd823ab62015-01-12 12:06:23 +08002106 napi_schedule(&tp->napi);
hayeswang0c3121f2014-03-07 11:04:36 +08002107 }
hayeswangb209af92014-08-25 15:53:00 +08002108 } else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) {
hayeswangdd1b1192013-11-20 17:30:56 +08002109 netif_stop_queue(netdev);
hayeswangb209af92014-08-25 15:53:00 +08002110 }
hayeswangdd1b1192013-11-20 17:30:56 +08002111
hayeswangac718b62013-05-02 16:01:25 +00002112 return NETDEV_TX_OK;
2113}
2114
2115static void r8152b_reset_packet_filter(struct r8152 *tp)
2116{
2117 u32 ocp_data;
2118
2119 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC);
2120 ocp_data &= ~FMC_FCR_MCU_EN;
2121 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2122 ocp_data |= FMC_FCR_MCU_EN;
2123 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2124}
2125
2126static void rtl8152_nic_reset(struct r8152 *tp)
2127{
2128 int i;
2129
2130 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST);
2131
2132 for (i = 0; i < 1000; i++) {
2133 if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST))
2134 break;
hayeswangb209af92014-08-25 15:53:00 +08002135 usleep_range(100, 400);
hayeswangac718b62013-05-02 16:01:25 +00002136 }
2137}
2138
hayeswangdd1b1192013-11-20 17:30:56 +08002139static void set_tx_qlen(struct r8152 *tp)
2140{
2141 struct net_device *netdev = tp->netdev;
2142
hayeswang52aec122014-09-02 10:27:52 +08002143 tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + VLAN_HLEN +
2144 sizeof(struct tx_desc));
hayeswangdd1b1192013-11-20 17:30:56 +08002145}
2146
hayeswangac718b62013-05-02 16:01:25 +00002147static inline u8 rtl8152_get_speed(struct r8152 *tp)
2148{
2149 return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS);
2150}
2151
hayeswang507605a2014-01-02 11:22:43 +08002152static void rtl_set_eee_plus(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002153{
hayeswangebc2ec42013-08-14 20:54:38 +08002154 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002155 u8 speed;
2156
2157 speed = rtl8152_get_speed(tp);
hayeswangebc2ec42013-08-14 20:54:38 +08002158 if (speed & _10bps) {
hayeswangac718b62013-05-02 16:01:25 +00002159 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec42013-08-14 20:54:38 +08002160 ocp_data |= EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002161 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2162 } else {
2163 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec42013-08-14 20:54:38 +08002164 ocp_data &= ~EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002165 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2166 }
hayeswang507605a2014-01-02 11:22:43 +08002167}
2168
hayeswang00a5e362014-02-18 21:48:59 +08002169static void rxdy_gated_en(struct r8152 *tp, bool enable)
2170{
2171 u32 ocp_data;
2172
2173 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1);
2174 if (enable)
2175 ocp_data |= RXDY_GATED_EN;
2176 else
2177 ocp_data &= ~RXDY_GATED_EN;
2178 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data);
2179}
2180
hayeswang445f7f42014-09-23 16:31:47 +08002181static int rtl_start_rx(struct r8152 *tp)
2182{
2183 int i, ret = 0;
2184
2185 INIT_LIST_HEAD(&tp->rx_done);
2186 for (i = 0; i < RTL8152_MAX_RX; i++) {
2187 INIT_LIST_HEAD(&tp->rx_info[i].list);
2188 ret = r8152_submit_rx(tp, &tp->rx_info[i], GFP_KERNEL);
2189 if (ret)
2190 break;
2191 }
2192
hayeswang7bcf4f62014-11-20 10:29:06 +08002193 if (ret && ++i < RTL8152_MAX_RX) {
2194 struct list_head rx_queue;
2195 unsigned long flags;
2196
2197 INIT_LIST_HEAD(&rx_queue);
2198
2199 do {
2200 struct rx_agg *agg = &tp->rx_info[i++];
2201 struct urb *urb = agg->urb;
2202
2203 urb->actual_length = 0;
2204 list_add_tail(&agg->list, &rx_queue);
2205 } while (i < RTL8152_MAX_RX);
2206
2207 spin_lock_irqsave(&tp->rx_lock, flags);
2208 list_splice_tail(&rx_queue, &tp->rx_done);
2209 spin_unlock_irqrestore(&tp->rx_lock, flags);
2210 }
2211
hayeswang445f7f42014-09-23 16:31:47 +08002212 return ret;
2213}
2214
2215static int rtl_stop_rx(struct r8152 *tp)
2216{
2217 int i;
2218
2219 for (i = 0; i < RTL8152_MAX_RX; i++)
2220 usb_kill_urb(tp->rx_info[i].urb);
2221
hayeswangd823ab62015-01-12 12:06:23 +08002222 while (!skb_queue_empty(&tp->rx_queue))
2223 dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2224
hayeswang445f7f42014-09-23 16:31:47 +08002225 return 0;
2226}
2227
hayeswang507605a2014-01-02 11:22:43 +08002228static int rtl_enable(struct r8152 *tp)
2229{
2230 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002231
2232 r8152b_reset_packet_filter(tp);
2233
2234 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2235 ocp_data |= CR_RE | CR_TE;
2236 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2237
hayeswang00a5e362014-02-18 21:48:59 +08002238 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002239
hayeswangaa2e0922015-01-09 10:26:35 +08002240 return 0;
hayeswangac718b62013-05-02 16:01:25 +00002241}
2242
hayeswang507605a2014-01-02 11:22:43 +08002243static int rtl8152_enable(struct r8152 *tp)
2244{
hayeswang68714382014-04-11 17:54:31 +08002245 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2246 return -ENODEV;
2247
hayeswang507605a2014-01-02 11:22:43 +08002248 set_tx_qlen(tp);
2249 rtl_set_eee_plus(tp);
2250
2251 return rtl_enable(tp);
2252}
2253
hayeswang464ec102015-02-12 14:33:46 +08002254static void r8153_set_rx_early_timeout(struct r8152 *tp)
hayeswang43779f82014-01-02 11:25:10 +08002255{
hayeswang464ec102015-02-12 14:33:46 +08002256 u32 ocp_data = tp->coalesce / 8;
hayeswang43779f82014-01-02 11:25:10 +08002257
hayeswang464ec102015-02-12 14:33:46 +08002258 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, ocp_data);
2259}
2260
2261static void r8153_set_rx_early_size(struct r8152 *tp)
2262{
hayeswangbfb38fb2017-03-20 16:13:45 +08002263 u32 ocp_data = (agg_buf_sz - rx_reserved_size(tp->netdev->mtu)) / 4;
hayeswang464ec102015-02-12 14:33:46 +08002264
2265 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08002266}
2267
2268static int rtl8153_enable(struct r8152 *tp)
2269{
hayeswang68714382014-04-11 17:54:31 +08002270 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2271 return -ENODEV;
2272
hayeswangb2143962015-07-24 13:54:23 +08002273 usb_disable_lpm(tp->udev);
hayeswang43779f82014-01-02 11:25:10 +08002274 set_tx_qlen(tp);
2275 rtl_set_eee_plus(tp);
hayeswang464ec102015-02-12 14:33:46 +08002276 r8153_set_rx_early_timeout(tp);
2277 r8153_set_rx_early_size(tp);
hayeswang43779f82014-01-02 11:25:10 +08002278
2279 return rtl_enable(tp);
2280}
2281
hayeswangd70b1132014-09-19 15:17:18 +08002282static void rtl_disable(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002283{
hayeswangebc2ec42013-08-14 20:54:38 +08002284 u32 ocp_data;
2285 int i;
hayeswangac718b62013-05-02 16:01:25 +00002286
hayeswang68714382014-04-11 17:54:31 +08002287 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2288 rtl_drop_queued_tx(tp);
2289 return;
2290 }
2291
hayeswangac718b62013-05-02 16:01:25 +00002292 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2293 ocp_data &= ~RCR_ACPT_ALL;
2294 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2295
hayeswang00a5e362014-02-18 21:48:59 +08002296 rtl_drop_queued_tx(tp);
hayeswangebc2ec42013-08-14 20:54:38 +08002297
2298 for (i = 0; i < RTL8152_MAX_TX; i++)
2299 usb_kill_urb(tp->tx_info[i].urb);
hayeswangac718b62013-05-02 16:01:25 +00002300
hayeswang00a5e362014-02-18 21:48:59 +08002301 rxdy_gated_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002302
2303 for (i = 0; i < 1000; i++) {
2304 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2305 if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2306 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002307 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002308 }
2309
2310 for (i = 0; i < 1000; i++) {
2311 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2312 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002313 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002314 }
2315
hayeswang445f7f42014-09-23 16:31:47 +08002316 rtl_stop_rx(tp);
hayeswangac718b62013-05-02 16:01:25 +00002317
2318 rtl8152_nic_reset(tp);
2319}
2320
hayeswang00a5e362014-02-18 21:48:59 +08002321static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2322{
2323 u32 ocp_data;
2324
2325 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2326 if (enable)
2327 ocp_data |= POWER_CUT;
2328 else
2329 ocp_data &= ~POWER_CUT;
2330 ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2331
2332 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2333 ocp_data &= ~RESUME_INDICATE;
2334 ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
hayeswang00a5e362014-02-18 21:48:59 +08002335}
2336
hayeswangc5554292014-09-12 10:43:11 +08002337static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2338{
2339 u32 ocp_data;
2340
2341 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2342 if (enable)
2343 ocp_data |= CPCR_RX_VLAN;
2344 else
2345 ocp_data &= ~CPCR_RX_VLAN;
2346 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2347}
2348
2349static int rtl8152_set_features(struct net_device *dev,
2350 netdev_features_t features)
2351{
2352 netdev_features_t changed = features ^ dev->features;
2353 struct r8152 *tp = netdev_priv(dev);
hayeswang405f8a02014-10-09 18:00:24 +08002354 int ret;
2355
2356 ret = usb_autopm_get_interface(tp->intf);
2357 if (ret < 0)
2358 goto out;
hayeswangc5554292014-09-12 10:43:11 +08002359
hayeswangb5403272014-10-09 18:00:26 +08002360 mutex_lock(&tp->control);
2361
hayeswangc5554292014-09-12 10:43:11 +08002362 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2363 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2364 rtl_rx_vlan_en(tp, true);
2365 else
2366 rtl_rx_vlan_en(tp, false);
2367 }
2368
hayeswangb5403272014-10-09 18:00:26 +08002369 mutex_unlock(&tp->control);
2370
hayeswang405f8a02014-10-09 18:00:24 +08002371 usb_autopm_put_interface(tp->intf);
2372
2373out:
2374 return ret;
hayeswangc5554292014-09-12 10:43:11 +08002375}
2376
hayeswang21ff2e82014-02-18 21:49:06 +08002377#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2378
2379static u32 __rtl_get_wol(struct r8152 *tp)
2380{
2381 u32 ocp_data;
2382 u32 wolopts = 0;
2383
hayeswang21ff2e82014-02-18 21:49:06 +08002384 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2385 if (ocp_data & LINK_ON_WAKE_EN)
2386 wolopts |= WAKE_PHY;
2387
2388 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2389 if (ocp_data & UWF_EN)
2390 wolopts |= WAKE_UCAST;
2391 if (ocp_data & BWF_EN)
2392 wolopts |= WAKE_BCAST;
2393 if (ocp_data & MWF_EN)
2394 wolopts |= WAKE_MCAST;
2395
2396 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2397 if (ocp_data & MAGIC_EN)
2398 wolopts |= WAKE_MAGIC;
2399
2400 return wolopts;
2401}
2402
2403static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
2404{
2405 u32 ocp_data;
2406
2407 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2408
2409 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2410 ocp_data &= ~LINK_ON_WAKE_EN;
2411 if (wolopts & WAKE_PHY)
2412 ocp_data |= LINK_ON_WAKE_EN;
2413 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2414
2415 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
hayeswang92f7d072016-07-06 17:35:59 +08002416 ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN);
hayeswang21ff2e82014-02-18 21:49:06 +08002417 if (wolopts & WAKE_UCAST)
2418 ocp_data |= UWF_EN;
2419 if (wolopts & WAKE_BCAST)
2420 ocp_data |= BWF_EN;
2421 if (wolopts & WAKE_MCAST)
2422 ocp_data |= MWF_EN;
hayeswang21ff2e82014-02-18 21:49:06 +08002423 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
2424
2425 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2426
2427 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2428 ocp_data &= ~MAGIC_EN;
2429 if (wolopts & WAKE_MAGIC)
2430 ocp_data |= MAGIC_EN;
2431 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
2432
2433 if (wolopts & WAKE_ANY)
2434 device_set_wakeup_enable(&tp->udev->dev, true);
2435 else
2436 device_set_wakeup_enable(&tp->udev->dev, false);
2437}
2438
hayeswangb2143962015-07-24 13:54:23 +08002439static void r8153_u1u2en(struct r8152 *tp, bool enable)
2440{
2441 u8 u1u2[8];
2442
2443 if (enable)
2444 memset(u1u2, 0xff, sizeof(u1u2));
2445 else
2446 memset(u1u2, 0x00, sizeof(u1u2));
2447
2448 usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
2449}
2450
2451static void r8153_u2p3en(struct r8152 *tp, bool enable)
2452{
2453 u32 ocp_data;
2454
2455 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
2456 if (enable && tp->version != RTL_VER_03 && tp->version != RTL_VER_04)
2457 ocp_data |= U2P3_ENABLE;
2458 else
2459 ocp_data &= ~U2P3_ENABLE;
2460 ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
2461}
2462
2463static void r8153_power_cut_en(struct r8152 *tp, bool enable)
2464{
2465 u32 ocp_data;
2466
2467 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
2468 if (enable)
2469 ocp_data |= PWR_EN | PHASE2_EN;
2470 else
2471 ocp_data &= ~(PWR_EN | PHASE2_EN);
2472 ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
2473
2474 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
2475 ocp_data &= ~PCUT_STATUS;
2476 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
2477}
2478
hayeswang7daed8d2015-07-24 13:54:24 +08002479static bool rtl_can_wakeup(struct r8152 *tp)
2480{
2481 struct usb_device *udev = tp->udev;
2482
2483 return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP);
2484}
2485
hayeswang9a4be1b2014-02-18 21:49:07 +08002486static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
2487{
2488 if (enable) {
2489 u32 ocp_data;
2490
2491 __rtl_set_wol(tp, WAKE_ANY);
2492
2493 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2494
2495 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2496 ocp_data |= LINK_OFF_WAKE_EN;
2497 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2498
2499 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2500 } else {
hayeswangf95ae8a2016-06-30 15:33:35 +08002501 u32 ocp_data;
2502
hayeswang9a4be1b2014-02-18 21:49:07 +08002503 __rtl_set_wol(tp, tp->saved_wolopts);
hayeswangf95ae8a2016-06-30 15:33:35 +08002504
2505 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2506
2507 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2508 ocp_data &= ~LINK_OFF_WAKE_EN;
2509 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2510
2511 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
hayeswang2609af12016-07-05 16:11:46 +08002512 }
2513}
hayeswangf95ae8a2016-06-30 15:33:35 +08002514
hayeswang2609af12016-07-05 16:11:46 +08002515static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
2516{
2517 rtl_runtime_suspend_enable(tp, enable);
2518
2519 if (enable) {
2520 r8153_u1u2en(tp, false);
2521 r8153_u2p3en(tp, false);
2522 } else {
hayeswangb2143962015-07-24 13:54:23 +08002523 r8153_u2p3en(tp, true);
2524 r8153_u1u2en(tp, true);
hayeswang9a4be1b2014-02-18 21:49:07 +08002525 }
2526}
2527
hayeswang43499682014-02-18 21:48:58 +08002528static void r8153_teredo_off(struct r8152 *tp)
2529{
2530 u32 ocp_data;
2531
2532 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2533 ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK | OOB_TEREDO_EN);
2534 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2535
2536 ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
2537 ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
2538 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
2539}
2540
hayeswang93fe9b12016-06-16 10:55:18 +08002541static void rtl_reset_bmu(struct r8152 *tp)
2542{
2543 u32 ocp_data;
2544
2545 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_BMU_RESET);
2546 ocp_data &= ~(BMU_RESET_EP_IN | BMU_RESET_EP_OUT);
2547 ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
2548 ocp_data |= BMU_RESET_EP_IN | BMU_RESET_EP_OUT;
2549 ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
2550}
2551
hayeswangcda9fb02016-01-07 17:51:12 +08002552static void r8152_aldps_en(struct r8152 *tp, bool enable)
hayeswang43499682014-02-18 21:48:58 +08002553{
hayeswangcda9fb02016-01-07 17:51:12 +08002554 if (enable) {
2555 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
2556 LINKENA | DIS_SDSAVE);
2557 } else {
2558 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA |
2559 DIS_SDSAVE);
2560 msleep(20);
2561 }
hayeswang43499682014-02-18 21:48:58 +08002562}
2563
hayeswange6449532016-09-20 16:22:05 +08002564static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
2565{
2566 ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
2567 ocp_reg_write(tp, OCP_EEE_DATA, reg);
2568 ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
2569}
2570
2571static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
2572{
2573 u16 data;
2574
2575 r8152_mmd_indirect(tp, dev, reg);
2576 data = ocp_reg_read(tp, OCP_EEE_DATA);
2577 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
2578
2579 return data;
2580}
2581
2582static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
2583{
2584 r8152_mmd_indirect(tp, dev, reg);
2585 ocp_reg_write(tp, OCP_EEE_DATA, data);
2586 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
2587}
2588
2589static void r8152_eee_en(struct r8152 *tp, bool enable)
2590{
2591 u16 config1, config2, config3;
2592 u32 ocp_data;
2593
2594 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
2595 config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
2596 config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
2597 config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
2598
2599 if (enable) {
2600 ocp_data |= EEE_RX_EN | EEE_TX_EN;
2601 config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
2602 config1 |= sd_rise_time(1);
2603 config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
2604 config3 |= fast_snr(42);
2605 } else {
2606 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
2607 config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
2608 RX_QUIET_EN);
2609 config1 |= sd_rise_time(7);
2610 config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
2611 config3 |= fast_snr(511);
2612 }
2613
2614 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
2615 ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
2616 ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
2617 ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
2618}
2619
2620static void r8152b_enable_eee(struct r8152 *tp)
2621{
2622 r8152_eee_en(tp, true);
2623 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, MDIO_EEE_100TX);
2624}
2625
2626static void r8152b_enable_fc(struct r8152 *tp)
2627{
2628 u16 anar;
2629
2630 anar = r8152_mdio_read(tp, MII_ADVERTISE);
2631 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
2632 r8152_mdio_write(tp, MII_ADVERTISE, anar);
2633}
2634
hayeswangd70b1132014-09-19 15:17:18 +08002635static void rtl8152_disable(struct r8152 *tp)
2636{
hayeswangcda9fb02016-01-07 17:51:12 +08002637 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08002638 rtl_disable(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08002639 r8152_aldps_en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08002640}
2641
hayeswang43499682014-02-18 21:48:58 +08002642static void r8152b_hw_phy_cfg(struct r8152 *tp)
2643{
hayeswangef39df82016-09-20 16:22:07 +08002644 r8152b_enable_eee(tp);
2645 r8152_aldps_en(tp, true);
2646 r8152b_enable_fc(tp);
hayeswangf0cbe0a2014-02-18 21:49:03 +08002647
hayeswangaa66a5f2014-02-18 21:49:04 +08002648 set_bit(PHY_RESET, &tp->flags);
hayeswang43499682014-02-18 21:48:58 +08002649}
2650
hayeswangac718b62013-05-02 16:01:25 +00002651static void r8152b_exit_oob(struct r8152 *tp)
2652{
hayeswangdb8515e2014-03-06 15:07:16 +08002653 u32 ocp_data;
2654 int i;
hayeswangac718b62013-05-02 16:01:25 +00002655
2656 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2657 ocp_data &= ~RCR_ACPT_ALL;
2658 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2659
hayeswang00a5e362014-02-18 21:48:59 +08002660 rxdy_gated_en(tp, true);
hayeswangda9bd112014-02-18 21:49:08 +08002661 r8153_teredo_off(tp);
hayeswangac718b62013-05-02 16:01:25 +00002662 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2663 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
2664
2665 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2666 ocp_data &= ~NOW_IS_OOB;
2667 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2668
2669 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2670 ocp_data &= ~MCU_BORW_EN;
2671 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2672
2673 for (i = 0; i < 1000; i++) {
2674 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2675 if (ocp_data & LINK_LIST_READY)
2676 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002677 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002678 }
2679
2680 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2681 ocp_data |= RE_INIT_LL;
2682 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2683
2684 for (i = 0; i < 1000; i++) {
2685 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2686 if (ocp_data & LINK_LIST_READY)
2687 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002688 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002689 }
2690
2691 rtl8152_nic_reset(tp);
2692
2693 /* rx share fifo credit full threshold */
2694 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2695
hayeswanga3cc4652014-07-24 16:37:43 +08002696 if (tp->udev->speed == USB_SPEED_FULL ||
2697 tp->udev->speed == USB_SPEED_LOW) {
hayeswangac718b62013-05-02 16:01:25 +00002698 /* rx share fifo credit near full threshold */
2699 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2700 RXFIFO_THR2_FULL);
2701 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2702 RXFIFO_THR3_FULL);
2703 } else {
2704 /* rx share fifo credit near full threshold */
2705 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2706 RXFIFO_THR2_HIGH);
2707 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2708 RXFIFO_THR3_HIGH);
2709 }
2710
2711 /* TX share fifo free credit full threshold */
2712 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
2713
2714 ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
hayeswang8e1f51b2014-01-02 11:22:41 +08002715 ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
hayeswangac718b62013-05-02 16:01:25 +00002716 ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
2717 TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
2718
hayeswangc5554292014-09-12 10:43:11 +08002719 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswangac718b62013-05-02 16:01:25 +00002720
2721 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2722
2723 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2724 ocp_data |= TCR0_AUTO_FIFO;
2725 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2726}
2727
2728static void r8152b_enter_oob(struct r8152 *tp)
2729{
hayeswang45f4a192014-01-06 17:08:41 +08002730 u32 ocp_data;
2731 int i;
hayeswangac718b62013-05-02 16:01:25 +00002732
2733 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2734 ocp_data &= ~NOW_IS_OOB;
2735 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2736
2737 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
2738 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
2739 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
2740
hayeswangd70b1132014-09-19 15:17:18 +08002741 rtl_disable(tp);
hayeswangac718b62013-05-02 16:01:25 +00002742
2743 for (i = 0; i < 1000; i++) {
2744 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2745 if (ocp_data & LINK_LIST_READY)
2746 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002747 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002748 }
2749
2750 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2751 ocp_data |= RE_INIT_LL;
2752 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2753
2754 for (i = 0; i < 1000; i++) {
2755 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2756 if (ocp_data & LINK_LIST_READY)
2757 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002758 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002759 }
2760
2761 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2762
hayeswangc5554292014-09-12 10:43:11 +08002763 rtl_rx_vlan_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002764
2765 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2766 ocp_data |= ALDPS_PROXY_MODE;
2767 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2768
2769 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2770 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2771 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2772
hayeswang00a5e362014-02-18 21:48:59 +08002773 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002774
2775 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2776 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2777 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2778}
2779
hayeswange6449532016-09-20 16:22:05 +08002780static void r8153_aldps_en(struct r8152 *tp, bool enable)
2781{
2782 u16 data;
2783
2784 data = ocp_reg_read(tp, OCP_POWER_CFG);
2785 if (enable) {
2786 data |= EN_ALDPS;
2787 ocp_reg_write(tp, OCP_POWER_CFG, data);
2788 } else {
2789 data &= ~EN_ALDPS;
2790 ocp_reg_write(tp, OCP_POWER_CFG, data);
2791 msleep(20);
2792 }
2793}
2794
2795static void r8153_eee_en(struct r8152 *tp, bool enable)
2796{
2797 u32 ocp_data;
2798 u16 config;
2799
2800 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
2801 config = ocp_reg_read(tp, OCP_EEE_CFG);
2802
2803 if (enable) {
2804 ocp_data |= EEE_RX_EN | EEE_TX_EN;
2805 config |= EEE10_EN;
2806 } else {
2807 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
2808 config &= ~EEE10_EN;
2809 }
2810
2811 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
2812 ocp_reg_write(tp, OCP_EEE_CFG, config);
2813}
2814
hayeswang43779f82014-01-02 11:25:10 +08002815static void r8153_hw_phy_cfg(struct r8152 *tp)
2816{
2817 u32 ocp_data;
2818 u16 data;
2819
hayeswangd768c612016-09-20 16:22:09 +08002820 /* disable ALDPS before updating the PHY parameters */
2821 r8153_aldps_en(tp, false);
hayeswangfb02eb42015-07-22 15:27:41 +08002822
hayeswangd768c612016-09-20 16:22:09 +08002823 /* disable EEE before updating the PHY parameters */
2824 r8153_eee_en(tp, false);
2825 ocp_reg_write(tp, OCP_EEE_ADV, 0);
hayeswang43779f82014-01-02 11:25:10 +08002826
2827 if (tp->version == RTL_VER_03) {
2828 data = ocp_reg_read(tp, OCP_EEE_CFG);
2829 data &= ~CTAP_SHORT_EN;
2830 ocp_reg_write(tp, OCP_EEE_CFG, data);
2831 }
2832
2833 data = ocp_reg_read(tp, OCP_POWER_CFG);
2834 data |= EEE_CLKDIV_EN;
2835 ocp_reg_write(tp, OCP_POWER_CFG, data);
2836
2837 data = ocp_reg_read(tp, OCP_DOWN_SPEED);
2838 data |= EN_10M_BGOFF;
2839 ocp_reg_write(tp, OCP_DOWN_SPEED, data);
2840 data = ocp_reg_read(tp, OCP_POWER_CFG);
2841 data |= EN_10M_PLLOFF;
2842 ocp_reg_write(tp, OCP_POWER_CFG, data);
hayeswangb4d99de2015-01-19 17:02:46 +08002843 sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
hayeswang43779f82014-01-02 11:25:10 +08002844
2845 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
2846 ocp_data |= PFM_PWM_SWITCH;
2847 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
2848
hayeswangb4d99de2015-01-19 17:02:46 +08002849 /* Enable LPF corner auto tune */
2850 sram_write(tp, SRAM_LPF_CFG, 0xf70f);
hayeswang43779f82014-01-02 11:25:10 +08002851
hayeswangb4d99de2015-01-19 17:02:46 +08002852 /* Adjust 10M Amplitude */
2853 sram_write(tp, SRAM_10M_AMP1, 0x00af);
2854 sram_write(tp, SRAM_10M_AMP2, 0x0208);
hayeswangaa66a5f2014-02-18 21:49:04 +08002855
hayeswangaf0287e2016-09-20 16:22:08 +08002856 r8153_eee_en(tp, true);
2857 ocp_reg_write(tp, OCP_EEE_ADV, MDIO_EEE_1000T | MDIO_EEE_100TX);
2858
hayeswangef39df82016-09-20 16:22:07 +08002859 r8153_aldps_en(tp, true);
2860 r8152b_enable_fc(tp);
2861
hayeswangaa66a5f2014-02-18 21:49:04 +08002862 set_bit(PHY_RESET, &tp->flags);
hayeswang43779f82014-01-02 11:25:10 +08002863}
2864
hayeswang43779f82014-01-02 11:25:10 +08002865static void r8153_first_init(struct r8152 *tp)
2866{
2867 u32 ocp_data;
2868 int i;
2869
hayeswang00a5e362014-02-18 21:48:59 +08002870 rxdy_gated_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002871 r8153_teredo_off(tp);
2872
2873 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2874 ocp_data &= ~RCR_ACPT_ALL;
2875 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2876
hayeswang43779f82014-01-02 11:25:10 +08002877 rtl8152_nic_reset(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08002878 rtl_reset_bmu(tp);
hayeswang43779f82014-01-02 11:25:10 +08002879
2880 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2881 ocp_data &= ~NOW_IS_OOB;
2882 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2883
2884 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2885 ocp_data &= ~MCU_BORW_EN;
2886 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2887
2888 for (i = 0; i < 1000; i++) {
2889 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2890 if (ocp_data & LINK_LIST_READY)
2891 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002892 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002893 }
2894
2895 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2896 ocp_data |= RE_INIT_LL;
2897 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2898
2899 for (i = 0; i < 1000; i++) {
2900 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2901 if (ocp_data & LINK_LIST_READY)
2902 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002903 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002904 }
2905
hayeswangc5554292014-09-12 10:43:11 +08002906 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswang43779f82014-01-02 11:25:10 +08002907
hayeswang69b4b7a2014-07-10 10:58:54 +08002908 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
2909 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
hayeswang43779f82014-01-02 11:25:10 +08002910
2911 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2912 ocp_data |= TCR0_AUTO_FIFO;
2913 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2914
2915 rtl8152_nic_reset(tp);
2916
2917 /* rx share fifo credit full threshold */
2918 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2919 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
2920 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
2921 /* TX share fifo free credit full threshold */
2922 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
2923
hayeswang9629e3c2014-01-15 10:42:15 +08002924 /* rx aggregation */
hayeswang43779f82014-01-02 11:25:10 +08002925 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
hayeswange90fba82015-07-31 11:23:39 +08002926 ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
hayeswang43779f82014-01-02 11:25:10 +08002927 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
2928}
2929
2930static void r8153_enter_oob(struct r8152 *tp)
2931{
2932 u32 ocp_data;
2933 int i;
2934
2935 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2936 ocp_data &= ~NOW_IS_OOB;
2937 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2938
hayeswangd70b1132014-09-19 15:17:18 +08002939 rtl_disable(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08002940 rtl_reset_bmu(tp);
hayeswang43779f82014-01-02 11:25:10 +08002941
2942 for (i = 0; i < 1000; i++) {
2943 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2944 if (ocp_data & LINK_LIST_READY)
2945 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002946 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002947 }
2948
2949 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2950 ocp_data |= RE_INIT_LL;
2951 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2952
2953 for (i = 0; i < 1000; i++) {
2954 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2955 if (ocp_data & LINK_LIST_READY)
2956 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002957 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002958 }
2959
hayeswang69b4b7a2014-07-10 10:58:54 +08002960 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
hayeswang43779f82014-01-02 11:25:10 +08002961
hayeswang43779f82014-01-02 11:25:10 +08002962 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2963 ocp_data &= ~TEREDO_WAKE_MASK;
2964 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2965
hayeswangc5554292014-09-12 10:43:11 +08002966 rtl_rx_vlan_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002967
2968 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2969 ocp_data |= ALDPS_PROXY_MODE;
2970 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2971
2972 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2973 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2974 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2975
hayeswang00a5e362014-02-18 21:48:59 +08002976 rxdy_gated_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08002977
2978 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2979 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2980 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2981}
2982
hayeswangd70b1132014-09-19 15:17:18 +08002983static void rtl8153_disable(struct r8152 *tp)
2984{
hayeswangcda9fb02016-01-07 17:51:12 +08002985 r8153_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08002986 rtl_disable(tp);
hayeswang93fe9b12016-06-16 10:55:18 +08002987 rtl_reset_bmu(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08002988 r8153_aldps_en(tp, true);
hayeswangb2143962015-07-24 13:54:23 +08002989 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08002990}
2991
hayeswangac718b62013-05-02 16:01:25 +00002992static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
2993{
hayeswang43779f82014-01-02 11:25:10 +08002994 u16 bmcr, anar, gbcr;
hayeswangac718b62013-05-02 16:01:25 +00002995 int ret = 0;
2996
hayeswangac718b62013-05-02 16:01:25 +00002997 anar = r8152_mdio_read(tp, MII_ADVERTISE);
2998 anar &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
2999 ADVERTISE_100HALF | ADVERTISE_100FULL);
hayeswang43779f82014-01-02 11:25:10 +08003000 if (tp->mii.supports_gmii) {
3001 gbcr = r8152_mdio_read(tp, MII_CTRL1000);
3002 gbcr &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
3003 } else {
3004 gbcr = 0;
3005 }
hayeswangac718b62013-05-02 16:01:25 +00003006
3007 if (autoneg == AUTONEG_DISABLE) {
3008 if (speed == SPEED_10) {
3009 bmcr = 0;
3010 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3011 } else if (speed == SPEED_100) {
3012 bmcr = BMCR_SPEED100;
3013 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
hayeswang43779f82014-01-02 11:25:10 +08003014 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
3015 bmcr = BMCR_SPEED1000;
3016 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
hayeswangac718b62013-05-02 16:01:25 +00003017 } else {
3018 ret = -EINVAL;
3019 goto out;
3020 }
3021
3022 if (duplex == DUPLEX_FULL)
3023 bmcr |= BMCR_FULLDPLX;
3024 } else {
3025 if (speed == SPEED_10) {
3026 if (duplex == DUPLEX_FULL)
3027 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3028 else
3029 anar |= ADVERTISE_10HALF;
3030 } else if (speed == SPEED_100) {
3031 if (duplex == DUPLEX_FULL) {
3032 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3033 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
3034 } else {
3035 anar |= ADVERTISE_10HALF;
3036 anar |= ADVERTISE_100HALF;
3037 }
hayeswang43779f82014-01-02 11:25:10 +08003038 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
3039 if (duplex == DUPLEX_FULL) {
3040 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
3041 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
3042 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
3043 } else {
3044 anar |= ADVERTISE_10HALF;
3045 anar |= ADVERTISE_100HALF;
3046 gbcr |= ADVERTISE_1000HALF;
3047 }
hayeswangac718b62013-05-02 16:01:25 +00003048 } else {
3049 ret = -EINVAL;
3050 goto out;
3051 }
3052
3053 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
3054 }
3055
hayeswangfae56172016-06-16 14:08:29 +08003056 if (test_and_clear_bit(PHY_RESET, &tp->flags))
hayeswangaa66a5f2014-02-18 21:49:04 +08003057 bmcr |= BMCR_RESET;
3058
hayeswang43779f82014-01-02 11:25:10 +08003059 if (tp->mii.supports_gmii)
3060 r8152_mdio_write(tp, MII_CTRL1000, gbcr);
3061
hayeswangac718b62013-05-02 16:01:25 +00003062 r8152_mdio_write(tp, MII_ADVERTISE, anar);
3063 r8152_mdio_write(tp, MII_BMCR, bmcr);
3064
hayeswangfae56172016-06-16 14:08:29 +08003065 if (bmcr & BMCR_RESET) {
hayeswangaa66a5f2014-02-18 21:49:04 +08003066 int i;
3067
hayeswangaa66a5f2014-02-18 21:49:04 +08003068 for (i = 0; i < 50; i++) {
3069 msleep(20);
3070 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
3071 break;
3072 }
3073 }
3074
hayeswangac718b62013-05-02 16:01:25 +00003075out:
hayeswangac718b62013-05-02 16:01:25 +00003076 return ret;
3077}
3078
hayeswangd70b1132014-09-19 15:17:18 +08003079static void rtl8152_up(struct r8152 *tp)
3080{
3081 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3082 return;
3083
hayeswangcda9fb02016-01-07 17:51:12 +08003084 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08003085 r8152b_exit_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08003086 r8152_aldps_en(tp, true);
hayeswangd70b1132014-09-19 15:17:18 +08003087}
3088
hayeswangac718b62013-05-02 16:01:25 +00003089static void rtl8152_down(struct r8152 *tp)
3090{
hayeswang68714382014-04-11 17:54:31 +08003091 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
3092 rtl_drop_queued_tx(tp);
3093 return;
3094 }
3095
hayeswang00a5e362014-02-18 21:48:59 +08003096 r8152_power_cut_en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08003097 r8152_aldps_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00003098 r8152b_enter_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08003099 r8152_aldps_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00003100}
3101
hayeswangd70b1132014-09-19 15:17:18 +08003102static void rtl8153_up(struct r8152 *tp)
3103{
3104 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3105 return;
3106
hayeswangb2143962015-07-24 13:54:23 +08003107 r8153_u1u2en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08003108 r8153_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08003109 r8153_first_init(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08003110 r8153_aldps_en(tp, true);
hayeswangb2143962015-07-24 13:54:23 +08003111 r8153_u2p3en(tp, true);
3112 r8153_u1u2en(tp, true);
3113 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08003114}
3115
hayeswang43779f82014-01-02 11:25:10 +08003116static void rtl8153_down(struct r8152 *tp)
3117{
hayeswang68714382014-04-11 17:54:31 +08003118 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
3119 rtl_drop_queued_tx(tp);
3120 return;
3121 }
3122
hayeswangb9702722014-02-18 21:49:00 +08003123 r8153_u1u2en(tp, false);
hayeswangb2143962015-07-24 13:54:23 +08003124 r8153_u2p3en(tp, false);
hayeswangb9702722014-02-18 21:49:00 +08003125 r8153_power_cut_en(tp, false);
hayeswangcda9fb02016-01-07 17:51:12 +08003126 r8153_aldps_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003127 r8153_enter_oob(tp);
hayeswangcda9fb02016-01-07 17:51:12 +08003128 r8153_aldps_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003129}
3130
hayeswang2dd49e02015-09-07 11:57:44 +08003131static bool rtl8152_in_nway(struct r8152 *tp)
3132{
3133 u16 nway_state;
3134
3135 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, 0x2000);
3136 tp->ocp_base = 0x2000;
3137 ocp_write_byte(tp, MCU_TYPE_PLA, 0xb014, 0x4c); /* phy state */
3138 nway_state = ocp_read_word(tp, MCU_TYPE_PLA, 0xb01a);
3139
3140 /* bit 15: TXDIS_STATE, bit 14: ABD_STATE */
3141 if (nway_state & 0xc000)
3142 return false;
3143 else
3144 return true;
3145}
3146
3147static bool rtl8153_in_nway(struct r8152 *tp)
3148{
3149 u16 phy_state = ocp_reg_read(tp, OCP_PHY_STATE) & 0xff;
3150
3151 if (phy_state == TXDIS_STATE || phy_state == ABD_STATE)
3152 return false;
3153 else
3154 return true;
3155}
3156
hayeswangac718b62013-05-02 16:01:25 +00003157static void set_carrier(struct r8152 *tp)
3158{
3159 struct net_device *netdev = tp->netdev;
3160 u8 speed;
3161
3162 speed = rtl8152_get_speed(tp);
3163
3164 if (speed & LINK_STATUS) {
hayeswang51d979f2015-02-06 11:30:47 +08003165 if (!netif_carrier_ok(netdev)) {
hayeswangc81229c2014-01-02 11:22:42 +08003166 tp->rtl_ops.enable(tp);
hayeswangac718b62013-05-02 16:01:25 +00003167 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
hayeswange9ace992017-01-26 09:38:32 +08003168 netif_stop_queue(netdev);
hayeswang41cec842015-07-24 13:54:25 +08003169 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003170 netif_carrier_on(netdev);
hayeswangaa2e0922015-01-09 10:26:35 +08003171 rtl_start_rx(tp);
hayeswang41cec842015-07-24 13:54:25 +08003172 napi_enable(&tp->napi);
hayeswange9ace992017-01-26 09:38:32 +08003173 netif_wake_queue(netdev);
3174 netif_info(tp, link, netdev, "carrier on\n");
hayeswang60d59822017-03-23 19:14:19 +08003175 } else if (netif_queue_stopped(netdev) &&
3176 skb_queue_len(&tp->tx_queue) < tp->tx_qlen) {
3177 netif_wake_queue(netdev);
hayeswangac718b62013-05-02 16:01:25 +00003178 }
3179 } else {
hayeswang51d979f2015-02-06 11:30:47 +08003180 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00003181 netif_carrier_off(netdev);
hayeswangd823ab62015-01-12 12:06:23 +08003182 napi_disable(&tp->napi);
hayeswangc81229c2014-01-02 11:22:42 +08003183 tp->rtl_ops.disable(tp);
hayeswangd823ab62015-01-12 12:06:23 +08003184 napi_enable(&tp->napi);
hayeswange9ace992017-01-26 09:38:32 +08003185 netif_info(tp, link, netdev, "carrier off\n");
hayeswangac718b62013-05-02 16:01:25 +00003186 }
3187 }
hayeswangac718b62013-05-02 16:01:25 +00003188}
3189
3190static void rtl_work_func_t(struct work_struct *work)
3191{
3192 struct r8152 *tp = container_of(work, struct r8152, schedule.work);
3193
hayeswanga1f83fe2014-11-12 10:05:05 +08003194 /* If the device is unplugged or !netif_running(), the workqueue
3195 * doesn't need to wake the device, and could return directly.
3196 */
3197 if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
3198 return;
3199
hayeswang9a4be1b2014-02-18 21:49:07 +08003200 if (usb_autopm_get_interface(tp->intf) < 0)
3201 return;
3202
hayeswangac718b62013-05-02 16:01:25 +00003203 if (!test_bit(WORK_ENABLE, &tp->flags))
3204 goto out1;
3205
hayeswangb5403272014-10-09 18:00:26 +08003206 if (!mutex_trylock(&tp->control)) {
3207 schedule_delayed_work(&tp->schedule, 0);
3208 goto out1;
3209 }
3210
hayeswang216a8342016-01-07 17:51:11 +08003211 if (test_and_clear_bit(RTL8152_LINK_CHG, &tp->flags))
hayeswang40a82912013-08-14 20:54:40 +08003212 set_carrier(tp);
hayeswangac718b62013-05-02 16:01:25 +00003213
hayeswang216a8342016-01-07 17:51:11 +08003214 if (test_and_clear_bit(RTL8152_SET_RX_MODE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00003215 _rtl8152_set_rx_mode(tp->netdev);
3216
hayeswangd823ab62015-01-12 12:06:23 +08003217 /* don't schedule napi before linking */
hayeswang216a8342016-01-07 17:51:11 +08003218 if (test_and_clear_bit(SCHEDULE_NAPI, &tp->flags) &&
3219 netif_carrier_ok(tp->netdev))
hayeswangd823ab62015-01-12 12:06:23 +08003220 napi_schedule(&tp->napi);
hayeswangaa66a5f2014-02-18 21:49:04 +08003221
hayeswangb5403272014-10-09 18:00:26 +08003222 mutex_unlock(&tp->control);
3223
hayeswangac718b62013-05-02 16:01:25 +00003224out1:
hayeswang9a4be1b2014-02-18 21:49:07 +08003225 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00003226}
3227
hayeswanga028a9e2016-06-13 17:49:36 +08003228static void rtl_hw_phy_work_func_t(struct work_struct *work)
3229{
3230 struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work);
3231
3232 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3233 return;
3234
3235 if (usb_autopm_get_interface(tp->intf) < 0)
3236 return;
3237
3238 mutex_lock(&tp->control);
3239
3240 tp->rtl_ops.hw_phy_cfg(tp);
3241
hayeswangaa7e26b2016-06-13 17:49:38 +08003242 rtl8152_set_speed(tp, tp->autoneg, tp->speed, tp->duplex);
hayeswang9d21c0d2016-06-13 17:49:37 +08003243
hayeswanga028a9e2016-06-13 17:49:36 +08003244 mutex_unlock(&tp->control);
3245
3246 usb_autopm_put_interface(tp->intf);
3247}
3248
hayeswang5ee3c602016-01-07 17:12:17 +08003249#ifdef CONFIG_PM_SLEEP
3250static int rtl_notifier(struct notifier_block *nb, unsigned long action,
3251 void *data)
3252{
3253 struct r8152 *tp = container_of(nb, struct r8152, pm_notifier);
3254
3255 switch (action) {
3256 case PM_HIBERNATION_PREPARE:
3257 case PM_SUSPEND_PREPARE:
3258 usb_autopm_get_interface(tp->intf);
3259 break;
3260
3261 case PM_POST_HIBERNATION:
3262 case PM_POST_SUSPEND:
3263 usb_autopm_put_interface(tp->intf);
3264 break;
3265
3266 case PM_POST_RESTORE:
3267 case PM_RESTORE_PREPARE:
3268 default:
3269 break;
3270 }
3271
3272 return NOTIFY_DONE;
3273}
3274#endif
3275
hayeswangac718b62013-05-02 16:01:25 +00003276static int rtl8152_open(struct net_device *netdev)
3277{
3278 struct r8152 *tp = netdev_priv(netdev);
3279 int res = 0;
3280
hayeswang7e9da482014-02-18 21:49:05 +08003281 res = alloc_all_mem(tp);
3282 if (res)
3283 goto out;
3284
hayeswang9a4be1b2014-02-18 21:49:07 +08003285 res = usb_autopm_get_interface(tp->intf);
Guenter Roeckca0a7532016-11-09 19:51:25 -08003286 if (res < 0)
3287 goto out_free;
hayeswang9a4be1b2014-02-18 21:49:07 +08003288
hayeswangb5403272014-10-09 18:00:26 +08003289 mutex_lock(&tp->control);
3290
hayeswang7e9da482014-02-18 21:49:05 +08003291 tp->rtl_ops.up(tp);
3292
hayeswang40a82912013-08-14 20:54:40 +08003293 netif_carrier_off(netdev);
hayeswangac718b62013-05-02 16:01:25 +00003294 netif_start_queue(netdev);
3295 set_bit(WORK_ENABLE, &tp->flags);
hayeswangdb8515e2014-03-06 15:07:16 +08003296
hayeswang3d55f442014-02-06 11:55:48 +08003297 res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3298 if (res) {
3299 if (res == -ENODEV)
3300 netif_device_detach(tp->netdev);
3301 netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
3302 res);
Guenter Roeckca0a7532016-11-09 19:51:25 -08003303 goto out_unlock;
hayeswang3d55f442014-02-06 11:55:48 +08003304 }
Guenter Roeckca0a7532016-11-09 19:51:25 -08003305 napi_enable(&tp->napi);
hayeswang3d55f442014-02-06 11:55:48 +08003306
hayeswangb5403272014-10-09 18:00:26 +08003307 mutex_unlock(&tp->control);
3308
hayeswang9a4be1b2014-02-18 21:49:07 +08003309 usb_autopm_put_interface(tp->intf);
hayeswang5ee3c602016-01-07 17:12:17 +08003310#ifdef CONFIG_PM_SLEEP
3311 tp->pm_notifier.notifier_call = rtl_notifier;
3312 register_pm_notifier(&tp->pm_notifier);
3313#endif
Guenter Roeckca0a7532016-11-09 19:51:25 -08003314 return 0;
hayeswangac718b62013-05-02 16:01:25 +00003315
Guenter Roeckca0a7532016-11-09 19:51:25 -08003316out_unlock:
3317 mutex_unlock(&tp->control);
3318 usb_autopm_put_interface(tp->intf);
3319out_free:
3320 free_all_mem(tp);
hayeswang7e9da482014-02-18 21:49:05 +08003321out:
hayeswangac718b62013-05-02 16:01:25 +00003322 return res;
3323}
3324
3325static int rtl8152_close(struct net_device *netdev)
3326{
3327 struct r8152 *tp = netdev_priv(netdev);
3328 int res = 0;
3329
hayeswang5ee3c602016-01-07 17:12:17 +08003330#ifdef CONFIG_PM_SLEEP
3331 unregister_pm_notifier(&tp->pm_notifier);
3332#endif
Jiri Slaby3e056362018-06-25 09:26:27 +02003333 if (!test_bit(RTL8152_UNPLUG, &tp->flags))
3334 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003335 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang3d55f442014-02-06 11:55:48 +08003336 usb_kill_urb(tp->intr_urb);
hayeswangac718b62013-05-02 16:01:25 +00003337 cancel_delayed_work_sync(&tp->schedule);
3338 netif_stop_queue(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003339
3340 res = usb_autopm_get_interface(tp->intf);
hayeswang53543db2015-02-06 11:30:48 +08003341 if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003342 rtl_drop_queued_tx(tp);
hayeswangd823ab62015-01-12 12:06:23 +08003343 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003344 } else {
hayeswangb5403272014-10-09 18:00:26 +08003345 mutex_lock(&tp->control);
3346
hayeswang9a4be1b2014-02-18 21:49:07 +08003347 tp->rtl_ops.down(tp);
hayeswangb5403272014-10-09 18:00:26 +08003348
3349 mutex_unlock(&tp->control);
3350
hayeswang9a4be1b2014-02-18 21:49:07 +08003351 usb_autopm_put_interface(tp->intf);
3352 }
hayeswangac718b62013-05-02 16:01:25 +00003353
hayeswang7e9da482014-02-18 21:49:05 +08003354 free_all_mem(tp);
3355
hayeswangac718b62013-05-02 16:01:25 +00003356 return res;
3357}
3358
hayeswang4f1d4d52014-03-11 16:24:19 +08003359static void rtl_tally_reset(struct r8152 *tp)
3360{
3361 u32 ocp_data;
3362
3363 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
3364 ocp_data |= TALLY_RESET;
3365 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
3366}
3367
hayeswangac718b62013-05-02 16:01:25 +00003368static void r8152b_init(struct r8152 *tp)
3369{
hayeswangebc2ec42013-08-14 20:54:38 +08003370 u32 ocp_data;
hayeswang2dd436d2016-09-20 16:22:06 +08003371 u16 data;
hayeswangac718b62013-05-02 16:01:25 +00003372
hayeswang68714382014-04-11 17:54:31 +08003373 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3374 return;
3375
hayeswang2dd436d2016-09-20 16:22:06 +08003376 data = r8152_mdio_read(tp, MII_BMCR);
3377 if (data & BMCR_PDOWN) {
3378 data &= ~BMCR_PDOWN;
3379 r8152_mdio_write(tp, MII_BMCR, data);
3380 }
3381
hayeswangcda9fb02016-01-07 17:51:12 +08003382 r8152_aldps_en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08003383
hayeswangac718b62013-05-02 16:01:25 +00003384 if (tp->version == RTL_VER_01) {
3385 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3386 ocp_data &= ~LED_MODE_MASK;
3387 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3388 }
3389
hayeswang00a5e362014-02-18 21:48:59 +08003390 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00003391
hayeswangac718b62013-05-02 16:01:25 +00003392 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
3393 ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
3394 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
3395 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
3396 ocp_data &= ~MCU_CLK_RATIO_MASK;
3397 ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
3398 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
3399 ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
3400 SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
3401 ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
3402
hayeswang4f1d4d52014-03-11 16:24:19 +08003403 rtl_tally_reset(tp);
hayeswangac718b62013-05-02 16:01:25 +00003404
hayeswangebc2ec42013-08-14 20:54:38 +08003405 /* enable rx aggregation */
hayeswangac718b62013-05-02 16:01:25 +00003406 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
hayeswange90fba82015-07-31 11:23:39 +08003407 ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
hayeswangac718b62013-05-02 16:01:25 +00003408 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
3409}
3410
hayeswang43779f82014-01-02 11:25:10 +08003411static void r8153_init(struct r8152 *tp)
3412{
3413 u32 ocp_data;
hayeswang2dd436d2016-09-20 16:22:06 +08003414 u16 data;
hayeswang43779f82014-01-02 11:25:10 +08003415 int i;
3416
hayeswang68714382014-04-11 17:54:31 +08003417 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3418 return;
3419
hayeswangb9702722014-02-18 21:49:00 +08003420 r8153_u1u2en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003421
3422 for (i = 0; i < 500; i++) {
3423 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
3424 AUTOLOAD_DONE)
3425 break;
You-Sheng Yangf120a402020-02-26 23:37:10 +08003426
hayeswang43779f82014-01-02 11:25:10 +08003427 msleep(20);
You-Sheng Yangf120a402020-02-26 23:37:10 +08003428 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3429 break;
hayeswang43779f82014-01-02 11:25:10 +08003430 }
3431
3432 for (i = 0; i < 500; i++) {
3433 ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3434 if (ocp_data == PHY_STAT_LAN_ON || ocp_data == PHY_STAT_PWRDN)
3435 break;
3436 msleep(20);
3437 }
3438
hayeswang2dd436d2016-09-20 16:22:06 +08003439 if (tp->version == RTL_VER_03 || tp->version == RTL_VER_04 ||
3440 tp->version == RTL_VER_05)
3441 ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
3442
3443 data = r8152_mdio_read(tp, MII_BMCR);
3444 if (data & BMCR_PDOWN) {
3445 data &= ~BMCR_PDOWN;
3446 r8152_mdio_write(tp, MII_BMCR, data);
3447 }
3448
3449 for (i = 0; i < 500; i++) {
3450 ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3451 if (ocp_data == PHY_STAT_LAN_ON)
3452 break;
You-Sheng Yangf120a402020-02-26 23:37:10 +08003453
hayeswang2dd436d2016-09-20 16:22:06 +08003454 msleep(20);
You-Sheng Yangf120a402020-02-26 23:37:10 +08003455 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3456 break;
hayeswang2dd436d2016-09-20 16:22:06 +08003457 }
3458
hayeswangb2143962015-07-24 13:54:23 +08003459 usb_disable_lpm(tp->udev);
hayeswangb9702722014-02-18 21:49:00 +08003460 r8153_u2p3en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003461
hayeswang65bab842015-02-12 16:20:46 +08003462 if (tp->version == RTL_VER_04) {
3463 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
3464 ocp_data &= ~pwd_dn_scale_mask;
3465 ocp_data |= pwd_dn_scale(96);
3466 ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
3467
3468 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
3469 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
3470 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
3471 } else if (tp->version == RTL_VER_05) {
3472 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
3473 ocp_data &= ~ECM_ALDPS;
3474 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
3475
3476 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3477 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3478 ocp_data &= ~DYNAMIC_BURST;
3479 else
3480 ocp_data |= DYNAMIC_BURST;
3481 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
hayeswangfb02eb42015-07-22 15:27:41 +08003482 } else if (tp->version == RTL_VER_06) {
3483 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3484 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3485 ocp_data &= ~DYNAMIC_BURST;
3486 else
3487 ocp_data |= DYNAMIC_BURST;
3488 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
hayeswang65bab842015-02-12 16:20:46 +08003489 }
3490
3491 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
3492 ocp_data |= EP4_FULL_FC;
3493 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
3494
hayeswang43779f82014-01-02 11:25:10 +08003495 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
3496 ocp_data &= ~TIMER11_EN;
3497 ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
3498
hayeswang43779f82014-01-02 11:25:10 +08003499 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3500 ocp_data &= ~LED_MODE_MASK;
3501 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3502
hayeswang65bab842015-02-12 16:20:46 +08003503 ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
Oliver Neukum2b84af94a2016-05-02 13:06:14 +02003504 if (tp->version == RTL_VER_04 && tp->udev->speed < USB_SPEED_SUPER)
hayeswang43779f82014-01-02 11:25:10 +08003505 ocp_data |= LPM_TIMER_500MS;
hayeswang34203e22015-02-06 11:30:46 +08003506 else
3507 ocp_data |= LPM_TIMER_500US;
hayeswang43779f82014-01-02 11:25:10 +08003508 ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
3509
3510 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
3511 ocp_data &= ~SEN_VAL_MASK;
3512 ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
3513 ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
3514
hayeswang65bab842015-02-12 16:20:46 +08003515 ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
3516
hayeswangb9702722014-02-18 21:49:00 +08003517 r8153_power_cut_en(tp, false);
3518 r8153_u1u2en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003519
hayeswang4e384ac2016-06-16 10:55:17 +08003520 /* MAC clock speed down */
3521 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, 0);
3522 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, 0);
3523 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, 0);
3524 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4, 0);
hayeswang43779f82014-01-02 11:25:10 +08003525
hayeswang4f1d4d52014-03-11 16:24:19 +08003526 rtl_tally_reset(tp);
hayeswangb2143962015-07-24 13:54:23 +08003527 r8153_u2p3en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003528}
3529
hayeswange5011392015-07-29 20:39:08 +08003530static int rtl8152_pre_reset(struct usb_interface *intf)
3531{
3532 struct r8152 *tp = usb_get_intfdata(intf);
3533 struct net_device *netdev;
3534
3535 if (!tp)
3536 return 0;
3537
3538 netdev = tp->netdev;
3539 if (!netif_running(netdev))
3540 return 0;
3541
hayeswange9ace992017-01-26 09:38:32 +08003542 netif_stop_queue(netdev);
hayeswange5011392015-07-29 20:39:08 +08003543 napi_disable(&tp->napi);
3544 clear_bit(WORK_ENABLE, &tp->flags);
3545 usb_kill_urb(tp->intr_urb);
3546 cancel_delayed_work_sync(&tp->schedule);
3547 if (netif_carrier_ok(netdev)) {
hayeswange5011392015-07-29 20:39:08 +08003548 mutex_lock(&tp->control);
3549 tp->rtl_ops.disable(tp);
3550 mutex_unlock(&tp->control);
3551 }
3552
3553 return 0;
3554}
3555
3556static int rtl8152_post_reset(struct usb_interface *intf)
3557{
3558 struct r8152 *tp = usb_get_intfdata(intf);
3559 struct net_device *netdev;
3560
3561 if (!tp)
3562 return 0;
3563
3564 netdev = tp->netdev;
3565 if (!netif_running(netdev))
3566 return 0;
3567
3568 set_bit(WORK_ENABLE, &tp->flags);
3569 if (netif_carrier_ok(netdev)) {
3570 mutex_lock(&tp->control);
3571 tp->rtl_ops.enable(tp);
hayeswangc1a71062017-01-20 14:33:55 +08003572 rtl_start_rx(tp);
hayeswange5011392015-07-29 20:39:08 +08003573 rtl8152_set_rx_mode(netdev);
3574 mutex_unlock(&tp->control);
hayeswange5011392015-07-29 20:39:08 +08003575 }
3576
3577 napi_enable(&tp->napi);
hayeswange9ace992017-01-26 09:38:32 +08003578 netif_wake_queue(netdev);
hayeswangc1a71062017-01-20 14:33:55 +08003579 usb_submit_urb(tp->intr_urb, GFP_KERNEL);
hayeswange5011392015-07-29 20:39:08 +08003580
hayeswang4242f0b2017-01-26 09:38:34 +08003581 if (!list_empty(&tp->rx_done))
3582 napi_schedule(&tp->napi);
3583
hayeswange5011392015-07-29 20:39:08 +08003584 return 0;
hayeswangac718b62013-05-02 16:01:25 +00003585}
3586
hayeswang2dd49e02015-09-07 11:57:44 +08003587static bool delay_autosuspend(struct r8152 *tp)
3588{
3589 bool sw_linking = !!netif_carrier_ok(tp->netdev);
3590 bool hw_linking = !!(rtl8152_get_speed(tp) & LINK_STATUS);
3591
3592 /* This means a linking change occurs and the driver doesn't detect it,
3593 * yet. If the driver has disabled tx/rx and hw is linking on, the
3594 * device wouldn't wake up by receiving any packet.
3595 */
3596 if (work_busy(&tp->schedule.work) || sw_linking != hw_linking)
3597 return true;
3598
3599 /* If the linking down is occurred by nway, the device may miss the
3600 * linking change event. And it wouldn't wake when linking on.
3601 */
3602 if (!sw_linking && tp->rtl_ops.in_nway(tp))
3603 return true;
hayeswang37b27b22017-01-23 14:18:43 +08003604 else if (!skb_queue_empty(&tp->tx_queue))
3605 return true;
hayeswang2dd49e02015-09-07 11:57:44 +08003606 else
3607 return false;
3608}
3609
hayeswangc8a89b42017-01-10 17:04:06 +08003610static int rtl8152_rumtime_suspend(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00003611{
hayeswang6cc69f22014-10-17 16:55:08 +08003612 struct net_device *netdev = tp->netdev;
3613 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +00003614
hayeswang993ba7f2017-01-26 09:38:31 +08003615 set_bit(SELECTIVE_SUSPEND, &tp->flags);
3616 smp_mb__after_atomic();
3617
hayeswangc8a89b42017-01-10 17:04:06 +08003618 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswang66f24d62017-01-10 17:04:07 +08003619 u32 rcr = 0;
3620
hayeswangc8a89b42017-01-10 17:04:06 +08003621 if (delay_autosuspend(tp)) {
hayeswang993ba7f2017-01-26 09:38:31 +08003622 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3623 smp_mb__after_atomic();
hayeswang6cc69f22014-10-17 16:55:08 +08003624 ret = -EBUSY;
3625 goto out1;
3626 }
hayeswangac718b62013-05-02 16:01:25 +00003627
hayeswang66f24d62017-01-10 17:04:07 +08003628 if (netif_carrier_ok(netdev)) {
3629 u32 ocp_data;
3630
3631 rcr = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
3632 ocp_data = rcr & ~RCR_ACPT_ALL;
3633 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
3634 rxdy_gated_en(tp, true);
3635 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA,
3636 PLA_OOB_CTRL);
3637 if (!(ocp_data & RXFIFO_EMPTY)) {
3638 rxdy_gated_en(tp, false);
3639 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
hayeswang993ba7f2017-01-26 09:38:31 +08003640 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3641 smp_mb__after_atomic();
hayeswang66f24d62017-01-10 17:04:07 +08003642 ret = -EBUSY;
3643 goto out1;
3644 }
3645 }
3646
hayeswangc8a89b42017-01-10 17:04:06 +08003647 clear_bit(WORK_ENABLE, &tp->flags);
3648 usb_kill_urb(tp->intr_urb);
hayeswang66f24d62017-01-10 17:04:07 +08003649
hayeswangc8a89b42017-01-10 17:04:06 +08003650 tp->rtl_ops.autosuspend_en(tp, true);
hayeswang66f24d62017-01-10 17:04:07 +08003651
3652 if (netif_carrier_ok(netdev)) {
3653 napi_disable(&tp->napi);
3654 rtl_stop_rx(tp);
3655 rxdy_gated_en(tp, false);
3656 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
3657 napi_enable(&tp->napi);
3658 }
hayeswang6cc69f22014-10-17 16:55:08 +08003659 }
3660
hayeswangc8a89b42017-01-10 17:04:06 +08003661out1:
3662 return ret;
3663}
3664
3665static int rtl8152_system_suspend(struct r8152 *tp)
3666{
3667 struct net_device *netdev = tp->netdev;
3668 int ret = 0;
3669
3670 netif_device_detach(netdev);
3671
hayeswange3bd1a82014-10-29 11:12:17 +08003672 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswangac718b62013-05-02 16:01:25 +00003673 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08003674 usb_kill_urb(tp->intr_urb);
hayeswangd823ab62015-01-12 12:06:23 +08003675 napi_disable(&tp->napi);
hayeswangc8a89b42017-01-10 17:04:06 +08003676 cancel_delayed_work_sync(&tp->schedule);
3677 tp->rtl_ops.down(tp);
hayeswangd823ab62015-01-12 12:06:23 +08003678 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003679 }
hayeswangc8a89b42017-01-10 17:04:06 +08003680
3681 return ret;
3682}
3683
3684static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
3685{
3686 struct r8152 *tp = usb_get_intfdata(intf);
3687 int ret;
3688
3689 mutex_lock(&tp->control);
3690
3691 if (PMSG_IS_AUTO(message))
3692 ret = rtl8152_rumtime_suspend(tp);
3693 else
3694 ret = rtl8152_system_suspend(tp);
3695
hayeswangb5403272014-10-09 18:00:26 +08003696 mutex_unlock(&tp->control);
3697
hayeswang6cc69f22014-10-17 16:55:08 +08003698 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003699}
3700
3701static int rtl8152_resume(struct usb_interface *intf)
3702{
3703 struct r8152 *tp = usb_get_intfdata(intf);
3704
hayeswangb5403272014-10-09 18:00:26 +08003705 mutex_lock(&tp->control);
3706
hayeswang9a4be1b2014-02-18 21:49:07 +08003707 if (!test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3708 tp->rtl_ops.init(tp);
hayeswanga028a9e2016-06-13 17:49:36 +08003709 queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
hayeswang9a4be1b2014-02-18 21:49:07 +08003710 netif_device_attach(tp->netdev);
3711 }
3712
Peter Wu90186af2015-12-08 12:17:42 +01003713 if (netif_running(tp->netdev) && tp->netdev->flags & IFF_UP) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003714 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
hayeswang2609af12016-07-05 16:11:46 +08003715 tp->rtl_ops.autosuspend_en(tp, false);
hayeswang41cec842015-07-24 13:54:25 +08003716 napi_disable(&tp->napi);
hayeswang445f7f42014-09-23 16:31:47 +08003717 set_bit(WORK_ENABLE, &tp->flags);
hayeswang60d59822017-03-23 19:14:19 +08003718
3719 if (netif_carrier_ok(tp->netdev)) {
3720 if (rtl8152_get_speed(tp) & LINK_STATUS) {
3721 rtl_start_rx(tp);
3722 } else {
3723 netif_carrier_off(tp->netdev);
3724 tp->rtl_ops.disable(tp);
3725 netif_info(tp, link, tp->netdev,
3726 "linking down\n");
3727 }
3728 }
3729
hayeswang41cec842015-07-24 13:54:25 +08003730 napi_enable(&tp->napi);
hayeswang993ba7f2017-01-26 09:38:31 +08003731 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3732 smp_mb__after_atomic();
hayeswang4242f0b2017-01-26 09:38:34 +08003733 if (!list_empty(&tp->rx_done))
3734 napi_schedule(&tp->napi);
hayeswang9a4be1b2014-02-18 21:49:07 +08003735 } else {
3736 tp->rtl_ops.up(tp);
hayeswang445f7f42014-09-23 16:31:47 +08003737 netif_carrier_off(tp->netdev);
3738 set_bit(WORK_ENABLE, &tp->flags);
hayeswang9a4be1b2014-02-18 21:49:07 +08003739 }
hayeswang40a82912013-08-14 20:54:40 +08003740 usb_submit_urb(tp->intr_urb, GFP_KERNEL);
hayeswang923e1ee2014-10-29 11:12:15 +08003741 } else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
Peter Wu90186af2015-12-08 12:17:42 +01003742 if (tp->netdev->flags & IFF_UP)
hayeswang2609af12016-07-05 16:11:46 +08003743 tp->rtl_ops.autosuspend_en(tp, false);
hayeswang923e1ee2014-10-29 11:12:15 +08003744 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswangac718b62013-05-02 16:01:25 +00003745 }
3746
hayeswangb5403272014-10-09 18:00:26 +08003747 mutex_unlock(&tp->control);
3748
hayeswangac718b62013-05-02 16:01:25 +00003749 return 0;
3750}
3751
hayeswang7ec25412016-01-04 14:38:46 +08003752static int rtl8152_reset_resume(struct usb_interface *intf)
3753{
3754 struct r8152 *tp = usb_get_intfdata(intf);
3755
3756 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
3757 return rtl8152_resume(intf);
3758}
3759
hayeswang21ff2e82014-02-18 21:49:06 +08003760static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3761{
3762 struct r8152 *tp = netdev_priv(dev);
3763
hayeswang9a4be1b2014-02-18 21:49:07 +08003764 if (usb_autopm_get_interface(tp->intf) < 0)
3765 return;
3766
hayeswang7daed8d2015-07-24 13:54:24 +08003767 if (!rtl_can_wakeup(tp)) {
3768 wol->supported = 0;
3769 wol->wolopts = 0;
3770 } else {
3771 mutex_lock(&tp->control);
3772 wol->supported = WAKE_ANY;
3773 wol->wolopts = __rtl_get_wol(tp);
3774 mutex_unlock(&tp->control);
3775 }
hayeswangb5403272014-10-09 18:00:26 +08003776
hayeswang9a4be1b2014-02-18 21:49:07 +08003777 usb_autopm_put_interface(tp->intf);
hayeswang21ff2e82014-02-18 21:49:06 +08003778}
3779
3780static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3781{
3782 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003783 int ret;
3784
hayeswang7daed8d2015-07-24 13:54:24 +08003785 if (!rtl_can_wakeup(tp))
3786 return -EOPNOTSUPP;
3787
Florian Fainelliabbb3f12018-09-28 16:18:54 -07003788 if (wol->wolopts & ~WAKE_ANY)
3789 return -EINVAL;
3790
hayeswang9a4be1b2014-02-18 21:49:07 +08003791 ret = usb_autopm_get_interface(tp->intf);
3792 if (ret < 0)
3793 goto out_set_wol;
hayeswang21ff2e82014-02-18 21:49:06 +08003794
hayeswangb5403272014-10-09 18:00:26 +08003795 mutex_lock(&tp->control);
3796
hayeswang21ff2e82014-02-18 21:49:06 +08003797 __rtl_set_wol(tp, wol->wolopts);
3798 tp->saved_wolopts = wol->wolopts & WAKE_ANY;
3799
hayeswangb5403272014-10-09 18:00:26 +08003800 mutex_unlock(&tp->control);
3801
hayeswang9a4be1b2014-02-18 21:49:07 +08003802 usb_autopm_put_interface(tp->intf);
3803
3804out_set_wol:
3805 return ret;
hayeswang21ff2e82014-02-18 21:49:06 +08003806}
3807
hayeswanga5ec27c2014-02-18 21:49:11 +08003808static u32 rtl8152_get_msglevel(struct net_device *dev)
3809{
3810 struct r8152 *tp = netdev_priv(dev);
3811
3812 return tp->msg_enable;
3813}
3814
3815static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
3816{
3817 struct r8152 *tp = netdev_priv(dev);
3818
3819 tp->msg_enable = value;
3820}
3821
hayeswangac718b62013-05-02 16:01:25 +00003822static void rtl8152_get_drvinfo(struct net_device *netdev,
3823 struct ethtool_drvinfo *info)
3824{
3825 struct r8152 *tp = netdev_priv(netdev);
3826
hayeswangb0b46c72014-08-26 10:08:23 +08003827 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
3828 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
hayeswangac718b62013-05-02 16:01:25 +00003829 usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
3830}
3831
3832static
3833int rtl8152_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
3834{
3835 struct r8152 *tp = netdev_priv(netdev);
hayeswang8d4a4d72014-10-09 18:00:25 +08003836 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003837
3838 if (!tp->mii.mdio_read)
3839 return -EOPNOTSUPP;
3840
hayeswang8d4a4d72014-10-09 18:00:25 +08003841 ret = usb_autopm_get_interface(tp->intf);
3842 if (ret < 0)
3843 goto out;
3844
hayeswangb5403272014-10-09 18:00:26 +08003845 mutex_lock(&tp->control);
3846
hayeswang8d4a4d72014-10-09 18:00:25 +08003847 ret = mii_ethtool_gset(&tp->mii, cmd);
3848
hayeswangb5403272014-10-09 18:00:26 +08003849 mutex_unlock(&tp->control);
3850
hayeswang8d4a4d72014-10-09 18:00:25 +08003851 usb_autopm_put_interface(tp->intf);
3852
3853out:
3854 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003855}
3856
3857static int rtl8152_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3858{
3859 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003860 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003861
hayeswang9a4be1b2014-02-18 21:49:07 +08003862 ret = usb_autopm_get_interface(tp->intf);
3863 if (ret < 0)
3864 goto out;
3865
hayeswangb5403272014-10-09 18:00:26 +08003866 mutex_lock(&tp->control);
3867
hayeswang9a4be1b2014-02-18 21:49:07 +08003868 ret = rtl8152_set_speed(tp, cmd->autoneg, cmd->speed, cmd->duplex);
hayeswangaa7e26b2016-06-13 17:49:38 +08003869 if (!ret) {
3870 tp->autoneg = cmd->autoneg;
3871 tp->speed = cmd->speed;
3872 tp->duplex = cmd->duplex;
3873 }
hayeswang9a4be1b2014-02-18 21:49:07 +08003874
hayeswangb5403272014-10-09 18:00:26 +08003875 mutex_unlock(&tp->control);
3876
hayeswang9a4be1b2014-02-18 21:49:07 +08003877 usb_autopm_put_interface(tp->intf);
3878
3879out:
3880 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003881}
3882
hayeswang4f1d4d52014-03-11 16:24:19 +08003883static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
3884 "tx_packets",
3885 "rx_packets",
3886 "tx_errors",
3887 "rx_errors",
3888 "rx_missed",
3889 "align_errors",
3890 "tx_single_collisions",
3891 "tx_multi_collisions",
3892 "rx_unicast",
3893 "rx_broadcast",
3894 "rx_multicast",
3895 "tx_aborted",
3896 "tx_underrun",
3897};
3898
3899static int rtl8152_get_sset_count(struct net_device *dev, int sset)
3900{
3901 switch (sset) {
3902 case ETH_SS_STATS:
3903 return ARRAY_SIZE(rtl8152_gstrings);
3904 default:
3905 return -EOPNOTSUPP;
3906 }
3907}
3908
3909static void rtl8152_get_ethtool_stats(struct net_device *dev,
3910 struct ethtool_stats *stats, u64 *data)
3911{
3912 struct r8152 *tp = netdev_priv(dev);
3913 struct tally_counter tally;
3914
hayeswang0b030242014-07-08 14:49:28 +08003915 if (usb_autopm_get_interface(tp->intf) < 0)
3916 return;
3917
hayeswang4f1d4d52014-03-11 16:24:19 +08003918 generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
3919
hayeswang0b030242014-07-08 14:49:28 +08003920 usb_autopm_put_interface(tp->intf);
3921
hayeswang4f1d4d52014-03-11 16:24:19 +08003922 data[0] = le64_to_cpu(tally.tx_packets);
3923 data[1] = le64_to_cpu(tally.rx_packets);
3924 data[2] = le64_to_cpu(tally.tx_errors);
3925 data[3] = le32_to_cpu(tally.rx_errors);
3926 data[4] = le16_to_cpu(tally.rx_missed);
3927 data[5] = le16_to_cpu(tally.align_errors);
3928 data[6] = le32_to_cpu(tally.tx_one_collision);
3929 data[7] = le32_to_cpu(tally.tx_multi_collision);
3930 data[8] = le64_to_cpu(tally.rx_unicast);
3931 data[9] = le64_to_cpu(tally.rx_broadcast);
3932 data[10] = le32_to_cpu(tally.rx_multicast);
3933 data[11] = le16_to_cpu(tally.tx_aborted);
hayeswangf37119c2014-10-28 14:05:51 +08003934 data[12] = le16_to_cpu(tally.tx_underrun);
hayeswang4f1d4d52014-03-11 16:24:19 +08003935}
3936
3937static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3938{
3939 switch (stringset) {
3940 case ETH_SS_STATS:
3941 memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
3942 break;
3943 }
3944}
3945
hayeswangdf35d282014-09-25 20:54:02 +08003946static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3947{
3948 u32 ocp_data, lp, adv, supported = 0;
3949 u16 val;
3950
3951 val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
3952 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3953
3954 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
3955 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3956
3957 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
3958 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3959
3960 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3961 ocp_data &= EEE_RX_EN | EEE_TX_EN;
3962
3963 eee->eee_enabled = !!ocp_data;
3964 eee->eee_active = !!(supported & adv & lp);
3965 eee->supported = supported;
3966 eee->advertised = adv;
3967 eee->lp_advertised = lp;
3968
3969 return 0;
3970}
3971
3972static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3973{
3974 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3975
3976 r8152_eee_en(tp, eee->eee_enabled);
3977
3978 if (!eee->eee_enabled)
3979 val = 0;
3980
3981 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
3982
3983 return 0;
3984}
3985
3986static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3987{
3988 u32 ocp_data, lp, adv, supported = 0;
3989 u16 val;
3990
3991 val = ocp_reg_read(tp, OCP_EEE_ABLE);
3992 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3993
3994 val = ocp_reg_read(tp, OCP_EEE_ADV);
3995 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3996
3997 val = ocp_reg_read(tp, OCP_EEE_LPABLE);
3998 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3999
4000 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
4001 ocp_data &= EEE_RX_EN | EEE_TX_EN;
4002
4003 eee->eee_enabled = !!ocp_data;
4004 eee->eee_active = !!(supported & adv & lp);
4005 eee->supported = supported;
4006 eee->advertised = adv;
4007 eee->lp_advertised = lp;
4008
4009 return 0;
4010}
4011
4012static int r8153_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
4013{
4014 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
4015
4016 r8153_eee_en(tp, eee->eee_enabled);
4017
4018 if (!eee->eee_enabled)
4019 val = 0;
4020
4021 ocp_reg_write(tp, OCP_EEE_ADV, val);
4022
4023 return 0;
4024}
4025
4026static int
4027rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
4028{
4029 struct r8152 *tp = netdev_priv(net);
4030 int ret;
4031
4032 ret = usb_autopm_get_interface(tp->intf);
4033 if (ret < 0)
4034 goto out;
4035
hayeswangb5403272014-10-09 18:00:26 +08004036 mutex_lock(&tp->control);
4037
hayeswangdf35d282014-09-25 20:54:02 +08004038 ret = tp->rtl_ops.eee_get(tp, edata);
4039
hayeswangb5403272014-10-09 18:00:26 +08004040 mutex_unlock(&tp->control);
4041
hayeswangdf35d282014-09-25 20:54:02 +08004042 usb_autopm_put_interface(tp->intf);
4043
4044out:
4045 return ret;
4046}
4047
4048static int
4049rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
4050{
4051 struct r8152 *tp = netdev_priv(net);
4052 int ret;
4053
4054 ret = usb_autopm_get_interface(tp->intf);
4055 if (ret < 0)
4056 goto out;
4057
hayeswangb5403272014-10-09 18:00:26 +08004058 mutex_lock(&tp->control);
4059
hayeswangdf35d282014-09-25 20:54:02 +08004060 ret = tp->rtl_ops.eee_set(tp, edata);
hayeswang9d31a7b2014-10-06 10:36:04 +08004061 if (!ret)
4062 ret = mii_nway_restart(&tp->mii);
hayeswangdf35d282014-09-25 20:54:02 +08004063
hayeswangb5403272014-10-09 18:00:26 +08004064 mutex_unlock(&tp->control);
4065
hayeswangdf35d282014-09-25 20:54:02 +08004066 usb_autopm_put_interface(tp->intf);
4067
4068out:
4069 return ret;
4070}
4071
hayeswang8884f502014-10-28 14:05:52 +08004072static int rtl8152_nway_reset(struct net_device *dev)
4073{
4074 struct r8152 *tp = netdev_priv(dev);
4075 int ret;
4076
4077 ret = usb_autopm_get_interface(tp->intf);
4078 if (ret < 0)
4079 goto out;
4080
4081 mutex_lock(&tp->control);
4082
4083 ret = mii_nway_restart(&tp->mii);
4084
4085 mutex_unlock(&tp->control);
4086
4087 usb_autopm_put_interface(tp->intf);
4088
4089out:
4090 return ret;
4091}
4092
hayeswangefb3dd82015-02-12 14:33:48 +08004093static int rtl8152_get_coalesce(struct net_device *netdev,
4094 struct ethtool_coalesce *coalesce)
4095{
4096 struct r8152 *tp = netdev_priv(netdev);
4097
4098 switch (tp->version) {
4099 case RTL_VER_01:
4100 case RTL_VER_02:
4101 return -EOPNOTSUPP;
4102 default:
4103 break;
4104 }
4105
4106 coalesce->rx_coalesce_usecs = tp->coalesce;
4107
4108 return 0;
4109}
4110
4111static int rtl8152_set_coalesce(struct net_device *netdev,
4112 struct ethtool_coalesce *coalesce)
4113{
4114 struct r8152 *tp = netdev_priv(netdev);
4115 int ret;
4116
4117 switch (tp->version) {
4118 case RTL_VER_01:
4119 case RTL_VER_02:
4120 return -EOPNOTSUPP;
4121 default:
4122 break;
4123 }
4124
4125 if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
4126 return -EINVAL;
4127
4128 ret = usb_autopm_get_interface(tp->intf);
4129 if (ret < 0)
4130 return ret;
4131
4132 mutex_lock(&tp->control);
4133
4134 if (tp->coalesce != coalesce->rx_coalesce_usecs) {
4135 tp->coalesce = coalesce->rx_coalesce_usecs;
4136
4137 if (netif_running(tp->netdev) && netif_carrier_ok(netdev))
4138 r8153_set_rx_early_timeout(tp);
4139 }
4140
4141 mutex_unlock(&tp->control);
4142
4143 usb_autopm_put_interface(tp->intf);
4144
4145 return ret;
4146}
4147
Julia Lawall407a4712016-09-01 00:21:22 +02004148static const struct ethtool_ops ops = {
hayeswangac718b62013-05-02 16:01:25 +00004149 .get_drvinfo = rtl8152_get_drvinfo,
4150 .get_settings = rtl8152_get_settings,
4151 .set_settings = rtl8152_set_settings,
4152 .get_link = ethtool_op_get_link,
hayeswang8884f502014-10-28 14:05:52 +08004153 .nway_reset = rtl8152_nway_reset,
hayeswanga5ec27c2014-02-18 21:49:11 +08004154 .get_msglevel = rtl8152_get_msglevel,
4155 .set_msglevel = rtl8152_set_msglevel,
hayeswang21ff2e82014-02-18 21:49:06 +08004156 .get_wol = rtl8152_get_wol,
4157 .set_wol = rtl8152_set_wol,
hayeswang4f1d4d52014-03-11 16:24:19 +08004158 .get_strings = rtl8152_get_strings,
4159 .get_sset_count = rtl8152_get_sset_count,
4160 .get_ethtool_stats = rtl8152_get_ethtool_stats,
hayeswangefb3dd82015-02-12 14:33:48 +08004161 .get_coalesce = rtl8152_get_coalesce,
4162 .set_coalesce = rtl8152_set_coalesce,
hayeswangdf35d282014-09-25 20:54:02 +08004163 .get_eee = rtl_ethtool_get_eee,
4164 .set_eee = rtl_ethtool_set_eee,
hayeswangac718b62013-05-02 16:01:25 +00004165};
4166
4167static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
4168{
4169 struct r8152 *tp = netdev_priv(netdev);
4170 struct mii_ioctl_data *data = if_mii(rq);
hayeswang9a4be1b2014-02-18 21:49:07 +08004171 int res;
4172
hayeswang68714382014-04-11 17:54:31 +08004173 if (test_bit(RTL8152_UNPLUG, &tp->flags))
4174 return -ENODEV;
4175
hayeswang9a4be1b2014-02-18 21:49:07 +08004176 res = usb_autopm_get_interface(tp->intf);
4177 if (res < 0)
4178 goto out;
hayeswangac718b62013-05-02 16:01:25 +00004179
4180 switch (cmd) {
4181 case SIOCGMIIPHY:
4182 data->phy_id = R8152_PHY_ID; /* Internal PHY */
4183 break;
4184
4185 case SIOCGMIIREG:
hayeswangb5403272014-10-09 18:00:26 +08004186 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004187 data->val_out = r8152_mdio_read(tp, data->reg_num);
hayeswangb5403272014-10-09 18:00:26 +08004188 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004189 break;
4190
4191 case SIOCSMIIREG:
4192 if (!capable(CAP_NET_ADMIN)) {
4193 res = -EPERM;
4194 break;
4195 }
hayeswangb5403272014-10-09 18:00:26 +08004196 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004197 r8152_mdio_write(tp, data->reg_num, data->val_in);
hayeswangb5403272014-10-09 18:00:26 +08004198 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004199 break;
4200
4201 default:
4202 res = -EOPNOTSUPP;
4203 }
4204
hayeswang9a4be1b2014-02-18 21:49:07 +08004205 usb_autopm_put_interface(tp->intf);
4206
4207out:
hayeswangac718b62013-05-02 16:01:25 +00004208 return res;
4209}
4210
hayeswang69b4b7a2014-07-10 10:58:54 +08004211static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
4212{
4213 struct r8152 *tp = netdev_priv(dev);
hayeswang396e2e22015-02-12 14:33:47 +08004214 int ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08004215
4216 switch (tp->version) {
4217 case RTL_VER_01:
4218 case RTL_VER_02:
4219 return eth_change_mtu(dev, new_mtu);
4220 default:
4221 break;
4222 }
4223
4224 if (new_mtu < 68 || new_mtu > RTL8153_MAX_MTU)
4225 return -EINVAL;
4226
hayeswang396e2e22015-02-12 14:33:47 +08004227 ret = usb_autopm_get_interface(tp->intf);
4228 if (ret < 0)
4229 return ret;
4230
4231 mutex_lock(&tp->control);
4232
hayeswang69b4b7a2014-07-10 10:58:54 +08004233 dev->mtu = new_mtu;
4234
hayeswang396e2e22015-02-12 14:33:47 +08004235 if (netif_running(dev) && netif_carrier_ok(dev))
4236 r8153_set_rx_early_size(tp);
4237
4238 mutex_unlock(&tp->control);
4239
4240 usb_autopm_put_interface(tp->intf);
4241
4242 return ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08004243}
4244
hayeswangac718b62013-05-02 16:01:25 +00004245static const struct net_device_ops rtl8152_netdev_ops = {
4246 .ndo_open = rtl8152_open,
4247 .ndo_stop = rtl8152_close,
4248 .ndo_do_ioctl = rtl8152_ioctl,
4249 .ndo_start_xmit = rtl8152_start_xmit,
4250 .ndo_tx_timeout = rtl8152_tx_timeout,
hayeswangc5554292014-09-12 10:43:11 +08004251 .ndo_set_features = rtl8152_set_features,
hayeswangac718b62013-05-02 16:01:25 +00004252 .ndo_set_rx_mode = rtl8152_set_rx_mode,
4253 .ndo_set_mac_address = rtl8152_set_mac_address,
hayeswang69b4b7a2014-07-10 10:58:54 +08004254 .ndo_change_mtu = rtl8152_change_mtu,
hayeswangac718b62013-05-02 16:01:25 +00004255 .ndo_validate_addr = eth_validate_addr,
hayeswanga5e31252015-01-06 17:41:58 +08004256 .ndo_features_check = rtl8152_features_check,
hayeswangac718b62013-05-02 16:01:25 +00004257};
4258
4259static void r8152b_get_version(struct r8152 *tp)
4260{
4261 u32 ocp_data;
4262 u16 version;
4263
4264 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR1);
4265 version = (u16)(ocp_data & VERSION_MASK);
4266
4267 switch (version) {
4268 case 0x4c00:
4269 tp->version = RTL_VER_01;
4270 break;
4271 case 0x4c10:
4272 tp->version = RTL_VER_02;
4273 break;
hayeswang43779f82014-01-02 11:25:10 +08004274 case 0x5c00:
4275 tp->version = RTL_VER_03;
4276 tp->mii.supports_gmii = 1;
4277 break;
4278 case 0x5c10:
4279 tp->version = RTL_VER_04;
4280 tp->mii.supports_gmii = 1;
4281 break;
4282 case 0x5c20:
4283 tp->version = RTL_VER_05;
4284 tp->mii.supports_gmii = 1;
4285 break;
hayeswangfb02eb42015-07-22 15:27:41 +08004286 case 0x5c30:
4287 tp->version = RTL_VER_06;
4288 tp->mii.supports_gmii = 1;
4289 break;
hayeswangac718b62013-05-02 16:01:25 +00004290 default:
4291 netif_info(tp, probe, tp->netdev,
4292 "Unknown version 0x%04x\n", version);
4293 break;
4294 }
4295}
4296
hayeswange3fe0b12014-01-02 11:22:39 +08004297static void rtl8152_unload(struct r8152 *tp)
4298{
hayeswang68714382014-04-11 17:54:31 +08004299 if (test_bit(RTL8152_UNPLUG, &tp->flags))
4300 return;
4301
hayeswang00a5e362014-02-18 21:48:59 +08004302 if (tp->version != RTL_VER_01)
4303 r8152_power_cut_en(tp, true);
hayeswange3fe0b12014-01-02 11:22:39 +08004304}
4305
hayeswang43779f82014-01-02 11:25:10 +08004306static void rtl8153_unload(struct r8152 *tp)
4307{
hayeswang68714382014-04-11 17:54:31 +08004308 if (test_bit(RTL8152_UNPLUG, &tp->flags))
4309 return;
4310
hayeswang49be1722014-10-01 13:25:11 +08004311 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08004312}
4313
hayeswang55b65472014-11-06 12:47:39 +08004314static int rtl_ops_init(struct r8152 *tp)
hayeswangc81229c2014-01-02 11:22:42 +08004315{
4316 struct rtl_ops *ops = &tp->rtl_ops;
hayeswang55b65472014-11-06 12:47:39 +08004317 int ret = 0;
hayeswangc81229c2014-01-02 11:22:42 +08004318
hayeswang55b65472014-11-06 12:47:39 +08004319 switch (tp->version) {
4320 case RTL_VER_01:
4321 case RTL_VER_02:
4322 ops->init = r8152b_init;
4323 ops->enable = rtl8152_enable;
4324 ops->disable = rtl8152_disable;
4325 ops->up = rtl8152_up;
4326 ops->down = rtl8152_down;
4327 ops->unload = rtl8152_unload;
4328 ops->eee_get = r8152_get_eee;
4329 ops->eee_set = r8152_set_eee;
hayeswang2dd49e02015-09-07 11:57:44 +08004330 ops->in_nway = rtl8152_in_nway;
hayeswanga028a9e2016-06-13 17:49:36 +08004331 ops->hw_phy_cfg = r8152b_hw_phy_cfg;
hayeswang2609af12016-07-05 16:11:46 +08004332 ops->autosuspend_en = rtl_runtime_suspend_enable;
hayeswang43779f82014-01-02 11:25:10 +08004333 break;
4334
hayeswang55b65472014-11-06 12:47:39 +08004335 case RTL_VER_03:
4336 case RTL_VER_04:
4337 case RTL_VER_05:
hayeswangfb02eb42015-07-22 15:27:41 +08004338 case RTL_VER_06:
hayeswang55b65472014-11-06 12:47:39 +08004339 ops->init = r8153_init;
4340 ops->enable = rtl8153_enable;
4341 ops->disable = rtl8153_disable;
4342 ops->up = rtl8153_up;
4343 ops->down = rtl8153_down;
4344 ops->unload = rtl8153_unload;
4345 ops->eee_get = r8153_get_eee;
4346 ops->eee_set = r8153_set_eee;
hayeswang2dd49e02015-09-07 11:57:44 +08004347 ops->in_nway = rtl8153_in_nway;
hayeswanga028a9e2016-06-13 17:49:36 +08004348 ops->hw_phy_cfg = r8153_hw_phy_cfg;
hayeswang2609af12016-07-05 16:11:46 +08004349 ops->autosuspend_en = rtl8153_runtime_enable;
hayeswangc81229c2014-01-02 11:22:42 +08004350 break;
4351
4352 default:
hayeswang55b65472014-11-06 12:47:39 +08004353 ret = -ENODEV;
4354 netif_err(tp, probe, tp->netdev, "Unknown Device\n");
hayeswangc81229c2014-01-02 11:22:42 +08004355 break;
4356 }
4357
4358 return ret;
4359}
4360
hayeswangac718b62013-05-02 16:01:25 +00004361static int rtl8152_probe(struct usb_interface *intf,
4362 const struct usb_device_id *id)
4363{
4364 struct usb_device *udev = interface_to_usbdev(intf);
4365 struct r8152 *tp;
4366 struct net_device *netdev;
hayeswangebc2ec42013-08-14 20:54:38 +08004367 int ret;
hayeswangac718b62013-05-02 16:01:25 +00004368
hayeswang10c32712014-03-04 20:47:48 +08004369 if (udev->actconfig->desc.bConfigurationValue != 1) {
4370 usb_driver_set_configuration(udev, 1);
4371 return -ENODEV;
4372 }
4373
Johan Hovold068300d2020-01-14 09:27:29 +01004374 if (intf->cur_altsetting->desc.bNumEndpoints < 3)
4375 return -ENODEV;
4376
hayeswang10c32712014-03-04 20:47:48 +08004377 usb_reset_device(udev);
hayeswangac718b62013-05-02 16:01:25 +00004378 netdev = alloc_etherdev(sizeof(struct r8152));
4379 if (!netdev) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004380 dev_err(&intf->dev, "Out of memory\n");
hayeswangac718b62013-05-02 16:01:25 +00004381 return -ENOMEM;
4382 }
4383
hayeswangebc2ec42013-08-14 20:54:38 +08004384 SET_NETDEV_DEV(netdev, &intf->dev);
hayeswangac718b62013-05-02 16:01:25 +00004385 tp = netdev_priv(netdev);
4386 tp->msg_enable = 0x7FFF;
4387
hayeswange3ad4122014-01-06 17:08:42 +08004388 tp->udev = udev;
4389 tp->netdev = netdev;
4390 tp->intf = intf;
4391
hayeswang82cf94c2014-11-06 12:47:38 +08004392 r8152b_get_version(tp);
hayeswang55b65472014-11-06 12:47:39 +08004393 ret = rtl_ops_init(tp);
hayeswang31ca1de2014-01-06 17:08:43 +08004394 if (ret)
4395 goto out;
hayeswangc81229c2014-01-02 11:22:42 +08004396
hayeswangb5403272014-10-09 18:00:26 +08004397 mutex_init(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004398 INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
hayeswanga028a9e2016-06-13 17:49:36 +08004399 INIT_DELAYED_WORK(&tp->hw_phy_work, rtl_hw_phy_work_func_t);
hayeswangac718b62013-05-02 16:01:25 +00004400
hayeswangac718b62013-05-02 16:01:25 +00004401 netdev->netdev_ops = &rtl8152_netdev_ops;
4402 netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
hayeswang5bd23882013-08-14 20:54:39 +08004403
hayeswang60c89072014-03-07 11:04:39 +08004404 netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1b2014-03-07 11:04:40 +08004405 NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
hayeswangc5554292014-09-12 10:43:11 +08004406 NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
4407 NETIF_F_HW_VLAN_CTAG_TX;
hayeswang60c89072014-03-07 11:04:39 +08004408 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1b2014-03-07 11:04:40 +08004409 NETIF_F_TSO | NETIF_F_FRAGLIST |
hayeswangc5554292014-09-12 10:43:11 +08004410 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
hayeswangccc39fa2015-02-06 11:30:49 +08004411 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
hayeswangc5554292014-09-12 10:43:11 +08004412 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4413 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
4414 NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
hayeswangdb8515e2014-03-06 15:07:16 +08004415
hayeswanga37f2312017-01-11 16:25:34 +08004416 if (tp->version == RTL_VER_01) {
4417 netdev->features &= ~NETIF_F_RXCSUM;
4418 netdev->hw_features &= ~NETIF_F_RXCSUM;
4419 }
4420
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00004421 netdev->ethtool_ops = &ops;
hayeswang60c89072014-03-07 11:04:39 +08004422 netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
hayeswangac718b62013-05-02 16:01:25 +00004423
4424 tp->mii.dev = netdev;
4425 tp->mii.mdio_read = read_mii_word;
4426 tp->mii.mdio_write = write_mii_word;
4427 tp->mii.phy_id_mask = 0x3f;
4428 tp->mii.reg_num_mask = 0x1f;
4429 tp->mii.phy_id = R8152_PHY_ID;
hayeswangac718b62013-05-02 16:01:25 +00004430
hayeswang464ec102015-02-12 14:33:46 +08004431 switch (udev->speed) {
4432 case USB_SPEED_SUPER:
Oliver Neukum2b84af94a2016-05-02 13:06:14 +02004433 case USB_SPEED_SUPER_PLUS:
hayeswang464ec102015-02-12 14:33:46 +08004434 tp->coalesce = COALESCE_SUPER;
4435 break;
4436 case USB_SPEED_HIGH:
4437 tp->coalesce = COALESCE_HIGH;
4438 break;
4439 default:
4440 tp->coalesce = COALESCE_SLOW;
4441 break;
4442 }
4443
hayeswangaa7e26b2016-06-13 17:49:38 +08004444 tp->autoneg = AUTONEG_ENABLE;
4445 tp->speed = tp->mii.supports_gmii ? SPEED_1000 : SPEED_100;
4446 tp->duplex = DUPLEX_FULL;
4447
hayeswang9a4be1b2014-02-18 21:49:07 +08004448 intf->needs_remote_wakeup = 1;
4449
Hayes Wang85a89502020-01-22 16:02:07 +08004450 if (!rtl_can_wakeup(tp))
4451 __rtl_set_wol(tp, 0);
4452 else
4453 tp->saved_wolopts = __rtl_get_wol(tp);
4454
hayeswangc81229c2014-01-02 11:22:42 +08004455 tp->rtl_ops.init(tp);
hayeswanga028a9e2016-06-13 17:49:36 +08004456 queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
hayeswangac718b62013-05-02 16:01:25 +00004457 set_ethernet_addr(tp);
4458
hayeswangac718b62013-05-02 16:01:25 +00004459 usb_set_intfdata(intf, tp);
hayeswangd823ab62015-01-12 12:06:23 +08004460 netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
hayeswangac718b62013-05-02 16:01:25 +00004461
hayeswangebc2ec42013-08-14 20:54:38 +08004462 ret = register_netdev(netdev);
4463 if (ret != 0) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004464 netif_err(tp, probe, netdev, "couldn't register the device\n");
hayeswangebc2ec42013-08-14 20:54:38 +08004465 goto out1;
hayeswangac718b62013-05-02 16:01:25 +00004466 }
4467
hayeswang21ff2e82014-02-18 21:49:06 +08004468 if (tp->saved_wolopts)
4469 device_set_wakeup_enable(&udev->dev, true);
4470 else
4471 device_set_wakeup_enable(&udev->dev, false);
4472
Hayes Wang4a8deae2014-01-07 11:18:22 +08004473 netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
hayeswangac718b62013-05-02 16:01:25 +00004474
4475 return 0;
4476
hayeswangac718b62013-05-02 16:01:25 +00004477out1:
hayeswangd823ab62015-01-12 12:06:23 +08004478 netif_napi_del(&tp->napi);
hayeswangebc2ec42013-08-14 20:54:38 +08004479 usb_set_intfdata(intf, NULL);
hayeswangac718b62013-05-02 16:01:25 +00004480out:
4481 free_netdev(netdev);
hayeswangebc2ec42013-08-14 20:54:38 +08004482 return ret;
hayeswangac718b62013-05-02 16:01:25 +00004483}
4484
hayeswangac718b62013-05-02 16:01:25 +00004485static void rtl8152_disconnect(struct usb_interface *intf)
4486{
4487 struct r8152 *tp = usb_get_intfdata(intf);
4488
4489 usb_set_intfdata(intf, NULL);
4490 if (tp) {
hayeswangf561de32014-09-30 16:48:01 +08004491 struct usb_device *udev = tp->udev;
4492
4493 if (udev->state == USB_STATE_NOTATTACHED)
4494 set_bit(RTL8152_UNPLUG, &tp->flags);
4495
hayeswangd823ab62015-01-12 12:06:23 +08004496 netif_napi_del(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00004497 unregister_netdev(tp->netdev);
hayeswanga028a9e2016-06-13 17:49:36 +08004498 cancel_delayed_work_sync(&tp->hw_phy_work);
hayeswangc81229c2014-01-02 11:22:42 +08004499 tp->rtl_ops.unload(tp);
hayeswangac718b62013-05-02 16:01:25 +00004500 free_netdev(tp->netdev);
4501 }
4502}
4503
hayeswangd9a28c52014-12-04 10:43:11 +08004504#define REALTEK_USB_DEVICE(vend, prod) \
4505 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
4506 USB_DEVICE_ID_MATCH_INT_CLASS, \
4507 .idVendor = (vend), \
4508 .idProduct = (prod), \
4509 .bInterfaceClass = USB_CLASS_VENDOR_SPEC \
4510}, \
4511{ \
4512 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
4513 USB_DEVICE_ID_MATCH_DEVICE, \
4514 .idVendor = (vend), \
4515 .idProduct = (prod), \
4516 .bInterfaceClass = USB_CLASS_COMM, \
4517 .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
4518 .bInterfaceProtocol = USB_CDC_PROTO_NONE
4519
hayeswangac718b62013-05-02 16:01:25 +00004520/* table of devices that work with this driver */
4521static struct usb_device_id rtl8152_table[] = {
hayeswangd9a28c52014-12-04 10:43:11 +08004522 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
4523 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
4524 {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
Christian Hesse347eec32015-03-31 14:10:07 +02004525 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205)},
Vasily Titskiy1006da12015-05-06 10:31:21 -04004526 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)},
Grant Grundler403e7bd2017-09-28 11:35:00 -07004527 {REALTEK_USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041)},
Zheng Liud065c3c2015-07-07 13:54:12 -07004528 {REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff)},
hayeswangac718b62013-05-02 16:01:25 +00004529 {}
4530};
4531
4532MODULE_DEVICE_TABLE(usb, rtl8152_table);
4533
4534static struct usb_driver rtl8152_driver = {
4535 .name = MODULENAME,
hayeswangebc2ec42013-08-14 20:54:38 +08004536 .id_table = rtl8152_table,
hayeswangac718b62013-05-02 16:01:25 +00004537 .probe = rtl8152_probe,
4538 .disconnect = rtl8152_disconnect,
hayeswangac718b62013-05-02 16:01:25 +00004539 .suspend = rtl8152_suspend,
hayeswangebc2ec42013-08-14 20:54:38 +08004540 .resume = rtl8152_resume,
hayeswang7ec25412016-01-04 14:38:46 +08004541 .reset_resume = rtl8152_reset_resume,
hayeswange5011392015-07-29 20:39:08 +08004542 .pre_reset = rtl8152_pre_reset,
4543 .post_reset = rtl8152_post_reset,
hayeswang9a4be1b2014-02-18 21:49:07 +08004544 .supports_autosuspend = 1,
hayeswanga6347822014-02-18 21:49:10 +08004545 .disable_hub_initiated_lpm = 1,
hayeswangac718b62013-05-02 16:01:25 +00004546};
4547
Sachin Kamatb4236daa2013-05-16 17:48:08 +00004548module_usb_driver(rtl8152_driver);
hayeswangac718b62013-05-02 16:01:25 +00004549
4550MODULE_AUTHOR(DRIVER_AUTHOR);
4551MODULE_DESCRIPTION(DRIVER_DESC);
4552MODULE_LICENSE("GPL");
Grant Grundlerc961e872016-07-14 11:27:16 -07004553MODULE_VERSION(DRIVER_VERSION);