blob: e3a01104654020532a40fdf703b275517f4b9bba [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>
hayeswangebc2ec482013-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>
hayeswang6128d1bb2014-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>
hayeswangac718b62013-05-02 16:01:25 +000028
29/* Version Information */
hayeswangd823ab62015-01-12 12:06:23 +080030#define DRIVER_VERSION "v1.08.0 (2015/01/13)"
hayeswangac718b62013-05-02 16:01:25 +000031#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
hayeswang44d942a2014-01-15 10:42:14 +080032#define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters"
hayeswangac718b62013-05-02 16:01:25 +000033#define MODULENAME "r8152"
34
35#define R8152_PHY_ID 32
36
37#define PLA_IDR 0xc000
38#define PLA_RCR 0xc010
39#define PLA_RMS 0xc016
40#define PLA_RXFIFO_CTRL0 0xc0a0
41#define PLA_RXFIFO_CTRL1 0xc0a4
42#define PLA_RXFIFO_CTRL2 0xc0a8
hayeswang65bab842015-02-12 16:20:46 +080043#define PLA_DMY_REG0 0xc0b0
hayeswangac718b62013-05-02 16:01:25 +000044#define PLA_FMC 0xc0b4
45#define PLA_CFG_WOL 0xc0b6
hayeswang43779f82014-01-02 11:25:10 +080046#define PLA_TEREDO_CFG 0xc0bc
hayeswangac718b62013-05-02 16:01:25 +000047#define PLA_MAR 0xcd00
hayeswang43779f82014-01-02 11:25:10 +080048#define PLA_BACKUP 0xd000
hayeswangac718b62013-05-02 16:01:25 +000049#define PAL_BDC_CR 0xd1a0
hayeswang43779f82014-01-02 11:25:10 +080050#define PLA_TEREDO_TIMER 0xd2cc
51#define PLA_REALWOW_TIMER 0xd2e8
hayeswangac718b62013-05-02 16:01:25 +000052#define PLA_LEDSEL 0xdd90
53#define PLA_LED_FEATURE 0xdd92
54#define PLA_PHYAR 0xde00
hayeswang43779f82014-01-02 11:25:10 +080055#define PLA_BOOT_CTRL 0xe004
hayeswangac718b62013-05-02 16:01:25 +000056#define PLA_GPHY_INTR_IMR 0xe022
57#define PLA_EEE_CR 0xe040
58#define PLA_EEEP_CR 0xe080
59#define PLA_MAC_PWR_CTRL 0xe0c0
hayeswang43779f82014-01-02 11:25:10 +080060#define PLA_MAC_PWR_CTRL2 0xe0ca
61#define PLA_MAC_PWR_CTRL3 0xe0cc
62#define PLA_MAC_PWR_CTRL4 0xe0ce
63#define PLA_WDT6_CTRL 0xe428
hayeswangac718b62013-05-02 16:01:25 +000064#define PLA_TCR0 0xe610
65#define PLA_TCR1 0xe612
hayeswang69b4b7a2014-07-10 10:58:54 +080066#define PLA_MTPS 0xe615
hayeswangac718b62013-05-02 16:01:25 +000067#define PLA_TXFIFO_CTRL 0xe618
hayeswang4f1d4d52014-03-11 16:24:19 +080068#define PLA_RSTTALLY 0xe800
hayeswangac718b62013-05-02 16:01:25 +000069#define PLA_CR 0xe813
70#define PLA_CRWECR 0xe81c
hayeswang21ff2e82014-02-18 21:49:06 +080071#define PLA_CONFIG12 0xe81e /* CONFIG1, CONFIG2 */
72#define PLA_CONFIG34 0xe820 /* CONFIG3, CONFIG4 */
hayeswangac718b62013-05-02 16:01:25 +000073#define PLA_CONFIG5 0xe822
74#define PLA_PHY_PWR 0xe84c
75#define PLA_OOB_CTRL 0xe84f
76#define PLA_CPCR 0xe854
77#define PLA_MISC_0 0xe858
78#define PLA_MISC_1 0xe85a
79#define PLA_OCP_GPHY_BASE 0xe86c
hayeswang4f1d4d52014-03-11 16:24:19 +080080#define PLA_TALLYCNT 0xe890
hayeswangac718b62013-05-02 16:01:25 +000081#define PLA_SFF_STS_7 0xe8de
82#define PLA_PHYSTATUS 0xe908
83#define PLA_BP_BA 0xfc26
84#define PLA_BP_0 0xfc28
85#define PLA_BP_1 0xfc2a
86#define PLA_BP_2 0xfc2c
87#define PLA_BP_3 0xfc2e
88#define PLA_BP_4 0xfc30
89#define PLA_BP_5 0xfc32
90#define PLA_BP_6 0xfc34
91#define PLA_BP_7 0xfc36
hayeswang43779f82014-01-02 11:25:10 +080092#define PLA_BP_EN 0xfc38
hayeswangac718b62013-05-02 16:01:25 +000093
hayeswang65bab842015-02-12 16:20:46 +080094#define USB_USB2PHY 0xb41e
95#define USB_SSPHYLINK2 0xb428
hayeswang43779f82014-01-02 11:25:10 +080096#define USB_U2P3_CTRL 0xb460
hayeswang65bab842015-02-12 16:20:46 +080097#define USB_CSR_DUMMY1 0xb464
98#define USB_CSR_DUMMY2 0xb466
hayeswangac718b62013-05-02 16:01:25 +000099#define USB_DEV_STAT 0xb808
hayeswang65bab842015-02-12 16:20:46 +0800100#define USB_CONNECT_TIMER 0xcbf8
101#define USB_BURST_SIZE 0xcfc0
hayeswangac718b62013-05-02 16:01:25 +0000102#define USB_USB_CTRL 0xd406
103#define USB_PHY_CTRL 0xd408
104#define USB_TX_AGG 0xd40a
105#define USB_RX_BUF_TH 0xd40c
106#define USB_USB_TIMER 0xd428
hayeswang464ec102015-02-12 14:33:46 +0800107#define USB_RX_EARLY_TIMEOUT 0xd42c
108#define USB_RX_EARLY_SIZE 0xd42e
hayeswangac718b62013-05-02 16:01:25 +0000109#define USB_PM_CTRL_STATUS 0xd432
110#define USB_TX_DMA 0xd434
hayeswang43779f82014-01-02 11:25:10 +0800111#define USB_TOLERANCE 0xd490
112#define USB_LPM_CTRL 0xd41a
hayeswangac718b62013-05-02 16:01:25 +0000113#define USB_UPS_CTRL 0xd800
hayeswang43779f82014-01-02 11:25:10 +0800114#define USB_MISC_0 0xd81a
115#define USB_POWER_CUT 0xd80a
116#define USB_AFE_CTRL2 0xd824
117#define USB_WDT11_CTRL 0xe43c
hayeswangac718b62013-05-02 16:01:25 +0000118#define USB_BP_BA 0xfc26
119#define USB_BP_0 0xfc28
120#define USB_BP_1 0xfc2a
121#define USB_BP_2 0xfc2c
122#define USB_BP_3 0xfc2e
123#define USB_BP_4 0xfc30
124#define USB_BP_5 0xfc32
125#define USB_BP_6 0xfc34
126#define USB_BP_7 0xfc36
hayeswang43779f82014-01-02 11:25:10 +0800127#define USB_BP_EN 0xfc38
hayeswangac718b62013-05-02 16:01:25 +0000128
129/* OCP Registers */
130#define OCP_ALDPS_CONFIG 0x2010
131#define OCP_EEE_CONFIG1 0x2080
132#define OCP_EEE_CONFIG2 0x2092
133#define OCP_EEE_CONFIG3 0x2094
hayeswangac244d32014-01-02 11:22:40 +0800134#define OCP_BASE_MII 0xa400
hayeswangac718b62013-05-02 16:01:25 +0000135#define OCP_EEE_AR 0xa41a
136#define OCP_EEE_DATA 0xa41c
hayeswang43779f82014-01-02 11:25:10 +0800137#define OCP_PHY_STATUS 0xa420
138#define OCP_POWER_CFG 0xa430
139#define OCP_EEE_CFG 0xa432
140#define OCP_SRAM_ADDR 0xa436
141#define OCP_SRAM_DATA 0xa438
142#define OCP_DOWN_SPEED 0xa442
hayeswangdf35d282014-09-25 20:54:02 +0800143#define OCP_EEE_ABLE 0xa5c4
hayeswang4c4a6b12014-09-25 20:54:00 +0800144#define OCP_EEE_ADV 0xa5d0
hayeswangdf35d282014-09-25 20:54:02 +0800145#define OCP_EEE_LPABLE 0xa5d2
hayeswang43779f82014-01-02 11:25:10 +0800146#define OCP_ADC_CFG 0xbc06
147
148/* SRAM Register */
149#define SRAM_LPF_CFG 0x8012
150#define SRAM_10M_AMP1 0x8080
151#define SRAM_10M_AMP2 0x8082
152#define SRAM_IMPEDANCE 0x8084
hayeswangac718b62013-05-02 16:01:25 +0000153
154/* PLA_RCR */
155#define RCR_AAP 0x00000001
156#define RCR_APM 0x00000002
157#define RCR_AM 0x00000004
158#define RCR_AB 0x00000008
159#define RCR_ACPT_ALL (RCR_AAP | RCR_APM | RCR_AM | RCR_AB)
160
161/* PLA_RXFIFO_CTRL0 */
162#define RXFIFO_THR1_NORMAL 0x00080002
163#define RXFIFO_THR1_OOB 0x01800003
164
165/* PLA_RXFIFO_CTRL1 */
166#define RXFIFO_THR2_FULL 0x00000060
167#define RXFIFO_THR2_HIGH 0x00000038
168#define RXFIFO_THR2_OOB 0x0000004a
hayeswang43779f82014-01-02 11:25:10 +0800169#define RXFIFO_THR2_NORMAL 0x00a0
hayeswangac718b62013-05-02 16:01:25 +0000170
171/* PLA_RXFIFO_CTRL2 */
172#define RXFIFO_THR3_FULL 0x00000078
173#define RXFIFO_THR3_HIGH 0x00000048
174#define RXFIFO_THR3_OOB 0x0000005a
hayeswang43779f82014-01-02 11:25:10 +0800175#define RXFIFO_THR3_NORMAL 0x0110
hayeswangac718b62013-05-02 16:01:25 +0000176
177/* PLA_TXFIFO_CTRL */
178#define TXFIFO_THR_NORMAL 0x00400008
hayeswang43779f82014-01-02 11:25:10 +0800179#define TXFIFO_THR_NORMAL2 0x01000008
hayeswangac718b62013-05-02 16:01:25 +0000180
hayeswang65bab842015-02-12 16:20:46 +0800181/* PLA_DMY_REG0 */
182#define ECM_ALDPS 0x0002
183
hayeswangac718b62013-05-02 16:01:25 +0000184/* PLA_FMC */
185#define FMC_FCR_MCU_EN 0x0001
186
187/* PLA_EEEP_CR */
188#define EEEP_CR_EEEP_TX 0x0002
189
hayeswang43779f82014-01-02 11:25:10 +0800190/* PLA_WDT6_CTRL */
191#define WDT6_SET_MODE 0x0010
192
hayeswangac718b62013-05-02 16:01:25 +0000193/* PLA_TCR0 */
194#define TCR0_TX_EMPTY 0x0800
195#define TCR0_AUTO_FIFO 0x0080
196
197/* PLA_TCR1 */
198#define VERSION_MASK 0x7cf0
199
hayeswang69b4b7a2014-07-10 10:58:54 +0800200/* PLA_MTPS */
201#define MTPS_JUMBO (12 * 1024 / 64)
202#define MTPS_DEFAULT (6 * 1024 / 64)
203
hayeswang4f1d4d52014-03-11 16:24:19 +0800204/* PLA_RSTTALLY */
205#define TALLY_RESET 0x0001
206
hayeswangac718b62013-05-02 16:01:25 +0000207/* PLA_CR */
208#define CR_RST 0x10
209#define CR_RE 0x08
210#define CR_TE 0x04
211
212/* PLA_CRWECR */
213#define CRWECR_NORAML 0x00
214#define CRWECR_CONFIG 0xc0
215
216/* PLA_OOB_CTRL */
217#define NOW_IS_OOB 0x80
218#define TXFIFO_EMPTY 0x20
219#define RXFIFO_EMPTY 0x10
220#define LINK_LIST_READY 0x02
221#define DIS_MCU_CLROOB 0x01
222#define FIFO_EMPTY (TXFIFO_EMPTY | RXFIFO_EMPTY)
223
224/* PLA_MISC_1 */
225#define RXDY_GATED_EN 0x0008
226
227/* PLA_SFF_STS_7 */
228#define RE_INIT_LL 0x8000
229#define MCU_BORW_EN 0x4000
230
231/* PLA_CPCR */
232#define CPCR_RX_VLAN 0x0040
233
234/* PLA_CFG_WOL */
235#define MAGIC_EN 0x0001
236
hayeswang43779f82014-01-02 11:25:10 +0800237/* PLA_TEREDO_CFG */
238#define TEREDO_SEL 0x8000
239#define TEREDO_WAKE_MASK 0x7f00
240#define TEREDO_RS_EVENT_MASK 0x00fe
241#define OOB_TEREDO_EN 0x0001
242
hayeswangac718b62013-05-02 16:01:25 +0000243/* PAL_BDC_CR */
244#define ALDPS_PROXY_MODE 0x0001
245
hayeswang21ff2e82014-02-18 21:49:06 +0800246/* PLA_CONFIG34 */
247#define LINK_ON_WAKE_EN 0x0010
248#define LINK_OFF_WAKE_EN 0x0008
249
hayeswangac718b62013-05-02 16:01:25 +0000250/* PLA_CONFIG5 */
hayeswang21ff2e82014-02-18 21:49:06 +0800251#define BWF_EN 0x0040
252#define MWF_EN 0x0020
253#define UWF_EN 0x0010
hayeswangac718b62013-05-02 16:01:25 +0000254#define LAN_WAKE_EN 0x0002
255
256/* PLA_LED_FEATURE */
257#define LED_MODE_MASK 0x0700
258
259/* PLA_PHY_PWR */
260#define TX_10M_IDLE_EN 0x0080
261#define PFM_PWM_SWITCH 0x0040
262
263/* PLA_MAC_PWR_CTRL */
264#define D3_CLK_GATED_EN 0x00004000
265#define MCU_CLK_RATIO 0x07010f07
266#define MCU_CLK_RATIO_MASK 0x0f0f0f0f
hayeswang43779f82014-01-02 11:25:10 +0800267#define ALDPS_SPDWN_RATIO 0x0f87
268
269/* PLA_MAC_PWR_CTRL2 */
270#define EEE_SPDWN_RATIO 0x8007
271
272/* PLA_MAC_PWR_CTRL3 */
273#define PKT_AVAIL_SPDWN_EN 0x0100
274#define SUSPEND_SPDWN_EN 0x0004
275#define U1U2_SPDWN_EN 0x0002
276#define L1_SPDWN_EN 0x0001
277
278/* PLA_MAC_PWR_CTRL4 */
279#define PWRSAVE_SPDWN_EN 0x1000
280#define RXDV_SPDWN_EN 0x0800
281#define TX10MIDLE_EN 0x0100
282#define TP100_SPDWN_EN 0x0020
283#define TP500_SPDWN_EN 0x0010
284#define TP1000_SPDWN_EN 0x0008
285#define EEE_SPDWN_EN 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000286
287/* PLA_GPHY_INTR_IMR */
288#define GPHY_STS_MSK 0x0001
289#define SPEED_DOWN_MSK 0x0002
290#define SPDWN_RXDV_MSK 0x0004
291#define SPDWN_LINKCHG_MSK 0x0008
292
293/* PLA_PHYAR */
294#define PHYAR_FLAG 0x80000000
295
296/* PLA_EEE_CR */
297#define EEE_RX_EN 0x0001
298#define EEE_TX_EN 0x0002
299
hayeswang43779f82014-01-02 11:25:10 +0800300/* PLA_BOOT_CTRL */
301#define AUTOLOAD_DONE 0x0002
302
hayeswang65bab842015-02-12 16:20:46 +0800303/* USB_USB2PHY */
304#define USB2PHY_SUSPEND 0x0001
305#define USB2PHY_L1 0x0002
306
307/* USB_SSPHYLINK2 */
308#define pwd_dn_scale_mask 0x3ffe
309#define pwd_dn_scale(x) ((x) << 1)
310
311/* USB_CSR_DUMMY1 */
312#define DYNAMIC_BURST 0x0001
313
314/* USB_CSR_DUMMY2 */
315#define EP4_FULL_FC 0x0001
316
hayeswangac718b62013-05-02 16:01:25 +0000317/* USB_DEV_STAT */
318#define STAT_SPEED_MASK 0x0006
319#define STAT_SPEED_HIGH 0x0000
hayeswanga3cc4652014-07-24 16:37:43 +0800320#define STAT_SPEED_FULL 0x0002
hayeswangac718b62013-05-02 16:01:25 +0000321
322/* USB_TX_AGG */
323#define TX_AGG_MAX_THRESHOLD 0x03
324
325/* USB_RX_BUF_TH */
hayeswang43779f82014-01-02 11:25:10 +0800326#define RX_THR_SUPPER 0x0c350180
hayeswang8e1f51b2014-01-02 11:22:41 +0800327#define RX_THR_HIGH 0x7a120180
hayeswang43779f82014-01-02 11:25:10 +0800328#define RX_THR_SLOW 0xffff0180
hayeswangac718b62013-05-02 16:01:25 +0000329
330/* USB_TX_DMA */
331#define TEST_MODE_DISABLE 0x00000001
332#define TX_SIZE_ADJUST1 0x00000100
333
334/* USB_UPS_CTRL */
335#define POWER_CUT 0x0100
336
337/* USB_PM_CTRL_STATUS */
hayeswang8e1f51b2014-01-02 11:22:41 +0800338#define RESUME_INDICATE 0x0001
hayeswangac718b62013-05-02 16:01:25 +0000339
340/* USB_USB_CTRL */
341#define RX_AGG_DISABLE 0x0010
342
hayeswang43779f82014-01-02 11:25:10 +0800343/* USB_U2P3_CTRL */
344#define U2P3_ENABLE 0x0001
345
346/* USB_POWER_CUT */
347#define PWR_EN 0x0001
348#define PHASE2_EN 0x0008
349
350/* USB_MISC_0 */
351#define PCUT_STATUS 0x0001
352
hayeswang464ec102015-02-12 14:33:46 +0800353/* USB_RX_EARLY_TIMEOUT */
354#define COALESCE_SUPER 85000U
355#define COALESCE_HIGH 250000U
356#define COALESCE_SLOW 524280U
hayeswang43779f82014-01-02 11:25:10 +0800357
358/* USB_WDT11_CTRL */
359#define TIMER11_EN 0x0001
360
361/* USB_LPM_CTRL */
hayeswang65bab842015-02-12 16:20:46 +0800362/* bit 4 ~ 5: fifo empty boundary */
363#define FIFO_EMPTY_1FB 0x30 /* 0x1fb * 64 = 32448 bytes */
364/* bit 2 ~ 3: LMP timer */
hayeswang43779f82014-01-02 11:25:10 +0800365#define LPM_TIMER_MASK 0x0c
366#define LPM_TIMER_500MS 0x04 /* 500 ms */
367#define LPM_TIMER_500US 0x0c /* 500 us */
hayeswang65bab842015-02-12 16:20:46 +0800368#define ROK_EXIT_LPM 0x02
hayeswang43779f82014-01-02 11:25:10 +0800369
370/* USB_AFE_CTRL2 */
371#define SEN_VAL_MASK 0xf800
372#define SEN_VAL_NORMAL 0xa000
373#define SEL_RXIDLE 0x0100
374
hayeswangac718b62013-05-02 16:01:25 +0000375/* OCP_ALDPS_CONFIG */
376#define ENPWRSAVE 0x8000
377#define ENPDNPS 0x0200
378#define LINKENA 0x0100
379#define DIS_SDSAVE 0x0010
380
hayeswang43779f82014-01-02 11:25:10 +0800381/* OCP_PHY_STATUS */
382#define PHY_STAT_MASK 0x0007
383#define PHY_STAT_LAN_ON 3
384#define PHY_STAT_PWRDN 5
385
386/* OCP_POWER_CFG */
387#define EEE_CLKDIV_EN 0x8000
388#define EN_ALDPS 0x0004
389#define EN_10M_PLLOFF 0x0001
390
hayeswangac718b62013-05-02 16:01:25 +0000391/* OCP_EEE_CONFIG1 */
392#define RG_TXLPI_MSK_HFDUP 0x8000
393#define RG_MATCLR_EN 0x4000
394#define EEE_10_CAP 0x2000
395#define EEE_NWAY_EN 0x1000
396#define TX_QUIET_EN 0x0200
397#define RX_QUIET_EN 0x0100
hayeswangd24f6132014-09-25 20:54:01 +0800398#define sd_rise_time_mask 0x0070
hayeswang4c4a6b12014-09-25 20:54:00 +0800399#define sd_rise_time(x) (min(x, 7) << 4) /* bit 4 ~ 6 */
hayeswangac718b62013-05-02 16:01:25 +0000400#define RG_RXLPI_MSK_HFDUP 0x0008
401#define SDFALLTIME 0x0007 /* bit 0 ~ 2 */
402
403/* OCP_EEE_CONFIG2 */
404#define RG_LPIHYS_NUM 0x7000 /* bit 12 ~ 15 */
405#define RG_DACQUIET_EN 0x0400
406#define RG_LDVQUIET_EN 0x0200
407#define RG_CKRSEL 0x0020
408#define RG_EEEPRG_EN 0x0010
409
410/* OCP_EEE_CONFIG3 */
hayeswangd24f6132014-09-25 20:54:01 +0800411#define fast_snr_mask 0xff80
hayeswang4c4a6b12014-09-25 20:54:00 +0800412#define fast_snr(x) (min(x, 0x1ff) << 7) /* bit 7 ~ 15 */
hayeswangac718b62013-05-02 16:01:25 +0000413#define RG_LFS_SEL 0x0060 /* bit 6 ~ 5 */
414#define MSK_PH 0x0006 /* bit 0 ~ 3 */
415
416/* OCP_EEE_AR */
417/* bit[15:14] function */
418#define FUN_ADDR 0x0000
419#define FUN_DATA 0x4000
420/* bit[4:0] device addr */
hayeswangac718b62013-05-02 16:01:25 +0000421
hayeswang43779f82014-01-02 11:25:10 +0800422/* OCP_EEE_CFG */
423#define CTAP_SHORT_EN 0x0040
424#define EEE10_EN 0x0010
425
426/* OCP_DOWN_SPEED */
427#define EN_10M_BGOFF 0x0080
428
hayeswang43779f82014-01-02 11:25:10 +0800429/* OCP_ADC_CFG */
430#define CKADSEL_L 0x0100
431#define ADC_EN 0x0080
432#define EN_EMI_L 0x0040
433
434/* SRAM_LPF_CFG */
435#define LPF_AUTO_TUNE 0x8000
436
437/* SRAM_10M_AMP1 */
438#define GDAC_IB_UPALL 0x0008
439
440/* SRAM_10M_AMP2 */
441#define AMP_DN 0x0200
442
443/* SRAM_IMPEDANCE */
444#define RX_DRIVING_MASK 0x6000
445
hayeswangac718b62013-05-02 16:01:25 +0000446enum rtl_register_content {
hayeswang43779f82014-01-02 11:25:10 +0800447 _1000bps = 0x10,
hayeswangac718b62013-05-02 16:01:25 +0000448 _100bps = 0x08,
449 _10bps = 0x04,
450 LINK_STATUS = 0x02,
451 FULL_DUP = 0x01,
452};
453
hayeswang1764bcd2014-08-28 10:24:18 +0800454#define RTL8152_MAX_TX 4
hayeswangebc2ec482013-08-14 20:54:38 +0800455#define RTL8152_MAX_RX 10
hayeswang40a82912013-08-14 20:54:40 +0800456#define INTBUFSIZE 2
hayeswang8e1f51b2014-01-02 11:22:41 +0800457#define CRC_SIZE 4
458#define TX_ALIGN 4
459#define RX_ALIGN 8
hayeswang40a82912013-08-14 20:54:40 +0800460
461#define INTR_LINK 0x0004
hayeswangebc2ec482013-08-14 20:54:38 +0800462
hayeswangac718b62013-05-02 16:01:25 +0000463#define RTL8152_REQT_READ 0xc0
464#define RTL8152_REQT_WRITE 0x40
465#define RTL8152_REQ_GET_REGS 0x05
466#define RTL8152_REQ_SET_REGS 0x05
467
468#define BYTE_EN_DWORD 0xff
469#define BYTE_EN_WORD 0x33
470#define BYTE_EN_BYTE 0x11
471#define BYTE_EN_SIX_BYTES 0x3f
472#define BYTE_EN_START_MASK 0x0f
473#define BYTE_EN_END_MASK 0xf0
474
hayeswang69b4b7a2014-07-10 10:58:54 +0800475#define RTL8153_MAX_PACKET 9216 /* 9K */
476#define RTL8153_MAX_MTU (RTL8153_MAX_PACKET - VLAN_ETH_HLEN - VLAN_HLEN)
hayeswangac718b62013-05-02 16:01:25 +0000477#define RTL8152_RMS (VLAN_ETH_FRAME_LEN + VLAN_HLEN)
hayeswang69b4b7a2014-07-10 10:58:54 +0800478#define RTL8153_RMS RTL8153_MAX_PACKET
hayeswangb8125402014-07-03 11:55:48 +0800479#define RTL8152_TX_TIMEOUT (5 * HZ)
hayeswangd823ab62015-01-12 12:06:23 +0800480#define RTL8152_NAPI_WEIGHT 64
hayeswangac718b62013-05-02 16:01:25 +0000481
482/* rtl8152 flags */
483enum rtl8152_flags {
484 RTL8152_UNPLUG = 0,
hayeswangac718b62013-05-02 16:01:25 +0000485 RTL8152_SET_RX_MODE,
hayeswang40a82912013-08-14 20:54:40 +0800486 WORK_ENABLE,
487 RTL8152_LINK_CHG,
hayeswang9a4be1b2014-02-18 21:49:07 +0800488 SELECTIVE_SUSPEND,
hayeswangaa66a5f2014-02-18 21:49:04 +0800489 PHY_RESET,
hayeswangd823ab62015-01-12 12:06:23 +0800490 SCHEDULE_NAPI,
hayeswangac718b62013-05-02 16:01:25 +0000491};
492
493/* Define these values to match your device */
494#define VENDOR_ID_REALTEK 0x0bda
hayeswang43779f82014-01-02 11:25:10 +0800495#define VENDOR_ID_SAMSUNG 0x04e8
Christian Hesse347eec32015-03-31 14:10:07 +0200496#define VENDOR_ID_LENOVO 0x17ef
Zheng Liud065c3c12015-07-07 13:54:12 -0700497#define VENDOR_ID_NVIDIA 0x0955
hayeswangac718b62013-05-02 16:01:25 +0000498
499#define MCU_TYPE_PLA 0x0100
500#define MCU_TYPE_USB 0x0000
501
hayeswang4f1d4d52014-03-11 16:24:19 +0800502struct tally_counter {
503 __le64 tx_packets;
504 __le64 rx_packets;
505 __le64 tx_errors;
506 __le32 rx_errors;
507 __le16 rx_missed;
508 __le16 align_errors;
509 __le32 tx_one_collision;
510 __le32 tx_multi_collision;
511 __le64 rx_unicast;
512 __le64 rx_broadcast;
513 __le32 rx_multicast;
514 __le16 tx_aborted;
hayeswangf37119c2014-10-28 14:05:51 +0800515 __le16 tx_underrun;
hayeswang4f1d4d52014-03-11 16:24:19 +0800516};
517
hayeswangac718b62013-05-02 16:01:25 +0000518struct rx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800519 __le32 opts1;
hayeswangac718b62013-05-02 16:01:25 +0000520#define RX_LEN_MASK 0x7fff
hayeswang565cab02014-03-07 11:04:38 +0800521
hayeswang500b6d72013-11-20 17:30:57 +0800522 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800523#define RD_UDP_CS BIT(23)
524#define RD_TCP_CS BIT(22)
525#define RD_IPV6_CS BIT(20)
526#define RD_IPV4_CS BIT(19)
hayeswang565cab02014-03-07 11:04:38 +0800527
hayeswang500b6d72013-11-20 17:30:57 +0800528 __le32 opts3;
hayeswangf5aaaa62015-02-06 11:30:51 +0800529#define IPF BIT(23) /* IP checksum fail */
530#define UDPF BIT(22) /* UDP checksum fail */
531#define TCPF BIT(21) /* TCP checksum fail */
532#define RX_VLAN_TAG BIT(16)
hayeswang565cab02014-03-07 11:04:38 +0800533
hayeswang500b6d72013-11-20 17:30:57 +0800534 __le32 opts4;
535 __le32 opts5;
536 __le32 opts6;
hayeswangac718b62013-05-02 16:01:25 +0000537};
538
539struct tx_desc {
hayeswang500b6d72013-11-20 17:30:57 +0800540 __le32 opts1;
hayeswangf5aaaa62015-02-06 11:30:51 +0800541#define TX_FS BIT(31) /* First segment of a packet */
542#define TX_LS BIT(30) /* Final segment of a packet */
543#define GTSENDV4 BIT(28)
544#define GTSENDV6 BIT(27)
hayeswang60c89072014-03-07 11:04:39 +0800545#define GTTCPHO_SHIFT 18
hayeswang6128d1bb2014-03-07 11:04:40 +0800546#define GTTCPHO_MAX 0x7fU
hayeswang60c89072014-03-07 11:04:39 +0800547#define TX_LEN_MAX 0x3ffffU
hayeswang5bd23882013-08-14 20:54:39 +0800548
hayeswang500b6d72013-11-20 17:30:57 +0800549 __le32 opts2;
hayeswangf5aaaa62015-02-06 11:30:51 +0800550#define UDP_CS BIT(31) /* Calculate UDP/IP checksum */
551#define TCP_CS BIT(30) /* Calculate TCP/IP checksum */
552#define IPV4_CS BIT(29) /* Calculate IPv4 checksum */
553#define IPV6_CS BIT(28) /* Calculate IPv6 checksum */
hayeswang60c89072014-03-07 11:04:39 +0800554#define MSS_SHIFT 17
555#define MSS_MAX 0x7ffU
556#define TCPHO_SHIFT 17
hayeswang6128d1bb2014-03-07 11:04:40 +0800557#define TCPHO_MAX 0x7ffU
hayeswangf5aaaa62015-02-06 11:30:51 +0800558#define TX_VLAN_TAG BIT(16)
hayeswangac718b62013-05-02 16:01:25 +0000559};
560
hayeswangdff4e8a2013-08-16 16:09:33 +0800561struct r8152;
562
hayeswangebc2ec482013-08-14 20:54:38 +0800563struct rx_agg {
564 struct list_head list;
565 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800566 struct r8152 *context;
hayeswangebc2ec482013-08-14 20:54:38 +0800567 void *buffer;
568 void *head;
569};
570
571struct tx_agg {
572 struct list_head list;
573 struct urb *urb;
hayeswangdff4e8a2013-08-16 16:09:33 +0800574 struct r8152 *context;
hayeswangebc2ec482013-08-14 20:54:38 +0800575 void *buffer;
576 void *head;
577 u32 skb_num;
578 u32 skb_len;
579};
580
hayeswangac718b62013-05-02 16:01:25 +0000581struct r8152 {
582 unsigned long flags;
583 struct usb_device *udev;
hayeswangd823ab62015-01-12 12:06:23 +0800584 struct napi_struct napi;
hayeswang40a82912013-08-14 20:54:40 +0800585 struct usb_interface *intf;
hayeswangac718b62013-05-02 16:01:25 +0000586 struct net_device *netdev;
hayeswang40a82912013-08-14 20:54:40 +0800587 struct urb *intr_urb;
hayeswangebc2ec482013-08-14 20:54:38 +0800588 struct tx_agg tx_info[RTL8152_MAX_TX];
589 struct rx_agg rx_info[RTL8152_MAX_RX];
590 struct list_head rx_done, tx_free;
hayeswangd823ab62015-01-12 12:06:23 +0800591 struct sk_buff_head tx_queue, rx_queue;
hayeswangebc2ec482013-08-14 20:54:38 +0800592 spinlock_t rx_lock, tx_lock;
hayeswangac718b62013-05-02 16:01:25 +0000593 struct delayed_work schedule;
594 struct mii_if_info mii;
hayeswangb5403272014-10-09 18:00:26 +0800595 struct mutex control; /* use for hw setting */
hayeswangc81229c2014-01-02 11:22:42 +0800596
597 struct rtl_ops {
598 void (*init)(struct r8152 *);
599 int (*enable)(struct r8152 *);
600 void (*disable)(struct r8152 *);
hayeswang7e9da482014-02-18 21:49:05 +0800601 void (*up)(struct r8152 *);
hayeswangc81229c2014-01-02 11:22:42 +0800602 void (*down)(struct r8152 *);
603 void (*unload)(struct r8152 *);
hayeswangdf35d282014-09-25 20:54:02 +0800604 int (*eee_get)(struct r8152 *, struct ethtool_eee *);
605 int (*eee_set)(struct r8152 *, struct ethtool_eee *);
hayeswangc81229c2014-01-02 11:22:42 +0800606 } rtl_ops;
607
hayeswang40a82912013-08-14 20:54:40 +0800608 int intr_interval;
hayeswang21ff2e82014-02-18 21:49:06 +0800609 u32 saved_wolopts;
hayeswangac718b62013-05-02 16:01:25 +0000610 u32 msg_enable;
hayeswangdd1b1192013-11-20 17:30:56 +0800611 u32 tx_qlen;
hayeswang464ec102015-02-12 14:33:46 +0800612 u32 coalesce;
hayeswangac718b62013-05-02 16:01:25 +0000613 u16 ocp_base;
hayeswang40a82912013-08-14 20:54:40 +0800614 u8 *intr_buff;
hayeswangac718b62013-05-02 16:01:25 +0000615 u8 version;
hayeswangac718b62013-05-02 16:01:25 +0000616};
617
618enum rtl_version {
619 RTL_VER_UNKNOWN = 0,
620 RTL_VER_01,
hayeswang43779f82014-01-02 11:25:10 +0800621 RTL_VER_02,
622 RTL_VER_03,
623 RTL_VER_04,
624 RTL_VER_05,
625 RTL_VER_MAX
hayeswangac718b62013-05-02 16:01:25 +0000626};
627
hayeswang60c89072014-03-07 11:04:39 +0800628enum tx_csum_stat {
629 TX_CSUM_SUCCESS = 0,
630 TX_CSUM_TSO,
631 TX_CSUM_NONE
632};
633
hayeswangac718b62013-05-02 16:01:25 +0000634/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
635 * The RTL chips use a 64 element hash table based on the Ethernet CRC.
636 */
637static const int multicast_filter_limit = 32;
hayeswang52aec122014-09-02 10:27:52 +0800638static unsigned int agg_buf_sz = 16384;
hayeswangac718b62013-05-02 16:01:25 +0000639
hayeswang52aec122014-09-02 10:27:52 +0800640#define RTL_LIMITED_TSO_SIZE (agg_buf_sz - sizeof(struct tx_desc) - \
hayeswang60c89072014-03-07 11:04:39 +0800641 VLAN_ETH_HLEN - VLAN_HLEN)
642
hayeswangac718b62013-05-02 16:01:25 +0000643static
644int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
645{
hayeswang31787f52013-07-31 17:21:25 +0800646 int ret;
647 void *tmp;
648
649 tmp = kmalloc(size, GFP_KERNEL);
650 if (!tmp)
651 return -ENOMEM;
652
653 ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +0800654 RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
655 value, index, tmp, size, 500);
hayeswang31787f52013-07-31 17:21:25 +0800656
657 memcpy(data, tmp, size);
658 kfree(tmp);
659
660 return ret;
hayeswangac718b62013-05-02 16:01:25 +0000661}
662
663static
664int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
665{
hayeswang31787f52013-07-31 17:21:25 +0800666 int ret;
667 void *tmp;
668
Benoit Tainec4438f02014-05-26 17:21:23 +0200669 tmp = kmemdup(data, size, GFP_KERNEL);
hayeswang31787f52013-07-31 17:21:25 +0800670 if (!tmp)
671 return -ENOMEM;
672
hayeswang31787f52013-07-31 17:21:25 +0800673 ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
hayeswangb209af92014-08-25 15:53:00 +0800674 RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
675 value, index, tmp, size, 500);
hayeswang31787f52013-07-31 17:21:25 +0800676
677 kfree(tmp);
hayeswangdb8515e2014-03-06 15:07:16 +0800678
hayeswang31787f52013-07-31 17:21:25 +0800679 return ret;
hayeswangac718b62013-05-02 16:01:25 +0000680}
681
682static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
hayeswangb209af92014-08-25 15:53:00 +0800683 void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +0000684{
hayeswang45f4a192014-01-06 17:08:41 +0800685 u16 limit = 64;
686 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +0000687
688 if (test_bit(RTL8152_UNPLUG, &tp->flags))
689 return -ENODEV;
690
691 /* both size and indix must be 4 bytes align */
692 if ((size & 3) || !size || (index & 3) || !data)
693 return -EPERM;
694
695 if ((u32)index + (u32)size > 0xffff)
696 return -EPERM;
697
698 while (size) {
699 if (size > limit) {
700 ret = get_registers(tp, index, type, limit, data);
701 if (ret < 0)
702 break;
703
704 index += limit;
705 data += limit;
706 size -= limit;
707 } else {
708 ret = get_registers(tp, index, type, size, data);
709 if (ret < 0)
710 break;
711
712 index += size;
713 data += size;
714 size = 0;
715 break;
716 }
717 }
718
hayeswang67610492014-10-30 11:46:40 +0800719 if (ret == -ENODEV)
720 set_bit(RTL8152_UNPLUG, &tp->flags);
721
hayeswangac718b62013-05-02 16:01:25 +0000722 return ret;
723}
724
725static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen,
hayeswangb209af92014-08-25 15:53:00 +0800726 u16 size, void *data, u16 type)
hayeswangac718b62013-05-02 16:01:25 +0000727{
hayeswang45f4a192014-01-06 17:08:41 +0800728 int ret;
729 u16 byteen_start, byteen_end, byen;
730 u16 limit = 512;
hayeswangac718b62013-05-02 16:01:25 +0000731
732 if (test_bit(RTL8152_UNPLUG, &tp->flags))
733 return -ENODEV;
734
735 /* both size and indix must be 4 bytes align */
736 if ((size & 3) || !size || (index & 3) || !data)
737 return -EPERM;
738
739 if ((u32)index + (u32)size > 0xffff)
740 return -EPERM;
741
742 byteen_start = byteen & BYTE_EN_START_MASK;
743 byteen_end = byteen & BYTE_EN_END_MASK;
744
745 byen = byteen_start | (byteen_start << 4);
746 ret = set_registers(tp, index, type | byen, 4, data);
747 if (ret < 0)
748 goto error1;
749
750 index += 4;
751 data += 4;
752 size -= 4;
753
754 if (size) {
755 size -= 4;
756
757 while (size) {
758 if (size > limit) {
759 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +0800760 type | BYTE_EN_DWORD,
761 limit, data);
hayeswangac718b62013-05-02 16:01:25 +0000762 if (ret < 0)
763 goto error1;
764
765 index += limit;
766 data += limit;
767 size -= limit;
768 } else {
769 ret = set_registers(tp, index,
hayeswangb209af92014-08-25 15:53:00 +0800770 type | BYTE_EN_DWORD,
771 size, data);
hayeswangac718b62013-05-02 16:01:25 +0000772 if (ret < 0)
773 goto error1;
774
775 index += size;
776 data += size;
777 size = 0;
778 break;
779 }
780 }
781
782 byen = byteen_end | (byteen_end >> 4);
783 ret = set_registers(tp, index, type | byen, 4, data);
784 if (ret < 0)
785 goto error1;
786 }
787
788error1:
hayeswang67610492014-10-30 11:46:40 +0800789 if (ret == -ENODEV)
790 set_bit(RTL8152_UNPLUG, &tp->flags);
791
hayeswangac718b62013-05-02 16:01:25 +0000792 return ret;
793}
794
795static inline
796int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
797{
798 return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA);
799}
800
801static inline
802int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
803{
804 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA);
805}
806
807static inline
808int usb_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
809{
810 return generic_ocp_read(tp, index, size, data, MCU_TYPE_USB);
811}
812
813static inline
814int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
815{
816 return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB);
817}
818
819static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index)
820{
hayeswangc8826de2013-07-31 17:21:26 +0800821 __le32 data;
hayeswangac718b62013-05-02 16:01:25 +0000822
hayeswangc8826de2013-07-31 17:21:26 +0800823 generic_ocp_read(tp, index, sizeof(data), &data, type);
hayeswangac718b62013-05-02 16:01:25 +0000824
825 return __le32_to_cpu(data);
826}
827
828static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data)
829{
hayeswangc8826de2013-07-31 17:21:26 +0800830 __le32 tmp = __cpu_to_le32(data);
831
832 generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000833}
834
835static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index)
836{
837 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +0800838 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000839 u8 shift = index & 2;
840
841 index &= ~3;
842
hayeswangc8826de2013-07-31 17:21:26 +0800843 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000844
hayeswangc8826de2013-07-31 17:21:26 +0800845 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +0000846 data >>= (shift * 8);
847 data &= 0xffff;
848
849 return (u16)data;
850}
851
852static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data)
853{
hayeswangc8826de2013-07-31 17:21:26 +0800854 u32 mask = 0xffff;
855 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000856 u16 byen = BYTE_EN_WORD;
857 u8 shift = index & 2;
858
859 data &= mask;
860
861 if (index & 2) {
862 byen <<= shift;
863 mask <<= (shift * 8);
864 data <<= (shift * 8);
865 index &= ~3;
866 }
867
hayeswangc8826de2013-07-31 17:21:26 +0800868 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +0000869
hayeswangc8826de2013-07-31 17:21:26 +0800870 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000871}
872
873static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index)
874{
875 u32 data;
hayeswangc8826de2013-07-31 17:21:26 +0800876 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000877 u8 shift = index & 3;
878
879 index &= ~3;
880
hayeswangc8826de2013-07-31 17:21:26 +0800881 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000882
hayeswangc8826de2013-07-31 17:21:26 +0800883 data = __le32_to_cpu(tmp);
hayeswangac718b62013-05-02 16:01:25 +0000884 data >>= (shift * 8);
885 data &= 0xff;
886
887 return (u8)data;
888}
889
890static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data)
891{
hayeswangc8826de2013-07-31 17:21:26 +0800892 u32 mask = 0xff;
893 __le32 tmp;
hayeswangac718b62013-05-02 16:01:25 +0000894 u16 byen = BYTE_EN_BYTE;
895 u8 shift = index & 3;
896
897 data &= mask;
898
899 if (index & 3) {
900 byen <<= shift;
901 mask <<= (shift * 8);
902 data <<= (shift * 8);
903 index &= ~3;
904 }
905
hayeswangc8826de2013-07-31 17:21:26 +0800906 tmp = __cpu_to_le32(data);
hayeswangac718b62013-05-02 16:01:25 +0000907
hayeswangc8826de2013-07-31 17:21:26 +0800908 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
hayeswangac718b62013-05-02 16:01:25 +0000909}
910
hayeswangac244d32014-01-02 11:22:40 +0800911static u16 ocp_reg_read(struct r8152 *tp, u16 addr)
912{
913 u16 ocp_base, ocp_index;
914
915 ocp_base = addr & 0xf000;
916 if (ocp_base != tp->ocp_base) {
917 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
918 tp->ocp_base = ocp_base;
919 }
920
921 ocp_index = (addr & 0x0fff) | 0xb000;
922 return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index);
923}
924
hayeswange3fe0b12014-01-02 11:22:39 +0800925static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data)
926{
927 u16 ocp_base, ocp_index;
928
929 ocp_base = addr & 0xf000;
930 if (ocp_base != tp->ocp_base) {
931 ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
932 tp->ocp_base = ocp_base;
933 }
934
935 ocp_index = (addr & 0x0fff) | 0xb000;
936 ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data);
937}
938
hayeswangac244d32014-01-02 11:22:40 +0800939static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value)
hayeswangac718b62013-05-02 16:01:25 +0000940{
hayeswangac244d32014-01-02 11:22:40 +0800941 ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value);
hayeswangac718b62013-05-02 16:01:25 +0000942}
943
hayeswangac244d32014-01-02 11:22:40 +0800944static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr)
hayeswangac718b62013-05-02 16:01:25 +0000945{
hayeswangac244d32014-01-02 11:22:40 +0800946 return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2);
hayeswangac718b62013-05-02 16:01:25 +0000947}
948
hayeswang43779f82014-01-02 11:25:10 +0800949static void sram_write(struct r8152 *tp, u16 addr, u16 data)
950{
951 ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
952 ocp_reg_write(tp, OCP_SRAM_DATA, data);
953}
954
hayeswangac718b62013-05-02 16:01:25 +0000955static int read_mii_word(struct net_device *netdev, int phy_id, int reg)
956{
957 struct r8152 *tp = netdev_priv(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +0800958 int ret;
hayeswangac718b62013-05-02 16:01:25 +0000959
hayeswang68714382014-04-11 17:54:31 +0800960 if (test_bit(RTL8152_UNPLUG, &tp->flags))
961 return -ENODEV;
962
hayeswangac718b62013-05-02 16:01:25 +0000963 if (phy_id != R8152_PHY_ID)
964 return -EINVAL;
965
hayeswang9a4be1b2014-02-18 21:49:07 +0800966 ret = r8152_mdio_read(tp, reg);
967
hayeswang9a4be1b2014-02-18 21:49:07 +0800968 return ret;
hayeswangac718b62013-05-02 16:01:25 +0000969}
970
971static
972void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val)
973{
974 struct r8152 *tp = netdev_priv(netdev);
975
hayeswang68714382014-04-11 17:54:31 +0800976 if (test_bit(RTL8152_UNPLUG, &tp->flags))
977 return;
978
hayeswangac718b62013-05-02 16:01:25 +0000979 if (phy_id != R8152_PHY_ID)
980 return;
981
982 r8152_mdio_write(tp, reg, val);
983}
984
hayeswangb209af92014-08-25 15:53:00 +0800985static int
986r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
hayeswangebc2ec482013-08-14 20:54:38 +0800987
hayeswang8ba789a2014-09-04 16:15:41 +0800988static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
989{
990 struct r8152 *tp = netdev_priv(netdev);
991 struct sockaddr *addr = p;
hayeswangea6a7112014-10-02 17:03:12 +0800992 int ret = -EADDRNOTAVAIL;
hayeswang8ba789a2014-09-04 16:15:41 +0800993
994 if (!is_valid_ether_addr(addr->sa_data))
hayeswangea6a7112014-10-02 17:03:12 +0800995 goto out1;
996
997 ret = usb_autopm_get_interface(tp->intf);
998 if (ret < 0)
999 goto out1;
hayeswang8ba789a2014-09-04 16:15:41 +08001000
hayeswangb5403272014-10-09 18:00:26 +08001001 mutex_lock(&tp->control);
1002
hayeswang8ba789a2014-09-04 16:15:41 +08001003 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1004
1005 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
1006 pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data);
1007 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
1008
hayeswangb5403272014-10-09 18:00:26 +08001009 mutex_unlock(&tp->control);
1010
hayeswangea6a7112014-10-02 17:03:12 +08001011 usb_autopm_put_interface(tp->intf);
1012out1:
1013 return ret;
hayeswang8ba789a2014-09-04 16:15:41 +08001014}
1015
hayeswang179bb6d2014-09-04 16:15:42 +08001016static int set_ethernet_addr(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00001017{
1018 struct net_device *dev = tp->netdev;
hayeswang179bb6d2014-09-04 16:15:42 +08001019 struct sockaddr sa;
hayeswang8a91c822014-02-18 21:49:01 +08001020 int ret;
hayeswangac718b62013-05-02 16:01:25 +00001021
hayeswang8a91c822014-02-18 21:49:01 +08001022 if (tp->version == RTL_VER_01)
hayeswang179bb6d2014-09-04 16:15:42 +08001023 ret = pla_ocp_read(tp, PLA_IDR, 8, sa.sa_data);
hayeswang8a91c822014-02-18 21:49:01 +08001024 else
hayeswang179bb6d2014-09-04 16:15:42 +08001025 ret = pla_ocp_read(tp, PLA_BACKUP, 8, sa.sa_data);
hayeswang8a91c822014-02-18 21:49:01 +08001026
1027 if (ret < 0) {
hayeswang179bb6d2014-09-04 16:15:42 +08001028 netif_err(tp, probe, dev, "Get ether addr fail\n");
1029 } else if (!is_valid_ether_addr(sa.sa_data)) {
1030 netif_err(tp, probe, dev, "Invalid ether addr %pM\n",
1031 sa.sa_data);
1032 eth_hw_addr_random(dev);
1033 ether_addr_copy(sa.sa_data, dev->dev_addr);
1034 ret = rtl8152_set_mac_address(dev, &sa);
1035 netif_info(tp, probe, dev, "Random ether addr %pM\n",
1036 sa.sa_data);
hayeswang8a91c822014-02-18 21:49:01 +08001037 } else {
hayeswang179bb6d2014-09-04 16:15:42 +08001038 if (tp->version == RTL_VER_01)
1039 ether_addr_copy(dev->dev_addr, sa.sa_data);
1040 else
1041 ret = rtl8152_set_mac_address(dev, &sa);
hayeswangac718b62013-05-02 16:01:25 +00001042 }
hayeswang179bb6d2014-09-04 16:15:42 +08001043
1044 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001045}
1046
hayeswangac718b62013-05-02 16:01:25 +00001047static void read_bulk_callback(struct urb *urb)
1048{
hayeswangac718b62013-05-02 16:01:25 +00001049 struct net_device *netdev;
hayeswangac718b62013-05-02 16:01:25 +00001050 int status = urb->status;
hayeswangebc2ec482013-08-14 20:54:38 +08001051 struct rx_agg *agg;
1052 struct r8152 *tp;
hayeswangac718b62013-05-02 16:01:25 +00001053
hayeswangebc2ec482013-08-14 20:54:38 +08001054 agg = urb->context;
1055 if (!agg)
1056 return;
1057
1058 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001059 if (!tp)
1060 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001061
hayeswangac718b62013-05-02 16:01:25 +00001062 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1063 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001064
1065 if (!test_bit(WORK_ENABLE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00001066 return;
1067
hayeswangebc2ec482013-08-14 20:54:38 +08001068 netdev = tp->netdev;
hayeswang7559fb2f2013-08-16 16:09:38 +08001069
1070 /* When link down, the driver would cancel all bulks. */
1071 /* This avoid the re-submitting bulk */
hayeswangebc2ec482013-08-14 20:54:38 +08001072 if (!netif_carrier_ok(netdev))
1073 return;
1074
hayeswang9a4be1b2014-02-18 21:49:07 +08001075 usb_mark_last_busy(tp->udev);
1076
hayeswangac718b62013-05-02 16:01:25 +00001077 switch (status) {
1078 case 0:
hayeswangebc2ec482013-08-14 20:54:38 +08001079 if (urb->actual_length < ETH_ZLEN)
1080 break;
1081
hayeswang2685d412014-03-07 11:04:34 +08001082 spin_lock(&tp->rx_lock);
hayeswangebc2ec482013-08-14 20:54:38 +08001083 list_add_tail(&agg->list, &tp->rx_done);
hayeswang2685d412014-03-07 11:04:34 +08001084 spin_unlock(&tp->rx_lock);
hayeswangd823ab62015-01-12 12:06:23 +08001085 napi_schedule(&tp->napi);
hayeswangebc2ec482013-08-14 20:54:38 +08001086 return;
hayeswangac718b62013-05-02 16:01:25 +00001087 case -ESHUTDOWN:
1088 set_bit(RTL8152_UNPLUG, &tp->flags);
1089 netif_device_detach(tp->netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08001090 return;
hayeswangac718b62013-05-02 16:01:25 +00001091 case -ENOENT:
1092 return; /* the urb is in unlink state */
1093 case -ETIME:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001094 if (net_ratelimit())
1095 netdev_warn(netdev, "maybe reset is needed?\n");
hayeswangebc2ec482013-08-14 20:54:38 +08001096 break;
hayeswangac718b62013-05-02 16:01:25 +00001097 default:
Hayes Wang4a8deae2014-01-07 11:18:22 +08001098 if (net_ratelimit())
1099 netdev_warn(netdev, "Rx status %d\n", status);
hayeswangebc2ec482013-08-14 20:54:38 +08001100 break;
hayeswangac718b62013-05-02 16:01:25 +00001101 }
1102
hayeswanga0fccd42014-11-20 10:29:05 +08001103 r8152_submit_rx(tp, agg, GFP_ATOMIC);
hayeswangac718b62013-05-02 16:01:25 +00001104}
1105
1106static void write_bulk_callback(struct urb *urb)
1107{
hayeswangebc2ec482013-08-14 20:54:38 +08001108 struct net_device_stats *stats;
hayeswangd104eaf2014-03-06 15:07:17 +08001109 struct net_device *netdev;
hayeswangebc2ec482013-08-14 20:54:38 +08001110 struct tx_agg *agg;
hayeswangac718b62013-05-02 16:01:25 +00001111 struct r8152 *tp;
1112 int status = urb->status;
1113
hayeswangebc2ec482013-08-14 20:54:38 +08001114 agg = urb->context;
1115 if (!agg)
1116 return;
1117
1118 tp = agg->context;
hayeswangac718b62013-05-02 16:01:25 +00001119 if (!tp)
1120 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001121
hayeswangd104eaf2014-03-06 15:07:17 +08001122 netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08001123 stats = &netdev->stats;
hayeswangebc2ec482013-08-14 20:54:38 +08001124 if (status) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08001125 if (net_ratelimit())
hayeswangd104eaf2014-03-06 15:07:17 +08001126 netdev_warn(netdev, "Tx status %d\n", status);
hayeswangebc2ec482013-08-14 20:54:38 +08001127 stats->tx_errors += agg->skb_num;
1128 } else {
1129 stats->tx_packets += agg->skb_num;
1130 stats->tx_bytes += agg->skb_len;
1131 }
1132
hayeswang2685d412014-03-07 11:04:34 +08001133 spin_lock(&tp->tx_lock);
hayeswangebc2ec482013-08-14 20:54:38 +08001134 list_add_tail(&agg->list, &tp->tx_free);
hayeswang2685d412014-03-07 11:04:34 +08001135 spin_unlock(&tp->tx_lock);
hayeswangebc2ec482013-08-14 20:54:38 +08001136
hayeswang9a4be1b2014-02-18 21:49:07 +08001137 usb_autopm_put_interface_async(tp->intf);
1138
hayeswangd104eaf2014-03-06 15:07:17 +08001139 if (!netif_carrier_ok(netdev))
hayeswangac718b62013-05-02 16:01:25 +00001140 return;
hayeswangebc2ec482013-08-14 20:54:38 +08001141
1142 if (!test_bit(WORK_ENABLE, &tp->flags))
1143 return;
1144
1145 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1146 return;
1147
1148 if (!skb_queue_empty(&tp->tx_queue))
hayeswangd823ab62015-01-12 12:06:23 +08001149 napi_schedule(&tp->napi);
hayeswangebc2ec482013-08-14 20:54:38 +08001150}
1151
hayeswang40a82912013-08-14 20:54:40 +08001152static void intr_callback(struct urb *urb)
1153{
1154 struct r8152 *tp;
hayeswang500b6d72013-11-20 17:30:57 +08001155 __le16 *d;
hayeswang40a82912013-08-14 20:54:40 +08001156 int status = urb->status;
1157 int res;
1158
1159 tp = urb->context;
1160 if (!tp)
1161 return;
1162
1163 if (!test_bit(WORK_ENABLE, &tp->flags))
1164 return;
1165
1166 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1167 return;
1168
1169 switch (status) {
1170 case 0: /* success */
1171 break;
1172 case -ECONNRESET: /* unlink */
1173 case -ESHUTDOWN:
1174 netif_device_detach(tp->netdev);
1175 case -ENOENT:
hayeswangd59c8762014-10-31 13:35:57 +08001176 case -EPROTO:
1177 netif_info(tp, intr, tp->netdev,
1178 "Stop submitting intr, status %d\n", status);
hayeswang40a82912013-08-14 20:54:40 +08001179 return;
1180 case -EOVERFLOW:
1181 netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n");
1182 goto resubmit;
1183 /* -EPIPE: should clear the halt */
1184 default:
1185 netif_info(tp, intr, tp->netdev, "intr status %d\n", status);
1186 goto resubmit;
1187 }
1188
1189 d = urb->transfer_buffer;
1190 if (INTR_LINK & __le16_to_cpu(d[0])) {
hayeswang51d979f2015-02-06 11:30:47 +08001191 if (!netif_carrier_ok(tp->netdev)) {
hayeswang40a82912013-08-14 20:54:40 +08001192 set_bit(RTL8152_LINK_CHG, &tp->flags);
1193 schedule_delayed_work(&tp->schedule, 0);
1194 }
1195 } else {
hayeswang51d979f2015-02-06 11:30:47 +08001196 if (netif_carrier_ok(tp->netdev)) {
hayeswang40a82912013-08-14 20:54:40 +08001197 set_bit(RTL8152_LINK_CHG, &tp->flags);
1198 schedule_delayed_work(&tp->schedule, 0);
1199 }
1200 }
1201
1202resubmit:
1203 res = usb_submit_urb(urb, GFP_ATOMIC);
hayeswang67610492014-10-30 11:46:40 +08001204 if (res == -ENODEV) {
1205 set_bit(RTL8152_UNPLUG, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08001206 netif_device_detach(tp->netdev);
hayeswang67610492014-10-30 11:46:40 +08001207 } else if (res) {
hayeswang40a82912013-08-14 20:54:40 +08001208 netif_err(tp, intr, tp->netdev,
Hayes Wang4a8deae2014-01-07 11:18:22 +08001209 "can't resubmit intr, status %d\n", res);
hayeswang67610492014-10-30 11:46:40 +08001210 }
hayeswang40a82912013-08-14 20:54:40 +08001211}
1212
hayeswangebc2ec482013-08-14 20:54:38 +08001213static inline void *rx_agg_align(void *data)
1214{
hayeswang8e1f51b2014-01-02 11:22:41 +08001215 return (void *)ALIGN((uintptr_t)data, RX_ALIGN);
hayeswangebc2ec482013-08-14 20:54:38 +08001216}
1217
1218static inline void *tx_agg_align(void *data)
1219{
hayeswang8e1f51b2014-01-02 11:22:41 +08001220 return (void *)ALIGN((uintptr_t)data, TX_ALIGN);
hayeswangebc2ec482013-08-14 20:54:38 +08001221}
1222
1223static void free_all_mem(struct r8152 *tp)
1224{
1225 int i;
1226
1227 for (i = 0; i < RTL8152_MAX_RX; i++) {
hayeswang9629e3c2014-01-15 10:42:15 +08001228 usb_free_urb(tp->rx_info[i].urb);
1229 tp->rx_info[i].urb = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001230
hayeswang9629e3c2014-01-15 10:42:15 +08001231 kfree(tp->rx_info[i].buffer);
1232 tp->rx_info[i].buffer = NULL;
1233 tp->rx_info[i].head = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001234 }
1235
1236 for (i = 0; i < RTL8152_MAX_TX; i++) {
hayeswang9629e3c2014-01-15 10:42:15 +08001237 usb_free_urb(tp->tx_info[i].urb);
1238 tp->tx_info[i].urb = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001239
hayeswang9629e3c2014-01-15 10:42:15 +08001240 kfree(tp->tx_info[i].buffer);
1241 tp->tx_info[i].buffer = NULL;
1242 tp->tx_info[i].head = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001243 }
hayeswang40a82912013-08-14 20:54:40 +08001244
hayeswang9629e3c2014-01-15 10:42:15 +08001245 usb_free_urb(tp->intr_urb);
1246 tp->intr_urb = NULL;
hayeswang40a82912013-08-14 20:54:40 +08001247
hayeswang9629e3c2014-01-15 10:42:15 +08001248 kfree(tp->intr_buff);
1249 tp->intr_buff = NULL;
hayeswangebc2ec482013-08-14 20:54:38 +08001250}
1251
1252static int alloc_all_mem(struct r8152 *tp)
1253{
1254 struct net_device *netdev = tp->netdev;
hayeswang40a82912013-08-14 20:54:40 +08001255 struct usb_interface *intf = tp->intf;
1256 struct usb_host_interface *alt = intf->cur_altsetting;
1257 struct usb_host_endpoint *ep_intr = alt->endpoint + 2;
hayeswangebc2ec482013-08-14 20:54:38 +08001258 struct urb *urb;
1259 int node, i;
1260 u8 *buf;
1261
1262 node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1263
1264 spin_lock_init(&tp->rx_lock);
1265 spin_lock_init(&tp->tx_lock);
hayeswangebc2ec482013-08-14 20:54:38 +08001266 INIT_LIST_HEAD(&tp->tx_free);
1267 skb_queue_head_init(&tp->tx_queue);
hayeswangd823ab62015-01-12 12:06:23 +08001268 skb_queue_head_init(&tp->rx_queue);
hayeswangebc2ec482013-08-14 20:54:38 +08001269
1270 for (i = 0; i < RTL8152_MAX_RX; i++) {
hayeswang52aec122014-09-02 10:27:52 +08001271 buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
hayeswangebc2ec482013-08-14 20:54:38 +08001272 if (!buf)
1273 goto err1;
1274
1275 if (buf != rx_agg_align(buf)) {
1276 kfree(buf);
hayeswang52aec122014-09-02 10:27:52 +08001277 buf = kmalloc_node(agg_buf_sz + RX_ALIGN, GFP_KERNEL,
hayeswang8e1f51b2014-01-02 11:22:41 +08001278 node);
hayeswangebc2ec482013-08-14 20:54:38 +08001279 if (!buf)
1280 goto err1;
1281 }
1282
1283 urb = usb_alloc_urb(0, GFP_KERNEL);
1284 if (!urb) {
1285 kfree(buf);
1286 goto err1;
1287 }
1288
1289 INIT_LIST_HEAD(&tp->rx_info[i].list);
1290 tp->rx_info[i].context = tp;
1291 tp->rx_info[i].urb = urb;
1292 tp->rx_info[i].buffer = buf;
1293 tp->rx_info[i].head = rx_agg_align(buf);
1294 }
1295
1296 for (i = 0; i < RTL8152_MAX_TX; i++) {
hayeswang52aec122014-09-02 10:27:52 +08001297 buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
hayeswangebc2ec482013-08-14 20:54:38 +08001298 if (!buf)
1299 goto err1;
1300
1301 if (buf != tx_agg_align(buf)) {
1302 kfree(buf);
hayeswang52aec122014-09-02 10:27:52 +08001303 buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL,
hayeswang8e1f51b2014-01-02 11:22:41 +08001304 node);
hayeswangebc2ec482013-08-14 20:54:38 +08001305 if (!buf)
1306 goto err1;
1307 }
1308
1309 urb = usb_alloc_urb(0, GFP_KERNEL);
1310 if (!urb) {
1311 kfree(buf);
1312 goto err1;
1313 }
1314
1315 INIT_LIST_HEAD(&tp->tx_info[i].list);
1316 tp->tx_info[i].context = tp;
1317 tp->tx_info[i].urb = urb;
1318 tp->tx_info[i].buffer = buf;
1319 tp->tx_info[i].head = tx_agg_align(buf);
1320
1321 list_add_tail(&tp->tx_info[i].list, &tp->tx_free);
1322 }
1323
hayeswang40a82912013-08-14 20:54:40 +08001324 tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
1325 if (!tp->intr_urb)
1326 goto err1;
1327
1328 tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
1329 if (!tp->intr_buff)
1330 goto err1;
1331
1332 tp->intr_interval = (int)ep_intr->desc.bInterval;
1333 usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
hayeswangb209af92014-08-25 15:53:00 +08001334 tp->intr_buff, INTBUFSIZE, intr_callback,
1335 tp, tp->intr_interval);
hayeswang40a82912013-08-14 20:54:40 +08001336
hayeswangebc2ec482013-08-14 20:54:38 +08001337 return 0;
1338
1339err1:
1340 free_all_mem(tp);
1341 return -ENOMEM;
1342}
1343
hayeswang0de98f62013-08-16 16:09:35 +08001344static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp)
1345{
1346 struct tx_agg *agg = NULL;
1347 unsigned long flags;
1348
hayeswang21949ab2014-03-07 11:04:35 +08001349 if (list_empty(&tp->tx_free))
1350 return NULL;
1351
hayeswang0de98f62013-08-16 16:09:35 +08001352 spin_lock_irqsave(&tp->tx_lock, flags);
1353 if (!list_empty(&tp->tx_free)) {
1354 struct list_head *cursor;
1355
1356 cursor = tp->tx_free.next;
1357 list_del_init(cursor);
1358 agg = list_entry(cursor, struct tx_agg, list);
1359 }
1360 spin_unlock_irqrestore(&tp->tx_lock, flags);
1361
1362 return agg;
1363}
1364
hayeswangb209af92014-08-25 15:53:00 +08001365/* r8152_csum_workaround()
hayeswang6128d1bb2014-03-07 11:04:40 +08001366 * The hw limites the value the transport offset. When the offset is out of the
1367 * range, calculate the checksum by sw.
1368 */
1369static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb,
1370 struct sk_buff_head *list)
1371{
1372 if (skb_shinfo(skb)->gso_size) {
1373 netdev_features_t features = tp->netdev->features;
1374 struct sk_buff_head seg_list;
1375 struct sk_buff *segs, *nskb;
1376
hayeswanga91d45f2014-07-11 16:48:27 +08001377 features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
hayeswang6128d1bb2014-03-07 11:04:40 +08001378 segs = skb_gso_segment(skb, features);
1379 if (IS_ERR(segs) || !segs)
1380 goto drop;
1381
1382 __skb_queue_head_init(&seg_list);
1383
1384 do {
1385 nskb = segs;
1386 segs = segs->next;
1387 nskb->next = NULL;
1388 __skb_queue_tail(&seg_list, nskb);
1389 } while (segs);
1390
1391 skb_queue_splice(&seg_list, list);
1392 dev_kfree_skb(skb);
1393 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1394 if (skb_checksum_help(skb) < 0)
1395 goto drop;
1396
1397 __skb_queue_head(list, skb);
1398 } else {
1399 struct net_device_stats *stats;
1400
1401drop:
1402 stats = &tp->netdev->stats;
1403 stats->tx_dropped++;
1404 dev_kfree_skb(skb);
1405 }
1406}
1407
hayeswangb209af92014-08-25 15:53:00 +08001408/* msdn_giant_send_check()
hayeswang6128d1bb2014-03-07 11:04:40 +08001409 * According to the document of microsoft, the TCP Pseudo Header excludes the
1410 * packet length for IPv6 TCP large packets.
1411 */
1412static int msdn_giant_send_check(struct sk_buff *skb)
1413{
1414 const struct ipv6hdr *ipv6h;
1415 struct tcphdr *th;
hayeswangfcb308d2014-03-11 10:20:32 +08001416 int ret;
1417
1418 ret = skb_cow_head(skb, 0);
1419 if (ret)
1420 return ret;
hayeswang6128d1bb2014-03-07 11:04:40 +08001421
1422 ipv6h = ipv6_hdr(skb);
1423 th = tcp_hdr(skb);
1424
1425 th->check = 0;
1426 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0);
1427
hayeswangfcb308d2014-03-11 10:20:32 +08001428 return ret;
hayeswang6128d1bb2014-03-07 11:04:40 +08001429}
1430
hayeswangc5554292014-09-12 10:43:11 +08001431static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb)
1432{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001433 if (skb_vlan_tag_present(skb)) {
hayeswangc5554292014-09-12 10:43:11 +08001434 u32 opts2;
1435
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001436 opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb));
hayeswangc5554292014-09-12 10:43:11 +08001437 desc->opts2 |= cpu_to_le32(opts2);
1438 }
1439}
1440
1441static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb)
1442{
1443 u32 opts2 = le32_to_cpu(desc->opts2);
1444
1445 if (opts2 & RX_VLAN_TAG)
1446 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1447 swab16(opts2 & 0xffff));
1448}
1449
hayeswang60c89072014-03-07 11:04:39 +08001450static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc,
1451 struct sk_buff *skb, u32 len, u32 transport_offset)
1452{
1453 u32 mss = skb_shinfo(skb)->gso_size;
1454 u32 opts1, opts2 = 0;
1455 int ret = TX_CSUM_SUCCESS;
1456
1457 WARN_ON_ONCE(len > TX_LEN_MAX);
1458
1459 opts1 = len | TX_FS | TX_LS;
1460
1461 if (mss) {
hayeswang6128d1bb2014-03-07 11:04:40 +08001462 if (transport_offset > GTTCPHO_MAX) {
1463 netif_warn(tp, tx_err, tp->netdev,
1464 "Invalid transport offset 0x%x for TSO\n",
1465 transport_offset);
1466 ret = TX_CSUM_TSO;
1467 goto unavailable;
1468 }
1469
hayeswang6e74d172015-02-06 11:30:50 +08001470 switch (vlan_get_protocol(skb)) {
hayeswang60c89072014-03-07 11:04:39 +08001471 case htons(ETH_P_IP):
1472 opts1 |= GTSENDV4;
1473 break;
1474
hayeswang6128d1bb2014-03-07 11:04:40 +08001475 case htons(ETH_P_IPV6):
hayeswangfcb308d2014-03-11 10:20:32 +08001476 if (msdn_giant_send_check(skb)) {
1477 ret = TX_CSUM_TSO;
1478 goto unavailable;
1479 }
hayeswang6128d1bb2014-03-07 11:04:40 +08001480 opts1 |= GTSENDV6;
hayeswang6128d1bb2014-03-07 11:04:40 +08001481 break;
1482
hayeswang60c89072014-03-07 11:04:39 +08001483 default:
1484 WARN_ON_ONCE(1);
1485 break;
1486 }
1487
1488 opts1 |= transport_offset << GTTCPHO_SHIFT;
1489 opts2 |= min(mss, MSS_MAX) << MSS_SHIFT;
1490 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
hayeswang5bd23882013-08-14 20:54:39 +08001491 u8 ip_protocol;
hayeswang5bd23882013-08-14 20:54:39 +08001492
hayeswang6128d1bb2014-03-07 11:04:40 +08001493 if (transport_offset > TCPHO_MAX) {
1494 netif_warn(tp, tx_err, tp->netdev,
1495 "Invalid transport offset 0x%x\n",
1496 transport_offset);
1497 ret = TX_CSUM_NONE;
1498 goto unavailable;
1499 }
1500
hayeswang6e74d172015-02-06 11:30:50 +08001501 switch (vlan_get_protocol(skb)) {
hayeswang5bd23882013-08-14 20:54:39 +08001502 case htons(ETH_P_IP):
1503 opts2 |= IPV4_CS;
1504 ip_protocol = ip_hdr(skb)->protocol;
1505 break;
1506
1507 case htons(ETH_P_IPV6):
1508 opts2 |= IPV6_CS;
1509 ip_protocol = ipv6_hdr(skb)->nexthdr;
1510 break;
1511
1512 default:
1513 ip_protocol = IPPROTO_RAW;
1514 break;
1515 }
1516
hayeswang60c89072014-03-07 11:04:39 +08001517 if (ip_protocol == IPPROTO_TCP)
hayeswang5bd23882013-08-14 20:54:39 +08001518 opts2 |= TCP_CS;
hayeswang60c89072014-03-07 11:04:39 +08001519 else if (ip_protocol == IPPROTO_UDP)
hayeswang5bd23882013-08-14 20:54:39 +08001520 opts2 |= UDP_CS;
hayeswang60c89072014-03-07 11:04:39 +08001521 else
hayeswang5bd23882013-08-14 20:54:39 +08001522 WARN_ON_ONCE(1);
hayeswang5bd23882013-08-14 20:54:39 +08001523
hayeswang60c89072014-03-07 11:04:39 +08001524 opts2 |= transport_offset << TCPHO_SHIFT;
hayeswang5bd23882013-08-14 20:54:39 +08001525 }
hayeswang60c89072014-03-07 11:04:39 +08001526
1527 desc->opts2 = cpu_to_le32(opts2);
1528 desc->opts1 = cpu_to_le32(opts1);
1529
hayeswang6128d1bb2014-03-07 11:04:40 +08001530unavailable:
hayeswang60c89072014-03-07 11:04:39 +08001531 return ret;
hayeswang5bd23882013-08-14 20:54:39 +08001532}
1533
hayeswangb1379d92013-08-16 16:09:37 +08001534static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
1535{
hayeswangd84130a2014-02-18 21:49:02 +08001536 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang9a4be1b2014-02-18 21:49:07 +08001537 int remain, ret;
hayeswangb1379d92013-08-16 16:09:37 +08001538 u8 *tx_data;
1539
hayeswangd84130a2014-02-18 21:49:02 +08001540 __skb_queue_head_init(&skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08001541 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001542 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang0c3121f2014-03-07 11:04:36 +08001543 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001544
hayeswangb1379d92013-08-16 16:09:37 +08001545 tx_data = agg->head;
hayeswangb209af92014-08-25 15:53:00 +08001546 agg->skb_num = 0;
1547 agg->skb_len = 0;
hayeswang52aec122014-09-02 10:27:52 +08001548 remain = agg_buf_sz;
hayeswangb1379d92013-08-16 16:09:37 +08001549
hayeswang7937f9e2013-11-20 17:30:54 +08001550 while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) {
hayeswangb1379d92013-08-16 16:09:37 +08001551 struct tx_desc *tx_desc;
1552 struct sk_buff *skb;
1553 unsigned int len;
hayeswang60c89072014-03-07 11:04:39 +08001554 u32 offset;
hayeswangb1379d92013-08-16 16:09:37 +08001555
hayeswangd84130a2014-02-18 21:49:02 +08001556 skb = __skb_dequeue(&skb_head);
hayeswangb1379d92013-08-16 16:09:37 +08001557 if (!skb)
1558 break;
1559
hayeswang60c89072014-03-07 11:04:39 +08001560 len = skb->len + sizeof(*tx_desc);
1561
1562 if (len > remain) {
hayeswangd84130a2014-02-18 21:49:02 +08001563 __skb_queue_head(&skb_head, skb);
hayeswangb1379d92013-08-16 16:09:37 +08001564 break;
1565 }
1566
hayeswang7937f9e2013-11-20 17:30:54 +08001567 tx_data = tx_agg_align(tx_data);
hayeswangb1379d92013-08-16 16:09:37 +08001568 tx_desc = (struct tx_desc *)tx_data;
hayeswang60c89072014-03-07 11:04:39 +08001569
1570 offset = (u32)skb_transport_offset(skb);
1571
hayeswang6128d1bb2014-03-07 11:04:40 +08001572 if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) {
1573 r8152_csum_workaround(tp, skb, &skb_head);
1574 continue;
1575 }
hayeswang60c89072014-03-07 11:04:39 +08001576
hayeswangc5554292014-09-12 10:43:11 +08001577 rtl_tx_vlan_tag(tx_desc, skb);
1578
hayeswangb1379d92013-08-16 16:09:37 +08001579 tx_data += sizeof(*tx_desc);
1580
hayeswang60c89072014-03-07 11:04:39 +08001581 len = skb->len;
1582 if (skb_copy_bits(skb, 0, tx_data, len) < 0) {
1583 struct net_device_stats *stats = &tp->netdev->stats;
1584
1585 stats->tx_dropped++;
1586 dev_kfree_skb_any(skb);
1587 tx_data -= sizeof(*tx_desc);
1588 continue;
1589 }
hayeswangb1379d92013-08-16 16:09:37 +08001590
hayeswang7937f9e2013-11-20 17:30:54 +08001591 tx_data += len;
hayeswang60c89072014-03-07 11:04:39 +08001592 agg->skb_len += len;
1593 agg->skb_num++;
1594
1595 dev_kfree_skb_any(skb);
1596
hayeswang52aec122014-09-02 10:27:52 +08001597 remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head);
hayeswangb1379d92013-08-16 16:09:37 +08001598 }
1599
hayeswangd84130a2014-02-18 21:49:02 +08001600 if (!skb_queue_empty(&skb_head)) {
hayeswang0c3121f2014-03-07 11:04:36 +08001601 spin_lock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001602 skb_queue_splice(&skb_head, tx_queue);
hayeswang0c3121f2014-03-07 11:04:36 +08001603 spin_unlock(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001604 }
1605
hayeswang0c3121f2014-03-07 11:04:36 +08001606 netif_tx_lock(tp->netdev);
hayeswangdd1b1192013-11-20 17:30:56 +08001607
1608 if (netif_queue_stopped(tp->netdev) &&
1609 skb_queue_len(&tp->tx_queue) < tp->tx_qlen)
1610 netif_wake_queue(tp->netdev);
1611
hayeswang0c3121f2014-03-07 11:04:36 +08001612 netif_tx_unlock(tp->netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08001613
hayeswang0c3121f2014-03-07 11:04:36 +08001614 ret = usb_autopm_get_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08001615 if (ret < 0)
1616 goto out_tx_fill;
hayeswangdd1b1192013-11-20 17:30:56 +08001617
hayeswangb1379d92013-08-16 16:09:37 +08001618 usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
1619 agg->head, (int)(tx_data - (u8 *)agg->head),
1620 (usb_complete_t)write_bulk_callback, agg);
1621
hayeswang0c3121f2014-03-07 11:04:36 +08001622 ret = usb_submit_urb(agg->urb, GFP_ATOMIC);
hayeswang9a4be1b2014-02-18 21:49:07 +08001623 if (ret < 0)
hayeswang0c3121f2014-03-07 11:04:36 +08001624 usb_autopm_put_interface_async(tp->intf);
hayeswang9a4be1b2014-02-18 21:49:07 +08001625
1626out_tx_fill:
1627 return ret;
hayeswangb1379d92013-08-16 16:09:37 +08001628}
1629
hayeswang565cab02014-03-07 11:04:38 +08001630static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc)
1631{
1632 u8 checksum = CHECKSUM_NONE;
1633 u32 opts2, opts3;
1634
1635 if (tp->version == RTL_VER_01)
1636 goto return_result;
1637
1638 opts2 = le32_to_cpu(rx_desc->opts2);
1639 opts3 = le32_to_cpu(rx_desc->opts3);
1640
1641 if (opts2 & RD_IPV4_CS) {
1642 if (opts3 & IPF)
1643 checksum = CHECKSUM_NONE;
1644 else if ((opts2 & RD_UDP_CS) && (opts3 & UDPF))
1645 checksum = CHECKSUM_NONE;
1646 else if ((opts2 & RD_TCP_CS) && (opts3 & TCPF))
1647 checksum = CHECKSUM_NONE;
1648 else
1649 checksum = CHECKSUM_UNNECESSARY;
hayeswang6128d1bb2014-03-07 11:04:40 +08001650 } else if (RD_IPV6_CS) {
1651 if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
1652 checksum = CHECKSUM_UNNECESSARY;
1653 else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
1654 checksum = CHECKSUM_UNNECESSARY;
hayeswang565cab02014-03-07 11:04:38 +08001655 }
1656
1657return_result:
1658 return checksum;
1659}
1660
hayeswangd823ab62015-01-12 12:06:23 +08001661static int rx_bottom(struct r8152 *tp, int budget)
hayeswangebc2ec482013-08-14 20:54:38 +08001662{
hayeswanga5a4f462013-08-16 16:09:34 +08001663 unsigned long flags;
hayeswangd84130a2014-02-18 21:49:02 +08001664 struct list_head *cursor, *next, rx_queue;
hayeswange1a2ca92015-02-06 11:30:45 +08001665 int ret = 0, work_done = 0;
hayeswangd823ab62015-01-12 12:06:23 +08001666
1667 if (!skb_queue_empty(&tp->rx_queue)) {
1668 while (work_done < budget) {
1669 struct sk_buff *skb = __skb_dequeue(&tp->rx_queue);
1670 struct net_device *netdev = tp->netdev;
1671 struct net_device_stats *stats = &netdev->stats;
1672 unsigned int pkt_len;
1673
1674 if (!skb)
1675 break;
1676
1677 pkt_len = skb->len;
1678 napi_gro_receive(&tp->napi, skb);
1679 work_done++;
1680 stats->rx_packets++;
1681 stats->rx_bytes += pkt_len;
1682 }
1683 }
hayeswangebc2ec482013-08-14 20:54:38 +08001684
hayeswangd84130a2014-02-18 21:49:02 +08001685 if (list_empty(&tp->rx_done))
hayeswangd823ab62015-01-12 12:06:23 +08001686 goto out1;
hayeswangd84130a2014-02-18 21:49:02 +08001687
1688 INIT_LIST_HEAD(&rx_queue);
hayeswanga5a4f462013-08-16 16:09:34 +08001689 spin_lock_irqsave(&tp->rx_lock, flags);
hayeswangd84130a2014-02-18 21:49:02 +08001690 list_splice_init(&tp->rx_done, &rx_queue);
1691 spin_unlock_irqrestore(&tp->rx_lock, flags);
1692
1693 list_for_each_safe(cursor, next, &rx_queue) {
hayeswang43a44782013-08-16 16:09:36 +08001694 struct rx_desc *rx_desc;
1695 struct rx_agg *agg;
hayeswang43a44782013-08-16 16:09:36 +08001696 int len_used = 0;
1697 struct urb *urb;
1698 u8 *rx_data;
hayeswang43a44782013-08-16 16:09:36 +08001699
hayeswangebc2ec482013-08-14 20:54:38 +08001700 list_del_init(cursor);
hayeswangebc2ec482013-08-14 20:54:38 +08001701
1702 agg = list_entry(cursor, struct rx_agg, list);
1703 urb = agg->urb;
hayeswang0de98f62013-08-16 16:09:35 +08001704 if (urb->actual_length < ETH_ZLEN)
1705 goto submit;
hayeswangebc2ec482013-08-14 20:54:38 +08001706
hayeswangebc2ec482013-08-14 20:54:38 +08001707 rx_desc = agg->head;
1708 rx_data = agg->head;
hayeswang7937f9e2013-11-20 17:30:54 +08001709 len_used += sizeof(struct rx_desc);
hayeswangebc2ec482013-08-14 20:54:38 +08001710
hayeswang7937f9e2013-11-20 17:30:54 +08001711 while (urb->actual_length > len_used) {
hayeswang43a44782013-08-16 16:09:36 +08001712 struct net_device *netdev = tp->netdev;
hayeswang05e0f1a2014-03-06 15:07:18 +08001713 struct net_device_stats *stats = &netdev->stats;
hayeswang7937f9e2013-11-20 17:30:54 +08001714 unsigned int pkt_len;
hayeswang43a44782013-08-16 16:09:36 +08001715 struct sk_buff *skb;
1716
hayeswang7937f9e2013-11-20 17:30:54 +08001717 pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK;
hayeswangebc2ec482013-08-14 20:54:38 +08001718 if (pkt_len < ETH_ZLEN)
1719 break;
1720
hayeswang7937f9e2013-11-20 17:30:54 +08001721 len_used += pkt_len;
1722 if (urb->actual_length < len_used)
1723 break;
1724
hayeswang8e1f51b2014-01-02 11:22:41 +08001725 pkt_len -= CRC_SIZE;
hayeswangebc2ec482013-08-14 20:54:38 +08001726 rx_data += sizeof(struct rx_desc);
1727
1728 skb = netdev_alloc_skb_ip_align(netdev, pkt_len);
1729 if (!skb) {
1730 stats->rx_dropped++;
hayeswang5e2f7482014-03-07 11:04:37 +08001731 goto find_next_rx;
hayeswangebc2ec482013-08-14 20:54:38 +08001732 }
hayeswang565cab02014-03-07 11:04:38 +08001733
1734 skb->ip_summed = r8152_rx_csum(tp, rx_desc);
hayeswangebc2ec482013-08-14 20:54:38 +08001735 memcpy(skb->data, rx_data, pkt_len);
1736 skb_put(skb, pkt_len);
1737 skb->protocol = eth_type_trans(skb, netdev);
hayeswangc5554292014-09-12 10:43:11 +08001738 rtl_rx_vlan_tag(rx_desc, skb);
hayeswangd823ab62015-01-12 12:06:23 +08001739 if (work_done < budget) {
1740 napi_gro_receive(&tp->napi, skb);
1741 work_done++;
1742 stats->rx_packets++;
1743 stats->rx_bytes += pkt_len;
1744 } else {
1745 __skb_queue_tail(&tp->rx_queue, skb);
1746 }
hayeswangebc2ec482013-08-14 20:54:38 +08001747
hayeswang5e2f7482014-03-07 11:04:37 +08001748find_next_rx:
hayeswang8e1f51b2014-01-02 11:22:41 +08001749 rx_data = rx_agg_align(rx_data + pkt_len + CRC_SIZE);
hayeswangebc2ec482013-08-14 20:54:38 +08001750 rx_desc = (struct rx_desc *)rx_data;
hayeswangebc2ec482013-08-14 20:54:38 +08001751 len_used = (int)(rx_data - (u8 *)agg->head);
hayeswang7937f9e2013-11-20 17:30:54 +08001752 len_used += sizeof(struct rx_desc);
hayeswangebc2ec482013-08-14 20:54:38 +08001753 }
1754
hayeswang0de98f62013-08-16 16:09:35 +08001755submit:
hayeswange1a2ca92015-02-06 11:30:45 +08001756 if (!ret) {
1757 ret = r8152_submit_rx(tp, agg, GFP_ATOMIC);
1758 } else {
1759 urb->actual_length = 0;
1760 list_add_tail(&agg->list, next);
1761 }
1762 }
1763
1764 if (!list_empty(&rx_queue)) {
1765 spin_lock_irqsave(&tp->rx_lock, flags);
1766 list_splice_tail(&rx_queue, &tp->rx_done);
1767 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangebc2ec482013-08-14 20:54:38 +08001768 }
hayeswangd823ab62015-01-12 12:06:23 +08001769
1770out1:
1771 return work_done;
hayeswangebc2ec482013-08-14 20:54:38 +08001772}
1773
1774static void tx_bottom(struct r8152 *tp)
1775{
hayeswangebc2ec482013-08-14 20:54:38 +08001776 int res;
1777
hayeswangb1379d92013-08-16 16:09:37 +08001778 do {
1779 struct tx_agg *agg;
hayeswangebc2ec482013-08-14 20:54:38 +08001780
hayeswangb1379d92013-08-16 16:09:37 +08001781 if (skb_queue_empty(&tp->tx_queue))
hayeswangebc2ec482013-08-14 20:54:38 +08001782 break;
1783
hayeswangb1379d92013-08-16 16:09:37 +08001784 agg = r8152_get_tx_agg(tp);
1785 if (!agg)
hayeswangebc2ec482013-08-14 20:54:38 +08001786 break;
hayeswangb1379d92013-08-16 16:09:37 +08001787
1788 res = r8152_tx_agg_fill(tp, agg);
1789 if (res) {
hayeswang05e0f1a2014-03-06 15:07:18 +08001790 struct net_device *netdev = tp->netdev;
hayeswangb1379d92013-08-16 16:09:37 +08001791
1792 if (res == -ENODEV) {
hayeswang67610492014-10-30 11:46:40 +08001793 set_bit(RTL8152_UNPLUG, &tp->flags);
hayeswangb1379d92013-08-16 16:09:37 +08001794 netif_device_detach(netdev);
1795 } else {
hayeswang05e0f1a2014-03-06 15:07:18 +08001796 struct net_device_stats *stats = &netdev->stats;
1797 unsigned long flags;
1798
hayeswangb1379d92013-08-16 16:09:37 +08001799 netif_warn(tp, tx_err, netdev,
1800 "failed tx_urb %d\n", res);
1801 stats->tx_dropped += agg->skb_num;
hayeswangdb8515e2014-03-06 15:07:16 +08001802
hayeswangb1379d92013-08-16 16:09:37 +08001803 spin_lock_irqsave(&tp->tx_lock, flags);
1804 list_add_tail(&agg->list, &tp->tx_free);
1805 spin_unlock_irqrestore(&tp->tx_lock, flags);
1806 }
hayeswangebc2ec482013-08-14 20:54:38 +08001807 }
hayeswangb1379d92013-08-16 16:09:37 +08001808 } while (res == 0);
hayeswangebc2ec482013-08-14 20:54:38 +08001809}
1810
hayeswangd823ab62015-01-12 12:06:23 +08001811static void bottom_half(struct r8152 *tp)
hayeswangebc2ec482013-08-14 20:54:38 +08001812{
hayeswangebc2ec482013-08-14 20:54:38 +08001813 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1814 return;
1815
1816 if (!test_bit(WORK_ENABLE, &tp->flags))
1817 return;
1818
hayeswang7559fb2f2013-08-16 16:09:38 +08001819 /* When link down, the driver would cancel all bulks. */
1820 /* This avoid the re-submitting bulk */
hayeswangebc2ec482013-08-14 20:54:38 +08001821 if (!netif_carrier_ok(tp->netdev))
1822 return;
1823
hayeswangd823ab62015-01-12 12:06:23 +08001824 clear_bit(SCHEDULE_NAPI, &tp->flags);
hayeswang9451a112014-11-12 10:05:04 +08001825
hayeswang0c3121f2014-03-07 11:04:36 +08001826 tx_bottom(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08001827}
1828
hayeswangd823ab62015-01-12 12:06:23 +08001829static int r8152_poll(struct napi_struct *napi, int budget)
1830{
1831 struct r8152 *tp = container_of(napi, struct r8152, napi);
1832 int work_done;
1833
1834 work_done = rx_bottom(tp, budget);
1835 bottom_half(tp);
1836
1837 if (work_done < budget) {
1838 napi_complete(napi);
1839 if (!list_empty(&tp->rx_done))
1840 napi_schedule(napi);
1841 }
1842
1843 return work_done;
1844}
1845
hayeswangebc2ec482013-08-14 20:54:38 +08001846static
1847int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
1848{
hayeswanga0fccd42014-11-20 10:29:05 +08001849 int ret;
1850
hayeswangef827a52015-01-09 10:26:36 +08001851 /* The rx would be stopped, so skip submitting */
1852 if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
1853 !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
1854 return 0;
1855
hayeswangebc2ec482013-08-14 20:54:38 +08001856 usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
hayeswang52aec122014-09-02 10:27:52 +08001857 agg->head, agg_buf_sz,
hayeswangb209af92014-08-25 15:53:00 +08001858 (usb_complete_t)read_bulk_callback, agg);
hayeswangebc2ec482013-08-14 20:54:38 +08001859
hayeswanga0fccd42014-11-20 10:29:05 +08001860 ret = usb_submit_urb(agg->urb, mem_flags);
1861 if (ret == -ENODEV) {
1862 set_bit(RTL8152_UNPLUG, &tp->flags);
1863 netif_device_detach(tp->netdev);
1864 } else if (ret) {
1865 struct urb *urb = agg->urb;
1866 unsigned long flags;
1867
1868 urb->actual_length = 0;
1869 spin_lock_irqsave(&tp->rx_lock, flags);
1870 list_add_tail(&agg->list, &tp->rx_done);
1871 spin_unlock_irqrestore(&tp->rx_lock, flags);
hayeswangd823ab62015-01-12 12:06:23 +08001872
1873 netif_err(tp, rx_err, tp->netdev,
1874 "Couldn't submit rx[%p], ret = %d\n", agg, ret);
1875
1876 napi_schedule(&tp->napi);
hayeswanga0fccd42014-11-20 10:29:05 +08001877 }
1878
1879 return ret;
hayeswangac718b62013-05-02 16:01:25 +00001880}
1881
hayeswang00a5e362014-02-18 21:48:59 +08001882static void rtl_drop_queued_tx(struct r8152 *tp)
1883{
1884 struct net_device_stats *stats = &tp->netdev->stats;
hayeswangd84130a2014-02-18 21:49:02 +08001885 struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
hayeswang00a5e362014-02-18 21:48:59 +08001886 struct sk_buff *skb;
1887
hayeswangd84130a2014-02-18 21:49:02 +08001888 if (skb_queue_empty(tx_queue))
1889 return;
1890
1891 __skb_queue_head_init(&skb_head);
hayeswang2685d412014-03-07 11:04:34 +08001892 spin_lock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001893 skb_queue_splice_init(tx_queue, &skb_head);
hayeswang2685d412014-03-07 11:04:34 +08001894 spin_unlock_bh(&tx_queue->lock);
hayeswangd84130a2014-02-18 21:49:02 +08001895
1896 while ((skb = __skb_dequeue(&skb_head))) {
hayeswang00a5e362014-02-18 21:48:59 +08001897 dev_kfree_skb(skb);
1898 stats->tx_dropped++;
1899 }
1900}
1901
hayeswangac718b62013-05-02 16:01:25 +00001902static void rtl8152_tx_timeout(struct net_device *netdev)
1903{
1904 struct r8152 *tp = netdev_priv(netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08001905 int i;
1906
Hayes Wang4a8deae2014-01-07 11:18:22 +08001907 netif_warn(tp, tx_err, netdev, "Tx timeout\n");
hayeswangebc2ec482013-08-14 20:54:38 +08001908 for (i = 0; i < RTL8152_MAX_TX; i++)
1909 usb_unlink_urb(tp->tx_info[i].urb);
hayeswangac718b62013-05-02 16:01:25 +00001910}
1911
1912static void rtl8152_set_rx_mode(struct net_device *netdev)
1913{
1914 struct r8152 *tp = netdev_priv(netdev);
1915
hayeswang51d979f2015-02-06 11:30:47 +08001916 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00001917 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08001918 schedule_delayed_work(&tp->schedule, 0);
1919 }
hayeswangac718b62013-05-02 16:01:25 +00001920}
1921
1922static void _rtl8152_set_rx_mode(struct net_device *netdev)
1923{
1924 struct r8152 *tp = netdev_priv(netdev);
hayeswang31787f52013-07-31 17:21:25 +08001925 u32 mc_filter[2]; /* Multicast hash filter */
1926 __le32 tmp[2];
hayeswangac718b62013-05-02 16:01:25 +00001927 u32 ocp_data;
1928
hayeswangac718b62013-05-02 16:01:25 +00001929 clear_bit(RTL8152_SET_RX_MODE, &tp->flags);
1930 netif_stop_queue(netdev);
1931 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
1932 ocp_data &= ~RCR_ACPT_ALL;
1933 ocp_data |= RCR_AB | RCR_APM;
1934
1935 if (netdev->flags & IFF_PROMISC) {
1936 /* Unconditionally log net taps. */
1937 netif_notice(tp, link, netdev, "Promiscuous mode enabled\n");
1938 ocp_data |= RCR_AM | RCR_AAP;
hayeswangb209af92014-08-25 15:53:00 +08001939 mc_filter[1] = 0xffffffff;
1940 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00001941 } else if ((netdev_mc_count(netdev) > multicast_filter_limit) ||
1942 (netdev->flags & IFF_ALLMULTI)) {
1943 /* Too many to filter perfectly -- accept all multicasts. */
1944 ocp_data |= RCR_AM;
hayeswangb209af92014-08-25 15:53:00 +08001945 mc_filter[1] = 0xffffffff;
1946 mc_filter[0] = 0xffffffff;
hayeswangac718b62013-05-02 16:01:25 +00001947 } else {
1948 struct netdev_hw_addr *ha;
1949
hayeswangb209af92014-08-25 15:53:00 +08001950 mc_filter[1] = 0;
1951 mc_filter[0] = 0;
hayeswangac718b62013-05-02 16:01:25 +00001952 netdev_for_each_mc_addr(ha, netdev) {
1953 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
hayeswangb209af92014-08-25 15:53:00 +08001954
hayeswangac718b62013-05-02 16:01:25 +00001955 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
1956 ocp_data |= RCR_AM;
1957 }
1958 }
1959
hayeswang31787f52013-07-31 17:21:25 +08001960 tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
1961 tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
hayeswangac718b62013-05-02 16:01:25 +00001962
hayeswang31787f52013-07-31 17:21:25 +08001963 pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
hayeswangac718b62013-05-02 16:01:25 +00001964 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
1965 netif_wake_queue(netdev);
hayeswangac718b62013-05-02 16:01:25 +00001966}
1967
hayeswanga5e31252015-01-06 17:41:58 +08001968static netdev_features_t
1969rtl8152_features_check(struct sk_buff *skb, struct net_device *dev,
1970 netdev_features_t features)
1971{
1972 u32 mss = skb_shinfo(skb)->gso_size;
1973 int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX;
1974 int offset = skb_transport_offset(skb);
1975
1976 if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset)
1977 features &= ~(NETIF_F_ALL_CSUM | NETIF_F_GSO_MASK);
1978 else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz)
1979 features &= ~NETIF_F_GSO_MASK;
1980
1981 return features;
1982}
1983
hayeswangac718b62013-05-02 16:01:25 +00001984static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb,
hayeswangb209af92014-08-25 15:53:00 +08001985 struct net_device *netdev)
hayeswangac718b62013-05-02 16:01:25 +00001986{
1987 struct r8152 *tp = netdev_priv(netdev);
hayeswangac718b62013-05-02 16:01:25 +00001988
hayeswangac718b62013-05-02 16:01:25 +00001989 skb_tx_timestamp(skb);
hayeswangebc2ec482013-08-14 20:54:38 +08001990
hayeswang61598782013-11-20 17:30:55 +08001991 skb_queue_tail(&tp->tx_queue, skb);
hayeswangebc2ec482013-08-14 20:54:38 +08001992
hayeswang0c3121f2014-03-07 11:04:36 +08001993 if (!list_empty(&tp->tx_free)) {
1994 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
hayeswangd823ab62015-01-12 12:06:23 +08001995 set_bit(SCHEDULE_NAPI, &tp->flags);
hayeswang0c3121f2014-03-07 11:04:36 +08001996 schedule_delayed_work(&tp->schedule, 0);
1997 } else {
1998 usb_mark_last_busy(tp->udev);
hayeswangd823ab62015-01-12 12:06:23 +08001999 napi_schedule(&tp->napi);
hayeswang0c3121f2014-03-07 11:04:36 +08002000 }
hayeswangb209af92014-08-25 15:53:00 +08002001 } else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) {
hayeswangdd1b1192013-11-20 17:30:56 +08002002 netif_stop_queue(netdev);
hayeswangb209af92014-08-25 15:53:00 +08002003 }
hayeswangdd1b1192013-11-20 17:30:56 +08002004
hayeswangac718b62013-05-02 16:01:25 +00002005 return NETDEV_TX_OK;
2006}
2007
2008static void r8152b_reset_packet_filter(struct r8152 *tp)
2009{
2010 u32 ocp_data;
2011
2012 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC);
2013 ocp_data &= ~FMC_FCR_MCU_EN;
2014 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2015 ocp_data |= FMC_FCR_MCU_EN;
2016 ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2017}
2018
2019static void rtl8152_nic_reset(struct r8152 *tp)
2020{
2021 int i;
2022
2023 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST);
2024
2025 for (i = 0; i < 1000; i++) {
2026 if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST))
2027 break;
hayeswangb209af92014-08-25 15:53:00 +08002028 usleep_range(100, 400);
hayeswangac718b62013-05-02 16:01:25 +00002029 }
2030}
2031
hayeswangdd1b1192013-11-20 17:30:56 +08002032static void set_tx_qlen(struct r8152 *tp)
2033{
2034 struct net_device *netdev = tp->netdev;
2035
hayeswang52aec122014-09-02 10:27:52 +08002036 tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + VLAN_HLEN +
2037 sizeof(struct tx_desc));
hayeswangdd1b1192013-11-20 17:30:56 +08002038}
2039
hayeswangac718b62013-05-02 16:01:25 +00002040static inline u8 rtl8152_get_speed(struct r8152 *tp)
2041{
2042 return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS);
2043}
2044
hayeswang507605a2014-01-02 11:22:43 +08002045static void rtl_set_eee_plus(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002046{
hayeswangebc2ec482013-08-14 20:54:38 +08002047 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002048 u8 speed;
2049
2050 speed = rtl8152_get_speed(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08002051 if (speed & _10bps) {
hayeswangac718b62013-05-02 16:01:25 +00002052 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec482013-08-14 20:54:38 +08002053 ocp_data |= EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002054 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2055 } else {
2056 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
hayeswangebc2ec482013-08-14 20:54:38 +08002057 ocp_data &= ~EEEP_CR_EEEP_TX;
hayeswangac718b62013-05-02 16:01:25 +00002058 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2059 }
hayeswang507605a2014-01-02 11:22:43 +08002060}
2061
hayeswang00a5e362014-02-18 21:48:59 +08002062static void rxdy_gated_en(struct r8152 *tp, bool enable)
2063{
2064 u32 ocp_data;
2065
2066 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1);
2067 if (enable)
2068 ocp_data |= RXDY_GATED_EN;
2069 else
2070 ocp_data &= ~RXDY_GATED_EN;
2071 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data);
2072}
2073
hayeswang445f7f42014-09-23 16:31:47 +08002074static int rtl_start_rx(struct r8152 *tp)
2075{
2076 int i, ret = 0;
2077
hayeswangd823ab62015-01-12 12:06:23 +08002078 napi_disable(&tp->napi);
hayeswang445f7f42014-09-23 16:31:47 +08002079 INIT_LIST_HEAD(&tp->rx_done);
2080 for (i = 0; i < RTL8152_MAX_RX; i++) {
2081 INIT_LIST_HEAD(&tp->rx_info[i].list);
2082 ret = r8152_submit_rx(tp, &tp->rx_info[i], GFP_KERNEL);
2083 if (ret)
2084 break;
2085 }
hayeswangd823ab62015-01-12 12:06:23 +08002086 napi_enable(&tp->napi);
hayeswang445f7f42014-09-23 16:31:47 +08002087
hayeswang7bcf4f62014-11-20 10:29:06 +08002088 if (ret && ++i < RTL8152_MAX_RX) {
2089 struct list_head rx_queue;
2090 unsigned long flags;
2091
2092 INIT_LIST_HEAD(&rx_queue);
2093
2094 do {
2095 struct rx_agg *agg = &tp->rx_info[i++];
2096 struct urb *urb = agg->urb;
2097
2098 urb->actual_length = 0;
2099 list_add_tail(&agg->list, &rx_queue);
2100 } while (i < RTL8152_MAX_RX);
2101
2102 spin_lock_irqsave(&tp->rx_lock, flags);
2103 list_splice_tail(&rx_queue, &tp->rx_done);
2104 spin_unlock_irqrestore(&tp->rx_lock, flags);
2105 }
2106
hayeswang445f7f42014-09-23 16:31:47 +08002107 return ret;
2108}
2109
2110static int rtl_stop_rx(struct r8152 *tp)
2111{
2112 int i;
2113
2114 for (i = 0; i < RTL8152_MAX_RX; i++)
2115 usb_kill_urb(tp->rx_info[i].urb);
2116
hayeswangd823ab62015-01-12 12:06:23 +08002117 while (!skb_queue_empty(&tp->rx_queue))
2118 dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2119
hayeswang445f7f42014-09-23 16:31:47 +08002120 return 0;
2121}
2122
hayeswang507605a2014-01-02 11:22:43 +08002123static int rtl_enable(struct r8152 *tp)
2124{
2125 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002126
2127 r8152b_reset_packet_filter(tp);
2128
2129 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2130 ocp_data |= CR_RE | CR_TE;
2131 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2132
hayeswang00a5e362014-02-18 21:48:59 +08002133 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002134
hayeswangaa2e0922015-01-09 10:26:35 +08002135 return 0;
hayeswangac718b62013-05-02 16:01:25 +00002136}
2137
hayeswang507605a2014-01-02 11:22:43 +08002138static int rtl8152_enable(struct r8152 *tp)
2139{
hayeswang68714382014-04-11 17:54:31 +08002140 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2141 return -ENODEV;
2142
hayeswang507605a2014-01-02 11:22:43 +08002143 set_tx_qlen(tp);
2144 rtl_set_eee_plus(tp);
2145
2146 return rtl_enable(tp);
2147}
2148
hayeswang464ec102015-02-12 14:33:46 +08002149static void r8153_set_rx_early_timeout(struct r8152 *tp)
hayeswang43779f82014-01-02 11:25:10 +08002150{
hayeswang464ec102015-02-12 14:33:46 +08002151 u32 ocp_data = tp->coalesce / 8;
hayeswang43779f82014-01-02 11:25:10 +08002152
hayeswang464ec102015-02-12 14:33:46 +08002153 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, ocp_data);
2154}
2155
2156static void r8153_set_rx_early_size(struct r8152 *tp)
2157{
2158 u32 mtu = tp->netdev->mtu;
2159 u32 ocp_data = (agg_buf_sz - mtu - VLAN_ETH_HLEN - VLAN_HLEN) / 4;
2160
2161 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08002162}
2163
2164static int rtl8153_enable(struct r8152 *tp)
2165{
hayeswang68714382014-04-11 17:54:31 +08002166 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2167 return -ENODEV;
2168
hayeswangb2143962015-07-24 13:54:23 +08002169 usb_disable_lpm(tp->udev);
hayeswang43779f82014-01-02 11:25:10 +08002170 set_tx_qlen(tp);
2171 rtl_set_eee_plus(tp);
hayeswang464ec102015-02-12 14:33:46 +08002172 r8153_set_rx_early_timeout(tp);
2173 r8153_set_rx_early_size(tp);
hayeswang43779f82014-01-02 11:25:10 +08002174
2175 return rtl_enable(tp);
2176}
2177
hayeswangd70b1132014-09-19 15:17:18 +08002178static void rtl_disable(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002179{
hayeswangebc2ec482013-08-14 20:54:38 +08002180 u32 ocp_data;
2181 int i;
hayeswangac718b62013-05-02 16:01:25 +00002182
hayeswang68714382014-04-11 17:54:31 +08002183 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2184 rtl_drop_queued_tx(tp);
2185 return;
2186 }
2187
hayeswangac718b62013-05-02 16:01:25 +00002188 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2189 ocp_data &= ~RCR_ACPT_ALL;
2190 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2191
hayeswang00a5e362014-02-18 21:48:59 +08002192 rtl_drop_queued_tx(tp);
hayeswangebc2ec482013-08-14 20:54:38 +08002193
2194 for (i = 0; i < RTL8152_MAX_TX; i++)
2195 usb_kill_urb(tp->tx_info[i].urb);
hayeswangac718b62013-05-02 16:01:25 +00002196
hayeswang00a5e362014-02-18 21:48:59 +08002197 rxdy_gated_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002198
2199 for (i = 0; i < 1000; i++) {
2200 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2201 if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2202 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002203 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002204 }
2205
2206 for (i = 0; i < 1000; i++) {
2207 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2208 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002209 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002210 }
2211
hayeswang445f7f42014-09-23 16:31:47 +08002212 rtl_stop_rx(tp);
hayeswangac718b62013-05-02 16:01:25 +00002213
2214 rtl8152_nic_reset(tp);
2215}
2216
hayeswang00a5e362014-02-18 21:48:59 +08002217static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2218{
2219 u32 ocp_data;
2220
2221 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2222 if (enable)
2223 ocp_data |= POWER_CUT;
2224 else
2225 ocp_data &= ~POWER_CUT;
2226 ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2227
2228 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2229 ocp_data &= ~RESUME_INDICATE;
2230 ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
hayeswang00a5e362014-02-18 21:48:59 +08002231}
2232
hayeswangc5554292014-09-12 10:43:11 +08002233static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2234{
2235 u32 ocp_data;
2236
2237 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2238 if (enable)
2239 ocp_data |= CPCR_RX_VLAN;
2240 else
2241 ocp_data &= ~CPCR_RX_VLAN;
2242 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2243}
2244
2245static int rtl8152_set_features(struct net_device *dev,
2246 netdev_features_t features)
2247{
2248 netdev_features_t changed = features ^ dev->features;
2249 struct r8152 *tp = netdev_priv(dev);
hayeswang405f8a02014-10-09 18:00:24 +08002250 int ret;
2251
2252 ret = usb_autopm_get_interface(tp->intf);
2253 if (ret < 0)
2254 goto out;
hayeswangc5554292014-09-12 10:43:11 +08002255
hayeswangb5403272014-10-09 18:00:26 +08002256 mutex_lock(&tp->control);
2257
hayeswangc5554292014-09-12 10:43:11 +08002258 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2259 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2260 rtl_rx_vlan_en(tp, true);
2261 else
2262 rtl_rx_vlan_en(tp, false);
2263 }
2264
hayeswangb5403272014-10-09 18:00:26 +08002265 mutex_unlock(&tp->control);
2266
hayeswang405f8a02014-10-09 18:00:24 +08002267 usb_autopm_put_interface(tp->intf);
2268
2269out:
2270 return ret;
hayeswangc5554292014-09-12 10:43:11 +08002271}
2272
hayeswang21ff2e82014-02-18 21:49:06 +08002273#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2274
2275static u32 __rtl_get_wol(struct r8152 *tp)
2276{
2277 u32 ocp_data;
2278 u32 wolopts = 0;
2279
2280 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2281 if (!(ocp_data & LAN_WAKE_EN))
2282 return 0;
2283
2284 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2285 if (ocp_data & LINK_ON_WAKE_EN)
2286 wolopts |= WAKE_PHY;
2287
2288 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2289 if (ocp_data & UWF_EN)
2290 wolopts |= WAKE_UCAST;
2291 if (ocp_data & BWF_EN)
2292 wolopts |= WAKE_BCAST;
2293 if (ocp_data & MWF_EN)
2294 wolopts |= WAKE_MCAST;
2295
2296 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2297 if (ocp_data & MAGIC_EN)
2298 wolopts |= WAKE_MAGIC;
2299
2300 return wolopts;
2301}
2302
2303static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
2304{
2305 u32 ocp_data;
2306
2307 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2308
2309 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2310 ocp_data &= ~LINK_ON_WAKE_EN;
2311 if (wolopts & WAKE_PHY)
2312 ocp_data |= LINK_ON_WAKE_EN;
2313 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2314
2315 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2316 ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN | LAN_WAKE_EN);
2317 if (wolopts & WAKE_UCAST)
2318 ocp_data |= UWF_EN;
2319 if (wolopts & WAKE_BCAST)
2320 ocp_data |= BWF_EN;
2321 if (wolopts & WAKE_MCAST)
2322 ocp_data |= MWF_EN;
2323 if (wolopts & WAKE_ANY)
2324 ocp_data |= LAN_WAKE_EN;
2325 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
2326
2327 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2328
2329 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2330 ocp_data &= ~MAGIC_EN;
2331 if (wolopts & WAKE_MAGIC)
2332 ocp_data |= MAGIC_EN;
2333 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
2334
2335 if (wolopts & WAKE_ANY)
2336 device_set_wakeup_enable(&tp->udev->dev, true);
2337 else
2338 device_set_wakeup_enable(&tp->udev->dev, false);
2339}
2340
hayeswangb2143962015-07-24 13:54:23 +08002341static void r8153_u1u2en(struct r8152 *tp, bool enable)
2342{
2343 u8 u1u2[8];
2344
2345 if (enable)
2346 memset(u1u2, 0xff, sizeof(u1u2));
2347 else
2348 memset(u1u2, 0x00, sizeof(u1u2));
2349
2350 usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
2351}
2352
2353static void r8153_u2p3en(struct r8152 *tp, bool enable)
2354{
2355 u32 ocp_data;
2356
2357 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
2358 if (enable && tp->version != RTL_VER_03 && tp->version != RTL_VER_04)
2359 ocp_data |= U2P3_ENABLE;
2360 else
2361 ocp_data &= ~U2P3_ENABLE;
2362 ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
2363}
2364
2365static void r8153_power_cut_en(struct r8152 *tp, bool enable)
2366{
2367 u32 ocp_data;
2368
2369 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
2370 if (enable)
2371 ocp_data |= PWR_EN | PHASE2_EN;
2372 else
2373 ocp_data &= ~(PWR_EN | PHASE2_EN);
2374 ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
2375
2376 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
2377 ocp_data &= ~PCUT_STATUS;
2378 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
2379}
2380
hayeswang9a4be1b2014-02-18 21:49:07 +08002381static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
2382{
2383 if (enable) {
2384 u32 ocp_data;
2385
hayeswangb2143962015-07-24 13:54:23 +08002386 r8153_u1u2en(tp, false);
2387 r8153_u2p3en(tp, false);
2388
hayeswang9a4be1b2014-02-18 21:49:07 +08002389 __rtl_set_wol(tp, WAKE_ANY);
2390
2391 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2392
2393 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2394 ocp_data |= LINK_OFF_WAKE_EN;
2395 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2396
2397 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2398 } else {
2399 __rtl_set_wol(tp, tp->saved_wolopts);
hayeswangb2143962015-07-24 13:54:23 +08002400 r8153_u2p3en(tp, true);
2401 r8153_u1u2en(tp, true);
hayeswang9a4be1b2014-02-18 21:49:07 +08002402 }
2403}
2404
hayeswangaa66a5f2014-02-18 21:49:04 +08002405static void rtl_phy_reset(struct r8152 *tp)
2406{
2407 u16 data;
2408 int i;
2409
2410 clear_bit(PHY_RESET, &tp->flags);
2411
2412 data = r8152_mdio_read(tp, MII_BMCR);
2413
2414 /* don't reset again before the previous one complete */
2415 if (data & BMCR_RESET)
2416 return;
2417
2418 data |= BMCR_RESET;
2419 r8152_mdio_write(tp, MII_BMCR, data);
2420
2421 for (i = 0; i < 50; i++) {
2422 msleep(20);
2423 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
2424 break;
2425 }
2426}
2427
hayeswang43499682014-02-18 21:48:58 +08002428static void r8153_teredo_off(struct r8152 *tp)
2429{
2430 u32 ocp_data;
2431
2432 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2433 ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK | OOB_TEREDO_EN);
2434 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2435
2436 ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
2437 ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
2438 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
2439}
2440
2441static void r8152b_disable_aldps(struct r8152 *tp)
2442{
2443 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA | DIS_SDSAVE);
2444 msleep(20);
2445}
2446
2447static inline void r8152b_enable_aldps(struct r8152 *tp)
2448{
2449 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
2450 LINKENA | DIS_SDSAVE);
2451}
2452
hayeswangd70b1132014-09-19 15:17:18 +08002453static void rtl8152_disable(struct r8152 *tp)
2454{
2455 r8152b_disable_aldps(tp);
2456 rtl_disable(tp);
2457 r8152b_enable_aldps(tp);
2458}
2459
hayeswang43499682014-02-18 21:48:58 +08002460static void r8152b_hw_phy_cfg(struct r8152 *tp)
2461{
hayeswangf0cbe0a2014-02-18 21:49:03 +08002462 u16 data;
2463
2464 data = r8152_mdio_read(tp, MII_BMCR);
2465 if (data & BMCR_PDOWN) {
2466 data &= ~BMCR_PDOWN;
2467 r8152_mdio_write(tp, MII_BMCR, data);
2468 }
2469
hayeswangaa66a5f2014-02-18 21:49:04 +08002470 set_bit(PHY_RESET, &tp->flags);
hayeswang43499682014-02-18 21:48:58 +08002471}
2472
hayeswangac718b62013-05-02 16:01:25 +00002473static void r8152b_exit_oob(struct r8152 *tp)
2474{
hayeswangdb8515e2014-03-06 15:07:16 +08002475 u32 ocp_data;
2476 int i;
hayeswangac718b62013-05-02 16:01:25 +00002477
2478 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2479 ocp_data &= ~RCR_ACPT_ALL;
2480 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2481
hayeswang00a5e362014-02-18 21:48:59 +08002482 rxdy_gated_en(tp, true);
hayeswangda9bd112014-02-18 21:49:08 +08002483 r8153_teredo_off(tp);
hayeswang7e9da482014-02-18 21:49:05 +08002484 r8152b_hw_phy_cfg(tp);
hayeswangac718b62013-05-02 16:01:25 +00002485
2486 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2487 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
2488
2489 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2490 ocp_data &= ~NOW_IS_OOB;
2491 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2492
2493 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2494 ocp_data &= ~MCU_BORW_EN;
2495 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2496
2497 for (i = 0; i < 1000; i++) {
2498 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2499 if (ocp_data & LINK_LIST_READY)
2500 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002501 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002502 }
2503
2504 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2505 ocp_data |= RE_INIT_LL;
2506 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2507
2508 for (i = 0; i < 1000; i++) {
2509 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2510 if (ocp_data & LINK_LIST_READY)
2511 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002512 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002513 }
2514
2515 rtl8152_nic_reset(tp);
2516
2517 /* rx share fifo credit full threshold */
2518 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2519
hayeswanga3cc4652014-07-24 16:37:43 +08002520 if (tp->udev->speed == USB_SPEED_FULL ||
2521 tp->udev->speed == USB_SPEED_LOW) {
hayeswangac718b62013-05-02 16:01:25 +00002522 /* rx share fifo credit near full threshold */
2523 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2524 RXFIFO_THR2_FULL);
2525 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2526 RXFIFO_THR3_FULL);
2527 } else {
2528 /* rx share fifo credit near full threshold */
2529 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2530 RXFIFO_THR2_HIGH);
2531 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2532 RXFIFO_THR3_HIGH);
2533 }
2534
2535 /* TX share fifo free credit full threshold */
2536 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
2537
2538 ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
hayeswang8e1f51b2014-01-02 11:22:41 +08002539 ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
hayeswangac718b62013-05-02 16:01:25 +00002540 ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
2541 TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
2542
hayeswangc5554292014-09-12 10:43:11 +08002543 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswangac718b62013-05-02 16:01:25 +00002544
2545 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2546
2547 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2548 ocp_data |= TCR0_AUTO_FIFO;
2549 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2550}
2551
2552static void r8152b_enter_oob(struct r8152 *tp)
2553{
hayeswang45f4a192014-01-06 17:08:41 +08002554 u32 ocp_data;
2555 int i;
hayeswangac718b62013-05-02 16:01:25 +00002556
2557 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2558 ocp_data &= ~NOW_IS_OOB;
2559 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2560
2561 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
2562 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
2563 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
2564
hayeswangd70b1132014-09-19 15:17:18 +08002565 rtl_disable(tp);
hayeswangac718b62013-05-02 16:01:25 +00002566
2567 for (i = 0; i < 1000; i++) {
2568 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2569 if (ocp_data & LINK_LIST_READY)
2570 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002571 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002572 }
2573
2574 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2575 ocp_data |= RE_INIT_LL;
2576 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2577
2578 for (i = 0; i < 1000; i++) {
2579 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2580 if (ocp_data & LINK_LIST_READY)
2581 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002582 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002583 }
2584
2585 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2586
hayeswangc5554292014-09-12 10:43:11 +08002587 rtl_rx_vlan_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002588
2589 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2590 ocp_data |= ALDPS_PROXY_MODE;
2591 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2592
2593 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2594 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2595 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2596
hayeswang00a5e362014-02-18 21:48:59 +08002597 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002598
2599 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2600 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2601 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2602}
2603
hayeswang43779f82014-01-02 11:25:10 +08002604static void r8153_hw_phy_cfg(struct r8152 *tp)
2605{
2606 u32 ocp_data;
2607 u16 data;
2608
2609 ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
hayeswangf0cbe0a2014-02-18 21:49:03 +08002610 data = r8152_mdio_read(tp, MII_BMCR);
2611 if (data & BMCR_PDOWN) {
2612 data &= ~BMCR_PDOWN;
2613 r8152_mdio_write(tp, MII_BMCR, data);
2614 }
hayeswang43779f82014-01-02 11:25:10 +08002615
2616 if (tp->version == RTL_VER_03) {
2617 data = ocp_reg_read(tp, OCP_EEE_CFG);
2618 data &= ~CTAP_SHORT_EN;
2619 ocp_reg_write(tp, OCP_EEE_CFG, data);
2620 }
2621
2622 data = ocp_reg_read(tp, OCP_POWER_CFG);
2623 data |= EEE_CLKDIV_EN;
2624 ocp_reg_write(tp, OCP_POWER_CFG, data);
2625
2626 data = ocp_reg_read(tp, OCP_DOWN_SPEED);
2627 data |= EN_10M_BGOFF;
2628 ocp_reg_write(tp, OCP_DOWN_SPEED, data);
2629 data = ocp_reg_read(tp, OCP_POWER_CFG);
2630 data |= EN_10M_PLLOFF;
2631 ocp_reg_write(tp, OCP_POWER_CFG, data);
hayeswangb4d99de2015-01-19 17:02:46 +08002632 sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
hayeswang43779f82014-01-02 11:25:10 +08002633
2634 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
2635 ocp_data |= PFM_PWM_SWITCH;
2636 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
2637
hayeswangb4d99de2015-01-19 17:02:46 +08002638 /* Enable LPF corner auto tune */
2639 sram_write(tp, SRAM_LPF_CFG, 0xf70f);
hayeswang43779f82014-01-02 11:25:10 +08002640
hayeswangb4d99de2015-01-19 17:02:46 +08002641 /* Adjust 10M Amplitude */
2642 sram_write(tp, SRAM_10M_AMP1, 0x00af);
2643 sram_write(tp, SRAM_10M_AMP2, 0x0208);
hayeswangaa66a5f2014-02-18 21:49:04 +08002644
2645 set_bit(PHY_RESET, &tp->flags);
hayeswang43779f82014-01-02 11:25:10 +08002646}
2647
hayeswang43779f82014-01-02 11:25:10 +08002648static void r8153_first_init(struct r8152 *tp)
2649{
2650 u32 ocp_data;
2651 int i;
2652
hayeswang00a5e362014-02-18 21:48:59 +08002653 rxdy_gated_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002654 r8153_teredo_off(tp);
2655
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
2660 r8153_hw_phy_cfg(tp);
2661
2662 rtl8152_nic_reset(tp);
2663
2664 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2665 ocp_data &= ~NOW_IS_OOB;
2666 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2667
2668 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2669 ocp_data &= ~MCU_BORW_EN;
2670 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2671
2672 for (i = 0; i < 1000; i++) {
2673 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2674 if (ocp_data & LINK_LIST_READY)
2675 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002676 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002677 }
2678
2679 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2680 ocp_data |= RE_INIT_LL;
2681 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2682
2683 for (i = 0; i < 1000; i++) {
2684 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2685 if (ocp_data & LINK_LIST_READY)
2686 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002687 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002688 }
2689
hayeswangc5554292014-09-12 10:43:11 +08002690 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswang43779f82014-01-02 11:25:10 +08002691
hayeswang69b4b7a2014-07-10 10:58:54 +08002692 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
2693 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
hayeswang43779f82014-01-02 11:25:10 +08002694
2695 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2696 ocp_data |= TCR0_AUTO_FIFO;
2697 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2698
2699 rtl8152_nic_reset(tp);
2700
2701 /* rx share fifo credit full threshold */
2702 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2703 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
2704 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
2705 /* TX share fifo free credit full threshold */
2706 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
2707
hayeswang9629e3c2014-01-15 10:42:15 +08002708 /* rx aggregation */
hayeswang43779f82014-01-02 11:25:10 +08002709 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
2710 ocp_data &= ~RX_AGG_DISABLE;
2711 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
2712}
2713
2714static void r8153_enter_oob(struct r8152 *tp)
2715{
2716 u32 ocp_data;
2717 int i;
2718
2719 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2720 ocp_data &= ~NOW_IS_OOB;
2721 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2722
hayeswangd70b1132014-09-19 15:17:18 +08002723 rtl_disable(tp);
hayeswang43779f82014-01-02 11:25:10 +08002724
2725 for (i = 0; i < 1000; i++) {
2726 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2727 if (ocp_data & LINK_LIST_READY)
2728 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002729 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002730 }
2731
2732 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2733 ocp_data |= RE_INIT_LL;
2734 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2735
2736 for (i = 0; i < 1000; i++) {
2737 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2738 if (ocp_data & LINK_LIST_READY)
2739 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002740 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002741 }
2742
hayeswang69b4b7a2014-07-10 10:58:54 +08002743 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
hayeswang43779f82014-01-02 11:25:10 +08002744
hayeswang43779f82014-01-02 11:25:10 +08002745 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2746 ocp_data &= ~TEREDO_WAKE_MASK;
2747 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2748
hayeswangc5554292014-09-12 10:43:11 +08002749 rtl_rx_vlan_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002750
2751 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2752 ocp_data |= ALDPS_PROXY_MODE;
2753 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2754
2755 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2756 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2757 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2758
hayeswang00a5e362014-02-18 21:48:59 +08002759 rxdy_gated_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08002760
2761 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2762 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2763 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2764}
2765
2766static void r8153_disable_aldps(struct r8152 *tp)
2767{
2768 u16 data;
2769
2770 data = ocp_reg_read(tp, OCP_POWER_CFG);
2771 data &= ~EN_ALDPS;
2772 ocp_reg_write(tp, OCP_POWER_CFG, data);
2773 msleep(20);
2774}
2775
2776static void r8153_enable_aldps(struct r8152 *tp)
2777{
2778 u16 data;
2779
2780 data = ocp_reg_read(tp, OCP_POWER_CFG);
2781 data |= EN_ALDPS;
2782 ocp_reg_write(tp, OCP_POWER_CFG, data);
2783}
2784
hayeswangd70b1132014-09-19 15:17:18 +08002785static void rtl8153_disable(struct r8152 *tp)
2786{
2787 r8153_disable_aldps(tp);
2788 rtl_disable(tp);
2789 r8153_enable_aldps(tp);
hayeswangb2143962015-07-24 13:54:23 +08002790 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08002791}
2792
hayeswangac718b62013-05-02 16:01:25 +00002793static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
2794{
hayeswang43779f82014-01-02 11:25:10 +08002795 u16 bmcr, anar, gbcr;
hayeswangac718b62013-05-02 16:01:25 +00002796 int ret = 0;
2797
2798 cancel_delayed_work_sync(&tp->schedule);
2799 anar = r8152_mdio_read(tp, MII_ADVERTISE);
2800 anar &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
2801 ADVERTISE_100HALF | ADVERTISE_100FULL);
hayeswang43779f82014-01-02 11:25:10 +08002802 if (tp->mii.supports_gmii) {
2803 gbcr = r8152_mdio_read(tp, MII_CTRL1000);
2804 gbcr &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
2805 } else {
2806 gbcr = 0;
2807 }
hayeswangac718b62013-05-02 16:01:25 +00002808
2809 if (autoneg == AUTONEG_DISABLE) {
2810 if (speed == SPEED_10) {
2811 bmcr = 0;
2812 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2813 } else if (speed == SPEED_100) {
2814 bmcr = BMCR_SPEED100;
2815 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
hayeswang43779f82014-01-02 11:25:10 +08002816 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
2817 bmcr = BMCR_SPEED1000;
2818 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
hayeswangac718b62013-05-02 16:01:25 +00002819 } else {
2820 ret = -EINVAL;
2821 goto out;
2822 }
2823
2824 if (duplex == DUPLEX_FULL)
2825 bmcr |= BMCR_FULLDPLX;
2826 } else {
2827 if (speed == SPEED_10) {
2828 if (duplex == DUPLEX_FULL)
2829 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2830 else
2831 anar |= ADVERTISE_10HALF;
2832 } else if (speed == SPEED_100) {
2833 if (duplex == DUPLEX_FULL) {
2834 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2835 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
2836 } else {
2837 anar |= ADVERTISE_10HALF;
2838 anar |= ADVERTISE_100HALF;
2839 }
hayeswang43779f82014-01-02 11:25:10 +08002840 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
2841 if (duplex == DUPLEX_FULL) {
2842 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2843 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
2844 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
2845 } else {
2846 anar |= ADVERTISE_10HALF;
2847 anar |= ADVERTISE_100HALF;
2848 gbcr |= ADVERTISE_1000HALF;
2849 }
hayeswangac718b62013-05-02 16:01:25 +00002850 } else {
2851 ret = -EINVAL;
2852 goto out;
2853 }
2854
2855 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
2856 }
2857
hayeswangaa66a5f2014-02-18 21:49:04 +08002858 if (test_bit(PHY_RESET, &tp->flags))
2859 bmcr |= BMCR_RESET;
2860
hayeswang43779f82014-01-02 11:25:10 +08002861 if (tp->mii.supports_gmii)
2862 r8152_mdio_write(tp, MII_CTRL1000, gbcr);
2863
hayeswangac718b62013-05-02 16:01:25 +00002864 r8152_mdio_write(tp, MII_ADVERTISE, anar);
2865 r8152_mdio_write(tp, MII_BMCR, bmcr);
2866
hayeswangaa66a5f2014-02-18 21:49:04 +08002867 if (test_bit(PHY_RESET, &tp->flags)) {
2868 int i;
2869
2870 clear_bit(PHY_RESET, &tp->flags);
2871 for (i = 0; i < 50; i++) {
2872 msleep(20);
2873 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
2874 break;
2875 }
2876 }
2877
hayeswangac718b62013-05-02 16:01:25 +00002878out:
hayeswangac718b62013-05-02 16:01:25 +00002879
2880 return ret;
2881}
2882
hayeswangd70b1132014-09-19 15:17:18 +08002883static void rtl8152_up(struct r8152 *tp)
2884{
2885 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2886 return;
2887
2888 r8152b_disable_aldps(tp);
2889 r8152b_exit_oob(tp);
2890 r8152b_enable_aldps(tp);
2891}
2892
hayeswangac718b62013-05-02 16:01:25 +00002893static void rtl8152_down(struct r8152 *tp)
2894{
hayeswang68714382014-04-11 17:54:31 +08002895 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2896 rtl_drop_queued_tx(tp);
2897 return;
2898 }
2899
hayeswang00a5e362014-02-18 21:48:59 +08002900 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002901 r8152b_disable_aldps(tp);
2902 r8152b_enter_oob(tp);
2903 r8152b_enable_aldps(tp);
2904}
2905
hayeswangd70b1132014-09-19 15:17:18 +08002906static void rtl8153_up(struct r8152 *tp)
2907{
2908 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2909 return;
2910
hayeswangb2143962015-07-24 13:54:23 +08002911 r8153_u1u2en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08002912 r8153_disable_aldps(tp);
2913 r8153_first_init(tp);
2914 r8153_enable_aldps(tp);
hayeswangb2143962015-07-24 13:54:23 +08002915 r8153_u2p3en(tp, true);
2916 r8153_u1u2en(tp, true);
2917 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08002918}
2919
hayeswang43779f82014-01-02 11:25:10 +08002920static void rtl8153_down(struct r8152 *tp)
2921{
hayeswang68714382014-04-11 17:54:31 +08002922 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2923 rtl_drop_queued_tx(tp);
2924 return;
2925 }
2926
hayeswangb9702722014-02-18 21:49:00 +08002927 r8153_u1u2en(tp, false);
hayeswangb2143962015-07-24 13:54:23 +08002928 r8153_u2p3en(tp, false);
hayeswangb9702722014-02-18 21:49:00 +08002929 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08002930 r8153_disable_aldps(tp);
2931 r8153_enter_oob(tp);
2932 r8153_enable_aldps(tp);
2933}
2934
hayeswangac718b62013-05-02 16:01:25 +00002935static void set_carrier(struct r8152 *tp)
2936{
2937 struct net_device *netdev = tp->netdev;
2938 u8 speed;
2939
hayeswang40a82912013-08-14 20:54:40 +08002940 clear_bit(RTL8152_LINK_CHG, &tp->flags);
hayeswangac718b62013-05-02 16:01:25 +00002941 speed = rtl8152_get_speed(tp);
2942
2943 if (speed & LINK_STATUS) {
hayeswang51d979f2015-02-06 11:30:47 +08002944 if (!netif_carrier_ok(netdev)) {
hayeswangc81229c2014-01-02 11:22:42 +08002945 tp->rtl_ops.enable(tp);
hayeswangac718b62013-05-02 16:01:25 +00002946 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
2947 netif_carrier_on(netdev);
hayeswangaa2e0922015-01-09 10:26:35 +08002948 rtl_start_rx(tp);
hayeswangac718b62013-05-02 16:01:25 +00002949 }
2950 } else {
hayeswang51d979f2015-02-06 11:30:47 +08002951 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00002952 netif_carrier_off(netdev);
hayeswangd823ab62015-01-12 12:06:23 +08002953 napi_disable(&tp->napi);
hayeswangc81229c2014-01-02 11:22:42 +08002954 tp->rtl_ops.disable(tp);
hayeswangd823ab62015-01-12 12:06:23 +08002955 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00002956 }
2957 }
hayeswangac718b62013-05-02 16:01:25 +00002958}
2959
2960static void rtl_work_func_t(struct work_struct *work)
2961{
2962 struct r8152 *tp = container_of(work, struct r8152, schedule.work);
2963
hayeswanga1f83fe2014-11-12 10:05:05 +08002964 /* If the device is unplugged or !netif_running(), the workqueue
2965 * doesn't need to wake the device, and could return directly.
2966 */
2967 if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
2968 return;
2969
hayeswang9a4be1b2014-02-18 21:49:07 +08002970 if (usb_autopm_get_interface(tp->intf) < 0)
2971 return;
2972
hayeswangac718b62013-05-02 16:01:25 +00002973 if (!test_bit(WORK_ENABLE, &tp->flags))
2974 goto out1;
2975
hayeswangb5403272014-10-09 18:00:26 +08002976 if (!mutex_trylock(&tp->control)) {
2977 schedule_delayed_work(&tp->schedule, 0);
2978 goto out1;
2979 }
2980
hayeswang40a82912013-08-14 20:54:40 +08002981 if (test_bit(RTL8152_LINK_CHG, &tp->flags))
2982 set_carrier(tp);
hayeswangac718b62013-05-02 16:01:25 +00002983
2984 if (test_bit(RTL8152_SET_RX_MODE, &tp->flags))
2985 _rtl8152_set_rx_mode(tp->netdev);
2986
hayeswangd823ab62015-01-12 12:06:23 +08002987 /* don't schedule napi before linking */
2988 if (test_bit(SCHEDULE_NAPI, &tp->flags) &&
hayeswang51d979f2015-02-06 11:30:47 +08002989 netif_carrier_ok(tp->netdev)) {
hayeswangd823ab62015-01-12 12:06:23 +08002990 clear_bit(SCHEDULE_NAPI, &tp->flags);
2991 napi_schedule(&tp->napi);
hayeswang0c3121f2014-03-07 11:04:36 +08002992 }
hayeswangaa66a5f2014-02-18 21:49:04 +08002993
2994 if (test_bit(PHY_RESET, &tp->flags))
2995 rtl_phy_reset(tp);
2996
hayeswangb5403272014-10-09 18:00:26 +08002997 mutex_unlock(&tp->control);
2998
hayeswangac718b62013-05-02 16:01:25 +00002999out1:
hayeswang9a4be1b2014-02-18 21:49:07 +08003000 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00003001}
3002
3003static int rtl8152_open(struct net_device *netdev)
3004{
3005 struct r8152 *tp = netdev_priv(netdev);
3006 int res = 0;
3007
hayeswang7e9da482014-02-18 21:49:05 +08003008 res = alloc_all_mem(tp);
3009 if (res)
3010 goto out;
3011
hayeswang51d979f2015-02-06 11:30:47 +08003012 netif_carrier_off(netdev);
hayeswangf4c74762014-10-29 11:12:16 +08003013
hayeswang9a4be1b2014-02-18 21:49:07 +08003014 res = usb_autopm_get_interface(tp->intf);
3015 if (res < 0) {
3016 free_all_mem(tp);
3017 goto out;
3018 }
3019
hayeswangb5403272014-10-09 18:00:26 +08003020 mutex_lock(&tp->control);
3021
hayeswang9a4be1b2014-02-18 21:49:07 +08003022 /* The WORK_ENABLE may be set when autoresume occurs */
3023 if (test_bit(WORK_ENABLE, &tp->flags)) {
3024 clear_bit(WORK_ENABLE, &tp->flags);
3025 usb_kill_urb(tp->intr_urb);
3026 cancel_delayed_work_sync(&tp->schedule);
hayeswangf4c74762014-10-29 11:12:16 +08003027
3028 /* disable the tx/rx, if the workqueue has enabled them. */
hayeswang51d979f2015-02-06 11:30:47 +08003029 if (netif_carrier_ok(netdev))
hayeswang9a4be1b2014-02-18 21:49:07 +08003030 tp->rtl_ops.disable(tp);
3031 }
3032
hayeswang7e9da482014-02-18 21:49:05 +08003033 tp->rtl_ops.up(tp);
3034
hayeswang43779f82014-01-02 11:25:10 +08003035 rtl8152_set_speed(tp, AUTONEG_ENABLE,
3036 tp->mii.supports_gmii ? SPEED_1000 : SPEED_100,
3037 DUPLEX_FULL);
hayeswang40a82912013-08-14 20:54:40 +08003038 netif_carrier_off(netdev);
hayeswangac718b62013-05-02 16:01:25 +00003039 netif_start_queue(netdev);
3040 set_bit(WORK_ENABLE, &tp->flags);
hayeswangdb8515e2014-03-06 15:07:16 +08003041
hayeswang3d55f442014-02-06 11:55:48 +08003042 res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3043 if (res) {
3044 if (res == -ENODEV)
3045 netif_device_detach(tp->netdev);
3046 netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
3047 res);
hayeswang7e9da482014-02-18 21:49:05 +08003048 free_all_mem(tp);
hayeswang93ffbea2014-11-05 10:17:02 +08003049 } else {
hayeswangd823ab62015-01-12 12:06:23 +08003050 napi_enable(&tp->napi);
hayeswang3d55f442014-02-06 11:55:48 +08003051 }
3052
hayeswangb5403272014-10-09 18:00:26 +08003053 mutex_unlock(&tp->control);
3054
hayeswang9a4be1b2014-02-18 21:49:07 +08003055 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00003056
hayeswang7e9da482014-02-18 21:49:05 +08003057out:
hayeswangac718b62013-05-02 16:01:25 +00003058 return res;
3059}
3060
3061static int rtl8152_close(struct net_device *netdev)
3062{
3063 struct r8152 *tp = netdev_priv(netdev);
3064 int res = 0;
3065
hayeswangd823ab62015-01-12 12:06:23 +08003066 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003067 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang3d55f442014-02-06 11:55:48 +08003068 usb_kill_urb(tp->intr_urb);
hayeswangac718b62013-05-02 16:01:25 +00003069 cancel_delayed_work_sync(&tp->schedule);
3070 netif_stop_queue(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003071
3072 res = usb_autopm_get_interface(tp->intf);
hayeswang53543db2015-02-06 11:30:48 +08003073 if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003074 rtl_drop_queued_tx(tp);
hayeswangd823ab62015-01-12 12:06:23 +08003075 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003076 } else {
hayeswangb5403272014-10-09 18:00:26 +08003077 mutex_lock(&tp->control);
3078
hayeswangb209af92014-08-25 15:53:00 +08003079 /* The autosuspend may have been enabled and wouldn't
hayeswang9a4be1b2014-02-18 21:49:07 +08003080 * be disable when autoresume occurs, because the
3081 * netif_running() would be false.
3082 */
hayeswang923e1ee2014-10-29 11:12:15 +08003083 rtl_runtime_suspend_enable(tp, false);
hayeswang9a4be1b2014-02-18 21:49:07 +08003084
hayeswang9a4be1b2014-02-18 21:49:07 +08003085 tp->rtl_ops.down(tp);
hayeswangb5403272014-10-09 18:00:26 +08003086
3087 mutex_unlock(&tp->control);
3088
hayeswang9a4be1b2014-02-18 21:49:07 +08003089 usb_autopm_put_interface(tp->intf);
3090 }
hayeswangac718b62013-05-02 16:01:25 +00003091
hayeswang7e9da482014-02-18 21:49:05 +08003092 free_all_mem(tp);
3093
hayeswangac718b62013-05-02 16:01:25 +00003094 return res;
3095}
3096
hayeswangd24f6132014-09-25 20:54:01 +08003097static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
hayeswangac718b62013-05-02 16:01:25 +00003098{
hayeswangd24f6132014-09-25 20:54:01 +08003099 ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
3100 ocp_reg_write(tp, OCP_EEE_DATA, reg);
3101 ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
3102}
3103
3104static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
3105{
3106 u16 data;
3107
3108 r8152_mmd_indirect(tp, dev, reg);
3109 data = ocp_reg_read(tp, OCP_EEE_DATA);
3110 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
3111
3112 return data;
3113}
3114
3115static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
3116{
3117 r8152_mmd_indirect(tp, dev, reg);
3118 ocp_reg_write(tp, OCP_EEE_DATA, data);
3119 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
3120}
3121
3122static void r8152_eee_en(struct r8152 *tp, bool enable)
3123{
3124 u16 config1, config2, config3;
hayeswang45f4a192014-01-06 17:08:41 +08003125 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00003126
3127 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
hayeswangd24f6132014-09-25 20:54:01 +08003128 config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
3129 config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
3130 config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
3131
3132 if (enable) {
3133 ocp_data |= EEE_RX_EN | EEE_TX_EN;
3134 config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
3135 config1 |= sd_rise_time(1);
3136 config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
3137 config3 |= fast_snr(42);
3138 } else {
3139 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
3140 config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
3141 RX_QUIET_EN);
3142 config1 |= sd_rise_time(7);
3143 config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
3144 config3 |= fast_snr(511);
3145 }
3146
hayeswangac718b62013-05-02 16:01:25 +00003147 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
hayeswangd24f6132014-09-25 20:54:01 +08003148 ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
3149 ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
3150 ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
3151}
3152
3153static void r8152b_enable_eee(struct r8152 *tp)
3154{
3155 r8152_eee_en(tp, true);
3156 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, MDIO_EEE_100TX);
3157}
3158
3159static void r8153_eee_en(struct r8152 *tp, bool enable)
3160{
3161 u32 ocp_data;
3162 u16 config;
3163
3164 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3165 config = ocp_reg_read(tp, OCP_EEE_CFG);
3166
3167 if (enable) {
3168 ocp_data |= EEE_RX_EN | EEE_TX_EN;
3169 config |= EEE10_EN;
3170 } else {
3171 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
3172 config &= ~EEE10_EN;
3173 }
3174
3175 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
3176 ocp_reg_write(tp, OCP_EEE_CFG, config);
hayeswangac718b62013-05-02 16:01:25 +00003177}
3178
hayeswang43779f82014-01-02 11:25:10 +08003179static void r8153_enable_eee(struct r8152 *tp)
3180{
hayeswangd24f6132014-09-25 20:54:01 +08003181 r8153_eee_en(tp, true);
3182 ocp_reg_write(tp, OCP_EEE_ADV, MDIO_EEE_1000T | MDIO_EEE_100TX);
hayeswang43779f82014-01-02 11:25:10 +08003183}
3184
hayeswangac718b62013-05-02 16:01:25 +00003185static void r8152b_enable_fc(struct r8152 *tp)
3186{
3187 u16 anar;
3188
3189 anar = r8152_mdio_read(tp, MII_ADVERTISE);
3190 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
3191 r8152_mdio_write(tp, MII_ADVERTISE, anar);
3192}
3193
hayeswang4f1d4d52014-03-11 16:24:19 +08003194static void rtl_tally_reset(struct r8152 *tp)
3195{
3196 u32 ocp_data;
3197
3198 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
3199 ocp_data |= TALLY_RESET;
3200 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
3201}
3202
hayeswangac718b62013-05-02 16:01:25 +00003203static void r8152b_init(struct r8152 *tp)
3204{
hayeswangebc2ec482013-08-14 20:54:38 +08003205 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00003206
hayeswang68714382014-04-11 17:54:31 +08003207 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3208 return;
3209
hayeswangd70b1132014-09-19 15:17:18 +08003210 r8152b_disable_aldps(tp);
3211
hayeswangac718b62013-05-02 16:01:25 +00003212 if (tp->version == RTL_VER_01) {
3213 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3214 ocp_data &= ~LED_MODE_MASK;
3215 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3216 }
3217
hayeswang00a5e362014-02-18 21:48:59 +08003218 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00003219
hayeswangac718b62013-05-02 16:01:25 +00003220 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
3221 ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
3222 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
3223 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
3224 ocp_data &= ~MCU_CLK_RATIO_MASK;
3225 ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
3226 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
3227 ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
3228 SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
3229 ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
3230
3231 r8152b_enable_eee(tp);
3232 r8152b_enable_aldps(tp);
3233 r8152b_enable_fc(tp);
hayeswang4f1d4d52014-03-11 16:24:19 +08003234 rtl_tally_reset(tp);
hayeswangac718b62013-05-02 16:01:25 +00003235
hayeswangebc2ec482013-08-14 20:54:38 +08003236 /* enable rx aggregation */
hayeswangac718b62013-05-02 16:01:25 +00003237 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
hayeswangebc2ec482013-08-14 20:54:38 +08003238 ocp_data &= ~RX_AGG_DISABLE;
hayeswangac718b62013-05-02 16:01:25 +00003239 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
3240}
3241
hayeswang43779f82014-01-02 11:25:10 +08003242static void r8153_init(struct r8152 *tp)
3243{
3244 u32 ocp_data;
3245 int i;
3246
hayeswang68714382014-04-11 17:54:31 +08003247 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3248 return;
3249
hayeswangd70b1132014-09-19 15:17:18 +08003250 r8153_disable_aldps(tp);
hayeswangb9702722014-02-18 21:49:00 +08003251 r8153_u1u2en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003252
3253 for (i = 0; i < 500; i++) {
3254 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
3255 AUTOLOAD_DONE)
3256 break;
3257 msleep(20);
3258 }
3259
3260 for (i = 0; i < 500; i++) {
3261 ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3262 if (ocp_data == PHY_STAT_LAN_ON || ocp_data == PHY_STAT_PWRDN)
3263 break;
3264 msleep(20);
3265 }
3266
hayeswangb2143962015-07-24 13:54:23 +08003267 usb_disable_lpm(tp->udev);
hayeswangb9702722014-02-18 21:49:00 +08003268 r8153_u2p3en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003269
hayeswang65bab842015-02-12 16:20:46 +08003270 if (tp->version == RTL_VER_04) {
3271 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
3272 ocp_data &= ~pwd_dn_scale_mask;
3273 ocp_data |= pwd_dn_scale(96);
3274 ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
3275
3276 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
3277 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
3278 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
3279 } else if (tp->version == RTL_VER_05) {
3280 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
3281 ocp_data &= ~ECM_ALDPS;
3282 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
3283
3284 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3285 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3286 ocp_data &= ~DYNAMIC_BURST;
3287 else
3288 ocp_data |= DYNAMIC_BURST;
3289 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
3290 }
3291
3292 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
3293 ocp_data |= EP4_FULL_FC;
3294 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
3295
hayeswang43779f82014-01-02 11:25:10 +08003296 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
3297 ocp_data &= ~TIMER11_EN;
3298 ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
3299
hayeswang43779f82014-01-02 11:25:10 +08003300 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3301 ocp_data &= ~LED_MODE_MASK;
3302 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3303
hayeswang65bab842015-02-12 16:20:46 +08003304 ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
hayeswang34203e22015-02-06 11:30:46 +08003305 if (tp->version == RTL_VER_04 && tp->udev->speed != USB_SPEED_SUPER)
hayeswang43779f82014-01-02 11:25:10 +08003306 ocp_data |= LPM_TIMER_500MS;
hayeswang34203e22015-02-06 11:30:46 +08003307 else
3308 ocp_data |= LPM_TIMER_500US;
hayeswang43779f82014-01-02 11:25:10 +08003309 ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
3310
3311 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
3312 ocp_data &= ~SEN_VAL_MASK;
3313 ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
3314 ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
3315
hayeswang65bab842015-02-12 16:20:46 +08003316 ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
3317
hayeswangb9702722014-02-18 21:49:00 +08003318 r8153_power_cut_en(tp, false);
3319 r8153_u1u2en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003320
hayeswang43779f82014-01-02 11:25:10 +08003321 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ALDPS_SPDWN_RATIO);
3322 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, EEE_SPDWN_RATIO);
3323 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3,
3324 PKT_AVAIL_SPDWN_EN | SUSPEND_SPDWN_EN |
3325 U1U2_SPDWN_EN | L1_SPDWN_EN);
3326 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4,
3327 PWRSAVE_SPDWN_EN | RXDV_SPDWN_EN | TX10MIDLE_EN |
3328 TP100_SPDWN_EN | TP500_SPDWN_EN | TP1000_SPDWN_EN |
3329 EEE_SPDWN_EN);
3330
3331 r8153_enable_eee(tp);
3332 r8153_enable_aldps(tp);
3333 r8152b_enable_fc(tp);
hayeswang4f1d4d52014-03-11 16:24:19 +08003334 rtl_tally_reset(tp);
hayeswangb2143962015-07-24 13:54:23 +08003335 r8153_u2p3en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003336}
3337
hayeswangac718b62013-05-02 16:01:25 +00003338static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
3339{
3340 struct r8152 *tp = usb_get_intfdata(intf);
hayeswang6cc69f22014-10-17 16:55:08 +08003341 struct net_device *netdev = tp->netdev;
3342 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +00003343
hayeswangb5403272014-10-09 18:00:26 +08003344 mutex_lock(&tp->control);
3345
hayeswang6cc69f22014-10-17 16:55:08 +08003346 if (PMSG_IS_AUTO(message)) {
3347 if (netif_running(netdev) && work_busy(&tp->schedule.work)) {
3348 ret = -EBUSY;
3349 goto out1;
3350 }
hayeswangac718b62013-05-02 16:01:25 +00003351
hayeswang6cc69f22014-10-17 16:55:08 +08003352 set_bit(SELECTIVE_SUSPEND, &tp->flags);
3353 } else {
3354 netif_device_detach(netdev);
3355 }
3356
hayeswange3bd1a82014-10-29 11:12:17 +08003357 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswangac718b62013-05-02 16:01:25 +00003358 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08003359 usb_kill_urb(tp->intr_urb);
hayeswangd823ab62015-01-12 12:06:23 +08003360 napi_disable(&tp->napi);
hayeswang9a4be1b2014-02-18 21:49:07 +08003361 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
hayeswang445f7f42014-09-23 16:31:47 +08003362 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003363 rtl_runtime_suspend_enable(tp, true);
3364 } else {
hayeswang6cc69f22014-10-17 16:55:08 +08003365 cancel_delayed_work_sync(&tp->schedule);
hayeswang9a4be1b2014-02-18 21:49:07 +08003366 tp->rtl_ops.down(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003367 }
hayeswangd823ab62015-01-12 12:06:23 +08003368 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003369 }
hayeswang6cc69f22014-10-17 16:55:08 +08003370out1:
hayeswangb5403272014-10-09 18:00:26 +08003371 mutex_unlock(&tp->control);
3372
hayeswang6cc69f22014-10-17 16:55:08 +08003373 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003374}
3375
3376static int rtl8152_resume(struct usb_interface *intf)
3377{
3378 struct r8152 *tp = usb_get_intfdata(intf);
3379
hayeswangb5403272014-10-09 18:00:26 +08003380 mutex_lock(&tp->control);
3381
hayeswang9a4be1b2014-02-18 21:49:07 +08003382 if (!test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3383 tp->rtl_ops.init(tp);
3384 netif_device_attach(tp->netdev);
3385 }
3386
hayeswangac718b62013-05-02 16:01:25 +00003387 if (netif_running(tp->netdev)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003388 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3389 rtl_runtime_suspend_enable(tp, false);
3390 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswang445f7f42014-09-23 16:31:47 +08003391 set_bit(WORK_ENABLE, &tp->flags);
hayeswang51d979f2015-02-06 11:30:47 +08003392 if (netif_carrier_ok(tp->netdev))
hayeswang445f7f42014-09-23 16:31:47 +08003393 rtl_start_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003394 } else {
3395 tp->rtl_ops.up(tp);
3396 rtl8152_set_speed(tp, AUTONEG_ENABLE,
hayeswangb209af92014-08-25 15:53:00 +08003397 tp->mii.supports_gmii ?
3398 SPEED_1000 : SPEED_100,
3399 DUPLEX_FULL);
hayeswang445f7f42014-09-23 16:31:47 +08003400 netif_carrier_off(tp->netdev);
3401 set_bit(WORK_ENABLE, &tp->flags);
hayeswang9a4be1b2014-02-18 21:49:07 +08003402 }
hayeswang40a82912013-08-14 20:54:40 +08003403 usb_submit_urb(tp->intr_urb, GFP_KERNEL);
hayeswang923e1ee2014-10-29 11:12:15 +08003404 } else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3405 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswangac718b62013-05-02 16:01:25 +00003406 }
3407
hayeswangb5403272014-10-09 18:00:26 +08003408 mutex_unlock(&tp->control);
3409
hayeswangac718b62013-05-02 16:01:25 +00003410 return 0;
3411}
3412
hayeswang21ff2e82014-02-18 21:49:06 +08003413static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3414{
3415 struct r8152 *tp = netdev_priv(dev);
3416
hayeswang9a4be1b2014-02-18 21:49:07 +08003417 if (usb_autopm_get_interface(tp->intf) < 0)
3418 return;
3419
hayeswangb5403272014-10-09 18:00:26 +08003420 mutex_lock(&tp->control);
3421
hayeswang21ff2e82014-02-18 21:49:06 +08003422 wol->supported = WAKE_ANY;
3423 wol->wolopts = __rtl_get_wol(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003424
hayeswangb5403272014-10-09 18:00:26 +08003425 mutex_unlock(&tp->control);
3426
hayeswang9a4be1b2014-02-18 21:49:07 +08003427 usb_autopm_put_interface(tp->intf);
hayeswang21ff2e82014-02-18 21:49:06 +08003428}
3429
3430static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3431{
3432 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003433 int ret;
3434
3435 ret = usb_autopm_get_interface(tp->intf);
3436 if (ret < 0)
3437 goto out_set_wol;
hayeswang21ff2e82014-02-18 21:49:06 +08003438
hayeswangb5403272014-10-09 18:00:26 +08003439 mutex_lock(&tp->control);
3440
hayeswang21ff2e82014-02-18 21:49:06 +08003441 __rtl_set_wol(tp, wol->wolopts);
3442 tp->saved_wolopts = wol->wolopts & WAKE_ANY;
3443
hayeswangb5403272014-10-09 18:00:26 +08003444 mutex_unlock(&tp->control);
3445
hayeswang9a4be1b2014-02-18 21:49:07 +08003446 usb_autopm_put_interface(tp->intf);
3447
3448out_set_wol:
3449 return ret;
hayeswang21ff2e82014-02-18 21:49:06 +08003450}
3451
hayeswanga5ec27c2014-02-18 21:49:11 +08003452static u32 rtl8152_get_msglevel(struct net_device *dev)
3453{
3454 struct r8152 *tp = netdev_priv(dev);
3455
3456 return tp->msg_enable;
3457}
3458
3459static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
3460{
3461 struct r8152 *tp = netdev_priv(dev);
3462
3463 tp->msg_enable = value;
3464}
3465
hayeswangac718b62013-05-02 16:01:25 +00003466static void rtl8152_get_drvinfo(struct net_device *netdev,
3467 struct ethtool_drvinfo *info)
3468{
3469 struct r8152 *tp = netdev_priv(netdev);
3470
hayeswangb0b46c72014-08-26 10:08:23 +08003471 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
3472 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
hayeswangac718b62013-05-02 16:01:25 +00003473 usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
3474}
3475
3476static
3477int rtl8152_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
3478{
3479 struct r8152 *tp = netdev_priv(netdev);
hayeswang8d4a4d72014-10-09 18:00:25 +08003480 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003481
3482 if (!tp->mii.mdio_read)
3483 return -EOPNOTSUPP;
3484
hayeswang8d4a4d72014-10-09 18:00:25 +08003485 ret = usb_autopm_get_interface(tp->intf);
3486 if (ret < 0)
3487 goto out;
3488
hayeswangb5403272014-10-09 18:00:26 +08003489 mutex_lock(&tp->control);
3490
hayeswang8d4a4d72014-10-09 18:00:25 +08003491 ret = mii_ethtool_gset(&tp->mii, cmd);
3492
hayeswangb5403272014-10-09 18:00:26 +08003493 mutex_unlock(&tp->control);
3494
hayeswang8d4a4d72014-10-09 18:00:25 +08003495 usb_autopm_put_interface(tp->intf);
3496
3497out:
3498 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003499}
3500
3501static int rtl8152_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3502{
3503 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003504 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003505
hayeswang9a4be1b2014-02-18 21:49:07 +08003506 ret = usb_autopm_get_interface(tp->intf);
3507 if (ret < 0)
3508 goto out;
3509
hayeswangb5403272014-10-09 18:00:26 +08003510 mutex_lock(&tp->control);
3511
hayeswang9a4be1b2014-02-18 21:49:07 +08003512 ret = rtl8152_set_speed(tp, cmd->autoneg, cmd->speed, cmd->duplex);
3513
hayeswangb5403272014-10-09 18:00:26 +08003514 mutex_unlock(&tp->control);
3515
hayeswang9a4be1b2014-02-18 21:49:07 +08003516 usb_autopm_put_interface(tp->intf);
3517
3518out:
3519 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003520}
3521
hayeswang4f1d4d52014-03-11 16:24:19 +08003522static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
3523 "tx_packets",
3524 "rx_packets",
3525 "tx_errors",
3526 "rx_errors",
3527 "rx_missed",
3528 "align_errors",
3529 "tx_single_collisions",
3530 "tx_multi_collisions",
3531 "rx_unicast",
3532 "rx_broadcast",
3533 "rx_multicast",
3534 "tx_aborted",
3535 "tx_underrun",
3536};
3537
3538static int rtl8152_get_sset_count(struct net_device *dev, int sset)
3539{
3540 switch (sset) {
3541 case ETH_SS_STATS:
3542 return ARRAY_SIZE(rtl8152_gstrings);
3543 default:
3544 return -EOPNOTSUPP;
3545 }
3546}
3547
3548static void rtl8152_get_ethtool_stats(struct net_device *dev,
3549 struct ethtool_stats *stats, u64 *data)
3550{
3551 struct r8152 *tp = netdev_priv(dev);
3552 struct tally_counter tally;
3553
hayeswang0b030242014-07-08 14:49:28 +08003554 if (usb_autopm_get_interface(tp->intf) < 0)
3555 return;
3556
hayeswang4f1d4d52014-03-11 16:24:19 +08003557 generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
3558
hayeswang0b030242014-07-08 14:49:28 +08003559 usb_autopm_put_interface(tp->intf);
3560
hayeswang4f1d4d52014-03-11 16:24:19 +08003561 data[0] = le64_to_cpu(tally.tx_packets);
3562 data[1] = le64_to_cpu(tally.rx_packets);
3563 data[2] = le64_to_cpu(tally.tx_errors);
3564 data[3] = le32_to_cpu(tally.rx_errors);
3565 data[4] = le16_to_cpu(tally.rx_missed);
3566 data[5] = le16_to_cpu(tally.align_errors);
3567 data[6] = le32_to_cpu(tally.tx_one_collision);
3568 data[7] = le32_to_cpu(tally.tx_multi_collision);
3569 data[8] = le64_to_cpu(tally.rx_unicast);
3570 data[9] = le64_to_cpu(tally.rx_broadcast);
3571 data[10] = le32_to_cpu(tally.rx_multicast);
3572 data[11] = le16_to_cpu(tally.tx_aborted);
hayeswangf37119c2014-10-28 14:05:51 +08003573 data[12] = le16_to_cpu(tally.tx_underrun);
hayeswang4f1d4d52014-03-11 16:24:19 +08003574}
3575
3576static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3577{
3578 switch (stringset) {
3579 case ETH_SS_STATS:
3580 memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
3581 break;
3582 }
3583}
3584
hayeswangdf35d282014-09-25 20:54:02 +08003585static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3586{
3587 u32 ocp_data, lp, adv, supported = 0;
3588 u16 val;
3589
3590 val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
3591 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3592
3593 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
3594 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3595
3596 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
3597 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3598
3599 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3600 ocp_data &= EEE_RX_EN | EEE_TX_EN;
3601
3602 eee->eee_enabled = !!ocp_data;
3603 eee->eee_active = !!(supported & adv & lp);
3604 eee->supported = supported;
3605 eee->advertised = adv;
3606 eee->lp_advertised = lp;
3607
3608 return 0;
3609}
3610
3611static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3612{
3613 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3614
3615 r8152_eee_en(tp, eee->eee_enabled);
3616
3617 if (!eee->eee_enabled)
3618 val = 0;
3619
3620 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
3621
3622 return 0;
3623}
3624
3625static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3626{
3627 u32 ocp_data, lp, adv, supported = 0;
3628 u16 val;
3629
3630 val = ocp_reg_read(tp, OCP_EEE_ABLE);
3631 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3632
3633 val = ocp_reg_read(tp, OCP_EEE_ADV);
3634 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3635
3636 val = ocp_reg_read(tp, OCP_EEE_LPABLE);
3637 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3638
3639 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3640 ocp_data &= EEE_RX_EN | EEE_TX_EN;
3641
3642 eee->eee_enabled = !!ocp_data;
3643 eee->eee_active = !!(supported & adv & lp);
3644 eee->supported = supported;
3645 eee->advertised = adv;
3646 eee->lp_advertised = lp;
3647
3648 return 0;
3649}
3650
3651static int r8153_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3652{
3653 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3654
3655 r8153_eee_en(tp, eee->eee_enabled);
3656
3657 if (!eee->eee_enabled)
3658 val = 0;
3659
3660 ocp_reg_write(tp, OCP_EEE_ADV, val);
3661
3662 return 0;
3663}
3664
3665static int
3666rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
3667{
3668 struct r8152 *tp = netdev_priv(net);
3669 int ret;
3670
3671 ret = usb_autopm_get_interface(tp->intf);
3672 if (ret < 0)
3673 goto out;
3674
hayeswangb5403272014-10-09 18:00:26 +08003675 mutex_lock(&tp->control);
3676
hayeswangdf35d282014-09-25 20:54:02 +08003677 ret = tp->rtl_ops.eee_get(tp, edata);
3678
hayeswangb5403272014-10-09 18:00:26 +08003679 mutex_unlock(&tp->control);
3680
hayeswangdf35d282014-09-25 20:54:02 +08003681 usb_autopm_put_interface(tp->intf);
3682
3683out:
3684 return ret;
3685}
3686
3687static int
3688rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
3689{
3690 struct r8152 *tp = netdev_priv(net);
3691 int ret;
3692
3693 ret = usb_autopm_get_interface(tp->intf);
3694 if (ret < 0)
3695 goto out;
3696
hayeswangb5403272014-10-09 18:00:26 +08003697 mutex_lock(&tp->control);
3698
hayeswangdf35d282014-09-25 20:54:02 +08003699 ret = tp->rtl_ops.eee_set(tp, edata);
hayeswang9d31a7b2014-10-06 10:36:04 +08003700 if (!ret)
3701 ret = mii_nway_restart(&tp->mii);
hayeswangdf35d282014-09-25 20:54:02 +08003702
hayeswangb5403272014-10-09 18:00:26 +08003703 mutex_unlock(&tp->control);
3704
hayeswangdf35d282014-09-25 20:54:02 +08003705 usb_autopm_put_interface(tp->intf);
3706
3707out:
3708 return ret;
3709}
3710
hayeswang8884f502014-10-28 14:05:52 +08003711static int rtl8152_nway_reset(struct net_device *dev)
3712{
3713 struct r8152 *tp = netdev_priv(dev);
3714 int ret;
3715
3716 ret = usb_autopm_get_interface(tp->intf);
3717 if (ret < 0)
3718 goto out;
3719
3720 mutex_lock(&tp->control);
3721
3722 ret = mii_nway_restart(&tp->mii);
3723
3724 mutex_unlock(&tp->control);
3725
3726 usb_autopm_put_interface(tp->intf);
3727
3728out:
3729 return ret;
3730}
3731
hayeswangefb3dd82015-02-12 14:33:48 +08003732static int rtl8152_get_coalesce(struct net_device *netdev,
3733 struct ethtool_coalesce *coalesce)
3734{
3735 struct r8152 *tp = netdev_priv(netdev);
3736
3737 switch (tp->version) {
3738 case RTL_VER_01:
3739 case RTL_VER_02:
3740 return -EOPNOTSUPP;
3741 default:
3742 break;
3743 }
3744
3745 coalesce->rx_coalesce_usecs = tp->coalesce;
3746
3747 return 0;
3748}
3749
3750static int rtl8152_set_coalesce(struct net_device *netdev,
3751 struct ethtool_coalesce *coalesce)
3752{
3753 struct r8152 *tp = netdev_priv(netdev);
3754 int ret;
3755
3756 switch (tp->version) {
3757 case RTL_VER_01:
3758 case RTL_VER_02:
3759 return -EOPNOTSUPP;
3760 default:
3761 break;
3762 }
3763
3764 if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
3765 return -EINVAL;
3766
3767 ret = usb_autopm_get_interface(tp->intf);
3768 if (ret < 0)
3769 return ret;
3770
3771 mutex_lock(&tp->control);
3772
3773 if (tp->coalesce != coalesce->rx_coalesce_usecs) {
3774 tp->coalesce = coalesce->rx_coalesce_usecs;
3775
3776 if (netif_running(tp->netdev) && netif_carrier_ok(netdev))
3777 r8153_set_rx_early_timeout(tp);
3778 }
3779
3780 mutex_unlock(&tp->control);
3781
3782 usb_autopm_put_interface(tp->intf);
3783
3784 return ret;
3785}
3786
hayeswangac718b62013-05-02 16:01:25 +00003787static struct ethtool_ops ops = {
3788 .get_drvinfo = rtl8152_get_drvinfo,
3789 .get_settings = rtl8152_get_settings,
3790 .set_settings = rtl8152_set_settings,
3791 .get_link = ethtool_op_get_link,
hayeswang8884f502014-10-28 14:05:52 +08003792 .nway_reset = rtl8152_nway_reset,
hayeswanga5ec27c2014-02-18 21:49:11 +08003793 .get_msglevel = rtl8152_get_msglevel,
3794 .set_msglevel = rtl8152_set_msglevel,
hayeswang21ff2e82014-02-18 21:49:06 +08003795 .get_wol = rtl8152_get_wol,
3796 .set_wol = rtl8152_set_wol,
hayeswang4f1d4d52014-03-11 16:24:19 +08003797 .get_strings = rtl8152_get_strings,
3798 .get_sset_count = rtl8152_get_sset_count,
3799 .get_ethtool_stats = rtl8152_get_ethtool_stats,
hayeswangefb3dd82015-02-12 14:33:48 +08003800 .get_coalesce = rtl8152_get_coalesce,
3801 .set_coalesce = rtl8152_set_coalesce,
hayeswangdf35d282014-09-25 20:54:02 +08003802 .get_eee = rtl_ethtool_get_eee,
3803 .set_eee = rtl_ethtool_set_eee,
hayeswangac718b62013-05-02 16:01:25 +00003804};
3805
3806static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
3807{
3808 struct r8152 *tp = netdev_priv(netdev);
3809 struct mii_ioctl_data *data = if_mii(rq);
hayeswang9a4be1b2014-02-18 21:49:07 +08003810 int res;
3811
hayeswang68714382014-04-11 17:54:31 +08003812 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3813 return -ENODEV;
3814
hayeswang9a4be1b2014-02-18 21:49:07 +08003815 res = usb_autopm_get_interface(tp->intf);
3816 if (res < 0)
3817 goto out;
hayeswangac718b62013-05-02 16:01:25 +00003818
3819 switch (cmd) {
3820 case SIOCGMIIPHY:
3821 data->phy_id = R8152_PHY_ID; /* Internal PHY */
3822 break;
3823
3824 case SIOCGMIIREG:
hayeswangb5403272014-10-09 18:00:26 +08003825 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003826 data->val_out = r8152_mdio_read(tp, data->reg_num);
hayeswangb5403272014-10-09 18:00:26 +08003827 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003828 break;
3829
3830 case SIOCSMIIREG:
3831 if (!capable(CAP_NET_ADMIN)) {
3832 res = -EPERM;
3833 break;
3834 }
hayeswangb5403272014-10-09 18:00:26 +08003835 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003836 r8152_mdio_write(tp, data->reg_num, data->val_in);
hayeswangb5403272014-10-09 18:00:26 +08003837 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003838 break;
3839
3840 default:
3841 res = -EOPNOTSUPP;
3842 }
3843
hayeswang9a4be1b2014-02-18 21:49:07 +08003844 usb_autopm_put_interface(tp->intf);
3845
3846out:
hayeswangac718b62013-05-02 16:01:25 +00003847 return res;
3848}
3849
hayeswang69b4b7a2014-07-10 10:58:54 +08003850static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
3851{
3852 struct r8152 *tp = netdev_priv(dev);
hayeswang396e2e22015-02-12 14:33:47 +08003853 int ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08003854
3855 switch (tp->version) {
3856 case RTL_VER_01:
3857 case RTL_VER_02:
3858 return eth_change_mtu(dev, new_mtu);
3859 default:
3860 break;
3861 }
3862
3863 if (new_mtu < 68 || new_mtu > RTL8153_MAX_MTU)
3864 return -EINVAL;
3865
hayeswang396e2e22015-02-12 14:33:47 +08003866 ret = usb_autopm_get_interface(tp->intf);
3867 if (ret < 0)
3868 return ret;
3869
3870 mutex_lock(&tp->control);
3871
hayeswang69b4b7a2014-07-10 10:58:54 +08003872 dev->mtu = new_mtu;
3873
hayeswang396e2e22015-02-12 14:33:47 +08003874 if (netif_running(dev) && netif_carrier_ok(dev))
3875 r8153_set_rx_early_size(tp);
3876
3877 mutex_unlock(&tp->control);
3878
3879 usb_autopm_put_interface(tp->intf);
3880
3881 return ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08003882}
3883
hayeswangac718b62013-05-02 16:01:25 +00003884static const struct net_device_ops rtl8152_netdev_ops = {
3885 .ndo_open = rtl8152_open,
3886 .ndo_stop = rtl8152_close,
3887 .ndo_do_ioctl = rtl8152_ioctl,
3888 .ndo_start_xmit = rtl8152_start_xmit,
3889 .ndo_tx_timeout = rtl8152_tx_timeout,
hayeswangc5554292014-09-12 10:43:11 +08003890 .ndo_set_features = rtl8152_set_features,
hayeswangac718b62013-05-02 16:01:25 +00003891 .ndo_set_rx_mode = rtl8152_set_rx_mode,
3892 .ndo_set_mac_address = rtl8152_set_mac_address,
hayeswang69b4b7a2014-07-10 10:58:54 +08003893 .ndo_change_mtu = rtl8152_change_mtu,
hayeswangac718b62013-05-02 16:01:25 +00003894 .ndo_validate_addr = eth_validate_addr,
hayeswanga5e31252015-01-06 17:41:58 +08003895 .ndo_features_check = rtl8152_features_check,
hayeswangac718b62013-05-02 16:01:25 +00003896};
3897
3898static void r8152b_get_version(struct r8152 *tp)
3899{
3900 u32 ocp_data;
3901 u16 version;
3902
3903 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR1);
3904 version = (u16)(ocp_data & VERSION_MASK);
3905
3906 switch (version) {
3907 case 0x4c00:
3908 tp->version = RTL_VER_01;
3909 break;
3910 case 0x4c10:
3911 tp->version = RTL_VER_02;
3912 break;
hayeswang43779f82014-01-02 11:25:10 +08003913 case 0x5c00:
3914 tp->version = RTL_VER_03;
3915 tp->mii.supports_gmii = 1;
3916 break;
3917 case 0x5c10:
3918 tp->version = RTL_VER_04;
3919 tp->mii.supports_gmii = 1;
3920 break;
3921 case 0x5c20:
3922 tp->version = RTL_VER_05;
3923 tp->mii.supports_gmii = 1;
3924 break;
hayeswangac718b62013-05-02 16:01:25 +00003925 default:
3926 netif_info(tp, probe, tp->netdev,
3927 "Unknown version 0x%04x\n", version);
3928 break;
3929 }
3930}
3931
hayeswange3fe0b12014-01-02 11:22:39 +08003932static void rtl8152_unload(struct r8152 *tp)
3933{
hayeswang68714382014-04-11 17:54:31 +08003934 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3935 return;
3936
hayeswang00a5e362014-02-18 21:48:59 +08003937 if (tp->version != RTL_VER_01)
3938 r8152_power_cut_en(tp, true);
hayeswange3fe0b12014-01-02 11:22:39 +08003939}
3940
hayeswang43779f82014-01-02 11:25:10 +08003941static void rtl8153_unload(struct r8152 *tp)
3942{
hayeswang68714382014-04-11 17:54:31 +08003943 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3944 return;
3945
hayeswang49be1722014-10-01 13:25:11 +08003946 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003947}
3948
hayeswang55b65472014-11-06 12:47:39 +08003949static int rtl_ops_init(struct r8152 *tp)
hayeswangc81229c2014-01-02 11:22:42 +08003950{
3951 struct rtl_ops *ops = &tp->rtl_ops;
hayeswang55b65472014-11-06 12:47:39 +08003952 int ret = 0;
hayeswangc81229c2014-01-02 11:22:42 +08003953
hayeswang55b65472014-11-06 12:47:39 +08003954 switch (tp->version) {
3955 case RTL_VER_01:
3956 case RTL_VER_02:
3957 ops->init = r8152b_init;
3958 ops->enable = rtl8152_enable;
3959 ops->disable = rtl8152_disable;
3960 ops->up = rtl8152_up;
3961 ops->down = rtl8152_down;
3962 ops->unload = rtl8152_unload;
3963 ops->eee_get = r8152_get_eee;
3964 ops->eee_set = r8152_set_eee;
hayeswang43779f82014-01-02 11:25:10 +08003965 break;
3966
hayeswang55b65472014-11-06 12:47:39 +08003967 case RTL_VER_03:
3968 case RTL_VER_04:
3969 case RTL_VER_05:
3970 ops->init = r8153_init;
3971 ops->enable = rtl8153_enable;
3972 ops->disable = rtl8153_disable;
3973 ops->up = rtl8153_up;
3974 ops->down = rtl8153_down;
3975 ops->unload = rtl8153_unload;
3976 ops->eee_get = r8153_get_eee;
3977 ops->eee_set = r8153_set_eee;
hayeswangc81229c2014-01-02 11:22:42 +08003978 break;
3979
3980 default:
hayeswang55b65472014-11-06 12:47:39 +08003981 ret = -ENODEV;
3982 netif_err(tp, probe, tp->netdev, "Unknown Device\n");
hayeswangc81229c2014-01-02 11:22:42 +08003983 break;
3984 }
3985
3986 return ret;
3987}
3988
hayeswangac718b62013-05-02 16:01:25 +00003989static int rtl8152_probe(struct usb_interface *intf,
3990 const struct usb_device_id *id)
3991{
3992 struct usb_device *udev = interface_to_usbdev(intf);
3993 struct r8152 *tp;
3994 struct net_device *netdev;
hayeswangebc2ec482013-08-14 20:54:38 +08003995 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003996
hayeswang10c32712014-03-04 20:47:48 +08003997 if (udev->actconfig->desc.bConfigurationValue != 1) {
3998 usb_driver_set_configuration(udev, 1);
3999 return -ENODEV;
4000 }
4001
4002 usb_reset_device(udev);
hayeswangac718b62013-05-02 16:01:25 +00004003 netdev = alloc_etherdev(sizeof(struct r8152));
4004 if (!netdev) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004005 dev_err(&intf->dev, "Out of memory\n");
hayeswangac718b62013-05-02 16:01:25 +00004006 return -ENOMEM;
4007 }
4008
hayeswangebc2ec482013-08-14 20:54:38 +08004009 SET_NETDEV_DEV(netdev, &intf->dev);
hayeswangac718b62013-05-02 16:01:25 +00004010 tp = netdev_priv(netdev);
4011 tp->msg_enable = 0x7FFF;
4012
hayeswange3ad4122014-01-06 17:08:42 +08004013 tp->udev = udev;
4014 tp->netdev = netdev;
4015 tp->intf = intf;
4016
hayeswang82cf94c2014-11-06 12:47:38 +08004017 r8152b_get_version(tp);
hayeswang55b65472014-11-06 12:47:39 +08004018 ret = rtl_ops_init(tp);
hayeswang31ca1de2014-01-06 17:08:43 +08004019 if (ret)
4020 goto out;
hayeswangc81229c2014-01-02 11:22:42 +08004021
hayeswangb5403272014-10-09 18:00:26 +08004022 mutex_init(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004023 INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
4024
hayeswangac718b62013-05-02 16:01:25 +00004025 netdev->netdev_ops = &rtl8152_netdev_ops;
4026 netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
hayeswang5bd23882013-08-14 20:54:39 +08004027
hayeswang60c89072014-03-07 11:04:39 +08004028 netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1bb2014-03-07 11:04:40 +08004029 NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
hayeswangc5554292014-09-12 10:43:11 +08004030 NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
4031 NETIF_F_HW_VLAN_CTAG_TX;
hayeswang60c89072014-03-07 11:04:39 +08004032 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1bb2014-03-07 11:04:40 +08004033 NETIF_F_TSO | NETIF_F_FRAGLIST |
hayeswangc5554292014-09-12 10:43:11 +08004034 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
hayeswangccc39fa2015-02-06 11:30:49 +08004035 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
hayeswangc5554292014-09-12 10:43:11 +08004036 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4037 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
4038 NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
hayeswangdb8515e2014-03-06 15:07:16 +08004039
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00004040 netdev->ethtool_ops = &ops;
hayeswang60c89072014-03-07 11:04:39 +08004041 netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
hayeswangac718b62013-05-02 16:01:25 +00004042
4043 tp->mii.dev = netdev;
4044 tp->mii.mdio_read = read_mii_word;
4045 tp->mii.mdio_write = write_mii_word;
4046 tp->mii.phy_id_mask = 0x3f;
4047 tp->mii.reg_num_mask = 0x1f;
4048 tp->mii.phy_id = R8152_PHY_ID;
hayeswangac718b62013-05-02 16:01:25 +00004049
hayeswang464ec102015-02-12 14:33:46 +08004050 switch (udev->speed) {
4051 case USB_SPEED_SUPER:
4052 tp->coalesce = COALESCE_SUPER;
4053 break;
4054 case USB_SPEED_HIGH:
4055 tp->coalesce = COALESCE_HIGH;
4056 break;
4057 default:
4058 tp->coalesce = COALESCE_SLOW;
4059 break;
4060 }
4061
hayeswang9a4be1b2014-02-18 21:49:07 +08004062 intf->needs_remote_wakeup = 1;
4063
hayeswangc81229c2014-01-02 11:22:42 +08004064 tp->rtl_ops.init(tp);
hayeswangac718b62013-05-02 16:01:25 +00004065 set_ethernet_addr(tp);
4066
hayeswangac718b62013-05-02 16:01:25 +00004067 usb_set_intfdata(intf, tp);
hayeswangd823ab62015-01-12 12:06:23 +08004068 netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
hayeswangac718b62013-05-02 16:01:25 +00004069
hayeswangebc2ec482013-08-14 20:54:38 +08004070 ret = register_netdev(netdev);
4071 if (ret != 0) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004072 netif_err(tp, probe, netdev, "couldn't register the device\n");
hayeswangebc2ec482013-08-14 20:54:38 +08004073 goto out1;
hayeswangac718b62013-05-02 16:01:25 +00004074 }
4075
hayeswang21ff2e82014-02-18 21:49:06 +08004076 tp->saved_wolopts = __rtl_get_wol(tp);
4077 if (tp->saved_wolopts)
4078 device_set_wakeup_enable(&udev->dev, true);
4079 else
4080 device_set_wakeup_enable(&udev->dev, false);
4081
Hayes Wang4a8deae2014-01-07 11:18:22 +08004082 netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
hayeswangac718b62013-05-02 16:01:25 +00004083
4084 return 0;
4085
hayeswangac718b62013-05-02 16:01:25 +00004086out1:
hayeswangd823ab62015-01-12 12:06:23 +08004087 netif_napi_del(&tp->napi);
hayeswangebc2ec482013-08-14 20:54:38 +08004088 usb_set_intfdata(intf, NULL);
hayeswangac718b62013-05-02 16:01:25 +00004089out:
4090 free_netdev(netdev);
hayeswangebc2ec482013-08-14 20:54:38 +08004091 return ret;
hayeswangac718b62013-05-02 16:01:25 +00004092}
4093
hayeswangac718b62013-05-02 16:01:25 +00004094static void rtl8152_disconnect(struct usb_interface *intf)
4095{
4096 struct r8152 *tp = usb_get_intfdata(intf);
4097
4098 usb_set_intfdata(intf, NULL);
4099 if (tp) {
hayeswangf561de32014-09-30 16:48:01 +08004100 struct usb_device *udev = tp->udev;
4101
4102 if (udev->state == USB_STATE_NOTATTACHED)
4103 set_bit(RTL8152_UNPLUG, &tp->flags);
4104
hayeswangd823ab62015-01-12 12:06:23 +08004105 netif_napi_del(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00004106 unregister_netdev(tp->netdev);
hayeswangc81229c2014-01-02 11:22:42 +08004107 tp->rtl_ops.unload(tp);
hayeswangac718b62013-05-02 16:01:25 +00004108 free_netdev(tp->netdev);
4109 }
4110}
4111
hayeswangd9a28c52014-12-04 10:43:11 +08004112#define REALTEK_USB_DEVICE(vend, prod) \
4113 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
4114 USB_DEVICE_ID_MATCH_INT_CLASS, \
4115 .idVendor = (vend), \
4116 .idProduct = (prod), \
4117 .bInterfaceClass = USB_CLASS_VENDOR_SPEC \
4118}, \
4119{ \
4120 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
4121 USB_DEVICE_ID_MATCH_DEVICE, \
4122 .idVendor = (vend), \
4123 .idProduct = (prod), \
4124 .bInterfaceClass = USB_CLASS_COMM, \
4125 .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
4126 .bInterfaceProtocol = USB_CDC_PROTO_NONE
4127
hayeswangac718b62013-05-02 16:01:25 +00004128/* table of devices that work with this driver */
4129static struct usb_device_id rtl8152_table[] = {
hayeswangd9a28c52014-12-04 10:43:11 +08004130 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
4131 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
4132 {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
Christian Hesse347eec32015-03-31 14:10:07 +02004133 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205)},
Vasily Titskiy1006da12015-05-06 10:31:21 -04004134 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)},
Zheng Liud065c3c12015-07-07 13:54:12 -07004135 {REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff)},
hayeswangac718b62013-05-02 16:01:25 +00004136 {}
4137};
4138
4139MODULE_DEVICE_TABLE(usb, rtl8152_table);
4140
4141static struct usb_driver rtl8152_driver = {
4142 .name = MODULENAME,
hayeswangebc2ec482013-08-14 20:54:38 +08004143 .id_table = rtl8152_table,
hayeswangac718b62013-05-02 16:01:25 +00004144 .probe = rtl8152_probe,
4145 .disconnect = rtl8152_disconnect,
hayeswangac718b62013-05-02 16:01:25 +00004146 .suspend = rtl8152_suspend,
hayeswangebc2ec482013-08-14 20:54:38 +08004147 .resume = rtl8152_resume,
4148 .reset_resume = rtl8152_resume,
hayeswang9a4be1b2014-02-18 21:49:07 +08004149 .supports_autosuspend = 1,
hayeswanga6347822014-02-18 21:49:10 +08004150 .disable_hub_initiated_lpm = 1,
hayeswangac718b62013-05-02 16:01:25 +00004151};
4152
Sachin Kamatb4236daa2013-05-16 17:48:08 +00004153module_usb_driver(rtl8152_driver);
hayeswangac718b62013-05-02 16:01:25 +00004154
4155MODULE_AUTHOR(DRIVER_AUTHOR);
4156MODULE_DESCRIPTION(DRIVER_DESC);
4157MODULE_LICENSE("GPL");