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