blob: 144dc641c239ca9a5dcbf4ef8ef83ad74ac97872 [file] [log] [blame]
hayeswangac718b62013-05-02 16:01:25 +00001/*
hayeswangc7de7de2014-01-15 10:42:16 +08002 * Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved.
hayeswangac718b62013-05-02 16:01:25 +00003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
7 *
8 */
9
hayeswangac718b62013-05-02 16:01:25 +000010#include <linux/signal.h>
11#include <linux/slab.h>
12#include <linux/module.h>
hayeswangac718b62013-05-02 16:01:25 +000013#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/mii.h>
16#include <linux/ethtool.h>
17#include <linux/usb.h>
18#include <linux/crc32.h>
19#include <linux/if_vlan.h>
20#include <linux/uaccess.h>
hayeswangebc2ec42013-08-14 20:54:38 +080021#include <linux/list.h>
hayeswang5bd23882013-08-14 20:54:39 +080022#include <linux/ip.h>
23#include <linux/ipv6.h>
hayeswang6128d1b2014-03-07 11:04:40 +080024#include <net/ip6_checksum.h>
hayeswang4c4a6b12014-09-25 20:54:00 +080025#include <uapi/linux/mdio.h>
26#include <linux/mdio.h>
hayeswangd9a28c52014-12-04 10:43:11 +080027#include <linux/usb/cdc.h>
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
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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 Liud065c3c2015-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
hayeswang6128d1b2014-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
hayeswang6128d1b2014-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
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-08-14 20:54:38 +08001051 struct rx_agg *agg;
1052 struct r8152 *tp;
hayeswangac718b62013-05-02 16:01:25 +00001053
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-08-14 20:54:38 +08001061
hayeswangac718b62013-05-02 16:01:25 +00001062 if (test_bit(RTL8152_UNPLUG, &tp->flags))
1063 return;
hayeswangebc2ec42013-08-14 20:54:38 +08001064
1065 if (!test_bit(WORK_ENABLE, &tp->flags))
hayeswangac718b62013-05-02 16:01:25 +00001066 return;
1067
hayeswangebc2ec42013-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 */
hayeswangebc2ec42013-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:
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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");
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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{
hayeswangebc2ec42013-08-14 20:54:38 +08001108 struct net_device_stats *stats;
hayeswangd104eaf2014-03-06 15:07:17 +08001109 struct net_device *netdev;
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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()
hayeswang6128d1b2014-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);
hayeswang6128d1b2014-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()
hayeswang6128d1b2014-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;
hayeswang6128d1b2014-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;
hayeswang6128d1b2014-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) {
hayeswang6128d1b2014-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
hayeswang6128d1b2014-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 }
hayeswang6128d1b2014-03-07 11:04:40 +08001480 opts1 |= GTSENDV6;
hayeswang6128d1b2014-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
hayeswang6128d1b2014-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
hayeswang6128d1b2014-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
hayeswang6128d1b2014-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;
hayeswang6128d1b2014-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)
hayeswangebc2ec42013-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 }
hayeswangebc2ec42013-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
hayeswangebc2ec42013-08-14 20:54:38 +08001700 list_del_init(cursor);
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-08-14 20:54:38 +08001706
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-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;
hayeswangebc2ec42013-08-14 20:54:38 +08001732 }
hayeswang565cab02014-03-07 11:04:38 +08001733
1734 skb->ip_summed = r8152_rx_csum(tp, rx_desc);
hayeswangebc2ec42013-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 }
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-08-14 20:54:38 +08001750 rx_desc = (struct rx_desc *)rx_data;
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-08-14 20:54:38 +08001768 }
hayeswangd823ab62015-01-12 12:06:23 +08001769
1770out1:
1771 return work_done;
hayeswangebc2ec42013-08-14 20:54:38 +08001772}
1773
1774static void tx_bottom(struct r8152 *tp)
1775{
hayeswangebc2ec42013-08-14 20:54:38 +08001776 int res;
1777
hayeswangb1379d92013-08-16 16:09:37 +08001778 do {
1779 struct tx_agg *agg;
hayeswangebc2ec42013-08-14 20:54:38 +08001780
hayeswangb1379d92013-08-16 16:09:37 +08001781 if (skb_queue_empty(&tp->tx_queue))
hayeswangebc2ec42013-08-14 20:54:38 +08001782 break;
1783
hayeswangb1379d92013-08-16 16:09:37 +08001784 agg = r8152_get_tx_agg(tp);
1785 if (!agg)
hayeswangebc2ec42013-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 }
hayeswangebc2ec42013-08-14 20:54:38 +08001807 }
hayeswangb1379d92013-08-16 16:09:37 +08001808 } while (res == 0);
hayeswangebc2ec42013-08-14 20:54:38 +08001809}
1810
hayeswangd823ab62015-01-12 12:06:23 +08001811static void bottom_half(struct r8152 *tp)
hayeswangebc2ec42013-08-14 20:54:38 +08001812{
hayeswangebc2ec42013-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 */
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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");
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-08-14 20:54:38 +08001990
hayeswang61598782013-11-20 17:30:55 +08001991 skb_queue_tail(&tp->tx_queue, skb);
hayeswangebc2ec42013-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{
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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);
hayeswangebc2ec42013-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
2078 INIT_LIST_HEAD(&tp->rx_done);
2079 for (i = 0; i < RTL8152_MAX_RX; i++) {
2080 INIT_LIST_HEAD(&tp->rx_info[i].list);
2081 ret = r8152_submit_rx(tp, &tp->rx_info[i], GFP_KERNEL);
2082 if (ret)
2083 break;
2084 }
2085
hayeswang7bcf4f62014-11-20 10:29:06 +08002086 if (ret && ++i < RTL8152_MAX_RX) {
2087 struct list_head rx_queue;
2088 unsigned long flags;
2089
2090 INIT_LIST_HEAD(&rx_queue);
2091
2092 do {
2093 struct rx_agg *agg = &tp->rx_info[i++];
2094 struct urb *urb = agg->urb;
2095
2096 urb->actual_length = 0;
2097 list_add_tail(&agg->list, &rx_queue);
2098 } while (i < RTL8152_MAX_RX);
2099
2100 spin_lock_irqsave(&tp->rx_lock, flags);
2101 list_splice_tail(&rx_queue, &tp->rx_done);
2102 spin_unlock_irqrestore(&tp->rx_lock, flags);
2103 }
2104
hayeswang445f7f42014-09-23 16:31:47 +08002105 return ret;
2106}
2107
2108static int rtl_stop_rx(struct r8152 *tp)
2109{
2110 int i;
2111
2112 for (i = 0; i < RTL8152_MAX_RX; i++)
2113 usb_kill_urb(tp->rx_info[i].urb);
2114
hayeswangd823ab62015-01-12 12:06:23 +08002115 while (!skb_queue_empty(&tp->rx_queue))
2116 dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2117
hayeswang445f7f42014-09-23 16:31:47 +08002118 return 0;
2119}
2120
hayeswang507605a2014-01-02 11:22:43 +08002121static int rtl_enable(struct r8152 *tp)
2122{
2123 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00002124
2125 r8152b_reset_packet_filter(tp);
2126
2127 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2128 ocp_data |= CR_RE | CR_TE;
2129 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2130
hayeswang00a5e362014-02-18 21:48:59 +08002131 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002132
hayeswangaa2e0922015-01-09 10:26:35 +08002133 return 0;
hayeswangac718b62013-05-02 16:01:25 +00002134}
2135
hayeswang507605a2014-01-02 11:22:43 +08002136static int rtl8152_enable(struct r8152 *tp)
2137{
hayeswang68714382014-04-11 17:54:31 +08002138 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2139 return -ENODEV;
2140
hayeswang507605a2014-01-02 11:22:43 +08002141 set_tx_qlen(tp);
2142 rtl_set_eee_plus(tp);
2143
2144 return rtl_enable(tp);
2145}
2146
hayeswang464ec102015-02-12 14:33:46 +08002147static void r8153_set_rx_early_timeout(struct r8152 *tp)
hayeswang43779f82014-01-02 11:25:10 +08002148{
hayeswang464ec102015-02-12 14:33:46 +08002149 u32 ocp_data = tp->coalesce / 8;
hayeswang43779f82014-01-02 11:25:10 +08002150
hayeswang464ec102015-02-12 14:33:46 +08002151 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, ocp_data);
2152}
2153
2154static void r8153_set_rx_early_size(struct r8152 *tp)
2155{
2156 u32 mtu = tp->netdev->mtu;
2157 u32 ocp_data = (agg_buf_sz - mtu - VLAN_ETH_HLEN - VLAN_HLEN) / 4;
2158
2159 ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data);
hayeswang43779f82014-01-02 11:25:10 +08002160}
2161
2162static int rtl8153_enable(struct r8152 *tp)
2163{
hayeswang68714382014-04-11 17:54:31 +08002164 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2165 return -ENODEV;
2166
hayeswangb2143962015-07-24 13:54:23 +08002167 usb_disable_lpm(tp->udev);
hayeswang43779f82014-01-02 11:25:10 +08002168 set_tx_qlen(tp);
2169 rtl_set_eee_plus(tp);
hayeswang464ec102015-02-12 14:33:46 +08002170 r8153_set_rx_early_timeout(tp);
2171 r8153_set_rx_early_size(tp);
hayeswang43779f82014-01-02 11:25:10 +08002172
2173 return rtl_enable(tp);
2174}
2175
hayeswangd70b1132014-09-19 15:17:18 +08002176static void rtl_disable(struct r8152 *tp)
hayeswangac718b62013-05-02 16:01:25 +00002177{
hayeswangebc2ec42013-08-14 20:54:38 +08002178 u32 ocp_data;
2179 int i;
hayeswangac718b62013-05-02 16:01:25 +00002180
hayeswang68714382014-04-11 17:54:31 +08002181 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2182 rtl_drop_queued_tx(tp);
2183 return;
2184 }
2185
hayeswangac718b62013-05-02 16:01:25 +00002186 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2187 ocp_data &= ~RCR_ACPT_ALL;
2188 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2189
hayeswang00a5e362014-02-18 21:48:59 +08002190 rtl_drop_queued_tx(tp);
hayeswangebc2ec42013-08-14 20:54:38 +08002191
2192 for (i = 0; i < RTL8152_MAX_TX; i++)
2193 usb_kill_urb(tp->tx_info[i].urb);
hayeswangac718b62013-05-02 16:01:25 +00002194
hayeswang00a5e362014-02-18 21:48:59 +08002195 rxdy_gated_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002196
2197 for (i = 0; i < 1000; i++) {
2198 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2199 if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2200 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002201 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002202 }
2203
2204 for (i = 0; i < 1000; i++) {
2205 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2206 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002207 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002208 }
2209
hayeswang445f7f42014-09-23 16:31:47 +08002210 rtl_stop_rx(tp);
hayeswangac718b62013-05-02 16:01:25 +00002211
2212 rtl8152_nic_reset(tp);
2213}
2214
hayeswang00a5e362014-02-18 21:48:59 +08002215static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2216{
2217 u32 ocp_data;
2218
2219 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2220 if (enable)
2221 ocp_data |= POWER_CUT;
2222 else
2223 ocp_data &= ~POWER_CUT;
2224 ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2225
2226 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2227 ocp_data &= ~RESUME_INDICATE;
2228 ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
hayeswang00a5e362014-02-18 21:48:59 +08002229}
2230
hayeswangc5554292014-09-12 10:43:11 +08002231static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2232{
2233 u32 ocp_data;
2234
2235 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2236 if (enable)
2237 ocp_data |= CPCR_RX_VLAN;
2238 else
2239 ocp_data &= ~CPCR_RX_VLAN;
2240 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2241}
2242
2243static int rtl8152_set_features(struct net_device *dev,
2244 netdev_features_t features)
2245{
2246 netdev_features_t changed = features ^ dev->features;
2247 struct r8152 *tp = netdev_priv(dev);
hayeswang405f8a02014-10-09 18:00:24 +08002248 int ret;
2249
2250 ret = usb_autopm_get_interface(tp->intf);
2251 if (ret < 0)
2252 goto out;
hayeswangc5554292014-09-12 10:43:11 +08002253
hayeswangb5403272014-10-09 18:00:26 +08002254 mutex_lock(&tp->control);
2255
hayeswangc5554292014-09-12 10:43:11 +08002256 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2257 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2258 rtl_rx_vlan_en(tp, true);
2259 else
2260 rtl_rx_vlan_en(tp, false);
2261 }
2262
hayeswangb5403272014-10-09 18:00:26 +08002263 mutex_unlock(&tp->control);
2264
hayeswang405f8a02014-10-09 18:00:24 +08002265 usb_autopm_put_interface(tp->intf);
2266
2267out:
2268 return ret;
hayeswangc5554292014-09-12 10:43:11 +08002269}
2270
hayeswang21ff2e82014-02-18 21:49:06 +08002271#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2272
2273static u32 __rtl_get_wol(struct r8152 *tp)
2274{
2275 u32 ocp_data;
2276 u32 wolopts = 0;
2277
2278 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2279 if (!(ocp_data & LAN_WAKE_EN))
2280 return 0;
2281
2282 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2283 if (ocp_data & LINK_ON_WAKE_EN)
2284 wolopts |= WAKE_PHY;
2285
2286 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2287 if (ocp_data & UWF_EN)
2288 wolopts |= WAKE_UCAST;
2289 if (ocp_data & BWF_EN)
2290 wolopts |= WAKE_BCAST;
2291 if (ocp_data & MWF_EN)
2292 wolopts |= WAKE_MCAST;
2293
2294 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2295 if (ocp_data & MAGIC_EN)
2296 wolopts |= WAKE_MAGIC;
2297
2298 return wolopts;
2299}
2300
2301static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
2302{
2303 u32 ocp_data;
2304
2305 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2306
2307 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2308 ocp_data &= ~LINK_ON_WAKE_EN;
2309 if (wolopts & WAKE_PHY)
2310 ocp_data |= LINK_ON_WAKE_EN;
2311 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2312
2313 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2314 ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN | LAN_WAKE_EN);
2315 if (wolopts & WAKE_UCAST)
2316 ocp_data |= UWF_EN;
2317 if (wolopts & WAKE_BCAST)
2318 ocp_data |= BWF_EN;
2319 if (wolopts & WAKE_MCAST)
2320 ocp_data |= MWF_EN;
2321 if (wolopts & WAKE_ANY)
2322 ocp_data |= LAN_WAKE_EN;
2323 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
2324
2325 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2326
2327 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2328 ocp_data &= ~MAGIC_EN;
2329 if (wolopts & WAKE_MAGIC)
2330 ocp_data |= MAGIC_EN;
2331 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
2332
2333 if (wolopts & WAKE_ANY)
2334 device_set_wakeup_enable(&tp->udev->dev, true);
2335 else
2336 device_set_wakeup_enable(&tp->udev->dev, false);
2337}
2338
hayeswangb2143962015-07-24 13:54:23 +08002339static void r8153_u1u2en(struct r8152 *tp, bool enable)
2340{
2341 u8 u1u2[8];
2342
2343 if (enable)
2344 memset(u1u2, 0xff, sizeof(u1u2));
2345 else
2346 memset(u1u2, 0x00, sizeof(u1u2));
2347
2348 usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
2349}
2350
2351static void r8153_u2p3en(struct r8152 *tp, bool enable)
2352{
2353 u32 ocp_data;
2354
2355 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
2356 if (enable && tp->version != RTL_VER_03 && tp->version != RTL_VER_04)
2357 ocp_data |= U2P3_ENABLE;
2358 else
2359 ocp_data &= ~U2P3_ENABLE;
2360 ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
2361}
2362
2363static void r8153_power_cut_en(struct r8152 *tp, bool enable)
2364{
2365 u32 ocp_data;
2366
2367 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
2368 if (enable)
2369 ocp_data |= PWR_EN | PHASE2_EN;
2370 else
2371 ocp_data &= ~(PWR_EN | PHASE2_EN);
2372 ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
2373
2374 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
2375 ocp_data &= ~PCUT_STATUS;
2376 ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
2377}
2378
hayeswang7daed8d2015-07-24 13:54:24 +08002379static bool rtl_can_wakeup(struct r8152 *tp)
2380{
2381 struct usb_device *udev = tp->udev;
2382
2383 return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP);
2384}
2385
hayeswang9a4be1b2014-02-18 21:49:07 +08002386static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
2387{
2388 if (enable) {
2389 u32 ocp_data;
2390
hayeswangb2143962015-07-24 13:54:23 +08002391 r8153_u1u2en(tp, false);
2392 r8153_u2p3en(tp, false);
2393
hayeswang9a4be1b2014-02-18 21:49:07 +08002394 __rtl_set_wol(tp, WAKE_ANY);
2395
2396 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
2397
2398 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2399 ocp_data |= LINK_OFF_WAKE_EN;
2400 ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
2401
2402 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2403 } else {
2404 __rtl_set_wol(tp, tp->saved_wolopts);
hayeswangb2143962015-07-24 13:54:23 +08002405 r8153_u2p3en(tp, true);
2406 r8153_u1u2en(tp, true);
hayeswang9a4be1b2014-02-18 21:49:07 +08002407 }
2408}
2409
hayeswangaa66a5f2014-02-18 21:49:04 +08002410static void rtl_phy_reset(struct r8152 *tp)
2411{
2412 u16 data;
2413 int i;
2414
2415 clear_bit(PHY_RESET, &tp->flags);
2416
2417 data = r8152_mdio_read(tp, MII_BMCR);
2418
2419 /* don't reset again before the previous one complete */
2420 if (data & BMCR_RESET)
2421 return;
2422
2423 data |= BMCR_RESET;
2424 r8152_mdio_write(tp, MII_BMCR, data);
2425
2426 for (i = 0; i < 50; i++) {
2427 msleep(20);
2428 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
2429 break;
2430 }
2431}
2432
hayeswang43499682014-02-18 21:48:58 +08002433static void r8153_teredo_off(struct r8152 *tp)
2434{
2435 u32 ocp_data;
2436
2437 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2438 ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK | OOB_TEREDO_EN);
2439 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2440
2441 ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
2442 ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
2443 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
2444}
2445
2446static void r8152b_disable_aldps(struct r8152 *tp)
2447{
2448 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA | DIS_SDSAVE);
2449 msleep(20);
2450}
2451
2452static inline void r8152b_enable_aldps(struct r8152 *tp)
2453{
2454 ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
2455 LINKENA | DIS_SDSAVE);
2456}
2457
hayeswangd70b1132014-09-19 15:17:18 +08002458static void rtl8152_disable(struct r8152 *tp)
2459{
2460 r8152b_disable_aldps(tp);
2461 rtl_disable(tp);
2462 r8152b_enable_aldps(tp);
2463}
2464
hayeswang43499682014-02-18 21:48:58 +08002465static void r8152b_hw_phy_cfg(struct r8152 *tp)
2466{
hayeswangf0cbe0a2014-02-18 21:49:03 +08002467 u16 data;
2468
2469 data = r8152_mdio_read(tp, MII_BMCR);
2470 if (data & BMCR_PDOWN) {
2471 data &= ~BMCR_PDOWN;
2472 r8152_mdio_write(tp, MII_BMCR, data);
2473 }
2474
hayeswangaa66a5f2014-02-18 21:49:04 +08002475 set_bit(PHY_RESET, &tp->flags);
hayeswang43499682014-02-18 21:48:58 +08002476}
2477
hayeswangac718b62013-05-02 16:01:25 +00002478static void r8152b_exit_oob(struct r8152 *tp)
2479{
hayeswangdb8515e2014-03-06 15:07:16 +08002480 u32 ocp_data;
2481 int i;
hayeswangac718b62013-05-02 16:01:25 +00002482
2483 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2484 ocp_data &= ~RCR_ACPT_ALL;
2485 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2486
hayeswang00a5e362014-02-18 21:48:59 +08002487 rxdy_gated_en(tp, true);
hayeswangda9bd112014-02-18 21:49:08 +08002488 r8153_teredo_off(tp);
hayeswang7e9da482014-02-18 21:49:05 +08002489 r8152b_hw_phy_cfg(tp);
hayeswangac718b62013-05-02 16:01:25 +00002490
2491 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
2492 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
2493
2494 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2495 ocp_data &= ~NOW_IS_OOB;
2496 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2497
2498 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2499 ocp_data &= ~MCU_BORW_EN;
2500 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2501
2502 for (i = 0; i < 1000; i++) {
2503 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2504 if (ocp_data & LINK_LIST_READY)
2505 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002506 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002507 }
2508
2509 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2510 ocp_data |= RE_INIT_LL;
2511 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2512
2513 for (i = 0; i < 1000; i++) {
2514 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2515 if (ocp_data & LINK_LIST_READY)
2516 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002517 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002518 }
2519
2520 rtl8152_nic_reset(tp);
2521
2522 /* rx share fifo credit full threshold */
2523 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2524
hayeswanga3cc4652014-07-24 16:37:43 +08002525 if (tp->udev->speed == USB_SPEED_FULL ||
2526 tp->udev->speed == USB_SPEED_LOW) {
hayeswangac718b62013-05-02 16:01:25 +00002527 /* rx share fifo credit near full threshold */
2528 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2529 RXFIFO_THR2_FULL);
2530 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2531 RXFIFO_THR3_FULL);
2532 } else {
2533 /* rx share fifo credit near full threshold */
2534 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
2535 RXFIFO_THR2_HIGH);
2536 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
2537 RXFIFO_THR3_HIGH);
2538 }
2539
2540 /* TX share fifo free credit full threshold */
2541 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
2542
2543 ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
hayeswang8e1f51b2014-01-02 11:22:41 +08002544 ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
hayeswangac718b62013-05-02 16:01:25 +00002545 ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
2546 TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
2547
hayeswangc5554292014-09-12 10:43:11 +08002548 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswangac718b62013-05-02 16:01:25 +00002549
2550 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2551
2552 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2553 ocp_data |= TCR0_AUTO_FIFO;
2554 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2555}
2556
2557static void r8152b_enter_oob(struct r8152 *tp)
2558{
hayeswang45f4a192014-01-06 17:08:41 +08002559 u32 ocp_data;
2560 int i;
hayeswangac718b62013-05-02 16:01:25 +00002561
2562 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2563 ocp_data &= ~NOW_IS_OOB;
2564 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2565
2566 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
2567 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
2568 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
2569
hayeswangd70b1132014-09-19 15:17:18 +08002570 rtl_disable(tp);
hayeswangac718b62013-05-02 16:01:25 +00002571
2572 for (i = 0; i < 1000; i++) {
2573 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2574 if (ocp_data & LINK_LIST_READY)
2575 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002576 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002577 }
2578
2579 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2580 ocp_data |= RE_INIT_LL;
2581 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2582
2583 for (i = 0; i < 1000; i++) {
2584 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2585 if (ocp_data & LINK_LIST_READY)
2586 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002587 usleep_range(1000, 2000);
hayeswangac718b62013-05-02 16:01:25 +00002588 }
2589
2590 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
2591
hayeswangc5554292014-09-12 10:43:11 +08002592 rtl_rx_vlan_en(tp, true);
hayeswangac718b62013-05-02 16:01:25 +00002593
2594 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2595 ocp_data |= ALDPS_PROXY_MODE;
2596 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2597
2598 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2599 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2600 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2601
hayeswang00a5e362014-02-18 21:48:59 +08002602 rxdy_gated_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002603
2604 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2605 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2606 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2607}
2608
hayeswang43779f82014-01-02 11:25:10 +08002609static void r8153_hw_phy_cfg(struct r8152 *tp)
2610{
2611 u32 ocp_data;
2612 u16 data;
2613
2614 ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
hayeswangf0cbe0a2014-02-18 21:49:03 +08002615 data = r8152_mdio_read(tp, MII_BMCR);
2616 if (data & BMCR_PDOWN) {
2617 data &= ~BMCR_PDOWN;
2618 r8152_mdio_write(tp, MII_BMCR, data);
2619 }
hayeswang43779f82014-01-02 11:25:10 +08002620
2621 if (tp->version == RTL_VER_03) {
2622 data = ocp_reg_read(tp, OCP_EEE_CFG);
2623 data &= ~CTAP_SHORT_EN;
2624 ocp_reg_write(tp, OCP_EEE_CFG, data);
2625 }
2626
2627 data = ocp_reg_read(tp, OCP_POWER_CFG);
2628 data |= EEE_CLKDIV_EN;
2629 ocp_reg_write(tp, OCP_POWER_CFG, data);
2630
2631 data = ocp_reg_read(tp, OCP_DOWN_SPEED);
2632 data |= EN_10M_BGOFF;
2633 ocp_reg_write(tp, OCP_DOWN_SPEED, data);
2634 data = ocp_reg_read(tp, OCP_POWER_CFG);
2635 data |= EN_10M_PLLOFF;
2636 ocp_reg_write(tp, OCP_POWER_CFG, data);
hayeswangb4d99de2015-01-19 17:02:46 +08002637 sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
hayeswang43779f82014-01-02 11:25:10 +08002638
2639 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
2640 ocp_data |= PFM_PWM_SWITCH;
2641 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
2642
hayeswangb4d99de2015-01-19 17:02:46 +08002643 /* Enable LPF corner auto tune */
2644 sram_write(tp, SRAM_LPF_CFG, 0xf70f);
hayeswang43779f82014-01-02 11:25:10 +08002645
hayeswangb4d99de2015-01-19 17:02:46 +08002646 /* Adjust 10M Amplitude */
2647 sram_write(tp, SRAM_10M_AMP1, 0x00af);
2648 sram_write(tp, SRAM_10M_AMP2, 0x0208);
hayeswangaa66a5f2014-02-18 21:49:04 +08002649
2650 set_bit(PHY_RESET, &tp->flags);
hayeswang43779f82014-01-02 11:25:10 +08002651}
2652
hayeswang43779f82014-01-02 11:25:10 +08002653static void r8153_first_init(struct r8152 *tp)
2654{
2655 u32 ocp_data;
2656 int i;
2657
hayeswang00a5e362014-02-18 21:48:59 +08002658 rxdy_gated_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002659 r8153_teredo_off(tp);
2660
2661 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2662 ocp_data &= ~RCR_ACPT_ALL;
2663 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2664
2665 r8153_hw_phy_cfg(tp);
2666
2667 rtl8152_nic_reset(tp);
2668
2669 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2670 ocp_data &= ~NOW_IS_OOB;
2671 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2672
2673 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2674 ocp_data &= ~MCU_BORW_EN;
2675 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2676
2677 for (i = 0; i < 1000; i++) {
2678 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2679 if (ocp_data & LINK_LIST_READY)
2680 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002681 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002682 }
2683
2684 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2685 ocp_data |= RE_INIT_LL;
2686 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2687
2688 for (i = 0; i < 1000; i++) {
2689 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2690 if (ocp_data & LINK_LIST_READY)
2691 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002692 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002693 }
2694
hayeswangc5554292014-09-12 10:43:11 +08002695 rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
hayeswang43779f82014-01-02 11:25:10 +08002696
hayeswang69b4b7a2014-07-10 10:58:54 +08002697 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
2698 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
hayeswang43779f82014-01-02 11:25:10 +08002699
2700 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
2701 ocp_data |= TCR0_AUTO_FIFO;
2702 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
2703
2704 rtl8152_nic_reset(tp);
2705
2706 /* rx share fifo credit full threshold */
2707 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
2708 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
2709 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
2710 /* TX share fifo free credit full threshold */
2711 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
2712
hayeswang9629e3c2014-01-15 10:42:15 +08002713 /* rx aggregation */
hayeswang43779f82014-01-02 11:25:10 +08002714 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
2715 ocp_data &= ~RX_AGG_DISABLE;
2716 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
2717}
2718
2719static void r8153_enter_oob(struct r8152 *tp)
2720{
2721 u32 ocp_data;
2722 int i;
2723
2724 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2725 ocp_data &= ~NOW_IS_OOB;
2726 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2727
hayeswangd70b1132014-09-19 15:17:18 +08002728 rtl_disable(tp);
hayeswang43779f82014-01-02 11:25:10 +08002729
2730 for (i = 0; i < 1000; i++) {
2731 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2732 if (ocp_data & LINK_LIST_READY)
2733 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002734 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002735 }
2736
2737 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
2738 ocp_data |= RE_INIT_LL;
2739 ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
2740
2741 for (i = 0; i < 1000; i++) {
2742 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2743 if (ocp_data & LINK_LIST_READY)
2744 break;
hayeswang8ddfa072014-09-09 11:40:28 +08002745 usleep_range(1000, 2000);
hayeswang43779f82014-01-02 11:25:10 +08002746 }
2747
hayeswang69b4b7a2014-07-10 10:58:54 +08002748 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8153_RMS);
hayeswang43779f82014-01-02 11:25:10 +08002749
hayeswang43779f82014-01-02 11:25:10 +08002750 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
2751 ocp_data &= ~TEREDO_WAKE_MASK;
2752 ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
2753
hayeswangc5554292014-09-12 10:43:11 +08002754 rtl_rx_vlan_en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08002755
2756 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PAL_BDC_CR);
2757 ocp_data |= ALDPS_PROXY_MODE;
2758 ocp_write_word(tp, MCU_TYPE_PLA, PAL_BDC_CR, ocp_data);
2759
2760 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2761 ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
2762 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
2763
hayeswang00a5e362014-02-18 21:48:59 +08002764 rxdy_gated_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08002765
2766 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2767 ocp_data |= RCR_APM | RCR_AM | RCR_AB;
2768 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2769}
2770
2771static void r8153_disable_aldps(struct r8152 *tp)
2772{
2773 u16 data;
2774
2775 data = ocp_reg_read(tp, OCP_POWER_CFG);
2776 data &= ~EN_ALDPS;
2777 ocp_reg_write(tp, OCP_POWER_CFG, data);
2778 msleep(20);
2779}
2780
2781static void r8153_enable_aldps(struct r8152 *tp)
2782{
2783 u16 data;
2784
2785 data = ocp_reg_read(tp, OCP_POWER_CFG);
2786 data |= EN_ALDPS;
2787 ocp_reg_write(tp, OCP_POWER_CFG, data);
2788}
2789
hayeswangd70b1132014-09-19 15:17:18 +08002790static void rtl8153_disable(struct r8152 *tp)
2791{
2792 r8153_disable_aldps(tp);
2793 rtl_disable(tp);
2794 r8153_enable_aldps(tp);
hayeswangb2143962015-07-24 13:54:23 +08002795 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08002796}
2797
hayeswangac718b62013-05-02 16:01:25 +00002798static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
2799{
hayeswang43779f82014-01-02 11:25:10 +08002800 u16 bmcr, anar, gbcr;
hayeswangac718b62013-05-02 16:01:25 +00002801 int ret = 0;
2802
2803 cancel_delayed_work_sync(&tp->schedule);
2804 anar = r8152_mdio_read(tp, MII_ADVERTISE);
2805 anar &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
2806 ADVERTISE_100HALF | ADVERTISE_100FULL);
hayeswang43779f82014-01-02 11:25:10 +08002807 if (tp->mii.supports_gmii) {
2808 gbcr = r8152_mdio_read(tp, MII_CTRL1000);
2809 gbcr &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
2810 } else {
2811 gbcr = 0;
2812 }
hayeswangac718b62013-05-02 16:01:25 +00002813
2814 if (autoneg == AUTONEG_DISABLE) {
2815 if (speed == SPEED_10) {
2816 bmcr = 0;
2817 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2818 } else if (speed == SPEED_100) {
2819 bmcr = BMCR_SPEED100;
2820 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
hayeswang43779f82014-01-02 11:25:10 +08002821 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
2822 bmcr = BMCR_SPEED1000;
2823 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
hayeswangac718b62013-05-02 16:01:25 +00002824 } else {
2825 ret = -EINVAL;
2826 goto out;
2827 }
2828
2829 if (duplex == DUPLEX_FULL)
2830 bmcr |= BMCR_FULLDPLX;
2831 } else {
2832 if (speed == SPEED_10) {
2833 if (duplex == DUPLEX_FULL)
2834 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2835 else
2836 anar |= ADVERTISE_10HALF;
2837 } else if (speed == SPEED_100) {
2838 if (duplex == DUPLEX_FULL) {
2839 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2840 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
2841 } else {
2842 anar |= ADVERTISE_10HALF;
2843 anar |= ADVERTISE_100HALF;
2844 }
hayeswang43779f82014-01-02 11:25:10 +08002845 } else if (speed == SPEED_1000 && tp->mii.supports_gmii) {
2846 if (duplex == DUPLEX_FULL) {
2847 anar |= ADVERTISE_10HALF | ADVERTISE_10FULL;
2848 anar |= ADVERTISE_100HALF | ADVERTISE_100FULL;
2849 gbcr |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
2850 } else {
2851 anar |= ADVERTISE_10HALF;
2852 anar |= ADVERTISE_100HALF;
2853 gbcr |= ADVERTISE_1000HALF;
2854 }
hayeswangac718b62013-05-02 16:01:25 +00002855 } else {
2856 ret = -EINVAL;
2857 goto out;
2858 }
2859
2860 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
2861 }
2862
hayeswangaa66a5f2014-02-18 21:49:04 +08002863 if (test_bit(PHY_RESET, &tp->flags))
2864 bmcr |= BMCR_RESET;
2865
hayeswang43779f82014-01-02 11:25:10 +08002866 if (tp->mii.supports_gmii)
2867 r8152_mdio_write(tp, MII_CTRL1000, gbcr);
2868
hayeswangac718b62013-05-02 16:01:25 +00002869 r8152_mdio_write(tp, MII_ADVERTISE, anar);
2870 r8152_mdio_write(tp, MII_BMCR, bmcr);
2871
hayeswangaa66a5f2014-02-18 21:49:04 +08002872 if (test_bit(PHY_RESET, &tp->flags)) {
2873 int i;
2874
2875 clear_bit(PHY_RESET, &tp->flags);
2876 for (i = 0; i < 50; i++) {
2877 msleep(20);
2878 if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
2879 break;
2880 }
2881 }
2882
hayeswangac718b62013-05-02 16:01:25 +00002883out:
hayeswangac718b62013-05-02 16:01:25 +00002884
2885 return ret;
2886}
2887
hayeswangd70b1132014-09-19 15:17:18 +08002888static void rtl8152_up(struct r8152 *tp)
2889{
2890 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2891 return;
2892
2893 r8152b_disable_aldps(tp);
2894 r8152b_exit_oob(tp);
2895 r8152b_enable_aldps(tp);
2896}
2897
hayeswangac718b62013-05-02 16:01:25 +00002898static void rtl8152_down(struct r8152 *tp)
2899{
hayeswang68714382014-04-11 17:54:31 +08002900 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2901 rtl_drop_queued_tx(tp);
2902 return;
2903 }
2904
hayeswang00a5e362014-02-18 21:48:59 +08002905 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00002906 r8152b_disable_aldps(tp);
2907 r8152b_enter_oob(tp);
2908 r8152b_enable_aldps(tp);
2909}
2910
hayeswangd70b1132014-09-19 15:17:18 +08002911static void rtl8153_up(struct r8152 *tp)
2912{
2913 if (test_bit(RTL8152_UNPLUG, &tp->flags))
2914 return;
2915
hayeswangb2143962015-07-24 13:54:23 +08002916 r8153_u1u2en(tp, false);
hayeswangd70b1132014-09-19 15:17:18 +08002917 r8153_disable_aldps(tp);
2918 r8153_first_init(tp);
2919 r8153_enable_aldps(tp);
hayeswangb2143962015-07-24 13:54:23 +08002920 r8153_u2p3en(tp, true);
2921 r8153_u1u2en(tp, true);
2922 usb_enable_lpm(tp->udev);
hayeswangd70b1132014-09-19 15:17:18 +08002923}
2924
hayeswang43779f82014-01-02 11:25:10 +08002925static void rtl8153_down(struct r8152 *tp)
2926{
hayeswang68714382014-04-11 17:54:31 +08002927 if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2928 rtl_drop_queued_tx(tp);
2929 return;
2930 }
2931
hayeswangb9702722014-02-18 21:49:00 +08002932 r8153_u1u2en(tp, false);
hayeswangb2143962015-07-24 13:54:23 +08002933 r8153_u2p3en(tp, false);
hayeswangb9702722014-02-18 21:49:00 +08002934 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08002935 r8153_disable_aldps(tp);
2936 r8153_enter_oob(tp);
2937 r8153_enable_aldps(tp);
2938}
2939
hayeswangac718b62013-05-02 16:01:25 +00002940static void set_carrier(struct r8152 *tp)
2941{
2942 struct net_device *netdev = tp->netdev;
2943 u8 speed;
2944
hayeswang40a82912013-08-14 20:54:40 +08002945 clear_bit(RTL8152_LINK_CHG, &tp->flags);
hayeswangac718b62013-05-02 16:01:25 +00002946 speed = rtl8152_get_speed(tp);
2947
2948 if (speed & LINK_STATUS) {
hayeswang51d979f2015-02-06 11:30:47 +08002949 if (!netif_carrier_ok(netdev)) {
hayeswangc81229c2014-01-02 11:22:42 +08002950 tp->rtl_ops.enable(tp);
hayeswangac718b62013-05-02 16:01:25 +00002951 set_bit(RTL8152_SET_RX_MODE, &tp->flags);
hayeswang41cec842015-07-24 13:54:25 +08002952 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00002953 netif_carrier_on(netdev);
hayeswangaa2e0922015-01-09 10:26:35 +08002954 rtl_start_rx(tp);
hayeswang41cec842015-07-24 13:54:25 +08002955 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00002956 }
2957 } else {
hayeswang51d979f2015-02-06 11:30:47 +08002958 if (netif_carrier_ok(netdev)) {
hayeswangac718b62013-05-02 16:01:25 +00002959 netif_carrier_off(netdev);
hayeswangd823ab62015-01-12 12:06:23 +08002960 napi_disable(&tp->napi);
hayeswangc81229c2014-01-02 11:22:42 +08002961 tp->rtl_ops.disable(tp);
hayeswangd823ab62015-01-12 12:06:23 +08002962 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00002963 }
2964 }
hayeswangac718b62013-05-02 16:01:25 +00002965}
2966
2967static void rtl_work_func_t(struct work_struct *work)
2968{
2969 struct r8152 *tp = container_of(work, struct r8152, schedule.work);
2970
hayeswanga1f83fe2014-11-12 10:05:05 +08002971 /* If the device is unplugged or !netif_running(), the workqueue
2972 * doesn't need to wake the device, and could return directly.
2973 */
2974 if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
2975 return;
2976
hayeswang9a4be1b2014-02-18 21:49:07 +08002977 if (usb_autopm_get_interface(tp->intf) < 0)
2978 return;
2979
hayeswangac718b62013-05-02 16:01:25 +00002980 if (!test_bit(WORK_ENABLE, &tp->flags))
2981 goto out1;
2982
hayeswangb5403272014-10-09 18:00:26 +08002983 if (!mutex_trylock(&tp->control)) {
2984 schedule_delayed_work(&tp->schedule, 0);
2985 goto out1;
2986 }
2987
hayeswang40a82912013-08-14 20:54:40 +08002988 if (test_bit(RTL8152_LINK_CHG, &tp->flags))
2989 set_carrier(tp);
hayeswangac718b62013-05-02 16:01:25 +00002990
2991 if (test_bit(RTL8152_SET_RX_MODE, &tp->flags))
2992 _rtl8152_set_rx_mode(tp->netdev);
2993
hayeswangd823ab62015-01-12 12:06:23 +08002994 /* don't schedule napi before linking */
2995 if (test_bit(SCHEDULE_NAPI, &tp->flags) &&
hayeswang51d979f2015-02-06 11:30:47 +08002996 netif_carrier_ok(tp->netdev)) {
hayeswangd823ab62015-01-12 12:06:23 +08002997 clear_bit(SCHEDULE_NAPI, &tp->flags);
2998 napi_schedule(&tp->napi);
hayeswang0c3121f2014-03-07 11:04:36 +08002999 }
hayeswangaa66a5f2014-02-18 21:49:04 +08003000
3001 if (test_bit(PHY_RESET, &tp->flags))
3002 rtl_phy_reset(tp);
3003
hayeswangb5403272014-10-09 18:00:26 +08003004 mutex_unlock(&tp->control);
3005
hayeswangac718b62013-05-02 16:01:25 +00003006out1:
hayeswang9a4be1b2014-02-18 21:49:07 +08003007 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00003008}
3009
3010static int rtl8152_open(struct net_device *netdev)
3011{
3012 struct r8152 *tp = netdev_priv(netdev);
3013 int res = 0;
3014
hayeswang7e9da482014-02-18 21:49:05 +08003015 res = alloc_all_mem(tp);
3016 if (res)
3017 goto out;
3018
hayeswang51d979f2015-02-06 11:30:47 +08003019 netif_carrier_off(netdev);
hayeswangf4c74762014-10-29 11:12:16 +08003020
hayeswang9a4be1b2014-02-18 21:49:07 +08003021 res = usb_autopm_get_interface(tp->intf);
3022 if (res < 0) {
3023 free_all_mem(tp);
3024 goto out;
3025 }
3026
hayeswangb5403272014-10-09 18:00:26 +08003027 mutex_lock(&tp->control);
3028
hayeswang9a4be1b2014-02-18 21:49:07 +08003029 /* The WORK_ENABLE may be set when autoresume occurs */
3030 if (test_bit(WORK_ENABLE, &tp->flags)) {
3031 clear_bit(WORK_ENABLE, &tp->flags);
3032 usb_kill_urb(tp->intr_urb);
3033 cancel_delayed_work_sync(&tp->schedule);
hayeswangf4c74762014-10-29 11:12:16 +08003034
3035 /* disable the tx/rx, if the workqueue has enabled them. */
hayeswang51d979f2015-02-06 11:30:47 +08003036 if (netif_carrier_ok(netdev))
hayeswang9a4be1b2014-02-18 21:49:07 +08003037 tp->rtl_ops.disable(tp);
3038 }
3039
hayeswang7e9da482014-02-18 21:49:05 +08003040 tp->rtl_ops.up(tp);
3041
hayeswang43779f82014-01-02 11:25:10 +08003042 rtl8152_set_speed(tp, AUTONEG_ENABLE,
3043 tp->mii.supports_gmii ? SPEED_1000 : SPEED_100,
3044 DUPLEX_FULL);
hayeswang40a82912013-08-14 20:54:40 +08003045 netif_carrier_off(netdev);
hayeswangac718b62013-05-02 16:01:25 +00003046 netif_start_queue(netdev);
3047 set_bit(WORK_ENABLE, &tp->flags);
hayeswangdb8515e2014-03-06 15:07:16 +08003048
hayeswang3d55f442014-02-06 11:55:48 +08003049 res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
3050 if (res) {
3051 if (res == -ENODEV)
3052 netif_device_detach(tp->netdev);
3053 netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
3054 res);
hayeswang7e9da482014-02-18 21:49:05 +08003055 free_all_mem(tp);
hayeswang93ffbea2014-11-05 10:17:02 +08003056 } else {
hayeswangd823ab62015-01-12 12:06:23 +08003057 napi_enable(&tp->napi);
hayeswang3d55f442014-02-06 11:55:48 +08003058 }
3059
hayeswangb5403272014-10-09 18:00:26 +08003060 mutex_unlock(&tp->control);
3061
hayeswang9a4be1b2014-02-18 21:49:07 +08003062 usb_autopm_put_interface(tp->intf);
hayeswangac718b62013-05-02 16:01:25 +00003063
hayeswang7e9da482014-02-18 21:49:05 +08003064out:
hayeswangac718b62013-05-02 16:01:25 +00003065 return res;
3066}
3067
3068static int rtl8152_close(struct net_device *netdev)
3069{
3070 struct r8152 *tp = netdev_priv(netdev);
3071 int res = 0;
3072
hayeswangd823ab62015-01-12 12:06:23 +08003073 napi_disable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003074 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang3d55f442014-02-06 11:55:48 +08003075 usb_kill_urb(tp->intr_urb);
hayeswangac718b62013-05-02 16:01:25 +00003076 cancel_delayed_work_sync(&tp->schedule);
3077 netif_stop_queue(netdev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003078
3079 res = usb_autopm_get_interface(tp->intf);
hayeswang53543db2015-02-06 11:30:48 +08003080 if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003081 rtl_drop_queued_tx(tp);
hayeswangd823ab62015-01-12 12:06:23 +08003082 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003083 } else {
hayeswangb5403272014-10-09 18:00:26 +08003084 mutex_lock(&tp->control);
3085
hayeswangb209af92014-08-25 15:53:00 +08003086 /* The autosuspend may have been enabled and wouldn't
hayeswang9a4be1b2014-02-18 21:49:07 +08003087 * be disable when autoresume occurs, because the
3088 * netif_running() would be false.
3089 */
hayeswang923e1ee2014-10-29 11:12:15 +08003090 rtl_runtime_suspend_enable(tp, false);
hayeswang9a4be1b2014-02-18 21:49:07 +08003091
hayeswang9a4be1b2014-02-18 21:49:07 +08003092 tp->rtl_ops.down(tp);
hayeswangb5403272014-10-09 18:00:26 +08003093
3094 mutex_unlock(&tp->control);
3095
hayeswang9a4be1b2014-02-18 21:49:07 +08003096 usb_autopm_put_interface(tp->intf);
3097 }
hayeswangac718b62013-05-02 16:01:25 +00003098
hayeswang7e9da482014-02-18 21:49:05 +08003099 free_all_mem(tp);
3100
hayeswangac718b62013-05-02 16:01:25 +00003101 return res;
3102}
3103
hayeswangd24f6132014-09-25 20:54:01 +08003104static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
hayeswangac718b62013-05-02 16:01:25 +00003105{
hayeswangd24f6132014-09-25 20:54:01 +08003106 ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
3107 ocp_reg_write(tp, OCP_EEE_DATA, reg);
3108 ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
3109}
3110
3111static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
3112{
3113 u16 data;
3114
3115 r8152_mmd_indirect(tp, dev, reg);
3116 data = ocp_reg_read(tp, OCP_EEE_DATA);
3117 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
3118
3119 return data;
3120}
3121
3122static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
3123{
3124 r8152_mmd_indirect(tp, dev, reg);
3125 ocp_reg_write(tp, OCP_EEE_DATA, data);
3126 ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
3127}
3128
3129static void r8152_eee_en(struct r8152 *tp, bool enable)
3130{
3131 u16 config1, config2, config3;
hayeswang45f4a192014-01-06 17:08:41 +08003132 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00003133
3134 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
hayeswangd24f6132014-09-25 20:54:01 +08003135 config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
3136 config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
3137 config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
3138
3139 if (enable) {
3140 ocp_data |= EEE_RX_EN | EEE_TX_EN;
3141 config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
3142 config1 |= sd_rise_time(1);
3143 config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
3144 config3 |= fast_snr(42);
3145 } else {
3146 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
3147 config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
3148 RX_QUIET_EN);
3149 config1 |= sd_rise_time(7);
3150 config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
3151 config3 |= fast_snr(511);
3152 }
3153
hayeswangac718b62013-05-02 16:01:25 +00003154 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
hayeswangd24f6132014-09-25 20:54:01 +08003155 ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
3156 ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
3157 ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
3158}
3159
3160static void r8152b_enable_eee(struct r8152 *tp)
3161{
3162 r8152_eee_en(tp, true);
3163 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, MDIO_EEE_100TX);
3164}
3165
3166static void r8153_eee_en(struct r8152 *tp, bool enable)
3167{
3168 u32 ocp_data;
3169 u16 config;
3170
3171 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3172 config = ocp_reg_read(tp, OCP_EEE_CFG);
3173
3174 if (enable) {
3175 ocp_data |= EEE_RX_EN | EEE_TX_EN;
3176 config |= EEE10_EN;
3177 } else {
3178 ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
3179 config &= ~EEE10_EN;
3180 }
3181
3182 ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
3183 ocp_reg_write(tp, OCP_EEE_CFG, config);
hayeswangac718b62013-05-02 16:01:25 +00003184}
3185
hayeswang43779f82014-01-02 11:25:10 +08003186static void r8153_enable_eee(struct r8152 *tp)
3187{
hayeswangd24f6132014-09-25 20:54:01 +08003188 r8153_eee_en(tp, true);
3189 ocp_reg_write(tp, OCP_EEE_ADV, MDIO_EEE_1000T | MDIO_EEE_100TX);
hayeswang43779f82014-01-02 11:25:10 +08003190}
3191
hayeswangac718b62013-05-02 16:01:25 +00003192static void r8152b_enable_fc(struct r8152 *tp)
3193{
3194 u16 anar;
3195
3196 anar = r8152_mdio_read(tp, MII_ADVERTISE);
3197 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
3198 r8152_mdio_write(tp, MII_ADVERTISE, anar);
3199}
3200
hayeswang4f1d4d52014-03-11 16:24:19 +08003201static void rtl_tally_reset(struct r8152 *tp)
3202{
3203 u32 ocp_data;
3204
3205 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
3206 ocp_data |= TALLY_RESET;
3207 ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
3208}
3209
hayeswangac718b62013-05-02 16:01:25 +00003210static void r8152b_init(struct r8152 *tp)
3211{
hayeswangebc2ec42013-08-14 20:54:38 +08003212 u32 ocp_data;
hayeswangac718b62013-05-02 16:01:25 +00003213
hayeswang68714382014-04-11 17:54:31 +08003214 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3215 return;
3216
hayeswangd70b1132014-09-19 15:17:18 +08003217 r8152b_disable_aldps(tp);
3218
hayeswangac718b62013-05-02 16:01:25 +00003219 if (tp->version == RTL_VER_01) {
3220 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3221 ocp_data &= ~LED_MODE_MASK;
3222 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3223 }
3224
hayeswang00a5e362014-02-18 21:48:59 +08003225 r8152_power_cut_en(tp, false);
hayeswangac718b62013-05-02 16:01:25 +00003226
hayeswangac718b62013-05-02 16:01:25 +00003227 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
3228 ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
3229 ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
3230 ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
3231 ocp_data &= ~MCU_CLK_RATIO_MASK;
3232 ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
3233 ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
3234 ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
3235 SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
3236 ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
3237
3238 r8152b_enable_eee(tp);
3239 r8152b_enable_aldps(tp);
3240 r8152b_enable_fc(tp);
hayeswang4f1d4d52014-03-11 16:24:19 +08003241 rtl_tally_reset(tp);
hayeswangac718b62013-05-02 16:01:25 +00003242
hayeswangebc2ec42013-08-14 20:54:38 +08003243 /* enable rx aggregation */
hayeswangac718b62013-05-02 16:01:25 +00003244 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
hayeswangebc2ec42013-08-14 20:54:38 +08003245 ocp_data &= ~RX_AGG_DISABLE;
hayeswangac718b62013-05-02 16:01:25 +00003246 ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
3247}
3248
hayeswang43779f82014-01-02 11:25:10 +08003249static void r8153_init(struct r8152 *tp)
3250{
3251 u32 ocp_data;
3252 int i;
3253
hayeswang68714382014-04-11 17:54:31 +08003254 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3255 return;
3256
hayeswangd70b1132014-09-19 15:17:18 +08003257 r8153_disable_aldps(tp);
hayeswangb9702722014-02-18 21:49:00 +08003258 r8153_u1u2en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003259
3260 for (i = 0; i < 500; i++) {
3261 if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
3262 AUTOLOAD_DONE)
3263 break;
3264 msleep(20);
3265 }
3266
3267 for (i = 0; i < 500; i++) {
3268 ocp_data = ocp_reg_read(tp, OCP_PHY_STATUS) & PHY_STAT_MASK;
3269 if (ocp_data == PHY_STAT_LAN_ON || ocp_data == PHY_STAT_PWRDN)
3270 break;
3271 msleep(20);
3272 }
3273
hayeswangb2143962015-07-24 13:54:23 +08003274 usb_disable_lpm(tp->udev);
hayeswangb9702722014-02-18 21:49:00 +08003275 r8153_u2p3en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003276
hayeswang65bab842015-02-12 16:20:46 +08003277 if (tp->version == RTL_VER_04) {
3278 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
3279 ocp_data &= ~pwd_dn_scale_mask;
3280 ocp_data |= pwd_dn_scale(96);
3281 ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
3282
3283 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
3284 ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
3285 ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
3286 } else if (tp->version == RTL_VER_05) {
3287 ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
3288 ocp_data &= ~ECM_ALDPS;
3289 ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
3290
3291 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
3292 if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
3293 ocp_data &= ~DYNAMIC_BURST;
3294 else
3295 ocp_data |= DYNAMIC_BURST;
3296 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
3297 }
3298
3299 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
3300 ocp_data |= EP4_FULL_FC;
3301 ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
3302
hayeswang43779f82014-01-02 11:25:10 +08003303 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
3304 ocp_data &= ~TIMER11_EN;
3305 ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
3306
hayeswang43779f82014-01-02 11:25:10 +08003307 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
3308 ocp_data &= ~LED_MODE_MASK;
3309 ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
3310
hayeswang65bab842015-02-12 16:20:46 +08003311 ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
hayeswang34203e22015-02-06 11:30:46 +08003312 if (tp->version == RTL_VER_04 && tp->udev->speed != USB_SPEED_SUPER)
hayeswang43779f82014-01-02 11:25:10 +08003313 ocp_data |= LPM_TIMER_500MS;
hayeswang34203e22015-02-06 11:30:46 +08003314 else
3315 ocp_data |= LPM_TIMER_500US;
hayeswang43779f82014-01-02 11:25:10 +08003316 ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
3317
3318 ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
3319 ocp_data &= ~SEN_VAL_MASK;
3320 ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
3321 ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
3322
hayeswang65bab842015-02-12 16:20:46 +08003323 ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
3324
hayeswangb9702722014-02-18 21:49:00 +08003325 r8153_power_cut_en(tp, false);
3326 r8153_u1u2en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003327
hayeswang43779f82014-01-02 11:25:10 +08003328 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ALDPS_SPDWN_RATIO);
3329 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, EEE_SPDWN_RATIO);
3330 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3,
3331 PKT_AVAIL_SPDWN_EN | SUSPEND_SPDWN_EN |
3332 U1U2_SPDWN_EN | L1_SPDWN_EN);
3333 ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4,
3334 PWRSAVE_SPDWN_EN | RXDV_SPDWN_EN | TX10MIDLE_EN |
3335 TP100_SPDWN_EN | TP500_SPDWN_EN | TP1000_SPDWN_EN |
3336 EEE_SPDWN_EN);
3337
3338 r8153_enable_eee(tp);
3339 r8153_enable_aldps(tp);
3340 r8152b_enable_fc(tp);
hayeswang4f1d4d52014-03-11 16:24:19 +08003341 rtl_tally_reset(tp);
hayeswangb2143962015-07-24 13:54:23 +08003342 r8153_u2p3en(tp, true);
hayeswang43779f82014-01-02 11:25:10 +08003343}
3344
hayeswangac718b62013-05-02 16:01:25 +00003345static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
3346{
3347 struct r8152 *tp = usb_get_intfdata(intf);
hayeswang6cc69f22014-10-17 16:55:08 +08003348 struct net_device *netdev = tp->netdev;
3349 int ret = 0;
hayeswangac718b62013-05-02 16:01:25 +00003350
hayeswangb5403272014-10-09 18:00:26 +08003351 mutex_lock(&tp->control);
3352
hayeswang6cc69f22014-10-17 16:55:08 +08003353 if (PMSG_IS_AUTO(message)) {
3354 if (netif_running(netdev) && work_busy(&tp->schedule.work)) {
3355 ret = -EBUSY;
3356 goto out1;
3357 }
hayeswangac718b62013-05-02 16:01:25 +00003358
hayeswang6cc69f22014-10-17 16:55:08 +08003359 set_bit(SELECTIVE_SUSPEND, &tp->flags);
3360 } else {
3361 netif_device_detach(netdev);
3362 }
3363
hayeswange3bd1a82014-10-29 11:12:17 +08003364 if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
hayeswangac718b62013-05-02 16:01:25 +00003365 clear_bit(WORK_ENABLE, &tp->flags);
hayeswang40a82912013-08-14 20:54:40 +08003366 usb_kill_urb(tp->intr_urb);
hayeswangd823ab62015-01-12 12:06:23 +08003367 napi_disable(&tp->napi);
hayeswang9a4be1b2014-02-18 21:49:07 +08003368 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
hayeswang445f7f42014-09-23 16:31:47 +08003369 rtl_stop_rx(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003370 rtl_runtime_suspend_enable(tp, true);
3371 } else {
hayeswang6cc69f22014-10-17 16:55:08 +08003372 cancel_delayed_work_sync(&tp->schedule);
hayeswang9a4be1b2014-02-18 21:49:07 +08003373 tp->rtl_ops.down(tp);
hayeswang9a4be1b2014-02-18 21:49:07 +08003374 }
hayeswangd823ab62015-01-12 12:06:23 +08003375 napi_enable(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00003376 }
hayeswang6cc69f22014-10-17 16:55:08 +08003377out1:
hayeswangb5403272014-10-09 18:00:26 +08003378 mutex_unlock(&tp->control);
3379
hayeswang6cc69f22014-10-17 16:55:08 +08003380 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003381}
3382
3383static int rtl8152_resume(struct usb_interface *intf)
3384{
3385 struct r8152 *tp = usb_get_intfdata(intf);
3386
hayeswangb5403272014-10-09 18:00:26 +08003387 mutex_lock(&tp->control);
3388
hayeswang9a4be1b2014-02-18 21:49:07 +08003389 if (!test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3390 tp->rtl_ops.init(tp);
3391 netif_device_attach(tp->netdev);
3392 }
3393
hayeswangac718b62013-05-02 16:01:25 +00003394 if (netif_running(tp->netdev)) {
hayeswang9a4be1b2014-02-18 21:49:07 +08003395 if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3396 rtl_runtime_suspend_enable(tp, false);
3397 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswang41cec842015-07-24 13:54:25 +08003398 napi_disable(&tp->napi);
hayeswang445f7f42014-09-23 16:31:47 +08003399 set_bit(WORK_ENABLE, &tp->flags);
hayeswang51d979f2015-02-06 11:30:47 +08003400 if (netif_carrier_ok(tp->netdev))
hayeswang445f7f42014-09-23 16:31:47 +08003401 rtl_start_rx(tp);
hayeswang41cec842015-07-24 13:54:25 +08003402 napi_enable(&tp->napi);
hayeswang9a4be1b2014-02-18 21:49:07 +08003403 } else {
3404 tp->rtl_ops.up(tp);
3405 rtl8152_set_speed(tp, AUTONEG_ENABLE,
hayeswangb209af92014-08-25 15:53:00 +08003406 tp->mii.supports_gmii ?
3407 SPEED_1000 : SPEED_100,
3408 DUPLEX_FULL);
hayeswang445f7f42014-09-23 16:31:47 +08003409 netif_carrier_off(tp->netdev);
3410 set_bit(WORK_ENABLE, &tp->flags);
hayeswang9a4be1b2014-02-18 21:49:07 +08003411 }
hayeswang40a82912013-08-14 20:54:40 +08003412 usb_submit_urb(tp->intr_urb, GFP_KERNEL);
hayeswang923e1ee2014-10-29 11:12:15 +08003413 } else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
3414 clear_bit(SELECTIVE_SUSPEND, &tp->flags);
hayeswangac718b62013-05-02 16:01:25 +00003415 }
3416
hayeswangb5403272014-10-09 18:00:26 +08003417 mutex_unlock(&tp->control);
3418
hayeswangac718b62013-05-02 16:01:25 +00003419 return 0;
3420}
3421
hayeswang21ff2e82014-02-18 21:49:06 +08003422static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3423{
3424 struct r8152 *tp = netdev_priv(dev);
3425
hayeswang9a4be1b2014-02-18 21:49:07 +08003426 if (usb_autopm_get_interface(tp->intf) < 0)
3427 return;
3428
hayeswang7daed8d2015-07-24 13:54:24 +08003429 if (!rtl_can_wakeup(tp)) {
3430 wol->supported = 0;
3431 wol->wolopts = 0;
3432 } else {
3433 mutex_lock(&tp->control);
3434 wol->supported = WAKE_ANY;
3435 wol->wolopts = __rtl_get_wol(tp);
3436 mutex_unlock(&tp->control);
3437 }
hayeswangb5403272014-10-09 18:00:26 +08003438
hayeswang9a4be1b2014-02-18 21:49:07 +08003439 usb_autopm_put_interface(tp->intf);
hayeswang21ff2e82014-02-18 21:49:06 +08003440}
3441
3442static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3443{
3444 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003445 int ret;
3446
hayeswang7daed8d2015-07-24 13:54:24 +08003447 if (!rtl_can_wakeup(tp))
3448 return -EOPNOTSUPP;
3449
hayeswang9a4be1b2014-02-18 21:49:07 +08003450 ret = usb_autopm_get_interface(tp->intf);
3451 if (ret < 0)
3452 goto out_set_wol;
hayeswang21ff2e82014-02-18 21:49:06 +08003453
hayeswangb5403272014-10-09 18:00:26 +08003454 mutex_lock(&tp->control);
3455
hayeswang21ff2e82014-02-18 21:49:06 +08003456 __rtl_set_wol(tp, wol->wolopts);
3457 tp->saved_wolopts = wol->wolopts & WAKE_ANY;
3458
hayeswangb5403272014-10-09 18:00:26 +08003459 mutex_unlock(&tp->control);
3460
hayeswang9a4be1b2014-02-18 21:49:07 +08003461 usb_autopm_put_interface(tp->intf);
3462
3463out_set_wol:
3464 return ret;
hayeswang21ff2e82014-02-18 21:49:06 +08003465}
3466
hayeswanga5ec27c2014-02-18 21:49:11 +08003467static u32 rtl8152_get_msglevel(struct net_device *dev)
3468{
3469 struct r8152 *tp = netdev_priv(dev);
3470
3471 return tp->msg_enable;
3472}
3473
3474static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
3475{
3476 struct r8152 *tp = netdev_priv(dev);
3477
3478 tp->msg_enable = value;
3479}
3480
hayeswangac718b62013-05-02 16:01:25 +00003481static void rtl8152_get_drvinfo(struct net_device *netdev,
3482 struct ethtool_drvinfo *info)
3483{
3484 struct r8152 *tp = netdev_priv(netdev);
3485
hayeswangb0b46c72014-08-26 10:08:23 +08003486 strlcpy(info->driver, MODULENAME, sizeof(info->driver));
3487 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
hayeswangac718b62013-05-02 16:01:25 +00003488 usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
3489}
3490
3491static
3492int rtl8152_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
3493{
3494 struct r8152 *tp = netdev_priv(netdev);
hayeswang8d4a4d72014-10-09 18:00:25 +08003495 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003496
3497 if (!tp->mii.mdio_read)
3498 return -EOPNOTSUPP;
3499
hayeswang8d4a4d72014-10-09 18:00:25 +08003500 ret = usb_autopm_get_interface(tp->intf);
3501 if (ret < 0)
3502 goto out;
3503
hayeswangb5403272014-10-09 18:00:26 +08003504 mutex_lock(&tp->control);
3505
hayeswang8d4a4d72014-10-09 18:00:25 +08003506 ret = mii_ethtool_gset(&tp->mii, cmd);
3507
hayeswangb5403272014-10-09 18:00:26 +08003508 mutex_unlock(&tp->control);
3509
hayeswang8d4a4d72014-10-09 18:00:25 +08003510 usb_autopm_put_interface(tp->intf);
3511
3512out:
3513 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003514}
3515
3516static int rtl8152_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3517{
3518 struct r8152 *tp = netdev_priv(dev);
hayeswang9a4be1b2014-02-18 21:49:07 +08003519 int ret;
hayeswangac718b62013-05-02 16:01:25 +00003520
hayeswang9a4be1b2014-02-18 21:49:07 +08003521 ret = usb_autopm_get_interface(tp->intf);
3522 if (ret < 0)
3523 goto out;
3524
hayeswangb5403272014-10-09 18:00:26 +08003525 mutex_lock(&tp->control);
3526
hayeswang9a4be1b2014-02-18 21:49:07 +08003527 ret = rtl8152_set_speed(tp, cmd->autoneg, cmd->speed, cmd->duplex);
3528
hayeswangb5403272014-10-09 18:00:26 +08003529 mutex_unlock(&tp->control);
3530
hayeswang9a4be1b2014-02-18 21:49:07 +08003531 usb_autopm_put_interface(tp->intf);
3532
3533out:
3534 return ret;
hayeswangac718b62013-05-02 16:01:25 +00003535}
3536
hayeswang4f1d4d52014-03-11 16:24:19 +08003537static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
3538 "tx_packets",
3539 "rx_packets",
3540 "tx_errors",
3541 "rx_errors",
3542 "rx_missed",
3543 "align_errors",
3544 "tx_single_collisions",
3545 "tx_multi_collisions",
3546 "rx_unicast",
3547 "rx_broadcast",
3548 "rx_multicast",
3549 "tx_aborted",
3550 "tx_underrun",
3551};
3552
3553static int rtl8152_get_sset_count(struct net_device *dev, int sset)
3554{
3555 switch (sset) {
3556 case ETH_SS_STATS:
3557 return ARRAY_SIZE(rtl8152_gstrings);
3558 default:
3559 return -EOPNOTSUPP;
3560 }
3561}
3562
3563static void rtl8152_get_ethtool_stats(struct net_device *dev,
3564 struct ethtool_stats *stats, u64 *data)
3565{
3566 struct r8152 *tp = netdev_priv(dev);
3567 struct tally_counter tally;
3568
hayeswang0b030242014-07-08 14:49:28 +08003569 if (usb_autopm_get_interface(tp->intf) < 0)
3570 return;
3571
hayeswang4f1d4d52014-03-11 16:24:19 +08003572 generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
3573
hayeswang0b030242014-07-08 14:49:28 +08003574 usb_autopm_put_interface(tp->intf);
3575
hayeswang4f1d4d52014-03-11 16:24:19 +08003576 data[0] = le64_to_cpu(tally.tx_packets);
3577 data[1] = le64_to_cpu(tally.rx_packets);
3578 data[2] = le64_to_cpu(tally.tx_errors);
3579 data[3] = le32_to_cpu(tally.rx_errors);
3580 data[4] = le16_to_cpu(tally.rx_missed);
3581 data[5] = le16_to_cpu(tally.align_errors);
3582 data[6] = le32_to_cpu(tally.tx_one_collision);
3583 data[7] = le32_to_cpu(tally.tx_multi_collision);
3584 data[8] = le64_to_cpu(tally.rx_unicast);
3585 data[9] = le64_to_cpu(tally.rx_broadcast);
3586 data[10] = le32_to_cpu(tally.rx_multicast);
3587 data[11] = le16_to_cpu(tally.tx_aborted);
hayeswangf37119c2014-10-28 14:05:51 +08003588 data[12] = le16_to_cpu(tally.tx_underrun);
hayeswang4f1d4d52014-03-11 16:24:19 +08003589}
3590
3591static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3592{
3593 switch (stringset) {
3594 case ETH_SS_STATS:
3595 memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
3596 break;
3597 }
3598}
3599
hayeswangdf35d282014-09-25 20:54:02 +08003600static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3601{
3602 u32 ocp_data, lp, adv, supported = 0;
3603 u16 val;
3604
3605 val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
3606 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3607
3608 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
3609 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3610
3611 val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
3612 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3613
3614 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3615 ocp_data &= EEE_RX_EN | EEE_TX_EN;
3616
3617 eee->eee_enabled = !!ocp_data;
3618 eee->eee_active = !!(supported & adv & lp);
3619 eee->supported = supported;
3620 eee->advertised = adv;
3621 eee->lp_advertised = lp;
3622
3623 return 0;
3624}
3625
3626static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3627{
3628 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3629
3630 r8152_eee_en(tp, eee->eee_enabled);
3631
3632 if (!eee->eee_enabled)
3633 val = 0;
3634
3635 r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
3636
3637 return 0;
3638}
3639
3640static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
3641{
3642 u32 ocp_data, lp, adv, supported = 0;
3643 u16 val;
3644
3645 val = ocp_reg_read(tp, OCP_EEE_ABLE);
3646 supported = mmd_eee_cap_to_ethtool_sup_t(val);
3647
3648 val = ocp_reg_read(tp, OCP_EEE_ADV);
3649 adv = mmd_eee_adv_to_ethtool_adv_t(val);
3650
3651 val = ocp_reg_read(tp, OCP_EEE_LPABLE);
3652 lp = mmd_eee_adv_to_ethtool_adv_t(val);
3653
3654 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
3655 ocp_data &= EEE_RX_EN | EEE_TX_EN;
3656
3657 eee->eee_enabled = !!ocp_data;
3658 eee->eee_active = !!(supported & adv & lp);
3659 eee->supported = supported;
3660 eee->advertised = adv;
3661 eee->lp_advertised = lp;
3662
3663 return 0;
3664}
3665
3666static int r8153_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
3667{
3668 u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
3669
3670 r8153_eee_en(tp, eee->eee_enabled);
3671
3672 if (!eee->eee_enabled)
3673 val = 0;
3674
3675 ocp_reg_write(tp, OCP_EEE_ADV, val);
3676
3677 return 0;
3678}
3679
3680static int
3681rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
3682{
3683 struct r8152 *tp = netdev_priv(net);
3684 int ret;
3685
3686 ret = usb_autopm_get_interface(tp->intf);
3687 if (ret < 0)
3688 goto out;
3689
hayeswangb5403272014-10-09 18:00:26 +08003690 mutex_lock(&tp->control);
3691
hayeswangdf35d282014-09-25 20:54:02 +08003692 ret = tp->rtl_ops.eee_get(tp, edata);
3693
hayeswangb5403272014-10-09 18:00:26 +08003694 mutex_unlock(&tp->control);
3695
hayeswangdf35d282014-09-25 20:54:02 +08003696 usb_autopm_put_interface(tp->intf);
3697
3698out:
3699 return ret;
3700}
3701
3702static int
3703rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
3704{
3705 struct r8152 *tp = netdev_priv(net);
3706 int ret;
3707
3708 ret = usb_autopm_get_interface(tp->intf);
3709 if (ret < 0)
3710 goto out;
3711
hayeswangb5403272014-10-09 18:00:26 +08003712 mutex_lock(&tp->control);
3713
hayeswangdf35d282014-09-25 20:54:02 +08003714 ret = tp->rtl_ops.eee_set(tp, edata);
hayeswang9d31a7b2014-10-06 10:36:04 +08003715 if (!ret)
3716 ret = mii_nway_restart(&tp->mii);
hayeswangdf35d282014-09-25 20:54:02 +08003717
hayeswangb5403272014-10-09 18:00:26 +08003718 mutex_unlock(&tp->control);
3719
hayeswangdf35d282014-09-25 20:54:02 +08003720 usb_autopm_put_interface(tp->intf);
3721
3722out:
3723 return ret;
3724}
3725
hayeswang8884f502014-10-28 14:05:52 +08003726static int rtl8152_nway_reset(struct net_device *dev)
3727{
3728 struct r8152 *tp = netdev_priv(dev);
3729 int ret;
3730
3731 ret = usb_autopm_get_interface(tp->intf);
3732 if (ret < 0)
3733 goto out;
3734
3735 mutex_lock(&tp->control);
3736
3737 ret = mii_nway_restart(&tp->mii);
3738
3739 mutex_unlock(&tp->control);
3740
3741 usb_autopm_put_interface(tp->intf);
3742
3743out:
3744 return ret;
3745}
3746
hayeswangefb3dd82015-02-12 14:33:48 +08003747static int rtl8152_get_coalesce(struct net_device *netdev,
3748 struct ethtool_coalesce *coalesce)
3749{
3750 struct r8152 *tp = netdev_priv(netdev);
3751
3752 switch (tp->version) {
3753 case RTL_VER_01:
3754 case RTL_VER_02:
3755 return -EOPNOTSUPP;
3756 default:
3757 break;
3758 }
3759
3760 coalesce->rx_coalesce_usecs = tp->coalesce;
3761
3762 return 0;
3763}
3764
3765static int rtl8152_set_coalesce(struct net_device *netdev,
3766 struct ethtool_coalesce *coalesce)
3767{
3768 struct r8152 *tp = netdev_priv(netdev);
3769 int ret;
3770
3771 switch (tp->version) {
3772 case RTL_VER_01:
3773 case RTL_VER_02:
3774 return -EOPNOTSUPP;
3775 default:
3776 break;
3777 }
3778
3779 if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
3780 return -EINVAL;
3781
3782 ret = usb_autopm_get_interface(tp->intf);
3783 if (ret < 0)
3784 return ret;
3785
3786 mutex_lock(&tp->control);
3787
3788 if (tp->coalesce != coalesce->rx_coalesce_usecs) {
3789 tp->coalesce = coalesce->rx_coalesce_usecs;
3790
3791 if (netif_running(tp->netdev) && netif_carrier_ok(netdev))
3792 r8153_set_rx_early_timeout(tp);
3793 }
3794
3795 mutex_unlock(&tp->control);
3796
3797 usb_autopm_put_interface(tp->intf);
3798
3799 return ret;
3800}
3801
hayeswangac718b62013-05-02 16:01:25 +00003802static struct ethtool_ops ops = {
3803 .get_drvinfo = rtl8152_get_drvinfo,
3804 .get_settings = rtl8152_get_settings,
3805 .set_settings = rtl8152_set_settings,
3806 .get_link = ethtool_op_get_link,
hayeswang8884f502014-10-28 14:05:52 +08003807 .nway_reset = rtl8152_nway_reset,
hayeswanga5ec27c2014-02-18 21:49:11 +08003808 .get_msglevel = rtl8152_get_msglevel,
3809 .set_msglevel = rtl8152_set_msglevel,
hayeswang21ff2e82014-02-18 21:49:06 +08003810 .get_wol = rtl8152_get_wol,
3811 .set_wol = rtl8152_set_wol,
hayeswang4f1d4d52014-03-11 16:24:19 +08003812 .get_strings = rtl8152_get_strings,
3813 .get_sset_count = rtl8152_get_sset_count,
3814 .get_ethtool_stats = rtl8152_get_ethtool_stats,
hayeswangefb3dd82015-02-12 14:33:48 +08003815 .get_coalesce = rtl8152_get_coalesce,
3816 .set_coalesce = rtl8152_set_coalesce,
hayeswangdf35d282014-09-25 20:54:02 +08003817 .get_eee = rtl_ethtool_get_eee,
3818 .set_eee = rtl_ethtool_set_eee,
hayeswangac718b62013-05-02 16:01:25 +00003819};
3820
3821static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
3822{
3823 struct r8152 *tp = netdev_priv(netdev);
3824 struct mii_ioctl_data *data = if_mii(rq);
hayeswang9a4be1b2014-02-18 21:49:07 +08003825 int res;
3826
hayeswang68714382014-04-11 17:54:31 +08003827 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3828 return -ENODEV;
3829
hayeswang9a4be1b2014-02-18 21:49:07 +08003830 res = usb_autopm_get_interface(tp->intf);
3831 if (res < 0)
3832 goto out;
hayeswangac718b62013-05-02 16:01:25 +00003833
3834 switch (cmd) {
3835 case SIOCGMIIPHY:
3836 data->phy_id = R8152_PHY_ID; /* Internal PHY */
3837 break;
3838
3839 case SIOCGMIIREG:
hayeswangb5403272014-10-09 18:00:26 +08003840 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003841 data->val_out = r8152_mdio_read(tp, data->reg_num);
hayeswangb5403272014-10-09 18:00:26 +08003842 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003843 break;
3844
3845 case SIOCSMIIREG:
3846 if (!capable(CAP_NET_ADMIN)) {
3847 res = -EPERM;
3848 break;
3849 }
hayeswangb5403272014-10-09 18:00:26 +08003850 mutex_lock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003851 r8152_mdio_write(tp, data->reg_num, data->val_in);
hayeswangb5403272014-10-09 18:00:26 +08003852 mutex_unlock(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00003853 break;
3854
3855 default:
3856 res = -EOPNOTSUPP;
3857 }
3858
hayeswang9a4be1b2014-02-18 21:49:07 +08003859 usb_autopm_put_interface(tp->intf);
3860
3861out:
hayeswangac718b62013-05-02 16:01:25 +00003862 return res;
3863}
3864
hayeswang69b4b7a2014-07-10 10:58:54 +08003865static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
3866{
3867 struct r8152 *tp = netdev_priv(dev);
hayeswang396e2e22015-02-12 14:33:47 +08003868 int ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08003869
3870 switch (tp->version) {
3871 case RTL_VER_01:
3872 case RTL_VER_02:
3873 return eth_change_mtu(dev, new_mtu);
3874 default:
3875 break;
3876 }
3877
3878 if (new_mtu < 68 || new_mtu > RTL8153_MAX_MTU)
3879 return -EINVAL;
3880
hayeswang396e2e22015-02-12 14:33:47 +08003881 ret = usb_autopm_get_interface(tp->intf);
3882 if (ret < 0)
3883 return ret;
3884
3885 mutex_lock(&tp->control);
3886
hayeswang69b4b7a2014-07-10 10:58:54 +08003887 dev->mtu = new_mtu;
3888
hayeswang396e2e22015-02-12 14:33:47 +08003889 if (netif_running(dev) && netif_carrier_ok(dev))
3890 r8153_set_rx_early_size(tp);
3891
3892 mutex_unlock(&tp->control);
3893
3894 usb_autopm_put_interface(tp->intf);
3895
3896 return ret;
hayeswang69b4b7a2014-07-10 10:58:54 +08003897}
3898
hayeswangac718b62013-05-02 16:01:25 +00003899static const struct net_device_ops rtl8152_netdev_ops = {
3900 .ndo_open = rtl8152_open,
3901 .ndo_stop = rtl8152_close,
3902 .ndo_do_ioctl = rtl8152_ioctl,
3903 .ndo_start_xmit = rtl8152_start_xmit,
3904 .ndo_tx_timeout = rtl8152_tx_timeout,
hayeswangc5554292014-09-12 10:43:11 +08003905 .ndo_set_features = rtl8152_set_features,
hayeswangac718b62013-05-02 16:01:25 +00003906 .ndo_set_rx_mode = rtl8152_set_rx_mode,
3907 .ndo_set_mac_address = rtl8152_set_mac_address,
hayeswang69b4b7a2014-07-10 10:58:54 +08003908 .ndo_change_mtu = rtl8152_change_mtu,
hayeswangac718b62013-05-02 16:01:25 +00003909 .ndo_validate_addr = eth_validate_addr,
hayeswanga5e31252015-01-06 17:41:58 +08003910 .ndo_features_check = rtl8152_features_check,
hayeswangac718b62013-05-02 16:01:25 +00003911};
3912
3913static void r8152b_get_version(struct r8152 *tp)
3914{
3915 u32 ocp_data;
3916 u16 version;
3917
3918 ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR1);
3919 version = (u16)(ocp_data & VERSION_MASK);
3920
3921 switch (version) {
3922 case 0x4c00:
3923 tp->version = RTL_VER_01;
3924 break;
3925 case 0x4c10:
3926 tp->version = RTL_VER_02;
3927 break;
hayeswang43779f82014-01-02 11:25:10 +08003928 case 0x5c00:
3929 tp->version = RTL_VER_03;
3930 tp->mii.supports_gmii = 1;
3931 break;
3932 case 0x5c10:
3933 tp->version = RTL_VER_04;
3934 tp->mii.supports_gmii = 1;
3935 break;
3936 case 0x5c20:
3937 tp->version = RTL_VER_05;
3938 tp->mii.supports_gmii = 1;
3939 break;
hayeswangac718b62013-05-02 16:01:25 +00003940 default:
3941 netif_info(tp, probe, tp->netdev,
3942 "Unknown version 0x%04x\n", version);
3943 break;
3944 }
3945}
3946
hayeswange3fe0b12014-01-02 11:22:39 +08003947static void rtl8152_unload(struct r8152 *tp)
3948{
hayeswang68714382014-04-11 17:54:31 +08003949 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3950 return;
3951
hayeswang00a5e362014-02-18 21:48:59 +08003952 if (tp->version != RTL_VER_01)
3953 r8152_power_cut_en(tp, true);
hayeswange3fe0b12014-01-02 11:22:39 +08003954}
3955
hayeswang43779f82014-01-02 11:25:10 +08003956static void rtl8153_unload(struct r8152 *tp)
3957{
hayeswang68714382014-04-11 17:54:31 +08003958 if (test_bit(RTL8152_UNPLUG, &tp->flags))
3959 return;
3960
hayeswang49be1722014-10-01 13:25:11 +08003961 r8153_power_cut_en(tp, false);
hayeswang43779f82014-01-02 11:25:10 +08003962}
3963
hayeswang55b65472014-11-06 12:47:39 +08003964static int rtl_ops_init(struct r8152 *tp)
hayeswangc81229c2014-01-02 11:22:42 +08003965{
3966 struct rtl_ops *ops = &tp->rtl_ops;
hayeswang55b65472014-11-06 12:47:39 +08003967 int ret = 0;
hayeswangc81229c2014-01-02 11:22:42 +08003968
hayeswang55b65472014-11-06 12:47:39 +08003969 switch (tp->version) {
3970 case RTL_VER_01:
3971 case RTL_VER_02:
3972 ops->init = r8152b_init;
3973 ops->enable = rtl8152_enable;
3974 ops->disable = rtl8152_disable;
3975 ops->up = rtl8152_up;
3976 ops->down = rtl8152_down;
3977 ops->unload = rtl8152_unload;
3978 ops->eee_get = r8152_get_eee;
3979 ops->eee_set = r8152_set_eee;
hayeswang43779f82014-01-02 11:25:10 +08003980 break;
3981
hayeswang55b65472014-11-06 12:47:39 +08003982 case RTL_VER_03:
3983 case RTL_VER_04:
3984 case RTL_VER_05:
3985 ops->init = r8153_init;
3986 ops->enable = rtl8153_enable;
3987 ops->disable = rtl8153_disable;
3988 ops->up = rtl8153_up;
3989 ops->down = rtl8153_down;
3990 ops->unload = rtl8153_unload;
3991 ops->eee_get = r8153_get_eee;
3992 ops->eee_set = r8153_set_eee;
hayeswangc81229c2014-01-02 11:22:42 +08003993 break;
3994
3995 default:
hayeswang55b65472014-11-06 12:47:39 +08003996 ret = -ENODEV;
3997 netif_err(tp, probe, tp->netdev, "Unknown Device\n");
hayeswangc81229c2014-01-02 11:22:42 +08003998 break;
3999 }
4000
4001 return ret;
4002}
4003
hayeswangac718b62013-05-02 16:01:25 +00004004static int rtl8152_probe(struct usb_interface *intf,
4005 const struct usb_device_id *id)
4006{
4007 struct usb_device *udev = interface_to_usbdev(intf);
4008 struct r8152 *tp;
4009 struct net_device *netdev;
hayeswangebc2ec42013-08-14 20:54:38 +08004010 int ret;
hayeswangac718b62013-05-02 16:01:25 +00004011
hayeswang10c32712014-03-04 20:47:48 +08004012 if (udev->actconfig->desc.bConfigurationValue != 1) {
4013 usb_driver_set_configuration(udev, 1);
4014 return -ENODEV;
4015 }
4016
4017 usb_reset_device(udev);
hayeswangac718b62013-05-02 16:01:25 +00004018 netdev = alloc_etherdev(sizeof(struct r8152));
4019 if (!netdev) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004020 dev_err(&intf->dev, "Out of memory\n");
hayeswangac718b62013-05-02 16:01:25 +00004021 return -ENOMEM;
4022 }
4023
hayeswangebc2ec42013-08-14 20:54:38 +08004024 SET_NETDEV_DEV(netdev, &intf->dev);
hayeswangac718b62013-05-02 16:01:25 +00004025 tp = netdev_priv(netdev);
4026 tp->msg_enable = 0x7FFF;
4027
hayeswange3ad4122014-01-06 17:08:42 +08004028 tp->udev = udev;
4029 tp->netdev = netdev;
4030 tp->intf = intf;
4031
hayeswang82cf94c2014-11-06 12:47:38 +08004032 r8152b_get_version(tp);
hayeswang55b65472014-11-06 12:47:39 +08004033 ret = rtl_ops_init(tp);
hayeswang31ca1de2014-01-06 17:08:43 +08004034 if (ret)
4035 goto out;
hayeswangc81229c2014-01-02 11:22:42 +08004036
hayeswangb5403272014-10-09 18:00:26 +08004037 mutex_init(&tp->control);
hayeswangac718b62013-05-02 16:01:25 +00004038 INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
4039
hayeswangac718b62013-05-02 16:01:25 +00004040 netdev->netdev_ops = &rtl8152_netdev_ops;
4041 netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
hayeswang5bd23882013-08-14 20:54:39 +08004042
hayeswang60c89072014-03-07 11:04:39 +08004043 netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1b2014-03-07 11:04:40 +08004044 NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
hayeswangc5554292014-09-12 10:43:11 +08004045 NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
4046 NETIF_F_HW_VLAN_CTAG_TX;
hayeswang60c89072014-03-07 11:04:39 +08004047 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
hayeswang6128d1b2014-03-07 11:04:40 +08004048 NETIF_F_TSO | NETIF_F_FRAGLIST |
hayeswangc5554292014-09-12 10:43:11 +08004049 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
hayeswangccc39fa2015-02-06 11:30:49 +08004050 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
hayeswangc5554292014-09-12 10:43:11 +08004051 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
4052 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
4053 NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
hayeswangdb8515e2014-03-06 15:07:16 +08004054
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00004055 netdev->ethtool_ops = &ops;
hayeswang60c89072014-03-07 11:04:39 +08004056 netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
hayeswangac718b62013-05-02 16:01:25 +00004057
4058 tp->mii.dev = netdev;
4059 tp->mii.mdio_read = read_mii_word;
4060 tp->mii.mdio_write = write_mii_word;
4061 tp->mii.phy_id_mask = 0x3f;
4062 tp->mii.reg_num_mask = 0x1f;
4063 tp->mii.phy_id = R8152_PHY_ID;
hayeswangac718b62013-05-02 16:01:25 +00004064
hayeswang464ec102015-02-12 14:33:46 +08004065 switch (udev->speed) {
4066 case USB_SPEED_SUPER:
4067 tp->coalesce = COALESCE_SUPER;
4068 break;
4069 case USB_SPEED_HIGH:
4070 tp->coalesce = COALESCE_HIGH;
4071 break;
4072 default:
4073 tp->coalesce = COALESCE_SLOW;
4074 break;
4075 }
4076
hayeswang9a4be1b2014-02-18 21:49:07 +08004077 intf->needs_remote_wakeup = 1;
4078
hayeswangc81229c2014-01-02 11:22:42 +08004079 tp->rtl_ops.init(tp);
hayeswangac718b62013-05-02 16:01:25 +00004080 set_ethernet_addr(tp);
4081
hayeswangac718b62013-05-02 16:01:25 +00004082 usb_set_intfdata(intf, tp);
hayeswangd823ab62015-01-12 12:06:23 +08004083 netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
hayeswangac718b62013-05-02 16:01:25 +00004084
hayeswangebc2ec42013-08-14 20:54:38 +08004085 ret = register_netdev(netdev);
4086 if (ret != 0) {
Hayes Wang4a8deae2014-01-07 11:18:22 +08004087 netif_err(tp, probe, netdev, "couldn't register the device\n");
hayeswangebc2ec42013-08-14 20:54:38 +08004088 goto out1;
hayeswangac718b62013-05-02 16:01:25 +00004089 }
4090
hayeswang7daed8d2015-07-24 13:54:24 +08004091 if (!rtl_can_wakeup(tp))
4092 __rtl_set_wol(tp, 0);
4093
hayeswang21ff2e82014-02-18 21:49:06 +08004094 tp->saved_wolopts = __rtl_get_wol(tp);
4095 if (tp->saved_wolopts)
4096 device_set_wakeup_enable(&udev->dev, true);
4097 else
4098 device_set_wakeup_enable(&udev->dev, false);
4099
Hayes Wang4a8deae2014-01-07 11:18:22 +08004100 netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
hayeswangac718b62013-05-02 16:01:25 +00004101
4102 return 0;
4103
hayeswangac718b62013-05-02 16:01:25 +00004104out1:
hayeswangd823ab62015-01-12 12:06:23 +08004105 netif_napi_del(&tp->napi);
hayeswangebc2ec42013-08-14 20:54:38 +08004106 usb_set_intfdata(intf, NULL);
hayeswangac718b62013-05-02 16:01:25 +00004107out:
4108 free_netdev(netdev);
hayeswangebc2ec42013-08-14 20:54:38 +08004109 return ret;
hayeswangac718b62013-05-02 16:01:25 +00004110}
4111
hayeswangac718b62013-05-02 16:01:25 +00004112static void rtl8152_disconnect(struct usb_interface *intf)
4113{
4114 struct r8152 *tp = usb_get_intfdata(intf);
4115
4116 usb_set_intfdata(intf, NULL);
4117 if (tp) {
hayeswangf561de32014-09-30 16:48:01 +08004118 struct usb_device *udev = tp->udev;
4119
4120 if (udev->state == USB_STATE_NOTATTACHED)
4121 set_bit(RTL8152_UNPLUG, &tp->flags);
4122
hayeswangd823ab62015-01-12 12:06:23 +08004123 netif_napi_del(&tp->napi);
hayeswangac718b62013-05-02 16:01:25 +00004124 unregister_netdev(tp->netdev);
hayeswangc81229c2014-01-02 11:22:42 +08004125 tp->rtl_ops.unload(tp);
hayeswangac718b62013-05-02 16:01:25 +00004126 free_netdev(tp->netdev);
4127 }
4128}
4129
hayeswangd9a28c52014-12-04 10:43:11 +08004130#define REALTEK_USB_DEVICE(vend, prod) \
4131 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
4132 USB_DEVICE_ID_MATCH_INT_CLASS, \
4133 .idVendor = (vend), \
4134 .idProduct = (prod), \
4135 .bInterfaceClass = USB_CLASS_VENDOR_SPEC \
4136}, \
4137{ \
4138 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
4139 USB_DEVICE_ID_MATCH_DEVICE, \
4140 .idVendor = (vend), \
4141 .idProduct = (prod), \
4142 .bInterfaceClass = USB_CLASS_COMM, \
4143 .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
4144 .bInterfaceProtocol = USB_CDC_PROTO_NONE
4145
hayeswangac718b62013-05-02 16:01:25 +00004146/* table of devices that work with this driver */
4147static struct usb_device_id rtl8152_table[] = {
hayeswangd9a28c52014-12-04 10:43:11 +08004148 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
4149 {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
4150 {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
Christian Hesse347eec32015-03-31 14:10:07 +02004151 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205)},
Vasily Titskiy1006da12015-05-06 10:31:21 -04004152 {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)},
Zheng Liud065c3c2015-07-07 13:54:12 -07004153 {REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff)},
hayeswangac718b62013-05-02 16:01:25 +00004154 {}
4155};
4156
4157MODULE_DEVICE_TABLE(usb, rtl8152_table);
4158
4159static struct usb_driver rtl8152_driver = {
4160 .name = MODULENAME,
hayeswangebc2ec42013-08-14 20:54:38 +08004161 .id_table = rtl8152_table,
hayeswangac718b62013-05-02 16:01:25 +00004162 .probe = rtl8152_probe,
4163 .disconnect = rtl8152_disconnect,
hayeswangac718b62013-05-02 16:01:25 +00004164 .suspend = rtl8152_suspend,
hayeswangebc2ec42013-08-14 20:54:38 +08004165 .resume = rtl8152_resume,
4166 .reset_resume = rtl8152_resume,
hayeswang9a4be1b2014-02-18 21:49:07 +08004167 .supports_autosuspend = 1,
hayeswanga6347822014-02-18 21:49:10 +08004168 .disable_hub_initiated_lpm = 1,
hayeswangac718b62013-05-02 16:01:25 +00004169};
4170
Sachin Kamatb4236daa2013-05-16 17:48:08 +00004171module_usb_driver(rtl8152_driver);
hayeswangac718b62013-05-02 16:01:25 +00004172
4173MODULE_AUTHOR(DRIVER_AUTHOR);
4174MODULE_DESCRIPTION(DRIVER_DESC);
4175MODULE_LICENSE("GPL");